diff --git a/package.json b/package.json index c308d5ac315..150f29f7ae4 100644 --- a/package.json +++ b/package.json @@ -61,14 +61,14 @@ "npm-run-all": "4.1.5", "patch-package": "8.0.0", "postinstall-postinstall": "2.1.0", - "prettier": "3.3.3", + "prettier": "3.4.2", "prop-types": "15.8.1", "react": "18.3.1", "react-dom": "18.3.1", "rimraf": "6.0.1", "size-limit": "11.1.6", "ssri": "12.0.0", - "stylelint": "16.10.0", + "stylelint": "16.11.0", "stylelint-config-css-modules": "4.4.0", "stylelint-config-prettier": "9.0.5", "stylelint-config-standard": "36.0.1", @@ -114,7 +114,7 @@ "ws": ">=8.17.1", "micromatch": ">=4.0.8", "serve-static": ">=1.16.0", - "path-to-regexp": "0.1.10" + "path-to-regexp": "0.1.12" }, "engines": { "node": ">=12.0.0", diff --git a/src/implementations/vanilla/components/banner/banner.scss b/src/implementations/vanilla/components/banner/banner.scss index e5fcf4ff476..2032df0205c 100644 --- a/src/implementations/vanilla/components/banner/banner.scss +++ b/src/implementations/vanilla/components/banner/banner.scss @@ -260,7 +260,8 @@ $banner: null !default; .ecl-banner--v-bottom & { padding-bottom: calc( - #{map.get($banner, 'container-padding-bottom', 'desktop')} + var(--banner-footer-height) + #{map.get($banner, 'container-padding-bottom', 'desktop')} + + var(--banner-footer-height) ); } } diff --git a/src/implementations/vanilla/components/button/button-print.scss b/src/implementations/vanilla/components/button/button-print.scss index c7a08d434a6..2d6f7182e9c 100644 --- a/src/implementations/vanilla/components/button/button-print.scss +++ b/src/implementations/vanilla/components/button/button-print.scss @@ -61,18 +61,12 @@ $button: null !default; map.get($button, #{$variant}, 'border-color'); color: map.get($button, #{$variant}, 'color'); padding: calc( - #{map.get($button, 'padding-vertical')} - #{map.get( - $button, - #{$variant}, - 'border-width' - )} + #{map.get($button, 'padding-vertical')} - + #{map.get($button, #{$variant}, 'border-width')} ) calc( - #{map.get($button, 'padding-horizontal')} - #{map.get( - $button, - #{$variant}, - 'border-width' - )} + #{map.get($button, 'padding-horizontal')} - + #{map.get($button, #{$variant}, 'border-width')} ); } diff --git a/src/implementations/vanilla/components/button/button.scss b/src/implementations/vanilla/components/button/button.scss index 080dd7ac7fb..77e5042fa86 100644 --- a/src/implementations/vanilla/components/button/button.scss +++ b/src/implementations/vanilla/components/button/button.scss @@ -105,18 +105,12 @@ $min-width: 44px; // According to COMM every interactive element should be at le map.get($button, #{$variant}, 'border-color'); color: map.get($button, #{$variant}, 'color'); padding: calc( - #{map.get($button, 'padding-vertical')} - #{map.get( - $button, - #{$variant}, - 'border-width' - )} + #{map.get($button, 'padding-vertical')} - + #{map.get($button, #{$variant}, 'border-width')} ) calc( - #{map.get($button, 'padding-horizontal')} - #{map.get( - $button, - #{$variant}, - 'border-width' - )} + #{map.get($button, 'padding-horizontal')} - + #{map.get($button, #{$variant}, 'border-width')} ); &:hover { @@ -129,11 +123,8 @@ $min-width: 44px; // According to COMM every interactive element should be at le background-color: map.get($button, #{$variant}, 'background-focus'); border-color: map.get($button, #{$variant}, 'border-color-focus'); color: map.get($button, #{$variant}, 'color-focus'); - outline: #{map.get($button, #{$variant}, 'outline-width')} solid #{map.get( - $button, - #{$variant}, - 'outline-color' - )}; + outline: #{map.get($button, #{$variant}, 'outline-width')} solid + #{map.get($button, #{$variant}, 'outline-color')}; outline-offset: map.get($button, #{$variant}, 'outline-offset'); } diff --git a/src/implementations/vanilla/components/category-filter/category-filter.scss b/src/implementations/vanilla/components/category-filter/category-filter.scss index d994e0849e3..b2fc2ac179e 100644 --- a/src/implementations/vanilla/components/category-filter/category-filter.scss +++ b/src/implementations/vanilla/components/category-filter/category-filter.scss @@ -134,10 +134,8 @@ $category-filter: null !default; &.ecl-category-filter__item--has-children { padding-inline-start: calc( - var(--s-m) + #{$level - 2} * #{map.get( - $category-filter, - 'subitem-spacing' - )} + var(--s-m) + #{$level - 2} * + #{map.get($category-filter, 'subitem-spacing')} ); } } diff --git a/src/implementations/vanilla/components/content-block/content-block-print.scss b/src/implementations/vanilla/components/content-block/content-block-print.scss index e303e97d5cb..e4acc212fa8 100644 --- a/src/implementations/vanilla/components/content-block/content-block-print.scss +++ b/src/implementations/vanilla/components/content-block/content-block-print.scss @@ -37,11 +37,8 @@ $content-block: null !default; flex-wrap: wrap; font: map.get($theme, 'font-print', 's'); list-style: none; - margin: map.get($theme, 'spacing-print', 'xs') 0 -#{map.get( - $theme, - 'spacing-print', - 'xs' - )}; + margin: map.get($theme, 'spacing-print', 'xs') + 0 -#{map.get($theme, 'spacing-print', 'xs')}; padding: 0; width: 100%; } @@ -105,11 +102,8 @@ $content-block: null !default; display: inline-flex; flex-wrap: wrap; list-style: none; - margin: map.get($theme, 'spacing-print', 'l') 0 -#{map.get( - $theme, - 'spacing-print', - 'xs' - )}; + margin: map.get($theme, 'spacing-print', 'l') + 0 -#{map.get($theme, 'spacing-print', 'xs')}; padding: 0; width: 100%; } diff --git a/src/implementations/vanilla/components/description-list/description-list-print.scss b/src/implementations/vanilla/components/description-list/description-list-print.scss index 6f972cfece2..946768cb105 100644 --- a/src/implementations/vanilla/components/description-list/description-list-print.scss +++ b/src/implementations/vanilla/components/description-list/description-list-print.scss @@ -175,11 +175,8 @@ $description-list-print: null !default; margin-top: map.get($theme, 'spacing-print', 'm'); overflow-wrap: break-word; width: calc( - #{map.get($description-list-print, 'definition-width')} - #{map.get( - $theme, - 'spacing-print', - 'xl' - )} + #{map.get($description-list-print, 'definition-width')} - + #{map.get($theme, 'spacing-print', 'xl')} ); } diff --git a/src/implementations/vanilla/components/label/label-print.scss b/src/implementations/vanilla/components/label/label-print.scss index 6b125f0c147..247b6be2850 100644 --- a/src/implementations/vanilla/components/label/label-print.scss +++ b/src/implementations/vanilla/components/label/label-print.scss @@ -17,16 +17,12 @@ $label-print: null !default; font: map.get($theme, 'font-print', 's'); margin: 0; padding: calc( - #{map.get($label-print, 'padding-vertical')} - #{map.get( - $label, - 'border-width' - )} + #{map.get($label-print, 'padding-vertical')} - + #{map.get($label, 'border-width')} ) calc( - #{map.get($label-print, 'padding-horizontal')} - #{map.get( - $label, - 'border-width' - )} + #{map.get($label-print, 'padding-horizontal')} - + #{map.get($label, 'border-width')} ); text-transform: uppercase; } diff --git a/src/implementations/vanilla/components/label/label.scss b/src/implementations/vanilla/components/label/label.scss index 28113d270f5..72b5337461f 100644 --- a/src/implementations/vanilla/components/label/label.scss +++ b/src/implementations/vanilla/components/label/label.scss @@ -16,16 +16,12 @@ $label: null !default; font: var(--f-ui-s); margin: 0; padding: calc( - #{map.get($label, 'padding-vertical')} - #{map.get( - $label, - 'border-width' - )} + #{map.get($label, 'padding-vertical')} - + #{map.get($label, 'border-width')} ) calc( - #{map.get($label, 'padding-horizontal')} - #{map.get( - $label, - 'border-width' - )} + #{map.get($label, 'padding-horizontal')} - + #{map.get($label, 'border-width')} ); text-transform: uppercase; } diff --git a/src/implementations/vanilla/components/link/link.scss b/src/implementations/vanilla/components/link/link.scss index 4e7b9b9ed02..20b44db6181 100644 --- a/src/implementations/vanilla/components/link/link.scss +++ b/src/implementations/vanilla/components/link/link.scss @@ -179,18 +179,12 @@ $min-width: 44px; // According to COMM every interactive element should be at le font: map.get($link, 'button', 'font'); min-width: $min-width; padding: calc( - #{map.get($link, 'button', 'padding-vertical')} - #{map.get( - $link, - 'button', - 'border-width' - )} + #{map.get($link, 'button', 'padding-vertical')} - + #{map.get($link, 'button', 'border-width')} ) calc( - #{map.get($link, 'button', 'padding-horizontal')} - #{map.get( - $link, - 'button', - 'border-width' - )} + #{map.get($link, 'button', 'padding-horizontal')} - + #{map.get($link, 'button', 'border-width')} ); text-decoration: none; diff --git a/src/implementations/vanilla/components/page-header/page-header-print-ec.scss b/src/implementations/vanilla/components/page-header/page-header-print-ec.scss index 91019262bf5..d653ecef51d 100644 --- a/src/implementations/vanilla/components/page-header/page-header-print-ec.scss +++ b/src/implementations/vanilla/components/page-header/page-header-print-ec.scss @@ -17,11 +17,8 @@ $page-header-print: null !default; .ecl-page-header__info { margin-bottom: map.get($theme, 'spacing-print', 's'); margin-top: calc( - #{map.get($theme, 'spacing-print', 'm')} + #{map.get( - $theme, - 'spacing-print', - 's' - )} + #{map.get($theme, 'spacing-print', 'm')} + + #{map.get($theme, 'spacing-print', 's')} ); } diff --git a/src/implementations/vanilla/components/range/range.scss b/src/implementations/vanilla/components/range/range.scss index 550b0aa3783..ac319678132 100644 --- a/src/implementations/vanilla/components/range/range.scss +++ b/src/implementations/vanilla/components/range/range.scss @@ -47,7 +47,9 @@ $range: null !default; .ecl-range { margin: calc( -#{map.get($range, 'touch-area')} + - (#{map.get($range, 'slider-size')} - #{map.get($range, 'range-size')}) / + ( + #{map.get($range, 'slider-size')} - #{map.get($range, 'range-size')} + ) / 2 ) 0 -#{map.get($range, 'touch-area')}; @@ -56,12 +58,12 @@ $range: null !default; .ecl-form-label + *:not(.ecl-help-block, .ecl-feedback-message) { /* eslint-disable-next-line no-math-div */ margin: calc( - -#{map.get($range, 'touch-area')} + #{map.get( - $range, - 'range-margin-top' - )} + ( + -#{map.get($range, 'touch-area')} + + #{map.get($range, 'range-margin-top')} + + ( #{map.get($range, 'slider-size')} - #{map.get($range, 'range-size')} - ) / 2 + ) / + 2 ) 0 -#{map.get($range, 'touch-area')}; } diff --git a/src/implementations/vanilla/components/select/select.scss b/src/implementations/vanilla/components/select/select.scss index f6e53e20bc4..b7c70fa73f5 100644 --- a/src/implementations/vanilla/components/select/select.scss +++ b/src/implementations/vanilla/components/select/select.scss @@ -25,23 +25,17 @@ $select: null !default; margin: 0; overflow: hidden; padding-bottom: calc( - #{map.get($select, 'padding-vertical')} - #{map.get( - $select, - 'border-width' - )} + #{map.get($select, 'padding-vertical')} - + #{map.get($select, 'border-width')} ); padding-inline-end: calc( - var(--s-m) + #{map.get($select, 'arrow-width')} - #{map.get( - $select, - 'border-width' - )} + var(--s-m) + #{map.get($select, 'arrow-width')} - + #{map.get($select, 'border-width')} ); padding-inline-start: calc(var(--s-m) - #{map.get($select, 'border-width')}); padding-top: calc( - #{map.get($select, 'padding-vertical')} - #{map.get( - $select, - 'border-width' - )} + #{map.get($select, 'padding-vertical')} - + #{map.get($select, 'border-width')} ); text-align: left; text-overflow: ellipsis; @@ -70,25 +64,19 @@ $select: null !default; box-shadow: map.get($select, 'shadow-hover'); outline: none; padding-bottom: calc( - #{map.get($select, 'padding-vertical')} - #{map.get( - $select, - 'border-width-focus' - )} + #{map.get($select, 'padding-vertical')} - + #{map.get($select, 'border-width-focus')} ); padding-inline-end: calc( - var(--s-m) + #{map.get($select, 'arrow-width')} - #{map.get( - $select, - 'border-width-focus' - )} + var(--s-m) + #{map.get($select, 'arrow-width')} - + #{map.get($select, 'border-width-focus')} ); padding-inline-start: calc( var(--s-m) - #{map.get($select, 'border-width-focus')} ); padding-top: calc( - #{map.get($select, 'padding-vertical')} - #{map.get( - $select, - 'border-width-focus' - )} + #{map.get($select, 'padding-vertical')} - + #{map.get($select, 'border-width-focus')} ); } } diff --git a/src/implementations/vanilla/components/site-header/_site-header-language-switcher.scss b/src/implementations/vanilla/components/site-header/_site-header-language-switcher.scss index 3b6841014be..af36db91ca0 100644 --- a/src/implementations/vanilla/components/site-header/_site-header-language-switcher.scss +++ b/src/implementations/vanilla/components/site-header/_site-header-language-switcher.scss @@ -67,10 +67,8 @@ $language-list: null !default; 'inline-start' ); padding-inline-end: calc( - #{map.get($language-list, 'container-padding-mobile', 'inline-end')} + #{map.get( - $language-list, - 'item-active-border-width' - )} + #{map.get($language-list, 'container-padding-mobile', 'inline-end')} + + #{map.get($language-list, 'item-active-border-width')} ); position: absolute; right: 0; @@ -99,10 +97,8 @@ $language-list: null !default; display: flex; justify-content: space-between; padding-inline-start: calc( - #{map.get($language-list, 'title-padding-start')} + #{map.get( - $language-list, - 'item-active-border-width' - )} + #{map.get($language-list, 'title-padding-start')} + + #{map.get($language-list, 'item-active-border-width')} ); } @@ -142,10 +138,8 @@ $language-list: null !default; 'block-end' ); padding-inline-start: calc( - #{map.get($language-list, 'category-title-padding', 'inline-start')} + #{map.get( - $language-list, - 'item-active-border-width' - )} + #{map.get($language-list, 'category-title-padding', 'inline-start')} + + #{map.get($language-list, 'item-active-border-width')} ); padding-inline-end: map.get( $language-list, @@ -248,10 +242,8 @@ $language-list: null !default; 'inline-start' ); padding-inline-end: calc( - #{map.get($language-list, 'container-padding-desktop', 'inline-end')} + #{map.get( - $language-list, - 'item-active-border-width' - )} + #{map.get($language-list, 'container-padding-desktop', 'inline-end')} + + #{map.get($language-list, 'item-active-border-width')} ); right: auto; transform: translateX(-50%); diff --git a/src/implementations/vanilla/components/splash-page/splash-page-print.scss b/src/implementations/vanilla/components/splash-page/splash-page-print.scss index 6a20d8611e3..cd615fbdd8b 100644 --- a/src/implementations/vanilla/components/splash-page/splash-page-print.scss +++ b/src/implementations/vanilla/components/splash-page/splash-page-print.scss @@ -50,7 +50,11 @@ $language-list-print: null !default; 'inline-start' ); padding-inline-end: calc( - #{map.get($language-list-print, 'container-padding-desktop', 'inline-end')} + + #{map.get( + $language-list-print, + 'container-padding-desktop', + 'inline-end' + )} + #{map.get($language-list, 'item-active-border-width')} ); } diff --git a/src/implementations/vanilla/components/splash-page/splash-page.scss b/src/implementations/vanilla/components/splash-page/splash-page.scss index 1620d46f20e..d2b900e196b 100644 --- a/src/implementations/vanilla/components/splash-page/splash-page.scss +++ b/src/implementations/vanilla/components/splash-page/splash-page.scss @@ -55,10 +55,8 @@ $language-list: null !default; 'inline-start' ); padding-inline-end: calc( - #{map.get($language-list, 'container-padding-mobile', 'inline-end')} + #{map.get( - $language-list, - 'item-active-border-width' - )} + #{map.get($language-list, 'container-padding-mobile', 'inline-end')} + + #{map.get($language-list, 'item-active-border-width')} ); } @@ -66,10 +64,8 @@ $language-list: null !default; font: map.get($language-list, 'header-font-mobile'); margin: 0; padding-inline-start: calc( - #{map.get($language-list, 'title-padding-start')} + #{map.get( - $language-list, - 'item-active-border-width' - )} + #{map.get($language-list, 'title-padding-start')} + + #{map.get($language-list, 'item-active-border-width')} ); } @@ -97,10 +93,8 @@ $language-list: null !default; 'block-end' ); padding-inline-start: calc( - #{map.get($language-list, 'category-title-padding', 'inline-start')} + #{map.get( - $language-list, - 'item-active-border-width' - )} + #{map.get($language-list, 'category-title-padding', 'inline-start')} + + #{map.get($language-list, 'item-active-border-width')} ); padding-inline-end: map.get( $language-list, @@ -201,10 +195,8 @@ $language-list: null !default; 'inline-start' ); padding-inline-end: calc( - #{map.get($language-list, 'container-padding-mobile', 'inline-end')} + #{map.get( - $language-list, - 'item-active-border-width' - )} + #{map.get($language-list, 'container-padding-mobile', 'inline-end')} + + #{map.get($language-list, 'item-active-border-width')} ); } diff --git a/src/implementations/vanilla/components/text-area/text-area.scss b/src/implementations/vanilla/components/text-area/text-area.scss index 405b9947045..dfc7a113a5b 100644 --- a/src/implementations/vanilla/components/text-area/text-area.scss +++ b/src/implementations/vanilla/components/text-area/text-area.scss @@ -24,16 +24,12 @@ $textarea: null !default; margin: 0; max-width: 100%; padding: calc( - #{map.get($textarea, 'padding-vertical')} - #{map.get( - $textarea, - 'border-width' - )} + #{map.get($textarea, 'padding-vertical')} - + #{map.get($textarea, 'border-width')} ) calc( - #{map.get($textarea, 'padding-horizontal')} - #{map.get( - $textarea, - 'border-width' - )} + #{map.get($textarea, 'padding-horizontal')} - + #{map.get($textarea, 'border-width')} ); &::placeholder { diff --git a/src/implementations/vanilla/components/timeline/timeline.scss b/src/implementations/vanilla/components/timeline/timeline.scss index e8e900e53ca..dfc3b7aa121 100644 --- a/src/implementations/vanilla/components/timeline/timeline.scss +++ b/src/implementations/vanilla/components/timeline/timeline.scss @@ -16,7 +16,8 @@ $timeline: null !default; list-style: none; margin-bottom: 0; margin-inline-start: calc( - var(--s-l) + #{map.get($timeline, 'bullet-size')} / 2 + map.get($timeline, 'bullet-border-width') + var(--s-l) + #{map.get($timeline, 'bullet-size')} / 2 + + map.get($timeline, 'bullet-border-width') ); margin-top: 0; padding-inline-start: 0; @@ -54,8 +55,10 @@ $timeline: null !default; content: ''; height: map.get($timeline, 'bullet-size') + (map.get($timeline, 'bullet-border-width') * 2); - left: -(#{calc(map.get($timeline, 'bullet-size') / 2) + - map.get($timeline, 'bullet-border-width')}); + left: -( + #{calc(map.get($timeline, 'bullet-size') / 2) + + map.get($timeline, 'bullet-border-width')} + ); position: absolute; top: map.get($timeline, 'bullet-top-position'); width: map.get($timeline, 'bullet-size') + @@ -136,10 +139,12 @@ $timeline: null !default; @include breakpoints.up('l') { .ecl-timeline__label { left: calc( - -1 * (#{map.get($timeline, 'left-spacing')} + var(--s-m) + #{map.get( - $timeline, - 'bullet-size' - )} / 2 + map.get($timeline, 'bullet-border-width')) + -1 * + ( + #{map.get($timeline, 'left-spacing')} + var(--s-m) + + #{map.get($timeline, 'bullet-size')} / 2 + + map.get($timeline, 'bullet-border-width') + ) ); position: map.get($timeline, 'label-layout'); text-align: map.get($timeline, 'label-alignment'); diff --git a/src/playground/addons/storybook-addon-code/package.json b/src/playground/addons/storybook-addon-code/package.json index b572f70e0ba..f8c832a84f3 100644 --- a/src/playground/addons/storybook-addon-code/package.json +++ b/src/playground/addons/storybook-addon-code/package.json @@ -6,10 +6,10 @@ "private": true, "dependencies": { "@ecl/builder": "4.9.0", - "@storybook/components": "8.4.6", - "@storybook/manager-api": "8.4.6", - "@storybook/preview-api": "8.4.6", - "@storybook/theming": "8.4.6", + "@storybook/components": "8.4.7", + "@storybook/manager-api": "8.4.7", + "@storybook/preview-api": "8.4.7", + "@storybook/theming": "8.4.7", "html-entities": "2.5.2", "js-beautify": "1.15.1", "prop-types": "15.8.1", diff --git a/src/playground/addons/storybook-addon-notes/package.json b/src/playground/addons/storybook-addon-notes/package.json index ae62a3ee48e..2fa294c4c48 100644 --- a/src/playground/addons/storybook-addon-notes/package.json +++ b/src/playground/addons/storybook-addon-notes/package.json @@ -5,10 +5,10 @@ "main": "index.js", "private": true, "dependencies": { - "@emotion/react": "11.13.5", - "@emotion/styled": "11.13.5", - "@storybook/manager-api": "8.4.6", - "@storybook/preview-api": "8.4.6", + "@emotion/react": "11.14.0", + "@emotion/styled": "11.14.0", + "@storybook/manager-api": "8.4.7", + "@storybook/preview-api": "8.4.7", "he": "1.2.0", "marked": "10.0.0", "prismjs": "1.29.0", diff --git a/src/playground/addons/storybook-addon-system-switcher/package.json b/src/playground/addons/storybook-addon-system-switcher/package.json index 3f7a9197fb8..0dfa768f718 100644 --- a/src/playground/addons/storybook-addon-system-switcher/package.json +++ b/src/playground/addons/storybook-addon-system-switcher/package.json @@ -9,9 +9,9 @@ ], "dependencies": { "@ecl/builder": "4.9.0", - "@storybook/components": "8.4.6", - "@storybook/manager-api": "8.4.6", - "@storybook/preview-api": "8.4.6", + "@storybook/components": "8.4.7", + "@storybook/manager-api": "8.4.7", + "@storybook/preview-api": "8.4.7", "react": "18.3.1", "react-dom": "18.3.1" } diff --git a/src/playground/ec/package.json b/src/playground/ec/package.json index 6a94f6c369e..34f9c2a5c40 100644 --- a/src/playground/ec/package.json +++ b/src/playground/ec/package.json @@ -12,17 +12,17 @@ "devDependencies": { "@babel/core": "7.26.0", "@babel/preset-env": "7.26.0", - "@babel/preset-react": "7.25.9", + "@babel/preset-react": "7.26.3", "@babel/runtime": "7.26.0", "@iframe-resizer/child": "5.3.2", - "@storybook/addon-a11y": "8.4.6", + "@storybook/addon-a11y": "8.4.7", "@storybook/addon-cssresources": "6.2.9", - "@storybook/addon-essentials": "8.4.6", - "@storybook/addon-links": "8.4.6", - "@storybook/builder-webpack5": "8.4.6", - "@storybook/cli": "8.4.6", - "@storybook/html": "8.4.6", - "@storybook/html-webpack5": "8.4.6", + "@storybook/addon-essentials": "8.4.7", + "@storybook/addon-links": "8.4.7", + "@storybook/builder-webpack5": "8.4.7", + "@storybook/cli": "8.4.7", + "@storybook/html": "8.4.7", + "@storybook/html-webpack5": "8.4.7", "babel-loader": "9.2.1", "browser-update": "3.3.55", "buffer": "6.0.3", diff --git a/src/playground/eu/package.json b/src/playground/eu/package.json index 4107cbed0db..093971a8975 100644 --- a/src/playground/eu/package.json +++ b/src/playground/eu/package.json @@ -12,17 +12,17 @@ "devDependencies": { "@babel/core": "7.26.0", "@babel/preset-env": "7.26.0", - "@babel/preset-react": "7.25.9", + "@babel/preset-react": "7.26.3", "@babel/runtime": "7.26.0", "@iframe-resizer/child": "5.3.2", - "@storybook/addon-a11y": "8.4.6", + "@storybook/addon-a11y": "8.4.7", "@storybook/addon-cssresources": "6.2.9", - "@storybook/addon-essentials": "8.4.6", - "@storybook/addon-links": "8.4.6", - "@storybook/builder-webpack5": "8.4.6", - "@storybook/cli": "8.4.6", - "@storybook/html": "8.4.6", - "@storybook/html-webpack5": "8.4.6", + "@storybook/addon-essentials": "8.4.7", + "@storybook/addon-links": "8.4.7", + "@storybook/builder-webpack5": "8.4.7", + "@storybook/cli": "8.4.7", + "@storybook/html": "8.4.7", + "@storybook/html-webpack5": "8.4.7", "babel-loader": "9.2.1", "browser-update": "3.3.55", "buffer": "6.0.3", diff --git a/src/presets/ec/src/ec-easy-to-read.scss b/src/presets/ec/src/ec-easy-to-read.scss index e0e15267ae0..762cc90f952 100644 --- a/src/presets/ec/src/ec-easy-to-read.scss +++ b/src/presets/ec/src/ec-easy-to-read.scss @@ -2,11 +2,9 @@ @use '@ecl/theme-ec/theme' as *; .ecl-easy-to-read { - --f-m: 18px /#{map.get($theme, 'line-height', 'l')} #{map.get( - $theme, - 'font-family', - 'default' - )} #{map.get($theme, 'font-weight', 'normal')}; + --f-m: 18px /#{map.get($theme, 'line-height', 'l')} + #{map.get($theme, 'font-family', 'default')} + #{map.get($theme, 'font-weight', 'normal')}; font: var(--f-m); diff --git a/src/presets/eu/src/eu-easy-to-read.scss b/src/presets/eu/src/eu-easy-to-read.scss index e0e15267ae0..762cc90f952 100644 --- a/src/presets/eu/src/eu-easy-to-read.scss +++ b/src/presets/eu/src/eu-easy-to-read.scss @@ -2,11 +2,9 @@ @use '@ecl/theme-ec/theme' as *; .ecl-easy-to-read { - --f-m: 18px /#{map.get($theme, 'line-height', 'l')} #{map.get( - $theme, - 'font-family', - 'default' - )} #{map.get($theme, 'font-weight', 'normal')}; + --f-m: 18px /#{map.get($theme, 'line-height', 'l')} + #{map.get($theme, 'font-family', 'default')} + #{map.get($theme, 'font-weight', 'normal')}; font: var(--f-m); diff --git a/src/themes/ec/maps/typography.scss b/src/themes/ec/maps/typography.scss index a9a71372959..6442c641594 100644 --- a/src/themes/ec/maps/typography.scss +++ b/src/themes/ec/maps/typography.scss @@ -41,42 +41,38 @@ $line-height-ui: ( 'm': 1.75rem, ) !default; $font: ( - 'xs': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - 'xs' - ) + '/' + map.get($line-height, 'xs')} #{map.get($font-family, 'default')}, - 's': normal normal map.get($font-weight, 'regular') #{map.get($font-size, 's') + - '/' + map.get($line-height, 's')} #{map.get($font-family, 'default')}, - 'm': normal normal map.get($font-weight, 'regular') #{map.get($font-size, 'm') + - '/' + map.get($line-height, 'm')} #{map.get($font-family, 'default')}, - 'l': normal normal map.get($font-weight, 'regular') #{map.get($font-size, 'l') + - '/' + map.get($line-height, 'l')} #{map.get($font-family, 'default')}, - 'xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - 'xl' - ) + '/' + map.get($line-height, 'xl')} #{map.get($font-family, 'default')}, - '2xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - '2xl' - ) + '/' + map.get($line-height, '2xl')} #{map.get($font-family, 'default')}, - '3xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - '3xl' - ) + '/' + map.get($line-height, '3xl')} #{map.get($font-family, 'default')}, - '4xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - '4xl' - ) + '/' + map.get($line-height, '4xl')} #{map.get($font-family, 'default')}, + 'xs': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'xs') + '/' + map.get($line-height, 'xs')} + #{map.get($font-family, 'default')}, + 's': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 's') + '/' + map.get($line-height, 's')} + #{map.get($font-family, 'default')}, + 'm': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'm') + '/' + map.get($line-height, 'm')} + #{map.get($font-family, 'default')}, + 'l': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'l') + '/' + map.get($line-height, 'l')} + #{map.get($font-family, 'default')}, + 'xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'xl') + '/' + map.get($line-height, 'xl')} + #{map.get($font-family, 'default')}, + '2xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, '2xl') + '/' + map.get($line-height, '2xl')} + #{map.get($font-family, 'default')}, + '3xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, '3xl') + '/' + map.get($line-height, '3xl')} + #{map.get($font-family, 'default')}, + '4xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, '4xl') + '/' + map.get($line-height, '4xl')} + #{map.get($font-family, 'default')}, ) !default; $font-ui: ( - 's': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size-ui, - 's' - ) + '/' + map.get($line-height-ui, 's')} #{map.get($font-family, 'default')}, - 'm': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size-ui, - 'm' - ) + '/' + map.get($line-height-ui, 'm')} #{map.get($font-family, 'default')}, + 's': normal normal map.get($font-weight, 'regular') + #{map.get($font-size-ui, 's') + '/' + map.get($line-height-ui, 's')} + #{map.get($font-family, 'default')}, + 'm': normal normal map.get($font-weight, 'regular') + #{map.get($font-size-ui, 'm') + '/' + map.get($line-height-ui, 'm')} + #{map.get($font-family, 'default')}, ) !default; // Print @@ -124,76 +120,41 @@ $line-height-ui-print: ( 'm': 18.4pt, ) !default; $font-print: ( - 'xs': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'xs' - ) + '/' + map.get($line-height-print, 'xs')} #{map.get( - $font-family-print, - 'default' - )}, - 's': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 's' - ) + '/' + map.get($line-height-print, 's')} #{map.get( - $font-family-print, - 'default' - )}, - 'm': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'm' - ) + '/' + map.get($line-height-print, 'm')} #{map.get( - $font-family-print, - 'default' - )}, - 'l': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'l' - ) + '/' + map.get($line-height-print, 'l')} #{map.get( - $font-family-print, - 'default' - )}, - 'xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'xl' - ) + '/' + map.get($line-height-print, 'xl')} #{map.get( - $font-family-print, - 'default' - )}, - '2xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - '2xl' - ) + '/' + map.get($line-height-print, '2xl')} #{map.get( - $font-family-print, - 'default' - )}, - '3xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - '3xl' - ) + '/' + map.get($line-height-print, '3xl')} #{map.get( - $font-family-print, - 'default' - )}, - '4xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - '4xl' - ) + '/' + map.get($line-height-print, '4xl')} #{map.get( - $font-family-print, - 'default' - )}, + 'xs': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'xs') + '/' + map.get($line-height-print, 'xs')} + #{map.get($font-family-print, 'default')}, + 's': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 's') + '/' + map.get($line-height-print, 's')} + #{map.get($font-family-print, 'default')}, + 'm': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'm') + '/' + map.get($line-height-print, 'm')} + #{map.get($font-family-print, 'default')}, + 'l': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'l') + '/' + map.get($line-height-print, 'l')} + #{map.get($font-family-print, 'default')}, + 'xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'xl') + '/' + map.get($line-height-print, 'xl')} + #{map.get($font-family-print, 'default')}, + '2xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, '2xl') + '/' + + map.get($line-height-print, '2xl')} + #{map.get($font-family-print, 'default')}, + '3xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, '3xl') + '/' + + map.get($line-height-print, '3xl')} + #{map.get($font-family-print, 'default')}, + '4xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, '4xl') + '/' + + map.get($line-height-print, '4xl')} + #{map.get($font-family-print, 'default')}, ) !default; $font-ui-print: ( - 's': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-ui-print, - 's' - ) + '/' + map.get($line-height-ui-print, 's')} #{map.get( - $font-family-print, - 'default' - )}, - 'm': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-ui-print, - 'm' - ) + '/' + map.get($line-height-ui-print, 'm')} #{map.get( - $font-family-print, - 'default' - )}, + 's': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-ui-print, 's') + '/' + + map.get($line-height-ui-print, 's')} + #{map.get($font-family-print, 'default')}, + 'm': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-ui-print, 'm') + '/' + + map.get($line-height-ui-print, 'm')} + #{map.get($font-family-print, 'default')}, ) !default; diff --git a/src/themes/ec/variables/_banner.scss b/src/themes/ec/variables/_banner.scss index a19f409ec4d..3adad10a63b 100644 --- a/src/themes/ec/variables/_banner.scss +++ b/src/themes/ec/variables/_banner.scss @@ -49,8 +49,7 @@ $banner: ( ), description-margin: var(--s-s), // DEPRECATED - background: - ( + background: ( 'plain-background': var(--c-p), 'text-box-mobile': var(--c-n-40), 'text-box-desktop': var(--c-bg), diff --git a/src/themes/ec/variables/_modal.scss b/src/themes/ec/variables/_modal.scss index 0d43c01ef66..2d46cae3380 100644 --- a/src/themes/ec/variables/_modal.scss +++ b/src/themes/ec/variables/_modal.scss @@ -30,7 +30,8 @@ $modal: ( icon-background-height: var(--s-m), icon-background-width: var(--s-xs), icon-background-top: calc(var(--s-3xl) + var(--s-s)), - icon-background-left: - calc(var(--s-3xl) + (map.get($icon, 'l') / 2) - var(--s-2xs)), + icon-background-left: calc( + var(--s-3xl) + (map.get($icon, 'l') / 2) - var(--s-2xs) + ), ), ); diff --git a/src/themes/ec/variables/_notification.scss b/src/themes/ec/variables/_notification.scss index 13c0dafe5a7..f63b159c6dc 100644 --- a/src/themes/ec/variables/_notification.scss +++ b/src/themes/ec/variables/_notification.scss @@ -39,10 +39,12 @@ $notification: ( icon-background-width: var(--s-xs), icon-background-top-mobile: calc(var(--s-m) + var(--s-s)), icon-background-top: calc(var(--s-l) + var(--s-s)), - icon-background-left-mobile: - calc(var(--s-s) + (map.get($icon, 'l') / 2) - var(--s-2xs)), - icon-background-left: - calc(var(--s-l) + (map.get($icon, 'l') / 2) - var(--s-2xs)), + icon-background-left-mobile: calc( + var(--s-s) + (map.get($icon, 'l') / 2) - var(--s-2xs) + ), + icon-background-left: calc( + var(--s-l) + (map.get($icon, 'l') / 2) - var(--s-2xs) + ), ), error: ( background: var(--c-n-20), diff --git a/src/themes/eu/maps/typography.scss b/src/themes/eu/maps/typography.scss index 031e8967350..4d4f17244f4 100644 --- a/src/themes/eu/maps/typography.scss +++ b/src/themes/eu/maps/typography.scss @@ -52,55 +52,48 @@ $line-height-ui: ( ) !default; $font: ( // DEPRECATED - '2xs': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - '2xs' - ) + '/' + map.get($line-height, '2xs')} #{map.get($font-family, 'default')}, - 'xs': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - 'xs' - ) + '/' + map.get($line-height, 'xs')} #{map.get($font-family, 'default')}, - 's': normal normal map.get($font-weight, 'regular') #{map.get($font-size, 's') + - '/' + map.get($line-height, 's')} #{map.get($font-family, 'default')}, - 'm': normal normal map.get($font-weight, 'regular') #{map.get($font-size, 'm') + - '/' + map.get($line-height, 'm')} #{map.get($font-family, 'default')}, - 'l': normal normal map.get($font-weight, 'regular') #{map.get($font-size, 'l') + - '/' + map.get($line-height, 'l')} #{map.get($font-family, 'default')}, - 'xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - 'xl' - ) + '/' + map.get($line-height, 'xl')} #{map.get($font-family, 'default')}, - '2xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - '2xl' - ) + '/' + map.get($line-height, '2xl')} #{map.get($font-family, 'default')}, - '3xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - '3xl' - ) + '/' + map.get($line-height, '3xl')} #{map.get($font-family, 'default')}, - '4xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - '4xl' - ) + '/' + map.get($line-height, '4xl')} #{map.get($font-family, 'default')}, - '5xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - '5xl' - ) + '/' + map.get($line-height, '5xl')} #{map.get($font-family, 'default')}, + '2xs': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, '2xs') + '/' + map.get($line-height, '2xs')} + #{map.get($font-family, 'default')}, + 'xs': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'xs') + '/' + map.get($line-height, 'xs')} + #{map.get($font-family, 'default')}, + 's': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 's') + '/' + map.get($line-height, 's')} + #{map.get($font-family, 'default')}, + 'm': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'm') + '/' + map.get($line-height, 'm')} + #{map.get($font-family, 'default')}, + 'l': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'l') + '/' + map.get($line-height, 'l')} + #{map.get($font-family, 'default')}, + 'xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'xl') + '/' + map.get($line-height, 'xl')} + #{map.get($font-family, 'default')}, + '2xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, '2xl') + '/' + map.get($line-height, '2xl')} + #{map.get($font-family, 'default')}, + '3xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, '3xl') + '/' + map.get($line-height, '3xl')} + #{map.get($font-family, 'default')}, + '4xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, '4xl') + '/' + map.get($line-height, '4xl')} + #{map.get($font-family, 'default')}, + '5xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, '5xl') + '/' + map.get($line-height, '5xl')} + #{map.get($font-family, 'default')}, // DEPRECATED - '6xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - '6xl' - ) + '/' + map.get($line-height, '6xl')} #{map.get($font-family, 'default')} + '6xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, '6xl') + '/' + map.get($line-height, '6xl')} + #{map.get($font-family, 'default')} ) !default; $font-ui: ( - 's': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size-ui, - 's' - ) + '/' + map.get($line-height-ui, 's')} #{map.get($font-family, 'default')}, - 'm': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size-ui, - 'm' - ) + '/' + map.get($line-height-ui, 'm')} #{map.get($font-family, 'default')}, + 's': normal normal map.get($font-weight, 'regular') + #{map.get($font-size-ui, 's') + '/' + map.get($line-height-ui, 's')} + #{map.get($font-family, 'default')}, + 'm': normal normal map.get($font-weight, 'regular') + #{map.get($font-size-ui, 'm') + '/' + map.get($line-height-ui, 'm')} + #{map.get($font-family, 'default')}, ) !default; // Print @@ -145,8 +138,7 @@ $line-height-print: ( '3xl': 21pt, '4xl': 24pt, '5xl': 30pt, - '6xl': 33pt, - // DEPRECATED + '6xl': 33pt, // DEPRECATED ) !default; $font-size-ui-print: ( 's': 9pt, @@ -159,100 +151,56 @@ $line-height-ui-print: ( ) !default; $font-print: ( // DEPRECATED - '2xs': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - '2xs' - ) + '/' + map.get($line-height-print, '2xs')} #{map.get( - $font-family-print, - 'default' - )}, - 'xs': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'xs' - ) + '/' + map.get($line-height-print, 'xs')} #{map.get( - $font-family-print, - 'default' - )}, - 's': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 's' - ) + '/' + map.get($line-height-print, 's')} #{map.get( - $font-family-print, - 'default' - )}, - 'm': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'm' - ) + '/' + map.get($line-height-print, 'm')} #{map.get( - $font-family-print, - 'default' - )}, - 'l': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'l' - ) + '/' + map.get($line-height-print, 'l')} #{map.get( - $font-family-print, - 'default' - )}, - 'xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'xl' - ) + '/' + map.get($line-height-print, 'xl')} #{map.get( - $font-family-print, - 'default' - )}, - '2xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - '2xl' - ) + '/' + map.get($line-height-print, '2xl')} #{map.get( - $font-family-print, - 'default' - )}, - '3xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - '3xl' - ) + '/' + map.get($line-height-print, '3xl')} #{map.get( - $font-family-print, - 'default' - )}, - '4xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - '4xl' - ) + '/' + map.get($line-height-print, '4xl')} #{map.get( - $font-family-print, - 'default' - )}, - '5xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - '5xl' - ) + '/' + map.get($line-height-print, '5xl')} #{map.get( - $font-family-print, - 'default' - )}, + '2xs': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, '2xs') + '/' + + map.get($line-height-print, '2xs')} + #{map.get($font-family-print, 'default')}, + 'xs': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'xs') + '/' + map.get($line-height-print, 'xs')} + #{map.get($font-family-print, 'default')}, + 's': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 's') + '/' + map.get($line-height-print, 's')} + #{map.get($font-family-print, 'default')}, + 'm': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'm') + '/' + map.get($line-height-print, 'm')} + #{map.get($font-family-print, 'default')}, + 'l': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'l') + '/' + map.get($line-height-print, 'l')} + #{map.get($font-family-print, 'default')}, + 'xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'xl') + '/' + map.get($line-height-print, 'xl')} + #{map.get($font-family-print, 'default')}, + '2xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, '2xl') + '/' + + map.get($line-height-print, '2xl')} + #{map.get($font-family-print, 'default')}, + '3xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, '3xl') + '/' + + map.get($line-height-print, '3xl')} + #{map.get($font-family-print, 'default')}, + '4xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, '4xl') + '/' + + map.get($line-height-print, '4xl')} + #{map.get($font-family-print, 'default')}, + '5xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, '5xl') + '/' + + map.get($line-height-print, '5xl')} + #{map.get($font-family-print, 'default')}, // DEPRECATED - '6xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - '6xl' - ) + '/' + map.get($line-height-print, '6xl')} #{map.get( - $font-family-print, - 'default' - )} + '6xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, '6xl') + '/' + + map.get($line-height-print, '6xl')} + #{map.get($font-family-print, 'default')} ) !default; $font-ui-print: ( - 's': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-ui-print, - 's' - ) + '/' + map.get($line-height-ui-print, 's')} #{map.get( - $font-family-print, - 'default' - )}, - 'm': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-ui-print, - 'm' - ) + '/' + map.get($line-height-ui-print, 'm')} #{map.get( - $font-family-print, - 'default' - )}, + 's': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-ui-print, 's') + '/' + + map.get($line-height-ui-print, 's')} + #{map.get($font-family-print, 'default')}, + 'm': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-ui-print, 'm') + '/' + + map.get($line-height-ui-print, 'm')} + #{map.get($font-family-print, 'default')}, ) !default; // DEPRECATED @@ -264,35 +212,21 @@ $line-height-prolonged: ( 'xl': 1.75rem, ) !default; $font-prolonged: ( - 'xs': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - 'xs' - ) + '/' + map.get($line-height-prolonged, 'xs')} #{map.get( - $font-family, - 'default' - )}, - 's': normal normal map.get($font-weight, 'regular') #{map.get($font-size, 's') + - '/' + map.get($line-height-prolonged, 's')} #{map.get( - $font-family, - 'default' - )}, - 'm': normal normal map.get($font-weight, 'regular') #{map.get($font-size, 'm') + - '/' + map.get($line-height-prolonged, 'm')} #{map.get( - $font-family, - 'default' - )}, - 'l': normal normal map.get($font-weight, 'regular') #{map.get($font-size, 'l') + - '/' + map.get($line-height-prolonged, 'l')} #{map.get( - $font-family, - 'default' - )}, - 'xl': normal normal map.get($font-weight, 'regular') #{map.get( - $font-size, - 'xl' - ) + '/' + map.get($line-height-prolonged, 'xl')} #{map.get( - $font-family, - 'default' - )}, + 'xs': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'xs') + '/' + map.get($line-height-prolonged, 'xs')} + #{map.get($font-family, 'default')}, + 's': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 's') + '/' + map.get($line-height-prolonged, 's')} + #{map.get($font-family, 'default')}, + 'm': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'm') + '/' + map.get($line-height-prolonged, 'm')} + #{map.get($font-family, 'default')}, + 'l': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'l') + '/' + map.get($line-height-prolonged, 'l')} + #{map.get($font-family, 'default')}, + 'xl': normal normal map.get($font-weight, 'regular') + #{map.get($font-size, 'xl') + '/' + map.get($line-height-prolonged, 'xl')} + #{map.get($font-family, 'default')}, ) !default; $line-height-prolonged-print: ( 'xs': 15pt, @@ -302,39 +236,24 @@ $line-height-prolonged-print: ( 'xl': 21pt, ) !default; $font-prolonged-print: ( - 'xs': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'xs' - ) + '/' + map.get($line-height-prolonged-print, 'xs')} #{map.get( - $font-family, - 'default' - )}, - 's': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 's' - ) + '/' + map.get($line-height-prolonged-print, 's')} #{map.get( - $font-family, - 'default' - )}, - 'm': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'm' - ) + '/' + map.get($line-height-prolonged-print, 'm')} #{map.get( - $font-family, - 'default' - )}, - 'l': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'l' - ) + '/' + map.get($line-height-prolonged-print, 'l')} #{map.get( - $font-family, - 'default' - )}, - 'xl': normal normal map.get($font-weight-print, 'regular') #{map.get( - $font-size-print, - 'xl' - ) + '/' + map.get($line-height-prolonged-print, 'xl')} #{map.get( - $font-family, - 'default' - )}, + 'xs': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'xs') + '/' + + map.get($line-height-prolonged-print, 'xs')} + #{map.get($font-family, 'default')}, + 's': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 's') + '/' + + map.get($line-height-prolonged-print, 's')} + #{map.get($font-family, 'default')}, + 'm': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'm') + '/' + + map.get($line-height-prolonged-print, 'm')} + #{map.get($font-family, 'default')}, + 'l': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'l') + '/' + + map.get($line-height-prolonged-print, 'l')} + #{map.get($font-family, 'default')}, + 'xl': normal normal map.get($font-weight-print, 'regular') + #{map.get($font-size-print, 'xl') + '/' + + map.get($line-height-prolonged-print, 'xl')} + #{map.get($font-family, 'default')}, ) !default; diff --git a/src/themes/eu/variables/_banner.scss b/src/themes/eu/variables/_banner.scss index 9000932c180..6c78ab1c044 100644 --- a/src/themes/eu/variables/_banner.scss +++ b/src/themes/eu/variables/_banner.scss @@ -49,16 +49,24 @@ $banner: ( ), description-margin: var(--s-s), // DEPRECATED - background: - ( - 'plain-background': - linear-gradient(to right, var(--c-p-140) 0%, var(--c-p) 100%), + background: ( + 'plain-background': linear-gradient( + to right, + var(--c-p-140) 0%, + var(--c-p) 100% + ), 'text-box-mobile': map.get($color, 'white'), 'text-box-desktop': rgba(255, 255, 255, 0.9), - 'image-overlay': - linear-gradient(to right, var(--c-p-140) 0%, var(--c-p) 100%), - 'text-highlight': - linear-gradient(to right, var(--c-p-140) 0%, var(--c-p) 100%), + 'image-overlay': linear-gradient( + to right, + var(--c-p-140) 0%, + var(--c-p) 100% + ), + 'text-highlight': linear-gradient( + to right, + var(--c-p-140) 0%, + var(--c-p) 100% + ), ), ); $banner-print: ( diff --git a/src/themes/eu/variables/_modal.scss b/src/themes/eu/variables/_modal.scss index 54314b5d50d..b1080770533 100644 --- a/src/themes/eu/variables/_modal.scss +++ b/src/themes/eu/variables/_modal.scss @@ -30,7 +30,8 @@ $modal: ( icon-background-height: var(--s-m), icon-background-width: var(--s-2xs), icon-background-top: calc(var(--s-l) + var(--s-s)), - icon-background-left: - calc(var(--s-l) + (map.get($icon, 'l') / 2) - var(--s-2xs) + 1px), + icon-background-left: calc( + var(--s-l) + (map.get($icon, 'l') / 2) - var(--s-2xs) + 1px + ), ), ); diff --git a/src/themes/eu/variables/_notification.scss b/src/themes/eu/variables/_notification.scss index 0730e51e514..cda95fa34b0 100644 --- a/src/themes/eu/variables/_notification.scss +++ b/src/themes/eu/variables/_notification.scss @@ -37,10 +37,12 @@ $notification: ( icon-background-width: var(--s-2xs), icon-background-top: calc(var(--s-l) + var(--s-xs) + 2px), icon-background-top-mobile: calc(var(--s-m) + var(--s-s)), - icon-background-left-mobile: - calc(var(--s-s) + (map.get($icon, 'l') / 2) - 2px), - icon-background-left: - calc(var(--s-l) + (map.get($icon, 'l') / 2) - var(--s-2xs) + 1px), + icon-background-left-mobile: calc( + var(--s-s) + (map.get($icon, 'l') / 2) - 2px + ), + icon-background-left: calc( + var(--s-l) + (map.get($icon, 'l') / 2) - var(--s-2xs) + 1px + ), ), error: ( background: var(--c-er-5), diff --git a/src/website/package.json b/src/website/package.json index e8034386a24..d50877a334d 100644 --- a/src/website/package.json +++ b/src/website/package.json @@ -49,7 +49,7 @@ "@babel/plugin-proposal-export-default-from": "7.25.9", "@babel/plugin-proposal-export-namespace-from": "7.18.9", "@babel/preset-env": "7.26.0", - "@babel/preset-react": "7.25.9", + "@babel/preset-react": "7.26.3", "@babel/runtime": "7.26.0", "@ecl/twig-ec-storybook": "4.9.0", "@mdx-js/loader": "2.3.0", @@ -89,7 +89,7 @@ "remark-gfm": "1.0.0", "remark-unwrap-images": "2.1.0", "rimraf": "6.0.1", - "sass": "1.81.0", + "sass": "1.82.0", "sass-loader": "16.0.4", "serve": "14.2.4", "style-loader": "4.0.0", diff --git a/yarn.lock b/yarn.lock index 5adebc54145..69e7b22b027 100644 --- a/yarn.lock +++ b/yarn.lock @@ -976,10 +976,10 @@ "@babel/types" "^7.4.4" esutils "^2.0.2" -"@babel/preset-react@7.25.9": - version "7.25.9" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.25.9.tgz#5f473035dc2094bcfdbc7392d0766bd42dce173e" - integrity sha512-D3to0uSPiWE7rBrdIICCd0tJSIGpLaaGptna2+w7Pft5xMqLpA1sz99DK5TZ1TjGbdQ/VI1eCSZ06dv3lT4JOw== +"@babel/preset-react@7.26.3": + version "7.26.3" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.26.3.tgz#7c5e028d623b4683c1f83a0bd4713b9100560caa" + integrity sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw== dependencies: "@babel/helper-plugin-utils" "^7.25.9" "@babel/helper-validator-option" "^7.25.9" @@ -1027,9 +1027,9 @@ "@babel/types" "^7.25.9" "@babel/traverse@>=7.23.2", "@babel/traverse@^7.25.9", "@babel/traverse@^7.7.0": - version "7.26.3" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.3.tgz#1ebfc75bd748d8f96b3cc63af5e82ebd4c37ba35" - integrity sha512-yTmc8J+Sj8yLzwr4PD5Xb/WF3bOYu2C2OoSZPzbuqRm4n98XirsbzaX+GloeO376UnSYIYJ4NCanwV5/ugZkwA== + version "7.26.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.4.tgz#ac3a2a84b908dde6d463c3bfa2c5fdc1653574bd" + integrity sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w== dependencies: "@babel/code-frame" "^7.26.2" "@babel/generator" "^7.26.3" @@ -1057,25 +1057,25 @@ resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.6.0.tgz#ec6cd237440700bc23ca23087f513c75508958b0" integrity sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA== -"@csstools/css-parser-algorithms@^3.0.1": +"@csstools/css-parser-algorithms@^3.0.4": version "3.0.4" resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz#74426e93bd1c4dcab3e441f5cc7ba4fb35d94356" integrity sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A== -"@csstools/css-tokenizer@^3.0.1": +"@csstools/css-tokenizer@^3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz#a5502c8539265fecbd873c1e395a890339f119c2" integrity sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw== -"@csstools/media-query-list-parser@^3.0.1": - version "3.0.1" - resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-3.0.1.tgz#9474e08e6d7767cf68c56bf1581b59d203360cb0" - integrity sha512-HNo8gGD02kHmcbX6PvCoUuOQvn4szyB9ca63vZHKX5A81QytgDG4oxG4IaEfHTlEZSZ6MjPEMWIVU+zF2PZcgw== +"@csstools/media-query-list-parser@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz#e80e17eba1693fceafb8d6f2cfc68c0e7a9ab78a" + integrity sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A== -"@csstools/selector-specificity@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-4.0.0.tgz#7dfccb9df5499e627e7bfdbb4021a06813a45dba" - integrity sha512-189nelqtPd8++phaHNwYovKZI0FOzH1vQEE3QhHHkNIGrg5fSs9CbYP3RvfEH5geztnIA9Jwq91wyOIwAW5JIQ== +"@csstools/selector-specificity@^5.0.0": + version "5.0.0" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz#037817b574262134cabd68fc4ec1a454f168407b" + integrity sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw== "@dabh/diagnostics@^2.0.2": version "2.0.3" @@ -1145,10 +1145,10 @@ "@emotion/utils" "0.11.3" "@emotion/weak-memoize" "0.2.5" -"@emotion/cache@^11.13.5": - version "11.13.5" - resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.13.5.tgz#e78dad0489e1ed7572507ba8ed9d2130529e4266" - integrity sha512-Z3xbtJ+UcK76eWkagZ1onvn/wAVb1GOMuR15s30Fm2wrMgC7jzpnO2JZXr4eujTTqoQFUrZIw/rT0c6Zzjca1g== +"@emotion/cache@^11.14.0": + version "11.14.0" + resolved "https://registry.yarnpkg.com/@emotion/cache/-/cache-11.14.0.tgz#ee44b26986eeb93c8be82bb92f1f7a9b21b2ed76" + integrity sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA== dependencies: "@emotion/memoize" "^0.9.0" "@emotion/sheet" "^1.4.0" @@ -1211,16 +1211,16 @@ resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.9.0.tgz#745969d649977776b43fc7648c556aaa462b4102" integrity sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ== -"@emotion/react@11.13.5": - version "11.13.5" - resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.13.5.tgz#fc818ff5b13424f86501ba4d0740f343ae20b8d9" - integrity sha512-6zeCUxUH+EPF1s+YF/2hPVODeV/7V07YU5x+2tfuRL8MdW6rv5vb2+CBEGTGwBdux0OIERcOS+RzxeK80k2DsQ== +"@emotion/react@11.14.0": + version "11.14.0" + resolved "https://registry.yarnpkg.com/@emotion/react/-/react-11.14.0.tgz#cfaae35ebc67dd9ef4ea2e9acc6cd29e157dd05d" + integrity sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA== dependencies: "@babel/runtime" "^7.18.3" "@emotion/babel-plugin" "^11.13.5" - "@emotion/cache" "^11.13.5" + "@emotion/cache" "^11.14.0" "@emotion/serialize" "^1.3.3" - "@emotion/use-insertion-effect-with-fallbacks" "^1.1.0" + "@emotion/use-insertion-effect-with-fallbacks" "^1.2.0" "@emotion/utils" "^1.4.2" "@emotion/weak-memoize" "^0.4.0" hoist-non-react-statics "^3.3.1" @@ -1267,16 +1267,16 @@ "@emotion/serialize" "^0.11.15" "@emotion/utils" "0.11.3" -"@emotion/styled@11.13.5": - version "11.13.5" - resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.13.5.tgz#0fa6602227414c5e42cf267506e3c35bae655df9" - integrity sha512-gnOQ+nGLPvDXgIx119JqGalys64lhMdnNQA9TMxhDA4K0Hq5+++OE20Zs5GxiCV9r814xQ2K5WmtofSpHVW6BQ== +"@emotion/styled@11.14.0": + version "11.14.0" + resolved "https://registry.yarnpkg.com/@emotion/styled/-/styled-11.14.0.tgz#f47ca7219b1a295186d7661583376fcea95f0ff3" + integrity sha512-XxfOnXFffatap2IyCeJyNov3kiDQWoR08gPUQxvbL7fxKryGBKUZUkG6Hz48DZwVrJSVh9sJboyV1Ds4OW6SgA== dependencies: "@babel/runtime" "^7.18.3" "@emotion/babel-plugin" "^11.13.5" "@emotion/is-prop-valid" "^1.3.0" "@emotion/serialize" "^1.3.3" - "@emotion/use-insertion-effect-with-fallbacks" "^1.1.0" + "@emotion/use-insertion-effect-with-fallbacks" "^1.2.0" "@emotion/utils" "^1.4.2" "@emotion/styled@^10.0.27": @@ -1302,10 +1302,10 @@ resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.10.0.tgz#2af2f7c7e5150f497bdabd848ce7b218a27cf745" integrity sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg== -"@emotion/use-insertion-effect-with-fallbacks@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.1.0.tgz#1a818a0b2c481efba0cf34e5ab1e0cb2dcb9dfaf" - integrity sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw== +"@emotion/use-insertion-effect-with-fallbacks@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz#8a8cb77b590e09affb960f4ff1e9a89e532738bf" + integrity sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg== "@emotion/utils@0.11.3": version "0.11.3" @@ -1852,9 +1852,9 @@ integrity sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA== "@jsonjoy.com/json-pack@^1.0.3": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz#33ca57ee29d12feef540f2139225597469dec894" - integrity sha512-zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg== + version "1.1.1" + resolved "https://registry.yarnpkg.com/@jsonjoy.com/json-pack/-/json-pack-1.1.1.tgz#1f2db19ab1fd3304ccac259a1ef1dc6aff6df0ba" + integrity sha512-osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw== dependencies: "@jsonjoy.com/base64" "^1.1.1" "@jsonjoy.com/util" "^1.1.2" @@ -2252,9 +2252,9 @@ which "^4.0.0" "@nx/devkit@>=17.1.2 < 21": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-20.1.4.tgz#877a5df42e4f1fd0a28eee0820129107cdff1a75" - integrity sha512-Opz7eRPmpt3e4SGkbwZbE9Bg3MhKeivh1QTNCj4tQVAB4gucz0lW/F3mdtRDFdj6gUbqIc5rRrbO/DGlNaEzYw== + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/devkit/-/devkit-20.2.1.tgz#c6561c5b35b68ebe5a44d85a913b0b546b3214be" + integrity sha512-boNTu7Z7oHkYjrYg5Wzg+cQfbEJ2nntRj1eI99w8mp4qz2B4PEEjJOB0BZafR54ZcKpGEbyp/QBB945GsjTUbw== dependencies: ejs "^3.1.7" enquirer "~2.3.6" @@ -2265,55 +2265,55 @@ tslib "^2.3.0" yargs-parser "21.1.1" -"@nx/nx-darwin-arm64@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-20.1.4.tgz#984054bdcdadb69c2d53e08f2e8f5340d392c06e" - integrity sha512-afyDOZbIyHi6BgKk+Bb4RI1t8dZ6/oIbOY89z4mBPNNevZkbGqUfMwO2vjKnaOoThcjT93SEMJfCLGL8i857ww== - -"@nx/nx-darwin-x64@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-20.1.4.tgz#afdcb541f5ecafe533f7c6d6bcf91024204ad9b9" - integrity sha512-aiYklAt95aX0EinepJRryMna8K53G52ngYOFuac1G8iLlguinJvg/YgSKCf7GOAzec8b7Hm7KauPjSJE/P3/iw== - -"@nx/nx-freebsd-x64@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-20.1.4.tgz#bf6a63c60e08b4bf9bab3b21f1a71b5bef9ec968" - integrity sha512-WUh4bsLK+e7wuN3lE3ZQUj+xQKdWU4P4RymutfLQQnPYiilCMtFwITcvDmazmOHFWI2vPhzSyYJRbOu+YMIR3A== - -"@nx/nx-linux-arm-gnueabihf@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-20.1.4.tgz#e2ed9fc1dd1ee984697646c7dd2672dcf692b294" - integrity sha512-9vPMw5s89v3od7aw3enTWjdMSCAmQ0tIA89Uz7xbbjB2kX2mAdihSzAKd9woi/cj+ROnY+ynNXzU9UjqhfxdBg== - -"@nx/nx-linux-arm64-gnu@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-20.1.4.tgz#c2f7c32fa4f333d5b541540703f4b1eb49a3760b" - integrity sha512-JUE4l8utr9KmQSG9tO2Qw5R5i/bZ16s1+J5xnEar7UfcSOfOLqxGHS7HCBUZcfr46dmtv6KjIC83uHMs19AwDQ== - -"@nx/nx-linux-arm64-musl@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-20.1.4.tgz#fda0f64f9287a078efb5bd40a9fd409e1e2f385f" - integrity sha512-EaPUDqXvnPc/ure0x7N+5lRYvk5zqOQ3LzFOTRPWdqnFXejyTkGjZEYWbLFIJTFrvyEdpfaPTHyNmCHUrEz9TQ== - -"@nx/nx-linux-x64-gnu@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-20.1.4.tgz#15062b9a02ee5d2abac3cfeb89b1571231644897" - integrity sha512-vaWV37ZayfyckVI/faWdQWIV9XQb06ZT8jHQnwgSd9tKbGz37vN30eYtgZlFL0P4bHfhjtmMXnLvADmfyO/KOw== - -"@nx/nx-linux-x64-musl@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-20.1.4.tgz#0b3fd742b037f71d2d8bed164dbcd3f48d5b703e" - integrity sha512-wjq4Ea1oweBsIA9jq+jDT6BALxv/uac0aFykwoN23dOiwwSMFWMxbXUuBrxp0LjMFGV49S62kVDoRezukvkiZA== - -"@nx/nx-win32-arm64-msvc@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-20.1.4.tgz#c61b3e769baaa1907e5b2a9922b3d7a0fab84074" - integrity sha512-d9jN8biyEJh4Mjdc3RU1j/+WIOjrO9mCDxYuERXP2ELaNsOk0tJgcXE1xsa9AF88AHGpOkCOS2rxy61DKBtFKg== - -"@nx/nx-win32-x64-msvc@20.1.4": - version "20.1.4" - resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-20.1.4.tgz#e3e3f4d017c8e2ad22e957c55921cf01ba66fc11" - integrity sha512-s3RwOkkWKzOflbTmc5MRc4EH2mk1AkJ/V8Gu3Qi2QncF9r1GrR7hDxROpu0MEoHfIhRG+d+n8OGX31nC9GZWUg== +"@nx/nx-darwin-arm64@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-darwin-arm64/-/nx-darwin-arm64-20.2.1.tgz#c6fb53f9fa642dd97f36fefbe3b510116f4b838d" + integrity sha512-nJcyPZfH6Vq4cG6gRnQ8PcnVOLePeT3exzLnQu0I4I2EtCTPyCSRA3gxoGzZ3qZFMQTsCbwv4HYfdx42AXOTAQ== + +"@nx/nx-darwin-x64@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-darwin-x64/-/nx-darwin-x64-20.2.1.tgz#8e7be1229cfc6c336b8ba8a1b90e83ae1f9776c9" + integrity sha512-SEiN8fjEs010ME4PRP8O9f8qG8AMZBGz8hOkF6ZrdlC+iEi4iyAGpgWFq8PKBlpVW4G5gxR91Y7eVaTKAsgH5w== + +"@nx/nx-freebsd-x64@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-freebsd-x64/-/nx-freebsd-x64-20.2.1.tgz#bb63b261fcd3746d93d13cac276bbcbd61e2cb16" + integrity sha512-/yEKS9q17EG2Ci130McvpZM5YUghH1ql9UXWbVmitufn+RQD90hoblkG/B+cxJeZonrdKAjdpLQ+hfVz+FBd/g== + +"@nx/nx-linux-arm-gnueabihf@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm-gnueabihf/-/nx-linux-arm-gnueabihf-20.2.1.tgz#0f620a6675b14be845d9a7f96a1b4ba81887f463" + integrity sha512-DPtRjTCJ5++stTGtjqYftCb2c0CNed2s2EZZLQuDP+tikTsLm0d3S3ZaU5eHhqZW35tQuMOVweOfC1nJ3/DTSA== + +"@nx/nx-linux-arm64-gnu@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-gnu/-/nx-linux-arm64-gnu-20.2.1.tgz#5380a7d508bfa08a76c97d69eaeb0c4345151680" + integrity sha512-ggGwHOEP6UjXeqv6DtRxizeBnX/zRZi8BRJbEJBwAt1cAUnLlklk8d+Hmjs+j/FlFXBV9f+ylpAqoYkplFR8jg== + +"@nx/nx-linux-arm64-musl@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-arm64-musl/-/nx-linux-arm64-musl-20.2.1.tgz#03554dd415d93bd16d42460a566da0d281578374" + integrity sha512-HZBGxsBJUFbWVTiyJxqt0tS8tlvp+Tp0D533mGKW75cU0rv9dnmbtTwkkkx+LXqerjSRvNS3Qtj0Uh2w92Vtig== + +"@nx/nx-linux-x64-gnu@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-gnu/-/nx-linux-x64-gnu-20.2.1.tgz#6531116a01a28d6e1a40baf9507059c4c3ed9974" + integrity sha512-pTytPwGiPRakqz2PKiWTSRNm9taE1U9n0+kRAAFzbOtzeW+eIoebe5xY5QMoZ+XtIZ6pJM2BUOyMD+/TX57r8Q== + +"@nx/nx-linux-x64-musl@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-linux-x64-musl/-/nx-linux-x64-musl-20.2.1.tgz#591b9b7b5b866e95e13113f7783a2bfef803ee45" + integrity sha512-p3egqe5zmwiDl6xSwHi2K9UZWiKbZ/s/j4qV+pZttzMyNPfhohTeP+VwQqjTeQ1hPBl2YhwmmktEPsIPYJG7YA== + +"@nx/nx-win32-arm64-msvc@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-win32-arm64-msvc/-/nx-win32-arm64-msvc-20.2.1.tgz#c5fc63b2ee8ff3a8b51edb32cca706484b75bb9c" + integrity sha512-Wujist6k08pjgWWQ1pjXrCArmMgnyIXNVmDP14cWo1KHecBuxNWa9i62PrxQ0K8MLYMcAzLHJxN9t54GzBbd+g== + +"@nx/nx-win32-x64-msvc@20.2.1": + version "20.2.1" + resolved "https://registry.yarnpkg.com/@nx/nx-win32-x64-msvc/-/nx-win32-x64-msvc-20.2.1.tgz#efbcca687cd91f7c8380c6e3d0f838323d73951e" + integrity sha512-tsEYfNV2+CWSQmbh9TM8cX5wk6F2QAH0tfvt4topyOOaR40eszW8qc/eDM/kkJ5nj87BbNEqPBQAYFE0AP1OMA== "@octokit/auth-token@^3.0.0": version "3.0.4" @@ -2562,14 +2562,14 @@ yargs "17.7.2" "@puppeteer/browsers@^2.1.0": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-2.5.0.tgz#7e4f7ba8f04e54f11501b78dc7bcc4033de935d4" - integrity sha512-6TQAc/5uRILE6deixJ1CR8rXyTbzXIXNgO1D0Woi9Bqicz2FV5iKP3BHYEg6o4UATCMcbQQ0jbmeaOkn/HQk2w== + version "2.6.0" + resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-2.6.0.tgz#63bc4bb9ee24df2a031b48d57b98d2b64ab87814" + integrity sha512-jESwj3APl78YUWHf28s2EjL0OIxcvl1uLU6Ge68KQ9ZXNsekUcbdr9dCi6vEO8naXS18lWXCV56shVkPStzXSQ== dependencies: - debug "^4.3.7" + debug "^4.4.0" extract-zip "^2.0.1" progress "^2.0.3" - proxy-agent "^6.4.0" + proxy-agent "^6.5.0" semver "^7.6.3" tar-fs "^3.0.6" unbzip2-stream "^1.4.3" @@ -2887,18 +2887,18 @@ resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz#821f8442f4175d8f0467b9daf26e3a18e2d02af2" integrity sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA== -"@storybook/addon-a11y@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-a11y/-/addon-a11y-8.4.6.tgz#22106091030636f9112f31a7d1105a9627dbdb96" - integrity sha512-Z6x/yfStplSROgmBTtiJ8LJgTqPgzW3Q7KXi+l+KoZ0pht6Nz9cYfcyygLCaftBk1ZaL7SDDIrjCP0H1NwfYiQ== +"@storybook/addon-a11y@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-a11y/-/addon-a11y-8.4.7.tgz#0073090d8d4e0748249317a292ac27dc2c2b9ef2" + integrity sha512-GpUvXp6n25U1ZSv+hmDC+05BEqxWdlWjQTb/GaboRXZQeMBlze6zckpVb66spjmmtQAIISo0eZxX1+mGcVR7lA== dependencies: - "@storybook/addon-highlight" "8.4.6" + "@storybook/addon-highlight" "8.4.7" axe-core "^4.2.0" -"@storybook/addon-actions@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-8.4.6.tgz#d2501d84831051469356a5ec70ceba4bfe47d148" - integrity sha512-vbplwjMj7UXbdzoFhQkqFHLQAPJX8OVGTM9Q+yjuWDHViaKKUlgRWp0jclT7aIDNJQU2a6wJbTimHgJeF16Vhg== +"@storybook/addon-actions@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-actions/-/addon-actions-8.4.7.tgz#210c6bb5a7e17c3664c300b4b69b6243ec34b9cd" + integrity sha512-mjtD5JxcPuW74T6h7nqMxWTvDneFtokg88p6kQ5OnC1M259iAXb//yiSZgu/quunMHPCXSiqn4FNOSgASTSbsA== dependencies: "@storybook/global" "^5.0.0" "@types/uuid" "^9.0.1" @@ -2906,19 +2906,19 @@ polished "^4.2.2" uuid "^9.0.0" -"@storybook/addon-backgrounds@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-8.4.6.tgz#4f2f1e6eded69137882af90facd6106eb201f271" - integrity sha512-RSjJ3iElxlQXebZrz1s5LeoLpAXr9LAGifX7w0abMzN5sg6QSwNeUHko2eT3V57M3k1Fa/5Eelso/QBQifFEog== +"@storybook/addon-backgrounds@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-backgrounds/-/addon-backgrounds-8.4.7.tgz#56856bdafc5a2ba18cc19422320883c9e8f66c1c" + integrity sha512-I4/aErqtFiazcoWyKafOAm3bLpxTj6eQuH/woSbk1Yx+EzN+Dbrgx1Updy8//bsNtKkcrXETITreqHC+a57DHQ== dependencies: "@storybook/global" "^5.0.0" memoizerific "^1.11.3" ts-dedent "^2.0.0" -"@storybook/addon-controls@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-8.4.6.tgz#e07736244966c66a3df43fd48004d3621d6b0fdd" - integrity sha512-70pEGWh0C2g8s0DYsISElOzsMbQS6p/K9iU5EqfotDF+hvEqstjsV/bTbR5f3OK4vR/7Gxamk7j8RVd14Nql6A== +"@storybook/addon-controls@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-controls/-/addon-controls-8.4.7.tgz#0c2ace0c7056248577f08f90471f29e861b485be" + integrity sha512-377uo5IsJgXLnQLJixa47+11V+7Wn9KcDEw+96aGCBCfLbWNH8S08tJHHnSu+jXg9zoqCAC23MetntVp6LetHA== dependencies: "@storybook/global" "^5.0.0" dequal "^2.0.2" @@ -2938,76 +2938,76 @@ global "^4.4.0" regenerator-runtime "^0.13.7" -"@storybook/addon-docs@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-docs/-/addon-docs-8.4.6.tgz#8afa3849066f9b0ee0600b9808a8da81278957cf" - integrity sha512-olxz61W7PW/EsXrKhLrYbI3rn9GMBhY3KIOF/6tumbRkh0Siu/qe4EAImaV9NNwiC1R7+De/1OIVMY6o0EIZVw== +"@storybook/addon-docs@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-docs/-/addon-docs-8.4.7.tgz#556515da1049f97023427301e11ecb52d0b9dbe7" + integrity sha512-NwWaiTDT5puCBSUOVuf6ME7Zsbwz7Y79WF5tMZBx/sLQ60vpmJVQsap6NSjvK1Ravhc21EsIXqemAcBjAWu80w== dependencies: "@mdx-js/react" "^3.0.0" - "@storybook/blocks" "8.4.6" - "@storybook/csf-plugin" "8.4.6" - "@storybook/react-dom-shim" "8.4.6" + "@storybook/blocks" "8.4.7" + "@storybook/csf-plugin" "8.4.7" + "@storybook/react-dom-shim" "8.4.7" react "^16.8.0 || ^17.0.0 || ^18.0.0" react-dom "^16.8.0 || ^17.0.0 || ^18.0.0" ts-dedent "^2.0.0" -"@storybook/addon-essentials@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-essentials/-/addon-essentials-8.4.6.tgz#30de1b679646dc0c71fa5e7d16c2dd0db8e01818" - integrity sha512-TbFqyvWFUKw8LBpVcZuGQydzVB/3kSuHxDHi+Wj3Qas3cxBl7+w4/HjwomT2D2Tni1dZ1uPDOsAtNLmwp1POsg== - dependencies: - "@storybook/addon-actions" "8.4.6" - "@storybook/addon-backgrounds" "8.4.6" - "@storybook/addon-controls" "8.4.6" - "@storybook/addon-docs" "8.4.6" - "@storybook/addon-highlight" "8.4.6" - "@storybook/addon-measure" "8.4.6" - "@storybook/addon-outline" "8.4.6" - "@storybook/addon-toolbars" "8.4.6" - "@storybook/addon-viewport" "8.4.6" +"@storybook/addon-essentials@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-essentials/-/addon-essentials-8.4.7.tgz#381c74230d1b1a209d5fdc017d241c016b98affe" + integrity sha512-+BtZHCBrYtQKILtejKxh0CDRGIgTl9PumfBOKRaihYb4FX1IjSAxoV/oo/IfEjlkF5f87vouShWsRa8EUauFDw== + dependencies: + "@storybook/addon-actions" "8.4.7" + "@storybook/addon-backgrounds" "8.4.7" + "@storybook/addon-controls" "8.4.7" + "@storybook/addon-docs" "8.4.7" + "@storybook/addon-highlight" "8.4.7" + "@storybook/addon-measure" "8.4.7" + "@storybook/addon-outline" "8.4.7" + "@storybook/addon-toolbars" "8.4.7" + "@storybook/addon-viewport" "8.4.7" ts-dedent "^2.0.0" -"@storybook/addon-highlight@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-highlight/-/addon-highlight-8.4.6.tgz#0c6f06a4ef9e265cc1986e74b1bdff6af6f22792" - integrity sha512-m8wedbqDMbwkP99dNHkHAiAUkx5E7FEEEyLPX1zfkhZWOGtTkavXHH235SGp50zD75LQ6eC/BvgegrzxSQa9Wg== +"@storybook/addon-highlight@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-highlight/-/addon-highlight-8.4.7.tgz#06b9752977e38884007e9446f9a2b0c04c873229" + integrity sha512-whQIDBd3PfVwcUCrRXvCUHWClXe9mQ7XkTPCdPo4B/tZ6Z9c6zD8JUHT76ddyHivixFLowMnA8PxMU6kCMAiNw== dependencies: "@storybook/global" "^5.0.0" -"@storybook/addon-links@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-8.4.6.tgz#8f26e7497ba6141825b5634cebea00723ddff707" - integrity sha512-1KoG9ytEWWwdF/dheu1O0dayQTMsHw++Qk8afqw7bwW1Cxz5LuAJH5ZscFWMiE5f4Xq1NgaJdeAUaIavyoOcdg== +"@storybook/addon-links@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-links/-/addon-links-8.4.7.tgz#c38b2b63c3b0308adacff4b0758464a0657154c4" + integrity sha512-L/1h4dMeMKF+MM0DanN24v5p3faNYbbtOApMgg7SlcBT/tgo3+cAjkgmNpYA8XtKnDezm+T2mTDhB8mmIRZpIQ== dependencies: "@storybook/csf" "^0.1.11" "@storybook/global" "^5.0.0" ts-dedent "^2.0.0" -"@storybook/addon-measure@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-measure/-/addon-measure-8.4.6.tgz#ae53f5f0dc4490e81bf06549f0d5364c78487493" - integrity sha512-N2IRpr39g5KpexCAS1vIHJT+phc9Yilwm3PULds2rQ66VMTbkxobXJDdt0NS05g5n9/eDniroNQwdCeLg4tkpw== +"@storybook/addon-measure@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-measure/-/addon-measure-8.4.7.tgz#9d556ba34b57c13ad8d00bd953b27ec405a64d23" + integrity sha512-QfvqYWDSI5F68mKvafEmZic3SMiK7zZM8VA0kTXx55hF/+vx61Mm0HccApUT96xCXIgmwQwDvn9gS4TkX81Dmw== dependencies: "@storybook/global" "^5.0.0" tiny-invariant "^1.3.1" -"@storybook/addon-outline@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-outline/-/addon-outline-8.4.6.tgz#2f83b901f69d639e991b1572f45a3cae38834c74" - integrity sha512-EhcWx8OpK85HxQulLWzpWUHEwQpDYuAiKzsFj9ivAbfeljkIWNTG04mierfaH1xX016uL9RtLJL/zwBS5ChnFg== +"@storybook/addon-outline@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-outline/-/addon-outline-8.4.7.tgz#8a35fe519dd639bb287a370da2222e6ffdce4020" + integrity sha512-6LYRqUZxSodmAIl8icr585Oi8pmzbZ90aloZJIpve+dBAzo7ydYrSQxxoQEVltXbKf3VeVcrs64ouAYqjisMYA== dependencies: "@storybook/global" "^5.0.0" ts-dedent "^2.0.0" -"@storybook/addon-toolbars@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-8.4.6.tgz#1ae32cda6c01d7052ced339681632921b91641d9" - integrity sha512-+Xao/uGa8FnYsyUiREUkYXWNysm3Aba8tL/Bwd+HufHtdiKJGa9lrXaC7VLCqBUaEjwqM3aaPwqEWIROsthmPQ== +"@storybook/addon-toolbars@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-toolbars/-/addon-toolbars-8.4.7.tgz#b898d4deaf6f5a58f3b70bd8d136cd4ec2844b79" + integrity sha512-OSfdv5UZs+NdGB+nZmbafGUWimiweJ/56gShlw8Neo/4jOJl1R3rnRqqY7MYx8E4GwoX+i3GF5C3iWFNQqlDcw== -"@storybook/addon-viewport@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/addon-viewport/-/addon-viewport-8.4.6.tgz#07e9d231b9857666024d4282348870a4ddfc82c3" - integrity sha512-BuQll5YzOCpMS7p5Rsw9wcmi8hTnEKyg6+qAbkZNfiZ2JhXCa1GFUqX725fF1whpYVQULtkQxU8r+vahoRn7Yg== +"@storybook/addon-viewport@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/addon-viewport/-/addon-viewport-8.4.7.tgz#e65c53608f52149c06347b395487960605fc4805" + integrity sha512-hvczh/jjuXXcOogih09a663sRDDSATXwbE866al1DXgbDFraYD/LxX/QDb38W9hdjU9+Qhx8VFIcNWoMQns5HQ== dependencies: memoizerific "^1.11.3" @@ -3052,21 +3052,21 @@ ts-dedent "^2.0.0" util-deprecate "^1.0.2" -"@storybook/blocks@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/blocks/-/blocks-8.4.6.tgz#57e340e50fc3add1b08dd50dd16980b64e9c7c98" - integrity sha512-Gzbx8hM7ZQIHlQELcFIMbY1v+r1Po4mlinq0QVPtKS4lBcW4eZIsesbxOaL+uFNrxb583TLFzXo0DbRPzS46sg== +"@storybook/blocks@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/blocks/-/blocks-8.4.7.tgz#ee17f59dd52d11c97c39b0f6b03957085a80ad95" + integrity sha512-+QH7+JwXXXIyP3fRCxz/7E2VZepAanXJM7G8nbR3wWsqWgrRp4Wra6MvybxAYCxU7aNfJX5c+RW84SNikFpcIA== dependencies: "@storybook/csf" "^0.1.11" "@storybook/icons" "^1.2.12" ts-dedent "^2.0.0" -"@storybook/builder-webpack5@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/builder-webpack5/-/builder-webpack5-8.4.6.tgz#4e650fb61d4d4e5161918c8f383ba8e4da2a7664" - integrity sha512-/ZInCFk2myJZinnAU05bATe+9iJn3+YRoxl+CUpYljxzsjoqb7iAwaNaMNolZCDOnMj24Kg2Pt87WtzAhu+ilw== +"@storybook/builder-webpack5@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/builder-webpack5/-/builder-webpack5-8.4.7.tgz#5bc15568716bbf4f45a88fc389e25fa2ce50a8c2" + integrity sha512-O8LpsQ+4g2x5kh7rI9+jEUdX8k1a5egBQU1lbudmHchqsV0IKiVqBD9LL5Gj3wpit4vB8coSW4ZWTFBw8FQb4Q== dependencies: - "@storybook/core-webpack" "8.4.6" + "@storybook/core-webpack" "8.4.7" "@types/node" "^22.0.0" "@types/semver" "^7.3.4" browser-assert "^1.2.1" @@ -3101,17 +3101,17 @@ ts-dedent "^2.0.0" util-deprecate "^1.0.2" -"@storybook/cli@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/cli/-/cli-8.4.6.tgz#70ec39521e26df3be121cbb51647c01f88469ca9" - integrity sha512-LBJnU/wqHz2iOJVdzxcyQyngX8RR+A0Nnynqy4/ZJerTjVShRbX+AkRoE6uOtXB3+Ci4Jue/+IZyVz35ehPd7g== +"@storybook/cli@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/cli/-/cli-8.4.7.tgz#853c7212d0a08b910b9980c0d53f3c4f2ed42b4d" + integrity sha512-eqHhO30FLxFuoSA+wKWB+aGvQOVcCkGLbJ4RaffjCbSbC9S2YfKLvd3Sb6gFwy6e8x+MnEkvv3g0h8LixT/C9Q== dependencies: "@babel/core" "^7.24.4" "@babel/types" "^7.24.0" - "@storybook/codemod" "8.4.6" + "@storybook/codemod" "8.4.7" "@types/semver" "^7.3.4" commander "^12.1.0" - create-storybook "8.4.6" + create-storybook "8.4.7" cross-spawn "^7.0.3" envinfo "^7.7.3" fd-package-json "^1.2.0" @@ -3123,7 +3123,7 @@ leven "^3.1.0" prompts "^2.4.0" semver "^7.3.7" - storybook "8.4.6" + storybook "8.4.7" tiny-invariant "^1.3.1" ts-dedent "^2.0.0" @@ -3135,15 +3135,15 @@ core-js "^3.8.2" global "^4.4.0" -"@storybook/codemod@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/codemod/-/codemod-8.4.6.tgz#d6aa86579a00d084b8ad7603f2d544825f1aa943" - integrity sha512-wfTjiGU+uuvKSoe9VaqDOO+htYx5yV4yR6SUWJyDrZa2nhTNQqApQe1a7l/17dYJqw4NHuoZgYFhBRE4EjQJLw== +"@storybook/codemod@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/codemod/-/codemod-8.4.7.tgz#d7eb787a4fc390c5d4f18c9bbe674d45102ab2c5" + integrity sha512-VpYEZCj1EXCcqlOqI8lL58dlHJALW+OMAE1yB72GT8RaT5zSP43jK5t80cPhh70zyaPqS27wKOROcpaRS7eNRA== dependencies: "@babel/core" "^7.24.4" "@babel/preset-env" "^7.24.4" "@babel/types" "^7.24.0" - "@storybook/core" "8.4.6" + "@storybook/core" "8.4.7" "@storybook/csf" "^0.1.11" "@types/cross-spawn" "^6.0.2" cross-spawn "^7.0.3" @@ -3184,10 +3184,10 @@ ts-dedent "^2.0.0" util-deprecate "^1.0.2" -"@storybook/components@8.4.6", "@storybook/components@^8.0.0": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/components/-/components-8.4.6.tgz#2c406a709189008172c8cf4f55d05254954bae4d" - integrity sha512-9tKSJJCyFT5RZMRGyozTBJkr9C9Yfk1nuOE9XbDEE1Z+3/IypKR9+iwc5mfNBStDNY+rxtYWNLKBb5GPR2yhzA== +"@storybook/components@8.4.7", "@storybook/components@^8.0.0": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/components/-/components-8.4.7.tgz#09eeffa07aa672ad3966ca1764a43003731b1d30" + integrity sha512-uyJIcoyeMWKAvjrG9tJBUCKxr2WZk+PomgrgrUwejkIfXMO76i6jw9BwLa0NZjYdlthDv30r9FfbYZyeNPmF0g== "@storybook/core-events@6.2.9": version "6.2.9" @@ -3197,22 +3197,22 @@ core-js "^3.8.2" "@storybook/core-events@^8.0.0": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-8.4.6.tgz#cdc4b200c37071bca40b24a6dc003ef6c41395ff" - integrity sha512-HgBM5rJQXBPfTj1GqBH9EtVUNBACK8hfLCqnGqGnYp8qBdL+MhiD9PrPdpI4EJzJ28PGySuuQqvkQhuEEEKOgw== + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/core-events/-/core-events-8.4.7.tgz#7d2192a97a26fb60d9a25b749e0c8bf0fadbd16d" + integrity sha512-D5WhJBVfywIVBurNZ7mwSjXT18a8Ct5AfZFEukIBPLaezY21TgN/7sE2OU5dkMQsm11oAZzsdLPOzms2e9HsRg== -"@storybook/core-webpack@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/core-webpack/-/core-webpack-8.4.6.tgz#5cedabc15e00043a532ff6a61ec4041a653e3bda" - integrity sha512-5NE4pUy0iHKc8UKHm7A7SikxSMOO92udl7kcBUlQKwcAgrAk1rFpvfXGodDb48AVgfK+07qAOSjBm7GcZ7X1jw== +"@storybook/core-webpack@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/core-webpack/-/core-webpack-8.4.7.tgz#660d1cbd03a91fee27b65e6acc2f9269ed1fbfc8" + integrity sha512-Tj+CjQLpFyBJxhhMms+vbPT3+gTRAiQlrhY3L1IEVwBa3wtRMS0qjozH26d1hK4G6mUIEdwu13L54HMU/w33Sg== dependencies: "@types/node" "^22.0.0" ts-dedent "^2.0.0" -"@storybook/core@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/core/-/core-8.4.6.tgz#78a3155f428635be808c4ef2912eeb79140228c8" - integrity sha512-WeojVtHy0/t50tzw/15S+DLzKsj8BN9yWdo3vJMvm+nflLFvfq1XvD9WGOWeaFp8E/o3AP+4HprXG0r42KEJtA== +"@storybook/core@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/core/-/core-8.4.7.tgz#af9cbb3f26f0b6c98c679a134ce776c202570d66" + integrity sha512-7Z8Z0A+1YnhrrSXoKKwFFI4gnsLbWzr8fnDCU6+6HlDukFYh8GHRcZ9zKfqmy6U3hw2h8H5DrHsxWfyaYUUOoA== dependencies: "@storybook/csf" "^0.1.11" better-opn "^3.0.2" @@ -3226,10 +3226,10 @@ util "^0.12.5" ws "^8.2.3" -"@storybook/csf-plugin@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/csf-plugin/-/csf-plugin-8.4.6.tgz#861c64248e10827c8fdf264c23d149c2dde828cf" - integrity sha512-JDIT0czC4yMgKGNf39KTZr3zm5MusAZdn6LBrTfvWb7CrTCR4iVHa4lp2yb7EJk41vHsBec0QUYDDuiFH/vV0g== +"@storybook/csf-plugin@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/csf-plugin/-/csf-plugin-8.4.7.tgz#0117c872b05bf033eec089ab0224e0fab01da810" + integrity sha512-Fgogplu4HImgC+AYDcdGm1rmL6OR1rVdNX1Be9C/NEXwOCpbbBwi0BxTf/2ZxHRk9fCeaPEcOdP5S8QHfltc1g== dependencies: unplugin "^1.3.1" @@ -3252,58 +3252,58 @@ resolved "https://registry.yarnpkg.com/@storybook/global/-/global-5.0.0.tgz#b793d34b94f572c1d7d9e0f44fac4e0dbc9572ed" integrity sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ== -"@storybook/html-webpack5@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/html-webpack5/-/html-webpack5-8.4.6.tgz#b1329786a454b81c80419ad81bd31185ed12c372" - integrity sha512-aoaAlW1NdMe1a5tPIloHjTgx34V3etCBEvpO3DGmlTVFUoXao/pE/ynNguTskcJfMQpSyZtzOwpg2jBntJoYGA== +"@storybook/html-webpack5@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/html-webpack5/-/html-webpack5-8.4.7.tgz#3331bc184260c078bc6e5e9cec017c468c546275" + integrity sha512-mmBxXSr0JezbML0BkAAv7JilgkxN07f97ZwerlK8qrgLTTcbBbnhP1A2EQ9/YpTJ3c2IY8Fyct86nigts1ZZBg== dependencies: - "@storybook/builder-webpack5" "8.4.6" + "@storybook/builder-webpack5" "8.4.7" "@storybook/global" "^5.0.0" - "@storybook/html" "8.4.6" - "@storybook/preset-html-webpack" "8.4.6" + "@storybook/html" "8.4.7" + "@storybook/preset-html-webpack" "8.4.7" "@types/node" "^22.0.0" -"@storybook/html@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/html/-/html-8.4.6.tgz#ecab75a46c202eda6baa7c0553468ffd06f2f6c4" - integrity sha512-yUgiFkwcto3zwVOG2KW338WyspmAZgsicwHKARhh4k69EYT6fdimzTVn2Q6ft0zVxIvp6Za+UAMm9cyJ/Ra6tQ== +"@storybook/html@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/html/-/html-8.4.7.tgz#96ccc933a70dd7f2103676b4017ada593dfb7a92" + integrity sha512-2F9+n3/Xujf6/mHlULhtLL7Ha9u92l6GChM0AUTKL9cK8KzQKcAxqnH7JzE6HTFXMr10oj/706AMJSymvcc/SQ== dependencies: - "@storybook/components" "8.4.6" + "@storybook/components" "8.4.7" "@storybook/global" "^5.0.0" - "@storybook/manager-api" "8.4.6" - "@storybook/preview-api" "8.4.6" - "@storybook/theming" "8.4.6" + "@storybook/manager-api" "8.4.7" + "@storybook/preview-api" "8.4.7" + "@storybook/theming" "8.4.7" ts-dedent "^2.0.0" "@storybook/icons@^1.2.12", "@storybook/icons@^1.2.5": - version "1.2.12" - resolved "https://registry.yarnpkg.com/@storybook/icons/-/icons-1.2.12.tgz#3e4c939113b67df7ab17b78f805dbb57f4acf0db" - integrity sha512-UxgyK5W3/UV4VrI3dl6ajGfHM4aOqMAkFLWe2KibeQudLf6NJpDrDMSHwZj+3iKC4jFU7dkKbbtH2h/al4sW3Q== + version "1.3.0" + resolved "https://registry.yarnpkg.com/@storybook/icons/-/icons-1.3.0.tgz#a5c1460fb15a7260e0b638ab86163f7347a0061e" + integrity sha512-Nz/UzeYQdUZUhacrPyfkiiysSjydyjgg/p0P9HxB4p/WaJUUjMAcaoaLgy3EXx61zZJ3iD36WPuDkZs5QYrA0A== -"@storybook/manager-api@8.4.6", "@storybook/manager-api@^8.0.0": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/manager-api/-/manager-api-8.4.6.tgz#844a8b71de7eae44998a83b96666a05e6e49156c" - integrity sha512-TsXlQ5m5rTl2KNT9icPFyy822AqXrx1QplZBt/L7cFn7SpqQKDeSta21FH7MG0piAvzOweXebVSqKngJ6cCWWQ== +"@storybook/manager-api@8.4.7", "@storybook/manager-api@^8.0.0": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/manager-api/-/manager-api-8.4.7.tgz#4e13debf645c9300d7d6d49195e720d0c7ecd261" + integrity sha512-ELqemTviCxAsZ5tqUz39sDmQkvhVAvAgiplYy9Uf15kO0SP2+HKsCMzlrm2ue2FfkUNyqbDayCPPCB0Cdn/mpQ== -"@storybook/preset-html-webpack@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/preset-html-webpack/-/preset-html-webpack-8.4.6.tgz#624747e9e0f38f3f2bce6f530807bd8e1a24e135" - integrity sha512-bc1cBC1m0LFIo206JGAi51qqYmTEmUl3UmO/4JBqm8mD2TlN9YMXp9KJ9bz+BoX9mcmKXJmFAXcIHPPv2CnM0Q== +"@storybook/preset-html-webpack@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/preset-html-webpack/-/preset-html-webpack-8.4.7.tgz#78018e6e166c77efdae68d656d9c227f6bcfa365" + integrity sha512-CYgbU+B7btBqN38bdGk4jzwaMGM2/NJn9R0jN07rnE4s2ThPgEiBr1G45yuYxURJ+l/HUa7+DyKEwPrbVUTB2g== dependencies: - "@storybook/core-webpack" "8.4.6" + "@storybook/core-webpack" "8.4.7" "@types/node" "^22.0.0" html-loader "^3.1.0" webpack "5" -"@storybook/preview-api@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/preview-api/-/preview-api-8.4.6.tgz#5c167e5c0fceed1010da27bcf08c81e2449cb538" - integrity sha512-LbD+lR1FGvWaJBXteVx5xdgs1x1D7tyidBg2CsW2ex+cP0iJ176JgjPfutZxlWOfQnhfRYNnJ3WKoCIfxFOTKA== +"@storybook/preview-api@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/preview-api/-/preview-api-8.4.7.tgz#85e01a97f4182b974581765d725f6c7a7d190013" + integrity sha512-0QVQwHw+OyZGHAJEXo6Knx+6/4er7n2rTDE5RYJ9F2E2Lg42E19pfdLlq2Jhoods2Xrclo3wj6GWR//Ahi39Eg== -"@storybook/react-dom-shim@8.4.6": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-8.4.6.tgz#526fa7a7c754cbb5e42f2ade4b167f210a4fd70e" - integrity sha512-f7RM8GO++fqMxbjNdEzeGS1P821jXuwRnAraejk5hyjB5SqetauFxMwoFYEYfJXPaLX2qIubnIJ78hdJ/IBaEA== +"@storybook/react-dom-shim@8.4.7": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/react-dom-shim/-/react-dom-shim-8.4.7.tgz#f0dd5bbf2fc185def72d9d08a11c8de22f152c2a" + integrity sha512-6bkG2jvKTmWrmVzCgwpTxwIugd7Lu+2btsLAqhQSzDyIj2/uhMNp8xIMr/NBDtLgq3nomt9gefNa9xxLwk/OMg== "@storybook/router@6.2.9": version "6.2.9" @@ -3347,10 +3347,10 @@ resolve-from "^5.0.0" ts-dedent "^2.0.0" -"@storybook/theming@8.4.6", "@storybook/theming@^8.0.0": - version "8.4.6" - resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-8.4.6.tgz#40b03d72b014cc0bb6530aba0652b49e176b0c0e" - integrity sha512-q7vDPN/mgj7cXIVQ9R1/V75hrzNgKkm2G0LjMo57//9/djQ+7LxvBsR1iScbFIRSEqppvMiBFzkts+2uXidySA== +"@storybook/theming@8.4.7", "@storybook/theming@^8.0.0": + version "8.4.7" + resolved "https://registry.yarnpkg.com/@storybook/theming/-/theming-8.4.7.tgz#c308f6a883999bd35e87826738ab8a76515932b5" + integrity sha512-99rgLEjf7iwfSEmdqlHkSG3AyLcK0sfExcr0jnc6rLiAkBhzuIsvcHjjUwkR210SOCgXqBPW0ZA6uhnuyppHLw== "@tootallnate/once@1": version "1.1.2" @@ -3753,11 +3753,6 @@ resolved "https://registry.yarnpkg.com/@types/parse-path/-/parse-path-7.0.3.tgz#cec2da2834ab58eb2eb579122d9a1fc13bd7ef36" integrity sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg== -"@types/prop-types@*": - version "15.7.13" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.13.tgz#2af91918ee12d9d32914feb13f5326658461b451" - integrity sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA== - "@types/qs@*": version "6.9.17" resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.17.tgz#fc560f60946d0aeff2f914eb41679659d3310e1a" @@ -3783,11 +3778,10 @@ "@types/react" "*" "@types/react@*": - version "18.3.12" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.12.tgz#99419f182ccd69151813b7ee24b792fe08774f60" - integrity sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw== + version "19.0.1" + resolved "https://registry.yarnpkg.com/@types/react/-/react-19.0.1.tgz#a000d5b78f473732a08cecbead0f3751e550b3df" + integrity sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ== dependencies: - "@types/prop-types" "*" csstype "^3.0.2" "@types/resolve@0.0.8": @@ -3943,9 +3937,9 @@ eslint-visitor-keys "^3.3.0" "@ungap/structured-clone@^1.0.0", "@ungap/structured-clone@^1.2.0": - version "1.2.0" - resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" - integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + version "1.2.1" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.1.tgz#28fa185f67daaf7b7a1a8c1d445132c5d979f8bd" + integrity sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA== "@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.14.1": version "1.14.1" @@ -4205,12 +4199,10 @@ agent-base@6, agent-base@^6.0.2: dependencies: debug "4" -agent-base@^7.0.2, agent-base@^7.1.0, agent-base@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" - integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== - dependencies: - debug "^4.3.4" +agent-base@^7.0.2, agent-base@^7.1.0, agent-base@^7.1.2: + version "7.1.3" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.3.tgz#29435eb821bc4194633a5b89e5bc4703bafc25a1" + integrity sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw== agentkeepalive@^4.1.3: version "4.5.0" @@ -5287,16 +5279,23 @@ cacache@^18.0.0, cacache@^18.0.3: tar "^6.1.11" unique-filename "^3.0.0" -call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" - integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== +call-bind-apply-helpers@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz#32e5892e6361b29b0b545ba6f7763378daca2840" + integrity sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g== dependencies: - es-define-property "^1.0.0" es-errors "^1.3.0" function-bind "^1.1.2" + +call-bind@^1.0.0, call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7, call-bind@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c" + integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-define-property "^1.0.0" get-intrinsic "^1.2.4" - set-function-length "^1.2.1" + set-function-length "^1.2.2" callsites@^3.0.0: version "3.1.0" @@ -5354,9 +5353,9 @@ caniuse-api@^3.0.0: lodash.uniq "^4.5.0" caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: - version "1.0.30001686" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001686.tgz#0e04b8d90de8753188e93c9989d56cb19d902670" - integrity sha512-Y7deg0Aergpa24M3qLC5xjNklnKnhsmSyR/V89dLZ1n0ucJIFNs7PgR2Yfa/Zf6W79SbBicgtGxZr2juHkEUIA== + version "1.0.30001687" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001687.tgz#d0ac634d043648498eedf7a3932836beba90ebae" + integrity sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ== capitalize@^1.0.0: version "1.0.0" @@ -6244,10 +6243,10 @@ create-react-context@0.3.0: gud "^1.0.0" warning "^4.0.3" -create-storybook@8.4.6: - version "8.4.6" - resolved "https://registry.yarnpkg.com/create-storybook/-/create-storybook-8.4.6.tgz#1378111622e9a40463744717ea8abd173dc7700f" - integrity sha512-PG45i/TDMvVulSz30/v7LKVheu2EQnRqV2y5R3hjkTl18aH7iN4NXnYGjoH08jbJg3B/NQSdAhfPhYuIwwX4Gg== +create-storybook@8.4.7: + version "8.4.7" + resolved "https://registry.yarnpkg.com/create-storybook/-/create-storybook-8.4.7.tgz#ad746a18ae036e1ab0f9c6dd342e1fe79355940a" + integrity sha512-Q2DkZEWkIUGv5EACT4SRsHnKO5WDZQAu772B/WeyYr1g38ksJziOut2auzS5sks5dWBmUgYssW8htSELuVRLGQ== dependencies: "@types/semver" "^7.3.4" commander "^12.1.0" @@ -6258,7 +6257,7 @@ create-storybook@8.4.6: prettier "^3.1.1" prompts "^2.4.0" semver "^7.3.7" - storybook "8.4.6" + storybook "8.4.7" tiny-invariant "^1.3.1" ts-dedent "^2.0.0" @@ -6417,12 +6416,12 @@ css-tree@^2.3.1: mdn-data "2.0.30" source-map-js "^1.0.1" -css-tree@^3.0.0, css-tree@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-3.0.1.tgz#bea6deaea60bb5bcf416adfb1ecf607a8d9471f6" - integrity sha512-8Fxxv+tGhORlshCdCwnNJytvlvq46sOLSYEx2ZIGurahWvMucSRnyjPA3AmrMq4VPRYbHVpWj5VkiVasrM2H4Q== +css-tree@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-3.1.0.tgz#7aabc035f4e66b5c86f54570d55e05b1346eb0fd" + integrity sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w== dependencies: - mdn-data "2.12.1" + mdn-data "2.12.2" source-map-js "^1.0.1" css-tree@~2.2.0: @@ -6608,10 +6607,10 @@ debug@2.6.9, debug@^2.2.0, debug@^2.6.0: dependencies: ms "2.0.0" -debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.5, debug@^4.3.7, debug@~4.3.1, debug@~4.3.2, debug@~4.3.4, debug@~4.3.6: - version "4.3.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" - integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== +debug@4, debug@^4.0.0, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.5, debug@^4.3.7, debug@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.0.tgz#2b3f2aea2ffeb776477460267377dc8710faba8a" + integrity sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA== dependencies: ms "^2.1.3" @@ -6636,6 +6635,13 @@ debug@^3.2.7: dependencies: ms "^2.1.1" +debug@~4.3.1, debug@~4.3.2, debug@~4.3.4, debug@~4.3.6: + version "4.3.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" + integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== + dependencies: + ms "^2.1.3" + decamelize-keys@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.1.tgz#04a2d523b2f18d80d0158a43b895d56dff8d19d8" @@ -7060,6 +7066,15 @@ dotenv@^16.4.5, dotenv@~16.4.5: resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz#0e20c5b82950140aa99be360a8a5f52335f53c26" integrity sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ== +dunder-proto@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.0.tgz#c2fce098b3c8f8899554905f4377b6d85dabaa80" + integrity sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A== + dependencies: + call-bind-apply-helpers "^1.0.0" + es-errors "^1.3.0" + gopd "^1.2.0" + duplexer@^0.1.1, duplexer@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" @@ -7107,9 +7122,9 @@ ejs@^3.1.7: jake "^10.8.5" electron-to-chromium@^1.5.41: - version "1.5.68" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.68.tgz#4f46be4d465ef00e2100d5557b66f4af70e3ce6c" - integrity sha512-FgMdJlma0OzUYlbrtZ4AeXjKxKPk6KT8WOP8BjcqxWtlg8qyJQjRzPJzUtUn5GBg1oQ26hFs7HOOHJMYiJRnvQ== + version "1.5.72" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.72.tgz#a732805986d3a5b5fedd438ddf4616c7d78ac2df" + integrity sha512-ZpSAUOZ2Izby7qnZluSrAlGgGQzucmFbN0n64dYzocYxnxV5ufurpj3VgEe4cUp7ir9LmeLxNYo8bVnlM8bQHw== elliptic@^6.5.3, elliptic@^6.5.5: version "6.6.1" @@ -7333,12 +7348,10 @@ es-abstract@^1.17.5, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23 unbox-primitive "^1.0.2" which-typed-array "^1.1.15" -es-define-property@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" - integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== - dependencies: - get-intrinsic "^1.2.4" +es-define-property@^1.0.0, es-define-property@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa" + integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g== es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" @@ -8029,9 +8042,9 @@ express@4.16.4: vary "~1.1.2" express@^4.17.1, express@^4.19.2: - version "4.21.1" - resolved "https://registry.yarnpkg.com/express/-/express-4.21.1.tgz#9dae5dda832f16b4eec941a4e44aa89ec481b281" - integrity sha512-YSFlK1Ee0/GC8QaO91tHcDxJiE/X4FbpAyQWkxAvG6AXCuR65YzK8ua6D9hvi/TzUfZMpc+BwuM1IPw8fmQBiQ== + version "4.21.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.21.2.tgz#cf250e48362174ead6cea4a566abef0162c1ec32" + integrity sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA== dependencies: accepts "~1.3.8" array-flatten "1.1.1" @@ -8052,7 +8065,7 @@ express@^4.17.1, express@^4.19.2: methods "~1.1.2" on-finished "2.4.1" parseurl "~1.3.3" - path-to-regexp "0.1.10" + path-to-regexp "0.1.12" proxy-addr "~2.0.7" qs "6.13.0" range-parser "~1.2.1" @@ -8394,9 +8407,9 @@ flatted@^3.2.9, flatted@^3.3.1: integrity sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA== flow-parser@0.*: - version "0.255.0" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.255.0.tgz#5531951318db50ad760fdc1f150e09a3972785c0" - integrity sha512-7QHV2m2mIMh6yIMaAPOVbyNEW77IARwO69d4DgvfDCjuORiykdMLf7XBjF7Zeov7Cpe1OXJ8sB6/aaCE3xuRBw== + version "0.256.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.256.0.tgz#2a453925caa0f40beb83ef72ea6479ef7b25d739" + integrity sha512-HFb/GgB7hq+TYosLJuMLdLp8aGlyAVfrJaTvcM0w2rz2T33PjkVbRU419ncK/69cjowUksewuspkBheq9ZX9Hw== fn.name@1.x.x: version "1.1.0" @@ -8619,15 +8632,18 @@ get-east-asian-width@^1.0.0: integrity sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ== get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" - integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + version "1.2.5" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.5.tgz#dfe7dd1b30761b464fe51bf4bb00ac7c37b681e7" + integrity sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg== dependencies: + call-bind-apply-helpers "^1.0.0" + dunder-proto "^1.0.0" + es-define-property "^1.0.1" es-errors "^1.3.0" function-bind "^1.1.2" - has-proto "^1.0.1" - has-symbols "^1.0.3" - hasown "^2.0.0" + gopd "^1.2.0" + has-symbols "^1.1.0" + hasown "^2.0.2" get-package-type@^0.1.0: version "0.1.0" @@ -8900,12 +8916,10 @@ good-listener@^1.2.2: dependencies: delegate "^3.1.2" -gopd@^1.0.1, gopd@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.1.0.tgz#df8f0839c2d48caefc32a025a49294d39606c912" - integrity sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA== - dependencies: - get-intrinsic "^1.2.4" +gopd@^1.0.1, gopd@^1.1.0, gopd@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1" + integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg== graceful-fs@4.2.11, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9: version "4.2.11" @@ -8988,14 +9002,14 @@ has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: dependencies: es-define-property "^1.0.0" -has-proto@^1.0.1, has-proto@^1.0.3: - version "1.1.0" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.1.0.tgz#deb10494cbbe8809bce168a3b961f42969f5ed43" - integrity sha512-QLdzI9IIO1Jg7f9GT1gXpPpXArAn6cS31R1eEZqz08Gc+uQ8/XiqHWt17Fiw+2p6oTTIq5GXEpQkAlA88YRl/Q== +has-proto@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz#5de5a6eabd95fdffd9818b43055e8065e39fe9d5" + integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ== dependencies: - call-bind "^1.0.7" + dunder-proto "^1.0.0" -has-symbols@^1.0.3: +has-symbols@^1.0.3, has-symbols@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338" integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ== @@ -9466,12 +9480,12 @@ https-proxy-agent@^5.0.0, https-proxy-agent@^5.0.1: agent-base "6" debug "4" -https-proxy-agent@^7.0.1, https-proxy-agent@^7.0.3, https-proxy-agent@^7.0.5: - version "7.0.5" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" - integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== +https-proxy-agent@^7.0.1, https-proxy-agent@^7.0.3, https-proxy-agent@^7.0.6: + version "7.0.6" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz#da8dfeac7da130b05c2ba4b59c9b6cd66611a6b9" + integrity sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw== dependencies: - agent-base "^7.0.2" + agent-base "^7.1.2" debug "4" human-signals@^2.1.0: @@ -11026,11 +11040,6 @@ kleur@^4.0.3: resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780" integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ== -known-css-properties@^0.34.0: - version "0.34.0" - resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.34.0.tgz#ccd7e9f4388302231b3f174a8b1d5b1f7b576cea" - integrity sha512-tBECoUqNFbyAY4RrbqsBQqDFpGXAEbdD5QKr8kACx3+rnArmuuR22nKQWKazvp07N9yjTyDZaw/20UIH8tL9DQ== - known-css-properties@^0.35.0: version "0.35.0" resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.35.0.tgz#f6f8e40ab4e5700fa32f5b2ef5218a56bc853bd6" @@ -11495,9 +11504,9 @@ magic-string@^0.25.2: sourcemap-codec "^1.4.8" magic-string@^0.30.3, magic-string@^0.30.5: - version "0.30.14" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.14.tgz#e9bb29870b81cfc1ec3cc656552f5a7fcbf19077" - integrity sha512-5c99P1WKTed11ZC0HMJOj6CDIue6F8ySu+bJL+85q1zBEIY8IklrJ1eiKC2NDRh3Ct3FcvmJPyQHb9erXMTJNw== + version "0.30.15" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.15.tgz#d5474a2c4c5f35f041349edaba8a5cb02733ed3c" + integrity sha512-zXeaYRgZ6ldS1RJJUrMrYgNJ4fdwnyI6tVqoiIhyCyv5IVTK9BU8Ic2l253GGETQHxI4HNUwhJ3fjDhKqEoaAw== dependencies: "@jridgewell/sourcemap-codec" "^1.5.0" @@ -11968,16 +11977,16 @@ mdn-data@2.0.30: resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc" integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA== -mdn-data@2.12.1: - version "2.12.1" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.12.1.tgz#10cb462215c13d95c92ff60d0fb3becac1bbb924" - integrity sha512-rsfnCbOHjqrhWxwt5/wtSLzpoKTzW7OXdT5lLOIH1OTYhWu9rRJveGq0sKvDZODABH7RX+uoR+DYcpFnq4Tf6Q== - -mdn-data@^2.12.2: +mdn-data@2.12.2: version "2.12.2" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.12.2.tgz#9ae6c41a9e65adf61318b32bff7b64fbfb13f8cf" integrity sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA== +mdn-data@^2.12.2: + version "2.13.0" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.13.0.tgz#10af1de5d0d5e4ceb4fe01f3086b34f1178473d9" + integrity sha512-OmD1FDyP706JqPqtLqgev/QCK0qudBdUuKKag6InQ/elEw3Cm2AhXYktcSggdc/vWniYqIsofkcteMEOioW5vQ== + mdn-data@~1.1.0: version "1.1.4" resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01" @@ -12001,9 +12010,9 @@ memfs@^3.1.2, memfs@^3.4.1, memfs@^3.4.12: fs-monkey "^1.0.4" memfs@^4.6.0: - version "4.14.1" - resolved "https://registry.yarnpkg.com/memfs/-/memfs-4.14.1.tgz#3e2dcba9b5a8dd559e41e4603b7b1eff7a75cfb3" - integrity sha512-Fq5CMEth+2iprLJ5mNizRcWuiwRZYjNkUD0zKk224jZunE9CRacTRDK8QLALbMBlNX2y3nY6lKZbesCwDwacig== + version "4.15.0" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-4.15.0.tgz#481af5a4d807fc97b199985a11d5f06ac866a370" + integrity sha512-q9MmZXd2rRWHS6GU3WEm3HyiXZyyoA1DqdOhEq0lxPBmKb5S7IAOwX0RgUCwJfqjelDCySa5h8ujOy24LqsWcw== dependencies: "@jsonjoy.com/json-pack" "^1.0.3" "@jsonjoy.com/util" "^1.3.0" @@ -13120,9 +13129,9 @@ nanoid@^5.0.7: integrity sha512-Aooyr6MXU6HpvvWXKoVoXwKMs/KyVakWwg7xQfv5/S/RIgJMy0Ifa45H9qqYy7pTCszrHzP21Uk4PZq2HpEM8Q== nanospinner@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/nanospinner/-/nanospinner-1.2.0.tgz#3b133ea6d67e67f10eb9c74bc304f72f44c8fff1" - integrity sha512-dGxYcEj8YhuxjVO3PYmnj1nBhtwUkvuwYbLl/MduBPmQUPy3xBtG/ScJgqZgntQkX44UQaCSlFeW4rS5fUR/Sw== + version "1.2.2" + resolved "https://registry.yarnpkg.com/nanospinner/-/nanospinner-1.2.2.tgz#5a38f4410b5bf7a41585964bee74d32eab3e040b" + integrity sha512-Zt/AmG6qRU3e+WnzGGLuMCEAO/dAu45stNbHY223tUxldaDAeE+FxSPsd9Q+j+paejmm0ZbrNVs5Sraqy3dRxA== dependencies: picocolors "^1.1.1" @@ -13283,9 +13292,9 @@ node-polyfill-webpack-plugin@2.0.1: vm-browserify "^1.1.2" node-releases@^2.0.18: - version "2.0.18" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" - integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== + version "2.0.19" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.19.tgz#9e445a52950951ec4d177d843af370b411caf314" + integrity sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw== nopt@^7.0.0, nopt@^7.2.0, nopt@^7.2.1: version "7.2.1" @@ -13450,9 +13459,9 @@ nwsapi@^2.2.2: integrity sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ== "nx@>=17.1.2 < 21": - version "20.1.4" - resolved "https://registry.yarnpkg.com/nx/-/nx-20.1.4.tgz#ed6c3493fb8c91b0d20862ee62858a1e4ef427a4" - integrity sha512-hyvGYxTzBkPxSXAB2tuqdv9TpVde5xOdGalsIdhF7j7PI3nwPpqtc3y28YTgRgpxtOE1Y6BfDNkXMO1SW0xu2w== + version "20.2.1" + resolved "https://registry.yarnpkg.com/nx/-/nx-20.2.1.tgz#80406de485ff542fcbc71062f2ff63182a1aea96" + integrity sha512-zUw1DT9BW2ajbDZgcUFKfysGqrbJwsMRjPxT6GthuqcLtDc2iJi3+/UBTLsITSeiw4Za4qPVxjaK4+yma9Ju5w== dependencies: "@napi-rs/wasm-runtime" "0.2.4" "@yarnpkg/lockfile" "^1.1.0" @@ -13484,19 +13493,20 @@ nwsapi@^2.2.2: tmp "~0.2.1" tsconfig-paths "^4.1.2" tslib "^2.3.0" + yaml "^2.6.0" yargs "^17.6.2" yargs-parser "21.1.1" optionalDependencies: - "@nx/nx-darwin-arm64" "20.1.4" - "@nx/nx-darwin-x64" "20.1.4" - "@nx/nx-freebsd-x64" "20.1.4" - "@nx/nx-linux-arm-gnueabihf" "20.1.4" - "@nx/nx-linux-arm64-gnu" "20.1.4" - "@nx/nx-linux-arm64-musl" "20.1.4" - "@nx/nx-linux-x64-gnu" "20.1.4" - "@nx/nx-linux-x64-musl" "20.1.4" - "@nx/nx-win32-arm64-msvc" "20.1.4" - "@nx/nx-win32-x64-msvc" "20.1.4" + "@nx/nx-darwin-arm64" "20.2.1" + "@nx/nx-darwin-x64" "20.2.1" + "@nx/nx-freebsd-x64" "20.2.1" + "@nx/nx-linux-arm-gnueabihf" "20.2.1" + "@nx/nx-linux-arm64-gnu" "20.2.1" + "@nx/nx-linux-arm64-musl" "20.2.1" + "@nx/nx-linux-x64-gnu" "20.2.1" + "@nx/nx-linux-x64-musl" "20.2.1" + "@nx/nx-win32-arm64-msvc" "20.2.1" + "@nx/nx-win32-x64-msvc" "20.2.1" nypm@^0.3.8: version "0.3.12" @@ -13877,19 +13887,19 @@ p-waterfall@2.1.1: dependencies: p-reduce "^2.0.0" -pac-proxy-agent@^7.0.1: - version "7.0.2" - resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-7.0.2.tgz#0fb02496bd9fb8ae7eb11cfd98386daaac442f58" - integrity sha512-BFi3vZnO9X5Qt6NRz7ZOaPja3ic0PhlsmCRYLOpN11+mWBCR6XJDqW5RF3j8jm4WGGQZtBA+bTfxYzeKW73eHg== +pac-proxy-agent@^7.0.1, pac-proxy-agent@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/pac-proxy-agent/-/pac-proxy-agent-7.1.0.tgz#da7c3b5c4cccc6655aaafb701ae140fb23f15df2" + integrity sha512-Z5FnLVVZSnX7WjBg0mhDtydeRZ1xMcATZThjySQUHqr+0ksP8kqaw23fNKkaaN/Z8gwLUs/W7xdl0I75eP2Xyw== dependencies: "@tootallnate/quickjs-emscripten" "^0.23.0" - agent-base "^7.0.2" + agent-base "^7.1.2" debug "^4.3.4" get-uri "^6.0.1" http-proxy-agent "^7.0.0" - https-proxy-agent "^7.0.5" + https-proxy-agent "^7.0.6" pac-resolver "^7.0.1" - socks-proxy-agent "^8.0.4" + socks-proxy-agent "^8.0.5" pac-resolver@^7.0.1: version "7.0.1" @@ -14172,10 +14182,10 @@ path-scurry@^2.0.0: lru-cache "^11.0.0" minipass "^7.1.2" -path-to-regexp@0.1.10, path-to-regexp@0.1.7, path-to-regexp@3.3.0, path-to-regexp@^1.7.0: - version "0.1.10" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.10.tgz#67e9108c5c0551b9e5326064387de4763c4d5f8b" - integrity sha512-7lf7qcQidTku0Gu3YDPc8DJ1q7OOucfa/BSsIwjuh56VU7katFvuM8hULfkwB3Fns/rsVF7PwPKVw1sl5KQS9w== +path-to-regexp@0.1.12, path-to-regexp@0.1.7, path-to-regexp@3.3.0, path-to-regexp@^1.7.0: + version "0.1.12" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.12.tgz#d5e1a12e478a976d432ef3c58d534b9923164bb7" + integrity sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ== path-type@^3.0.0: version "3.0.0" @@ -14642,7 +14652,7 @@ postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== -postcss@8.4.49, postcss@>=8.4.31, postcss@^8.2.2, postcss@^8.4.32, postcss@^8.4.33, postcss@^8.4.38, postcss@^8.4.47: +postcss@8.4.49, postcss@>=8.4.31, postcss@^8.2.2, postcss@^8.4.32, postcss@^8.4.33, postcss@^8.4.38, postcss@^8.4.49: version "8.4.49" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== @@ -14668,12 +14678,7 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@3.3.3: - version "3.3.3" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" - integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== - -prettier@^3.1.1: +prettier@3.4.2, prettier@^3.1.1: version "3.4.2" resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.4.2.tgz#a5ce1fb522a588bf2b78ca44c6e6fe5aa5a2b13f" integrity sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ== @@ -14819,7 +14824,7 @@ proxy-addr@~2.0.4, proxy-addr@~2.0.7: forwarded "0.2.0" ipaddr.js "1.9.1" -proxy-agent@6.4.0, proxy-agent@^6.4.0: +proxy-agent@6.4.0: version "6.4.0" resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-6.4.0.tgz#b4e2dd51dee2b377748aef8d45604c2d7608652d" integrity sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ== @@ -14833,6 +14838,20 @@ proxy-agent@6.4.0, proxy-agent@^6.4.0: proxy-from-env "^1.1.0" socks-proxy-agent "^8.0.2" +proxy-agent@^6.5.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/proxy-agent/-/proxy-agent-6.5.0.tgz#9e49acba8e4ee234aacb539f89ed9c23d02f232d" + integrity sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A== + dependencies: + agent-base "^7.1.2" + debug "^4.3.4" + http-proxy-agent "^7.0.1" + https-proxy-agent "^7.0.6" + lru-cache "^7.14.1" + pac-proxy-agent "^7.1.0" + proxy-from-env "^1.1.0" + socks-proxy-agent "^8.0.5" + proxy-from-env@1.1.0, proxy-from-env@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" @@ -15205,9 +15224,9 @@ react-syntax-highlighter@^13.5.3: refractor "^3.1.0" react-textarea-autosize@^8.3.0: - version "8.5.5" - resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.5.5.tgz#987cc25ad7f8e51389a41f88239ff07d2e968761" - integrity sha512-CVA94zmfp8m4bSHtWwmANaBR8EPsKy2aZ7KwqhoS4Ftib87F9Kvi7XQhOixypPLMc6kVYgOXvKFuuzZDpHGRPg== + version "8.5.6" + resolved "https://registry.yarnpkg.com/react-textarea-autosize/-/react-textarea-autosize-8.5.6.tgz#e9205fb215eea7cbb6cba8f57dd874ab5d44a241" + integrity sha512-aT3ioKXMa8f6zHYGebhbdMD2L00tKeRX1zuVuDx9YQK/JLLRSaSxq3ugECEmUB9z2kvk6bFSIoRHLkkUv0RJiw== dependencies: "@babel/runtime" "^7.20.13" use-composed-ref "^1.3.0" @@ -15403,17 +15422,18 @@ redent@^3.0.0: strip-indent "^3.0.0" reflect.getprototypeof@^1.0.4, reflect.getprototypeof@^1.0.6: - version "1.0.7" - resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.7.tgz#04311b33a1b713ca5eb7b5aed9950a86481858e5" - integrity sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g== + version "1.0.8" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.8.tgz#c58afb17a4007b4d1118c07b92c23fca422c5d82" + integrity sha512-B5dj6usc5dkk8uFliwjwDHM8To5/QwdKz9JcBZ8Ic4G1f0YmeeJTtE/ZTdgRFPAfxZFiUaPhZ1Jcs4qeagItGQ== dependencies: - call-bind "^1.0.7" + call-bind "^1.0.8" define-properties "^1.2.1" + dunder-proto "^1.0.0" es-abstract "^1.23.5" es-errors "^1.3.0" get-intrinsic "^1.2.4" - gopd "^1.0.1" - which-builtin-type "^1.1.4" + gopd "^1.2.0" + which-builtin-type "^1.2.0" refractor@^3.1.0, refractor@^3.6.0: version "3.6.0" @@ -15974,6 +15994,17 @@ sass@1.81.0: optionalDependencies: "@parcel/watcher" "^2.4.1" +sass@1.82.0: + version "1.82.0" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.82.0.tgz#30da277af3d0fa6042e9ceabd0d984ed6d07df70" + integrity sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q== + dependencies: + chokidar "^4.0.0" + immutable "^5.0.2" + source-map-js ">=0.6.2 <2.0.0" + optionalDependencies: + "@parcel/watcher" "^2.4.1" + sax@>=0.6.0: version "1.4.1" resolved "https://registry.yarnpkg.com/sax/-/sax-1.4.1.tgz#44cc8988377f126304d3b3fc1010c733b929ef0f" @@ -16196,7 +16227,7 @@ set-blocking@^2.0.0: resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== -set-function-length@^1.2.1: +set-function-length@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== @@ -16462,12 +16493,12 @@ socks-proxy-agent@^6.0.0: debug "^4.3.3" socks "^2.6.2" -socks-proxy-agent@^8.0.2, socks-proxy-agent@^8.0.3, socks-proxy-agent@^8.0.4: - version "8.0.4" - resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.4.tgz#9071dca17af95f483300316f4b063578fa0db08c" - integrity sha512-GNAq/eg8Udq2x0eNiFkr9gRg5bA7PXEWagQdeRX4cPSG+X/8V38v637gim9bjFptMk1QWsCTr0ttrJEiXbNnRw== +socks-proxy-agent@^8.0.2, socks-proxy-agent@^8.0.3, socks-proxy-agent@^8.0.5: + version "8.0.5" + resolved "https://registry.yarnpkg.com/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz#b9cdb4e7e998509d7659d689ce7697ac21645bee" + integrity sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw== dependencies: - agent-base "^7.1.1" + agent-base "^7.1.2" debug "^4.3.4" socks "^2.8.3" @@ -16706,12 +16737,12 @@ storybook-dark-mode@4.0.2: fast-deep-equal "^3.1.3" memoizerific "^1.11.3" -storybook@8.4.6: - version "8.4.6" - resolved "https://registry.yarnpkg.com/storybook/-/storybook-8.4.6.tgz#6a25899fc4a58657e3a66c0b0d9066f3c201f8cc" - integrity sha512-J6juZSZT2u3PUW0QZYZZYxBq6zU5O0OrkSgkMXGMg/QrS9to9IHmt4FjEMEyACRbXo8POcB/fSXa3VpGe7bv3g== +storybook@8.4.7: + version "8.4.7" + resolved "https://registry.yarnpkg.com/storybook/-/storybook-8.4.7.tgz#a3068787a58074cec1b4197eed1c4427ec644b3f" + integrity sha512-RP/nMJxiWyFc8EVMH5gp20ID032Wvk+Yr3lmKidoegto5Iy+2dVQnUoElZb2zpbVXNHWakGuAkfI0dY1Hfp/vw== dependencies: - "@storybook/core" "8.4.6" + "@storybook/core" "8.4.7" stream-browserify@^3.0.0: version "3.0.0" @@ -17052,21 +17083,21 @@ stylelint-scss@6.10.0, stylelint-scss@^6.0.0, stylelint-scss@^6.4.0: postcss-selector-parser "^7.0.0" postcss-value-parser "^4.2.0" -stylelint@16.10.0: - version "16.10.0" - resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-16.10.0.tgz#452b42a5d82f2ad910954eb2ba2b3a2ec583cd75" - integrity sha512-z/8X2rZ52dt2c0stVwI9QL2AFJhLhbPkyfpDFcizs200V/g7v+UYY6SNcB9hKOLcDDX/yGLDsY/pX08sLkz9xQ== +stylelint@16.11.0: + version "16.11.0" + resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-16.11.0.tgz#7eb653b007dc0b4366dc3aa7bfa94ced0c52f087" + integrity sha512-zrl4IrKmjJQ+h9FoMp69UMCq5SxeHk0URhxUBj4d3ISzo/DplOFBJZc7t7Dr6otB+1bfbbKNLOmCDpzKSlW+Nw== dependencies: - "@csstools/css-parser-algorithms" "^3.0.1" - "@csstools/css-tokenizer" "^3.0.1" - "@csstools/media-query-list-parser" "^3.0.1" - "@csstools/selector-specificity" "^4.0.0" + "@csstools/css-parser-algorithms" "^3.0.4" + "@csstools/css-tokenizer" "^3.0.3" + "@csstools/media-query-list-parser" "^4.0.2" + "@csstools/selector-specificity" "^5.0.0" "@dual-bundle/import-meta-resolve" "^4.1.0" balanced-match "^2.0.0" colord "^2.9.3" cosmiconfig "^9.0.0" css-functions-list "^3.2.3" - css-tree "^3.0.0" + css-tree "^3.0.1" debug "^4.3.7" fast-glob "^3.3.2" fastest-levenshtein "^1.0.16" @@ -17078,16 +17109,16 @@ stylelint@16.10.0: ignore "^6.0.2" imurmurhash "^0.1.4" is-plain-object "^5.0.0" - known-css-properties "^0.34.0" + known-css-properties "^0.35.0" mathml-tag-names "^2.1.3" meow "^13.2.0" micromatch "^4.0.8" normalize-path "^3.0.0" - picocolors "^1.0.1" - postcss "^8.4.47" + picocolors "^1.1.1" + postcss "^8.4.49" postcss-resolve-nested-selector "^0.1.6" postcss-safe-parser "^7.0.1" - postcss-selector-parser "^6.1.2" + postcss-selector-parser "^7.0.0" postcss-value-parser "^4.2.0" resolve-from "^5.0.0" string-width "^4.2.3" @@ -17342,9 +17373,9 @@ terser-webpack-plugin@5.3.10, terser-webpack-plugin@^5.3.1, terser-webpack-plugi terser "^5.26.0" terser@^5.10.0, terser@^5.15.1, terser@^5.26.0: - version "5.36.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.36.0.tgz#8b0dbed459ac40ff7b4c9fd5a3a2029de105180e" - integrity sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w== + version "5.37.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.37.0.tgz#38aa66d1cfc43d0638fab54e43ff8a4f72a21ba3" + integrity sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -17361,9 +17392,11 @@ test-exclude@^6.0.0: minimatch "^3.0.4" text-decoder@^1.1.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.1.tgz#e173f5121d97bfa3ff8723429ad5ba92e1ead67e" - integrity sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ== + version "1.2.2" + resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.2.tgz#63dd2401c43895cecb292e2407db184b50ad60ac" + integrity sha512-/MDslo7ZyWTA2vnk1j7XoDVfXsGk3tp+zFEJHJGm0UjIlQifonVFwlVbQDFh8KJzTBnT8ie115TYqir6bclddA== + dependencies: + b4a "^1.6.4" text-extensions@^1.0.0: version "1.9.0" @@ -18123,9 +18156,9 @@ use-composed-ref@^1.3.0: integrity sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ== use-isomorphic-layout-effect@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz#497cefb13d863d687b08477d9e5a164ad8c1a6fb" - integrity sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA== + version "1.2.0" + resolved "https://registry.yarnpkg.com/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.2.0.tgz#afb292eb284c39219e8cb8d3d62d71999361a21d" + integrity sha512-q6ayo8DWoPZT0VdG4u3D3uxcgONP3Mevx2i2b0434cwWBoL+aelL1DzkXI6w3PhTZzUeR2kaVlZn70iCiseP6w== use-latest@^1.2.1: version "1.2.1" @@ -18454,9 +18487,9 @@ webpack-virtual-modules@^0.6.0, webpack-virtual-modules@^0.6.2: integrity sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ== webpack@5, webpack@5.94.0, webpack@>=5.76.3, webpack@^5.95.0: - version "5.97.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.97.0.tgz#1c5e3b9319f8c6decb19b142e776d90e629d5c40" - integrity sha512-CWT8v7ShSfj7tGs4TLRtaOLmOCPWhoKEvp+eA7FVx8Xrjb3XfT0aXdxDItnRZmE8sHcH+a8ayDrJCOjXKxVFfQ== + version "5.97.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.97.1.tgz#972a8320a438b56ff0f1d94ade9e82eac155fa58" + integrity sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg== dependencies: "@types/eslint-scope" "^3.7.7" "@types/estree" "^1.0.6" @@ -18545,7 +18578,7 @@ which-boxed-primitive@^1.0.2: is-string "^1.1.0" is-symbol "^1.1.0" -which-builtin-type@^1.1.4: +which-builtin-type@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.0.tgz#58042ac9602d78a6d117c7e811349df1268ba63c" integrity sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA== @@ -18810,7 +18843,7 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yaml@>=2.2.2, yaml@^1.10.0, yaml@^1.7.2, yaml@^2.2.2, yaml@~2.5.0: +yaml@>=2.2.2, yaml@^1.10.0, yaml@^1.7.2, yaml@^2.2.2, yaml@^2.6.0, yaml@~2.5.0: version "2.6.1" resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.6.1.tgz#42f2b1ba89203f374609572d5349fb8686500773" integrity sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==