Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 46332a8

Browse files
authored
Merge pull request #2500 from eBay/18.5.0
Release PR for 18.5.0
2 parents 35aab4b + a4287fe commit 46332a8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+6007
-1488
lines changed

.changeset/big-plums-applaud.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ebay/skin": minor
3+
---
4+
5+
feat(filter-menu): added search header

.changeset/flat-snakes-sell.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ebay/skin": minor
3+
---
4+
5+
feat(eek): added large size and fixed regular arrow

.changeset/light-pots-wink.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ebay/skin": minor
3+
---
4+
5+
feat(list): added inremental list and radio fieldset in list

.changeset/nervous-pianos-shout.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ebay/skin": minor
3+
---
4+
5+
feat(ccd): new component
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ebay/skin": minor
3+
---
4+
5+
feat(table): added loading state

.changeset/tidy-rockets-chew.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ebay/skin": minor
3+
---
4+
5+
feat(accordion): new component

.changeset/wicked-taxis-relate.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ebay/skin": minor
3+
---
4+
5+
fix(filter-menu): fixed cascade

dist/accordion/accordion.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
ul.accordion {
2+
margin: 0;
3+
padding: 0;
4+
width: 100%;
5+
}
6+
ul.accordion ::marker {
7+
font-size: 0;
8+
}
9+
10+
ul.accordion li:not(:last-child) {
11+
border-bottom: 1px solid var(--color-stroke-subtle);
12+
}
13+
14+
ul.accordion summary.details__summary {
15+
border-radius: 0;
16+
display: flex;
17+
font-size: var(--font-size-medium);
18+
justify-content: space-between;
19+
min-height: 48px;
20+
padding: 12px 16px;
21+
}
22+
23+
ul.accordion details .details__content {
24+
margin: 0 16px 6px;
25+
opacity: 0;
26+
transform: scaleY(0);
27+
transform-origin: top;
28+
transition:
29+
opacity 0.5s cubic-bezier(0.3, 0, 0, 1),
30+
transform 0.5s cubic-bezier(0.3, 0, 0, 1);
31+
}
32+
33+
ul.accordion details[open] .details__content {
34+
opacity: 1;
35+
transform: scaleY(1);
36+
}
37+
38+
ul.accordion--large summary.details__summary {
39+
font-size: var(--font-size-large-1);
40+
min-height: 52px;
41+
}
42+
43+
ul.accordion details svg.details__expand,
44+
ul.accordion details[open] svg.details__collapse {
45+
display: inline-block;
46+
}
47+
48+
ul.accordion details svg.details__collapse,
49+
ul.accordion details[open] svg.details__expand {
50+
display: none;
51+
}
52+
53+
@media (prefers-reduced-motion) {
54+
ul.accordion details .details__content,
55+
ul.accordion details[open] .details__content {
56+
transition: none;
57+
}
58+
}

dist/ccd/ccd.css

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
.ccd {
2+
display: inline-flex;
3+
gap: 8px;
4+
}
5+
6+
.ccd__charger-icon {
7+
height: 78px;
8+
width: 58px;
9+
}
10+
11+
.ccd__description-figure {
12+
align-items: center;
13+
display: flex;
14+
flex-direction: column;
15+
justify-content: center;
16+
width: 55px;
17+
}
18+
19+
.ccd__top-icon {
20+
height: 24px;
21+
width: 35px;
22+
}
23+
24+
.ccd__body {
25+
align-items: center;
26+
border: 1px solid var(--color-foreground-primary);
27+
border-radius: 1.5px;
28+
display: flex;
29+
flex-direction: column;
30+
font-size: 0.4375rem;
31+
font-weight: var(--font-weight-bold);
32+
gap: 2px;
33+
height: 53px;
34+
justify-content: center;
35+
overflow: hidden;
36+
text-align: center;
37+
width: 53px;
38+
}

dist/eek/eek.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
77
position: relative;
88
}
99

10+
.eek--large {
11+
height: 32px;
12+
}
13+
1014
.eek__container {
1115
align-items: center;
1216
border: 1px solid #000;
@@ -19,6 +23,10 @@
1923
width: 9px;
2024
}
2125

26+
.eek--large .icon--eek-arrow {
27+
width: 12.5px;
28+
}
29+
2230
.eek__arrow {
2331
overflow: hidden;
2432
width: 17px;
@@ -105,6 +113,10 @@
105113
-0.5px -0.5px 0 #000;
106114
}
107115

116+
.eek--large .eek__rating {
117+
font-size: 24px;
118+
}
119+
108120
.eek__rating-range {
109121
align-items: center;
110122
background-color: #fff;
@@ -116,13 +128,28 @@
116128
padding: 0 1px;
117129
}
118130

131+
.eek--large .eek__rating-range {
132+
height: 28px;
133+
}
134+
119135
.eek__rating-range > .icon--eek-range-arrow {
120136
height: 6px;
121137
width: 5px;
122138
}
123139

140+
.eek--large .eek__rating-range > .icon--eek-range-arrow {
141+
height: 7px;
142+
width: 6px;
143+
}
144+
124145
.eek__rating-range > span {
125146
font-size: 8px;
147+
height: 8px;
148+
}
149+
150+
.eek--large .eek__rating-range > span {
151+
font-size: 10px;
152+
height: 10px;
126153
}
127154
@media not all and (-webkit-min-device-pixel-ratio: 0),
128155
not all and (min-resolution: 0.001dpcm) {
@@ -134,3 +161,10 @@
134161
}
135162
}
136163
}
164+
[dir="rtl"] .eek .icon--eek-arrow {
165+
transform: rotate(180deg);
166+
}
167+
[dir="rtl"] .eek__container {
168+
border-left: none;
169+
border-right: 1px solid #000;
170+
}

0 commit comments

Comments
 (0)