-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2500 from eBay/18.5.0
Release PR for 18.5.0
- Loading branch information
Showing
50 changed files
with
6,007 additions
and
1,488 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ebay/skin": minor | ||
--- | ||
|
||
feat(filter-menu): added search header |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ebay/skin": minor | ||
--- | ||
|
||
feat(eek): added large size and fixed regular arrow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ebay/skin": minor | ||
--- | ||
|
||
feat(list): added inremental list and radio fieldset in list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ebay/skin": minor | ||
--- | ||
|
||
feat(ccd): new component |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ebay/skin": minor | ||
--- | ||
|
||
feat(table): added loading state |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ebay/skin": minor | ||
--- | ||
|
||
feat(accordion): new component |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ebay/skin": minor | ||
--- | ||
|
||
fix(filter-menu): fixed cascade |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
ul.accordion { | ||
margin: 0; | ||
padding: 0; | ||
width: 100%; | ||
} | ||
ul.accordion ::marker { | ||
font-size: 0; | ||
} | ||
|
||
ul.accordion li:not(:last-child) { | ||
border-bottom: 1px solid var(--color-stroke-subtle); | ||
} | ||
|
||
ul.accordion summary.details__summary { | ||
border-radius: 0; | ||
display: flex; | ||
font-size: var(--font-size-medium); | ||
justify-content: space-between; | ||
min-height: 48px; | ||
padding: 12px 16px; | ||
} | ||
|
||
ul.accordion details .details__content { | ||
margin: 0 16px 6px; | ||
opacity: 0; | ||
transform: scaleY(0); | ||
transform-origin: top; | ||
transition: | ||
opacity 0.5s cubic-bezier(0.3, 0, 0, 1), | ||
transform 0.5s cubic-bezier(0.3, 0, 0, 1); | ||
} | ||
|
||
ul.accordion details[open] .details__content { | ||
opacity: 1; | ||
transform: scaleY(1); | ||
} | ||
|
||
ul.accordion--large summary.details__summary { | ||
font-size: var(--font-size-large-1); | ||
min-height: 52px; | ||
} | ||
|
||
ul.accordion details svg.details__expand, | ||
ul.accordion details[open] svg.details__collapse { | ||
display: inline-block; | ||
} | ||
|
||
ul.accordion details svg.details__collapse, | ||
ul.accordion details[open] svg.details__expand { | ||
display: none; | ||
} | ||
|
||
@media (prefers-reduced-motion) { | ||
ul.accordion details .details__content, | ||
ul.accordion details[open] .details__content { | ||
transition: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
.ccd { | ||
display: inline-flex; | ||
gap: 8px; | ||
} | ||
|
||
.ccd__charger-icon { | ||
height: 78px; | ||
width: 58px; | ||
} | ||
|
||
.ccd__description-figure { | ||
align-items: center; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
width: 55px; | ||
} | ||
|
||
.ccd__top-icon { | ||
height: 24px; | ||
width: 35px; | ||
} | ||
|
||
.ccd__body { | ||
align-items: center; | ||
border: 1px solid var(--color-foreground-primary); | ||
border-radius: 1.5px; | ||
display: flex; | ||
flex-direction: column; | ||
font-size: 0.4375rem; | ||
font-weight: var(--font-weight-bold); | ||
gap: 2px; | ||
height: 53px; | ||
justify-content: center; | ||
overflow: hidden; | ||
text-align: center; | ||
width: 53px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.