Skip to content

Commit

Permalink
chore: updated dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
agliga authored and ianmcburnie committed Aug 25, 2023
1 parent 291b70e commit 19d8a2c
Show file tree
Hide file tree
Showing 11 changed files with 3,144 additions and 1,298 deletions.
5 changes: 1 addition & 4 deletions .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"customSyntax": "postcss-less",
"plugins": [
"stylelint-order",
"stylelint-no-unsupported-browser-features"
],
"rules": {
"at-rule-no-unknown": [
Expand All @@ -59,9 +58,6 @@
]
}
],
"plugin/no-unsupported-browser-features": [true, {
"ignorePartialSupport": true
}],
"declaration-empty-line-before": null,
"function-no-unknown": [
true,
Expand All @@ -73,6 +69,7 @@
]
}
],
"media-query-no-invalid": null,
"no-descending-specificity": true,
"no-duplicate-selectors": true,
"order/properties-alphabetical-order": true
Expand Down
4,385 changes: 3,110 additions & 1,275 deletions package-lock.json

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
"cross-env": "^7",
"eslint": "^8.40.0",
"eslint-config-ebay": "^1",
"eslint-config-prettier": "^8",
"eslint-plugin-prettier": "^4",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"gulp": "^4",
"gulp-banner": "~0.1.3",
"gulp-clean-css": "^4",
Expand All @@ -88,7 +88,7 @@
"less-loader": "^11.1.0",
"less-plugin-autoprefix": "^2",
"less-plugin-clean-css": "^1.5.1",
"lint-staged": "^13.2.2",
"lint-staged": "^14.0.1",
"makeup-alert-dialog": "~0.2.0",
"makeup-combobox": "~0.3.0",
"makeup-confirm-dialog": "~0.2.0",
Expand Down Expand Up @@ -117,14 +117,14 @@
"npm-run-all": "^4",
"postcss-less": "^6.0.0",
"postcss-loader": "^7.3.0",
"prettier": "^2.8.8",
"prettier": "^3.0.2",
"rimraf": "^5",
"storybook": "^7.0.12",
"storybook": "~7.1.1",
"stylelint": "^15.6.2",
"stylelint-config-standard": "^33",
"stylelint-no-unsupported-browser-features": "^6.0.1",
"stylelint-config-standard": "^34",
"stylelint-no-unsupported-browser-features": "^7",
"stylelint-order": "^6",
"stylelint-prettier": "^3",
"stylelint-prettier": "^4",
"svgo": "^3.0.1",
"webpack": "^5.83.0",
"webpack-cli": "^5.1.1",
Expand Down
3 changes: 2 additions & 1 deletion src/less/button/button.less
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,8 @@ button.btn--floating-label .btn__floating-label {
}

button.btn--floating-label .btn__floating-label--animate {
transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
transition:
transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
bottom 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

Expand Down
8 changes: 6 additions & 2 deletions src/less/carousel/carousel.less
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@
border: 1px solid;
.border-color-token(carousel-paddle-border-color, color-stroke-subtle);
border-radius: 16px;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12);
box-shadow:
0 2px 2px 0 rgba(0, 0, 0, 0.24),
0 0 2px 0 rgba(0, 0, 0, 0.12);
display: flex;
font-size: 18px;
height: 32px;
Expand Down Expand Up @@ -294,7 +296,9 @@ span.carousel__container {
/* stylelint-enable declaration-block-no-duplicate-properties */
scrollbar-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
scrollbar-width: thin; // Firefox scrollbar
transition: border-color 0.5s, scrollbar-color 0.5s,
transition:
border-color 0.5s,
scrollbar-color 0.5s,
transform @ebay-carousel-transition-time
@ebay-carousel-transition-function;

Expand Down
7 changes: 5 additions & 2 deletions src/less/eek/eek.less
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,11 @@
display: inline-block;
font-size: 18px;
margin-left: 8px;
text-shadow: -0.5px 0.5px 0 @eek-color, 0.5px 0.5px 0 @eek-color,
0.5px -0.5px 0 @eek-color, -0.5px -0.5px 0 @eek-color;
text-shadow:
-0.5px 0.5px 0 @eek-color,
0.5px 0.5px 0 @eek-color,
0.5px -0.5px 0 @eek-color,
-0.5px -0.5px 0 @eek-color;
}

.eek__rating-range {
Expand Down
3 changes: 2 additions & 1 deletion src/less/floating-label/floating-label.less
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ label.floating-label__label--inline {
}

label.floating-label__label--animate {
transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
transition:
transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1),
bottom 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

Expand Down
6 changes: 4 additions & 2 deletions src/less/marketsans/marketsans.less
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
font-style: normal;
font-weight: normal;
src: url("@{marketsans-url}@{marketsans-filename-regular}.eot");
src: url("@{marketsans-url}@{marketsans-filename-regular}.eot?#iefix")
src:
url("@{marketsans-url}@{marketsans-filename-regular}.eot?#iefix")
format("embedded-opentype"),
url("@{marketsans-url}@{marketsans-filename-regular}.woff2")
format("woff2"),
Expand All @@ -31,7 +32,8 @@
font-style: normal;
font-weight: bold;
src: url("@{marketsans-url}@{marketsans-filename-bold}.eot");
src: url("@{marketsans-url}@{marketsans-filename-bold}.eot?#iefix")
src:
url("@{marketsans-url}@{marketsans-filename-bold}.eot?#iefix")
format("embedded-opentype"),
url("@{marketsans-url}@{marketsans-filename-bold}.woff2")
format("woff2"),
Expand Down
3 changes: 2 additions & 1 deletion src/less/snackbar-dialog/snackbar-dialog.less
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
}

.snackbar-dialog--transition {
transition: opacity 0.2s cubic-bezier(0.21, 0.31, 1, 1.22) 0s,
transition:
opacity 0.2s cubic-bezier(0.21, 0.31, 1, 1.22) 0s,
transform 0.2s cubic-bezier(0.21, 0.31, 1, 1.22) 0s;
}

Expand Down
3 changes: 2 additions & 1 deletion src/less/switch/switch.less
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ span.switch__control[aria-disabled="true"][aria-checked="true"]
span.switch__control:not([aria-disabled="true"]):focus-visible
+ span.switch__button,
input.switch__control:not([disabled]):focus-visible + span.switch__button {
box-shadow: 0 0 0 2px var(--color-background-primary),
box-shadow:
0 0 0 2px var(--color-background-primary),
0 0 0 4px var(--color-state-accent-hover);
}

Expand Down
3 changes: 2 additions & 1 deletion src/less/toast-dialog/toast-dialog.less
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
}

.toast-dialog--transition {
transition: opacity 0.2s cubic-bezier(0.21, 0.31, 1, 1.22) 0s,
transition:
opacity 0.2s cubic-bezier(0.21, 0.31, 1, 1.22) 0s,
transform 0.2s cubic-bezier(0.21, 0.31, 1, 1.22) 0s;
}

Expand Down

0 comments on commit 19d8a2c

Please sign in to comment.