diff --git a/.changeset/curvy-mangos-send.md b/.changeset/curvy-mangos-send.md
new file mode 100644
index 0000000000..be75646b91
--- /dev/null
+++ b/.changeset/curvy-mangos-send.md
@@ -0,0 +1,5 @@
+---
+"@ebay/skin": minor
+---
+
+feat(accordion): update expansion icon
diff --git a/.changeset/cyan-spiders-turn.md b/.changeset/cyan-spiders-turn.md
new file mode 100644
index 0000000000..670e262267
--- /dev/null
+++ b/.changeset/cyan-spiders-turn.md
@@ -0,0 +1,5 @@
+---
+"@ebay/skin": minor
+---
+
+feat(link): updated legal link colors
diff --git a/.changeset/forty-poets-pump.md b/.changeset/forty-poets-pump.md
new file mode 100644
index 0000000000..47b89e362e
--- /dev/null
+++ b/.changeset/forty-poets-pump.md
@@ -0,0 +1,5 @@
+---
+"@ebay/skin": minor
+---
+
+feat(icons): added new icons
diff --git a/.changeset/fuzzy-badgers-fix.md b/.changeset/fuzzy-badgers-fix.md
new file mode 100644
index 0000000000..6042871668
--- /dev/null
+++ b/.changeset/fuzzy-badgers-fix.md
@@ -0,0 +1,5 @@
+---
+"@ebay/skin": minor
+---
+
+feat(button): added animation to buttons
diff --git a/.changeset/gold-hairs-mate.md b/.changeset/gold-hairs-mate.md
new file mode 100644
index 0000000000..4f6f3f0b82
--- /dev/null
+++ b/.changeset/gold-hairs-mate.md
@@ -0,0 +1,5 @@
+---
+"@ebay/skin": minor
+---
+
+feat(item-tile,item-tile-group): created new components
diff --git a/.changeset/heavy-webs-try.md b/.changeset/heavy-webs-try.md
new file mode 100644
index 0000000000..f5cc4bbc85
--- /dev/null
+++ b/.changeset/heavy-webs-try.md
@@ -0,0 +1,5 @@
+---
+"@ebay/skin": minor
+---
+
+feat(eek): flipped EEK direction
diff --git a/.changeset/tough-jobs-melt.md b/.changeset/tough-jobs-melt.md
new file mode 100644
index 0000000000..d14527b752
--- /dev/null
+++ b/.changeset/tough-jobs-melt.md
@@ -0,0 +1,5 @@
+---
+"@ebay/skin": minor
+---
+
+fix(table): a11y fixes for table loading state
diff --git a/.gitignore b/.gitignore
index 00ee9ef8f5..2159341f9f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,6 +12,7 @@ yarn.lock
docs/_babel
lint.log
dist/bundles
+dist/.marko-run
docs/static/*.min.css
docs/static/*.min.css.map
!docs/static/docs.min.css
diff --git a/dist/accordion/accordion.css b/dist/accordion/accordion.css
index eb7be48f45..e2874213e1 100644
--- a/dist/accordion/accordion.css
+++ b/dist/accordion/accordion.css
@@ -20,6 +20,13 @@ ul.accordion summary.details__summary {
padding: 12px 16px;
}
+ul.accordion summary.details__summary span.details__icon svg {
+ fill: var(
+ --details-secondary-foreground-color,
+ var(--color-foreground-secondary)
+ );
+}
+
ul.accordion details .details__content {
margin: 0 16px 6px;
opacity: 0;
@@ -34,12 +41,6 @@ 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;
@@ -50,6 +51,11 @@ ul.accordion details[open] svg.details__expand {
display: none;
}
+ul.accordion--large summary.details__summary {
+ font-size: var(--font-size-large-1);
+ min-height: 52px;
+}
+
@media (prefers-reduced-motion) {
ul.accordion details .details__content,
ul.accordion details[open] .details__content {
diff --git a/dist/button/button.css b/dist/button/button.css
index 17d1dbf0a9..8fcc0a953b 100644
--- a/dist/button/button.css
+++ b/dist/button/button.css
@@ -171,6 +171,12 @@ button.btn--primary {
var(--color-foreground-on-accent)
);
font-weight: 700;
+ transition: all var(--motion-duration-short-3)
+ var(--motion-easing-quick-enter);
+}
+a.fake-btn--primary:active,
+button.btn--primary:active {
+ transform: scale(0.97);
}
a.fake-btn--primary {
@@ -324,11 +330,19 @@ a.fake-btn--secondary,
button.btn--secondary {
background-color: var(--btn-secondary-background-color, transparent);
border-color: var(--btn-secondary-border-color, var(--color-stroke-accent));
+ color: var(
+ --btn-secondary-foreground-color,
+ var(--color-foreground-accent)
+ );
+ transition: all var(--motion-duration-short-3)
+ var(--motion-easing-quick-enter);
+}
+a.fake-btn--secondary:active,
+button.btn--secondary:active {
+ transform: scale(0.97);
}
-a.fake-btn--secondary,
-a.fake-btn--secondary:visited,
-button.btn--secondary {
+a.fake-btn--secondary:visited {
color: var(
--btn-secondary-foreground-color,
var(--color-foreground-accent)
@@ -435,6 +449,12 @@ a.fake-btn--secondary[aria-disabled="true"] {
a.fake-btn--tertiary,
button.btn--tertiary {
border-color: var(--btn-tertiary-border-color, var(--color-stroke-default));
+ transition: all var(--motion-duration-short-3)
+ var(--motion-easing-quick-enter);
+}
+a.fake-btn--tertiary:active,
+button.btn--tertiary:active {
+ transform: scale(0.97);
}
a.fake-btn--tertiary[href]:focus,
diff --git a/dist/drawer-dialog/drawer-dialog.css b/dist/drawer-dialog/drawer-dialog.css
index 5f71008ec0..b1d6f2b857 100644
--- a/dist/drawer-dialog/drawer-dialog.css
+++ b/dist/drawer-dialog/drawer-dialog.css
@@ -11,6 +11,7 @@
-webkit-overflow-scrolling: touch;
align-items: flex-end;
overflow-y: auto;
+ overflow: hidden;
position: fixed;
right: 0;
top: 0;
diff --git a/dist/eek/eek.css b/dist/eek/eek.css
index a9838ed4b7..45015434d1 100644
--- a/dist/eek/eek.css
+++ b/dist/eek/eek.css
@@ -1,6 +1,7 @@
.eek {
align-items: stretch;
display: inline-flex;
+ flex-direction: row-reverse;
font-family: Arial, sans-serif;
font-weight: 700;
height: 24px;
@@ -14,12 +15,14 @@
.eek__container {
align-items: center;
border: 1px solid #000;
- border-radius: 2px 0 0 2px;
- border-right: none;
+ border-left: none;
+ border-radius: 0 2px 2px 0;
display: inline-flex;
+ flex-direction: row-reverse;
}
.eek .icon--eek-arrow {
+ rotate: 180deg;
width: 9px;
}
@@ -38,7 +41,7 @@
content: "";
display: block;
height: 19.7989898732px;
- margin-top: 2.3px;
+ margin-block-start: 2.3px;
position: relative;
right: 12px;
transform: rotate(45deg);
@@ -105,7 +108,7 @@
color: #fff;
display: inline-block;
font-size: 18px;
- margin-left: 8px;
+ margin-inline-end: 8px;
text-shadow:
-0.5px 0.5px 0 #000,
0.5px 0.5px 0 #000,
@@ -161,10 +164,6 @@
}
}
}
-[dir="rtl"] .eek .icon--eek-arrow {
- transform: rotate(180deg);
-}
-[dir="rtl"] .eek__container {
- border-left: none;
- border-right: 1px solid #000;
+[dir="rtl"] .eek {
+ direction: ltr;
}
diff --git a/dist/icon/icon.css b/dist/icon/icon.css
index 2c5db3ed9b..3572a5638f 100644
--- a/dist/icon/icon.css
+++ b/dist/icon/icon.css
@@ -41,6 +41,11 @@ svg.icon--32-fit {
height: 32px;
width: 32px;
}
+svg.icon--48,
+svg.icon--48-fit {
+ height: 48px;
+ width: 48px;
+}
svg.icon--64,
svg.icon--64-fit {
height: 32px;
diff --git a/dist/item-tile-group/item-tile-group.css b/dist/item-tile-group/item-tile-group.css
new file mode 100644
index 0000000000..f5da17c342
--- /dev/null
+++ b/dist/item-tile-group/item-tile-group.css
@@ -0,0 +1,9 @@
+.item-tile-group .item-tile__title {
+ -webkit-line-clamp: 3;
+}
+
+@media (min-width: 768px) {
+ .item-tile-group .item-tile__title {
+ -webkit-line-clamp: 2;
+ }
+}
diff --git a/dist/item-tile/item-tile.css b/dist/item-tile/item-tile.css
new file mode 100644
index 0000000000..9b8bf5b5c6
--- /dev/null
+++ b/dist/item-tile/item-tile.css
@@ -0,0 +1,94 @@
+.item-tile {
+ display: grid;
+ gap: var(--spacing-200);
+ grid-area: body;
+ grid-template-areas: "header" "body";
+ grid-template-rows: auto 1fr;
+}
+
+.item-tile--list-view {
+ display: flex;
+ flex-direction: row;
+ gap: var(--spacing-100);
+}
+
+.item-tile__header {
+ grid-area: header;
+}
+
+.item-tile__header .file-preview-card__body a {
+ display: block;
+ width: 100%;
+}
+
+.item-tile__header .file-preview-card__body a:focus-visible {
+ border-radius: var(
+ --item-tile-media-border-radius,
+ var(--border-radius-100)
+ );
+ outline-offset: 3px;
+}
+
+.item-tile__body {
+ display: grid;
+ grid-area: body;
+ grid-template-areas: "section-primary" "section-secondary" "section-tertiary";
+ grid-template-rows: 25px 0.75fr 1fr;
+}
+
+.item-tile--list-view .item-tile__header {
+ max-width: 200px;
+}
+
+.item-tile--list-view .item-tile__body {
+ display: flex;
+ flex-direction: column;
+}
+
+.item-tile__section-primary {
+ display: inline-block;
+ grid-area: section-primary;
+ margin-block-end: var(--spacing-50);
+}
+
+.item-tile__section-primary .signal {
+ margin: 0;
+}
+
+.item-tile__section-secondary {
+ grid-area: section-secondary;
+}
+
+.item-tile__section-tertiary {
+ grid-area: section-tertiary;
+}
+.item-tile__section-tertiary p {
+ margin-block-end: 0.2143em;
+ margin-block-start: 0;
+}
+
+.item-tile__section-tertiary a,
+.item-tile__title {
+ color: var(--color-foreground-link-primary);
+ text-decoration: none;
+}
+
+.item-tile__title {
+ -webkit-box-orient: vertical;
+ display: -webkit-box;
+ -webkit-line-clamp: 3;
+ overflow: hidden;
+}
+
+.item-tile__title:hover {
+ color: var(--color-foreground-link-primary);
+ text-decoration: underline;
+}
+
+.item-tile__title:visited {
+ color: var(--color-foreground-link-visited);
+}
+
+.item-tile__subtitle {
+ color: var(--color-foreground-secondary);
+}
diff --git a/dist/panel-dialog/panel-dialog.css b/dist/panel-dialog/panel-dialog.css
index 79b3195728..300ed17af9 100644
--- a/dist/panel-dialog/panel-dialog.css
+++ b/dist/panel-dialog/panel-dialog.css
@@ -10,7 +10,7 @@
-webkit-overflow-scrolling: touch;
flex-direction: column;
overflow-y: auto;
- overflow-y: hidden;
+ overflow: hidden;
position: fixed;
right: 0;
top: 0;
diff --git a/dist/svg/icon/icon-clock-fast-16.svg b/dist/svg/icon/icon-clock-fast-16.svg
new file mode 100644
index 0000000000..ca588c3632
--- /dev/null
+++ b/dist/svg/icon/icon-clock-fast-16.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/dist/svg/icon/icon-clock-fast-24.svg b/dist/svg/icon/icon-clock-fast-24.svg
new file mode 100644
index 0000000000..808a99d6a2
--- /dev/null
+++ b/dist/svg/icon/icon-clock-fast-24.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/dist/svg/icon/icon-ebay-logo-16-colored.svg b/dist/svg/icon/icon-ebay-logo-16-colored.svg
new file mode 100644
index 0000000000..c23bbeb0c7
--- /dev/null
+++ b/dist/svg/icon/icon-ebay-logo-16-colored.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
diff --git a/dist/svg/icon/icon-ebay-plus-logo-dark-16-colored.svg b/dist/svg/icon/icon-ebay-plus-logo-dark-16-colored.svg
new file mode 100644
index 0000000000..424004d47f
--- /dev/null
+++ b/dist/svg/icon/icon-ebay-plus-logo-dark-16-colored.svg
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/dist/svg/icon/icon-european-conformity-48.svg b/dist/svg/icon/icon-european-conformity-48.svg
index 101ce6e118..47850dff36 100644
--- a/dist/svg/icon/icon-european-conformity-48.svg
+++ b/dist/svg/icon/icon-european-conformity-48.svg
@@ -1,7 +1,5 @@
diff --git a/dist/svg/icon/icon-exclude-64.svg b/dist/svg/icon/icon-exclude-64.svg
new file mode 100644
index 0000000000..3318b7a255
--- /dev/null
+++ b/dist/svg/icon/icon-exclude-64.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/dist/svg/icon/icon-location-arrow-16.svg b/dist/svg/icon/icon-location-arrow-16.svg
new file mode 100644
index 0000000000..82e623a682
--- /dev/null
+++ b/dist/svg/icon/icon-location-arrow-16.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/dist/svg/icon/icon-location-arrow-24.svg b/dist/svg/icon/icon-location-arrow-24.svg
new file mode 100644
index 0000000000..8dc78d80d6
--- /dev/null
+++ b/dist/svg/icon/icon-location-arrow-24.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/dist/svg/icon/icon-psa-16-colored.svg b/dist/svg/icon/icon-psa-16-colored.svg
new file mode 100644
index 0000000000..c264a26e20
--- /dev/null
+++ b/dist/svg/icon/icon-psa-16-colored.svg
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/dist/svg/icon/icon-psa-16.svg b/dist/svg/icon/icon-psa-16.svg
new file mode 100644
index 0000000000..8bbe9bf231
--- /dev/null
+++ b/dist/svg/icon/icon-psa-16.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/dist/svg/icon/icon-top-rated-plus-16.svg b/dist/svg/icon/icon-top-rated-plus-16.svg
new file mode 100644
index 0000000000..89c0582496
--- /dev/null
+++ b/dist/svg/icon/icon-top-rated-plus-16.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/dist/svg/icon/icon-top-rated-plus-24.svg b/dist/svg/icon/icon-top-rated-plus-24.svg
new file mode 100644
index 0000000000..c494ba5ba9
--- /dev/null
+++ b/dist/svg/icon/icon-top-rated-plus-24.svg
@@ -0,0 +1,7 @@
+
+
+
diff --git a/dist/svg/icon/icon-top-service-16.svg b/dist/svg/icon/icon-top-service-16.svg
index 41cd97e23f..89c0582496 100644
--- a/dist/svg/icon/icon-top-service-16.svg
+++ b/dist/svg/icon/icon-top-service-16.svg
@@ -2,6 +2,6 @@
diff --git a/dist/svg/icon/icon-top-service-24.svg b/dist/svg/icon/icon-top-service-24.svg
index ddbb838907..c494ba5ba9 100644
--- a/dist/svg/icon/icon-top-service-24.svg
+++ b/dist/svg/icon/icon-top-service-24.svg
@@ -2,6 +2,6 @@
diff --git a/dist/svg/icon/icon-top-service-filled-16-colored.svg b/dist/svg/icon/icon-top-service-filled-16-colored.svg
new file mode 100644
index 0000000000..49286410cd
--- /dev/null
+++ b/dist/svg/icon/icon-top-service-filled-16-colored.svg
@@ -0,0 +1,13 @@
+
+
+
+
diff --git a/dist/svg/icon/icon-top-service-filled-24-colored.svg b/dist/svg/icon/icon-top-service-filled-24-colored.svg
new file mode 100644
index 0000000000..af11eb6284
--- /dev/null
+++ b/dist/svg/icon/icon-top-service-filled-24-colored.svg
@@ -0,0 +1,14 @@
+
+
+
+
diff --git a/dist/svg/icon/icon-trophy-16.svg b/dist/svg/icon/icon-trophy-16.svg
index 93fcc99aaf..6509872222 100644
--- a/dist/svg/icon/icon-trophy-16.svg
+++ b/dist/svg/icon/icon-trophy-16.svg
@@ -1,7 +1,7 @@
-
+
diff --git a/dist/svg/icon/icon-trophy-24.svg b/dist/svg/icon/icon-trophy-24.svg
index 7e1b6ff7d9..931df3e13e 100644
--- a/dist/svg/icon/icon-trophy-24.svg
+++ b/dist/svg/icon/icon-trophy-24.svg
@@ -1,7 +1,7 @@
-
+
diff --git a/dist/svg/icons.svg b/dist/svg/icons.svg
index b794ba15b5..6474f5ddc8 100644
--- a/dist/svg/icons.svg
+++ b/dist/svg/icons.svg
@@ -2,25 +2,11 @@
-
-
-
-
-
-
-
@@ -30,7 +16,7 @@
@@ -72,11 +58,11 @@
@@ -99,6 +85,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
@@ -242,22 +260,15 @@
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -3830,6 +3870,13 @@
d="M5.671 4.257A9.959 9.959 0 0 1 12 2c5.523 0 10 4.477 10 10a9.958 9.958 0 0 1-2.257 6.329L5.67 4.257ZM4.257 5.671A9.959 9.959 0 0 0 2 12c0 5.523 4.477 10 10 10a9.958 9.958 0 0 0 6.329-2.257L4.257 5.67ZM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0Z"
/>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -10068,15 +10187,15 @@
diff --git a/dist/tokens/evo-core.css b/dist/tokens/evo-core.css
index c1664f40d1..337f9a3ca0 100644
--- a/dist/tokens/evo-core.css
+++ b/dist/tokens/evo-core.css
@@ -61,6 +61,7 @@
--color-blue-400: #659eff;
--color-blue-500: #3665f3;
--color-blue-600: #382aef;
+ --color-blue-650: #003aa5;
--color-blue-700: #002a69;
--color-blue-800: #19133a;
--color-violet-100: #f6f5fe;
diff --git a/dist/tokens/evo-dark.css b/dist/tokens/evo-dark.css
index 7d73480a6c..038b868410 100644
--- a/dist/tokens/evo-dark.css
+++ b/dist/tokens/evo-dark.css
@@ -33,7 +33,7 @@
--color-foreground-on-information: var(--color-neutral-800);
--color-foreground-on-strong: var(--color-neutral-800);
--color-foreground-link-visited: var(--color-pink-400);
- --color-foreground-link-legal: var(--color-foreground-accent);
+ --color-foreground-link-legal: var(--color-blue-400);
--color-foreground-link-primary: var(--color-foreground-primary);
--color-stroke-default: var(--color-neutral-600);
--color-stroke-accent: var(--color-blue-400);
diff --git a/dist/tokens/evo-light.css b/dist/tokens/evo-light.css
index edc54392cf..ccb5c14e40 100644
--- a/dist/tokens/evo-light.css
+++ b/dist/tokens/evo-light.css
@@ -32,7 +32,7 @@
--color-foreground-on-information: var(--color-neutral-100);
--color-foreground-on-strong: var(--color-neutral-100);
--color-foreground-link-visited: var(--color-pink-600);
- --color-foreground-link-legal: var(--color-foreground-accent);
+ --color-foreground-link-legal: var(--color-blue-650);
--color-foreground-link-primary: var(--color-foreground-primary);
--color-stroke-default: var(--color-neutral-500);
--color-stroke-accent: var(--color-blue-500);
@@ -153,8 +153,8 @@
var(--color-ai-solid-blue-subtle) 154.5%
);
--shadow-subtle: 0px 4px 12px 0px rgba(0, 0, 0, 0.07);
- --shadow-strong: 0px 5px 17px 0px rgba(0, 0, 0, 0.2),
- 0px 2px 7px 0px rgba(0, 0, 0, 0.15);
+ --shadow-strong:
+ 0px 5px 17px 0px rgba(0, 0, 0, 0.2), 0px 2px 7px 0px rgba(0, 0, 0, 0.15);
--color-loading-overlay: var(--color-neutral-100-rgb), 0.7;
--color-loading-fill: #ededed;
--color-loading-shimmer: linear-gradient(
diff --git a/dist/video/video.css b/dist/video/video.css
index fe9dcdbd90..cb0b9872a2 100644
--- a/dist/video/video.css
+++ b/dist/video/video.css
@@ -7,6 +7,10 @@
width: 100%;
}
+.video-player button {
+ font-family: inherit;
+}
+
.video-player__overlay {
align-items: center;
background-color: rgba(0, 0, 0, 0.6);
@@ -56,11 +60,45 @@
width: 48px;
}
+.video-player .shaka-bottom-controls {
+ box-sizing: border-box;
+ margin-bottom: 3%;
+ padding-bottom: 0;
+ position: relative;
+ width: 94%;
+}
+
.video-player .shaka-controls-button-panel {
background-color: rgba(0, 0, 0, 0.7);
border-radius: 8px;
+ bottom: 0;
+ height: 40px;
+ position: absolute;
+ width: 100%;
+}
+.video-player .shaka-controls-button-panel :first-child {
+ margin-left: 8px;
+}
+.video-player .shaka-controls-button-panel :last-child {
+ margin-right: 8px;
}
.video-player--poster .shaka-scrim-container {
visibility: hidden;
}
+
+.video-player .shaka-range-container {
+ box-sizing: border-box;
+ margin: 0 188px 18px 76px;
+}
+
+.video-player #shaka-player-ui-time-container {
+ display: none;
+}
+
+.video-player .shaka-video-container {
+ font-family:
+ Market Sans,
+ Arial,
+ sans-serif;
+}
diff --git a/package-lock.json b/package-lock.json
index f35912ed93..6a34274824 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -9,29 +9,29 @@
"version": "19.1.3",
"license": "MIT",
"devDependencies": {
- "@babel/cli": "^7.26.4",
- "@babel/core": "^7.26.9",
+ "@babel/cli": "^7.27.0",
+ "@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
- "@commitlint/cli": "^19.7.1",
- "@commitlint/config-conventional": "^19.7.1",
+ "@commitlint/cli": "^19.8.0",
+ "@commitlint/config-conventional": "^19.8.0",
"@docsearch/js": "^3.9.0",
- "@ebay/browserslist-config": "^2.10.0",
+ "@ebay/browserslist-config": "^2.11.0",
"@floating-ui/dom": "^1.6.13",
- "@marko/run": "^0.5.16",
- "@marko/run-adapter-static": "^0.2.1",
+ "@marko/run": "^0.6.2",
+ "@marko/run-adapter-static": "^1.0.1",
"@percy/cli": "^1.30.7",
"@percy/storybook": "^6.0.3",
- "@storybook/html": "^8.5.8",
- "@storybook/html-webpack5": "^8.5.8",
- "autoprefixer": "^10.4.20",
- "babel-loader": "^9.2.1",
+ "@storybook/html": "^8.6.11",
+ "@storybook/html-webpack5": "^8.6.11",
+ "autoprefixer": "^10.4.21",
+ "babel-loader": "^10.0.0",
"btoa": "^1",
"clean-css": "^5",
"cross-env": "^7",
"cssnano": "^7.0.6",
- "eslint": "^9.21.0",
+ "eslint": "^9.23.0",
"eslint-config-ebay": "^1",
"eslint-config-prettier": "^10",
"eslint-plugin-prettier": "^5",
@@ -39,9 +39,9 @@
"gulp": "^5",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
- "lint-staged": "^15.4.3",
+ "lint-staged": "^15.5.0",
"makeup-alert-dialog": "~0.3.4",
- "makeup-combobox": "~0.4.8",
+ "makeup-combobox": "~0.4.9",
"makeup-confirm-dialog": "~0.3.4",
"makeup-dialog": "~0.5.4",
"makeup-dialog-button": "~0.4.4",
@@ -52,8 +52,8 @@
"makeup-input-dialog": "0.2.4",
"makeup-key-emitter": "~0.4.3",
"makeup-lightbox-dialog": "0.2.4",
- "makeup-listbox": "~0.4.5",
- "makeup-listbox-button": "~0.5.7",
+ "makeup-listbox": "~0.4.6",
+ "makeup-listbox-button": "~0.5.8",
"makeup-menu": "~0.4.4",
"makeup-menu-button": "~0.4.6",
"makeup-modal": "~0.5.4",
@@ -63,25 +63,25 @@
"makeup-snackbar-dialog": "0.2.4",
"makeup-switch": "~0.3.3",
"makeup-toast-dialog": "0.2.4",
- "marko": "^5.37.16",
+ "marko": "^5.37.24",
"mkdirp": "^3",
"ncp": "^2",
"npm-run-all": "^4",
"postcss": "^8.5.3",
- "postcss-cli": "^11.0.0",
+ "postcss-cli": "^11.0.1",
"postcss-comment": "^2.0.0",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-mixins": "^11.0.3",
"postcss-nested": "^7.0.2",
"postcss-simple-vars": "^7.0.1",
- "prettier": "^3.5.2",
- "prismjs": "^1.29.0",
+ "prettier": "^3.5.3",
+ "prismjs": "^1.30.0",
"rimraf": "^6",
- "sass": "^1.85.0",
+ "sass": "^1.86.0",
"sass-loader": "^16.0.5",
- "storybook": "^8.5.8",
- "stylelint": "^16.14.1",
+ "storybook": "^8.6.11",
+ "stylelint": "^16.17.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard": "^37",
"stylelint-config-standard-scss": "^14.0.0",
@@ -101,6 +101,7 @@
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.9.tgz",
"integrity": "sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@algolia/autocomplete-plugin-algolia-insights": "1.17.9",
"@algolia/autocomplete-shared": "1.17.9"
@@ -111,6 +112,7 @@
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.9.tgz",
"integrity": "sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@algolia/autocomplete-shared": "1.17.9"
},
@@ -123,6 +125,7 @@
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.9.tgz",
"integrity": "sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@algolia/autocomplete-shared": "1.17.9"
},
@@ -136,186 +139,200 @@
"resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.9.tgz",
"integrity": "sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==",
"dev": true,
+ "license": "MIT",
"peerDependencies": {
"@algolia/client-search": ">= 4.9.1 < 6",
"algoliasearch": ">= 4.9.1 < 6"
}
},
"node_modules/@algolia/client-abtesting": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.20.3.tgz",
- "integrity": "sha512-wPOzHYSsW+H97JkBLmnlOdJSpbb9mIiuNPycUCV5DgzSkJFaI/OFxXfZXAh1gqxK+hf0miKue1C9bltjWljrNA==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.23.0.tgz",
+ "integrity": "sha512-AyZ+9CUgWXwaaJ2lSwOJSy+/w0MFBPFqLrjWYs/HEpYMzBuFfGNZ7gEM9a7h4j7jY8hSBARBl8qdvInmj5vOEQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "@algolia/client-common": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-analytics": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.20.3.tgz",
- "integrity": "sha512-XE3iduH9lA7iTQacDGofBQyIyIgaX8qbTRRdj1bOCmfzc9b98CoiMwhNwdTifmmMewmN0EhVF3hP8KjKWwX7Yw==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.23.0.tgz",
+ "integrity": "sha512-oeKCPwLBnTEPF/RWr0aaJnrfRDfFRLT5O7KV0OF1NmpEXvmzLmN7RwnwDKsNtPUHNfpJ6esP9xzkPEtJabrZ2w==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "@algolia/client-common": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-common": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.20.3.tgz",
- "integrity": "sha512-IYRd/A/R3BXeaQVT2805lZEdWo54v39Lqa7ABOxIYnUvX2vvOMW1AyzCuT0U7Q+uPdD4UW48zksUKRixShcWxA==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.23.0.tgz",
+ "integrity": "sha512-9jacdC44vXLSaYKNLkFpbU1J4BbBPi/N7uoPhcGO//8ubRuVzigH6+RfK5FbudmQlqFt0J5DGUCVeTlHtgyUeg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-insights": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.20.3.tgz",
- "integrity": "sha512-QGc/bmDUBgzB71rDL6kihI2e1Mx6G6PxYO5Ks84iL3tDcIel1aFuxtRF14P8saGgdIe1B6I6QkpkeIddZ6vWQw==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.23.0.tgz",
+ "integrity": "sha512-/Gw5UitweRsnyb24Td4XhjXmsx8PxFzCI0oW6FZZvyr4kjzB9ECP2IjO+PdDq1A2fzDl/LXQ+u8ROudoVnXnQg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "@algolia/client-common": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-personalization": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.20.3.tgz",
- "integrity": "sha512-zuM31VNPDJ1LBIwKbYGz/7+CSm+M8EhlljDamTg8AnDilnCpKjBebWZR5Tftv/FdWSro4tnYGOIz1AURQgZ+tQ==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.23.0.tgz",
+ "integrity": "sha512-ivrEZBoXfDatpqpifgHauydxHEe4udNqJ0gy7adR2KODeQ+39MQeaT10I24mu+eylIuiQKJRqORgEdLZycq2qQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "@algolia/client-common": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-query-suggestions": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.20.3.tgz",
- "integrity": "sha512-Nn872PuOI8qzi1bxMMhJ0t2AzVBqN01jbymBQOkypvZHrrjZPso3iTpuuLLo9gi3yc/08vaaWTAwJfPhxPwJUw==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.23.0.tgz",
+ "integrity": "sha512-DjSgJWqTcsnlXEKqDsU7Y2vB/W/VYLlr6UfkzJkMuKB554Ia7IJr4keP2AlHVjjbBG62IDpdh5OkEs/+fbWsOA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "@algolia/client-common": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/client-search": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.20.3.tgz",
- "integrity": "sha512-9+Fm1ahV8/2goSIPIqZnVitV5yHW5E5xTdKy33xnqGd45A9yVv5tTkudWzEXsbfBB47j9Xb3uYPZjAvV5RHbKA==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.23.0.tgz",
+ "integrity": "sha512-XAYWUYUhEG4OIdo/N7H/OFFRD9fokfv3bBTky+4Y4/q07bxhnrGSUvcrU6JQ2jJTQyg6kv0ke1EIfiTO/Xxb+g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "@algolia/client-common": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/ingestion": {
- "version": "1.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.20.3.tgz",
- "integrity": "sha512-5GHNTiZ3saLjTNyr6WkP5hzDg2eFFAYWomvPcm9eHWskjzXt8R0IOiW9kkTS6I6hXBwN5H9Zna5mZDSqqJdg+g==",
+ "version": "1.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.23.0.tgz",
+ "integrity": "sha512-ULbykzzhhLVofCDU1m/CqSzTyKmjaxA/z1d6o6hgUuR6X7/dll9/G0lu0e4vmWIOItklWWrhU2V8sXD0YGBIHg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "@algolia/client-common": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/monitoring": {
- "version": "1.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.20.3.tgz",
- "integrity": "sha512-KUWQbTPoRjP37ivXSQ1+lWMfaifCCMzTnEcEnXwAmherS5Tp7us6BAqQDMGOD4E7xyaS2I8pto6WlOzxH+CxmA==",
+ "version": "1.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.23.0.tgz",
+ "integrity": "sha512-oB3wG7CgQJQr+uoijV7bWBphiSHkvGX43At8RGgkDyc7Aeabcp9ik5HgLC1YDgbHVOlQI+tce5HIbDCifzQCIg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "@algolia/client-common": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/recommend": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.20.3.tgz",
- "integrity": "sha512-oo/gG77xTTTclkrdFem0Kmx5+iSRFiwuRRdxZETDjwzCI7svutdbwBgV/Vy4D4QpYaX4nhY/P43k84uEowCE4Q==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.23.0.tgz",
+ "integrity": "sha512-4PWvCV6VGhnCMAbv2zfQUAlc3ofMs6ovqKlC/xcp7tWaucYd//piHg9CcCM4S0p9OZznEGQMRYPt2uqbk6V9vg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "@algolia/client-common": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-browser-xhr": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.20.3.tgz",
- "integrity": "sha512-BkkW7otbiI/Er1AiEPZs1h7lxbtSO9p09jFhv3/iT8/0Yz0CY79VJ9iq+Wv1+dq/l0OxnMpBy8mozrieGA3mXQ==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.23.0.tgz",
+ "integrity": "sha512-bacOsX41pnsupNB0k0Ny+1JDchQxIsZIcp69GKDBT0NgTHG8OayEO141eFalNmGil+GXPY0NUPRpx+5s4RdhGA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3"
+ "@algolia/client-common": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-fetch": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.20.3.tgz",
- "integrity": "sha512-eAVlXz7UNzTsA1EDr+p0nlIH7WFxo7k3NMxYe8p38DH8YVWLgm2MgOVFUMNg9HCi6ZNOi/A2w/id2ZZ4sKgUOw==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.23.0.tgz",
+ "integrity": "sha512-tVNFREexJWDrvc23evmRgAcb2KLZuVilOIB/rVnQCl0GDbqIWJuQ1lG22HKqvCEQFthHkgVFGLYE74wQ96768g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3"
+ "@algolia/client-common": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
}
},
"node_modules/@algolia/requester-node-http": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.20.3.tgz",
- "integrity": "sha512-FqR3pQPfHfQyX1wgcdK6iyqu86yP76MZd4Pzj1y/YLMj9rRmRCY0E0AffKr//nrOFEwv6uY8BQY4fd9/6b0ZCg==",
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.23.0.tgz",
+ "integrity": "sha512-XXHbq2heOZc9EFCc4z+uyHS9YRBygZbYQVsWjWZWx8hdAz+tkBX/jLHM9Xg+3zO0/v8JN6pcZzqYEVsdrLeNLg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@algolia/client-common": "5.20.3"
+ "@algolia/client-common": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
@@ -336,14 +353,14 @@
}
},
"node_modules/@asamuzakjp/css-color": {
- "version": "2.8.3",
- "resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-2.8.3.tgz",
- "integrity": "sha512-GIc76d9UI1hCvOATjZPyHFmE5qhRccp3/zGfMPapK3jBi+yocEzp6BBB0UnfRYP9NP4FANqUZYb0hnfs3TM3hw==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.1.1.tgz",
+ "integrity": "sha512-hpRD68SV2OMcZCsrbdkccTw5FXjNDLo5OuqSHyHZfwweGsDWZwDJ2+gONyNAbazZclobMirACLw0lk8WVxIqxA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@csstools/css-calc": "^2.1.1",
- "@csstools/css-color-parser": "^3.0.7",
+ "@csstools/css-calc": "^2.1.2",
+ "@csstools/css-color-parser": "^3.0.8",
"@csstools/css-parser-algorithms": "^3.0.4",
"@csstools/css-tokenizer": "^3.0.3",
"lru-cache": "^10.4.3"
@@ -357,9 +374,9 @@
"license": "ISC"
},
"node_modules/@babel/cli": {
- "version": "7.26.4",
- "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.26.4.tgz",
- "integrity": "sha512-+mORf3ezU3p3qr+82WvJSnQNE1GAYeoCfEv4fik6B5/2cvKZ75AX8oawWQdXtM9MmndooQj15Jr9kelRFWsuRw==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.27.0.tgz",
+ "integrity": "sha512-bZfxn8DRxwiVzDO5CEeV+7IqXeCkzI4yYnrQbpwjT76CUyossQc6RYE7n+xfm0/2k40lPaCpW0FhxYs7EBAetw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -406,26 +423,28 @@
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz",
"integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
- "version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz",
- "integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==",
+ "version": "7.26.10",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz",
+ "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.26.2",
- "@babel/generator": "^7.26.9",
+ "@babel/generator": "^7.26.10",
"@babel/helper-compilation-targets": "^7.26.5",
"@babel/helper-module-transforms": "^7.26.0",
- "@babel/helpers": "^7.26.9",
- "@babel/parser": "^7.26.9",
+ "@babel/helpers": "^7.26.10",
+ "@babel/parser": "^7.26.10",
"@babel/template": "^7.26.9",
- "@babel/traverse": "^7.26.9",
- "@babel/types": "^7.26.9",
+ "@babel/traverse": "^7.26.10",
+ "@babel/types": "^7.26.10",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
@@ -441,13 +460,14 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz",
- "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.0.tgz",
+ "integrity": "sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/parser": "^7.26.9",
- "@babel/types": "^7.26.9",
+ "@babel/parser": "^7.27.0",
+ "@babel/types": "^7.27.0",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
@@ -470,13 +490,13 @@
}
},
"node_modules/@babel/helper-compilation-targets": {
- "version": "7.26.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
- "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.0.tgz",
+ "integrity": "sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.26.5",
+ "@babel/compat-data": "^7.26.8",
"@babel/helper-validator-option": "^7.25.9",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
@@ -487,18 +507,18 @@
}
},
"node_modules/@babel/helper-create-class-features-plugin": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz",
- "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.0.tgz",
+ "integrity": "sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
"@babel/helper-member-expression-to-functions": "^7.25.9",
"@babel/helper-optimise-call-expression": "^7.25.9",
- "@babel/helper-replace-supers": "^7.25.9",
+ "@babel/helper-replace-supers": "^7.26.5",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
- "@babel/traverse": "^7.25.9",
+ "@babel/traverse": "^7.27.0",
"semver": "^6.3.1"
},
"engines": {
@@ -509,9 +529,9 @@
}
},
"node_modules/@babel/helper-create-regexp-features-plugin": {
- "version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz",
- "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.0.tgz",
+ "integrity": "sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -527,9 +547,9 @@
}
},
"node_modules/@babel/helper-define-polyfill-provider": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz",
- "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==",
+ "version": "0.6.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.4.tgz",
+ "integrity": "sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -708,25 +728,27 @@
}
},
"node_modules/@babel/helpers": {
- "version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz",
- "integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.0.tgz",
+ "integrity": "sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/template": "^7.26.9",
- "@babel/types": "^7.26.9"
+ "@babel/template": "^7.27.0",
+ "@babel/types": "^7.27.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
- "version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz",
- "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.0.tgz",
+ "integrity": "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/types": "^7.26.9"
+ "@babel/types": "^7.27.0"
},
"bin": {
"parser": "bin/babel-parser.js"
@@ -918,6 +940,7 @@
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.26.8.tgz",
"integrity": "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.26.5",
"@babel/helper-remap-async-to-generator": "^7.25.9",
@@ -965,13 +988,13 @@
}
},
"node_modules/@babel/plugin-transform-block-scoping": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz",
- "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.27.0.tgz",
+ "integrity": "sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.25.9"
+ "@babel/helper-plugin-utils": "^7.26.5"
},
"engines": {
"node": ">=6.9.0"
@@ -1171,6 +1194,7 @@
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz",
"integrity": "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.26.5",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9"
@@ -1535,13 +1559,13 @@
}
},
"node_modules/@babel/plugin-transform-regenerator": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz",
- "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.27.0.tgz",
+ "integrity": "sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.25.9",
+ "@babel/helper-plugin-utils": "^7.26.5",
"regenerator-transform": "^0.15.2"
},
"engines": {
@@ -1638,6 +1662,7 @@
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz",
"integrity": "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.26.5"
},
@@ -1649,10 +1674,11 @@
}
},
"node_modules/@babel/plugin-transform-typeof-symbol": {
- "version": "7.26.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.26.7.tgz",
- "integrity": "sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.0.tgz",
+ "integrity": "sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/helper-plugin-utils": "^7.26.5"
},
@@ -1664,14 +1690,14 @@
}
},
"node_modules/@babel/plugin-transform-typescript": {
- "version": "7.26.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.26.5.tgz",
- "integrity": "sha512-GJhPO0y8SD5EYVCy2Zr+9dSZcEgaSmq5BLR0Oc25TOEhC+ba49vUAGZFjy8v79z9E1mdldq4x9d1xgh4L1d5dQ==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.27.0.tgz",
+ "integrity": "sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.9",
- "@babel/helper-create-class-features-plugin": "^7.25.9",
+ "@babel/helper-create-class-features-plugin": "^7.27.0",
"@babel/helper-plugin-utils": "^7.26.5",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.9",
"@babel/plugin-syntax-typescript": "^7.25.9"
@@ -1755,6 +1781,7 @@
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.9.tgz",
"integrity": "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/compat-data": "^7.26.8",
"@babel/helper-compilation-targets": "^7.26.5",
@@ -1849,9 +1876,9 @@
}
},
"node_modules/@babel/runtime": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
- "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.0.tgz",
+ "integrity": "sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1862,30 +1889,32 @@
}
},
"node_modules/@babel/template": {
- "version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz",
- "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.0.tgz",
+ "integrity": "sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
- "@babel/parser": "^7.26.9",
- "@babel/types": "^7.26.9"
+ "@babel/parser": "^7.27.0",
+ "@babel/types": "^7.27.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
- "version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz",
- "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.0.tgz",
+ "integrity": "sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
- "@babel/generator": "^7.26.9",
- "@babel/parser": "^7.26.9",
- "@babel/template": "^7.26.9",
- "@babel/types": "^7.26.9",
+ "@babel/generator": "^7.27.0",
+ "@babel/parser": "^7.27.0",
+ "@babel/template": "^7.27.0",
+ "@babel/types": "^7.27.0",
"debug": "^4.3.1",
"globals": "^11.1.0"
},
@@ -1894,10 +1923,11 @@
}
},
"node_modules/@babel/types": {
- "version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz",
- "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==",
+ "version": "7.27.0",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.0.tgz",
+ "integrity": "sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.25.9",
"@babel/helper-validator-identifier": "^7.25.9"
@@ -1911,6 +1941,7 @@
"resolved": "https://registry.npmjs.org/@changesets/apply-release-plan/-/apply-release-plan-7.0.10.tgz",
"integrity": "sha512-wNyeIJ3yDsVspYvHnEz1xQDq18D9ifed3lI+wxRQRK4pArUcuHgCTrHv0QRnnwjhVCQACxZ+CBih3wgOct6UXw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/config": "^3.1.1",
"@changesets/get-version-range-type": "^0.4.0",
@@ -1932,6 +1963,7 @@
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
"dev": true,
+ "license": "MIT",
"bin": {
"prettier": "bin-prettier.js"
},
@@ -1947,6 +1979,7 @@
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -1959,6 +1992,7 @@
"resolved": "https://registry.npmjs.org/@changesets/assemble-release-plan/-/assemble-release-plan-6.0.6.tgz",
"integrity": "sha512-Frkj8hWJ1FRZiY3kzVCKzS0N5mMwWKwmv9vpam7vt8rZjLL1JMthdh6pSDVSPumHPshTTkKZ0VtNbE0cJHZZUg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/errors": "^0.2.0",
"@changesets/get-dependents-graph": "^2.1.3",
@@ -1973,6 +2007,7 @@
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -1985,6 +2020,7 @@
"resolved": "https://registry.npmjs.org/@changesets/changelog-git/-/changelog-git-0.2.1.tgz",
"integrity": "sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/types": "^6.1.0"
}
@@ -1994,6 +2030,7 @@
"resolved": "https://registry.npmjs.org/@changesets/changelog-github/-/changelog-github-0.5.1.tgz",
"integrity": "sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/get-github-info": "^0.6.0",
"@changesets/types": "^6.1.0",
@@ -2005,6 +2042,7 @@
"resolved": "https://registry.npmjs.org/@changesets/cli/-/cli-2.28.1.tgz",
"integrity": "sha512-PiIyGRmSc6JddQJe/W1hRPjiN4VrMvb2VfQ6Uydy2punBioQrsxppyG5WafinKcW1mT0jOe/wU4k9Zy5ff21AA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/apply-release-plan": "^7.0.10",
"@changesets/assemble-release-plan": "^6.0.6",
@@ -2040,9 +2078,9 @@
}
},
"node_modules/@changesets/cli/node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -2057,6 +2095,7 @@
"resolved": "https://registry.npmjs.org/@changesets/config/-/config-3.1.1.tgz",
"integrity": "sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/errors": "^0.2.0",
"@changesets/get-dependents-graph": "^2.1.3",
@@ -2072,6 +2111,7 @@
"resolved": "https://registry.npmjs.org/@changesets/errors/-/errors-0.2.0.tgz",
"integrity": "sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"extendable-error": "^0.1.5"
}
@@ -2081,6 +2121,7 @@
"resolved": "https://registry.npmjs.org/@changesets/get-dependents-graph/-/get-dependents-graph-2.1.3.tgz",
"integrity": "sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/types": "^6.1.0",
"@manypkg/get-packages": "^1.1.3",
@@ -2093,6 +2134,7 @@
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -2116,6 +2158,7 @@
"resolved": "https://registry.npmjs.org/@changesets/get-release-plan/-/get-release-plan-4.0.8.tgz",
"integrity": "sha512-MM4mq2+DQU1ZT7nqxnpveDMTkMBLnwNX44cX7NSxlXmr7f8hO6/S2MXNiXG54uf/0nYnefv0cfy4Czf/ZL/EKQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/assemble-release-plan": "^6.0.6",
"@changesets/config": "^3.1.1",
@@ -2129,13 +2172,15 @@
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@changesets/get-version-range-type/-/get-version-range-type-0.4.0.tgz",
"integrity": "sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@changesets/git": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@changesets/git/-/git-3.0.2.tgz",
"integrity": "sha512-r1/Kju9Y8OxRRdvna+nxpQIsMsRQn9dhhAZt94FLDeu0Hij2hnOozW8iqnHBgvu+KdnJppCveQwK4odwfw/aWQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/errors": "^0.2.0",
"@manypkg/get-packages": "^1.1.3",
@@ -2149,6 +2194,7 @@
"resolved": "https://registry.npmjs.org/@changesets/logger/-/logger-0.1.1.tgz",
"integrity": "sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"picocolors": "^1.1.0"
}
@@ -2158,6 +2204,7 @@
"resolved": "https://registry.npmjs.org/@changesets/parse/-/parse-0.4.1.tgz",
"integrity": "sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/types": "^6.1.0",
"js-yaml": "^3.13.1"
@@ -2168,6 +2215,7 @@
"resolved": "https://registry.npmjs.org/@changesets/pre/-/pre-2.0.2.tgz",
"integrity": "sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/errors": "^0.2.0",
"@changesets/types": "^6.1.0",
@@ -2180,6 +2228,7 @@
"resolved": "https://registry.npmjs.org/@changesets/read/-/read-0.6.3.tgz",
"integrity": "sha512-9H4p/OuJ3jXEUTjaVGdQEhBdqoT2cO5Ts95JTFsQyawmKzpL8FnIeJSyhTDPW1MBRDnwZlHFEM9SpPwJDY5wIg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/git": "^3.0.2",
"@changesets/logger": "^0.1.1",
@@ -2195,6 +2244,7 @@
"resolved": "https://registry.npmjs.org/@changesets/should-skip-package/-/should-skip-package-0.1.2.tgz",
"integrity": "sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/types": "^6.1.0",
"@manypkg/get-packages": "^1.1.3"
@@ -2204,13 +2254,15 @@
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@changesets/types/-/types-6.1.0.tgz",
"integrity": "sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@changesets/write": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@changesets/write/-/write-0.4.0.tgz",
"integrity": "sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@changesets/types": "^6.1.0",
"fs-extra": "^7.0.1",
@@ -2223,6 +2275,7 @@
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz",
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
"dev": true,
+ "license": "MIT",
"bin": {
"prettier": "bin-prettier.js"
},
@@ -2271,16 +2324,17 @@
}
},
"node_modules/@commitlint/cli": {
- "version": "19.7.1",
- "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.7.1.tgz",
- "integrity": "sha512-iObGjR1tE/PfDtDTEfd+tnRkB3/HJzpQqRTyofS2MPPkDn1mp3DBC8SoPDayokfAy+xKhF8+bwRCJO25Nea0YQ==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.8.0.tgz",
+ "integrity": "sha512-t/fCrLVu+Ru01h0DtlgHZXbHV2Y8gKocTR5elDOqIRUzQd0/6hpt2VIWOj9b3NDo7y4/gfxeR2zRtXq/qO6iUg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@commitlint/format": "^19.5.0",
- "@commitlint/lint": "^19.7.1",
- "@commitlint/load": "^19.6.1",
- "@commitlint/read": "^19.5.0",
- "@commitlint/types": "^19.5.0",
+ "@commitlint/format": "^19.8.0",
+ "@commitlint/lint": "^19.8.0",
+ "@commitlint/load": "^19.8.0",
+ "@commitlint/read": "^19.8.0",
+ "@commitlint/types": "^19.8.0",
"tinyexec": "^0.3.0",
"yargs": "^17.0.0"
},
@@ -2292,12 +2346,13 @@
}
},
"node_modules/@commitlint/config-conventional": {
- "version": "19.7.1",
- "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.7.1.tgz",
- "integrity": "sha512-fsEIF8zgiI/FIWSnykdQNj/0JE4av08MudLTyYHm4FlLWemKoQvPNUYU2M/3tktWcCEyq7aOkDDgtjrmgWFbvg==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.8.0.tgz",
+ "integrity": "sha512-9I2kKJwcAPwMoAj38hwqFXG0CzS2Kj+SAByPUQ0SlHTfb7VUhYVmo7G2w2tBrqmOf7PFd6MpZ/a1GQJo8na8kw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@commitlint/types": "^19.5.0",
+ "@commitlint/types": "^19.8.0",
"conventional-changelog-conventionalcommits": "^7.0.2"
},
"engines": {
@@ -2305,13 +2360,13 @@
}
},
"node_modules/@commitlint/config-validator": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.5.0.tgz",
- "integrity": "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.8.0.tgz",
+ "integrity": "sha512-+r5ZvD/0hQC3w5VOHJhGcCooiAVdynFlCe2d6I9dU+PvXdV3O+fU4vipVg+6hyLbQUuCH82mz3HnT/cBQTYYuA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@commitlint/types": "^19.5.0",
+ "@commitlint/types": "^19.8.0",
"ajv": "^8.11.0"
},
"engines": {
@@ -2319,12 +2374,13 @@
}
},
"node_modules/@commitlint/ensure": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.5.0.tgz",
- "integrity": "sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.8.0.tgz",
+ "integrity": "sha512-kNiNU4/bhEQ/wutI1tp1pVW1mQ0QbAjfPRo5v8SaxoVV+ARhkB8Wjg3BSseNYECPzWWfg/WDqQGIfV1RaBFQZg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@commitlint/types": "^19.5.0",
+ "@commitlint/types": "^19.8.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.snakecase": "^4.1.1",
@@ -2336,9 +2392,9 @@
}
},
"node_modules/@commitlint/execute-rule": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.5.0.tgz",
- "integrity": "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.8.0.tgz",
+ "integrity": "sha512-fuLeI+EZ9x2v/+TXKAjplBJWI9CNrHnyi5nvUQGQt4WRkww/d95oVRsc9ajpt4xFrFmqMZkd/xBQHZDvALIY7A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2346,13 +2402,13 @@
}
},
"node_modules/@commitlint/format": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.5.0.tgz",
- "integrity": "sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.8.0.tgz",
+ "integrity": "sha512-EOpA8IERpQstxwp/WGnDArA7S+wlZDeTeKi98WMOvaDLKbjptuHWdOYYr790iO7kTCif/z971PKPI2PkWMfOxg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@commitlint/types": "^19.5.0",
+ "@commitlint/types": "^19.8.0",
"chalk": "^5.3.0"
},
"engines": {
@@ -2360,12 +2416,13 @@
}
},
"node_modules/@commitlint/is-ignored": {
- "version": "19.7.1",
- "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.7.1.tgz",
- "integrity": "sha512-3IaOc6HVg2hAoGleRK3r9vL9zZ3XY0rf1RsUf6jdQLuaD46ZHnXBiOPTyQ004C4IvYjSWqJwlh0/u2P73aIE3g==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.8.0.tgz",
+ "integrity": "sha512-L2Jv9yUg/I+jF3zikOV0rdiHUul9X3a/oU5HIXhAJLE2+TXTnEBfqYP9G5yMw/Yb40SnR764g4fyDK6WR2xtpw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@commitlint/types": "^19.5.0",
+ "@commitlint/types": "^19.8.0",
"semver": "^7.6.0"
},
"engines": {
@@ -2377,6 +2434,7 @@
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -2385,31 +2443,32 @@
}
},
"node_modules/@commitlint/lint": {
- "version": "19.7.1",
- "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.7.1.tgz",
- "integrity": "sha512-LhcPfVjcOcOZA7LEuBBeO00o3MeZa+tWrX9Xyl1r9PMd5FWsEoZI9IgnGqTKZ0lZt5pO3ZlstgnRyY1CJJc9Xg==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.8.0.tgz",
+ "integrity": "sha512-+/NZKyWKSf39FeNpqhfMebmaLa1P90i1Nrb1SrA7oSU5GNN/lksA4z6+ZTnsft01YfhRZSYMbgGsARXvkr/VLQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@commitlint/is-ignored": "^19.7.1",
- "@commitlint/parse": "^19.5.0",
- "@commitlint/rules": "^19.6.0",
- "@commitlint/types": "^19.5.0"
+ "@commitlint/is-ignored": "^19.8.0",
+ "@commitlint/parse": "^19.8.0",
+ "@commitlint/rules": "^19.8.0",
+ "@commitlint/types": "^19.8.0"
},
"engines": {
"node": ">=v18"
}
},
"node_modules/@commitlint/load": {
- "version": "19.6.1",
- "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.6.1.tgz",
- "integrity": "sha512-kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.8.0.tgz",
+ "integrity": "sha512-4rvmm3ff81Sfb+mcWT5WKlyOa+Hd33WSbirTVUer0wjS1Hv/Hzr07Uv1ULIV9DkimZKNyOwXn593c+h8lsDQPQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@commitlint/config-validator": "^19.5.0",
- "@commitlint/execute-rule": "^19.5.0",
- "@commitlint/resolve-extends": "^19.5.0",
- "@commitlint/types": "^19.5.0",
+ "@commitlint/config-validator": "^19.8.0",
+ "@commitlint/execute-rule": "^19.8.0",
+ "@commitlint/resolve-extends": "^19.8.0",
+ "@commitlint/types": "^19.8.0",
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"cosmiconfig-typescript-loader": "^6.1.0",
@@ -2422,21 +2481,23 @@
}
},
"node_modules/@commitlint/message": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.5.0.tgz",
- "integrity": "sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.8.0.tgz",
+ "integrity": "sha512-qs/5Vi9bYjf+ZV40bvdCyBn5DvbuelhR6qewLE8Bh476F7KnNyLfdM/ETJ4cp96WgeeHo6tesA2TMXS0sh5X4A==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=v18"
}
},
"node_modules/@commitlint/parse": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.5.0.tgz",
- "integrity": "sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.8.0.tgz",
+ "integrity": "sha512-YNIKAc4EXvNeAvyeEnzgvm1VyAe0/b3Wax7pjJSwXuhqIQ1/t2hD3OYRXb6D5/GffIvaX82RbjD+nWtMZCLL7Q==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@commitlint/types": "^19.5.0",
+ "@commitlint/types": "^19.8.0",
"conventional-changelog-angular": "^7.0.0",
"conventional-commits-parser": "^5.0.0"
},
@@ -2445,14 +2506,14 @@
}
},
"node_modules/@commitlint/read": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.5.0.tgz",
- "integrity": "sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.8.0.tgz",
+ "integrity": "sha512-6ywxOGYajcxK1y1MfzrOnwsXO6nnErna88gRWEl3qqOOP8MDu/DTeRkGLXBFIZuRZ7mm5yyxU5BmeUvMpNte5w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@commitlint/top-level": "^19.5.0",
- "@commitlint/types": "^19.5.0",
+ "@commitlint/top-level": "^19.8.0",
+ "@commitlint/types": "^19.8.0",
"git-raw-commits": "^4.0.0",
"minimist": "^1.2.8",
"tinyexec": "^0.3.0"
@@ -2462,14 +2523,14 @@
}
},
"node_modules/@commitlint/resolve-extends": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.5.0.tgz",
- "integrity": "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.8.0.tgz",
+ "integrity": "sha512-CLanRQwuG2LPfFVvrkTrBR/L/DMy3+ETsgBqW1OvRxmzp/bbVJW0Xw23LnnExgYcsaFtos967lul1CsbsnJlzQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@commitlint/config-validator": "^19.5.0",
- "@commitlint/types": "^19.5.0",
+ "@commitlint/config-validator": "^19.8.0",
+ "@commitlint/types": "^19.8.0",
"global-directory": "^4.0.1",
"import-meta-resolve": "^4.0.0",
"lodash.mergewith": "^4.6.2",
@@ -2480,33 +2541,35 @@
}
},
"node_modules/@commitlint/rules": {
- "version": "19.6.0",
- "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.6.0.tgz",
- "integrity": "sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.8.0.tgz",
+ "integrity": "sha512-IZ5IE90h6DSWNuNK/cwjABLAKdy8tP8OgGVGbXe1noBEX5hSsu00uRlLu6JuruiXjWJz2dZc+YSw3H0UZyl/mA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@commitlint/ensure": "^19.5.0",
- "@commitlint/message": "^19.5.0",
- "@commitlint/to-lines": "^19.5.0",
- "@commitlint/types": "^19.5.0"
+ "@commitlint/ensure": "^19.8.0",
+ "@commitlint/message": "^19.8.0",
+ "@commitlint/to-lines": "^19.8.0",
+ "@commitlint/types": "^19.8.0"
},
"engines": {
"node": ">=v18"
}
},
"node_modules/@commitlint/to-lines": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.5.0.tgz",
- "integrity": "sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.8.0.tgz",
+ "integrity": "sha512-3CKLUw41Cur8VMjh16y8LcsOaKbmQjAKCWlXx6B0vOUREplp6em9uIVhI8Cv934qiwkbi2+uv+mVZPnXJi1o9A==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=v18"
}
},
"node_modules/@commitlint/top-level": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.5.0.tgz",
- "integrity": "sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.8.0.tgz",
+ "integrity": "sha512-Rphgoc/omYZisoNkcfaBRPQr4myZEHhLPx2/vTXNLjiCw4RgfPR1wEgUpJ9OOmDCiv5ZyIExhprNLhteqH4FuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2517,9 +2580,9 @@
}
},
"node_modules/@commitlint/types": {
- "version": "19.5.0",
- "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.5.0.tgz",
- "integrity": "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==",
+ "version": "19.8.0",
+ "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.8.0.tgz",
+ "integrity": "sha512-LRjP623jPyf3Poyfb0ohMj8I3ORyBDOwXAgxxVPbSD0unJuW2mJWeiRfaQinjtccMqC5Wy1HOMfa4btKjbNxbg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2531,9 +2594,9 @@
}
},
"node_modules/@csstools/color-helpers": {
- "version": "5.0.1",
- "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.1.tgz",
- "integrity": "sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==",
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.2.tgz",
+ "integrity": "sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==",
"dev": true,
"funding": [
{
@@ -2551,9 +2614,9 @@
}
},
"node_modules/@csstools/css-calc": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.1.tgz",
- "integrity": "sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==",
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.2.tgz",
+ "integrity": "sha512-TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw==",
"dev": true,
"funding": [
{
@@ -2575,9 +2638,9 @@
}
},
"node_modules/@csstools/css-color-parser": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.7.tgz",
- "integrity": "sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==",
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.8.tgz",
+ "integrity": "sha512-pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ==",
"dev": true,
"funding": [
{
@@ -2591,8 +2654,8 @@
],
"license": "MIT",
"dependencies": {
- "@csstools/color-helpers": "^5.0.1",
- "@csstools/css-calc": "^2.1.1"
+ "@csstools/color-helpers": "^5.0.2",
+ "@csstools/css-calc": "^2.1.2"
},
"engines": {
"node": ">=18"
@@ -2718,13 +2781,15 @@
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.9.0.tgz",
"integrity": "sha512-cQbnVbq0rrBwNAKegIac/t6a8nWoUAn8frnkLFW6YARaRmAQr5/Eoe6Ln2fqkUCZ40KpdrKbpSAmgrkviOxuWA==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@docsearch/js": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/@docsearch/js/-/js-3.9.0.tgz",
"integrity": "sha512-4bKHcye6EkLgRE8ze0vcdshmEqxeiJM77M0JXjef7lrYZfSlMunrDOCqyLjiZyo1+c0BhUqA2QpFartIjuHIjw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@docsearch/react": "3.9.0",
"preact": "^10.0.0"
@@ -2735,6 +2800,7 @@
"resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.9.0.tgz",
"integrity": "sha512-mb5FOZYZIkRQ6s/NWnM98k879vu5pscWqTLubLFBO87igYYT4VzVazh4h5o/zCvTIZgEt3PvsCOMOswOUo9yHQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@algolia/autocomplete-core": "1.17.9",
"@algolia/autocomplete-preset-algolia": "1.17.9",
@@ -2774,16 +2840,16 @@
}
},
"node_modules/@ebay/browserslist-config": {
- "version": "2.10.0",
- "resolved": "https://registry.npmjs.org/@ebay/browserslist-config/-/browserslist-config-2.10.0.tgz",
- "integrity": "sha512-+piGZ54TkYZEDxUB01NQlsULJIEsfxjQ5Pnyc9iK4xU5opecnmY1i7t3yhfj2JUanC00jN+QYXXF7dztgqCseQ==",
+ "version": "2.11.0",
+ "resolved": "https://registry.npmjs.org/@ebay/browserslist-config/-/browserslist-config-2.11.0.tgz",
+ "integrity": "sha512-mPEepQOFikWgVRcoOPc+CerR2/K2bWAl79o8t0aX0OQlfzgz8rxh2R02pNeTCF9fAdsCjemWV9OCrWO5i5qrQg==",
"dev": true,
"license": "MIT"
},
"node_modules/@esbuild/aix-ppc64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
- "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz",
+ "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==",
"cpu": [
"ppc64"
],
@@ -2798,9 +2864,9 @@
}
},
"node_modules/@esbuild/android-arm": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
- "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz",
+ "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==",
"cpu": [
"arm"
],
@@ -2815,9 +2881,9 @@
}
},
"node_modules/@esbuild/android-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
- "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz",
+ "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==",
"cpu": [
"arm64"
],
@@ -2832,9 +2898,9 @@
}
},
"node_modules/@esbuild/android-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
- "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz",
+ "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==",
"cpu": [
"x64"
],
@@ -2849,9 +2915,9 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
- "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz",
+ "integrity": "sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==",
"cpu": [
"arm64"
],
@@ -2866,9 +2932,9 @@
}
},
"node_modules/@esbuild/darwin-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
- "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz",
+ "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==",
"cpu": [
"x64"
],
@@ -2883,9 +2949,9 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
- "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz",
+ "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==",
"cpu": [
"arm64"
],
@@ -2900,9 +2966,9 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
- "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz",
+ "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==",
"cpu": [
"x64"
],
@@ -2917,9 +2983,9 @@
}
},
"node_modules/@esbuild/linux-arm": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
- "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz",
+ "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==",
"cpu": [
"arm"
],
@@ -2934,9 +3000,9 @@
}
},
"node_modules/@esbuild/linux-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
- "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz",
+ "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==",
"cpu": [
"arm64"
],
@@ -2951,9 +3017,9 @@
}
},
"node_modules/@esbuild/linux-ia32": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
- "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz",
+ "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==",
"cpu": [
"ia32"
],
@@ -2968,9 +3034,9 @@
}
},
"node_modules/@esbuild/linux-loong64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
- "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz",
+ "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==",
"cpu": [
"loong64"
],
@@ -2985,9 +3051,9 @@
}
},
"node_modules/@esbuild/linux-mips64el": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
- "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz",
+ "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==",
"cpu": [
"mips64el"
],
@@ -3002,9 +3068,9 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
- "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz",
+ "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==",
"cpu": [
"ppc64"
],
@@ -3019,9 +3085,9 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
- "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz",
+ "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==",
"cpu": [
"riscv64"
],
@@ -3036,9 +3102,9 @@
}
},
"node_modules/@esbuild/linux-s390x": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
- "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz",
+ "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==",
"cpu": [
"s390x"
],
@@ -3053,9 +3119,9 @@
}
},
"node_modules/@esbuild/linux-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
- "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz",
+ "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==",
"cpu": [
"x64"
],
@@ -3070,9 +3136,9 @@
}
},
"node_modules/@esbuild/netbsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz",
- "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz",
+ "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==",
"cpu": [
"arm64"
],
@@ -3087,9 +3153,9 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
- "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz",
+ "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==",
"cpu": [
"x64"
],
@@ -3104,9 +3170,9 @@
}
},
"node_modules/@esbuild/openbsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz",
- "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz",
+ "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==",
"cpu": [
"arm64"
],
@@ -3121,9 +3187,9 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
- "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz",
+ "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==",
"cpu": [
"x64"
],
@@ -3138,9 +3204,9 @@
}
},
"node_modules/@esbuild/sunos-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
- "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz",
+ "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==",
"cpu": [
"x64"
],
@@ -3155,9 +3221,9 @@
}
},
"node_modules/@esbuild/win32-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
- "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz",
+ "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==",
"cpu": [
"arm64"
],
@@ -3172,9 +3238,9 @@
}
},
"node_modules/@esbuild/win32-ia32": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
- "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz",
+ "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==",
"cpu": [
"ia32"
],
@@ -3189,9 +3255,9 @@
}
},
"node_modules/@esbuild/win32-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
- "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz",
+ "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==",
"cpu": [
"x64"
],
@@ -3206,9 +3272,9 @@
}
},
"node_modules/@eslint-community/eslint-utils": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz",
- "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==",
+ "version": "4.5.1",
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz",
+ "integrity": "sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3252,6 +3318,7 @@
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz",
"integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==",
"dev": true,
+ "license": "Apache-2.0",
"dependencies": {
"@eslint/object-schema": "^2.1.6",
"debug": "^4.3.1",
@@ -3261,11 +3328,22 @@
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
+ "node_modules/@eslint/config-helpers": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.0.tgz",
+ "integrity": "sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
"node_modules/@eslint/core": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz",
"integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==",
"dev": true,
+ "license": "Apache-2.0",
"dependencies": {
"@types/json-schema": "^7.0.15"
},
@@ -3274,10 +3352,11 @@
}
},
"node_modules/@eslint/eslintrc": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.0.tgz",
- "integrity": "sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==",
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz",
+ "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
@@ -3301,6 +3380,7 @@
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -3316,13 +3396,15 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
- "dev": true
+ "dev": true,
+ "license": "Python-2.0"
},
"node_modules/@eslint/eslintrc/node_modules/globals": {
"version": "14.0.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
"integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=18"
},
@@ -3335,6 +3417,7 @@
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"argparse": "^2.0.1"
},
@@ -3346,13 +3429,15 @@
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@eslint/js": {
- "version": "9.21.0",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.21.0.tgz",
- "integrity": "sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==",
+ "version": "9.23.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.23.0.tgz",
+ "integrity": "sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
@@ -3362,6 +3447,7 @@
"resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz",
"integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==",
"dev": true,
+ "license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
@@ -3371,6 +3457,7 @@
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz",
"integrity": "sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==",
"dev": true,
+ "license": "Apache-2.0",
"dependencies": {
"@eslint/core": "^0.12.0",
"levn": "^0.4.1"
@@ -3487,6 +3574,7 @@
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz",
"integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==",
"dev": true,
+ "license": "Apache-2.0",
"engines": {
"node": ">=18.18"
},
@@ -3663,9 +3751,9 @@
}
},
"node_modules/@keyv/serialize": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.2.tgz",
- "integrity": "sha512-+E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ==",
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.0.3.tgz",
+ "integrity": "sha512-qnEovoOp5Np2JDGonIDL6Ayihw0RhnRh6vxPuHo4RDn1UOzwEo4AeIfpL6UGIrsceWrCMiVPgwRjbHu4vYFc3g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3687,6 +3775,7 @@
"resolved": "https://registry.npmjs.org/@manypkg/find-root/-/find-root-1.1.0.tgz",
"integrity": "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/runtime": "^7.5.5",
"@types/node": "^12.7.1",
@@ -3698,13 +3787,15 @@
"version": "12.20.55",
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz",
"integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@manypkg/find-root/node_modules/find-up": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"locate-path": "^5.0.0",
"path-exists": "^4.0.0"
@@ -3718,6 +3809,7 @@
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
"integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"graceful-fs": "^4.2.0",
"jsonfile": "^4.0.0",
@@ -3732,6 +3824,7 @@
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"p-locate": "^4.1.0"
},
@@ -3744,6 +3837,7 @@
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"p-limit": "^2.2.0"
},
@@ -3756,6 +3850,7 @@
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
}
@@ -3765,6 +3860,7 @@
"resolved": "https://registry.npmjs.org/@manypkg/get-packages/-/get-packages-1.1.3.tgz",
"integrity": "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/runtime": "^7.5.5",
"@changesets/types": "^4.0.1",
@@ -3778,13 +3874,15 @@
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@changesets/types/-/types-4.1.0.tgz",
"integrity": "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@manypkg/get-packages/node_modules/fs-extra": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
"integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"graceful-fs": "^4.2.0",
"jsonfile": "^4.0.0",
@@ -3795,25 +3893,26 @@
}
},
"node_modules/@marko/compiler": {
- "version": "5.39.12",
- "resolved": "https://registry.npmjs.org/@marko/compiler/-/compiler-5.39.12.tgz",
- "integrity": "sha512-+mSItApQHMURbh7D3VHffiTza0p3H+gFpDsPwsMfgcdPJRkWmTYWnskMIIA6MCdlq3lw3pnTSpu+Zm+SaOlSKg==",
+ "version": "5.39.14",
+ "resolved": "https://registry.npmjs.org/@marko/compiler/-/compiler-5.39.14.tgz",
+ "integrity": "sha512-XdhX3w5ZAchU6w6EPYgkD1X/2ZtE2WmA0tbmJ3NTnBoxMt98ZkqZJoNpbK+2hpoH+s313n5Zsd08hGn2FW22Rg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
- "@babel/core": "^7.26.0",
- "@babel/generator": "^7.26.3",
- "@babel/parser": "^7.26.3",
+ "@babel/core": "^7.26.10",
+ "@babel/generator": "^7.27.0",
+ "@babel/parser": "^7.27.0",
"@babel/plugin-syntax-typescript": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
- "@babel/plugin-transform-typescript": "^7.26.3",
- "@babel/runtime": "^7.26.0",
- "@babel/traverse": "^7.26.4",
- "@babel/types": "^7.26.3",
- "@luxass/strip-json-comments": "^1.3.2",
+ "@babel/plugin-transform-typescript": "^7.27.0",
+ "@babel/runtime": "^7.27.0",
+ "@babel/traverse": "^7.27.0",
+ "@babel/types": "^7.27.0",
+ "@luxass/strip-json-comments": "^1.4.0",
"complain": "^1.6.1",
"he": "^1.2.0",
- "htmljs-parser": "^5.5.3",
+ "htmljs-parser": "^5.5.4",
"jsesc": "^3.1.0",
"kleur": "^4.1.5",
"lasso-package-root": "^1.0.1",
@@ -3829,29 +3928,29 @@
}
},
"node_modules/@marko/run": {
- "version": "0.5.16",
- "resolved": "https://registry.npmjs.org/@marko/run/-/run-0.5.16.tgz",
- "integrity": "sha512-jSSnGpOmAqTIwEpdk0V7e2mDMcSdiRyphC9mC56bg8F2BWJwyToV4sbC7UEYMynWzvlg9JIsbNSbnf/iV3bX4A==",
+ "version": "0.6.2",
+ "resolved": "https://registry.npmjs.org/@marko/run/-/run-0.6.2.tgz",
+ "integrity": "sha512-5caDRoWQ9emicio/tmaITaFWse3g1tgDxtVMgxUPBHM5esIRXlVeRN0ba7uA8he5P6pKmTkBydU7M1eHZQjKnA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@marko/run-explorer": "^0.1.2",
- "@marko/vite": "^5.0.10",
- "browserslist": "^4.24.2",
+ "@marko/run-explorer": "^1.0.1",
+ "@marko/vite": "^5.0.14",
+ "browserslist": "^4.24.4",
"cli-table3": "^0.6.5",
- "compression": "^1.7.5",
- "debug": "^4.3.7",
- "dotenv": "^16.4.5",
+ "compression": "^1.8.0",
+ "debug": "^4.4.0",
+ "dotenv": "^16.4.7",
"draftlog": "^1.0.13",
- "esbuild-plugin-browserslist": "^0.15.0",
- "glob": "^11.0.0",
+ "esbuild-plugin-browserslist": "^0.16.0",
+ "glob": "^11.0.1",
"human-format": "^1.2.1",
"kleur": "^4.1.5",
"parse-node-args": "^1.1.2",
"sade": "^1.8.1",
"serve-static": "^1.16.2",
- "supports-color": "^9.4.0",
- "undici": "^6.21.0",
- "vite": "^6.0.0",
+ "supports-color": "^10.0.0",
+ "vite": "^6.2.1",
"warp10": "^2.1.0"
},
"bin": {
@@ -3862,24 +3961,29 @@
}
},
"node_modules/@marko/run-adapter-static": {
- "version": "0.2.1",
- "resolved": "https://registry.npmjs.org/@marko/run-adapter-static/-/run-adapter-static-0.2.1.tgz",
- "integrity": "sha512-EFxCnZVSRbe9pprw5DwRseElnWguu2U4z1fi2Vq1MelfCW5wENtSWmkkzOpAIMBL6p8ucFL8zM1pPbmARHBHPA==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@marko/run-adapter-static/-/run-adapter-static-1.0.1.tgz",
+ "integrity": "sha512-93ZqmC6FX80goxE24qaOcg24mIVshxGetm7fA4c0oiOjpWJ3EC2aU3DeERdJkD1USvSMGsQlQMS1UFchR3ksKA==",
"dev": true,
"license": "MIT",
"dependencies": {
+ "compression": "^1.8.0",
+ "serve-static": "^1.16.2",
"undici": "^6.21.0"
},
"peerDependencies": {
- "@marko/run": "^0"
+ "@marko/run": "^0.6.1"
}
},
"node_modules/@marko/run-explorer": {
- "version": "0.1.2",
- "resolved": "https://registry.npmjs.org/@marko/run-explorer/-/run-explorer-0.1.2.tgz",
- "integrity": "sha512-WWovdwPpMDtG+HknF1xgi7S22g5B9HmeApmMAUe4UqaJXdqiMQBzfORAP+1jG1K10sn0NHH/nOa20CsArwIOhQ==",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@marko/run-explorer/-/run-explorer-1.0.1.tgz",
+ "integrity": "sha512-I1S4aK6gpHqYEu81zMj8RHN/JV7cjVeJyoe9hSxBSOz93zc3y85mEfDf2ZQWYORx23hKpDVowhESJwhZXptGww==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "peerDependencies": {
+ "@marko/run": "^0.6.1"
+ }
},
"node_modules/@marko/run/node_modules/brace-expansion": {
"version": "2.0.1",
@@ -3945,9 +4049,9 @@
}
},
"node_modules/@marko/vite": {
- "version": "5.0.13",
- "resolved": "https://registry.npmjs.org/@marko/vite/-/vite-5.0.13.tgz",
- "integrity": "sha512-GUBR+Q22sKoyy2faPG5i/AEpxlkmYLV2yvz4IU1qstszdtZWVOTtEgOe4fJhV0UwGdxdeNi/vGk7VpkT2t+hOw==",
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/@marko/vite/-/vite-5.1.0.tgz",
+ "integrity": "sha512-556sNAElZzZtoJFE7LdIxPUpfnYCRx1K7aD6GNfUjBWivrlOZgq9NigTXXbJzO9EvH5ODtCO7JnaBSKZqdKpTQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4025,9 +4129,9 @@
}
},
"node_modules/@parcel/watcher": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz",
- "integrity": "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz",
+ "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
@@ -4046,25 +4150,25 @@
"url": "https://opencollective.com/parcel"
},
"optionalDependencies": {
- "@parcel/watcher-android-arm64": "2.5.0",
- "@parcel/watcher-darwin-arm64": "2.5.0",
- "@parcel/watcher-darwin-x64": "2.5.0",
- "@parcel/watcher-freebsd-x64": "2.5.0",
- "@parcel/watcher-linux-arm-glibc": "2.5.0",
- "@parcel/watcher-linux-arm-musl": "2.5.0",
- "@parcel/watcher-linux-arm64-glibc": "2.5.0",
- "@parcel/watcher-linux-arm64-musl": "2.5.0",
- "@parcel/watcher-linux-x64-glibc": "2.5.0",
- "@parcel/watcher-linux-x64-musl": "2.5.0",
- "@parcel/watcher-win32-arm64": "2.5.0",
- "@parcel/watcher-win32-ia32": "2.5.0",
- "@parcel/watcher-win32-x64": "2.5.0"
+ "@parcel/watcher-android-arm64": "2.5.1",
+ "@parcel/watcher-darwin-arm64": "2.5.1",
+ "@parcel/watcher-darwin-x64": "2.5.1",
+ "@parcel/watcher-freebsd-x64": "2.5.1",
+ "@parcel/watcher-linux-arm-glibc": "2.5.1",
+ "@parcel/watcher-linux-arm-musl": "2.5.1",
+ "@parcel/watcher-linux-arm64-glibc": "2.5.1",
+ "@parcel/watcher-linux-arm64-musl": "2.5.1",
+ "@parcel/watcher-linux-x64-glibc": "2.5.1",
+ "@parcel/watcher-linux-x64-musl": "2.5.1",
+ "@parcel/watcher-win32-arm64": "2.5.1",
+ "@parcel/watcher-win32-ia32": "2.5.1",
+ "@parcel/watcher-win32-x64": "2.5.1"
}
},
"node_modules/@parcel/watcher-android-arm64": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz",
- "integrity": "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz",
+ "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==",
"cpu": [
"arm64"
],
@@ -4083,9 +4187,9 @@
}
},
"node_modules/@parcel/watcher-darwin-arm64": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz",
- "integrity": "sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz",
+ "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==",
"cpu": [
"arm64"
],
@@ -4104,9 +4208,9 @@
}
},
"node_modules/@parcel/watcher-darwin-x64": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz",
- "integrity": "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz",
+ "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==",
"cpu": [
"x64"
],
@@ -4125,9 +4229,9 @@
}
},
"node_modules/@parcel/watcher-freebsd-x64": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz",
- "integrity": "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz",
+ "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==",
"cpu": [
"x64"
],
@@ -4146,9 +4250,9 @@
}
},
"node_modules/@parcel/watcher-linux-arm-glibc": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz",
- "integrity": "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz",
+ "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==",
"cpu": [
"arm"
],
@@ -4167,9 +4271,9 @@
}
},
"node_modules/@parcel/watcher-linux-arm-musl": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz",
- "integrity": "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz",
+ "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==",
"cpu": [
"arm"
],
@@ -4188,9 +4292,9 @@
}
},
"node_modules/@parcel/watcher-linux-arm64-glibc": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz",
- "integrity": "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz",
+ "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==",
"cpu": [
"arm64"
],
@@ -4209,9 +4313,9 @@
}
},
"node_modules/@parcel/watcher-linux-arm64-musl": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz",
- "integrity": "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz",
+ "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==",
"cpu": [
"arm64"
],
@@ -4230,9 +4334,9 @@
}
},
"node_modules/@parcel/watcher-linux-x64-glibc": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz",
- "integrity": "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz",
+ "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==",
"cpu": [
"x64"
],
@@ -4251,9 +4355,9 @@
}
},
"node_modules/@parcel/watcher-linux-x64-musl": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz",
- "integrity": "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz",
+ "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==",
"cpu": [
"x64"
],
@@ -4272,9 +4376,9 @@
}
},
"node_modules/@parcel/watcher-win32-arm64": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz",
- "integrity": "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz",
+ "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==",
"cpu": [
"arm64"
],
@@ -4293,9 +4397,9 @@
}
},
"node_modules/@parcel/watcher-win32-ia32": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz",
- "integrity": "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz",
+ "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==",
"cpu": [
"ia32"
],
@@ -4314,9 +4418,9 @@
}
},
"node_modules/@parcel/watcher-win32-x64": {
- "version": "2.5.0",
- "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz",
- "integrity": "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz",
+ "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==",
"cpu": [
"x64"
],
@@ -4339,6 +4443,7 @@
"resolved": "https://registry.npmjs.org/@percy/cli/-/cli-1.30.7.tgz",
"integrity": "sha512-0oX+dsiNkmk7PaERt500b/5WrVYRkG0AyLqVory4gRpeCCfgq5P+55o1cedqdSLQN5jIt9en/c+ZaQ1VaySbEA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/cli-app": "1.30.7",
"@percy/cli-build": "1.30.7",
@@ -4362,6 +4467,7 @@
"resolved": "https://registry.npmjs.org/@percy/cli-app/-/cli-app-1.30.7.tgz",
"integrity": "sha512-MPgCCH5a7RRncy0ik7JDJorW216WshC5mRimYh4NWE8DB1t0z0zphust4LSy8dQU2Sz5pR9eWiGFJrYpa4QXJQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/cli-command": "1.30.7",
"@percy/cli-exec": "1.30.7"
@@ -4375,6 +4481,7 @@
"resolved": "https://registry.npmjs.org/@percy/cli-build/-/cli-build-1.30.7.tgz",
"integrity": "sha512-S6agG8pnMSpOF+5xMIMrl1zbWC59VfNuTKpbxB7gN4EHRB35aovKKcoVlQWYtUseQGn1WScIjA+jINCfojiNvg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/cli-command": "1.30.7"
},
@@ -4387,6 +4494,7 @@
"resolved": "https://registry.npmjs.org/@percy/cli-command/-/cli-command-1.30.7.tgz",
"integrity": "sha512-dBZne3Kwn+KCL5evlh1rDQ898er/hs5qcP1EAveYKWX/kdZxPBrhZcqVSmsNgAkxzIhUekZmej9HC0DiuCFxLQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/config": "1.30.7",
"@percy/core": "1.30.7",
@@ -4404,6 +4512,7 @@
"resolved": "https://registry.npmjs.org/@percy/cli-config/-/cli-config-1.30.7.tgz",
"integrity": "sha512-QdM5XE32x8KPsDv/RJjeHyYN+jTlU3HbtfDkYZDUykdEcidaBT+MNXjRq/cNn9CNqU4TzoRjuoOSHpE4cZUCCw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/cli-command": "1.30.7"
},
@@ -4416,6 +4525,7 @@
"resolved": "https://registry.npmjs.org/@percy/cli-exec/-/cli-exec-1.30.7.tgz",
"integrity": "sha512-5hGgSNJuVxH0lKIa9Os/cFAGWy4wdPm4TkfhnnYH37nPP0IA11Z5GNbu9iiLGEvYG6o0BMj545SXvnvMeZeqTA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/cli-command": "1.30.7",
"@percy/logger": "1.30.7",
@@ -4431,6 +4541,7 @@
"resolved": "https://registry.npmjs.org/@percy/cli-snapshot/-/cli-snapshot-1.30.7.tgz",
"integrity": "sha512-h0BT8zEQVtaE2KYXikDmmekm7Z7u60dppytPZOIdasLXyqo5stmGOnsUK+9JatpWBNanGGRLL8lJnZmqNf2aTg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/cli-command": "1.30.7",
"yaml": "^2.0.0"
@@ -4444,6 +4555,7 @@
"resolved": "https://registry.npmjs.org/@percy/cli-upload/-/cli-upload-1.30.7.tgz",
"integrity": "sha512-N/2cEIe+e6XgBvB7Lx4nyyNygGRwjSp2MbpXKiFDpTOs8f8kJQRq7tnELa1Wos6HJ9m7pgb9sGWF2r9gq4MbTw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/cli-command": "1.30.7",
"fast-glob": "^3.2.11",
@@ -4458,6 +4570,7 @@
"resolved": "https://registry.npmjs.org/@percy/client/-/client-1.30.7.tgz",
"integrity": "sha512-NZxqfg8QehJBDzGTfxOx7vM0f/Hu3HxeSPO/pj/dqvS2vghqdGiMoZq0pjGYMirZ7VRVr/G5vSc3sBEEzEj52Q==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/env": "1.30.7",
"@percy/logger": "1.30.7",
@@ -4473,6 +4586,7 @@
"resolved": "https://registry.npmjs.org/@percy/config/-/config-1.30.7.tgz",
"integrity": "sha512-bFA/hwKhn0E6UKVKHWwbxyCdzsfhTWh+QdZdviAiyN2Pviyg8HmFgQfsKIFmtcizhQs/7Byx+1XpYnw8EvbGEg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/logger": "1.30.7",
"ajv": "^8.6.2",
@@ -4487,13 +4601,15 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
- "dev": true
+ "dev": true,
+ "license": "Python-2.0"
},
"node_modules/@percy/config/node_modules/cosmiconfig": {
"version": "8.3.6",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz",
"integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"import-fresh": "^3.3.0",
"js-yaml": "^4.1.0",
@@ -4520,6 +4636,7 @@
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"argparse": "^2.0.1"
},
@@ -4533,6 +4650,7 @@
"integrity": "sha512-FPoY6+bEe8dtIThbpvRVEbqtUU3Iimlpf1aOqqMTMQ0QTRxZ4wlhod+2a2X5lLfVPRw+ojtbPprQRWALsYJWiQ==",
"dev": true,
"hasInstallScript": true,
+ "license": "MIT",
"dependencies": {
"@percy/client": "1.30.7",
"@percy/config": "1.30.7",
@@ -4562,6 +4680,7 @@
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
"deprecated": "Rimraf versions prior to v4 are no longer supported",
"dev": true,
+ "license": "ISC",
"dependencies": {
"glob": "^7.1.3"
},
@@ -4576,13 +4695,15 @@
"version": "1.30.7",
"resolved": "https://registry.npmjs.org/@percy/dom/-/dom-1.30.7.tgz",
"integrity": "sha512-/3ZWIfd62VFkgtAeeg73orUYBC0D/RgopT2TNzjCFQAu3noduH/JH8pLQGvbfdt5QpqszTYYgL7uxLE/dfhH7w==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@percy/env": {
"version": "1.30.7",
"resolved": "https://registry.npmjs.org/@percy/env/-/env-1.30.7.tgz",
"integrity": "sha512-5Gx1aU6xV52PK17QMFp0ytnVcdKce0AYCvI19IDd4V61woBYu4wYUZG1UFFy8Mpi1Km+cfrdJ77UW2eDobdx8g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/logger": "1.30.7"
},
@@ -4595,6 +4716,7 @@
"resolved": "https://registry.npmjs.org/@percy/logger/-/logger-1.30.7.tgz",
"integrity": "sha512-eq9fgI+WUrbJXSk3gae+tDhB6sdLTEtK/Oms8ZDctCWWF2elXuYEMredcHIAe4g6ipAwxS0A5EeS2AXhaFEHyw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=14"
}
@@ -4604,6 +4726,7 @@
"resolved": "https://registry.npmjs.org/@percy/monitoring/-/monitoring-1.30.7.tgz",
"integrity": "sha512-43+tr6ZKTCx+yGOGoi9SYRCZl+PcbvbEUhSekAQTPML/2xNNCPREdGC78OYaXZ/CSFyP3q+K7Tmp3AGCwyCJQw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/config": "1.30.7",
"@percy/logger": "1.30.7",
@@ -4619,6 +4742,7 @@
"resolved": "https://registry.npmjs.org/@percy/sdk-utils/-/sdk-utils-1.30.7.tgz",
"integrity": "sha512-HVQSg0MgY4Ziv0mtbeelz4aRBKoEQnKaKtWl7Nf6FzSELAdUXNz4BNRBAJWOt8O6M5MRXbk6/7jSFJStGsg5Zw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=14"
}
@@ -4643,6 +4767,7 @@
"resolved": "https://registry.npmjs.org/@percy/webdriver-utils/-/webdriver-utils-1.30.7.tgz",
"integrity": "sha512-754f2K/55f37aZLgdCDHAMAZRlUbpkg7hC966Bu0OyRVhFjIj5rFohnwiVNQpE+uyFr6bhLWHDnU4aoCgv25WA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@percy/config": "1.30.7",
"@percy/sdk-utils": "1.30.7"
@@ -4652,9 +4777,9 @@
}
},
"node_modules/@pkgr/core": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz",
- "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==",
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.0.tgz",
+ "integrity": "sha512-vsJDAkYR6qCPu+ioGScGiMYR7LvZYIXh/dlQeviqoTWNCVfKTLYD/LkNWH4Mxsv2a5vpIRc77FN5DnmK1eBggQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4665,9 +4790,9 @@
}
},
"node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.31.0.tgz",
- "integrity": "sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.37.0.tgz",
+ "integrity": "sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ==",
"cpu": [
"arm"
],
@@ -4679,9 +4804,9 @@
]
},
"node_modules/@rollup/rollup-android-arm64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.31.0.tgz",
- "integrity": "sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.37.0.tgz",
+ "integrity": "sha512-6U3SlVyMxezt8Y+/iEBcbp945uZjJwjZimu76xoG7tO1av9VO691z8PkhzQ85ith2I8R2RddEPeSfcbyPfD4hA==",
"cpu": [
"arm64"
],
@@ -4693,9 +4818,9 @@
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.31.0.tgz",
- "integrity": "sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.37.0.tgz",
+ "integrity": "sha512-+iTQ5YHuGmPt10NTzEyMPbayiNTcOZDWsbxZYR1ZnmLnZxG17ivrPSWFO9j6GalY0+gV3Jtwrrs12DBscxnlYA==",
"cpu": [
"arm64"
],
@@ -4707,9 +4832,9 @@
]
},
"node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.31.0.tgz",
- "integrity": "sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.37.0.tgz",
+ "integrity": "sha512-m8W2UbxLDcmRKVjgl5J/k4B8d7qX2EcJve3Sut7YGrQoPtCIQGPH5AMzuFvYRWZi0FVS0zEY4c8uttPfX6bwYQ==",
"cpu": [
"x64"
],
@@ -4721,9 +4846,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.31.0.tgz",
- "integrity": "sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.37.0.tgz",
+ "integrity": "sha512-FOMXGmH15OmtQWEt174v9P1JqqhlgYge/bUjIbiVD1nI1NeJ30HYT9SJlZMqdo1uQFyt9cz748F1BHghWaDnVA==",
"cpu": [
"arm64"
],
@@ -4735,9 +4860,9 @@
]
},
"node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.31.0.tgz",
- "integrity": "sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.37.0.tgz",
+ "integrity": "sha512-SZMxNttjPKvV14Hjck5t70xS3l63sbVwl98g3FlVVx2YIDmfUIy29jQrsw06ewEYQ8lQSuY9mpAPlmgRD2iSsA==",
"cpu": [
"x64"
],
@@ -4749,9 +4874,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.31.0.tgz",
- "integrity": "sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.37.0.tgz",
+ "integrity": "sha512-hhAALKJPidCwZcj+g+iN+38SIOkhK2a9bqtJR+EtyxrKKSt1ynCBeqrQy31z0oWU6thRZzdx53hVgEbRkuI19w==",
"cpu": [
"arm"
],
@@ -4763,9 +4888,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.31.0.tgz",
- "integrity": "sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.37.0.tgz",
+ "integrity": "sha512-jUb/kmn/Gd8epbHKEqkRAxq5c2EwRt0DqhSGWjPFxLeFvldFdHQs/n8lQ9x85oAeVb6bHcS8irhTJX2FCOd8Ag==",
"cpu": [
"arm"
],
@@ -4777,9 +4902,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.31.0.tgz",
- "integrity": "sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.37.0.tgz",
+ "integrity": "sha512-oNrJxcQT9IcbcmKlkF+Yz2tmOxZgG9D9GRq+1OE6XCQwCVwxixYAa38Z8qqPzQvzt1FCfmrHX03E0pWoXm1DqA==",
"cpu": [
"arm64"
],
@@ -4791,9 +4916,9 @@
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.31.0.tgz",
- "integrity": "sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.37.0.tgz",
+ "integrity": "sha512-pfxLBMls+28Ey2enpX3JvjEjaJMBX5XlPCZNGxj4kdJyHduPBXtxYeb8alo0a7bqOoWZW2uKynhHxF/MWoHaGQ==",
"cpu": [
"arm64"
],
@@ -4805,9 +4930,9 @@
]
},
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.31.0.tgz",
- "integrity": "sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.37.0.tgz",
+ "integrity": "sha512-yCE0NnutTC/7IGUq/PUHmoeZbIwq3KRh02e9SfFh7Vmc1Z7atuJRYWhRME5fKgT8aS20mwi1RyChA23qSyRGpA==",
"cpu": [
"loong64"
],
@@ -4819,9 +4944,9 @@
]
},
"node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.31.0.tgz",
- "integrity": "sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.37.0.tgz",
+ "integrity": "sha512-NxcICptHk06E2Lh3a4Pu+2PEdZ6ahNHuK7o6Np9zcWkrBMuv21j10SQDJW3C9Yf/A/P7cutWoC/DptNLVsZ0VQ==",
"cpu": [
"ppc64"
],
@@ -4833,9 +4958,23 @@
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.31.0.tgz",
- "integrity": "sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.37.0.tgz",
+ "integrity": "sha512-PpWwHMPCVpFZLTfLq7EWJWvrmEuLdGn1GMYcm5MV7PaRgwCEYJAwiN94uBuZev0/J/hFIIJCsYw4nLmXA9J7Pw==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.37.0.tgz",
+ "integrity": "sha512-DTNwl6a3CfhGTAOYZ4KtYbdS8b+275LSLqJVJIrPa5/JuIufWWZ/QFvkxp52gpmguN95eujrM68ZG+zVxa8zHA==",
"cpu": [
"riscv64"
],
@@ -4847,9 +4986,9 @@
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.31.0.tgz",
- "integrity": "sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.37.0.tgz",
+ "integrity": "sha512-hZDDU5fgWvDdHFuExN1gBOhCuzo/8TMpidfOR+1cPZJflcEzXdCy1LjnklQdW8/Et9sryOPJAKAQRw8Jq7Tg+A==",
"cpu": [
"s390x"
],
@@ -4861,9 +5000,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.31.0.tgz",
- "integrity": "sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.37.0.tgz",
+ "integrity": "sha512-pKivGpgJM5g8dwj0ywBwe/HeVAUSuVVJhUTa/URXjxvoyTT/AxsLTAbkHkDHG7qQxLoW2s3apEIl26uUe08LVQ==",
"cpu": [
"x64"
],
@@ -4875,9 +5014,9 @@
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.31.0.tgz",
- "integrity": "sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.37.0.tgz",
+ "integrity": "sha512-E2lPrLKE8sQbY/2bEkVTGDEk4/49UYRVWgj90MY8yPjpnGBQ+Xi1Qnr7b7UIWw1NOggdFQFOLZ8+5CzCiz143w==",
"cpu": [
"x64"
],
@@ -4889,9 +5028,9 @@
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.31.0.tgz",
- "integrity": "sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.37.0.tgz",
+ "integrity": "sha512-Jm7biMazjNzTU4PrQtr7VS8ibeys9Pn29/1bm4ph7CP2kf21950LgN+BaE2mJ1QujnvOc6p54eWWiVvn05SOBg==",
"cpu": [
"arm64"
],
@@ -4903,9 +5042,9 @@
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.31.0.tgz",
- "integrity": "sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.37.0.tgz",
+ "integrity": "sha512-e3/1SFm1OjefWICB2Ucstg2dxYDkDTZGDYgwufcbsxTHyqQps1UQf33dFEChBNmeSsTOyrjw2JJq0zbG5GF6RA==",
"cpu": [
"ia32"
],
@@ -4917,9 +5056,9 @@
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.31.0.tgz",
- "integrity": "sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.37.0.tgz",
+ "integrity": "sha512-LWbXUBwn/bcLx2sSsqy7pK5o+Nr+VCoRoAohfJ5C/aBio9nfJmGQqHAhU6pwxV/RmyTk5AqdySma7uwWGlmeuA==",
"cpu": [
"x64"
],
@@ -4930,26 +5069,14 @@
"win32"
]
},
- "node_modules/@sindresorhus/merge-streams": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz",
- "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/@storybook/builder-webpack5": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-8.5.8.tgz",
- "integrity": "sha512-QaBIMyqWX/eQs4laQBXvAW9M/ylk73WljJySPlTl+8PNVuDtHli24oBJXwx5aV1NT53BLsaKAn/vb2QNL4+G1Q==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-8.6.11.tgz",
+ "integrity": "sha512-Vojm5YANhEv1dmX0IcI7Q4yu9ZSKIgOicETVhQlEMCGqVtZWr3HkSOcF6+3JRewY9EaPflxT/maKQ0kYaKt4Sg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@storybook/core-webpack": "8.5.8",
+ "@storybook/core-webpack": "8.6.11",
"@types/semver": "^7.3.4",
"browser-assert": "^1.2.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
@@ -4979,7 +5106,7 @@
"url": "https://opencollective.com/storybook"
},
"peerDependencies": {
- "storybook": "^8.5.8"
+ "storybook": "^8.6.11"
},
"peerDependenciesMeta": {
"typescript": {
@@ -4992,6 +5119,7 @@
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -5000,10 +5128,11 @@
}
},
"node_modules/@storybook/components": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/components/-/components-8.5.8.tgz",
- "integrity": "sha512-PPEMqWPXn7rX+qISaOOv9CDSuuvG538f0+4M5Ppq2LwpjXecgOG5ktqJF0ZqxmTytT+RpEaJmgjGW0dMAKZswA==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/components/-/components-8.6.11.tgz",
+ "integrity": "sha512-+lHcwQsSO8usKTXIBBmgmRCAa0L+KQaLJ5ARqkRTm6OjzkVVS+EPnIgL4H1nqzbwiTVXxSSOwAk+rST83KICnA==",
"dev": true,
+ "license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
@@ -5013,12 +5142,13 @@
}
},
"node_modules/@storybook/core": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/core/-/core-8.5.8.tgz",
- "integrity": "sha512-OT02DQhkGpBgn5P+nZOZmbzxqubC4liVqbhpjp/HOGi5cOA3+fCJzDJeSDTu+pPh7dZnopC4XnR+5dWjtOJHdA==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/core/-/core-8.6.11.tgz",
+ "integrity": "sha512-fhzLQ9HpljbLpkHykafmcjIERHI5j6SZhylFCDwEWkETuZtRbyCs3mmULutcEOzKhxRgNtiIRoRmZPdQcPtHNg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@storybook/csf": "0.1.12",
+ "@storybook/theming": "8.6.11",
"better-opn": "^3.0.2",
"browser-assert": "^1.2.1",
"esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0",
@@ -5044,10 +5174,11 @@
}
},
"node_modules/@storybook/core-webpack": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-8.5.8.tgz",
- "integrity": "sha512-M2LNQdYp0br8fgKMVtBh7YIo8mQsgALLc4i9PEXRS7wrp+bhvVnA9qhd5xDPzb0Rl4CHYbs4Yvkzo7ZQMibeIQ==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-8.6.11.tgz",
+ "integrity": "sha512-VbpcELiHBS+VtrXx+l/CK9fYfVzcUD8f1SaLV6JM7tNPX9EttnfSeGbOsi+5vYuqnhsWIbG3EjIwkiUeAP41XQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ts-dedent": "^2.0.0"
},
@@ -5056,7 +5187,7 @@
"url": "https://opencollective.com/storybook"
},
"peerDependencies": {
- "storybook": "^8.5.8"
+ "storybook": "^8.6.11"
}
},
"node_modules/@storybook/core/node_modules/semver": {
@@ -5064,6 +5195,7 @@
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -5071,15 +5203,6 @@
"node": ">=10"
}
},
- "node_modules/@storybook/csf": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.12.tgz",
- "integrity": "sha512-9/exVhabisyIVL0VxTCxo01Tdm8wefIXKXfltAPTSr8cbLn5JAxGQ6QV3mjdecLGEOucfoVhAKtJfVHxEK1iqw==",
- "dev": true,
- "dependencies": {
- "type-fest": "^2.19.0"
- }
- },
"node_modules/@storybook/global": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz",
@@ -5088,16 +5211,17 @@
"license": "MIT"
},
"node_modules/@storybook/html": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/html/-/html-8.5.8.tgz",
- "integrity": "sha512-QG+PAvJf6QxyuFYsEKiXTlAjTcgbVXrIWI0R8QxMxaJJW5TSoqy3vCuK0/yNQ4SnlDq6ZARq/piBk28Mmu3J1w==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/html/-/html-8.6.11.tgz",
+ "integrity": "sha512-thyS5JcjEjN3tI2Zs7WpN+G27Y2E4a1kL18n84Dfy3RBCLtJEU9x7sm0GiPtd+O+K/9FuGArf4ze68gCAKi6ig==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@storybook/components": "8.5.8",
+ "@storybook/components": "8.6.11",
"@storybook/global": "^5.0.0",
- "@storybook/manager-api": "8.5.8",
- "@storybook/preview-api": "8.5.8",
- "@storybook/theming": "8.5.8",
+ "@storybook/manager-api": "8.6.11",
+ "@storybook/preview-api": "8.6.11",
+ "@storybook/theming": "8.6.11",
"ts-dedent": "^2.0.0"
},
"engines": {
@@ -5108,19 +5232,20 @@
"url": "https://opencollective.com/storybook"
},
"peerDependencies": {
- "storybook": "^8.5.8"
+ "storybook": "^8.6.11"
}
},
"node_modules/@storybook/html-webpack5": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/html-webpack5/-/html-webpack5-8.5.8.tgz",
- "integrity": "sha512-9OHnVUt+QmbN6zl0hHdtwrnAdd578jXdIFYboofGMwBiDI/xX2GBoCJUDFpQeZ6sEQ6i9oXRgtRF3WUt21aHvQ==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/html-webpack5/-/html-webpack5-8.6.11.tgz",
+ "integrity": "sha512-Kv2FlhLRZNmDqDKJO/JfnS2fKSH4W/ODEynqKwvoYtlpWCRi+ujrwhUAwHo2MJC+1RpEqCzsdTsCyMblYaXnhQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@storybook/builder-webpack5": "8.5.8",
+ "@storybook/builder-webpack5": "8.6.11",
"@storybook/global": "^5.0.0",
- "@storybook/html": "8.5.8",
- "@storybook/preset-html-webpack": "8.5.8"
+ "@storybook/html": "8.6.11",
+ "@storybook/preset-html-webpack": "8.6.11"
},
"engines": {
"node": ">=18.0.0"
@@ -5130,14 +5255,15 @@
"url": "https://opencollective.com/storybook"
},
"peerDependencies": {
- "storybook": "^8.5.8"
+ "storybook": "^8.6.11"
}
},
"node_modules/@storybook/manager-api": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.5.8.tgz",
- "integrity": "sha512-ik3yikvYxAJMDFg0s3Pm7hZWucAlkFaaO7e2RlfOctaJFdaEi3evR4RS7GdmS38uKBEk31RC7x+nnIJkqEC59A==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-8.6.11.tgz",
+ "integrity": "sha512-U3ijEFX7B7wNYzFctmTIXOiN0zLlt8/9EHbZQUUrQ1pf7bQzADJCy63Y3B+kir8i+n3LsBWB42X2aSiT0lLaKQ==",
"dev": true,
+ "license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
@@ -5147,12 +5273,13 @@
}
},
"node_modules/@storybook/preset-html-webpack": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/preset-html-webpack/-/preset-html-webpack-8.5.8.tgz",
- "integrity": "sha512-PYUK3FN6nJDlvaazqB4bv+rg7V1ljqnagfO+9a8ficSZuM1w3nIR3uG8wY9uZZH2Fdqckd9OMi6OKwCXP4UvvQ==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/preset-html-webpack/-/preset-html-webpack-8.6.11.tgz",
+ "integrity": "sha512-uhq/cWchxCFc2G8j/ukbTp1SO55rLq5t5m2KrtXB5/4ktN94jNqx7l5BdX/XRgcUO9akEwow5ZsdRIIAdvLVRw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@storybook/core-webpack": "8.5.8",
+ "@storybook/core-webpack": "8.6.11",
"html-loader": "^3.1.0",
"webpack": "5"
},
@@ -5164,14 +5291,15 @@
"url": "https://opencollective.com/storybook"
},
"peerDependencies": {
- "storybook": "^8.5.8"
+ "storybook": "^8.6.11"
}
},
"node_modules/@storybook/preview-api": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.5.8.tgz",
- "integrity": "sha512-HJoz2o28VVprnU5OG6JO6CHrD3ah6qVPWixbnmyUKd0hOYF5dayK5ptmeLyUpYX56Eb2KoYcuVaeQqAby4RkNw==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-8.6.11.tgz",
+ "integrity": "sha512-NpSVJFa9MkPq3u/h+bvx+iSnm6OG6mMUzMgmY67mA0dgIgOWcaoP2Y7254SZlBeho97HCValTDKJyqZMwiVlyQ==",
"dev": true,
+ "license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
@@ -5181,10 +5309,11 @@
}
},
"node_modules/@storybook/theming": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.5.8.tgz",
- "integrity": "sha512-/Rm6BV778sCT+3Ok861VYmw9BlEV5zcCq2zg5TOVuk8HqZw7H7VHtubVsjukEuhveYCs+oF+i2tv/II6jh6jdg==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-8.6.11.tgz",
+ "integrity": "sha512-G7IK5P9gzofUjfYhMo9Pdgbqcr22eoKFLD808Q8RxJopDoypdZKg4tes2iD+6YnrtnHS0nEoP/soMmfFYl9FIw==",
"dev": true,
+ "license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/storybook"
@@ -5197,7 +5326,8 @@
"version": "0.23.0",
"resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz",
"integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@trysound/sax": {
"version": "0.2.0",
@@ -5242,9 +5372,9 @@
}
},
"node_modules/@types/estree": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
- "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz",
+ "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==",
"dev": true,
"license": "MIT"
},
@@ -5252,7 +5382,8 @@
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
"integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@types/json-schema": {
"version": "7.0.15",
@@ -5269,9 +5400,9 @@
"license": "MIT"
},
"node_modules/@types/node": {
- "version": "22.10.7",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.7.tgz",
- "integrity": "sha512-V09KvXxFiutGp6B7XkpaDXlNadZxrzajcY50EuoLIpQ6WWYCSvf19lVIazzfIzQvhUN2HjX12spLojTnhuKlGg==",
+ "version": "22.13.14",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.14.tgz",
+ "integrity": "sha512-Zs/Ollc1SJ8nKUAgc7ivOEdIBM8JAKgrqqUYi2J997JuKO7/tpQC+WCetQ1sypiKCQWHdvdg9wBNpUPEWZae7w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5282,13 +5413,15 @@
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz",
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@types/semver": {
- "version": "7.5.8",
- "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz",
- "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==",
- "dev": true
+ "version": "7.7.0",
+ "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.0.tgz",
+ "integrity": "sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==",
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@types/triple-beam": {
"version": "1.3.5",
@@ -5302,6 +5435,7 @@
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz",
"integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
"dev": true,
+ "license": "MIT",
"optional": true,
"dependencies": {
"@types/node": "*"
@@ -5530,9 +5664,9 @@
"license": "Apache-2.0"
},
"node_modules/acorn": {
- "version": "8.14.0",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
- "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
+ "version": "8.14.1",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
+ "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -5547,6 +5681,7 @@
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dev": true,
+ "license": "MIT",
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
@@ -5610,24 +5745,25 @@
}
},
"node_modules/algoliasearch": {
- "version": "5.20.3",
- "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.20.3.tgz",
- "integrity": "sha512-iNC6BGvipaalFfDfDnXUje8GUlW5asj0cTMsZJwO/0rhsyLx1L7GZFAY8wW+eQ6AM4Yge2p5GSE5hrBlfSD90Q==",
- "dev": true,
- "dependencies": {
- "@algolia/client-abtesting": "5.20.3",
- "@algolia/client-analytics": "5.20.3",
- "@algolia/client-common": "5.20.3",
- "@algolia/client-insights": "5.20.3",
- "@algolia/client-personalization": "5.20.3",
- "@algolia/client-query-suggestions": "5.20.3",
- "@algolia/client-search": "5.20.3",
- "@algolia/ingestion": "1.20.3",
- "@algolia/monitoring": "1.20.3",
- "@algolia/recommend": "5.20.3",
- "@algolia/requester-browser-xhr": "5.20.3",
- "@algolia/requester-fetch": "5.20.3",
- "@algolia/requester-node-http": "5.20.3"
+ "version": "5.23.0",
+ "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.23.0.tgz",
+ "integrity": "sha512-7TCj+hLx6fZKppLL74lYGDEltSBNSu4vqRwgqeIKZ3VQ0q3aOrdEN0f1sDWcvU1b+psn2wnl7aHt9hWtYatUUA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@algolia/client-abtesting": "5.23.0",
+ "@algolia/client-analytics": "5.23.0",
+ "@algolia/client-common": "5.23.0",
+ "@algolia/client-insights": "5.23.0",
+ "@algolia/client-personalization": "5.23.0",
+ "@algolia/client-query-suggestions": "5.23.0",
+ "@algolia/client-search": "5.23.0",
+ "@algolia/ingestion": "1.23.0",
+ "@algolia/monitoring": "1.23.0",
+ "@algolia/recommend": "5.23.0",
+ "@algolia/requester-browser-xhr": "5.23.0",
+ "@algolia/requester-fetch": "5.23.0",
+ "@algolia/requester-node-http": "5.23.0"
},
"engines": {
"node": ">= 14.0.0"
@@ -5667,6 +5803,7 @@
"engines": [
"node >= 0.8.0"
],
+ "license": "Apache-2.0",
"bin": {
"ansi-html": "bin/ansi-html"
}
@@ -5727,6 +5864,7 @@
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"sprintf-js": "~1.0.2"
}
@@ -5842,6 +5980,7 @@
"resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz",
"integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"tslib": "^2.0.1"
},
@@ -5881,6 +6020,16 @@
"node": ">= 10.13.0"
}
},
+ "node_modules/async-function": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz",
+ "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/async-settle": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/async-settle/-/async-settle-2.0.0.tgz",
@@ -5902,9 +6051,9 @@
"license": "MIT"
},
"node_modules/autoprefixer": {
- "version": "10.4.20",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz",
- "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
+ "version": "10.4.21",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz",
+ "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==",
"dev": true,
"funding": [
{
@@ -5922,11 +6071,11 @@
],
"license": "MIT",
"dependencies": {
- "browserslist": "^4.23.3",
- "caniuse-lite": "^1.0.30001646",
+ "browserslist": "^4.24.4",
+ "caniuse-lite": "^1.0.30001702",
"fraction.js": "^4.3.7",
"normalize-range": "^0.1.2",
- "picocolors": "^1.0.1",
+ "picocolors": "^1.1.1",
"postcss-value-parser": "^4.2.0"
},
"bin": {
@@ -5963,32 +6112,106 @@
"license": "Apache-2.0"
},
"node_modules/babel-loader": {
- "version": "9.2.1",
- "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz",
- "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==",
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-10.0.0.tgz",
+ "integrity": "sha512-z8jt+EdS61AMw22nSfoNJAZ0vrtmhPRVi6ghL3rCeRZI8cdNYFiV5xeV3HbE7rlZZNmGH8BVccwWt8/ED0QOHA==",
"dev": true,
"license": "MIT",
"dependencies": {
- "find-cache-dir": "^4.0.0",
- "schema-utils": "^4.0.0"
+ "find-up": "^5.0.0"
},
"engines": {
- "node": ">= 14.15.0"
+ "node": "^18.20.0 || ^20.10.0 || >=22.0.0"
},
"peerDependencies": {
"@babel/core": "^7.12.0",
- "webpack": ">=5"
+ "webpack": ">=5.61.0"
+ }
+ },
+ "node_modules/babel-loader/node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/babel-loader/node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/babel-loader/node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/babel-loader/node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/babel-loader/node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
}
},
"node_modules/babel-plugin-polyfill-corejs2": {
- "version": "0.4.12",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz",
- "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==",
+ "version": "0.4.13",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.13.tgz",
+ "integrity": "sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/compat-data": "^7.22.6",
- "@babel/helper-define-polyfill-provider": "^0.6.3",
+ "@babel/helper-define-polyfill-provider": "^0.6.4",
"semver": "^6.3.1"
},
"peerDependencies": {
@@ -6000,6 +6223,7 @@
"resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz",
"integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/helper-define-polyfill-provider": "^0.6.3",
"core-js-compat": "^3.40.0"
@@ -6009,13 +6233,13 @@
}
},
"node_modules/babel-plugin-polyfill-regenerator": {
- "version": "0.6.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz",
- "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==",
+ "version": "0.6.4",
+ "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.4.tgz",
+ "integrity": "sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@babel/helper-define-polyfill-provider": "^0.6.3"
+ "@babel/helper-define-polyfill-provider": "^0.6.4"
},
"peerDependencies": {
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
@@ -6077,6 +6301,7 @@
"resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz",
"integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=10.0.0"
}
@@ -6086,6 +6311,7 @@
"resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz",
"integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"open": "^8.0.4"
},
@@ -6098,6 +6324,7 @@
"resolved": "https://registry.npmjs.org/better-path-resolve/-/better-path-resolve-1.0.0.tgz",
"integrity": "sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"is-windows": "^1.0.0"
},
@@ -6275,6 +6502,7 @@
"resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
"integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": "*"
}
@@ -6297,24 +6525,24 @@
}
},
"node_modules/cacheable": {
- "version": "1.8.7",
- "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.8.7.tgz",
- "integrity": "sha512-AbfG7dAuYNjYxFUtL1lAqmlWdxczCJ47w7cFjhGcnGnUdwSo6VgmSojfoW3tUI12HUkgTJ5kqj78yyq6TsFtlg==",
+ "version": "1.8.9",
+ "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-1.8.9.tgz",
+ "integrity": "sha512-FicwAUyWnrtnd4QqYAoRlNs44/a1jTL7XDKqm5gJ90wz1DQPlC7U2Rd1Tydpv+E7WAr4sQHuw8Q8M3nZMAyecQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "hookified": "^1.6.0",
- "keyv": "^5.2.3"
+ "hookified": "^1.7.1",
+ "keyv": "^5.3.1"
}
},
"node_modules/cacheable/node_modules/keyv": {
- "version": "5.2.3",
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.2.3.tgz",
- "integrity": "sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw==",
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.3.2.tgz",
+ "integrity": "sha512-Lji2XRxqqa5Wg+CHLVfFKBImfJZ4pCSccu9eVWK6w4c2SDFLd8JAn1zqTuSFnsxb7ope6rMsnIHfp+eBbRBRZQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@keyv/serialize": "^1.0.2"
+ "@keyv/serialize": "^1.0.3"
}
},
"node_modules/call-bind": {
@@ -6337,9 +6565,9 @@
}
},
"node_modules/call-bind-apply-helpers": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
- "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6351,14 +6579,14 @@
}
},
"node_modules/call-bound": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
- "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind-apply-helpers": "^1.0.1",
- "get-intrinsic": "^1.2.6"
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
},
"engines": {
"node": ">= 0.4"
@@ -6382,6 +6610,7 @@
"resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz",
"integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"pascal-case": "^3.1.2",
"tslib": "^2.0.3"
@@ -6411,9 +6640,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001695",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001695.tgz",
- "integrity": "sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==",
+ "version": "1.0.30001707",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001707.tgz",
+ "integrity": "sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==",
"dev": true,
"funding": [
{
@@ -6436,6 +6665,7 @@
"resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz",
"integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=4"
}
@@ -6530,7 +6760,8 @@
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz",
"integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/clean-css": {
"version": "5.3.3",
@@ -6849,13 +7080,6 @@
"node": ">= 6"
}
},
- "node_modules/common-path-prefix": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz",
- "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==",
- "dev": true,
- "license": "ISC"
- },
"node_modules/commondir": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
@@ -6898,9 +7122,9 @@
}
},
"node_modules/compression": {
- "version": "1.7.5",
- "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz",
- "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==",
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.0.tgz",
+ "integrity": "sha512-k6WLKfunuqCYD3t6AsuPGvQWaKwuLLh2/xHNcX4qE+vIfDNXpSqnrhwA7O53R7WVQUnt8dVAIW+YHr7xTgOgGA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6944,13 +7168,15 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz",
"integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/content-disposition": {
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"safe-buffer": "5.2.1"
},
@@ -6963,6 +7189,7 @@
"resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-7.0.0.tgz",
"integrity": "sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==",
"dev": true,
+ "license": "ISC",
"dependencies": {
"compare-func": "^2.0.0"
},
@@ -6988,6 +7215,7 @@
"resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz",
"integrity": "sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"is-text-path": "^2.0.0",
"JSONStream": "^1.3.5",
@@ -7023,12 +7251,13 @@
}
},
"node_modules/core-js-compat": {
- "version": "3.40.0",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.40.0.tgz",
- "integrity": "sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==",
+ "version": "3.41.0",
+ "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.41.0.tgz",
+ "integrity": "sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "browserslist": "^4.24.3"
+ "browserslist": "^4.24.4"
},
"funding": {
"type": "opencollective",
@@ -7169,6 +7398,7 @@
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz",
"integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"icss-utils": "^5.1.0",
"postcss": "^8.4.33",
@@ -7204,6 +7434,7 @@
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -7216,6 +7447,7 @@
"resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz",
"integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==",
"dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
"boolbase": "^1.0.0",
"css-what": "^6.0.1",
@@ -7232,6 +7464,7 @@
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
"integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"domelementtype": "^2.0.1",
"domhandler": "^4.2.0",
@@ -7246,6 +7479,7 @@
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
"integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
"dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
"domelementtype": "^2.2.0"
},
@@ -7261,6 +7495,7 @@
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
"integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
"dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.2.0",
@@ -7275,6 +7510,7 @@
"resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
"integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
"dev": true,
+ "license": "BSD-2-Clause",
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
}
@@ -7446,13 +7682,13 @@
"license": "CC0-1.0"
},
"node_modules/cssstyle": {
- "version": "4.2.1",
- "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.2.1.tgz",
- "integrity": "sha512-9+vem03dMXG7gDmZ62uqmRiMRNtinIZ9ZyuF6BdxzfOD+FdN5hretzynkn0ReS2DO2GSw76RWHs0UmJPI2zUjw==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.3.0.tgz",
+ "integrity": "sha512-6r0NiY0xizYqfBvWp1G7WXJ06/bZyrk7Dc6PHql82C/pKGUTKu4yAX4Y8JPamb1ob9nBKuxWzCGTRuGwU3yxJQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@asamuzakjp/css-color": "^2.8.2",
+ "@asamuzakjp/css-color": "^3.1.1",
"rrweb-cssom": "^0.8.0"
},
"engines": {
@@ -7484,6 +7720,7 @@
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz",
"integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 14"
}
@@ -7582,9 +7819,9 @@
}
},
"node_modules/decimal.js": {
- "version": "10.4.3",
- "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz",
- "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==",
+ "version": "10.5.0",
+ "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.5.0.tgz",
+ "integrity": "sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==",
"dev": true,
"license": "MIT"
},
@@ -7623,6 +7860,7 @@
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=0.10.0"
}
@@ -7650,6 +7888,7 @@
"resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz",
"integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
}
@@ -7677,6 +7916,7 @@
"resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz",
"integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ast-types": "^0.13.4",
"escodegen": "^2.1.0",
@@ -7707,13 +7947,13 @@
}
},
"node_modules/dependency-graph": {
- "version": "0.11.0",
- "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz",
- "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==",
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-1.0.0.tgz",
+ "integrity": "sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">= 0.6.0"
+ "node": ">=4"
}
},
"node_modules/destroy": {
@@ -7742,6 +7982,7 @@
"resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz",
"integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
}
@@ -7810,6 +8051,7 @@
"resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
"integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"utila": "~0.4"
}
@@ -7878,6 +8120,7 @@
"resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz",
"integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
@@ -7995,9 +8238,9 @@
"license": "MIT"
},
"node_modules/electron-to-chromium": {
- "version": "1.5.84",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.84.tgz",
- "integrity": "sha512-I+DQ8xgafao9Ha6y0qjHHvpZ9OfyA1qKlkHkjywxzniORU2awxyz7f/iVJcULmrF2yrM3nHQf+iDjJtbbexd/g==",
+ "version": "1.5.128",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.128.tgz",
+ "integrity": "sha512-bo1A4HH/NS522Ws0QNFIzyPcyUUNV/yyy70Ho1xqfGYzPUme2F/xr4tlEOuM6/A538U1vDA7a4XfCd1CKRegKQ==",
"dev": true,
"license": "ISC"
},
@@ -8043,9 +8286,9 @@
}
},
"node_modules/enhanced-resolve": {
- "version": "5.18.0",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.0.tgz",
- "integrity": "sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==",
+ "version": "5.18.1",
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
+ "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8280,9 +8523,9 @@
}
},
"node_modules/esbuild": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz",
- "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz",
+ "integrity": "sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==",
"dev": true,
"hasInstallScript": true,
"license": "MIT",
@@ -8293,49 +8536,49 @@
"node": ">=18"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.24.2",
- "@esbuild/android-arm": "0.24.2",
- "@esbuild/android-arm64": "0.24.2",
- "@esbuild/android-x64": "0.24.2",
- "@esbuild/darwin-arm64": "0.24.2",
- "@esbuild/darwin-x64": "0.24.2",
- "@esbuild/freebsd-arm64": "0.24.2",
- "@esbuild/freebsd-x64": "0.24.2",
- "@esbuild/linux-arm": "0.24.2",
- "@esbuild/linux-arm64": "0.24.2",
- "@esbuild/linux-ia32": "0.24.2",
- "@esbuild/linux-loong64": "0.24.2",
- "@esbuild/linux-mips64el": "0.24.2",
- "@esbuild/linux-ppc64": "0.24.2",
- "@esbuild/linux-riscv64": "0.24.2",
- "@esbuild/linux-s390x": "0.24.2",
- "@esbuild/linux-x64": "0.24.2",
- "@esbuild/netbsd-arm64": "0.24.2",
- "@esbuild/netbsd-x64": "0.24.2",
- "@esbuild/openbsd-arm64": "0.24.2",
- "@esbuild/openbsd-x64": "0.24.2",
- "@esbuild/sunos-x64": "0.24.2",
- "@esbuild/win32-arm64": "0.24.2",
- "@esbuild/win32-ia32": "0.24.2",
- "@esbuild/win32-x64": "0.24.2"
+ "@esbuild/aix-ppc64": "0.25.1",
+ "@esbuild/android-arm": "0.25.1",
+ "@esbuild/android-arm64": "0.25.1",
+ "@esbuild/android-x64": "0.25.1",
+ "@esbuild/darwin-arm64": "0.25.1",
+ "@esbuild/darwin-x64": "0.25.1",
+ "@esbuild/freebsd-arm64": "0.25.1",
+ "@esbuild/freebsd-x64": "0.25.1",
+ "@esbuild/linux-arm": "0.25.1",
+ "@esbuild/linux-arm64": "0.25.1",
+ "@esbuild/linux-ia32": "0.25.1",
+ "@esbuild/linux-loong64": "0.25.1",
+ "@esbuild/linux-mips64el": "0.25.1",
+ "@esbuild/linux-ppc64": "0.25.1",
+ "@esbuild/linux-riscv64": "0.25.1",
+ "@esbuild/linux-s390x": "0.25.1",
+ "@esbuild/linux-x64": "0.25.1",
+ "@esbuild/netbsd-arm64": "0.25.1",
+ "@esbuild/netbsd-x64": "0.25.1",
+ "@esbuild/openbsd-arm64": "0.25.1",
+ "@esbuild/openbsd-x64": "0.25.1",
+ "@esbuild/sunos-x64": "0.25.1",
+ "@esbuild/win32-arm64": "0.25.1",
+ "@esbuild/win32-ia32": "0.25.1",
+ "@esbuild/win32-x64": "0.25.1"
}
},
"node_modules/esbuild-plugin-browserslist": {
- "version": "0.15.0",
- "resolved": "https://registry.npmjs.org/esbuild-plugin-browserslist/-/esbuild-plugin-browserslist-0.15.0.tgz",
- "integrity": "sha512-nZeEev2eIVLFWYcwp0iKv+lk85Yq2YIDhzCkJ5Dm5s7DxKANfjqUTyE1NRY2mEmwEW7SeAWraQEQdJP+5gV1RA==",
+ "version": "0.16.0",
+ "resolved": "https://registry.npmjs.org/esbuild-plugin-browserslist/-/esbuild-plugin-browserslist-0.16.0.tgz",
+ "integrity": "sha512-vfwl1RmCa4D+wWoAxStz2g0O3wWGyUAv6mK9mfgF7X2UY3z/b/6ySTWoPu9nnKvBea6D3uk2zS1TOLt/b5qgLQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "debug": "^4.3.7",
- "zod": "^3.23.8"
+ "debug": "^4.4.0",
+ "zod": "^3.24.1"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"browserslist": "^4.21.8",
- "esbuild": "~0.24.0"
+ "esbuild": "~0.25.0"
}
},
"node_modules/esbuild-register": {
@@ -8343,6 +8586,7 @@
"resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.6.0.tgz",
"integrity": "sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"debug": "^4.3.4"
},
@@ -8385,6 +8629,7 @@
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
"integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
"dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
"esprima": "^4.0.1",
"estraverse": "^5.2.0",
@@ -8402,17 +8647,19 @@
}
},
"node_modules/eslint": {
- "version": "9.21.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.21.0.tgz",
- "integrity": "sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==",
+ "version": "9.23.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.23.0.tgz",
+ "integrity": "sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@eslint-community/regexpp": "^4.12.1",
"@eslint/config-array": "^0.19.2",
+ "@eslint/config-helpers": "^0.2.0",
"@eslint/core": "^0.12.0",
- "@eslint/eslintrc": "^3.3.0",
- "@eslint/js": "9.21.0",
+ "@eslint/eslintrc": "^3.3.1",
+ "@eslint/js": "9.23.0",
"@eslint/plugin-kit": "^0.2.7",
"@humanfs/node": "^0.16.6",
"@humanwhocodes/module-importer": "^1.0.1",
@@ -8424,7 +8671,7 @@
"cross-spawn": "^7.0.6",
"debug": "^4.3.2",
"escape-string-regexp": "^4.0.0",
- "eslint-scope": "^8.2.0",
+ "eslint-scope": "^8.3.0",
"eslint-visitor-keys": "^4.2.0",
"espree": "^10.3.0",
"esquery": "^1.5.0",
@@ -8468,27 +8715,27 @@
"license": "MIT"
},
"node_modules/eslint-config-prettier": {
- "version": "10.0.1",
- "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.0.1.tgz",
- "integrity": "sha512-lZBts941cyJyeaooiKxAtzoPHTN+GbQTJFAIdQbRhA4/8whaAraEh47Whw/ZFfrjNSnlAxqfm9i0XVAEkULjCw==",
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.1.tgz",
+ "integrity": "sha512-4EQQr6wXwS+ZJSzaR5ZCrYgLxqvUjdXctaEtBqHcbkW944B1NQyO4qpdHQbXBONfwxXdkAY81HH4+LUfrg+zPw==",
"dev": true,
"license": "MIT",
"bin": {
- "eslint-config-prettier": "build/bin/cli.js"
+ "eslint-config-prettier": "bin/cli.js"
},
"peerDependencies": {
"eslint": ">=7.0.0"
}
},
"node_modules/eslint-plugin-prettier": {
- "version": "5.2.3",
- "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.3.tgz",
- "integrity": "sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==",
+ "version": "5.2.5",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.5.tgz",
+ "integrity": "sha512-IKKP8R87pJyMl7WWamLgPkloB16dagPIdd2FjBDbyRYPKo93wS/NbCOPh6gH+ieNLC+XZrhJt/kWj0PS/DFdmg==",
"dev": true,
"license": "MIT",
"dependencies": {
"prettier-linter-helpers": "^1.0.0",
- "synckit": "^0.9.1"
+ "synckit": "^0.10.2"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
@@ -8499,7 +8746,7 @@
"peerDependencies": {
"@types/eslint": ">=8.0.0",
"eslint": ">=8.0.0",
- "eslint-config-prettier": "*",
+ "eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0",
"prettier": ">=3.0.0"
},
"peerDependenciesMeta": {
@@ -8512,9 +8759,9 @@
}
},
"node_modules/eslint-scope": {
- "version": "8.2.0",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz",
- "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==",
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz",
+ "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -8533,6 +8780,7 @@
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
"integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
"dev": true,
+ "license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
@@ -8723,6 +8971,7 @@
"resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz",
"integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==",
"dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
"acorn": "^8.14.0",
"acorn-jsx": "^5.3.2",
@@ -8740,6 +8989,7 @@
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
"dev": true,
+ "license": "BSD-2-Clause",
"bin": {
"esparse": "bin/esparse.js",
"esvalidate": "bin/esvalidate.js"
@@ -8892,7 +9142,8 @@
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/extendable-error/-/extendable-error-0.1.7.tgz",
"integrity": "sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/external-editor": {
"version": "3.1.0",
@@ -8914,6 +9165,7 @@
"resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
"integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
"dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
"debug": "^4.1.1",
"get-stream": "^5.1.0",
@@ -9009,9 +9261,9 @@
}
},
"node_modules/fastq": {
- "version": "1.18.0",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz",
- "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==",
+ "version": "1.19.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
+ "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -9023,6 +9275,7 @@
"resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
"integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"pend": "~1.2.0"
}
@@ -9089,17 +9342,34 @@
}
},
"node_modules/find-cache-dir": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz",
- "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==",
+ "version": "3.3.2",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
+ "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
"dev": true,
"license": "MIT",
"dependencies": {
- "common-path-prefix": "^3.0.0",
- "pkg-dir": "^7.0.0"
+ "commondir": "^1.0.1",
+ "make-dir": "^3.0.2",
+ "pkg-dir": "^4.1.0"
},
"engines": {
- "node": ">=14.16"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
+ }
+ },
+ "node_modules/find-cache-dir/node_modules/make-dir": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
+ "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=8"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
@@ -9191,9 +9461,9 @@
}
},
"node_modules/flatted": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz",
- "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==",
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
+ "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
"dev": true,
"license": "ISC"
},
@@ -9205,13 +9475,19 @@
"license": "MIT"
},
"node_modules/for-each": {
- "version": "0.3.3",
- "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
- "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
+ "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "is-callable": "^1.1.3"
+ "is-callable": "^1.2.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/for-in": {
@@ -9238,13 +9514,13 @@
}
},
"node_modules/foreground-child": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz",
- "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==",
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
"dev": true,
"license": "ISC",
"dependencies": {
- "cross-spawn": "^7.0.0",
+ "cross-spawn": "^7.0.6",
"signal-exit": "^4.0.1"
},
"engines": {
@@ -9259,6 +9535,7 @@
"resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz",
"integrity": "sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.16.7",
"chalk": "^4.1.2",
@@ -9282,36 +9559,12 @@
"webpack": "^5.11.0"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": {
- "version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
- "dev": true,
- "dependencies": {
- "fast-deep-equal": "^3.1.1",
- "fast-json-stable-stringify": "^2.0.0",
- "json-schema-traverse": "^0.4.1",
- "uri-js": "^4.2.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/epoberezkin"
- }
- },
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
- "dev": true,
- "peerDependencies": {
- "ajv": "^6.9.1"
- }
- },
"node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"color-convert": "^2.0.1"
},
@@ -9327,6 +9580,7 @@
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
@@ -9343,6 +9597,7 @@
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"color-name": "~1.1.4"
},
@@ -9354,13 +9609,15 @@
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz",
"integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@types/parse-json": "^4.0.0",
"import-fresh": "^3.2.1",
@@ -9377,6 +9634,7 @@
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"graceful-fs": "^4.2.0",
"jsonfile": "^6.0.1",
@@ -9386,17 +9644,12 @@
"node": ">=12"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": {
- "version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true
- },
"node_modules/fork-ts-checker-webpack-plugin/node_modules/jsonfile": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"universalify": "^2.0.0"
},
@@ -9404,29 +9657,12 @@
"graceful-fs": "^4.1.6"
}
},
- "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
- "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
- "dev": true,
- "dependencies": {
- "@types/json-schema": "^7.0.8",
- "ajv": "^6.12.5",
- "ajv-keywords": "^3.5.2"
- },
- "engines": {
- "node": ">= 10.13.0"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/webpack"
- }
- },
"node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": {
"version": "7.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
},
@@ -9439,6 +9675,7 @@
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"has-flag": "^4.0.0"
},
@@ -9451,6 +9688,7 @@
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 10.0.0"
}
@@ -9460,19 +9698,21 @@
"resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz",
"integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==",
"dev": true,
+ "license": "ISC",
"engines": {
"node": ">= 6"
}
},
"node_modules/form-data": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz",
- "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==",
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz",
+ "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==",
"dev": true,
"license": "MIT",
"dependencies": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.8",
+ "es-set-tostringtag": "^2.1.0",
"mime-types": "^2.1.12"
},
"engines": {
@@ -9508,6 +9748,7 @@
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
"integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"graceful-fs": "^4.1.2",
"jsonfile": "^4.0.0",
@@ -9535,7 +9776,8 @@
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz",
"integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==",
- "dev": true
+ "dev": true,
+ "license": "Unlicense"
},
"node_modules/fs-readdir-recursive": {
"version": "1.1.0",
@@ -9641,18 +9883,18 @@
}
},
"node_modules/get-intrinsic": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz",
- "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==",
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bind-apply-helpers": "^1.0.1",
+ "call-bind-apply-helpers": "^1.0.2",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
- "es-object-atoms": "^1.0.0",
+ "es-object-atoms": "^1.1.1",
"function-bind": "^1.1.2",
- "get-proto": "^1.0.0",
+ "get-proto": "^1.0.1",
"gopd": "^1.2.0",
"has-symbols": "^1.1.0",
"hasown": "^2.0.2",
@@ -9679,24 +9921,12 @@
"node": ">= 0.4"
}
},
- "node_modules/get-stdin": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz",
- "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/get-stream": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
"integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"pump": "^3.0.0"
},
@@ -9730,6 +9960,7 @@
"resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.4.tgz",
"integrity": "sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"basic-ftp": "^5.0.2",
"data-uri-to-buffer": "^6.0.2",
@@ -9772,38 +10003,6 @@
"node": ">=18"
}
},
- "node_modules/gh-pages/node_modules/find-cache-dir": {
- "version": "3.3.2",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
- "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "commondir": "^1.0.1",
- "make-dir": "^3.0.2",
- "pkg-dir": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/avajs/find-cache-dir?sponsor=1"
- }
- },
- "node_modules/gh-pages/node_modules/find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/gh-pages/node_modules/fs-extra": {
"version": "11.3.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz",
@@ -9832,71 +10031,6 @@
"graceful-fs": "^4.1.6"
}
},
- "node_modules/gh-pages/node_modules/locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/gh-pages/node_modules/make-dir": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "semver": "^6.0.0"
- },
- "engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
- "node_modules/gh-pages/node_modules/p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/gh-pages/node_modules/path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/gh-pages/node_modules/pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/gh-pages/node_modules/universalify": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
@@ -10482,9 +10616,9 @@
}
},
"node_modules/hookified": {
- "version": "1.7.0",
- "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.7.0.tgz",
- "integrity": "sha512-XQdMjqC1AyeOzfs+17cnIk7Wdfu1hh2JtcyNfBf5u9jHrT3iZUlGHxLTntFBuk5lwkqJ6l3+daeQdHK5yByHVA==",
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.8.1.tgz",
+ "integrity": "sha512-GrO2l93P8xCWBSTBX9l2BxI78VU/MAAYag+pG8curS3aBGy0++ZlxrQ7PdUOUVMbn5BwkGb6+eRrnf43ipnFEA==",
"dev": true,
"license": "MIT"
},
@@ -10509,9 +10643,9 @@
}
},
"node_modules/html-entities": {
- "version": "2.5.2",
- "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.2.tgz",
- "integrity": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==",
+ "version": "2.5.3",
+ "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.5.3.tgz",
+ "integrity": "sha512-D3AfvN7SjhTgBSA8L1BN4FpPzuEd06uy4lHwSoRWr0lndi9BKaNzPLKGOWZ2ocSGguozr08TTb2jhCLHaemruw==",
"dev": true,
"funding": [
{
@@ -10522,13 +10656,15 @@
"type": "patreon",
"url": "https://patreon.com/mdevils"
}
- ]
+ ],
+ "license": "MIT"
},
"node_modules/html-loader": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/html-loader/-/html-loader-3.1.2.tgz",
"integrity": "sha512-9WQlLiAV5N9fCna4MUmBW/ifaUbuFZ2r7IZmtXzhyfyi4zgPEjXsmsYCKs+yT873MzRj+f1WMjuAiPNA7C6Tcw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"html-minifier-terser": "^6.0.2",
"parse5": "^6.0.1"
@@ -10549,6 +10685,7 @@
"resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz",
"integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"camel-case": "^4.1.2",
"clean-css": "^5.2.2",
@@ -10570,6 +10707,7 @@
"resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
"integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 12"
}
@@ -10592,6 +10730,7 @@
"resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz",
"integrity": "sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@types/html-minifier-terser": "^6.0.0",
"html-minifier-terser": "^6.0.2",
@@ -10620,9 +10759,9 @@
}
},
"node_modules/htmljs-parser": {
- "version": "5.5.3",
- "resolved": "https://registry.npmjs.org/htmljs-parser/-/htmljs-parser-5.5.3.tgz",
- "integrity": "sha512-uX5BWkdIJV2qfxTVMcFJGPSqx9EYZGfZQv7THtNfA3cIr2zfwlzjojqO7jHDntO3cJUQauRSjBETBkiaCi3wtA==",
+ "version": "5.5.4",
+ "resolved": "https://registry.npmjs.org/htmljs-parser/-/htmljs-parser-5.5.4.tgz",
+ "integrity": "sha512-qJiir3ViASVhGdNW4kwM4pQWvDtDLtjwaflEQDooiNzbOPIzoaIzmRFWweFl8GomVhJqXqX0jjrhDED3pmAdzg==",
"dev": true,
"license": "MIT"
},
@@ -10706,6 +10845,7 @@
"resolved": "https://registry.npmjs.org/human-id/-/human-id-4.1.1.tgz",
"integrity": "sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==",
"dev": true,
+ "license": "MIT",
"bin": {
"human-id": "dist/cli.js"
}
@@ -10754,6 +10894,7 @@
"resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz",
"integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==",
"dev": true,
+ "license": "ISC",
"engines": {
"node": "^10 || ^12 || >= 14"
},
@@ -10797,6 +10938,7 @@
"resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.0.tgz",
"integrity": "sha512-4S8fwbO6w3GeCVN6OPtA9I5IGKkcDMPcKndtUlpJuCwu7JLjtj7JZpwqLuyY2nrmQT3AWsCJLSKPsc2mPBSl3w==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"queue": "6.0.2"
},
@@ -10808,16 +10950,16 @@
}
},
"node_modules/immutable": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz",
- "integrity": "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==",
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.1.tgz",
+ "integrity": "sha512-3jatXi9ObIsPGr3N5hGw/vWWcTkq6hUYhpQz4k0wLC+owqWi/LiugIw9x0EdNZ2yGedKN/HzePiBvaJRXa0Ujg==",
"dev": true,
"license": "MIT"
},
"node_modules/import-fresh": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
- "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10861,69 +11003,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/import-local/node_modules/find-up": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "locate-path": "^5.0.0",
- "path-exists": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/import-local/node_modules/locate-path": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-locate": "^4.1.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/import-local/node_modules/p-locate": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "p-limit": "^2.2.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/import-local/node_modules/path-exists": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=8"
- }
- },
- "node_modules/import-local/node_modules/pkg-dir": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "find-up": "^4.0.0"
- },
- "engines": {
- "node": ">=8"
- }
- },
"node_modules/import-meta-resolve": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz",
@@ -11004,6 +11083,7 @@
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz",
"integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"jsbn": "1.1.0",
"sprintf-js": "^1.1.3"
@@ -11016,7 +11096,8 @@
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz",
"integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==",
- "dev": true
+ "dev": true,
+ "license": "BSD-3-Clause"
},
"node_modules/is-absolute": {
"version": "1.0.0",
@@ -11037,6 +11118,7 @@
"resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz",
"integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"call-bound": "^1.0.2",
"has-tostringtag": "^1.0.2"
@@ -11074,12 +11156,13 @@
"license": "MIT"
},
"node_modules/is-async-function": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.0.tgz",
- "integrity": "sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ==",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz",
+ "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==",
"dev": true,
"license": "MIT",
"dependencies": {
+ "async-function": "^1.0.0",
"call-bound": "^1.0.3",
"get-proto": "^1.0.1",
"has-tostringtag": "^1.0.2",
@@ -11122,13 +11205,13 @@
}
},
"node_modules/is-boolean-object": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.1.tgz",
- "integrity": "sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==",
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
+ "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bound": "^1.0.2",
+ "call-bound": "^1.0.3",
"has-tostringtag": "^1.0.2"
},
"engines": {
@@ -11207,6 +11290,7 @@
"resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
"integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
"dev": true,
+ "license": "MIT",
"bin": {
"is-docker": "cli.js"
},
@@ -11461,6 +11545,7 @@
"resolved": "https://registry.npmjs.org/is-subdir/-/is-subdir-1.2.0.tgz",
"integrity": "sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"better-path-resolve": "1.0.0"
},
@@ -11491,6 +11576,7 @@
"resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-2.0.0.tgz",
"integrity": "sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"text-extensions": "^2.0.0"
},
@@ -11551,13 +11637,13 @@
}
},
"node_modules/is-weakref": {
- "version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.0.tgz",
- "integrity": "sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz",
+ "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==",
"dev": true,
"license": "MIT",
"dependencies": {
- "call-bound": "^1.0.2"
+ "call-bound": "^1.0.3"
},
"engines": {
"node": ">= 0.4"
@@ -11598,6 +11684,7 @@
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
"integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"is-docker": "^2.0.0"
},
@@ -11630,9 +11717,9 @@
}
},
"node_modules/jackspeak": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.2.tgz",
- "integrity": "sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz",
+ "integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
@@ -11698,6 +11785,7 @@
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
"integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"argparse": "^1.0.7",
"esprima": "^4.0.0"
@@ -11710,13 +11798,15 @@
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz",
"integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/jsdoc-type-pratt-parser": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz",
"integrity": "sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=12.0.0"
}
@@ -11841,6 +11931,7 @@
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
"integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==",
"dev": true,
+ "license": "MIT",
"optionalDependencies": {
"graceful-fs": "^4.1.6"
}
@@ -11852,13 +11943,15 @@
"dev": true,
"engines": [
"node >= 0.2.0"
- ]
+ ],
+ "license": "MIT"
},
"node_modules/JSONStream": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",
"integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==",
"dev": true,
+ "license": "(MIT OR Apache-2.0)",
"dependencies": {
"jsonparse": "^1.2.0",
"through": ">=2.2.7 <3"
@@ -12008,10 +12101,11 @@
"license": "MIT"
},
"node_modules/lint-staged": {
- "version": "15.4.3",
- "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.4.3.tgz",
- "integrity": "sha512-FoH1vOeouNh1pw+90S+cnuoFwRfUD9ijY2GKy5h7HS3OR7JVir2N2xrsa0+Twc1B7cW72L+88geG5cW4wIhn7g==",
+ "version": "15.5.0",
+ "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.5.0.tgz",
+ "integrity": "sha512-WyCzSbfYGhK7cU+UuDDkzUiytbfbi0ZdPy2orwtM75P3WTtQBzmG40cCxIa8Ii2+XjfxzLH6Be46tUfWS85Xfg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
@@ -12039,6 +12133,7 @@
"resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz",
"integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=18"
}
@@ -12138,13 +12233,15 @@
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/lodash.camelcase": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
"integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/lodash.debounce": {
"version": "4.0.8",
@@ -12164,7 +12261,8 @@
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz",
"integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/lodash.memoize": {
"version": "4.1.2",
@@ -12191,13 +12289,15 @@
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz",
"integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/lodash.startcase": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz",
"integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/lodash.truncate": {
"version": "4.4.2",
@@ -12217,7 +12317,8 @@
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz",
"integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/log-update": {
"version": "6.1.0",
@@ -12347,6 +12448,7 @@
"resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz",
"integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"tslib": "^2.0.3"
}
@@ -12396,10 +12498,11 @@
}
},
"node_modules/makeup-active-descendant": {
- "version": "0.7.5",
- "resolved": "https://registry.npmjs.org/makeup-active-descendant/-/makeup-active-descendant-0.7.5.tgz",
- "integrity": "sha512-48MICP/hlM6xROX9zzTc2ShaIQxsQIEmjZfz5l8G/TtrTaVseNsC3xdIGOxMa0ufyNqX335zDogkE//kMxskLw==",
+ "version": "0.7.6",
+ "resolved": "https://registry.npmjs.org/makeup-active-descendant/-/makeup-active-descendant-0.7.6.tgz",
+ "integrity": "sha512-IE1vjyqq/rxdrla2JJ5HKfAPANnTuRZ4Y3BcPrHEpBciojL3aPjBPZl+i3hXxZlUDZk85lw48npANDuWVM5C2A==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"makeup-navigation-emitter": "^0.7.3",
"makeup-next-id": "^0.5.3"
@@ -12416,13 +12519,14 @@
}
},
"node_modules/makeup-combobox": {
- "version": "0.4.8",
- "resolved": "https://registry.npmjs.org/makeup-combobox/-/makeup-combobox-0.4.8.tgz",
- "integrity": "sha512-SgZWoh4ylJZ7dhUmDHjRkIw/IhNSCtpx799vdFp6AS2c3TGm52sXCzpptqrzfrilOqrzldszhAPs3obMCtg4Ig==",
+ "version": "0.4.9",
+ "resolved": "https://registry.npmjs.org/makeup-combobox/-/makeup-combobox-0.4.9.tgz",
+ "integrity": "sha512-WB5RHX7L1Mwo3vu5NIIzo8vx+EDvrphUFP7kJZXdkT40SYv1dvEKwi8CU4Q1AztzGyiV5AE67pwqXYNabXu60Q==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"makeup-expander": "^0.11.5",
- "makeup-listbox": "^0.4.5"
+ "makeup-listbox": "^0.4.6"
}
},
"node_modules/makeup-confirm-dialog": {
@@ -12481,6 +12585,7 @@
"resolved": "https://registry.npmjs.org/makeup-expander/-/makeup-expander-0.11.5.tgz",
"integrity": "sha512-4TrrbDkO8l8CEbBg9TIgCXs6z4wRGvq+CTxsmdCw0TNJ+spu2K30Yd6ZKODyu8aI3xrjNGfwuhFkNHHa05rCBQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"makeup-exit-emitter": "^0.5.3",
"makeup-focusables": "^0.4.4",
@@ -12549,23 +12654,25 @@
}
},
"node_modules/makeup-listbox": {
- "version": "0.4.5",
- "resolved": "https://registry.npmjs.org/makeup-listbox/-/makeup-listbox-0.4.5.tgz",
- "integrity": "sha512-fUZswQMdcAzP17By+SxBkBzGxsCDvW6VG1vk8rtzWXMMgO/NCeqXV7Zdn3wHRhGaBkmkjnv1WQv5buM1nZeFGg==",
+ "version": "0.4.6",
+ "resolved": "https://registry.npmjs.org/makeup-listbox/-/makeup-listbox-0.4.6.tgz",
+ "integrity": "sha512-+it1ekWRgW2DvTfjznq+st7TfedZRZaECVxzS5pFLHr8h5pLlJCksN5GnfafiixAJDv4bEC7LynHuEkOW2w8Yw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "makeup-active-descendant": "^0.7.5",
+ "makeup-active-descendant": "^0.7.6",
"makeup-prevent-scroll-keys": "^0.3.3"
}
},
"node_modules/makeup-listbox-button": {
- "version": "0.5.7",
- "resolved": "https://registry.npmjs.org/makeup-listbox-button/-/makeup-listbox-button-0.5.7.tgz",
- "integrity": "sha512-Mg0Wp+vHKTO6CqCyYvBKpZq+yAugDtKENKQ5zeQwP6b/D+BWdolBUNk4eXCE2SyeXALH/ZHdT18IEXugDer/Ww==",
+ "version": "0.5.8",
+ "resolved": "https://registry.npmjs.org/makeup-listbox-button/-/makeup-listbox-button-0.5.8.tgz",
+ "integrity": "sha512-Uybi5RA3K53aX9b+oKsEMdIYGygckxKf4Ce8qNFPJ9Rhj9JYzypt8ySEPOcMMigB3bELS7gayZfY2n9fkFkcFg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"makeup-expander": "^0.11.5",
- "makeup-listbox": "^0.4.5"
+ "makeup-listbox": "^0.4.6"
}
},
"node_modules/makeup-menu": {
@@ -12584,6 +12691,7 @@
"resolved": "https://registry.npmjs.org/makeup-menu-button/-/makeup-menu-button-0.4.6.tgz",
"integrity": "sha512-XJxNhsH4AFmo6/eLd7Un4upTTzJmHrjOulPLcCV6bdBOJOLQbOZqUqAxWxlV84/gPhcJ00ILWifC2m/rEzoKzA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"makeup-expander": "^0.11.5",
"makeup-menu": "^0.4.4"
@@ -12690,13 +12798,14 @@
}
},
"node_modules/marko": {
- "version": "5.37.16",
- "resolved": "https://registry.npmjs.org/marko/-/marko-5.37.16.tgz",
- "integrity": "sha512-RgFfD63uxz81Dzz/EfHdUQCnL5qgtlaqhHCjoTwPNk0nbK6215RnjbQ521o+HApU4BfxR28URuL3EA+SDHnOjQ==",
+ "version": "5.37.24",
+ "resolved": "https://registry.npmjs.org/marko/-/marko-5.37.24.tgz",
+ "integrity": "sha512-4Kgk02fuLYYnFjZcv2SphowQoigykmdRRS8ghXP0Z7Bm0ZycmSLRik/YB5+hnYsprsrT5EDIwVOTIFaLBjXDBw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.26.0",
- "@marko/compiler": "^5.39.12",
+ "@babel/runtime": "^7.27.0",
+ "@marko/compiler": "^5.39.14",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",
@@ -12777,6 +12886,7 @@
"resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz",
"integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==",
"dev": true,
+ "license": "Unlicense",
"dependencies": {
"fs-monkey": "^1.0.4"
},
@@ -12851,9 +12961,9 @@
}
},
"node_modules/mime-db": {
- "version": "1.53.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz",
- "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==",
+ "version": "1.54.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz",
+ "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13006,9 +13116,9 @@
}
},
"node_modules/nanoid": {
- "version": "3.3.8",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
- "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
"dev": true,
"funding": [
{
@@ -13063,6 +13173,7 @@
"resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz",
"integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 0.4.0"
}
@@ -13079,6 +13190,7 @@
"resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz",
"integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"lower-case": "^2.0.2",
"tslib": "^2.0.3"
@@ -13088,7 +13200,8 @@
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz",
"integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/node-addon-api": {
"version": "7.1.1",
@@ -13410,16 +13523,16 @@
}
},
"node_modules/nwsapi": {
- "version": "2.2.16",
- "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.16.tgz",
- "integrity": "sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==",
+ "version": "2.2.20",
+ "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.20.tgz",
+ "integrity": "sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==",
"dev": true,
"license": "MIT"
},
"node_modules/object-inspect": {
- "version": "1.13.3",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
- "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13553,6 +13666,7 @@
"resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz",
"integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"define-lazy-prop": "^2.0.0",
"is-docker": "^2.1.1",
@@ -13597,7 +13711,8 @@
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/outdent/-/outdent-0.5.0.tgz",
"integrity": "sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/own-keys": {
"version": "1.0.1",
@@ -13622,6 +13737,7 @@
"resolved": "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz",
"integrity": "sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"p-map": "^2.0.0"
},
@@ -13678,9 +13794,9 @@
}
},
"node_modules/p-locate/node_modules/yocto-queue": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz",
- "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz",
+ "integrity": "sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13695,6 +13811,7 @@
"resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz",
"integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=6"
}
@@ -13714,6 +13831,7 @@
"resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.2.0.tgz",
"integrity": "sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@tootallnate/quickjs-emscripten": "^0.23.0",
"agent-base": "^7.1.2",
@@ -13733,6 +13851,7 @@
"resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz",
"integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"degenerator": "^5.0.0",
"netmask": "^2.0.2"
@@ -13749,23 +13868,28 @@
"license": "BlueOak-1.0.0"
},
"node_modules/package-manager-detector": {
- "version": "0.2.8",
- "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.2.8.tgz",
- "integrity": "sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==",
+ "version": "0.2.11",
+ "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.2.11.tgz",
+ "integrity": "sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==",
"dev": true,
- "license": "MIT"
+ "license": "MIT",
+ "dependencies": {
+ "quansync": "^0.2.7"
+ }
},
"node_modules/pako": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz",
"integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==",
- "dev": true
+ "dev": true,
+ "license": "(MIT AND Zlib)"
},
"node_modules/param-case": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz",
"integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"dot-case": "^3.0.4",
"tslib": "^2.0.3"
@@ -13819,32 +13943,15 @@
}
},
"node_modules/parse-node-args": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/parse-node-args/-/parse-node-args-1.1.2.tgz",
- "integrity": "sha512-kwtLiOlr5aPE78EyLGHzdhvfoVKXC/j8NuwMj53V20D09YqQ2vjkcyQKb1i9ufwzLoeKUjOyu4aoUctrVmnrwQ==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@babel/runtime": "7.1.2"
- }
- },
- "node_modules/parse-node-args/node_modules/@babel/runtime": {
- "version": "7.1.2",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.1.2.tgz",
- "integrity": "sha512-Y3SCjmhSupzFB6wcv1KmmFucH6gDVnI30WjOcicV10ju0cZjak3Jcs67YLIXBrmZYw1xCrVeJPbycFwrqNyxpg==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/parse-node-args/-/parse-node-args-1.1.3.tgz",
+ "integrity": "sha512-Dp9KVLLq7g9TfGh3Uo8bv+0zW+YEKis+9J3d6KFp/GHkbqS5jd5xveavErhrOP2hsAmbCwdKFBTxBlNxXMK6vg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "regenerator-runtime": "^0.12.0"
+ "@babel/runtime": "^7.1.2"
}
},
- "node_modules/parse-node-args/node_modules/regenerator-runtime": {
- "version": "0.12.1",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz",
- "integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/parse-passwd": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
@@ -13859,7 +13966,8 @@
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz",
"integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/parseurl": {
"version": "1.3.3",
@@ -13876,6 +13984,7 @@
"resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz",
"integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"no-case": "^3.0.4",
"tslib": "^2.0.3"
@@ -13885,7 +13994,8 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
"integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/path-exists": {
"version": "5.0.0",
@@ -13965,9 +14075,9 @@
}
},
"node_modules/path-scurry/node_modules/lru-cache": {
- "version": "11.0.2",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.2.tgz",
- "integrity": "sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==",
+ "version": "11.1.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.1.0.tgz",
+ "integrity": "sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==",
"dev": true,
"license": "ISC",
"engines": {
@@ -13978,7 +14088,8 @@
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz",
"integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/path-type": {
"version": "4.0.0",
@@ -13994,7 +14105,8 @@
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
"integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/picocolors": {
"version": "1.1.1",
@@ -14040,42 +14152,72 @@
}
},
"node_modules/pkg-dir": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz",
- "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==",
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "find-up": "^6.3.0"
+ "find-up": "^4.0.0"
},
"engines": {
- "node": ">=14.16"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=8"
}
},
"node_modules/pkg-dir/node_modules/find-up": {
- "version": "6.3.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz",
- "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==",
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
+ "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^5.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pkg-dir/node_modules/locate-path": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
+ "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^4.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pkg-dir/node_modules/p-locate": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
+ "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pkg-dir/node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
"dev": true,
"license": "MIT",
- "dependencies": {
- "locate-path": "^7.1.0",
- "path-exists": "^5.0.0"
- },
"engines": {
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=8"
}
},
"node_modules/possible-typed-array-names": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz",
- "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
+ "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14101,6 +14243,7 @@
"url": "https://github.com/sponsors/ai"
}
],
+ "license": "MIT",
"dependencies": {
"nanoid": "^3.3.8",
"picocolors": "^1.1.1",
@@ -14111,9 +14254,9 @@
}
},
"node_modules/postcss-calc": {
- "version": "10.1.0",
- "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.0.tgz",
- "integrity": "sha512-uQ/LDGsf3mgsSUEXmAt3VsCSHR3aKqtEIkmB+4PhzYwRYOW5MZs/GhCCFpsOtJJkP6EC6uGipbrnaTjqaJZcJw==",
+ "version": "10.1.1",
+ "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.1.tgz",
+ "integrity": "sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14128,23 +14271,22 @@
}
},
"node_modules/postcss-cli": {
- "version": "11.0.0",
- "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-11.0.0.tgz",
- "integrity": "sha512-xMITAI7M0u1yolVcXJ9XTZiO9aO49mcoKQy6pCDFdMh9kGqhzLVpWxeD/32M/QBmkhcGypZFFOLNLmIW4Pg4RA==",
+ "version": "11.0.1",
+ "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-11.0.1.tgz",
+ "integrity": "sha512-0UnkNPSayHKRe/tc2YGW6XnSqqOA9eqpiRMgRlV1S6HdGi16vwJBx7lviARzbV1HpQHqLLRH3o8vTcB0cLc+5g==",
"dev": true,
"license": "MIT",
"dependencies": {
"chokidar": "^3.3.0",
- "dependency-graph": "^0.11.0",
+ "dependency-graph": "^1.0.0",
"fs-extra": "^11.0.0",
- "get-stdin": "^9.0.0",
- "globby": "^14.0.0",
"picocolors": "^1.0.0",
"postcss-load-config": "^5.0.0",
"postcss-reporter": "^7.0.0",
"pretty-hrtime": "^1.0.3",
"read-cache": "^1.0.0",
"slash": "^5.0.0",
+ "tinyglobby": "^0.2.12",
"yargs": "^17.0.0"
},
"bin": {
@@ -14172,27 +14314,6 @@
"node": ">=14.14"
}
},
- "node_modules/postcss-cli/node_modules/globby": {
- "version": "14.0.2",
- "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz",
- "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "@sindresorhus/merge-streams": "^2.1.0",
- "fast-glob": "^3.3.2",
- "ignore": "^5.2.4",
- "path-type": "^5.0.0",
- "slash": "^5.1.0",
- "unicorn-magic": "^0.1.0"
- },
- "engines": {
- "node": ">=18"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/postcss-cli/node_modules/jsonfile": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
@@ -14206,19 +14327,6 @@
"graceful-fs": "^4.1.6"
}
},
- "node_modules/postcss-cli/node_modules/path-type": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz",
- "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==",
- "dev": true,
- "license": "MIT",
- "engines": {
- "node": ">=12"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/postcss-cli/node_modules/slash": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz",
@@ -14541,9 +14649,9 @@
}
},
"node_modules/postcss-loader/node_modules/semver": {
- "version": "7.6.3",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
- "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
+ "version": "7.7.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
+ "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -14727,6 +14835,7 @@
"resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz",
"integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==",
"dev": true,
+ "license": "ISC",
"engines": {
"node": "^10 || ^12 || >= 14"
},
@@ -14739,6 +14848,7 @@
"resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz",
"integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"icss-utils": "^5.0.0",
"postcss-selector-parser": "^7.0.0",
@@ -14756,6 +14866,7 @@
"resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz",
"integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==",
"dev": true,
+ "license": "ISC",
"dependencies": {
"postcss-selector-parser": "^7.0.0"
},
@@ -14771,6 +14882,7 @@
"resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz",
"integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==",
"dev": true,
+ "license": "ISC",
"dependencies": {
"icss-utils": "^5.0.0"
},
@@ -15088,9 +15200,9 @@
}
},
"node_modules/postcss-selector-parser": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz",
- "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==",
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz",
+ "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15183,9 +15295,9 @@
"license": "MIT"
},
"node_modules/preact": {
- "version": "10.25.4",
- "resolved": "https://registry.npmjs.org/preact/-/preact-10.25.4.tgz",
- "integrity": "sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==",
+ "version": "10.26.4",
+ "resolved": "https://registry.npmjs.org/preact/-/preact-10.26.4.tgz",
+ "integrity": "sha512-KJhO7LBFTjP71d83trW+Ilnjbo+ySsaAgCfXOXUlmGzJ4ygYPWmysm77yg4emwfmoz3b22yvH5IsVFHbhUaH5w==",
"dev": true,
"license": "MIT",
"funding": {
@@ -15204,10 +15316,11 @@
}
},
"node_modules/prettier": {
- "version": "3.5.2",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.2.tgz",
- "integrity": "sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==",
+ "version": "3.5.3",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
+ "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
"dev": true,
+ "license": "MIT",
"bin": {
"prettier": "bin/prettier.cjs"
},
@@ -15236,6 +15349,7 @@
"resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz",
"integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"lodash": "^4.17.20",
"renderkid": "^3.0.0"
@@ -15252,9 +15366,9 @@
}
},
"node_modules/prismjs": {
- "version": "1.29.0",
- "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.29.0.tgz",
- "integrity": "sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==",
+ "version": "1.30.0",
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
+ "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15266,6 +15380,7 @@
"resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz",
"integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 0.6.0"
}
@@ -15275,6 +15390,7 @@
"resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz",
"integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"end-of-stream": "^1.1.0",
"once": "^1.3.1"
@@ -15284,7 +15400,8 @@
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
"integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/qs": {
"version": "6.14.0",
@@ -15302,11 +15419,29 @@
"url": "https://github.com/sponsors/ljharb"
}
},
+ "node_modules/quansync": {
+ "version": "0.2.10",
+ "resolved": "https://registry.npmjs.org/quansync/-/quansync-0.2.10.tgz",
+ "integrity": "sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/antfu"
+ },
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/sxzz"
+ }
+ ],
+ "license": "MIT"
+ },
"node_modules/queue": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz",
"integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"inherits": "~2.0.3"
}
@@ -15332,13 +15467,6 @@
],
"license": "MIT"
},
- "node_modules/queue-tick": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz",
- "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/randombytes": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
@@ -15443,6 +15571,7 @@
"resolved": "https://registry.npmjs.org/read-yaml-file/-/read-yaml-file-1.1.0.tgz",
"integrity": "sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"graceful-fs": "^4.1.5",
"js-yaml": "^3.6.1",
@@ -15487,10 +15616,11 @@
}
},
"node_modules/recast": {
- "version": "0.23.9",
- "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.9.tgz",
- "integrity": "sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==",
+ "version": "0.23.11",
+ "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.11.tgz",
+ "integrity": "sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ast-types": "^0.16.1",
"esprima": "~4.0.0",
@@ -15507,6 +15637,7 @@
"resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz",
"integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"tslib": "^2.0.1"
},
@@ -15664,6 +15795,7 @@
"resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz",
"integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 0.10"
}
@@ -15687,6 +15819,7 @@
"resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz",
"integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"css-select": "^4.1.3",
"dom-converter": "^0.2.0",
@@ -15700,6 +15833,7 @@
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz",
"integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"domelementtype": "^2.0.1",
"domhandler": "^4.2.0",
@@ -15714,6 +15848,7 @@
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz",
"integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==",
"dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
"domelementtype": "^2.2.0"
},
@@ -15729,6 +15864,7 @@
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
"integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
"dev": true,
+ "license": "BSD-2-Clause",
"dependencies": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.2.0",
@@ -15743,6 +15879,7 @@
"resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
"integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
"dev": true,
+ "license": "BSD-2-Clause",
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
}
@@ -15759,6 +15896,7 @@
"url": "https://github.com/sponsors/fb55"
}
],
+ "license": "MIT",
"dependencies": {
"domelementtype": "^2.0.1",
"domhandler": "^4.0.0",
@@ -15921,9 +16059,9 @@
}
},
"node_modules/reusify": {
- "version": "1.0.4",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
- "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -16009,9 +16147,9 @@
}
},
"node_modules/rollup": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.31.0.tgz",
- "integrity": "sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==",
+ "version": "4.37.0",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.37.0.tgz",
+ "integrity": "sha512-iAtQy/L4QFU+rTJ1YUjXqJOJzuwEghqWzCEYD2FEghT7Gsy1VdABntrO4CLopA5IkflTyqNiLNwPcOJ3S7UKLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -16025,28 +16163,36 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.31.0",
- "@rollup/rollup-android-arm64": "4.31.0",
- "@rollup/rollup-darwin-arm64": "4.31.0",
- "@rollup/rollup-darwin-x64": "4.31.0",
- "@rollup/rollup-freebsd-arm64": "4.31.0",
- "@rollup/rollup-freebsd-x64": "4.31.0",
- "@rollup/rollup-linux-arm-gnueabihf": "4.31.0",
- "@rollup/rollup-linux-arm-musleabihf": "4.31.0",
- "@rollup/rollup-linux-arm64-gnu": "4.31.0",
- "@rollup/rollup-linux-arm64-musl": "4.31.0",
- "@rollup/rollup-linux-loongarch64-gnu": "4.31.0",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.31.0",
- "@rollup/rollup-linux-riscv64-gnu": "4.31.0",
- "@rollup/rollup-linux-s390x-gnu": "4.31.0",
- "@rollup/rollup-linux-x64-gnu": "4.31.0",
- "@rollup/rollup-linux-x64-musl": "4.31.0",
- "@rollup/rollup-win32-arm64-msvc": "4.31.0",
- "@rollup/rollup-win32-ia32-msvc": "4.31.0",
- "@rollup/rollup-win32-x64-msvc": "4.31.0",
+ "@rollup/rollup-android-arm-eabi": "4.37.0",
+ "@rollup/rollup-android-arm64": "4.37.0",
+ "@rollup/rollup-darwin-arm64": "4.37.0",
+ "@rollup/rollup-darwin-x64": "4.37.0",
+ "@rollup/rollup-freebsd-arm64": "4.37.0",
+ "@rollup/rollup-freebsd-x64": "4.37.0",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.37.0",
+ "@rollup/rollup-linux-arm-musleabihf": "4.37.0",
+ "@rollup/rollup-linux-arm64-gnu": "4.37.0",
+ "@rollup/rollup-linux-arm64-musl": "4.37.0",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.37.0",
+ "@rollup/rollup-linux-powerpc64le-gnu": "4.37.0",
+ "@rollup/rollup-linux-riscv64-gnu": "4.37.0",
+ "@rollup/rollup-linux-riscv64-musl": "4.37.0",
+ "@rollup/rollup-linux-s390x-gnu": "4.37.0",
+ "@rollup/rollup-linux-x64-gnu": "4.37.0",
+ "@rollup/rollup-linux-x64-musl": "4.37.0",
+ "@rollup/rollup-win32-arm64-msvc": "4.37.0",
+ "@rollup/rollup-win32-ia32-msvc": "4.37.0",
+ "@rollup/rollup-win32-x64-msvc": "4.37.0",
"fsevents": "~2.3.2"
}
},
+ "node_modules/rollup/node_modules/@types/estree": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
+ "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/rrweb-cssom": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz",
@@ -16185,10 +16331,11 @@
"license": "MIT"
},
"node_modules/sass": {
- "version": "1.85.0",
- "resolved": "https://registry.npmjs.org/sass/-/sass-1.85.0.tgz",
- "integrity": "sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==",
+ "version": "1.86.0",
+ "resolved": "https://registry.npmjs.org/sass/-/sass-1.86.0.tgz",
+ "integrity": "sha512-zV8vGUld/+mP4KbMLJMX7TyGCuUp7hnkOScgCMsWuHtns8CWBoz+vmEhoGMXsaJrbUP8gj+F1dLvVe79sK8UdA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"chokidar": "^4.0.0",
"immutable": "^5.0.2",
@@ -16209,6 +16356,7 @@
"resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.5.tgz",
"integrity": "sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"neo-async": "^2.6.2"
},
@@ -16261,9 +16409,9 @@
}
},
"node_modules/sass/node_modules/readdirp": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.1.tgz",
- "integrity": "sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz",
+ "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -16288,16 +16436,15 @@
}
},
"node_modules/schema-utils": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
- "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
+ "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@types/json-schema": "^7.0.9",
- "ajv": "^8.9.0",
- "ajv-formats": "^2.1.1",
- "ajv-keywords": "^5.1.0"
+ "@types/json-schema": "^7.0.8",
+ "ajv": "^6.12.5",
+ "ajv-keywords": "^3.5.2"
},
"engines": {
"node": ">= 10.13.0"
@@ -16307,11 +16454,46 @@
"url": "https://opencollective.com/webpack"
}
},
+ "node_modules/schema-utils/node_modules/ajv": {
+ "version": "6.12.6",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
+ "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/schema-utils/node_modules/ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "ajv": "^6.9.1"
+ }
+ },
+ "node_modules/schema-utils/node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/search-insights": {
"version": "2.17.3",
"resolved": "https://registry.npmjs.org/search-insights/-/search-insights-2.17.3.tgz",
"integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==",
"dev": true,
+ "license": "MIT",
"peer": true
},
"node_modules/self-closing-tags": {
@@ -16681,6 +16863,7 @@
"resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
"integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
@@ -16691,6 +16874,7 @@
"resolved": "https://registry.npmjs.org/socks/-/socks-2.8.4.tgz",
"integrity": "sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ip-address": "^9.0.5",
"smart-buffer": "^4.2.0"
@@ -16705,6 +16889,7 @@
"resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz",
"integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"agent-base": "^7.1.2",
"debug": "^4.3.4",
@@ -16760,6 +16945,7 @@
"resolved": "https://registry.npmjs.org/spawndamnit/-/spawndamnit-3.0.1.tgz",
"integrity": "sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==",
"dev": true,
+ "license": "SEE LICENSE IN LICENSE",
"dependencies": {
"cross-spawn": "^7.0.5",
"signal-exit": "^4.0.1"
@@ -16815,7 +17001,8 @@
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
- "dev": true
+ "dev": true,
+ "license": "BSD-3-Clause"
},
"node_modules/stack-trace": {
"version": "0.0.10",
@@ -16845,12 +17032,13 @@
}
},
"node_modules/storybook": {
- "version": "8.5.8",
- "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.5.8.tgz",
- "integrity": "sha512-k3QDa7z4a656oO3Mx929KNm+xIdEI2nIDCKatVl1mA6vt+ge+uwoiG+ro182J9LOEppR5XXD2mQQi4u1xNsy6A==",
+ "version": "8.6.11",
+ "resolved": "https://registry.npmjs.org/storybook/-/storybook-8.6.11.tgz",
+ "integrity": "sha512-B2wxpmq1QYS4JV7RQu1mOHD7akfoGbuoUSkx2D2GZgv/zXAHZmDpSFcTvvBBm8FAtzChI9HhITSJ0YS0ePfnJQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@storybook/core": "8.5.8"
+ "@storybook/core": "8.6.11"
},
"bin": {
"getstorybook": "bin/index.cjs",
@@ -16895,14 +17083,13 @@
"license": "MIT"
},
"node_modules/streamx": {
- "version": "2.21.1",
- "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.21.1.tgz",
- "integrity": "sha512-PhP9wUnFLa+91CPy3N6tiQsK+gnYyUNuk15S3YG/zjYE7RuPeCjJngqnzpC31ow0lzBHQ+QGO4cNJnd0djYUsw==",
+ "version": "2.22.0",
+ "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.0.tgz",
+ "integrity": "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==",
"dev": true,
"license": "MIT",
"dependencies": {
"fast-fifo": "^1.3.2",
- "queue-tick": "^1.0.1",
"text-decoder": "^1.1.0"
},
"optionalDependencies": {
@@ -17110,6 +17297,7 @@
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
},
@@ -17145,6 +17333,7 @@
"resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.4.tgz",
"integrity": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 12.13.0"
},
@@ -17188,9 +17377,9 @@
}
},
"node_modules/stylelint": {
- "version": "16.14.1",
- "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.14.1.tgz",
- "integrity": "sha512-oqCL7AC3786oTax35T/nuLL8p2C3k/8rHKAooezrPGRvUX0wX+qqs5kMWh5YYT4PHQgVDobHT4tw55WgpYG6Sw==",
+ "version": "16.17.0",
+ "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-16.17.0.tgz",
+ "integrity": "sha512-I9OwVIWRMqVm2Br5iTbrfSqGRPWQUlvm6oXO1xZuYYu0Gpduy67N8wXOZv15p6E/JdlZiAtQaIoLKZEWk5hrjw==",
"dev": true,
"funding": [
{
@@ -17202,6 +17391,7 @@
"url": "https://github.com/sponsors/stylelint"
}
],
+ "license": "MIT",
"dependencies": {
"@csstools/css-parser-algorithms": "^3.0.4",
"@csstools/css-tokenizer": "^3.0.3",
@@ -17216,7 +17406,7 @@
"debug": "^4.3.7",
"fast-glob": "^3.3.3",
"fastest-levenshtein": "^1.0.16",
- "file-entry-cache": "^10.0.5",
+ "file-entry-cache": "^10.0.7",
"global-modules": "^2.0.0",
"globby": "^11.1.0",
"globjoin": "^0.1.4",
@@ -17230,14 +17420,14 @@
"micromatch": "^4.0.8",
"normalize-path": "^3.0.0",
"picocolors": "^1.1.1",
- "postcss": "^8.5.1",
+ "postcss": "^8.5.3",
"postcss-resolve-nested-selector": "^0.1.6",
"postcss-safe-parser": "^7.0.1",
- "postcss-selector-parser": "^7.0.0",
+ "postcss-selector-parser": "^7.1.0",
"postcss-value-parser": "^4.2.0",
"resolve-from": "^5.0.0",
"string-width": "^4.2.3",
- "supports-hyperlinks": "^3.1.0",
+ "supports-hyperlinks": "^3.2.0",
"svg-tags": "^1.0.0",
"table": "^6.9.0",
"write-file-atomic": "^5.0.1"
@@ -17435,9 +17625,9 @@
}
},
"node_modules/stylelint-no-unsupported-browser-features": {
- "version": "8.0.2",
- "resolved": "https://registry.npmjs.org/stylelint-no-unsupported-browser-features/-/stylelint-no-unsupported-browser-features-8.0.2.tgz",
- "integrity": "sha512-4PY2qJ3ZTEje9RgGfaQ82eJoPioXxs6hazeKpji/wzLNVzTX2wd4b0Ds3ewdLkH3ID+o63IInuTquU2MNJO3YQ==",
+ "version": "8.0.4",
+ "resolved": "https://registry.npmjs.org/stylelint-no-unsupported-browser-features/-/stylelint-no-unsupported-browser-features-8.0.4.tgz",
+ "integrity": "sha512-MNdjegsgfTu1iDBsJM+1uBVZsIt0EWzqAX5qgUBAGavXkddwRqh+S1KD2VnWqUhiEuyddVrWJH8vKsNI40orxA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17466,9 +17656,9 @@
}
},
"node_modules/stylelint-prettier": {
- "version": "5.0.2",
- "resolved": "https://registry.npmjs.org/stylelint-prettier/-/stylelint-prettier-5.0.2.tgz",
- "integrity": "sha512-qJ+BN+1T2ZcKz9WIrv0x+eFGHzSUnXfXd5gL///T6XoJvr3D8/ztzz2fhtmXef7Vb8P33zBXmLTTveByr0nwBw==",
+ "version": "5.0.3",
+ "resolved": "https://registry.npmjs.org/stylelint-prettier/-/stylelint-prettier-5.0.3.tgz",
+ "integrity": "sha512-B6V0oa35ekRrKZlf+6+jA+i50C4GXJ7X1PPmoCqSUoXN6BrNF6NhqqhanvkLjqw2qgvrS0wjdpeC+Tn06KN3jw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17483,19 +17673,19 @@
}
},
"node_modules/stylelint-scss": {
- "version": "6.10.1",
- "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.10.1.tgz",
- "integrity": "sha512-CBqs0jecftIyhic6xba+4OvZUp4B0wNbX19w6Rq1fPo+lBDmTevk+olo8H7u/WQpTSDCDbBN4f3oocQurvXLTQ==",
+ "version": "6.11.1",
+ "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-6.11.1.tgz",
+ "integrity": "sha512-e4rYo0UY+BIMtGeGanghrvHTjcryxgZbyFxUedp8dLFqC4P70aawNdYjRrQxbnKhu3BNr4+lt5e/53tcKXiwFA==",
"dev": true,
"license": "MIT",
"dependencies": {
"css-tree": "^3.0.1",
"is-plain-object": "^5.0.0",
"known-css-properties": "^0.35.0",
- "mdn-data": "^2.14.0",
+ "mdn-data": "^2.15.0",
"postcss-media-query-parser": "^0.2.3",
"postcss-resolve-nested-selector": "^0.1.6",
- "postcss-selector-parser": "^7.0.0",
+ "postcss-selector-parser": "^7.1.0",
"postcss-value-parser": "^4.2.0"
},
"engines": {
@@ -17506,9 +17696,9 @@
}
},
"node_modules/stylelint-scss/node_modules/mdn-data": {
- "version": "2.15.0",
- "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.15.0.tgz",
- "integrity": "sha512-KIrS0lFPOqA4DgeO16vI5fkAsy8p++WBlbXtB5P1EQs8ubBgguAInNd1DnrCeTRfGchY0kgThgDOOIPyOLH2dQ==",
+ "version": "2.18.0",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.18.0.tgz",
+ "integrity": "sha512-gtCy1yim/vpHF/tq3B4Z43x3zKWpYeb4IM3d/Mf4oMYcNuoXOYEaqtoFlLHw9zd7+WNN3jNh6/WXyUrD3OIiwQ==",
"dev": true,
"license": "CC0-1.0"
},
@@ -17520,25 +17710,25 @@
"license": "MIT"
},
"node_modules/stylelint/node_modules/file-entry-cache": {
- "version": "10.0.5",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.0.5.tgz",
- "integrity": "sha512-umpQsJrBNsdMDgreSryMEXvJh66XeLtZUwA8Gj7rHGearGufUFv6rB/bcXRFsiGWw/VeSUgUofF4Rf2UKEOrTA==",
+ "version": "10.0.7",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.0.7.tgz",
+ "integrity": "sha512-txsf5fu3anp2ff3+gOJJzRImtrtm/oa9tYLN0iTuINZ++EyVR/nRrg2fKYwvG/pXDofcrvvb0scEbX3NyW/COw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "flat-cache": "^6.1.5"
+ "flat-cache": "^6.1.7"
}
},
"node_modules/stylelint/node_modules/flat-cache": {
- "version": "6.1.5",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.5.tgz",
- "integrity": "sha512-QR+2kN38f8nMfiIQ1LHYjuDEmZNZVjxuxY+HufbS3BW0EX01Q5OnH7iduOYRutmgiXb797HAKcXUeXrvRjjgSQ==",
+ "version": "6.1.7",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.7.tgz",
+ "integrity": "sha512-qwZ4xf1v1m7Rc9XiORly31YaChvKt6oNVHuqqZcoED/7O+ToyNVGobKsIAopY9ODcWpEDKEBAbrSOCBHtNQvew==",
"dev": true,
"license": "MIT",
"dependencies": {
- "cacheable": "^1.8.7",
- "flatted": "^3.3.2",
- "hookified": "^1.6.0"
+ "cacheable": "^1.8.9",
+ "flatted": "^3.3.3",
+ "hookified": "^1.7.1"
}
},
"node_modules/stylelint/node_modules/global-modules": {
@@ -17630,22 +17820,22 @@
}
},
"node_modules/supports-color": {
- "version": "9.4.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz",
- "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==",
+ "version": "10.0.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.0.0.tgz",
+ "integrity": "sha512-HRVVSbCCMbj7/kdWF9Q+bbckjBHLtHMEoJWlkmYzzdwhYMkjkOwubLM6t7NbWKjgKamGDrWL1++KrjUO1t9oAQ==",
"dev": true,
"license": "MIT",
"engines": {
- "node": ">=12"
+ "node": ">=18"
},
"funding": {
"url": "https://github.com/chalk/supports-color?sponsor=1"
}
},
"node_modules/supports-hyperlinks": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz",
- "integrity": "sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==",
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz",
+ "integrity": "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17656,7 +17846,7 @@
"node": ">=14.18"
},
"funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1"
}
},
"node_modules/supports-hyperlinks/node_modules/supports-color": {
@@ -17783,14 +17973,14 @@
"license": "MIT"
},
"node_modules/synckit": {
- "version": "0.9.2",
- "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz",
- "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==",
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.10.3.tgz",
+ "integrity": "sha512-R1urvuyiTaWfeCggqEvpDJwAlDVdsT9NM+IP//Tk2x7qHCkSvBk/fwFgw/TLAHzZlrAnnazMcRw0ZD8HlYFTEQ==",
"dev": true,
"license": "MIT",
"dependencies": {
- "@pkgr/core": "^0.1.0",
- "tslib": "^2.6.2"
+ "@pkgr/core": "^0.2.0",
+ "tslib": "^2.8.1"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
@@ -17804,6 +17994,7 @@
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.25.11.tgz",
"integrity": "sha512-jI01fn/t47rrLTQB0FTlMCC+5dYx8o0RRF+R4BPiUNsvg5OdY0s9DKMFmJGrx5SwMZQ4cag0Gl6v8oycso9b/g==",
"dev": true,
+ "license": "MIT",
"os": [
"darwin",
"linux",
@@ -17940,9 +18131,9 @@
}
},
"node_modules/terser": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz",
- "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==",
+ "version": "5.39.0",
+ "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz",
+ "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -17959,9 +18150,9 @@
}
},
"node_modules/terser-webpack-plugin": {
- "version": "5.3.11",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz",
- "integrity": "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==",
+ "version": "5.3.14",
+ "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz",
+ "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -17993,6 +18184,26 @@
}
}
},
+ "node_modules/terser-webpack-plugin/node_modules/schema-utils": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
+ "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.9",
+ "ajv": "^8.9.0",
+ "ajv-formats": "^2.1.1",
+ "ajv-keywords": "^5.1.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
"node_modules/terser/node_modules/commander": {
"version": "2.20.3",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
@@ -18015,6 +18226,7 @@
"resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-2.4.0.tgz",
"integrity": "sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=8"
},
@@ -18040,13 +18252,15 @@
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
"integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/tiny-invariant": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
"integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/tinyexec": {
"version": "0.3.2",
@@ -18056,17 +18270,20 @@
"license": "MIT"
},
"node_modules/tinyglobby": {
- "version": "0.2.10",
- "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.10.tgz",
- "integrity": "sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==",
+ "version": "0.2.12",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz",
+ "integrity": "sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==",
"dev": true,
"license": "MIT",
"dependencies": {
- "fdir": "^6.4.2",
+ "fdir": "^6.4.3",
"picomatch": "^4.0.2"
},
"engines": {
"node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
}
},
"node_modules/tinyglobby/node_modules/fdir": {
@@ -18098,22 +18315,22 @@
}
},
"node_modules/tldts": {
- "version": "6.1.74",
- "resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.74.tgz",
- "integrity": "sha512-O5vTZ1UmmEmrLl/59U9igitnSMlprALLaLgbv//dEvjobPT9vyURhHXKMCDLEhn3qxZFIkb9PwAfNYV0Ol7RPQ==",
+ "version": "6.1.85",
+ "resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.85.tgz",
+ "integrity": "sha512-gBdZ1RjCSevRPFix/hpaUWeak2/RNUZB4/8frF1r5uYMHjFptkiT0JXIebWvgI/0ZHXvxaUDDJshiA0j6GdL3w==",
"dev": true,
"license": "MIT",
"dependencies": {
- "tldts-core": "^6.1.74"
+ "tldts-core": "^6.1.85"
},
"bin": {
"tldts": "bin/cli.js"
}
},
"node_modules/tldts-core": {
- "version": "6.1.74",
- "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.74.tgz",
- "integrity": "sha512-gTwtY6L2GfuxiL4CWpLknv9JDYYqBvKCk/BT5uAaAvCA0s6pzX7lr2IrkQZSUlnSjRHIjTl8ZwKCVXJ7XNRWYw==",
+ "version": "6.1.85",
+ "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.85.tgz",
+ "integrity": "sha512-DTjUVvxckL1fIoPSb3KE7ISNtkWSawZdpfxGxwiIrZoO6EbHVDXXUIlIuWympPaeS+BLGyggozX/HTMsRAdsoA==",
"dev": true,
"license": "MIT"
},
@@ -18167,9 +18384,9 @@
}
},
"node_modules/tough-cookie": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.0.tgz",
- "integrity": "sha512-rvZUv+7MoBYTiDmFPBrhL7Ujx9Sk+q9wwm22x8c8T5IJaR+Wsyc7TNxbVxo84kZoRJZZMazowFLqpankBEQrGg==",
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.2.tgz",
+ "integrity": "sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -18180,9 +18397,9 @@
}
},
"node_modules/tr46": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz",
- "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==",
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.0.tgz",
+ "integrity": "sha512-IUWnUK7ADYR5Sl1fZlO1INDUhVhatWl7BtJWsIhwJ0UAK7ilzzIa8uIqOO/aYVWHZPJkKbEL+362wrzoeRF7bw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -18275,18 +18492,6 @@
"node": "*"
}
},
- "node_modules/type-fest": {
- "version": "2.19.0",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
- "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
- "dev": true,
- "engines": {
- "node": ">=12.20"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/typed-array-buffer": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
@@ -18366,9 +18571,9 @@
}
},
"node_modules/typescript": {
- "version": "5.7.3",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
- "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==",
+ "version": "5.8.2",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
+ "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
"dev": true,
"license": "Apache-2.0",
"peer": true,
@@ -18446,9 +18651,9 @@
}
},
"node_modules/undici": {
- "version": "6.21.1",
- "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.1.tgz",
- "integrity": "sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ==",
+ "version": "6.21.2",
+ "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.2.tgz",
+ "integrity": "sha512-uROZWze0R0itiAKVPsYhFov9LxrPMHLMEQFszeI2gCN6bnIIZ8twzBCJcN2LJrBBLfrP0t1FW0g+JmKVl8Vk1g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -18524,14 +18729,15 @@
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
"integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">= 4.0.0"
}
},
"node_modules/update-browserslist-db": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz",
- "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
+ "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
"dev": true,
"funding": [
{
@@ -18584,6 +18790,7 @@
"resolved": "https://registry.npmjs.org/url/-/url-0.11.4.tgz",
"integrity": "sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"punycode": "^1.4.1",
"qs": "^6.12.3"
@@ -18597,6 +18804,7 @@
"resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz",
"integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"inherits": "^2.0.3",
"is-arguments": "^1.0.4",
@@ -18616,7 +18824,8 @@
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz",
"integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/v8flags": {
"version": "4.0.1",
@@ -18748,15 +18957,15 @@
}
},
"node_modules/vite": {
- "version": "6.0.11",
- "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.11.tgz",
- "integrity": "sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==",
+ "version": "6.2.3",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.3.tgz",
+ "integrity": "sha512-IzwM54g4y9JA/xAeBPNaDXiBF8Jsgl3VBQ2YQ/wOY6fyW3xMdSoltIV3Bo59DErdqdE6RxUfv8W69DvUorE4Eg==",
"dev": true,
"license": "MIT",
"dependencies": {
- "esbuild": "^0.24.2",
- "postcss": "^8.4.49",
- "rollup": "^4.23.0"
+ "esbuild": "^0.25.0",
+ "postcss": "^8.5.3",
+ "rollup": "^4.30.1"
},
"bin": {
"vite": "bin/vite.js"
@@ -18868,6 +19077,7 @@
"resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz",
"integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@types/eslint-scope": "^3.7.7",
"@types/estree": "^1.0.6",
@@ -18967,6 +19177,7 @@
"resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.3.tgz",
"integrity": "sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"colorette": "^2.0.10",
"memfs": "^3.4.12",
@@ -18990,11 +19201,32 @@
}
}
},
+ "node_modules/webpack-dev-middleware/node_modules/schema-utils": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
+ "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.9",
+ "ajv": "^8.9.0",
+ "ajv-formats": "^2.1.1",
+ "ajv-keywords": "^5.1.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
"node_modules/webpack-hot-middleware": {
"version": "2.26.1",
"resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.26.1.tgz",
"integrity": "sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ansi-html-community": "0.0.8",
"html-entities": "^2.1.0",
@@ -19030,7 +19262,8 @@
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz",
"integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/webpack/node_modules/eslint-scope": {
"version": "5.1.1",
@@ -19056,6 +19289,26 @@
"node": ">=4.0"
}
},
+ "node_modules/webpack/node_modules/schema-utils": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
+ "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/json-schema": "^7.0.9",
+ "ajv": "^8.9.0",
+ "ajv-formats": "^2.1.1",
+ "ajv-keywords": "^5.1.0"
+ },
+ "engines": {
+ "node": ">= 10.13.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
"node_modules/whatwg-encoding": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
@@ -19093,13 +19346,13 @@
}
},
"node_modules/whatwg-url": {
- "version": "14.1.0",
- "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.1.0.tgz",
- "integrity": "sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==",
+ "version": "14.2.0",
+ "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz",
+ "integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==",
"dev": true,
"license": "MIT",
"dependencies": {
- "tr46": "^5.0.0",
+ "tr46": "^5.1.0",
"webidl-conversions": "^7.0.0"
},
"engines": {
@@ -19190,16 +19443,17 @@
}
},
"node_modules/which-typed-array": {
- "version": "1.1.18",
- "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz",
- "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==",
+ "version": "1.1.19",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz",
+ "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==",
"dev": true,
"license": "MIT",
"dependencies": {
"available-typed-arrays": "^1.0.7",
"call-bind": "^1.0.8",
- "call-bound": "^1.0.3",
- "for-each": "^0.3.3",
+ "call-bound": "^1.0.4",
+ "for-each": "^0.3.5",
+ "get-proto": "^1.0.1",
"gopd": "^1.2.0",
"has-tostringtag": "^1.0.2"
},
@@ -19500,9 +19754,9 @@
}
},
"node_modules/ws": {
- "version": "8.18.0",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz",
- "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",
+ "version": "8.18.1",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz",
+ "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -19609,6 +19863,7 @@
"resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
"integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"buffer-crc32": "~0.2.3",
"fd-slicer": "~1.1.0"
@@ -19628,9 +19883,9 @@
}
},
"node_modules/zod": {
- "version": "3.24.1",
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz",
- "integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==",
+ "version": "3.24.2",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz",
+ "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==",
"dev": true,
"license": "MIT",
"funding": {
diff --git a/package.json b/package.json
index 3f89c5a79f..0152b7976b 100644
--- a/package.json
+++ b/package.json
@@ -68,29 +68,29 @@
"prerelease:end": "changeset pre exit || :"
},
"devDependencies": {
- "@babel/cli": "^7.26.4",
- "@babel/core": "^7.26.9",
+ "@babel/cli": "^7.27.0",
+ "@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.28.1",
- "@commitlint/cli": "^19.7.1",
- "@commitlint/config-conventional": "^19.7.1",
+ "@commitlint/cli": "^19.8.0",
+ "@commitlint/config-conventional": "^19.8.0",
"@docsearch/js": "^3.9.0",
- "@ebay/browserslist-config": "^2.10.0",
+ "@ebay/browserslist-config": "^2.11.0",
"@floating-ui/dom": "^1.6.13",
- "@marko/run": "^0.5.16",
- "@marko/run-adapter-static": "^0.2.1",
+ "@marko/run": "^0.6.2",
+ "@marko/run-adapter-static": "^1.0.1",
"@percy/cli": "^1.30.7",
"@percy/storybook": "^6.0.3",
- "@storybook/html": "^8.5.8",
- "@storybook/html-webpack5": "^8.5.8",
- "autoprefixer": "^10.4.20",
- "babel-loader": "^9.2.1",
+ "@storybook/html": "^8.6.11",
+ "@storybook/html-webpack5": "^8.6.11",
+ "autoprefixer": "^10.4.21",
+ "babel-loader": "^10.0.0",
"btoa": "^1",
"clean-css": "^5",
"cross-env": "^7",
"cssnano": "^7.0.6",
- "eslint": "^9.21.0",
+ "eslint": "^9.23.0",
"eslint-config-ebay": "^1",
"eslint-config-prettier": "^10",
"eslint-plugin-prettier": "^5",
@@ -98,9 +98,9 @@
"gulp": "^5",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
- "lint-staged": "^15.4.3",
+ "lint-staged": "^15.5.0",
"makeup-alert-dialog": "~0.3.4",
- "makeup-combobox": "~0.4.8",
+ "makeup-combobox": "~0.4.9",
"makeup-confirm-dialog": "~0.3.4",
"makeup-dialog": "~0.5.4",
"makeup-dialog-button": "~0.4.4",
@@ -111,8 +111,8 @@
"makeup-input-dialog": "0.2.4",
"makeup-key-emitter": "~0.4.3",
"makeup-lightbox-dialog": "0.2.4",
- "makeup-listbox": "~0.4.5",
- "makeup-listbox-button": "~0.5.7",
+ "makeup-listbox": "~0.4.6",
+ "makeup-listbox-button": "~0.5.8",
"makeup-menu": "~0.4.4",
"makeup-menu-button": "~0.4.6",
"makeup-modal": "~0.5.4",
@@ -122,25 +122,25 @@
"makeup-snackbar-dialog": "0.2.4",
"makeup-switch": "~0.3.3",
"makeup-toast-dialog": "0.2.4",
- "marko": "^5.37.16",
+ "marko": "^5.37.24",
"mkdirp": "^3",
"ncp": "^2",
"npm-run-all": "^4",
"postcss": "^8.5.3",
- "postcss-cli": "^11.0.0",
+ "postcss-cli": "^11.0.1",
"postcss-comment": "^2.0.0",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"postcss-mixins": "^11.0.3",
"postcss-nested": "^7.0.2",
"postcss-simple-vars": "^7.0.1",
- "prettier": "^3.5.2",
- "prismjs": "^1.29.0",
+ "prettier": "^3.5.3",
+ "prismjs": "^1.30.0",
"rimraf": "^6",
- "sass": "^1.85.0",
+ "sass": "^1.86.0",
"sass-loader": "^16.0.5",
- "storybook": "^8.5.8",
- "stylelint": "^16.14.1",
+ "storybook": "^8.6.11",
+ "stylelint": "^16.17.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard": "^37",
"stylelint-config-standard-scss": "^14.0.0",
diff --git a/src/components/about.marko b/src/components/about.marko
index fd8cb7337d..dce6be0610 100644
--- a/src/components/about.marko
+++ b/src/components/about.marko
@@ -1,7 +1,7 @@
About
Skin is a pure CSS framework, created by a team of passionate frontend engineers at eBay.
-
Skin's default stylesheet represents eBay Evo - eBay's evolved brand and design system - but Skin also offers token-based configuration to enable non-eBay branded experiences.
+
Skin's default stylesheet represents eBay Evo - eBay's evolved brand and design system - but Skin also offers token-based configuration to enable non-eBay branded experiences.
Skin adheres to the following core principals:
Accessible
diff --git a/src/components/anchor.marko b/src/components/anchor.marko
deleted file mode 100644
index bd9b58ab04..0000000000
--- a/src/components/anchor.marko
+++ /dev/null
@@ -1,5 +0,0 @@
-static const basePath = import.meta.env.BASE_URL;
-
-
- <${input.renderBody}/>
-
\ No newline at end of file
diff --git a/src/components/components-list.marko b/src/components/components-list.marko
index 24f08184d4..9fd58a7845 100644
--- a/src/components/components-list.marko
+++ b/src/components/components-list.marko
@@ -5,7 +5,7 @@ import path from 'path';
$ const name = componentName.replace(/-([a-z])/g, function (g) { return ` ${g[1].toUpperCase()}`; });
$ const properName = name.charAt(0).toUpperCase() + name.slice(1);
- ${properName}
+ ${properName}
diff --git a/src/components/data/icons.json b/src/components/data/icons.json
index a9f817fcd2..4839be3113 100644
--- a/src/components/data/icons.json
+++ b/src/components/data/icons.json
@@ -3,21 +3,21 @@
"prefix": "icon",
"largeDocs": ["ebay-money-back-guarantee-logo-16-colored"],
"list": [
+ {
+ "name": "add-image-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ { "name": "add-12", "size": "12", "height": "12", "width": "12" },
{ "name": "add-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "add-24", "size": "24", "height": "24", "width": "24" },
{
"name": "afterpay-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
- {
- "name": "afterpay-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
- { "name": "ai-16", "size": "16", "height": "16", "width": "16" },
- { "name": "add-12", "size": "12", "height": "12", "width": "12" },
{
"name": "afterpay-18-colored",
"size": "18-colored",
@@ -31,19 +31,14 @@
"width": "50"
},
{
- "name": "add-image-24",
- "size": "24",
+ "name": "afterpay-24-colored",
+ "size": "24-colored",
"height": "24",
- "width": "24"
- },
- {
- "name": "ai-filled-20",
- "size": "20",
- "height": "20",
- "width": "20"
+ "width": "38"
},
+ { "name": "ai-20", "size": "20", "height": "20", "width": "20" },
+ { "name": "ai-16", "size": "16", "height": "16", "width": "16" },
{ "name": "ai-24", "size": "24", "height": "24", "width": "24" },
- { "name": "add-24", "size": "24", "height": "24", "width": "24" },
{
"name": "ai-filled-16",
"size": "16",
@@ -56,7 +51,18 @@
"height": "24",
"width": "24"
},
- { "name": "ai-20", "size": "20", "height": "20", "width": "20" },
+ {
+ "name": "ai-filled-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
+ {
+ "name": "ai-spectrum-16-colored",
+ "size": "16-colored",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "ai-spectrum-20-colored",
"size": "20-colored",
@@ -69,6 +75,12 @@
"height": "24",
"width": "24"
},
+ {
+ "name": "ai-spectrum-filled-16-colored",
+ "size": "16-colored",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "ai-spectrum-filled-20-colored",
"size": "20-colored",
@@ -76,31 +88,31 @@
"width": "20"
},
{
- "name": "ai-tools-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "ai-spectrum-filled-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "24"
},
{
- "name": "ai-spectrum-thin-16-colored",
- "size": "16-colored",
+ "name": "ai-thin-16",
+ "size": "16",
"height": "16",
"width": "16"
},
{
- "name": "ai-spectrum-filled-16-colored",
+ "name": "ai-spectrum-thin-16-colored",
"size": "16-colored",
"height": "16",
"width": "16"
},
{
- "name": "ai-spectrum-16-colored",
- "size": "16-colored",
- "height": "16",
- "width": "16"
+ "name": "ai-tools-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
},
{
- "name": "ai-thin-16",
+ "name": "ai-tools-16",
"size": "16",
"height": "16",
"width": "16"
@@ -111,60 +123,36 @@
"height": "12",
"width": "20"
},
- {
- "name": "ai-tools-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- {
- "name": "alipay-cn-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
- },
{
"name": "ai-tools-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "ai-spectrum-filled-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "24"
- },
{
"name": "alipay-cn-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
+ {
+ "name": "alipay-cn-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
{
"name": "alipay-cn-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
- {
- "name": "alipay-hk-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
- },
{
"name": "alipay-hk-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
- {
- "name": "amex-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
- },
{
"name": "alipay-hk-18-colored",
"size": "18-colored",
@@ -177,9 +165,20 @@
"height": "32",
"width": "50"
},
- { "name": "apple-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "apple-pay-18-colored",
+ "name": "alipay-hk-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
+ },
+ {
+ "name": "amex-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
+ },
+ {
+ "name": "amex-18-colored",
"size": "18-colored",
"height": "18",
"width": "30"
@@ -190,12 +189,19 @@
"height": "24",
"width": "38"
},
+ { "name": "apple-24", "size": "24", "height": "24", "width": "24" },
{
"name": "amex-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
+ {
+ "name": "apple-pay-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
+ },
{
"name": "apple-pay-24-colored",
"size": "24-colored",
@@ -215,13 +221,25 @@
"width": "50"
},
{
- "name": "apple-pay-12-colored",
- "size": "12-colored",
+ "name": "archive-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "arrow-left-12",
+ "size": "12",
"height": "12",
- "width": "20"
+ "width": "12"
},
{
- "name": "archive-24",
+ "name": "apple-pay-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
+ {
+ "name": "arrow-left-24",
"size": "24",
"height": "24",
"width": "24"
@@ -232,18 +250,6 @@
"height": "20",
"width": "20"
},
- {
- "name": "arrow-left-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
- {
- "name": "amex-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
- },
{
"name": "arrow-right-16",
"size": "16",
@@ -256,36 +262,12 @@
"height": "12",
"width": "12"
},
- {
- "name": "arrow-left-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- {
- "name": "arrows-3d-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{
"name": "arrow-right-20",
"size": "20",
"height": "20",
"width": "20"
},
- {
- "name": "arrows-3d-filled-64-colored",
- "size": "64-colored",
- "height": "64",
- "width": "64"
- },
- {
- "name": "arrows-expand-16",
- "size": "16",
- "height": "24",
- "width": "24"
- },
{
"name": "arrow-right-24",
"size": "24",
@@ -293,60 +275,59 @@
"width": "24"
},
{
- "name": "article-24",
+ "name": "arrows-3d-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "article-16",
+ "name": "arrow-left-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "arrows-3d-16",
+ "name": "arrows-expand-16",
"size": "16",
- "height": "16",
- "width": "16"
+ "height": "24",
+ "width": "24"
},
{
- "name": "attention-16",
+ "name": "arrows-3d-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "arrow-left-12",
- "size": "12",
- "height": "12",
- "width": "12"
+ "name": "arrows-3d-filled-64-colored",
+ "size": "64-colored",
+ "height": "64",
+ "width": "64"
},
{
- "name": "attention-filled-24",
+ "name": "arrows-expand-24",
"size": "24",
- "height": "24",
- "width": "24"
+ "height": "16",
+ "width": "16"
},
{
- "name": "attention-filled-16",
+ "name": "attention-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "arrows-expand-24",
+ "name": "article-24",
"size": "24",
- "height": "16",
- "width": "16"
+ "height": "24",
+ "width": "24"
},
{
- "name": "audio-high-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "attention-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
- { "name": "atv-24", "size": "24", "height": "24", "width": "24" },
{
"name": "attention-64",
"size": "64",
@@ -354,59 +335,78 @@
"width": "64"
},
{
- "name": "audio-low-16",
+ "name": "article-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "authenticity-guarantee-24",
+ "name": "attention-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "authenticity-guarantee-16",
+ "name": "attention-filled-16",
"size": "16",
"height": "16",
"width": "16"
},
- {
- "name": "attention-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{ "name": "atv-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "atv-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "audio-off-16",
+ "name": "audio-low-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "auto-adjust-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "audio-high-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
- "name": "authenticity-guarantee-filled-24-colored",
- "size": "24-colored",
+ "name": "authenticity-guarantee-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "audio-off-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "authenticity-guarantee-filled-16-colored",
+ "size": "16-colored",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "authenticity-guarantee-filled-24-colored",
+ "size": "24-colored",
"height": "24",
"width": "24"
},
{
- "name": "background-removal-24",
+ "name": "background-removal-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "auto-adjust-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "authenticity-guarantee-filled-16-colored",
- "size": "16-colored",
- "height": "16",
- "width": "16"
+ "name": "authenticity-guarantee-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
"name": "bancontact-12-colored",
@@ -414,6 +414,12 @@
"height": "12",
"width": "20"
},
+ {
+ "name": "bancontact-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
+ },
{
"name": "bancontact-18-colored",
"size": "18-colored",
@@ -427,14 +433,15 @@
"width": "38"
},
{ "name": "bank-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "bank-64", "size": "64", "height": "64", "width": "64" },
{
- "name": "background-removal-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "bank-account-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
},
{
- "name": "bancontact-32-colored",
+ "name": "bank-account-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
@@ -445,20 +452,13 @@
"height": "24",
"width": "38"
},
- { "name": "bank-64", "size": "64", "height": "64", "width": "64" },
{
"name": "bank-account-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
- {
- "name": "bank-account-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
- },
- { "name": "bids-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "bank-24", "size": "24", "height": "24", "width": "24" },
{
"name": "bar-chart-24",
"size": "24",
@@ -466,60 +466,66 @@
"width": "24"
},
{
- "name": "bank-account-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
+ "name": "background-removal-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
+ { "name": "bids-24", "size": "24", "height": "24", "width": "24" },
{ "name": "bids-64", "size": "64", "height": "64", "width": "64" },
- { "name": "boat-24", "size": "24", "height": "24", "width": "24" },
- { "name": "bank-24", "size": "24", "height": "24", "width": "24" },
{
"name": "bar-chart-16",
"size": "16",
"height": "16",
"width": "16"
},
+ { "name": "bids-16", "size": "16", "height": "16", "width": "16" },
{ "name": "book-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "boat-16", "size": "16", "height": "16", "width": "16" },
{ "name": "book-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "boat-24", "size": "24", "height": "24", "width": "24" },
{
"name": "bookmark-24",
"size": "24",
"height": "24",
"width": "24"
},
+ {
+ "name": "bookmark-filled-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "bookmark-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "boat-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "bookmark-filled-16",
+ "name": "brightness-16",
"size": "16",
"height": "16",
"width": "16"
},
+ {
+ "name": "brand-authorized-seller-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "brightness-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "bids-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "brightness-16",
+ "name": "brand-authorized-seller-16",
"size": "16",
"height": "16",
"width": "16"
},
- {
- "name": "bookmark-filled-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{
"name": "brightness-20",
"size": "20",
@@ -527,22 +533,22 @@
"width": "20"
},
{
- "name": "camera-16",
+ "name": "calendar-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "brand-authorized-seller-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "camera-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
- "name": "calendar-64",
- "size": "64",
- "height": "64",
- "width": "64"
+ "name": "bookmark-filled-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
"name": "calendar-24",
@@ -550,12 +556,6 @@
"height": "24",
"width": "24"
},
- {
- "name": "brand-authorized-seller-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "camera-24",
"size": "24",
@@ -563,18 +563,18 @@
"width": "24"
},
{
- "name": "camera-64",
- "size": "64",
- "height": "64",
- "width": "64"
+ "name": "car-brake-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
+ { "name": "car-16", "size": "16", "height": "16", "width": "16" },
{
"name": "car-brake-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "car-16", "size": "16", "height": "16", "width": "16" },
{
"name": "carnet-12-colored",
"size": "12-colored",
@@ -582,23 +582,22 @@
"width": "20"
},
{
- "name": "calendar-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "carnet-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
},
{
- "name": "car-brake-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "calendar-64",
+ "size": "64",
+ "height": "64",
+ "width": "64"
},
- { "name": "car-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "carnet-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
+ "name": "camera-64",
+ "size": "64",
+ "height": "64",
+ "width": "64"
},
{
"name": "carnet-24-colored",
@@ -606,52 +605,29 @@
"height": "24",
"width": "38"
},
- { "name": "cart-64", "size": "64", "height": "64", "width": "64" },
{ "name": "cart-16", "size": "16", "height": "16", "width": "16" },
- { "name": "cart-24", "size": "24", "height": "24", "width": "24" },
- {
- "name": "carryon-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- {
- "name": "carnet-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
- },
- { "name": "cart-20", "size": "20", "height": "20", "width": "20" },
+ { "name": "car-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "cashapp-18-colored",
+ "name": "carnet-18-colored",
"size": "18-colored",
"height": "18",
"width": "30"
},
+ { "name": "cart-20", "size": "20", "height": "20", "width": "20" },
+ { "name": "cart-64", "size": "64", "height": "64", "width": "64" },
{
"name": "cashapp-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
- {
- "name": "cashapp-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
- {
- "name": "categories-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{
"name": "categories-16",
"size": "16",
"height": "16",
"width": "16"
},
+ { "name": "cart-24", "size": "24", "height": "24", "width": "24" },
{
"name": "cashapp-32-colored",
"size": "32-colored",
@@ -659,10 +635,16 @@
"width": "50"
},
{
- "name": "cb-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
+ "name": "categories-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "cashapp-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
},
{
"name": "cb-18-colored",
@@ -671,18 +653,24 @@
"width": "30"
},
{
- "name": "cb-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
+ "name": "cb-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
},
+ { "name": "ccd-charger-included", "height": "78", "width": "58" },
{
"name": "cb-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
- { "name": "ccd-charger-included", "height": "78", "width": "58" },
+ {
+ "name": "cb-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
+ },
{
"name": "ccd-charger-not-included",
"height": "78",
@@ -690,10 +678,10 @@
},
{ "name": "ccd-top", "height": "25", "width": "35" },
{
- "name": "certified-recycled-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "carryon-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
"name": "certified-recycled-24",
@@ -702,24 +690,36 @@
"width": "24"
},
{ "name": "chat-16", "size": "16", "height": "16", "width": "16" },
- { "name": "chair-16", "size": "16", "height": "16", "width": "16" },
+ {
+ "name": "certified-recycled-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{ "name": "chair-24", "size": "24", "height": "24", "width": "24" },
{ "name": "chat-24", "size": "24", "height": "24", "width": "24" },
+ {
+ "name": "cashapp-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
+ { "name": "chair-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "chat-64", "size": "64", "height": "64", "width": "64" },
{
"name": "check-in-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "chat-64", "size": "64", "height": "64", "width": "64" },
{
- "name": "checkbox-mixed-24",
+ "name": "checkmark-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "checkmark-24",
+ "name": "checkbox-mixed-24",
"size": "24",
"height": "24",
"width": "24"
@@ -730,12 +730,6 @@
"height": "12",
"width": "12"
},
- {
- "name": "chevron-down-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "chevron-down-20",
"size": "20",
@@ -743,10 +737,16 @@
"width": "20"
},
{
- "name": "chevron-down-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "chevron-down-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "chevron-left-12",
+ "size": "12",
+ "height": "12",
+ "width": "12"
},
{
"name": "chevron-left-20",
@@ -754,6 +754,12 @@
"height": "20",
"width": "20"
},
+ {
+ "name": "chevron-left-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "chevron-left-16",
"size": "16",
@@ -761,13 +767,19 @@
"width": "16"
},
{
- "name": "chevron-left-12",
+ "name": "chevron-right-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "chevron-up-12",
"size": "12",
"height": "12",
"width": "12"
},
{
- "name": "chevron-right-16",
+ "name": "chevron-up-16",
"size": "16",
"height": "16",
"width": "16"
@@ -785,11 +797,18 @@
"width": "12"
},
{
- "name": "chevron-left-24",
+ "name": "chevron-up-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
+ {
+ "name": "chevron-up-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "clear-16", "size": "16", "height": "16", "width": "16" },
{
"name": "chinese-coin-16",
"size": "16",
@@ -802,57 +821,44 @@
"height": "24",
"width": "24"
},
+ { "name": "clear-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "clear-20", "size": "20", "height": "20", "width": "20" },
+ { "name": "clock-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "chevron-right-20",
- "size": "20",
- "height": "20",
- "width": "20"
+ "name": "click-to-call-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
+ { "name": "clock-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "chevron-up-16",
+ "name": "click-to-call-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "chevron-up-24",
+ "name": "clock-fast-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "clear-20", "size": "20", "height": "20", "width": "20" },
+ { "name": "close-12", "size": "12", "height": "12", "width": "13" },
{
- "name": "chevron-up-20",
+ "name": "chevron-right-20",
"size": "20",
"height": "20",
"width": "20"
},
+ { "name": "close-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "clock-64", "size": "64", "height": "64", "width": "64" },
+ { "name": "close-20", "size": "20", "height": "20", "width": "20" },
{
- "name": "chevron-up-12",
- "size": "12",
- "height": "12",
- "width": "12"
- },
- {
- "name": "click-to-call-16",
+ "name": "closed-caption-filled-16",
"size": "16",
"height": "16",
- "width": "16"
- },
- { "name": "clear-24", "size": "24", "height": "24", "width": "24" },
- { "name": "clear-16", "size": "16", "height": "16", "width": "16" },
- {
- "name": "click-to-call-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "width": "20"
},
- { "name": "clock-16", "size": "16", "height": "16", "width": "16" },
- { "name": "close-16", "size": "16", "height": "16", "width": "16" },
- { "name": "clock-64", "size": "64", "height": "64", "width": "64" },
- { "name": "close-12", "size": "12", "height": "12", "width": "13" },
- { "name": "close-24", "size": "24", "height": "24", "width": "24" },
- { "name": "clock-24", "size": "24", "height": "24", "width": "24" },
{
"name": "closed-caption-16",
"size": "16",
@@ -865,25 +871,24 @@
"height": "16",
"width": "16"
},
- {
- "name": "collections-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
+ { "name": "close-24", "size": "24", "height": "24", "width": "24" },
{
"name": "coin-battery-48",
"size": "48",
"height": "48",
"width": "48"
},
- { "name": "close-20", "size": "20", "height": "20", "width": "20" },
- { "name": "coin-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "closed-caption-filled-16",
+ "name": "collections-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "clock-fast-16",
"size": "16",
"height": "16",
- "width": "20"
+ "width": "16"
},
{
"name": "condensed-grid-24",
@@ -892,10 +897,10 @@
"width": "24"
},
{
- "name": "confirmation-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "condensed-grid-filled-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
"name": "confirmation-24",
@@ -903,6 +908,12 @@
"height": "24",
"width": "24"
},
+ {
+ "name": "confirmation-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "confirmation-64",
"size": "64",
@@ -915,32 +926,46 @@
"height": "16",
"width": "16"
},
+ {
+ "name": "confirmation-filled-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "confirmation-filled-12",
+ "size": "12",
+ "height": "12",
+ "width": "12"
+ },
{
"name": "contract-16",
"size": "16",
"height": "16",
"width": "16"
},
+ { "name": "coin-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "copy-16", "size": "16", "height": "16", "width": "16" },
{
"name": "contrast-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "copy-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "confirmation-filled-24",
+ "name": "credit-card-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "copy-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "crop-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "credit-card-16",
+ "name": "customize-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "copy-24", "size": "24", "height": "24", "width": "24" },
{
"name": "credit-card-64",
"size": "64",
@@ -948,16 +973,10 @@
"width": "64"
},
{
- "name": "credit-card-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- {
- "name": "confirmation-filled-12",
- "size": "12",
- "height": "12",
- "width": "12"
+ "name": "credit-card-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
"name": "customize-24",
@@ -966,12 +985,11 @@
"width": "24"
},
{
- "name": "customize-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "delete-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
},
- { "name": "crop-24", "size": "24", "height": "24", "width": "24" },
{
"name": "delete-16",
"size": "16",
@@ -979,46 +997,40 @@
"width": "16"
},
{
- "name": "density-compact-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
- {
- "name": "density-default-24",
+ "name": "delete-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "condensed-grid-filled-24",
+ "name": "density-compact-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "density-relaxed-16",
+ "name": "density-default-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "delete-20",
- "size": "20",
- "height": "20",
- "width": "20"
+ "name": "density-default-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
- "name": "density-default-16",
+ "name": "density-compact-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "density-relaxed-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "density-relaxed-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
"name": "diamond-24",
@@ -1027,35 +1039,17 @@
"width": "24"
},
{
- "name": "diners-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
+ "name": "diamond-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
- "name": "density-compact-24",
+ "name": "density-relaxed-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "diners-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
- {
- "name": "diners-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
- },
- {
- "name": "diamond-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "diners-18-colored",
"size": "18-colored",
@@ -1063,34 +1057,28 @@
"width": "30"
},
{
- "name": "direct-debit-12-colored",
+ "name": "diners-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
+ },
+ {
+ "name": "diners-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
{
- "name": "direct-debit-32-colored",
+ "name": "diners-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
{
- "name": "direct-from-brand-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
- {
- "name": "direct-debit-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
- },
- {
- "name": "delete-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "direct-debit-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
},
{
"name": "direct-debit-24-colored",
@@ -1105,16 +1093,28 @@
"width": "24"
},
{
- "name": "discover-12-colored",
+ "name": "direct-debit-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
{
- "name": "direct-from-brand-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "direct-debit-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
+ {
+ "name": "direct-from-brand-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "direct-from-brand-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
"name": "discount-16",
@@ -1122,6 +1122,18 @@
"height": "16",
"width": "16"
},
+ {
+ "name": "discover-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
+ },
+ {
+ "name": "dollar-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "discover-18-colored",
"size": "18-colored",
@@ -1141,7 +1153,7 @@
"width": "50"
},
{
- "name": "dollar-24",
+ "name": "discount-24",
"size": "24",
"height": "24",
"width": "24"
@@ -1152,12 +1164,6 @@
"height": "16",
"width": "16"
},
- {
- "name": "dollar-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "download-20",
"size": "20",
@@ -1165,29 +1171,35 @@
"width": "20"
},
{
- "name": "discount-24",
+ "name": "drag-drop-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "download-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "download-24",
+ "name": "dollar-24",
"size": "24",
"height": "24",
"width": "24"
},
+ {
+ "name": "ebay-balance-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
{
"name": "ebay-balance-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
- {
- "name": "drag-drop-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "drag-drop-24",
"size": "24",
@@ -1201,13 +1213,25 @@
"width": "38"
},
{
- "name": "ebay-balance-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
+ "name": "ebay-for-charity-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
- "name": "ebay-for-charity-24",
+ "name": "ebay-bucks-logo-16-colored",
+ "size": "16-colored",
+ "height": "16",
+ "width": "48"
+ },
+ {
+ "name": "ebay-balance-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
+ },
+ {
+ "name": "ebay-international-shipping-24",
"size": "24",
"height": "24",
"width": "24"
@@ -1218,6 +1242,24 @@
"height": "16",
"width": "16"
},
+ {
+ "name": "ebay-for-charity-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "ebay-international-shipping-64",
+ "size": "64",
+ "height": "64",
+ "width": "64"
+ },
+ {
+ "name": "ebay-live-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "ebay-mastercard-12-colored",
"size": "12-colored",
@@ -1225,10 +1267,10 @@
"width": "20"
},
{
- "name": "ebay-live-16",
- "size": "16",
+ "name": "ebay-logo-16-colored",
+ "size": "16-colored",
"height": "16",
- "width": "16"
+ "width": "40"
},
{
"name": "ebay-mastercard-18-colored",
@@ -1237,41 +1279,35 @@
"width": "30"
},
{
- "name": "ebay-bucks-logo-16-colored",
- "size": "16-colored",
+ "name": "ebay-plus-16",
+ "size": "16",
"height": "16",
- "width": "48"
+ "width": "16"
},
{
- "name": "ebay-international-shipping-24",
+ "name": "ebay-plus-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "ebay-mastercard-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
+ "name": "ebay-live-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
- "name": "ebay-balance-32-colored",
+ "name": "ebay-mastercard-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
{
- "name": "ebay-live-24",
+ "name": "ebay-preloved-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "ebay-for-charity-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "ebay-plus-logo-16-colored",
"size": "16-colored",
@@ -1279,34 +1315,22 @@
"width": "58"
},
{
- "name": "ebay-money-back-guarantee-logo-16-colored",
- "size": "16-colored",
- "height": "16",
- "width": "147"
- },
- {
- "name": "ebay-mastercard-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
- },
- {
- "name": "ebay-plus-24",
- "size": "24",
+ "name": "ebay-mastercard-24-colored",
+ "size": "24-colored",
"height": "24",
- "width": "24"
+ "width": "38"
},
{
- "name": "ebay-plus-16",
+ "name": "ebay-preloved-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "ebay-preloved-16",
- "size": "16",
+ "name": "ebay-plus-logo-dark-16-colored",
+ "size": "16-colored",
"height": "16",
- "width": "16"
+ "width": "58"
},
{
"name": "ebay-refurbished-16",
@@ -1314,18 +1338,6 @@
"height": "16",
"width": "16"
},
- {
- "name": "eftpos-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
- },
- {
- "name": "ebay-preloved-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{
"name": "ebay-refurbished-24",
"size": "24",
@@ -1333,55 +1345,43 @@
"width": "24"
},
{
- "name": "eftpos-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
- },
- {
- "name": "eftpos-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
+ "name": "ebay-money-back-guarantee-logo-16-colored",
+ "size": "16-colored",
+ "height": "16",
+ "width": "147"
},
{
- "name": "elo-24-colored",
+ "name": "eftpos-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
{
- "name": "elo-12-colored",
+ "name": "eftpos-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
{
- "name": "eftpos-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
- {
- "name": "elo-32-colored",
+ "name": "eftpos-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
{
- "name": "ebay-international-shipping-64",
- "size": "64",
- "height": "64",
- "width": "64"
- },
- {
- "name": "escrow-card-12-colored",
+ "name": "elo-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
{
- "name": "escrow-card-24-colored",
+ "name": "elo-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
+ {
+ "name": "elo-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
@@ -1393,19 +1393,31 @@
"width": "30"
},
{
- "name": "escrow-card-32-colored",
+ "name": "elo-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
- { "name": "euro-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "elo-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
+ "name": "escrow-card-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
},
+ { "name": "euro-16", "size": "16", "height": "16", "width": "16" },
{ "name": "euro-24", "size": "24", "height": "24", "width": "24" },
+ {
+ "name": "escrow-card-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
+ },
+ {
+ "name": "european-conformity-48",
+ "size": "48",
+ "height": "48",
+ "width": "48"
+ },
{
"name": "exclude-16",
"size": "16",
@@ -1413,25 +1425,19 @@
"width": "16"
},
{
- "name": "expand-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "exclude-64",
+ "size": "64",
+ "height": "64",
+ "width": "64"
},
{
- "name": "explore-16",
+ "name": "expand-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "exclude-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- {
- "name": "external-link-16",
+ "name": "explore-16",
"size": "16",
"height": "16",
"width": "16"
@@ -1443,55 +1449,61 @@
"width": "24"
},
{
- "name": "european-conformity-48",
- "size": "48",
- "height": "48",
- "width": "48"
+ "name": "external-link-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
},
{
- "name": "face-happiest-24",
+ "name": "exclude-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "face-happy-24",
+ "name": "external-link-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "face-happy-16",
+ "name": "external-link-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "external-link-24",
+ "name": "face-happy-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "face-neutral-24",
+ "name": "face-happiest-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "face-sad-24",
+ "name": "chevron-down-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "fall-leaf-16",
+ "name": "face-neutral-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "face-happy-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "fall-leaf-24",
+ "name": "face-sad-24",
"size": "24",
"height": "24",
"width": "24"
@@ -1508,18 +1520,6 @@
"height": "24",
"width": "24"
},
- {
- "name": "external-link-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- {
- "name": "feedback-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{
"name": "facebook-24",
"size": "24",
@@ -1527,24 +1527,23 @@
"width": "24"
},
{
- "name": "feedback-16",
+ "name": "fall-leaf-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "feedback-received-16",
+ "name": "feedback-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "feedback-received-24",
+ "name": "fall-leaf-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "file-16", "size": "16", "height": "16", "width": "16" },
{
"name": "feedback-20",
"size": "20",
@@ -1552,51 +1551,82 @@
"width": "20"
},
{
- "name": "flag-filled-16",
+ "name": "feedback-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "feedback-received-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "file-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "fingerprint-64",
- "size": "64",
- "height": "64",
- "width": "65"
+ "name": "feedback-received-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
+ { "name": "file-16", "size": "16", "height": "16", "width": "16" },
{
"name": "filter-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "flag-16", "size": "16", "height": "16", "width": "16" },
- { "name": "flag-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "folder-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "filter-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "escrow-card-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
+ },
+ {
+ "name": "fingerprint-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "fingerprint-64",
+ "size": "64",
+ "height": "64",
+ "width": "65"
},
+ { "name": "file-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "flag-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "flag-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "filter-24",
+ "name": "flash-auto-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "flash-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "flash-auto-24",
+ "name": "flag-filled-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "flag-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "flag-filled-24",
+ "name": "flash-off-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "flash-24", "size": "24", "height": "24", "width": "24" },
{
"name": "folder-24",
"size": "24",
@@ -1604,7 +1634,7 @@
"width": "24"
},
{
- "name": "folder-add-16",
+ "name": "folder-16",
"size": "16",
"height": "16",
"width": "16"
@@ -1615,34 +1645,27 @@
"height": "16",
"width": "16"
},
- {
- "name": "folder-add-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{ "name": "franc-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "fingerprint-24",
+ "name": "forklift-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "franc-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "forklift-24",
+ "name": "free-warranty-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "full-view-16",
+ "name": "folder-add-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "free-warranty-24",
+ "name": "folder-add-24",
"size": "24",
"height": "24",
"width": "24"
@@ -1654,28 +1677,29 @@
"width": "16"
},
{
- "name": "free-warranty-16",
+ "name": "full-view-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "full-view-24",
+ "name": "full-view-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "franc-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "flash-off-24",
+ "name": "full-view-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "gallery-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "general-card-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
},
{
"name": "gallery-16",
@@ -1683,6 +1707,18 @@
"height": "16",
"width": "16"
},
+ {
+ "name": "free-warranty-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "gallery-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "general-card-18-colored",
"size": "18-colored",
@@ -1690,67 +1726,61 @@
"width": "30"
},
{
- "name": "general-card-24-colored",
+ "name": "generic-card-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
+ {
+ "name": "generic-card-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
+ { "name": "gift-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "general-card-12-colored",
+ "name": "generic-card-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
{
- "name": "general-card-32-colored",
+ "name": "generic-card-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
+ { "name": "gift-64", "size": "64", "height": "64", "width": "64" },
{
- "name": "generic-card-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
+ "name": "gift-card-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
},
+ { "name": "gift-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "generic-card-32-colored",
+ "name": "general-card-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
- { "name": "gift-16", "size": "16", "height": "16", "width": "16" },
- { "name": "gift-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "generic-card-24-colored",
+ "name": "general-card-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
- {
- "name": "generic-card-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
- },
- {
- "name": "full-view-filled-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{
"name": "girocard-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
- { "name": "gift-64", "size": "64", "height": "64", "width": "64" },
{
- "name": "gift-card-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
+ "name": "gift-card-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
},
{
"name": "gift-card-18-colored",
@@ -1759,7 +1789,7 @@
"width": "30"
},
{
- "name": "gift-card-24-colored",
+ "name": "girocard-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
@@ -1770,12 +1800,6 @@
"height": "18",
"width": "30"
},
- {
- "name": "girocard-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
{
"name": "glasses-24",
"size": "24",
@@ -1783,16 +1807,16 @@
"width": "24"
},
{
- "name": "girocard-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
+ "name": "google-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
- "name": "glasses-64",
- "size": "64",
- "height": "64",
- "width": "64"
+ "name": "google-pay-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
},
{
"name": "google-pay-12-colored",
@@ -1800,12 +1824,6 @@
"height": "12",
"width": "20"
},
- {
- "name": "google-pay-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
- },
{
"name": "google-pay-24-colored",
"size": "24-colored",
@@ -1813,16 +1831,22 @@
"width": "38"
},
{
- "name": "gift-card-32-colored",
+ "name": "glasses-64",
+ "size": "64",
+ "height": "64",
+ "width": "64"
+ },
+ {
+ "name": "girocard-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
{
- "name": "google-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "gift-card-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
},
{
"name": "google-pay-32-colored",
@@ -1830,19 +1854,14 @@
"height": "32",
"width": "50"
},
- { "name": "graph-16", "size": "16", "height": "16", "width": "16" },
- {
- "name": "grid-view-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "graph-dynamic-16",
"size": "16",
"height": "16",
"width": "16"
},
+ { "name": "graph-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "graph-24", "size": "24", "height": "24", "width": "24" },
{ "name": "graph-64", "size": "64", "height": "64", "width": "64" },
{
"name": "graph-dynamic-24",
@@ -1862,15 +1881,20 @@
"height": "24",
"width": "24"
},
- { "name": "graph-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "handbag-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "grid-view-filled-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
- "name": "headlight-16",
+ "name": "handbag-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "grid-view-16",
"size": "16",
"height": "16",
"width": "16"
@@ -1888,51 +1912,44 @@
"width": "24"
},
{
- "name": "grid-view-filled-24",
+ "name": "headphone-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "headlight-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "headphone-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
- { "name": "heart-20", "size": "20", "height": "20", "width": "20" },
{
- "name": "handbag-24",
+ "name": "headlight-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "heart-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "heart-20", "size": "20", "height": "20", "width": "20" },
+ { "name": "heart-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "headphone-16",
+ "name": "headlight-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "heart-filled-16",
+ "name": "handbag-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "heart-24", "size": "24", "height": "24", "width": "24" },
- { "name": "heart-16", "size": "16", "height": "16", "width": "16" },
{
"name": "heart-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "heart-filled-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- { "name": "help-16", "size": "16", "height": "16", "width": "16" },
{ "name": "help-24", "size": "24", "height": "24", "width": "24" },
{ "name": "help-20", "size": "20", "height": "20", "width": "20" },
{
@@ -1941,70 +1958,65 @@
"height": "16",
"width": "16"
},
- { "name": "hide-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "help-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "history-16",
+ "name": "heart-filled-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "headphone-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- {
- "name": "history-24",
+ "name": "help-outline-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "hide-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "help-outline-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "help-outline-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
},
- { "name": "image-16", "size": "16", "height": "16", "width": "16" },
- { "name": "image-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "home-filled-24",
+ "name": "history-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "hide-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "home-24", "size": "24", "height": "24", "width": "24" },
{
"name": "history-64",
"size": "64",
"height": "64",
"width": "64"
},
- { "name": "home-24", "size": "24", "height": "24", "width": "24" },
- {
- "name": "help-outline-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- { "name": "hide-24", "size": "24", "height": "24", "width": "24" },
- { "name": "inbox-16", "size": "16", "height": "16", "width": "16" },
- { "name": "inbox-24", "size": "24", "height": "24", "width": "24" },
- { "name": "image-64", "size": "64", "height": "64", "width": "64" },
{
- "name": "information-filled-16",
+ "name": "history-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "inspect-24",
+ "name": "home-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "image-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "inbox-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "image-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "image-64", "size": "64", "height": "64", "width": "64" },
+ { "name": "inbox-16", "size": "16", "height": "16", "width": "16" },
+ {
+ "name": "information-filled-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
- "name": "information-24",
+ "name": "information-filled-24",
"size": "24",
"height": "24",
"width": "24"
@@ -2015,6 +2027,12 @@
"height": "16",
"width": "16"
},
+ {
+ "name": "information-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "inspect-16",
"size": "16",
@@ -2022,17 +2040,23 @@
"width": "16"
},
{
- "name": "inspect-64",
- "size": "64",
- "height": "64",
- "width": "64"
+ "name": "heart-filled-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
},
{
- "name": "information-filled-24",
+ "name": "instagram-24",
"size": "24",
"height": "24",
"width": "24"
},
+ {
+ "name": "interac-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
+ },
{
"name": "interac-18-colored",
"size": "18-colored",
@@ -2040,10 +2064,10 @@
"width": "30"
},
{
- "name": "instagram-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "inspect-64",
+ "size": "64",
+ "height": "64",
+ "width": "64"
},
{
"name": "interac-32-colored",
@@ -2051,30 +2075,24 @@
"height": "32",
"width": "50"
},
- {
- "name": "item-list-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "interac-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
+ {
+ "name": "item-list-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "item-list-20",
"size": "20",
"height": "20",
"width": "20"
},
- {
- "name": "interac-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
- },
{
"name": "item-list-24",
"size": "24",
@@ -2082,7 +2100,13 @@
"width": "24"
},
{
- "name": "jet-ski-24",
+ "name": "jcb-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
+ },
+ {
+ "name": "inspect-24",
"size": "24",
"height": "24",
"width": "24"
@@ -2100,10 +2124,16 @@
"width": "38"
},
{
- "name": "kakao-pay-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
+ "name": "eftpos-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
+ {
+ "name": "jet-ski-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
"name": "jcb-32-colored",
@@ -2112,12 +2142,11 @@
"width": "50"
},
{
- "name": "jet-ski-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "jet-ski-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
- { "name": "key-24", "size": "24", "height": "24", "width": "24" },
{
"name": "kakao-pay-18-colored",
"size": "18-colored",
@@ -2125,42 +2154,49 @@
"width": "30"
},
{
- "name": "jcb-12-colored",
+ "name": "kakao-pay-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
+ },
+ {
+ "name": "kakao-pay-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
- { "name": "key-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "kakao-pay-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
+ "name": "kakao-pay-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
},
+ { "name": "key-16", "size": "16", "height": "16", "width": "16" },
{
"name": "keyboard-16",
"size": "16",
"height": "16",
"width": "16"
},
+ { "name": "key-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "keyboard-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- {
- "name": "klarna-black-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
+ "name": "klarna-black-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
},
{
- "name": "klarna-black-12-colored",
+ "name": "klarna-pink-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
+ {
+ "name": "klarna-black-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
+ },
{
"name": "klarna-black-18-colored",
"size": "18-colored",
@@ -2168,13 +2204,25 @@
"width": "30"
},
{
- "name": "klarna-black-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
+ "name": "klarna-pink-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
},
{
- "name": "klarna-pink-12-colored",
+ "name": "klarna-pink-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
+ },
+ {
+ "name": "keyboard-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "klarna-white-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
@@ -2186,45 +2234,25 @@
"width": "50"
},
{
- "name": "klarna-pink-24-colored",
+ "name": "klarna-white-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
{
- "name": "kakao-pay-32-colored",
+ "name": "klarna-white-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
+ { "name": "krona-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "lamp-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "klarna-white-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
- },
- {
- "name": "klarna-white-24-colored",
+ "name": "klarna-black-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
- { "name": "krona-16", "size": "16", "height": "16", "width": "16" },
- {
- "name": "klarna-white-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
- },
- { "name": "lamp-24", "size": "24", "height": "24", "width": "24" },
- { "name": "krona-24", "size": "24", "height": "24", "width": "24" },
- { "name": "lamp-16", "size": "16", "height": "16", "width": "16" },
- {
- "name": "klarna-pink-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
- },
{
"name": "large-box-16",
"size": "16",
@@ -2238,19 +2266,25 @@
"width": "24"
},
{
- "name": "legacy-escrow-48-colored",
+ "name": "legacy-authenticity-guarantee-48-colored",
"size": "48-colored",
"height": "48",
"width": "48"
},
{
- "name": "legacy-money-back-guarantee-eu-48-colored",
+ "name": "klarna-white-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
+ {
+ "name": "legacy-escrow-48-colored",
"size": "48-colored",
"height": "48",
"width": "48"
},
{
- "name": "legacy-authenticity-guarantee-48-colored",
+ "name": "legacy-free-warranty-48-colored",
"size": "48-colored",
"height": "48",
"width": "48"
@@ -2267,48 +2301,48 @@
"height": "48",
"width": "48"
},
+ { "name": "krona-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "legacy-click-to-call-48-colored",
+ "name": "legacy-money-back-guarantee-us-48-colored",
"size": "48-colored",
"height": "48",
"width": "48"
},
{
- "name": "lightbulb-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "legacy-click-to-call-48-colored",
+ "size": "48-colored",
+ "height": "48",
+ "width": "48"
},
{
- "name": "legacy-money-back-guarantee-zl-48-colored",
+ "name": "legacy-money-back-guarantee-eu-48-colored",
"size": "48-colored",
"height": "48",
"width": "48"
},
{
- "name": "legacy-money-back-guarantee-us-48-colored",
+ "name": "legacy-top-rated-seller-48-colored",
"size": "48-colored",
"height": "48",
"width": "48"
},
{
- "name": "lightbulb-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "lightbulb-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
- { "name": "link-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "lightning-bolt-16",
+ "name": "lightbulb-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "lightning-bolt-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "legacy-money-back-guarantee-zl-48-colored",
+ "size": "48-colored",
+ "height": "48",
+ "width": "48"
},
{
"name": "list-view-16",
@@ -2316,29 +2350,24 @@
"height": "16",
"width": "16"
},
+ { "name": "link-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "linkedin-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "lightning-bolt-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
- "name": "list-view-24",
+ "name": "lightning-bolt-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "legacy-free-warranty-48-colored",
- "size": "48-colored",
- "height": "48",
- "width": "48"
- },
- {
- "name": "klarna-white-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
+ "name": "linkedin-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
"name": "live-eye-16",
@@ -2346,6 +2375,18 @@
"height": "16",
"width": "16"
},
+ {
+ "name": "list-view-filled-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "list-view-filled-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "location-16",
"size": "16",
@@ -2359,12 +2400,11 @@
"width": "24"
},
{
- "name": "legacy-top-rated-seller-48-colored",
- "size": "48-colored",
- "height": "48",
- "width": "48"
+ "name": "location-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
- { "name": "lock-16", "size": "16", "height": "16", "width": "16" },
{
"name": "location-64",
"size": "64",
@@ -2372,62 +2412,62 @@
"width": "64"
},
{
- "name": "location-24",
+ "name": "list-view-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "list-view-filled-16",
+ "name": "location-arrow-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "lock-filled-16",
"size": "16",
"height": "16",
"width": "16"
},
+ { "name": "lock-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "lamp-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "lock-filled-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- {
- "name": "list-view-filled-24",
+ "name": "lock-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "lock-filled-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "lock-filled-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
},
{
- "name": "lock-filled-16",
+ "name": "location-arrow-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "maestro-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
+ "name": "maestro-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
},
- { "name": "lock-24", "size": "24", "height": "24", "width": "24" },
- { "name": "mail-24", "size": "24", "height": "24", "width": "24" },
{
"name": "maestro-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
- { "name": "mail-20", "size": "20", "height": "20", "width": "20" },
- { "name": "mail-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "lock-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "mail-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "maestro-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
+ "name": "maestro-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
},
{
"name": "maestro-24-colored",
@@ -2435,60 +2475,68 @@
"height": "24",
"width": "38"
},
+ { "name": "mail-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "mail-64", "size": "64", "height": "64", "width": "64" },
+ { "name": "mail-20", "size": "20", "height": "20", "width": "20" },
{
- "name": "mail-open-16",
+ "name": "mail-move-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "mail-64", "size": "64", "height": "64", "width": "64" },
{
- "name": "mail-unread-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "mail-move-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
- "name": "mail-open-24",
+ "name": "mail-unread-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "map-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "mail-move-24",
+ "name": "mail-open-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "map-24", "size": "24", "height": "24", "width": "24" },
- { "name": "map-20", "size": "20", "height": "20", "width": "20" },
{
- "name": "mail-move-16",
+ "name": "mail-unread-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "masonry-view-filled-16",
+ "name": "mail-open-16",
"size": "16",
"height": "16",
"width": "16"
},
+ { "name": "map-20", "size": "20", "height": "20", "width": "20" },
{
- "name": "masonry-view-filled-24",
+ "name": "masonry-view-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "map-16", "size": "16", "height": "16", "width": "16" },
{
"name": "masonry-view-16",
"size": "16",
"height": "16",
"width": "16"
},
+ { "name": "map-24", "size": "24", "height": "24", "width": "24" },
+ {
+ "name": "masonry-view-filled-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
- "name": "mail-unread-24",
+ "name": "masonry-view-filled-24",
"size": "24",
"height": "24",
"width": "24"
@@ -2500,10 +2548,10 @@
"width": "20"
},
{
- "name": "masonry-view-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "medium-box-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
"name": "mastercard-18-colored",
@@ -2518,17 +2566,20 @@
"width": "50"
},
{
- "name": "medium-box-16",
+ "name": "medium-box-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "megaphone-16",
"size": "16",
"height": "16",
"width": "16"
},
- {
- "name": "mastercard-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
+ { "name": "menu-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "menu-20", "size": "20", "height": "20", "width": "20" },
+ { "name": "menu-16", "size": "16", "height": "16", "width": "16" },
{
"name": "megaphone-24",
"size": "24",
@@ -2536,44 +2587,29 @@
"width": "24"
},
{
- "name": "megaphone-16",
+ "name": "microphone-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "medium-box-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "mercado-pago-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
},
- { "name": "menu-16", "size": "16", "height": "16", "width": "16" },
- { "name": "menu-20", "size": "20", "height": "20", "width": "20" },
{
"name": "mercado-pago-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
- {
- "name": "microphone-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{
"name": "mobile-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "mercado-pago-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
- { "name": "menu-24", "size": "24", "height": "24", "width": "24" },
{
"name": "mercado-pago-18-colored",
"size": "18-colored",
@@ -2581,10 +2617,10 @@
"width": "30"
},
{
- "name": "microphone-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "microphone-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
"name": "money-back-guarantee-16",
@@ -2593,10 +2629,10 @@
"width": "16"
},
{
- "name": "money-back-guarantee-filled-24-colored",
+ "name": "mercado-pago-24-colored",
"size": "24-colored",
"height": "24",
- "width": "24"
+ "width": "38"
},
{
"name": "money-back-guarantee-24",
@@ -2604,18 +2640,6 @@
"height": "24",
"width": "24"
},
- {
- "name": "mercado-pago-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
- },
- {
- "name": "money-stack-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "mobile-signal-24",
"size": "24",
@@ -2628,12 +2652,24 @@
"height": "16",
"width": "16"
},
+ {
+ "name": "money-stack-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "monthly-invoice-18-colored",
"size": "18-colored",
"height": "18",
"width": "30"
},
+ {
+ "name": "money-stack-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "monthly-invoice-24-colored",
"size": "24-colored",
@@ -2641,27 +2677,34 @@
"width": "38"
},
{
- "name": "money-stack-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "monthly-invoice-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
},
- { "name": "moon-16", "size": "16", "height": "16", "width": "16" },
- { "name": "moon-20", "size": "20", "height": "20", "width": "20" },
{
"name": "monthly-invoice-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
+ { "name": "moon-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "moon-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "moon-20", "size": "20", "height": "20", "width": "20" },
{
- "name": "motorcycle-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "money-back-guarantee-filled-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "24"
},
{
- "name": "mountain-16",
+ "name": "mastercard-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
+ },
+ {
+ "name": "motorcycle-16",
"size": "16",
"height": "16",
"width": "16"
@@ -2672,7 +2715,6 @@
"height": "24",
"width": "24"
},
- { "name": "moon-24", "size": "24", "height": "24", "width": "24" },
{
"name": "mountain-24",
"size": "24",
@@ -2686,25 +2728,25 @@
"height": "16",
"width": "16"
},
- { "name": "move-24", "size": "24", "height": "24", "width": "24" },
- {
- "name": "monthly-invoice-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
- },
{
- "name": "neutral-16",
+ "name": "mountain-16",
"size": "16",
"height": "16",
"width": "16"
},
+ {
+ "name": "nectar-logo-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "29"
+ },
{
"name": "negative-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "move-24", "size": "24", "height": "24", "width": "24" },
{ "name": "nfc-16", "size": "16", "height": "16", "width": "16" },
{
"name": "neutral-24",
@@ -2713,35 +2755,29 @@
"width": "24"
},
{
- "name": "nfc-card-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
- },
- {
- "name": "nectar-logo-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "29"
+ "name": "nfc-card-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
},
{
- "name": "nfc-card-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
+ "name": "neutral-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
+ { "name": "nfc-24", "size": "24", "height": "24", "width": "24" },
{
"name": "nfc-card-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
- { "name": "nfc-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "no-children-zero-three-48",
- "size": "48",
- "height": "48",
- "width": "48"
+ "name": "nfc-card-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
},
{
"name": "notification-20",
@@ -2749,18 +2785,6 @@
"height": "20",
"width": "20"
},
- {
- "name": "notification-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- {
- "name": "notification-filled-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{
"name": "notification-64",
"size": "64",
@@ -2768,11 +2792,23 @@
"width": "64"
},
{
- "name": "out-of-reach-48",
+ "name": "no-children-zero-three-48",
"size": "48",
"height": "48",
"width": "48"
},
+ {
+ "name": "notification-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "nfc-card-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
+ },
{
"name": "overflow-horizontal-16",
"size": "16",
@@ -2786,35 +2822,29 @@
"width": "16"
},
{
- "name": "overflow-horizontal-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- {
- "name": "nfc-card-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
+ "name": "out-of-reach-48",
+ "size": "48",
+ "height": "48",
+ "width": "48"
},
{
- "name": "overflow-horizontal-24",
+ "name": "notification-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
+ {
+ "name": "overflow-horizontal-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
{
"name": "overflow-vertical-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "overflow-vertical-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "package-16",
"size": "16",
@@ -2833,21 +2863,14 @@
"height": "24",
"width": "24"
},
- { "name": "panel-20", "size": "20", "height": "20", "width": "20" },
{ "name": "panel-16", "size": "16", "height": "16", "width": "16" },
- { "name": "panel-24", "size": "24", "height": "24", "width": "24" },
- {
- "name": "panel-close-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
- "name": "panel-close-24",
+ "name": "overflow-horizontal-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "panel-20", "size": "20", "height": "20", "width": "20" },
{
"name": "package-64",
"size": "64",
@@ -2855,35 +2878,24 @@
"width": "64"
},
{
- "name": "panel-close-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- {
- "name": "panel-close-vertical-20",
- "size": "20",
- "height": "20",
- "width": "20"
+ "name": "panel-close-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
+ { "name": "panel-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "panel-close-vertical-24",
+ "name": "panel-close-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "panel-open-16",
+ "name": "panel-close-vertical-16",
"size": "16",
"height": "16",
"width": "16"
},
- {
- "name": "panel-open-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{
"name": "panel-open-20",
"size": "20",
@@ -2891,17 +2903,29 @@
"width": "20"
},
{
- "name": "panel-open-vertical-16",
+ "name": "panel-close-vertical-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "panel-open-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "passkey-16",
+ "name": "overflow-vertical-16",
"size": "16",
"height": "16",
"width": "16"
},
+ {
+ "name": "panel-close-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
{
"name": "panel-open-vertical-20",
"size": "20",
@@ -2909,30 +2933,49 @@
"width": "20"
},
{
- "name": "panel-open-vertical-24",
+ "name": "panel-open-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "passkey-24",
+ "name": "panel-open-vertical-24",
"size": "24",
"height": "24",
"width": "24"
},
+ {
+ "name": "panel-close-vertical-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
{
"name": "passkey-64",
"size": "64",
"height": "64",
"width": "64"
},
- { "name": "pause-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "pause-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "panel-close-vertical-16",
+ "name": "passkey-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "passkey-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "panel-open-vertical-16",
"size": "16",
"height": "16",
"width": "16"
},
+ { "name": "pause-16", "size": "16", "height": "16", "width": "16" },
{
"name": "pause-filled-64-colored",
"size": "64-colored",
@@ -2945,19 +2988,36 @@
"height": "18",
"width": "30"
},
+ {
+ "name": "payoneer-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
+ },
{
"name": "payoneer-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
- { "name": "pause-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "payoneer-12-colored",
+ "name": "paypal-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
+ {
+ "name": "payoneer-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
+ },
+ {
+ "name": "paypal-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
+ },
{
"name": "paypal-18-colored",
"size": "18-colored",
@@ -2965,28 +3025,22 @@
"width": "30"
},
{
- "name": "paypal-credit-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
+ "name": "paypal-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
},
{
- "name": "paypal-12-colored",
+ "name": "paypal-credit-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
{
- "name": "paypal-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
- {
- "name": "payoneer-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
+ "name": "paypal-credit-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
},
{
"name": "paypal-disabled-12-colored",
@@ -3001,13 +3055,13 @@
"width": "38"
},
{
- "name": "paypal-credit-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
+ "name": "paypal-disabled-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
},
{
- "name": "paypal-32-colored",
+ "name": "paypal-credit-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
@@ -3019,17 +3073,11 @@
"width": "37"
},
{
- "name": "paypal-disabled-32-colored",
+ "name": "paypay-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
},
- {
- "name": "paypay-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
- },
{
"name": "paypay-12-colored",
"size": "12-colored",
@@ -3037,13 +3085,25 @@
"width": "20"
},
{
- "name": "paypay-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
+ "name": "pencil-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
},
{
- "name": "paypay-32-colored",
+ "name": "pencil-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "paypay-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
+ },
+ {
+ "name": "paypal-disabled-32-colored",
"size": "32-colored",
"height": "32",
"width": "50"
@@ -3054,48 +3114,36 @@
"height": "24",
"width": "24"
},
- {
- "name": "paypal-credit-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
- },
- { "name": "peso-16", "size": "16", "height": "16", "width": "16" },
- {
- "name": "pencil-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
- {
- "name": "pencil-20",
- "size": "20",
- "height": "20",
- "width": "20"
+ {
+ "name": "paypay-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
},
+ { "name": "peso-16", "size": "16", "height": "16", "width": "16" },
{ "name": "phone-16", "size": "16", "height": "16", "width": "16" },
- { "name": "pin-24", "size": "24", "height": "24", "width": "24" },
{
"name": "pin-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "play-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "pin-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "phone-24", "size": "24", "height": "24", "width": "24" },
{
"name": "pinterest-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "play-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "play-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "play-filled-16-colored",
- "size": "16-colored",
- "height": "16",
- "width": "16"
+ "name": "play-filled-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "24"
},
- { "name": "play-24", "size": "24", "height": "24", "width": "24" },
- { "name": "phone-24", "size": "24", "height": "24", "width": "24" },
{
"name": "play-filled-64-colored",
"size": "64-colored",
@@ -3103,12 +3151,11 @@
"width": "64"
},
{
- "name": "play-filled-24-colored",
+ "name": "postepay-24-colored",
"size": "24-colored",
"height": "24",
- "width": "24"
+ "width": "38"
},
- { "name": "peso-24", "size": "24", "height": "24", "width": "24" },
{
"name": "postepay-12-colored",
"size": "12-colored",
@@ -3116,10 +3163,16 @@
"width": "20"
},
{
- "name": "postepay-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
+ "name": "play-filled-16-colored",
+ "size": "16-colored",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "potted-plant-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
"name": "postepay-32-colored",
@@ -3127,45 +3180,29 @@
"height": "32",
"width": "50"
},
+ { "name": "pound-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "peso-24", "size": "24", "height": "24", "width": "24" },
{
"name": "potted-plant-16",
"size": "16",
"height": "16",
"width": "16"
},
- {
- "name": "postepay-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
- {
- "name": "potted-plant-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- { "name": "print-24", "size": "24", "height": "24", "width": "24" },
- {
- "name": "profile-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
{ "name": "pound-24", "size": "24", "height": "24", "width": "24" },
- { "name": "pound-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "print-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "paypal-disabled-18-colored",
+ "name": "postepay-18-colored",
"size": "18-colored",
"height": "18",
"width": "30"
},
{
- "name": "profile-filled-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "profile-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
+ { "name": "print-24", "size": "24", "height": "24", "width": "24" },
{
"name": "profile-20",
"size": "20",
@@ -3173,10 +3210,16 @@
"width": "20"
},
{
- "name": "profile-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "profile-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "progress-current-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
"name": "promotion-16",
@@ -3185,22 +3228,28 @@
"width": "16"
},
{
- "name": "progress-upcoming-24",
+ "name": "profile-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "progress-current-24",
+ "name": "psa-16-colored",
+ "size": "16-colored",
+ "height": "16",
+ "width": "45"
+ },
+ {
+ "name": "progress-upcoming-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "qr-code-16",
+ "name": "psa-vault-16",
"size": "16",
"height": "16",
- "width": "16"
+ "width": "84"
},
{
"name": "psa-vault-16-colored",
@@ -3209,20 +3258,26 @@
"width": "84"
},
{
- "name": "qr-code-24",
+ "name": "promotion-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "print-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "recovery-code-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "recovery-code-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
+ { "name": "psa-16", "size": "16", "height": "16", "width": "45" },
{
- "name": "promotion-24",
+ "name": "qr-code-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "recovery-code-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3234,13 +3289,13 @@
"width": "16"
},
{
- "name": "psa-vault-16",
- "size": "16",
- "height": "16",
- "width": "84"
+ "name": "refresh-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
- "name": "reddit-24",
+ "name": "qr-code-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3252,39 +3307,32 @@
"width": "24"
},
{
- "name": "relaxed-grid-filled-24",
+ "name": "reddit-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "recovery-code-16",
+ "name": "remove-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "remove-16",
+ "name": "return-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "remove-24",
+ "name": "relaxed-grid-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "remove-12",
- "size": "12",
- "height": "12",
- "width": "12"
- },
{ "name": "reply-16", "size": "16", "height": "16", "width": "16" },
- { "name": "reply-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "refresh-24",
+ "name": "return-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3295,6 +3343,7 @@
"height": "16",
"width": "16"
},
+ { "name": "rim-16", "size": "16", "height": "16", "width": "16" },
{
"name": "ribbon-24",
"size": "24",
@@ -3302,7 +3351,7 @@
"width": "24"
},
{
- "name": "return-24",
+ "name": "ringgit-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3313,16 +3362,14 @@
"height": "16",
"width": "16"
},
- { "name": "rim-24", "size": "24", "height": "24", "width": "24" },
- { "name": "rim-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "return-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "remove-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
- "name": "ringgit-24",
+ "name": "rotate-landscape-left-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3333,14 +3380,15 @@
"height": "24",
"width": "24"
},
+ { "name": "reply-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "rotate-landscape-right-24",
+ "name": "rotate-portrait-left-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "rotate-landscape-left-24",
+ "name": "rotate-landscape-right-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3352,20 +3400,20 @@
"width": "24"
},
{
- "name": "rotate-portrait-left-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "remove-12",
+ "size": "12",
+ "height": "12",
+ "width": "12"
},
+ { "name": "rupee-16", "size": "16", "height": "16", "width": "16" },
{ "name": "ruler-16", "size": "16", "height": "16", "width": "16" },
- { "name": "ruler-24", "size": "24", "height": "24", "width": "24" },
- { "name": "rupee-24", "size": "24", "height": "24", "width": "24" },
{
"name": "satchel-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "rim-24", "size": "24", "height": "24", "width": "24" },
{
"name": "satchel-16",
"size": "16",
@@ -3373,25 +3421,37 @@
"width": "16"
},
{ "name": "scan-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "rupee-24", "size": "24", "height": "24", "width": "24" },
+ {
+ "name": "search-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "search-20",
"size": "20",
"height": "20",
"width": "20"
},
- { "name": "scan-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "ruler-24", "size": "24", "height": "24", "width": "24" },
+ {
+ "name": "search-similar-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "search-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "rupee-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "search-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "search-64",
+ "size": "64",
+ "height": "64",
+ "width": "64"
},
{
"name": "search-filled-24",
@@ -3400,10 +3460,10 @@
"width": "24"
},
{
- "name": "search-similar-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "search-similar-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
"name": "search-similar-20",
@@ -3418,17 +3478,11 @@
"width": "16"
},
{
- "name": "search-similar-24",
+ "name": "seasons-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "search-64",
- "size": "64",
- "height": "64",
- "width": "64"
- },
{
"name": "selling-16",
"size": "16",
@@ -3448,48 +3502,78 @@
"width": "24"
},
{
- "name": "selling-filled-24",
+ "name": "selling-24",
"size": "24",
"height": "24",
"width": "24"
},
{ "name": "send-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "selling-24",
+ "name": "settings-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "selling-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
+ {
+ "name": "settings-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
+ {
+ "name": "settings-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "settings-20",
+ "name": "share-android-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "share-android-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "share-ios-20",
"size": "20",
"height": "20",
"width": "20"
},
{
- "name": "settings-16",
+ "name": "share-ios-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "settings-24",
+ "name": "sharpen-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "selling-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- {
- "name": "seasons-24",
+ "name": "selling-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
+ {
+ "name": "ship-and-local-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "share-android-20",
"size": "20",
@@ -3497,25 +3581,13 @@
"width": "20"
},
{
- "name": "share-android-24",
+ "name": "ship-and-local-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "share-ios-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
- {
- "name": "ship-and-local-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
- {
- "name": "sharpen-24",
+ "name": "shoe-box-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3526,48 +3598,30 @@
"height": "24",
"width": "24"
},
+ { "name": "shirt-24", "size": "24", "height": "24", "width": "24" },
{ "name": "shirt-16", "size": "16", "height": "16", "width": "16" },
- {
- "name": "share-ios-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- {
- "name": "share-android-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "shovel-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "shirt-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "shoe-box-24",
+ "name": "shovel-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "show-24", "size": "24", "height": "24", "width": "24" },
{ "name": "show-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "small-box-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
- {
- "name": "small-letter-24",
+ "name": "small-box-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "show-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "sneaker-24",
+ "name": "small-letter-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3585,7 +3639,7 @@
"width": "16"
},
{
- "name": "shovel-24",
+ "name": "sneaker-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3596,25 +3650,13 @@
"height": "24",
"width": "24"
},
- {
- "name": "snowmobile-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- { "name": "sort-16", "size": "16", "height": "16", "width": "16" },
{
"name": "snowmobile-16",
"size": "16",
"height": "16",
"width": "16"
},
- {
- "name": "ship-and-local-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
+ { "name": "sort-12", "size": "12", "height": "12", "width": "12" },
{ "name": "sort-24", "size": "24", "height": "24", "width": "24" },
{
"name": "sort-down-12",
@@ -3622,12 +3664,6 @@
"height": "12",
"width": "12"
},
- {
- "name": "sparkline-down-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
{
"name": "sort-up-12",
"size": "12",
@@ -3635,35 +3671,36 @@
"width": "12"
},
{
- "name": "small-box-24",
- "size": "24",
- "height": "24",
- "width": "24"
- },
- {
- "name": "sparkline-down-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
- {
- "name": "sparkline-up-16",
+ "name": "small-box-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "sparkline-up-20",
+ "name": "sparkline-down-20",
"size": "20",
"height": "20",
"width": "20"
},
{
- "name": "sparkline-down-24",
+ "name": "sparkline-down-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "snowmobile-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "scan-24", "size": "24", "height": "24", "width": "24" },
+ {
+ "name": "sparkline-up-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "sparkline-up-24",
"size": "24",
@@ -3671,7 +3708,13 @@
"width": "24"
},
{
- "name": "speedometer-24",
+ "name": "sparkline-up-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
+ {
+ "name": "sparkline-up-filled-24",
"size": "24",
"height": "24",
"width": "24"
@@ -3682,18 +3725,13 @@
"height": "16",
"width": "16"
},
+ { "name": "sort-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "sparkline-up-filled-24",
+ "name": "speedometer-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "split-payment-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
"name": "split-payment-24",
"size": "24",
@@ -3707,44 +3745,42 @@
"width": "24"
},
{
- "name": "split-view-24",
+ "name": "sparkline-down-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "sort-12", "size": "12", "height": "12", "width": "12" },
{
- "name": "star-empty-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "spring-leaf-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
{
- "name": "star-empty-24",
+ "name": "split-view-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "star-empty-40", "height": "40", "width": "40" },
{
- "name": "star-filled-16",
+ "name": "star-empty-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "spring-leaf-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "spring-leaf-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
+ { "name": "star-empty-40", "height": "40", "width": "40" },
{
- "name": "spring-leaf-16",
+ "name": "split-payment-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "star-filled-40", "height": "40", "width": "40" },
{
"name": "star-filled-24",
"size": "24",
@@ -3752,8 +3788,8 @@
"width": "24"
},
{
- "name": "star-half-24-colored",
- "size": "24-colored",
+ "name": "star-empty-24",
+ "size": "24",
"height": "24",
"width": "24"
},
@@ -3764,15 +3800,16 @@
"width": "16"
},
{
- "name": "stepper-attention-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "star-half-dark-16-colored",
+ "size": "16-colored",
+ "height": "16",
+ "width": "16"
},
+ { "name": "star-filled-40", "height": "40", "width": "40" },
{
- "name": "stepper-upcoming-24",
- "size": "24",
- "height": "25",
+ "name": "star-half-dark-24-colored",
+ "size": "24-colored",
+ "height": "24",
"width": "24"
},
{
@@ -3782,44 +3819,50 @@
"width": "24"
},
{
- "name": "stepper-current-24",
- "size": "24",
+ "name": "star-half-24-colored",
+ "size": "24-colored",
"height": "24",
"width": "24"
},
- { "name": "store-16", "size": "16", "height": "16", "width": "16" },
- { "name": "store-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "star-half-dark-16-colored",
- "size": "16-colored",
+ "name": "star-filled-16",
+ "size": "16",
"height": "16",
"width": "16"
},
{
- "name": "star-half-dark-24-colored",
- "size": "24-colored",
+ "name": "stepper-attention-24",
+ "size": "24",
"height": "24",
"width": "24"
},
+ {
+ "name": "stepper-upcoming-24",
+ "size": "24",
+ "height": "25",
+ "width": "24"
+ },
+ { "name": "store-24", "size": "24", "height": "24", "width": "24" },
{ "name": "store-64", "size": "64", "height": "64", "width": "64" },
{
- "name": "store-filled-24",
+ "name": "stepper-current-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "support-24",
+ "name": "store-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "target-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "support-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
},
+ { "name": "swap-16", "size": "16", "height": "16", "width": "16" },
{
"name": "switch-camera-24",
"size": "24",
@@ -3827,25 +3870,18 @@
"width": "24"
},
{
- "name": "suitcase-24",
+ "name": "target-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "swap-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "swap-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "text-messaging-24",
+ "name": "suitcase-24",
"size": "24",
"height": "24",
"width": "24"
},
- {
- "name": "text-messaging-20",
- "size": "20",
- "height": "20",
- "width": "20"
- },
- { "name": "swap-24", "size": "24", "height": "24", "width": "24" },
{
"name": "text-messaging-16",
"size": "16",
@@ -3853,28 +3889,29 @@
"width": "16"
},
{
- "name": "text-messaging-64",
- "size": "64",
- "height": "64",
- "width": "64"
- },
- {
- "name": "the-ebay-vault-16",
+ "name": "target-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "thumb-down-20",
+ "name": "text-messaging-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "text-messaging-20",
"size": "20",
"height": "20",
"width": "20"
},
+ { "name": "store-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "target-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "the-ebay-vault-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
"name": "the-ebay-vault-24",
@@ -3889,16 +3926,22 @@
"width": "16"
},
{
- "name": "thumb-down-filled-24",
+ "name": "thumb-down-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "thumb-down-filled-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "thumb-down-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
+ {
+ "name": "thumb-down-filled-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
},
{
"name": "thumb-up-20",
@@ -3907,7 +3950,7 @@
"width": "20"
},
{
- "name": "thumb-up-16",
+ "name": "thumb-down-filled-16",
"size": "16",
"height": "16",
"width": "16"
@@ -3919,10 +3962,10 @@
"width": "24"
},
{
- "name": "thumb-down-filled-20",
- "size": "20",
- "height": "20",
- "width": "20"
+ "name": "thumb-up-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
"name": "thumb-up-64",
@@ -3930,6 +3973,20 @@
"height": "64",
"width": "64"
},
+ {
+ "name": "thumb-up-filled-20",
+ "size": "20",
+ "height": "20",
+ "width": "20"
+ },
+ { "name": "tick-16", "size": "16", "height": "16", "width": "16" },
+ {
+ "name": "thumb-up-filled-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ { "name": "tick-24", "size": "24", "height": "24", "width": "24" },
{
"name": "thumb-up-filled-16",
"size": "16",
@@ -3937,16 +3994,16 @@
"width": "16"
},
{
- "name": "thumb-up-filled-24",
+ "name": "thumb-down-filled-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "thumb-up-filled-20",
- "size": "20",
- "height": "20",
- "width": "20"
+ "name": "text-messaging-64",
+ "size": "64",
+ "height": "64",
+ "width": "64"
},
{
"name": "toggle-mode-top-24",
@@ -3954,7 +4011,6 @@
"height": "24",
"width": "24"
},
- { "name": "tick-16", "size": "16", "height": "16", "width": "16" },
{
"name": "tiktok-24",
"size": "24",
@@ -3962,17 +4018,23 @@
"width": "24"
},
{
- "name": "toggle-mode-bottom-24",
+ "name": "top-rated-plus-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "top-service-16",
+ "name": "top-rated-seller-16",
"size": "16",
"height": "16",
"width": "16"
},
+ {
+ "name": "toggle-mode-bottom-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "top-rated-seller-24",
"size": "24",
@@ -3980,24 +4042,41 @@
"width": "24"
},
{
- "name": "top-rated-seller-16",
+ "name": "top-service-16",
"size": "16",
"height": "16",
"width": "16"
},
- { "name": "tick-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "trading-card-grade-16",
+ "name": "trading-card-16",
"size": "16",
"height": "16",
"width": "16"
},
+ {
+ "name": "top-service-filled-16-colored",
+ "size": "16-colored",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "trading-card-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
{
"name": "trading-card-grade-24",
"size": "24",
"height": "24",
"width": "24"
},
+ {
+ "name": "top-rated-plus-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
{
"name": "top-service-24",
"size": "24",
@@ -4005,28 +4084,28 @@
"width": "24"
},
{
- "name": "trading-card-24",
- "size": "24",
+ "name": "top-service-filled-24-colored",
+ "size": "24-colored",
"height": "24",
"width": "24"
},
{
- "name": "transaction-24",
+ "name": "translate-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "translate-16",
- "size": "16",
+ "name": "trend-down-16-fit",
+ "size": "16-fit",
"height": "16",
- "width": "16"
+ "width": "13"
},
{
- "name": "trading-card-16",
- "size": "16",
+ "name": "trend-up-16-fit",
+ "size": "16-fit",
"height": "16",
- "width": "16"
+ "width": "13"
},
{
"name": "translate-20",
@@ -4035,25 +4114,26 @@
"width": "20"
},
{
- "name": "trend-up-16-fit",
- "size": "16-fit",
+ "name": "translate-16",
+ "size": "16",
"height": "16",
- "width": "13"
+ "width": "16"
},
{
- "name": "trend-down-16-fit",
- "size": "16-fit",
+ "name": "trading-card-grade-16",
+ "size": "16",
"height": "16",
- "width": "13"
+ "width": "16"
},
- { "name": "truck-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "trophy-24",
+ "name": "truck-shipped-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "truck-16", "size": "16", "height": "16", "width": "16" },
{ "name": "truck-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "truck-64", "size": "64", "height": "64", "width": "64" },
{
"name": "trophy-16",
"size": "16",
@@ -4061,18 +4141,17 @@
"width": "16"
},
{
- "name": "translate-24",
+ "name": "twitter-24",
"size": "24",
"height": "24",
"width": "24"
},
{
- "name": "truck-shipped-24",
+ "name": "trophy-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "truck-64", "size": "64", "height": "64", "width": "64" },
{
"name": "truck-shipped-16",
"size": "16",
@@ -4080,19 +4159,17 @@
"width": "16"
},
{
- "name": "twitter-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "unionpay-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
},
- { "name": "undo-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "unionpay-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
+ "name": "unionpay-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
},
- { "name": "undo-24", "size": "24", "height": "24", "width": "24" },
{
"name": "unionpay-18-colored",
"size": "18-colored",
@@ -4100,22 +4177,22 @@
"width": "30"
},
{
- "name": "unlock-16",
+ "name": "transaction-24",
+ "size": "24",
+ "height": "24",
+ "width": "24"
+ },
+ {
+ "name": "upload-16",
"size": "16",
"height": "16",
"width": "16"
},
{
- "name": "unionpay-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
- },
- {
- "name": "unlock-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "unlock-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
},
{
"name": "upload-24",
@@ -4124,13 +4201,14 @@
"width": "24"
},
{
- "name": "upload-16",
- "size": "16",
- "height": "16",
- "width": "16"
+ "name": "unionpay-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
},
+ { "name": "undo-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "thumb-down-24",
+ "name": "unlock-24",
"size": "24",
"height": "24",
"width": "24"
@@ -4141,12 +4219,7 @@
"height": "24",
"width": "24"
},
- {
- "name": "venmo-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
- },
+ { "name": "undo-24", "size": "24", "height": "24", "width": "24" },
{
"name": "venmo-24-colored",
"size": "24-colored",
@@ -4159,37 +4232,25 @@
"height": "32",
"width": "50"
},
- {
- "name": "venmo-18-colored",
- "size": "18-colored",
- "height": "18",
- "width": "30"
- },
{
"name": "verified-condition-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "video-24", "size": "24", "height": "24", "width": "24" },
- {
- "name": "verified-condition-16",
- "size": "16",
- "height": "16",
- "width": "16"
- },
{
- "name": "unionpay-24-colored",
+ "name": "visa-24-colored",
"size": "24-colored",
"height": "24",
"width": "38"
},
{
- "name": "visa-12-colored",
- "size": "12-colored",
- "height": "12",
- "width": "20"
+ "name": "venmo-18-colored",
+ "size": "18-colored",
+ "height": "18",
+ "width": "30"
},
+ { "name": "video-24", "size": "24", "height": "24", "width": "24" },
{
"name": "visa-18-colored",
"size": "18-colored",
@@ -4203,16 +4264,16 @@
"width": "50"
},
{
- "name": "wallet-balance-12-colored",
+ "name": "venmo-12-colored",
"size": "12-colored",
"height": "12",
"width": "20"
},
{
- "name": "wallet-24",
- "size": "24",
- "height": "24",
- "width": "24"
+ "name": "visa-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
},
{
"name": "wallet-balance-18-colored",
@@ -4221,17 +4282,17 @@
"width": "30"
},
{
- "name": "wallet-balance-24-colored",
- "size": "24-colored",
+ "name": "wallet-24",
+ "size": "24",
"height": "24",
- "width": "38"
+ "width": "24"
},
{ "name": "watch-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "wallet-balance-32-colored",
- "size": "32-colored",
- "height": "32",
- "width": "50"
+ "name": "wallet-balance-12-colored",
+ "size": "12-colored",
+ "height": "12",
+ "width": "20"
},
{
"name": "wallet-64",
@@ -4239,13 +4300,8 @@
"height": "64",
"width": "64"
},
- {
- "name": "visa-24-colored",
- "size": "24-colored",
- "height": "24",
- "width": "38"
- },
{ "name": "watch-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "won-24", "size": "24", "height": "24", "width": "24" },
{ "name": "won-16", "size": "16", "height": "16", "width": "16" },
{
"name": "wrench-16",
@@ -4253,6 +4309,12 @@
"height": "16",
"width": "16"
},
+ {
+ "name": "wallet-balance-32-colored",
+ "size": "32-colored",
+ "height": "32",
+ "width": "50"
+ },
{
"name": "wrench-24",
"size": "24",
@@ -4265,17 +4327,16 @@
"height": "24",
"width": "24"
},
- { "name": "yuan-24", "size": "24", "height": "24", "width": "24" },
{
"name": "youtube-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "yuan-16", "size": "16", "height": "16", "width": "16" },
- { "name": "won-24", "size": "24", "height": "24", "width": "24" },
+ { "name": "zloty-16", "size": "16", "height": "16", "width": "16" },
+ { "name": "zloty-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "zoom-in-16",
+ "name": "verified-condition-16",
"size": "16",
"height": "16",
"width": "16"
@@ -4286,20 +4347,32 @@
"height": "16",
"width": "16"
},
- { "name": "zloty-16", "size": "16", "height": "16", "width": "16" },
{
- "name": "zoom-out-24",
+ "name": "zoom-in-24",
"size": "24",
"height": "24",
"width": "24"
},
+ { "name": "yuan-24", "size": "24", "height": "24", "width": "24" },
{
- "name": "zoom-in-24",
+ "name": "zoom-in-16",
+ "size": "16",
+ "height": "16",
+ "width": "16"
+ },
+ {
+ "name": "zoom-out-24",
"size": "24",
"height": "24",
"width": "24"
},
- { "name": "zloty-24", "size": "24", "height": "24", "width": "24" }
+ {
+ "name": "wallet-balance-24-colored",
+ "size": "24-colored",
+ "height": "24",
+ "width": "38"
+ },
+ { "name": "yuan-16", "size": "16", "height": "16", "width": "16" }
],
"skipDocs": [
"avatar-signed-out",
diff --git a/src/components/data/site.json b/src/components/data/site.json
index 5c7bc79b0f..8ab4bf5159 100644
--- a/src/components/data/site.json
+++ b/src/components/data/site.json
@@ -1 +1,6 @@
-{ "pageTitle": "Skin CSS Framework", "version": "19.1.3" }
+{
+ "pageTitle": "Skin CSS Framework",
+ "version": "19.1.3",
+ "pageDescription": "A responsive, accessible, and user-friendly CSS framework created by the engineers at eBay leveraging semantic HTML, SVG & ARIA.",
+ "prodURL": "https://opensource.ebay.com/skin/"
+}
diff --git a/src/components/demo.marko b/src/components/demo.marko
new file mode 100644
index 0000000000..bac580f6c3
--- /dev/null
+++ b/src/components/demo.marko
@@ -0,0 +1,5 @@
+
+
+ <${input.renderBody}/>
+
+
\ No newline at end of file
diff --git a/src/components/highlight.marko b/src/components/highlight.marko
new file mode 100644
index 0000000000..79086917ca
--- /dev/null
+++ b/src/components/highlight.marko
@@ -0,0 +1 @@
+
<${input.renderBody}/>
\ No newline at end of file
diff --git a/src/components/master-icons.marko b/src/components/master-icons.marko
index b794ba15b5..6474f5ddc8 100644
--- a/src/components/master-icons.marko
+++ b/src/components/master-icons.marko
@@ -2,25 +2,11 @@
-
-
-
-
-
-
-
@@ -30,7 +16,7 @@
@@ -72,11 +58,11 @@
@@ -99,6 +85,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
@@ -242,22 +260,15 @@
-
-
-
-
-
-
-
-
-
+
+
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -3830,6 +3870,13 @@
d="M5.671 4.257A9.959 9.959 0 0 1 12 2c5.523 0 10 4.477 10 10a9.958 9.958 0 0 1-2.257 6.329L5.67 4.257ZM4.257 5.671A9.959 9.959 0 0 0 2 12c0 5.523 4.477 10 10 10a9.958 9.958 0 0 0 6.329-2.257L4.257 5.67ZM12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0Z"
/>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -10068,15 +10187,15 @@
diff --git a/src/components/site-footer.marko b/src/components/site-footer.marko
index b5c95dd7ef..0d337117dc 100644
--- a/src/components/site-footer.marko
+++ b/src/components/site-footer.marko
@@ -10,10 +10,10 @@ style {
Copyright © 2025 eBay, Inc. All rights reserved.
diff --git a/src/components/site-header.marko b/src/components/site-header.marko
index 0b4bb1a9e6..422a1974bd 100644
--- a/src/components/site-header.marko
+++ b/src/components/site-header.marko
@@ -18,7 +18,7 @@ import {components} from './components.marko';
@@ -65,7 +65,7 @@ import {components} from './components.marko';
diff --git a/src/components/site-navrail.marko b/src/components/site-navrail.marko
index 06ff20ce58..142a29820c 100644
--- a/src/components/site-navrail.marko
+++ b/src/components/site-navrail.marko
@@ -12,13 +12,13 @@ import {components} from './components.marko';
Guides
diff --git a/src/components/themes.marko b/src/components/themes.marko
index 0b49bbe5c2..e6a6f610ed 100644
--- a/src/components/themes.marko
+++ b/src/components/themes.marko
@@ -30,5 +30,5 @@
-->
-
Warning! Changing the value of any product-level token will cause a ripple effect through all skin modules. If this is not your intention, tokens are also available at the component-level. See switch-variables for an example.
+
Warning! Changing the value of any product-level token will cause a ripple effect through all skin modules. If this is not your intention, tokens are also available at the component-level. See switch-variables for an example.
diff --git a/src/components/token-system.marko b/src/components/token-system.marko
index da8586a11e..8dd8050b8b 100644
--- a/src/components/token-system.marko
+++ b/src/components/token-system.marko
@@ -11,7 +11,7 @@
In order for Skin to render correctly, values for core tokens and light tokens are required .
The easiest way to satisfy this requirement is to include one of the following bundles:
It is also possible for a page to roll their own tokens sets, enabling a themed or even non-eBay branded look and feel. More information will be provided in a future release.
diff --git a/src/routes/_index/+layout.marko b/src/routes/_index/+layout.marko
index 0ccbabfc18..593f0450fa 100644
--- a/src/routes/_index/+layout.marko
+++ b/src/routes/_index/+layout.marko
@@ -1,10 +1,23 @@
+static const basePath = import.meta.env.BASE_URL;
+import siteMeta from '../../components/data/site.json';
+
${$global.meta.pageTitle || 'eBay Skin CSS Framework'}
-
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/routes/_index/+layout.style.scss b/src/routes/_index/+layout.style.scss
index d3e3cb0027..221a6ff9f2 100644
--- a/src/routes/_index/+layout.style.scss
+++ b/src/routes/_index/+layout.style.scss
@@ -21,6 +21,15 @@
/* stylelint-disable no-descending-specificity */
+/*
+Some browsers, especially within mobile devices, include an automatic mechanism for inflating text to help readability. We're turning that off here to get to a consistent baseline.
+*/
+html {
+ -webkit-text-size-adjust: none;
+ -moz-text-size-adjust: none;
+ text-size-adjust: none;
+}
+
body {
margin: 0;
}
diff --git a/src/routes/_index/component/+page.marko b/src/routes/_index/component/+page.marko
index 2605d2f8d1..d4d47cae88 100644
--- a/src/routes/_index/component/+page.marko
+++ b/src/routes/_index/component/+page.marko
@@ -6,7 +6,7 @@ import path from 'path';
diff --git a/src/routes/_index/component/accordion/+page.marko b/src/routes/_index/component/accordion/+page.marko
index 7b9fdf92dc..e94236be10 100644
--- a/src/routes/_index/component/accordion/+page.marko
+++ b/src/routes/_index/component/accordion/+page.marko
@@ -20,11 +20,8 @@
Shipping and returns
-
-
-
-
-
+
+
@@ -42,11 +39,8 @@
Text wraps on small screen with this long text
-
-
-
-
-
+
+
@@ -64,11 +58,8 @@
Specifications
-
-
-
-
-
+
+
@@ -94,11 +85,8 @@
Shipping and returns
-
-
-
-
-
+
+
@@ -116,11 +104,8 @@
Description
-
-
-
-
-
+
+
@@ -138,11 +123,8 @@
Specifications
-
-
-
-
-
+
+
@@ -171,11 +153,8 @@
Shipping and returns
-
-
-
-
-
+
+
@@ -193,11 +172,8 @@
Description
-
-
-
-
-
+
+
@@ -215,11 +191,8 @@
Specifications
-
-
-
-
-
+
+
@@ -246,11 +219,8 @@
Shipping and returns
-
-
-
-
-
+
+
@@ -268,11 +238,8 @@
Description
-
-
-
-
-
+
+
@@ -288,11 +255,8 @@
Specifications
-
-
-
-
-
+
+
@@ -325,11 +289,8 @@
Shipping and returns
-
-
-
-
-
+
+
@@ -347,11 +308,8 @@
Description
-
-
-
-
-
+
+
@@ -369,11 +327,8 @@
Specifications
-
-
-
-
-
+
+
@@ -399,11 +354,8 @@
Shipping and returns
-
-
-
-
-
+
+
@@ -419,11 +371,8 @@
Description
-
-
-
-
-
+
+
@@ -439,11 +388,8 @@
Specifications
-
-
-
-
-
+
+
@@ -471,11 +417,8 @@
Shipping and returns
-
-
-
-
-
+
+
@@ -493,11 +436,8 @@
Text wraps on small screen with this long text
-
-
-
-
-
+
+
@@ -515,11 +455,8 @@
Specifications
-
-
-
-
-
+
+
@@ -545,11 +482,8 @@
Shipping and returns
-
-
-
-
-
+
+
@@ -565,11 +499,8 @@
Description
-
-
-
-
-
+
+
@@ -585,11 +516,8 @@
Specifications
-
-
-
-
-
+
+
@@ -605,6 +533,6 @@ export const metadata = {
component: "accordion",
"ds-component": {
name: "accordion",
- version: 1.0,
+ version: 1.1,
},
};
diff --git a/src/routes/_index/component/badge/+page.marko b/src/routes/_index/component/badge/+page.marko
index 54b98e76b0..b4de84f3bf 100644
--- a/src/routes/_index/component/badge/+page.marko
+++ b/src/routes/_index/component/badge/+page.marko
@@ -6,13 +6,13 @@
The badge module contains the basic, base styles for a static badge element. Badges can also be placed inside of the${" "}
-
+
icon button
-
+
and
-
+
menu
-
+
modules.
diff --git a/src/routes/_index/component/button/+page.marko b/src/routes/_index/component/button/+page.marko
index 35f0e06854..7e01c0ffcc 100644
--- a/src/routes/_index/component/button/+page.marko
+++ b/src/routes/_index/component/button/+page.marko
@@ -219,7 +219,7 @@
- Replace the button contents with a progress spinner to represent a busy state. Note also, that the button will need an aria-label to programmatically convey the busy state to assistive technology.
+ Replace the button contents with a progress spinner to represent a busy state. Note also, that the button will need an aria-label to programmatically convey the busy state to assistive technology.
- NOTE: it is recommended to use a snackbar dialog or inline-notice in order to convey any status of success or failure.
+ NOTE: it is recommended to use a snackbar dialog or inline-notice in order to convey any status of success or failure.
diff --git a/src/routes/_index/component/checkbox/+page.marko b/src/routes/_index/component/checkbox/+page.marko
index d58db9f2d9..11cf0e3c90 100644
--- a/src/routes/_index/component/checkbox/+page.marko
+++ b/src/routes/_index/component/checkbox/+page.marko
@@ -295,9 +295,9 @@
The following example uses the
-
+
field module
-
+
for simple layout of checkbox fields and labels.
diff --git a/src/routes/_index/component/chips-combobox/+page.marko b/src/routes/_index/component/chips-combobox/+page.marko
index daffd61c5d..6dd806b67f 100644
--- a/src/routes/_index/component/chips-combobox/+page.marko
+++ b/src/routes/_index/component/chips-combobox/+page.marko
@@ -544,9 +544,9 @@
a11y
${" "}rules, color alone should not be used to indicate an error. For more information, please see the${" "}
-
+
field error state docs
-
+
.
diff --git a/src/routes/_index/component/date-textbox/+page.marko b/src/routes/_index/component/date-textbox/+page.marko
index ea1b00d538..c1485ddd79 100644
--- a/src/routes/_index/component/date-textbox/+page.marko
+++ b/src/routes/_index/component/date-textbox/+page.marko
@@ -9,17 +9,17 @@
The single select date textbox consists of a
-
+
textbox
-
+
plus
-
+
icon button
-
+
. The icon button launches an interactive
-
+
calendar
-
+
inside of a flyout.
diff --git a/src/routes/_index/component/eek/+page.marko b/src/routes/_index/component/eek/+page.marko
index 114ff1a61f..6ba33503f0 100644
--- a/src/routes/_index/component/eek/+page.marko
+++ b/src/routes/_index/component/eek/+page.marko
@@ -360,9 +360,6 @@
-
-
-
export const metadata = {
component: "eek",
diff --git a/src/routes/_index/component/filter-menu/+page.marko b/src/routes/_index/component/filter-menu/+page.marko
index be21cdb5fa..003bf6a201 100644
--- a/src/routes/_index/component/filter-menu/+page.marko
+++ b/src/routes/_index/component/filter-menu/+page.marko
@@ -3,9 +3,9 @@
A filter menu forms the basis of the
-
+
filter-menu-button
-
+
${" "}module; we provide it here as a standalone version in the case it might be opened or rendered via other means (in a dialog for example).
@@ -527,13 +527,13 @@
A form version is also available. It uses the
-
+
checkbox
-
+
and
-
+
radio
-
+
${" "}modules to render checkboxes or radios instead of ARIA menu items. The form version must contain a submit button.
diff --git a/src/routes/_index/component/icon-button/+page.marko b/src/routes/_index/component/icon-button/+page.marko
index 1233c310f3..c3b643d22c 100644
--- a/src/routes/_index/component/icon-button/+page.marko
+++ b/src/routes/_index/component/icon-button/+page.marko
@@ -1,7 +1,7 @@