From e27a565c24cb2be8673274656ab71833bdc88417 Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Thu, 7 May 2026 11:25:20 +0300 Subject: [PATCH 01/17] scss files are wrapped with @layer under consideration of excluded patterns --- .../Accordion/Accordion.module.scss | 150 +++--- src/lib/components/Alert/Alert.module.scss | 66 +-- src/lib/components/Avatar/Avatar.module.scss | 72 +-- src/lib/components/Badge/Badge.module.scss | 78 ++-- .../Breadcrumb/Breadcrumb.module.scss | 76 +-- .../BusinessCard/BusinessCard.module.scss | 194 ++++---- src/lib/components/Button/Button.module.scss | 118 ++--- .../ButtonGroup/ButtonGroup.module.scss | 331 +++++++------ src/lib/components/Card/Card.module.scss | 226 ++++----- .../components/Carousel/Carousel.module.scss | 184 ++++---- .../components/Checkbox/Checkbox.module.scss | 186 ++++---- src/lib/components/Chip/Chip.module.scss | 108 ++--- .../components/DataView/DataView.module.scss | 156 ++++--- .../DatePicker/DatePicker.module.scss | 432 ++++++++--------- .../DateRangePicker.module.scss | 188 ++++---- .../DateTimePicker/DateTimePicker.module.scss | 142 +++--- .../components/Divider/Divider.module.scss | 120 ++--- .../components/Dropdown/Dropdown.module.scss | 268 +++++------ src/lib/components/Form/Form.module.scss | 100 ++-- .../Form/FormFields/FormField.module.scss | 210 ++++----- .../Form/components/FormTitle.module.scss | 16 +- src/lib/components/Grid/Grid.module.scss | 122 ++--- src/lib/components/Icon/Icon.module.scss | 56 +-- .../IconButton/IconButton.module.scss | 84 ++-- .../ImageView/ImageView.module.scss | 72 +-- .../InputDate/InputDate.module.scss | 20 +- .../InputDateRange/InputDateRange.module.scss | 22 +- .../InputDateTime/InputDateTime.module.scss | 20 +- .../InputPassword/InputPassword.module.scss | 148 +++--- .../InputText/InputText.module.scss | 6 +- .../InputTime/InputTime.module.scss | 20 +- src/lib/components/Link/Link.module.scss | 75 +-- .../components/ListView/ListView.module.scss | 259 ++++++----- .../components/MenuList/MenuList.module.scss | 438 +++++++++--------- src/lib/components/Modal/Modal.module.scss | 208 +++++---- .../GlobalIconWrapper.module.scss | 20 +- .../Motif/Icon/MotifIcon.module.scss | 282 +++++------ .../Motif/InputText/InputText.module.scss | 196 ++++---- .../Motif/Pickers/Picker.module.scss | 88 ++-- src/lib/components/NavBar/NavBar.module.scss | 414 +++++++++-------- .../Pagination/Pagination.module.scss | 110 ++--- src/lib/components/Panel/Panel.module.scss | 108 ++--- .../components/PinCode/PinCode.module.scss | 92 ++-- .../components/Popover/Popover.module.scss | 122 ++--- .../ProgressBar/ProgressBar.module.scss | 132 +++--- .../ProgressCircle/ProgressCircle.module.scss | 122 ++--- src/lib/components/Radio/Radio.module.scss | 118 ++--- .../RadioGroup/RadioGroup.module.scss | 44 +- src/lib/components/Select/Select.module.scss | 372 +++++++-------- .../components/Skeleton/Skeleton.module.scss | 56 +-- src/lib/components/Slider/Slider.module.scss | 212 ++++----- .../SliderRange/SliderRange.module.scss | 26 +- .../components/Stepper/Stepper.module.scss | 296 ++++++------ src/lib/components/Switch/Switch.module.scss | 104 +++-- src/lib/components/Tab/Tab.module.scss | 166 +++---- src/lib/components/Table/Table.module.scss | 426 ++++++++--------- src/lib/components/Text/Text.module.scss | 36 +- .../components/Textarea/Textarea.module.scss | 134 +++--- .../TimePicker/TimePicker.module.scss | 172 +++---- .../components/Timeline/Timeline.module.scss | 396 ++++++++-------- src/lib/components/Toast/Toast.module.scss | 143 +++--- .../components/Tooltip/Tooltip.module.scss | 148 +++--- .../ImageUpload/ImageUpload.module.scss | 308 ++++++------ .../UploadDragger/UploadDragger.module.scss | 158 +++---- .../UploadFileList/FileList.module.scss | 158 +++---- .../UploadInput/UploadInput.module.scss | 280 +++++------ .../Upload/UploadList/UploadList.module.scss | 102 ++-- 67 files changed, 5322 insertions(+), 5190 deletions(-) diff --git a/src/lib/components/Accordion/Accordion.module.scss b/src/lib/components/Accordion/Accordion.module.scss index 0c63ab5..4af5488 100644 --- a/src/lib/components/Accordion/Accordion.module.scss +++ b/src/lib/components/Accordion/Accordion.module.scss @@ -1,96 +1,98 @@ @use "@styles" as *; -.Root { - display: flex; - flex-direction: column; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - overflow: hidden; - - .header { - @include transition(background-color); - background: var(--theme-color-surface-base-base2); - border-width: 0; - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - padding: var(--base-sizing-8x) var(--base-sizing-16x); +@layer motif-ui { + .Root { display: flex; - flex: 1; - gap: var(--base-sizing-6x); - align-items: center; - user-select: none; - cursor: pointer; - - .title { - color: var(--theme-color-text-base-title); - @include font; - flex-grow: 1; - text-align: left; - } + flex-direction: column; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + overflow: hidden; - &:hover { - background: var(--theme-color-surface-base-base4); - } + .header { + @include transition(background-color); + background: var(--theme-color-surface-base-base2); + border-width: 0; + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + padding: var(--base-sizing-8x) var(--base-sizing-16x); + display: flex; + flex: 1; + gap: var(--base-sizing-6x); + align-items: center; + user-select: none; + cursor: pointer; - @include focus-ring; - } + .title { + color: var(--theme-color-text-base-title); + @include font; + flex-grow: 1; + text-align: left; + } - .content { - display: grid; - grid-template-rows: 0fr; - @include transition(grid-template-rows); - margin-top: calc(-1 * var(--base-sizing-1x)); + &:hover { + background: var(--theme-color-surface-base-base4); + } - .contentOverflowContainer { - overflow: hidden; - display: grid; + @include focus-ring; } - .textContent { - display: block; - padding: var(--base-sizing-16x); - @include font("body", "sm"); - color: var(--theme-color-text-light-default); - } - } + .content { + display: grid; + grid-template-rows: 0fr; + @include transition(grid-template-rows); + margin-top: calc(-1 * var(--base-sizing-1x)); - .icon { - font-size: var(--base-sizing-24x); - } + .contentOverflowContainer { + overflow: hidden; + display: grid; + } - .collapseIcon { - @include transition(transform); - color: var(--theme-color-text-base-text-dark); - } + .textContent { + display: block; + padding: var(--base-sizing-16x); + @include font("body", "sm"); + color: var(--theme-color-text-light-default); + } + } - &.expanded { - .content { - grid-template-rows: 1fr; + .icon { + font-size: var(--base-sizing-24x); } + .collapseIcon { - transform: rotate(180deg); + @include transition(transform); + color: var(--theme-color-text-base-text-dark); + } + + &.expanded { + .content { + grid-template-rows: 1fr; + } + .collapseIcon { + transform: rotate(180deg); + } } } -} -// ============================================================================= -// Relevant Group Component: Accordion Group -// ============================================================================= + // ============================================================================= + // Relevant Group Component: Accordion Group + // ============================================================================= -.group { - display: flex; - flex-direction: column; - gap: var(--base-sizing-8x); - overflow: hidden; + .group { + display: flex; + flex-direction: column; + gap: var(--base-sizing-8x); + overflow: hidden; - &.group_condensed { - gap: 0; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - > * { - border: none; - border-radius: 0; - &:not(:last-child) { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + &.group_condensed { + gap: 0; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + > * { + border: none; + border-radius: 0; + &:not(:last-child) { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + } } } } diff --git a/src/lib/components/Alert/Alert.module.scss b/src/lib/components/Alert/Alert.module.scss index 8097e81..24876db 100644 --- a/src/lib/components/Alert/Alert.module.scss +++ b/src/lib/components/Alert/Alert.module.scss @@ -2,43 +2,45 @@ $color-types: (("secondary", "light"), ("warning", "warning"), ("success", "success"), ("danger", "danger"), ("info", "info")); -.Root { - display: flex; - padding: var(--base-sizing-10x) var(--base-sizing-20x); - align-items: flex-start; - gap: var(--base-sizing-10x); - border-left: var(--base-sizing-4x) solid; - border-radius: 0 var(--base-sizing-4x) var(--base-sizing-4x) 0; - opacity: 1; - @include transition(opacity); - &.hiding { - opacity: 0; - } +@layer motif-ui { + .Root { + display: flex; + padding: var(--base-sizing-10x) var(--base-sizing-20x); + align-items: flex-start; + gap: var(--base-sizing-10x); + border-left: var(--base-sizing-4x) solid; + border-radius: 0 var(--base-sizing-4x) var(--base-sizing-4x) 0; + opacity: 1; + @include transition(opacity); + &.hiding { + opacity: 0; + } - @each $colorType, $color in $color-types { - &.#{$colorType} { - background-color: var(--theme-color-surface-#{$color}-negative); - color: var(--theme-color-text-base-title); - border-left-color: var(--theme-color-text-#{$color}-active); + @each $colorType, $color in $color-types { + &.#{$colorType} { + background-color: var(--theme-color-surface-#{$color}-negative); + color: var(--theme-color-text-base-title); + border-left-color: var(--theme-color-text-#{$color}-active); - .title { - @include font("base", "lg", "600"); - letter-spacing: var(--typography-base-lg-600-letter-spacing); - color: var(--theme-color-text-#{$color}-active); + .title { + @include font("base", "lg", "600"); + letter-spacing: var(--typography-base-lg-600-letter-spacing); + color: var(--theme-color-text-#{$color}-active); + } } } } -} -.contentBox { - display: flex; - flex-direction: column; - align-items: flex-start; - gap: var(--base-sizing-4x); - flex: 1 0 0; - align-self: center; -} + .contentBox { + display: flex; + flex-direction: column; + align-items: flex-start; + gap: var(--base-sizing-4x); + flex: 1 0 0; + align-self: center; + } -.message { - @include font("body", "md"); + .message { + @include font("body", "md"); + } } diff --git a/src/lib/components/Avatar/Avatar.module.scss b/src/lib/components/Avatar/Avatar.module.scss index f547ac6..e4cd434 100644 --- a/src/lib/components/Avatar/Avatar.module.scss +++ b/src/lib/components/Avatar/Avatar.module.scss @@ -10,46 +10,48 @@ $sizes: ( ); $variants: ("primary", "secondary", "info", "success", "warning", "danger"); -.Root { - display: flex; - align-items: center; - justify-content: center; - overflow: hidden; - border-radius: var(--theme-sizing-radius-round); - color: var(--theme-color-text-base-text-light); -} +@layer motif-ui { + .Root { + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; + border-radius: var(--theme-sizing-radius-round); + color: var(--theme-color-text-base-text-light); + } -.image { - img { - z-index: 1; - aspect-ratio: 1; - width: 100%; - &::before { - content: ""; - display: block; - padding-top: 100%; + .image { + img { + z-index: 1; + aspect-ratio: 1; + width: 100%; + &::before { + content: ""; + display: block; + padding-top: 100%; + } + } + .imagePlaceholder { + position: absolute; + z-index: 0; } } - .imagePlaceholder { - position: absolute; - z-index: 0; - } -} -@each $name, $size, $iconSize, $fontType, $fontSize, $fontWeight in $sizes { - .#{$name} { - width: var(--base-sizing-#{$size}); - height: var(--base-sizing-#{$size}); - &.letters { - @include font($fontType, $fontSize, $fontWeight); - } - &.icon span { - font-size: var(--base-sizing-#{$iconSize}); + @each $name, $size, $iconSize, $fontType, $fontSize, $fontWeight in $sizes { + .#{$name} { + width: var(--base-sizing-#{$size}); + height: var(--base-sizing-#{$size}); + &.letters { + @include font($fontType, $fontSize, $fontWeight); + } + &.icon span { + font-size: var(--base-sizing-#{$iconSize}); + } } } -} -@each $variant in $variants { - .#{$variant} { - background-color: if($variant == "secondary", var(--theme-color-surface-base-base7), var(--theme-color-surface-#{$variant}-default)); + @each $variant in $variants { + .#{$variant} { + background-color: if($variant == "secondary", var(--theme-color-surface-base-base7), var(--theme-color-surface-#{$variant}-default)); + } } } diff --git a/src/lib/components/Badge/Badge.module.scss b/src/lib/components/Badge/Badge.module.scss index 2fd9182..35b747a 100644 --- a/src/lib/components/Badge/Badge.module.scss +++ b/src/lib/components/Badge/Badge.module.scss @@ -15,49 +15,51 @@ $positions: ("top-left", "top-right", "bottom-left", "bottom-right"); transform: translateX(if($horizontal == "left", -50%, 50%)) translateY(if($vertical == "top", -75%, 75%)); } -.Root { - width: fit-content; - display: inline-block; - position: relative; - vertical-align: middle; -} - -.icon { - font-size: var(--base-sizing-16x); -} +@layer motif-ui { + .Root { + width: fit-content; + display: inline-block; + position: relative; + vertical-align: middle; + } -.badge { - @include font("body", "xs"); - border-radius: var(--theme-sizing-radius-round); - border: solid var(--base-sizing-2x) var(--theme-color-surface-base-global-light); - padding: var(--base-sizing-4x); - min-width: var(--base-sizing-28x); - box-sizing: border-box; - display: flex; - justify-content: center; - align-items: center; - position: absolute; - z-index: 1; - text-wrap: nowrap; - - .dot & { - padding: 0; - width: var(--base-sizing-12x); - height: var(--base-sizing-12x); - min-width: var(--base-sizing-12x); - min-height: var(--base-sizing-12x); + .icon { + font-size: var(--base-sizing-16x); } - @each $variant in $variants { - .#{$variant} & { - background-color: if($variant == "secondary", var(--theme-color-surface-base-base7), var(--theme-color-surface-#{$variant}-default)); - color: if($variant == "warning", var(--theme-color-text-base-global-dark), var(--theme-color-text-base-global-light)); + .badge { + @include font("body", "xs"); + border-radius: var(--theme-sizing-radius-round); + border: solid var(--base-sizing-2x) var(--theme-color-surface-base-global-light); + padding: var(--base-sizing-4x); + min-width: var(--base-sizing-28x); + box-sizing: border-box; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + z-index: 1; + text-wrap: nowrap; + + .dot & { + padding: 0; + width: var(--base-sizing-12x); + height: var(--base-sizing-12x); + min-width: var(--base-sizing-12x); + min-height: var(--base-sizing-12x); + } + + @each $variant in $variants { + .#{$variant} & { + background-color: if($variant == "secondary", var(--theme-color-surface-base-base7), var(--theme-color-surface-#{$variant}-default)); + color: if($variant == "warning", var(--theme-color-text-base-global-dark), var(--theme-color-text-base-global-light)); + } } - } - @each $position in $positions { - .#{$position} & { - @include position($position); + @each $position in $positions { + .#{$position} & { + @include position($position); + } } } } diff --git a/src/lib/components/Breadcrumb/Breadcrumb.module.scss b/src/lib/components/Breadcrumb/Breadcrumb.module.scss index 298f1df..0edd806 100644 --- a/src/lib/components/Breadcrumb/Breadcrumb.module.scss +++ b/src/lib/components/Breadcrumb/Breadcrumb.module.scss @@ -1,46 +1,48 @@ @use "@styles" as *; -.Root { - display: flex; - flex-wrap: wrap; - align-items: center; - margin: 0; - padding: 0; - list-style: none; - - li { - display: inline-flex; +@layer motif-ui { + .Root { + display: flex; + flex-wrap: wrap; align-items: center; - padding: var(--base-sizing-8x) var(--base-sizing-8x) var(--base-sizing-8x) 0; - @include font; - - .collapsed { - color: var(--theme-color-text-base-disabled); - } - - .label { - color: var(--theme-color-text-base-title); + margin: 0; + padding: 0; + list-style: none; + + li { + display: inline-flex; + align-items: center; + padding: var(--base-sizing-8x) var(--base-sizing-8x) var(--base-sizing-8x) 0; + @include font; + + .collapsed { + color: var(--theme-color-text-base-disabled); + } + + .label { + color: var(--theme-color-text-base-title); + } + + a { + text-decoration: none; + color: var(--theme-color-text-primary-default); + } + + a:hover { + color: var(--theme-color-text-primary-active); + } + + .right-icon { + margin-left: var(--base-sizing-8x); + color: var(--theme-color-text-base-caption-light); + font-size: var(--base-sizing-14x); + } } - a { - text-decoration: none; + .homepage-icon { color: var(--theme-color-text-primary-default); + margin-right: var(--base-sizing-8x); + font-size: var(--base-sizing-22x); } - - a:hover { - color: var(--theme-color-text-primary-active); - } - - .right-icon { - margin-left: var(--base-sizing-8x); - color: var(--theme-color-text-base-caption-light); - font-size: var(--base-sizing-14x); - } - } - - .homepage-icon { - color: var(--theme-color-text-primary-default); - margin-right: var(--base-sizing-8x); - font-size: var(--base-sizing-22x); } } diff --git a/src/lib/components/BusinessCard/BusinessCard.module.scss b/src/lib/components/BusinessCard/BusinessCard.module.scss index 221f405..168db79 100644 --- a/src/lib/components/BusinessCard/BusinessCard.module.scss +++ b/src/lib/components/BusinessCard/BusinessCard.module.scss @@ -2,130 +2,132 @@ $variants: (("neutral", "light"), ("primary", "primary"), ("secondary", "secondary"), ("info", "info"), ("success", "success"), ("danger", "danger"), ("warning", "warning")); -.Root { - display: flex; - flex-flow: column nowrap; - border-radius: var(--theme-sizing-radius-default); - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - background: var(--theme-color-surface-base-bg-light); +@layer motif-ui { + .Root { + display: flex; + flex-flow: column nowrap; + border-radius: var(--theme-sizing-radius-default); + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + background: var(--theme-color-surface-base-bg-light); - .icon { - font-size: var(--base-sizing-40x); - } - .title { - @include font("base", "lg", "700"); - } - .description { - @include font("body", "md"); - } - .link { - text-decoration: none; - @include font("body", "md"); - &:hover { - text-decoration: underline; + .icon { + font-size: var(--base-sizing-40x); } - } - - &:not(.solid), - &.neutral.solid { .title { - color: var(--theme-color-text-base-title); + @include font("base", "lg", "700"); } .description { - color: var(--theme-color-text-base-caption); + @include font("body", "md"); } .link { - color: var(--theme-color-text-primary-default); + text-decoration: none; + @include font("body", "md"); + &:hover { + text-decoration: underline; + } + } + + &:not(.solid), + &.neutral.solid { + .title { + color: var(--theme-color-text-base-title); + } + .description { + color: var(--theme-color-text-base-caption); + } + .link { + color: var(--theme-color-text-primary-default); + } } } -} -.outline { - border: var(--base-sizing-1x) solid; -} + .outline { + border: var(--base-sizing-1x) solid; + } -.elevated { - @include shadow(3); -} + .elevated { + @include shadow(3); + } -.clickable { - cursor: pointer; - &:not(.solid, .elevated, .outline) { - @include transition(background-color); - &:hover { - background-color: var(--theme-color-surface-base-base3); + .clickable { + cursor: pointer; + &:not(.solid, .elevated, .outline) { + @include transition(background-color); + &:hover { + background-color: var(--theme-color-surface-base-base3); + } } - } - &.solid { - @include transition(background-color); - } - &.outline { - @include transition(background-color border-color); - &:not(.solid, .elevated):hover { - background-color: var(--theme-color-surface-light-negative); + &.solid { + @include transition(background-color); } - } - &.elevated { - @include transition(box-shadow); &.outline { - @include transition(box-shadow border-color); + @include transition(background-color border-color); + &:not(.solid, .elevated):hover { + background-color: var(--theme-color-surface-light-negative); + } } - &:hover { - @include shadow(4); + &.elevated { + @include transition(box-shadow); + &.outline { + @include transition(box-shadow border-color); + } + &:hover { + @include shadow(4); + } } } -} -@each $variant, $name in $variants { - .#{$variant} { - &.solid { - background-color: var(--theme-color-surface-#{$name}-default); - &.clickable:not(.elevated):hover { - background-color: var(--theme-color-surface-#{$name}-hover); - } - - @if $variant != "neutral" { - .title, - .description, - .link, - .icon, - .iconButton { - $tone: if($variant == "warning", "dark", "light"); - color: var(--theme-color-text-base-global-#{$tone}); + @each $variant, $name in $variants { + .#{$variant} { + &.solid { + background-color: var(--theme-color-surface-#{$name}-default); + &.clickable:not(.elevated):hover { + background-color: var(--theme-color-surface-#{$name}-hover); } - } @else { - .icon { - color: var(--theme-color-text-#{$name}-default); + + @if $variant != "neutral" { + .title, + .description, + .link, + .icon, + .iconButton { + $tone: if($variant == "warning", "dark", "light"); + color: var(--theme-color-text-base-global-#{$tone}); + } + } @else { + .icon { + color: var(--theme-color-text-#{$name}-default); + } } } - } - &.outline { - border-color: var(--theme-color-border-#{$name}-default); - &.clickable:hover { - border-color: var(--theme-color-border-#{$name}-hover); + &.outline { + border-color: var(--theme-color-border-#{$name}-default); + &.clickable:hover { + border-color: var(--theme-color-border-#{$name}-hover); + } } - } - &:not(.solid) .icon { - color: var(--theme-color-text-#{$name}-default); + &:not(.solid) .icon { + color: var(--theme-color-text-#{$name}-default); + } } } -} -.left { - align-items: flex-start; -} -.center { - align-items: center; - span { - text-align: center; + .left { + align-items: flex-start; } -} -.right { - align-items: flex-end; - span { - text-align: right; + .center { + align-items: center; + span { + text-align: center; + } + } + .right { + align-items: flex-end; + span { + text-align: right; + } } } diff --git a/src/lib/components/Button/Button.module.scss b/src/lib/components/Button/Button.module.scss index 19f171d..71e62cc 100644 --- a/src/lib/components/Button/Button.module.scss +++ b/src/lib/components/Button/Button.module.scss @@ -37,76 +37,78 @@ $variants: ( } } -.Root { - border: none; - border-radius: var(--theme-sizing-radius-default); - display: inline-flex; - align-items: center; - justify-content: center; - cursor: pointer; - vertical-align: bottom; - white-space: nowrap; - @include transition(background-color); +@layer motif-ui { + .Root { + border: none; + border-radius: var(--theme-sizing-radius-default); + display: inline-flex; + align-items: center; + justify-content: center; + cursor: pointer; + vertical-align: bottom; + white-space: nowrap; + @include transition(background-color); - &:disabled { - pointer-events: none; + &:disabled { + pointer-events: none; + } } -} -.pill { - border-radius: var(--theme-sizing-radius-round); -} -.fluid { - width: 100%; -} -.icon-left { - flex-direction: row; -} -.icon-right { - flex-direction: row-reverse; -} + .pill { + border-radius: var(--theme-sizing-radius-round); + } + .fluid { + width: 100%; + } + .icon-left { + flex-direction: row; + } + .icon-right { + flex-direction: row-reverse; + } -@each $size, $ph, $pv, $fontSize, $iconSize in $sizes { - .#{$size} { - padding: var(--base-sizing-#{$pv}) var(--base-sizing-#{$ph}); - gap: var(--base-sizing-#{$pv}); - @include font("base", $fontSize, "600"); + @each $size, $ph, $pv, $fontSize, $iconSize in $sizes { + .#{$size} { + padding: var(--base-sizing-#{$pv}) var(--base-sizing-#{$ph}); + gap: var(--base-sizing-#{$pv}); + @include font("base", $fontSize, "600"); + } } -} -@each $variant, $color, $textColorOnSurface in $variants { - .#{$variant} { - &.solid { - background-color: var(--theme-color-surface-#{$color}-default); - @include text-color-on-surface($variant, $textColorOnSurface); - @each $state in $states { - &:#{$state} { - @include state-background-color($color, $state, "solid"); - @include text-color-on-surface($variant, $textColorOnSurface, $state); + @each $variant, $color, $textColorOnSurface in $variants { + .#{$variant} { + &.solid { + background-color: var(--theme-color-surface-#{$color}-default); + @include text-color-on-surface($variant, $textColorOnSurface); + @each $state in $states { + &:#{$state} { + @include state-background-color($color, $state, "solid"); + @include text-color-on-surface($variant, $textColorOnSurface, $state); + } } } - } - &.outline { - background-color: var(--theme-color-surface-base-bg-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-#{$color}-default); - color: var(--theme-color-text-#{$color}-default); - @each $state in $states { - &:#{$state} { - @include state-background-color($color, $state, "outline"); - border-color: var(--theme-color-border-#{$color}-#{$state}); - color: var(--theme-color-text-#{$color}-#{$state}); + &.outline { + background-color: var(--theme-color-surface-base-bg-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-#{$color}-default); + color: var(--theme-color-text-#{$color}-default); + @each $state in $states { + &:#{$state} { + @include state-background-color($color, $state, "outline"); + border-color: var(--theme-color-border-#{$color}-#{$state}); + color: var(--theme-color-text-#{$color}-#{$state}); + } } } - } - &.textonly { - background-color: transparent; - color: var(--theme-color-text-#{$color}-default); - @each $state in $states { - &:#{$state} { - @include state-background-color($color, $state, "textonly"); - color: var(--theme-color-text-#{$color}-#{$state}); + &.textonly { + background-color: transparent; + color: var(--theme-color-text-#{$color}-default); + @each $state in $states { + &:#{$state} { + @include state-background-color($color, $state, "textonly"); + color: var(--theme-color-text-#{$color}-#{$state}); + } } } } diff --git a/src/lib/components/ButtonGroup/ButtonGroup.module.scss b/src/lib/components/ButtonGroup/ButtonGroup.module.scss index 9c3ff34..68aefeb 100644 --- a/src/lib/components/ButtonGroup/ButtonGroup.module.scss +++ b/src/lib/components/ButtonGroup/ButtonGroup.module.scss @@ -1,223 +1,220 @@ @use "@styles" as *; // size, paddingH, paddingV, gap, iconSize -$sizes: ( - ("xs", "8x", "4x", "4x", "18x"), - ("sm", "12x", "6x", "6x", "20x"), - ("md", "16x", "8x", "8x", "22x"), - ("lg", "20x", "10x", "10x", "24x") -); - -.Root { - display: inline-flex; - - > .button:first-child, - > .buttonDropdownContainer:first-child > .button:first-child { - border-left-width: var(--base-sizing-1x); - border-top-left-radius: var(--theme-sizing-radius-default); - border-bottom-left-radius: var(--theme-sizing-radius-default); - } +$sizes: (("xs", "8x", "4x", "4x", "18x"), ("sm", "12x", "6x", "6x", "20x"), ("md", "16x", "8x", "8x", "22x"), ("lg", "20x", "10x", "10x", "24x")); - > .button:last-child, - > .buttonDropdownContainer:last-child > button:last-of-type { - border-right-width: var(--base-sizing-1x); - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - } +@layer motif-ui { + .Root { + display: inline-flex; - .disabled, - .disabled .button, - .button:disabled { - pointer-events: none; - background-color: var(--theme-color-surface-light-disabled); + > .button:first-child, + > .buttonDropdownContainer:first-child > .button:first-child { + border-left-width: var(--base-sizing-1x); + border-top-left-radius: var(--theme-sizing-radius-default); + border-bottom-left-radius: var(--theme-sizing-radius-default); + } - &, - .icon { - color: var(--theme-color-text-light-disabled); + > .button:last-child, + > .buttonDropdownContainer:last-child > button:last-of-type { + border-right-width: var(--base-sizing-1x); + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); } - } -} -.divider { - margin: 0; - padding: 0; - border-right: solid var(--base-sizing-1x) var(--theme-color-border-light-default); -} + .disabled, + .disabled .button, + .button:disabled { + pointer-events: none; + background-color: var(--theme-color-surface-light-disabled); -.button { - outline: none; - white-space: nowrap; - cursor: pointer; - display: flex; - align-items: center; - border-style: solid; - border-color: var(--theme-color-border-light-default); - color: var(--theme-color-text-light-default); - - .icon { - color: var(--theme-color-text-light-default); - @include transition(color); + &, + .icon { + color: var(--theme-color-text-light-disabled); + } + } } - @include transition(background-color border-color color); - @include focus-ring; -} + .divider { + margin: 0; + padding: 0; + border-right: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + } -.button__single { - border-width: var(--base-sizing-1x) 0; - background-color: var(--theme-color-surface-light-default); + .button { + outline: none; + white-space: nowrap; + cursor: pointer; + display: flex; + align-items: center; + border-style: solid; + border-color: var(--theme-color-border-light-default); + color: var(--theme-color-text-light-default); - &:hover, - &:active { - &, .icon { - color: var(--theme-color-text-base-text-light); + color: var(--theme-color-text-light-default); + @include transition(color); } - } - &:hover { - background-color: var(--theme-color-surface-primary-default); - border-color: var(--theme-color-border-primary-default); + @include transition(background-color border-color color); + @include focus-ring; } - &:active { - background-color: var(--theme-color-surface-primary-hover); - border-color: var(--theme-color-border-primary-hover); - } -} + .button__single { + border-width: var(--base-sizing-1x) 0; + background-color: var(--theme-color-surface-light-default); -.button__multiple { - border-width: var(--base-sizing-1x) 0; - background-color: var(--theme-color-surface-light-default); + &:hover, + &:active { + &, + .icon { + color: var(--theme-color-text-base-text-light); + } + } - &:hover, - &:active { - &, - .icon { - color: var(--theme-color-text-base-text-light); + &:hover { + background-color: var(--theme-color-surface-primary-default); + border-color: var(--theme-color-border-primary-default); } - } - &:hover { - background-color: var(--theme-color-surface-primary-hover); - border-color: var(--theme-color-border-primary-hover); + &:active { + background-color: var(--theme-color-surface-primary-hover); + border-color: var(--theme-color-border-primary-hover); + } } - &:active { - background-color: var(--theme-color-surface-primary-active); - border-color: var(--theme-color-border-primary-active); - } -} + .button__multiple { + border-width: var(--base-sizing-1x) 0; + background-color: var(--theme-color-surface-light-default); -.button__dropdown { - border-width: var(--base-sizing-1x) 0; - background-color: var(--theme-color-surface-light-default); + &:hover, + &:active { + &, + .icon { + color: var(--theme-color-text-base-text-light); + } + } - &:hover, - &:active { - &, - .icon { - color: var(--theme-color-text-base-text-light); + &:hover { + background-color: var(--theme-color-surface-primary-hover); + border-color: var(--theme-color-border-primary-hover); } - } - &:hover { - background-color: var(--theme-color-surface-primary-hover); - border-color: var(--theme-color-border-primary-hover); + &:active { + background-color: var(--theme-color-surface-primary-active); + border-color: var(--theme-color-border-primary-active); + } } - &:active { - background-color: var(--theme-color-surface-primary-active); - border-color: var(--theme-color-border-primary-active); - } -} + .button__dropdown { + border-width: var(--base-sizing-1x) 0; + background-color: var(--theme-color-surface-light-default); -.buttonDropdownContainer { - display: flex; - position: relative; + &:hover, + &:active { + &, + .icon { + color: var(--theme-color-text-base-text-light); + } + } - &:hover > .button { - background-color: var(--theme-color-surface-primary-default); - border-color: var(--theme-color-border-primary-default); + &:hover { + background-color: var(--theme-color-surface-primary-hover); + border-color: var(--theme-color-border-primary-hover); + } - &, - .icon { - color: var(--theme-color-text-base-text-light); + &:active { + background-color: var(--theme-color-surface-primary-active); + border-color: var(--theme-color-border-primary-active); } } -} -.button__dropdownItem { - position: absolute; - display: flex; - flex-direction: column; - right: 0; - top: calc(100% + var(--base-sizing-1x)); - border-radius: var(--theme-sizing-radius-default); - z-index: 1; - @include shadow(6); -} + .buttonDropdownContainer { + display: flex; + position: relative; -.button__dropdownItem .button__single { - flex: 1; - border-width: var(--base-sizing-1x); - background-color: var(--theme-color-surface-base-global-light); + &:hover > .button { + background-color: var(--theme-color-surface-primary-default); + border-color: var(--theme-color-border-primary-default); - &:not(:first-child) { - border-top-width: 0; - } - - &:first-child { - border-top-right-radius: var(--theme-sizing-radius-default); - border-top-left-radius: var(--theme-sizing-radius-default); + &, + .icon { + color: var(--theme-color-text-base-text-light); + } + } } - &:last-child { - border-bottom-right-radius: var(--theme-sizing-radius-default); - border-bottom-left-radius: var(--theme-sizing-radius-default); + .button__dropdownItem { + position: absolute; + display: flex; + flex-direction: column; + right: 0; + top: calc(100% + var(--base-sizing-1x)); + border-radius: var(--theme-sizing-radius-default); + z-index: 1; + @include shadow(6); } - &:hover { - background-color: var(--theme-color-surface-base-base2); - border-color: var(--theme-color-border-light-default); + .button__dropdownItem .button__single { + flex: 1; + border-width: var(--base-sizing-1x); + background-color: var(--theme-color-surface-base-global-light); - &, - .icon { - color: var(--theme-color-text-light-hover); + &:not(:first-child) { + border-top-width: 0; } - } - &:active { - background-color: var(--theme-color-surface-base-base4); - border-color: var(--theme-color-border-light-default); - - &, - .icon { - color: var(--theme-color-text-light-hover); + &:first-child { + border-top-right-radius: var(--theme-sizing-radius-default); + border-top-left-radius: var(--theme-sizing-radius-default); } - } -} -@each $size, $pH, $pV, $gap, $iconSize in $sizes { - .#{$size} { - .button { - gap: var(--base-sizing-#{$gap}); - padding: var(--base-sizing-#{$pV}) var(--base-sizing-#{$pH}); - @include font("base", $size, "500"); + &:last-child { + border-bottom-right-radius: var(--theme-sizing-radius-default); + border-bottom-left-radius: var(--theme-sizing-radius-default); } - .button__dropdown { - gap: var(--base-sizing-#{$gap}); - padding: var(--base-sizing-#{$pV}); - @include font("base", $size, "500"); + &:hover { + background-color: var(--theme-color-surface-base-base2); + border-color: var(--theme-color-border-light-default); + + &, + .icon { + color: var(--theme-color-text-light-hover); + } } - .icon { - font-size: var(--base-sizing-#{$iconSize}); + &:active { + background-color: var(--theme-color-surface-base-base4); + border-color: var(--theme-color-border-light-default); + + &, + .icon { + color: var(--theme-color-text-light-hover); + } } + } + + @each $size, $pH, $pV, $gap, $iconSize in $sizes { + .#{$size} { + .button { + gap: var(--base-sizing-#{$gap}); + padding: var(--base-sizing-#{$pV}) var(--base-sizing-#{$pH}); + @include font("base", $size, "500"); + } + + .button__dropdown { + gap: var(--base-sizing-#{$gap}); + padding: var(--base-sizing-#{$pV}); + @include font("base", $size, "500"); + } + + .icon { + font-size: var(--base-sizing-#{$iconSize}); + } - .button__dropdownItem .button { - @include font("body", $size); + .button__dropdownItem .button { + @include font("body", $size); + } } } } diff --git a/src/lib/components/Card/Card.module.scss b/src/lib/components/Card/Card.module.scss index 4c9a896..4bfa0c1 100644 --- a/src/lib/components/Card/Card.module.scss +++ b/src/lib/components/Card/Card.module.scss @@ -52,144 +52,146 @@ $variants: ( ) ); -.Root { - border-radius: var(--theme-sizing-radius-default); - background: var(--theme-color-surface-base-bg-light); - overflow: hidden; - - &.elevated { - @include shadow(3); - } - - &.outlined { - border-style: solid; - border-width: var(--base-sizing-1x); - border-color: var(--theme-color-border-light-default); - } -} +@layer motif-ui { + .Root { + border-radius: var(--theme-sizing-radius-default); + background: var(--theme-color-surface-base-bg-light); + overflow: hidden; -.header { - display: flex; + &.elevated { + @include shadow(3); + } - &.headerImageAlignRight { - flex-direction: row-reverse; + &.outlined { + border-style: solid; + border-width: var(--base-sizing-1x); + border-color: var(--theme-color-border-light-default); + } } - .headerContainer { - flex: 1; + .header { display: flex; - align-items: center; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - min-width: 0; - } - .headerContent { - flex: 1; - overflow: hidden; - white-space: nowrap; - } + &.headerImageAlignRight { + flex-direction: row-reverse; + } - .headerTitle { - color: var(--theme-color-text-base-title); - display: block; - overflow: hidden; - text-overflow: ellipsis; - @include font("base", "lg", "700"); - } + .headerContainer { + flex: 1; + display: flex; + align-items: center; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + min-width: 0; + } - .headerSubtitle { - color: var(--theme-color-text-base-caption); - display: block; - overflow: hidden; - text-overflow: ellipsis; - @include font("body", "md"); - } + .headerContent { + flex: 1; + overflow: hidden; + white-space: nowrap; + } - img { - border-radius: 0; - min-height: var(--base-sizing-80x); - max-height: var(--base-sizing-80x); - } -} + .headerTitle { + color: var(--theme-color-text-base-title); + display: block; + overflow: hidden; + text-overflow: ellipsis; + @include font("base", "lg", "700"); + } -.content { - display: flex; - flex-direction: column; + .headerSubtitle { + color: var(--theme-color-text-base-caption); + display: block; + overflow: hidden; + text-overflow: ellipsis; + @include font("body", "md"); + } - img { - border-radius: 0; + img { + border-radius: 0; + min-height: var(--base-sizing-80x); + max-height: var(--base-sizing-80x); + } } -} -.contentContainer { - display: flex; - flex-direction: column; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - - .contentTitleContainer { + .content { display: flex; flex-direction: column; - gap: var(--base-sizing-4x); - } - .contentTitle { - color: var(--theme-color-text-base-title); - @include font("base", "lg", "700"); - } - .contentSubtitle { - color: var(--theme-color-text-base-subtitle-light); - @include font("body", "md"); - } - .contentText { - margin: 0; - @include font("body", "md"); - color: var(--theme-color-text-base-title); - } - .contentLink { - text-decoration: none; - @include font("body", "md"); - color: var(--theme-color-text-primary-default); - } -} - -.actionsContainer { - display: flex; - flex-wrap: wrap; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - justify-content: flex-end; - align-items: center; - &:not(:first-child) { - border-top: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + img { + border-radius: 0; + } } - .actionLink { - text-decoration: none; + .contentContainer { display: flex; - gap: var(--base-sizing-6x); + flex-direction: column; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); - span { - color: var(--theme-color-text-primary-default); + .contentTitleContainer { + display: flex; + flex-direction: column; + gap: var(--base-sizing-4x); + } + + .contentTitle { + color: var(--theme-color-text-base-title); + @include font("base", "lg", "700"); + } + .contentSubtitle { + color: var(--theme-color-text-base-subtitle-light); + @include font("body", "md"); + } + .contentText { + margin: 0; @include font("body", "md"); + color: var(--theme-color-text-base-title); + } + .contentLink { + text-decoration: none; + @include font("body", "md"); + color: var(--theme-color-text-primary-default); } } -} -@each $variant, $bgColor, $titleColor, $subtitleColor, $avatarBgColor, $avatarTextColor in $variants { - .#{$variant} { - background-color: $bgColor; - - .headerTitle { - color: $titleColor; + .actionsContainer { + display: flex; + flex-wrap: wrap; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + justify-content: flex-end; + align-items: center; + &:not(:first-child) { + border-top: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); } - .headerSubtitle { - color: $subtitleColor; + + .actionLink { + text-decoration: none; + display: flex; + gap: var(--base-sizing-6x); + + span { + color: var(--theme-color-text-primary-default); + @include font("body", "md"); + } } - .avatar { - background-color: $avatarBgColor; - color: $avatarTextColor; + } + + @each $variant, $bgColor, $titleColor, $subtitleColor, $avatarBgColor, $avatarTextColor in $variants { + .#{$variant} { + background-color: $bgColor; + + .headerTitle { + color: $titleColor; + } + .headerSubtitle { + color: $subtitleColor; + } + .avatar { + background-color: $avatarBgColor; + color: $avatarTextColor; + } } } } diff --git a/src/lib/components/Carousel/Carousel.module.scss b/src/lib/components/Carousel/Carousel.module.scss index ffa9451..8388b0d 100644 --- a/src/lib/components/Carousel/Carousel.module.scss +++ b/src/lib/components/Carousel/Carousel.module.scss @@ -26,116 +26,118 @@ $theme: ( ) ); -.Root { - position: relative; - width: 100%; - overflow: hidden; -} +@layer motif-ui { + .Root { + position: relative; + width: 100%; + overflow: hidden; + } -@each $theme, $background, $titleColor, $subtitleColor, $controlButtonHoverColor, $controlButtonColor, $indicatorBgColor, $indicatorActiveBgColor, $indicatorHoverBgColor in $theme { - .#{$theme} { - background: var($background); - .title { - color: var($titleColor); - } - .subtitle { - color: var($subtitleColor); - } - .prev, - .next { - color: var($controlButtonColor); - &:hover { - color: var($controlButtonHoverColor); + @each $theme, $background, $titleColor, $subtitleColor, $controlButtonHoverColor, $controlButtonColor, $indicatorBgColor, $indicatorActiveBgColor, $indicatorHoverBgColor in $theme { + .#{$theme} { + background: var($background); + .title { + color: var($titleColor); } - } - .indicators li { - background-color: var($indicatorBgColor); - &.active { - background-color: var($indicatorActiveBgColor); + .subtitle { + color: var($subtitleColor); + } + .prev, + .next { + color: var($controlButtonColor); + &:hover { + color: var($controlButtonHoverColor); + } } - &:hover { - background-color: var($indicatorHoverBgColor); + .indicators li { + background-color: var($indicatorBgColor); + &.active { + background-color: var($indicatorActiveBgColor); + } + &:hover { + background-color: var($indicatorHoverBgColor); + } } } } -} -.next { - position: absolute; - top: calc(50% - var(--base-sizing-20x)); - right: var(--base-sizing-16x); -} - -.prev { - position: absolute; - top: calc(50% - var(--base-sizing-20x)); - transform: rotate(180deg); - left: var(--base-sizing-16x); -} + .next { + position: absolute; + top: calc(50% - var(--base-sizing-20x)); + right: var(--base-sizing-16x); + } -.track { - display: flex; - height: 100%; - @include transition(transform, "slow"); - will-change: transform; + .prev { + position: absolute; + top: calc(50% - var(--base-sizing-20x)); + transform: rotate(180deg); + left: var(--base-sizing-16x); + } - .item { - position: relative; - flex: 0 0 100%; - width: 100%; + .track { + display: flex; + height: 100%; + @include transition(transform, "slow"); + will-change: transform; - > img { + .item { + position: relative; + flex: 0 0 100%; width: 100%; - height: 100%; - object-fit: cover; - object-position: center; - } - .text { - position: absolute; - left: 0; - right: 0; - bottom: var(--base-sizing-48x); - padding: var(--base-sizing-20x) var(--base-sizing-12x); - @include flex-center(column); - text-align: center; - - .title { - @include font("heading", "heading5"); + > img { + width: 100%; + height: 100%; + object-fit: cover; + object-position: center; } - .subtitle { - @include font("body", "md"); - margin-top: var(--base-sizing-4x); + + .text { + position: absolute; + left: 0; + right: 0; + bottom: var(--base-sizing-48x); + padding: var(--base-sizing-20x) var(--base-sizing-12x); + @include flex-center(column); + text-align: center; + + .title { + @include font("heading", "heading5"); + } + .subtitle { + @include font("body", "md"); + margin-top: var(--base-sizing-4x); + } } } } -} -.indicators { - all: unset; - @include flex-center; - gap: var(--base-sizing-6x); - list-style: none; - position: absolute; - left: 0; - right: 0; - bottom: var(--base-sizing-16x); + .indicators { + all: unset; + @include flex-center; + gap: var(--base-sizing-6x); + list-style: none; + position: absolute; + left: 0; + right: 0; + bottom: var(--base-sizing-16x); - li { - cursor: pointer; - @include transition(background-color); - } + li { + cursor: pointer; + @include transition(background-color); + } - &.dot li { - width: var(--base-sizing-12x); - height: var(--base-sizing-12x); - border-radius: var(--theme-sizing-radius-round); - margin: var(--base-sizing-10x); - } + &.dot li { + width: var(--base-sizing-12x); + height: var(--base-sizing-12x); + border-radius: var(--theme-sizing-radius-round); + margin: var(--base-sizing-10x); + } - &.line li { - width: var(--base-sizing-32x); - height: var(--base-sizing-4x); - margin: var(--base-sizing-10x) 0; + &.line li { + width: var(--base-sizing-32x); + height: var(--base-sizing-4x); + margin: var(--base-sizing-10x) 0; + } } } diff --git a/src/lib/components/Checkbox/Checkbox.module.scss b/src/lib/components/Checkbox/Checkbox.module.scss index 1638ce9..7fbb6b2 100644 --- a/src/lib/components/Checkbox/Checkbox.module.scss +++ b/src/lib/components/Checkbox/Checkbox.module.scss @@ -10,123 +10,125 @@ $sizes: ( $svg-path: ''; $partial-check-svg-path: ''; -@each $name, $size, $gap, $paddingV, $iconSize, $viewBox in $sizes { - .#{$name} { - gap: var(--base-sizing-#{$gap}); +@layer motif-ui { + @each $name, $size, $gap, $paddingV, $iconSize, $viewBox in $sizes { + .#{$name} { + gap: var(--base-sizing-#{$gap}); - .label { - @include font("base", $name, "500"); - } - - .input { - width: var(--base-sizing-#{$size}); - height: var(--base-sizing-#{$size}); - min-width: var(--base-sizing-#{$size}); - min-height: var(--base-sizing-#{$size}); - &::before { - mask-image: url('data:image/svg+xml;utf8,#{$svg-path}'); - content: ""; - width: var(--base-sizing-#{$iconSize}x); - height: var(--base-sizing-#{$iconSize}x); - background-color: var(--theme-color-text-base-global-light); + .label { + @include font("base", $name, "500"); } - } - &.partialCheck { - .input::before { - mask-image: url('data:image/svg+xml;utf8,#{$partial-check-svg-path}'); + .input { + width: var(--base-sizing-#{$size}); + height: var(--base-sizing-#{$size}); + min-width: var(--base-sizing-#{$size}); + min-height: var(--base-sizing-#{$size}); + &::before { + mask-image: url('data:image/svg+xml;utf8,#{$svg-path}'); + content: ""; + width: var(--base-sizing-#{$iconSize}x); + height: var(--base-sizing-#{$iconSize}x); + background-color: var(--theme-color-text-base-global-light); + } } - } - &.inFormField { - padding: var(--base-sizing-#{$paddingV}) 0; - } - } -} + &.partialCheck { + .input::before { + mask-image: url('data:image/svg+xml;utf8,#{$partial-check-svg-path}'); + } + } -.Root { - display: inline-flex; - vertical-align: bottom; - align-items: center; - - .input { - appearance: none; - background: var(--theme-color-surface-base-bg-light); - margin: 0; // Not removed via appearance - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - @include transition; - overflow: hidden; - display: flex; - justify-content: center; - - &:hover { - border-color: var(--theme-color-border-light-hover); - background-color: var(--theme-color-surface-base-base2); + &.inFormField { + padding: var(--base-sizing-#{$paddingV}) 0; + } } } - .input::before { - opacity: 0; - @include transition(opacity); - } + .Root { + display: inline-flex; + vertical-align: bottom; + align-items: center; - .input:checked, - &.partialCheck .input { - border-color: var(--theme-color-surface-primary-default); - background: var(--theme-color-surface-primary-default); + .input { + appearance: none; + background: var(--theme-color-surface-base-bg-light); + margin: 0; // Not removed via appearance + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + @include transition; + overflow: hidden; + display: flex; + justify-content: center; + + &:hover { + border-color: var(--theme-color-border-light-hover); + background-color: var(--theme-color-surface-base-base2); + } + } - &::before { - opacity: 1; + .input::before { + opacity: 0; + @include transition(opacity); } - } - .input:focus-visible { - outline: none; - border-color: var(--theme-color-border-primary-default); - background-color: var(--theme-color-surface-base-base2); - } + .input:checked, + &.partialCheck .input { + border-color: var(--theme-color-surface-primary-default); + background: var(--theme-color-surface-primary-default); - .label { - color: var(--theme-color-text-base-title-light); - } + &::before { + opacity: 1; + } + } - &.disabled { - * { - pointer-events: none; + .input:focus-visible { + outline: none; + border-color: var(--theme-color-border-primary-default); + background-color: var(--theme-color-surface-base-base2); } .label { - color: var(--theme-color-text-base-disabled); + color: var(--theme-color-text-base-title-light); } - .input { - border-color: var(--theme-color-border-light-disabled); - } + &.disabled { + * { + pointer-events: none; + } - .input:checked, - &.partialCheck .input { - border-color: var(--theme-color-border-primary-disabled); - background: var(--theme-color-surface-primary-disabled); - } + .label { + color: var(--theme-color-text-base-disabled); + } + + .input { + border-color: var(--theme-color-border-light-disabled); + } + + .input:checked, + &.partialCheck .input { + border-color: var(--theme-color-border-primary-disabled); + background: var(--theme-color-surface-primary-disabled); + } - &.success .input:checked, - &.success.partialCheck .input { - border-color: var(--theme-color-surface-success-disabled); - background: var(--theme-color-surface-success-disabled); + &.success .input:checked, + &.success.partialCheck .input { + border-color: var(--theme-color-surface-success-disabled); + background: var(--theme-color-surface-success-disabled); + } } - } - &.success { - .input:checked, - &.partialCheck .input { - border-color: var(--theme-color-surface-success-default); - background: var(--theme-color-surface-success-default); + &.success { + .input:checked, + &.partialCheck .input { + border-color: var(--theme-color-surface-success-default); + background: var(--theme-color-surface-success-default); + } } - } - &.error { - .input { - border-color: var(--theme-color-border-danger-default); + &.error { + .input { + border-color: var(--theme-color-border-danger-default); + } } } } diff --git a/src/lib/components/Chip/Chip.module.scss b/src/lib/components/Chip/Chip.module.scss index bff0159..37a4cc6 100644 --- a/src/lib/components/Chip/Chip.module.scss +++ b/src/lib/components/Chip/Chip.module.scss @@ -10,71 +10,73 @@ $variants: ( ("danger", "danger", base-global-light, base-light-overlay75) ); -.Root { - display: inline-flex; - vertical-align: bottom; - box-sizing: content-box; - justify-content: center; - align-items: center; - white-space: nowrap; - border-radius: var(--theme-sizing-radius-default); -} +@layer motif-ui { + .Root { + display: inline-flex; + vertical-align: bottom; + box-sizing: content-box; + justify-content: center; + align-items: center; + white-space: nowrap; + border-radius: var(--theme-sizing-radius-default); + } -.pill { - border-radius: var(--theme-sizing-radius-round); -} + .pill { + border-radius: var(--theme-sizing-radius-round); + } -@each $size, $fontSize, $padding in $sizes { - .#{$size} { - min-width: var(--typography-body-#{$fontSize}-line-height); - padding: var(--base-sizing-#{$padding}); - .label { - @include font("body", $fontSize); - margin: 0 var(--base-sizing-#{$padding}); - } - .icon-left { - margin-right: var(--base-sizing-2x); - } - .icon-close { - margin-left: var(--base-sizing-2x); + @each $size, $fontSize, $padding in $sizes { + .#{$size} { + min-width: var(--typography-body-#{$fontSize}-line-height); + padding: var(--base-sizing-#{$padding}); + .label { + @include font("body", $fontSize); + margin: 0 var(--base-sizing-#{$padding}); + } + .icon-left { + margin-right: var(--base-sizing-2x); + } + .icon-close { + margin-left: var(--base-sizing-2x); + } } } -} -@each $variant, $color, $colorSolid, $colorCloseIconSolid in $variants { - .#{$variant} { - &.solid { - background-color: var(--theme-color-surface-#{$color}-default); - color: var(--theme-color-text-#{$colorSolid}); - &.closable { - @include transition(background-color color); - .icon-close { - color: var(--theme-color-text-#{$colorCloseIconSolid}); - } - &:hover { - background-color: var(--theme-color-surface-#{$color}-hover); - &, + @each $variant, $color, $colorSolid, $colorCloseIconSolid in $variants { + .#{$variant} { + &.solid { + background-color: var(--theme-color-surface-#{$color}-default); + color: var(--theme-color-text-#{$colorSolid}); + &.closable { + @include transition(background-color color); .icon-close { - color: if($variant == "secondary", var(--theme-color-text-light-hover), var(--theme-color-text-#{$colorSolid})); + color: var(--theme-color-text-#{$colorCloseIconSolid}); + } + &:hover { + background-color: var(--theme-color-surface-#{$color}-hover); + &, + .icon-close { + color: if($variant == "secondary", var(--theme-color-text-light-hover), var(--theme-color-text-#{$colorSolid})); + } } } } - } - &.outline { - border: solid var(--base-sizing-1x) var(--theme-color-border-#{$color}-default); - color: if($variant == "warning", var(--theme-color-text-warning-hover), var(--theme-color-text-#{$color}-default)); + &.outline { + border: solid var(--base-sizing-1x) var(--theme-color-border-#{$color}-default); + color: if($variant == "warning", var(--theme-color-text-warning-hover), var(--theme-color-text-#{$color}-default)); - &.closable { - @include transition(color border-color); - .icon-close { - color: var(--theme-color-text-#{$color}-disabled); - } - &:hover { - border-color: var(--theme-color-border-#{$color}-hover); - &, + &.closable { + @include transition(color border-color); .icon-close { - color: if($variant == "warning", var(--theme-color-text-warning-active), var(--theme-color-text-#{$color}-hover)); + color: var(--theme-color-text-#{$color}-disabled); + } + &:hover { + border-color: var(--theme-color-border-#{$color}-hover); + &, + .icon-close { + color: if($variant == "warning", var(--theme-color-text-warning-active), var(--theme-color-text-#{$color}-hover)); + } } } } diff --git a/src/lib/components/DataView/DataView.module.scss b/src/lib/components/DataView/DataView.module.scss index 21f367e..f5d277a 100644 --- a/src/lib/components/DataView/DataView.module.scss +++ b/src/lib/components/DataView/DataView.module.scss @@ -2,105 +2,107 @@ $data-view-sizes: ("xs", "sm", "md", "lg", "xl"); -.Root { - display: grid; - column-gap: var(--base-sizing-32x); +@layer motif-ui { + .Root { + display: grid; + column-gap: var(--base-sizing-32x); - &.leftAlign .item .value { - text-align: left; - } + &.leftAlign .item .value { + text-align: left; + } - &.centerAlign .item .value { - text-align: center; - } + &.centerAlign .item .value { + text-align: center; + } - &.rightAlign .item .value { - text-align: right; - } + &.rightAlign .item .value { + text-align: right; + } - &.horizontal .item { - flex-direction: row; - } - &.vertical { - .item { - flex-direction: column; - .title { - width: initial; - } + &.horizontal .item { + flex-direction: row; } - &:not(.solid) .item { - .title { - padding-bottom: var(--base-sizing-2x); + &.vertical { + .item { + flex-direction: column; + .title { + width: initial; + } } - .value { - padding-top: var(--base-sizing-2x); + &:not(.solid) .item { + .title { + padding-bottom: var(--base-sizing-2x); + } + .value { + padding-top: var(--base-sizing-2x); + } } } } -} -.solid { - .item .title { - background: var(--theme-color-surface-base-base2); - } - &:not(.bordered) .item { - margin-bottom: var(--base-sizing-2x); + .solid { + .item .title { + background: var(--theme-color-surface-base-base2); + } + &:not(.bordered) .item { + margin-bottom: var(--base-sizing-2x); + } } -} -.item { - display: flex; + .item { + display: flex; - $color-variants: "primary", "info", "success", "warning", "danger"; - @each $variant in $color-variants { - &.#{$variant} { - background-color: var(--theme-color-surface-#{$variant}-inverse); + $color-variants: "primary", "info", "success", "warning", "danger"; + @each $variant in $color-variants { + &.#{$variant} { + background-color: var(--theme-color-surface-#{$variant}-inverse); + } } - } - .title, - .value { - @include font("body", "md"); - } + .title, + .value { + @include font("body", "md"); + } - .title { - width: 30%; - color: var(--theme-color-text-base-caption); - display: inline-flex; - gap: var(--base-sizing-10x); - padding: var(--base-sizing-10x) var(--base-sizing-20x); - overflow-wrap: break-word; - } - .value { - flex: 1; - color: var(--theme-color-text-base-title); - padding: var(--base-sizing-10x) var(--base-sizing-20x); - overflow: hidden; - overflow-wrap: break-word; - } - .icon { - color: var(--theme-color-text-base-caption); + .title { + width: 30%; + color: var(--theme-color-text-base-caption); + display: inline-flex; + gap: var(--base-sizing-10x); + padding: var(--base-sizing-10x) var(--base-sizing-20x); + overflow-wrap: break-word; + } + .value { + flex: 1; + color: var(--theme-color-text-base-title); + padding: var(--base-sizing-10x) var(--base-sizing-20x); + overflow: hidden; + overflow-wrap: break-word; + } + .icon { + color: var(--theme-color-text-base-caption); + } } -} -@mixin data-view-cols($breakpoint) { - @for $i from 1 through 4 { - .Root.#{$breakpoint}-#{$i} { - grid-template-columns: repeat(#{$i}, 1fr); - &.bordered .item:not(:nth-last-child(-n + #{$i})) { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - } - &.stripe { - @for $j from 1 through $i { - .item:nth-child(#{2 * $i}n + #{$j}) { - background-color: var(--theme-color-surface-base-base2); + @mixin data-view-cols($breakpoint) { + @for $i from 1 through 4 { + .Root.#{$breakpoint}-#{$i} { + grid-template-columns: repeat(#{$i}, 1fr); + &.bordered .item:not(:nth-last-child(-n + #{$i})) { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + } + &.stripe { + @for $j from 1 through $i { + .item:nth-child(#{2 * $i}n + #{$j}) { + background-color: var(--theme-color-surface-base-base2); + } } } } } } -} -@include screen-width-breakpoints($data-view-sizes) using ($breakpoint) { - @include data-view-cols($breakpoint); + @include screen-width-breakpoints($data-view-sizes) using ($breakpoint) { + @include data-view-cols($breakpoint); + } } diff --git a/src/lib/components/DatePicker/DatePicker.module.scss b/src/lib/components/DatePicker/DatePicker.module.scss index 7c015e4..83a8d23 100644 --- a/src/lib/components/DatePicker/DatePicker.module.scss +++ b/src/lib/components/DatePicker/DatePicker.module.scss @@ -10,271 +10,273 @@ $sizes: ( ("lg", "48x", "10x", "16x", "8x", "32x", "48x", "28x", "72x") ); -.dateSelector { - display: flex; - flex-direction: column; +@layer motif-ui { + .dateSelector { + display: flex; + flex-direction: column; - &.fluid { - .weekDays { - place-items: center; - } - .days { - flex: 1; - place-items: center; - } - .monthSelector, - .yearSelector { - justify-content: space-evenly; + &.fluid { + .weekDays { + place-items: center; + } + .days { + flex: 1; + place-items: center; + } + .monthSelector, + .yearSelector { + justify-content: space-evenly; + } } } -} -.header { - display: grid; - grid-template-columns: 1fr 1fr 1fr; + .header { + display: grid; + grid-template-columns: 1fr 1fr 1fr; - .arrowButton { - border-radius: var(--theme-sizing-radius-round); - background-color: var(--theme-color-surface-base-base1); - display: flex; - border: solid var(--base-sizing-1x) transparent; - align-items: center; - justify-content: center; - cursor: pointer; - box-sizing: border-box; - @include transition(background-color border-color); - color: var(--theme-color-text-base-subtitle); - - &:first-child { - grid-column: 1; - justify-self: start; - } - &:last-child { - grid-column: 3; - justify-self: end; - } + .arrowButton { + border-radius: var(--theme-sizing-radius-round); + background-color: var(--theme-color-surface-base-base1); + display: flex; + border: solid var(--base-sizing-1x) transparent; + align-items: center; + justify-content: center; + cursor: pointer; + box-sizing: border-box; + @include transition(background-color border-color); + color: var(--theme-color-text-base-subtitle); - &:hover { - background-color: var(--theme-color-surface-base-base2); - border-color: var(--theme-color-border-light-disabled); - } - } + &:first-child { + grid-column: 1; + justify-self: start; + } + &:last-child { + grid-column: 3; + justify-self: end; + } - .headerMonthYearButtonContainer { - grid-column: 2; - justify-self: center; - display: flex; - gap: var(--base-sizing-2x); + &:hover { + background-color: var(--theme-color-surface-base-base2); + border-color: var(--theme-color-border-light-disabled); + } + } - button { - all: unset; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-base-bg-light); - border-radius: var(--base-radius-sm); - @include transition(background-color); + .headerMonthYearButtonContainer { + grid-column: 2; + justify-self: center; + display: flex; + gap: var(--base-sizing-2x); - &:not(:disabled) { - cursor: pointer; - &:hover { - background-color: var(--theme-color-surface-base-base1); + button { + all: unset; + color: var(--theme-color-text-base-subtitle); + background-color: var(--theme-color-surface-base-bg-light); + border-radius: var(--base-radius-sm); + @include transition(background-color); + + &:not(:disabled) { + cursor: pointer; + &:hover { + background-color: var(--theme-color-surface-base-base1); + } } } } } -} -.daySelector { - display: flex; - flex-direction: column; -} - -.divider { - width: 100%; - height: var(--base-sizing-1x); - margin: 0; - border: 0; - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); -} - -.weekDays { - display: grid; - grid-template-areas: "x x x x x x x"; - - span { + .daySelector { display: flex; - justify-content: center; - align-items: center; - color: var(--theme-color-text-base-caption); + flex-direction: column; } -} -.days { - display: grid; - grid-template-areas: "x x x x x x x"; - overflow: hidden; + .divider { + width: 100%; + height: var(--base-sizing-1x); + margin: 0; + border: 0; + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + } - button { - display: flex; - justify-content: center; - align-items: center; - cursor: pointer; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-base-bg-light); - border-radius: var(--theme-sizing-radius-default); - border: none; - @include transition(background-color); - @include focus-ring; - - &:hover { - background-color: var(--theme-color-surface-base-base1); - } + .weekDays { + display: grid; + grid-template-areas: "x x x x x x x"; - &:disabled { - color: var(--theme-color-text-base-disabled-light); - pointer-events: none; + span { + display: flex; + justify-content: center; + align-items: center; + color: var(--theme-color-text-base-caption); } + } + + .days { + display: grid; + grid-template-areas: "x x x x x x x"; + overflow: hidden; - &.today { + button { + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + color: var(--theme-color-text-base-subtitle); background-color: var(--theme-color-surface-base-bg-light); - color: var(--theme-color-text-primary-default); - border: solid var(--base-sizing-1x) var(--theme-color-border-primary-default); - } + border-radius: var(--theme-sizing-radius-default); + border: none; + @include transition(background-color); + @include focus-ring; - &.selected { - background-color: var(--theme-color-surface-primary-default); - color: var(--theme-color-text-base-text-light); - position: relative; + &:hover { + background-color: var(--theme-color-surface-base-base1); + } - &.toLeft, - &.toRight { - &::after { - position: absolute; - z-index: -1; - content: ""; - background-color: var(--theme-color-surface-primary-negative); - top: 0; - bottom: 0; - } + &:disabled { + color: var(--theme-color-text-base-disabled-light); + pointer-events: none; } - &.toLeft { - &, - &::after { - border-radius: 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0; - } - &::after { - right: 0; - left: calc(-1 * var(--base-sizing-2x)); - } + &.today { + background-color: var(--theme-color-surface-base-bg-light); + color: var(--theme-color-text-primary-default); + border: solid var(--base-sizing-1x) var(--theme-color-border-primary-default); } - &.toRight { - &, - &::after { - border-radius: var(--theme-sizing-radius-default) 0 0 var(--theme-sizing-radius-default); + &.selected { + background-color: var(--theme-color-surface-primary-default); + color: var(--theme-color-text-base-text-light); + position: relative; + + &.toLeft, + &.toRight { + &::after { + position: absolute; + z-index: -1; + content: ""; + background-color: var(--theme-color-surface-primary-negative); + top: 0; + bottom: 0; + } } - &::after { - left: 0; - right: calc(-1 * var(--base-sizing-2x)); + + &.toLeft { + &, + &::after { + border-radius: 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0; + } + &::after { + right: 0; + left: calc(-1 * var(--base-sizing-2x)); + } + } + + &.toRight { + &, + &::after { + border-radius: var(--theme-sizing-radius-default) 0 0 var(--theme-sizing-radius-default); + } + &::after { + left: 0; + right: calc(-1 * var(--base-sizing-2x)); + } } } - } - &.partiallySelected { - background-color: transparent; - position: relative; - &::after { - content: ""; - background-color: var(--theme-color-surface-primary-negative); - position: absolute; - inset: 0 calc(-1 * var(--base-sizing-2x)); - z-index: -1; + &.partiallySelected { + background-color: transparent; + position: relative; + &::after { + content: ""; + background-color: var(--theme-color-surface-primary-negative); + position: absolute; + inset: 0 calc(-1 * var(--base-sizing-2x)); + z-index: -1; + } } } } -} - -.monthSelector, -.yearSelector { - display: grid; - justify-content: center; - button { - display: flex; - cursor: pointer; + .monthSelector, + .yearSelector { + display: grid; justify-content: center; - align-items: center; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-base-bg-light); - border-radius: var(--base-radius-sm); - border: none; - @include focus-ring; - @include transition(background-color); - - &:hover { - background-color: var(--theme-color-surface-base-base1); - } - &.selected { - background-color: var(--theme-color-surface-primary-default); - color: var(--theme-color-text-base-text-light); + button { + display: flex; + cursor: pointer; + justify-content: center; + align-items: center; + color: var(--theme-color-text-base-subtitle); + background-color: var(--theme-color-surface-base-bg-light); + border-radius: var(--base-radius-sm); + border: none; + @include focus-ring; + @include transition(background-color); + + &:hover { + background-color: var(--theme-color-surface-base-base1); + } + + &.selected { + background-color: var(--theme-color-surface-primary-default); + color: var(--theme-color-text-base-text-light); + } } } -} -.monthSelector { - grid-template-areas: "x x x"; -} -.yearSelector { - grid-template-areas: "x x x x"; -} + .monthSelector { + grid-template-areas: "x x x"; + } + .yearSelector { + grid-template-areas: "x x x x"; + } -@each $size, $itemSize, $headerButtonPaddingH, $daysRowGap, $daysColGap, $monthYearGapV, $monthGapH, $yearGapH, $monthYearButtonW in $sizes { - .#{$size} { - &.daySelector, - &.dateSelector { - gap: map.get(pickerValues.$size, $size, "gapV"); - } + @each $size, $itemSize, $headerButtonPaddingH, $daysRowGap, $daysColGap, $monthYearGapV, $monthGapH, $yearGapH, $monthYearButtonW in $sizes { + .#{$size} { + &.daySelector, + &.dateSelector { + gap: map.get(pickerValues.$size, $size, "gapV"); + } - .header { - height: var(--base-sizing-#{$itemSize}); - .arrowButton { - width: var(--base-sizing-#{$itemSize}); + .header { height: var(--base-sizing-#{$itemSize}); + .arrowButton { + width: var(--base-sizing-#{$itemSize}); + height: var(--base-sizing-#{$itemSize}); + } + .headerMonthYearButtonContainer button { + padding: 0 var(--base-sizing-#{$headerButtonPaddingH}); + @include font("base", $size, "700"); + } } - .headerMonthYearButtonContainer button { - padding: 0 var(--base-sizing-#{$headerButtonPaddingH}); - @include font("base", $size, "700"); - } - } - .days, - .weekDays { - gap: var(--base-sizing-#{$daysRowGap}) var(--base-sizing-#{$daysColGap}); - } - - .weekDays span, - .days button { - width: var(--base-sizing-#{$itemSize}); - height: var(--base-sizing-#{$itemSize}); - @include font("base", $size, "700"); - } + .days, + .weekDays { + gap: var(--base-sizing-#{$daysRowGap}) var(--base-sizing-#{$daysColGap}); + } - .monthSelector, - .yearSelector { - margin: map.get(pickerValues.$size, $size, "gapV") 0; - row-gap: var(--base-sizing-#{$monthYearGapV}); - button { - width: var(--base-sizing-#{$monthYearButtonW}); + .weekDays span, + .days button { + width: var(--base-sizing-#{$itemSize}); height: var(--base-sizing-#{$itemSize}); @include font("base", $size, "700"); } - } - .monthSelector { - column-gap: var(--base-sizing-#{$monthGapH}); - } - .yearSelector { - column-gap: var(--base-sizing-#{$yearGapH}); + + .monthSelector, + .yearSelector { + margin: map.get(pickerValues.$size, $size, "gapV") 0; + row-gap: var(--base-sizing-#{$monthYearGapV}); + button { + width: var(--base-sizing-#{$monthYearButtonW}); + height: var(--base-sizing-#{$itemSize}); + @include font("base", $size, "700"); + } + } + .monthSelector { + column-gap: var(--base-sizing-#{$monthGapH}); + } + .yearSelector { + column-gap: var(--base-sizing-#{$yearGapH}); + } } } } diff --git a/src/lib/components/DateRangePicker/DateRangePicker.module.scss b/src/lib/components/DateRangePicker/DateRangePicker.module.scss index b956dba..8de823c 100644 --- a/src/lib/components/DateRangePicker/DateRangePicker.module.scss +++ b/src/lib/components/DateRangePicker/DateRangePicker.module.scss @@ -10,123 +10,125 @@ $sizes: ( ("lg", "32x", "190x", "190x") ); -@each $size, $pickerGap, $minWidthDropdown, $inputWidth in $sizes { - .#{$size} { - gap: map.get(pickerValues.$size, $size, "gapV"); - - .selectionBar { - padding-bottom: map.get(pickerValues.$size, $size, "gapV"); - > div:first-child { - min-width: var(--base-sizing-#{$minWidthDropdown}); - } - > div:not(:first-child) { - width: var(--base-sizing-#{$inputWidth}); +@layer motif-ui { + @each $size, $pickerGap, $minWidthDropdown, $inputWidth in $sizes { + .#{$size} { + gap: map.get(pickerValues.$size, $size, "gapV"); + + .selectionBar { + padding-bottom: map.get(pickerValues.$size, $size, "gapV"); + > div:first-child { + min-width: var(--base-sizing-#{$minWidthDropdown}); + } + > div:not(:first-child) { + width: var(--base-sizing-#{$inputWidth}); + } } - } - .datePickers { - gap: calc(var(--base-sizing-#{$pickerGap})); - transform: translateX(calc(-50% - var(--base-sizing-#{$pickerGap}) / 2 + var(--base-sizing-1x))); + .datePickers { + gap: calc(var(--base-sizing-#{$pickerGap})); + transform: translateX(calc(-50% - var(--base-sizing-#{$pickerGap}) / 2 + var(--base-sizing-1x))); - &.slideLeft { - transform: translateX(calc(-100% - var(--base-sizing-#{$pickerGap}) + var(--base-sizing-3x))); - } - &.slideRight { - transform: translateX(0); + &.slideLeft { + transform: translateX(calc(-100% - var(--base-sizing-#{$pickerGap}) + var(--base-sizing-3x))); + } + &.slideRight { + transform: translateX(0); + } } } } -} -.rangeSelector { - display: flex; - flex-direction: column; - overflow: hidden; -} + .rangeSelector { + display: flex; + flex-direction: column; + overflow: hidden; + } -.datePickers { - display: flex; + .datePickers { + display: flex; - &.slideLeft, - &.slideRight { - @include transition(transform); - & > div > div:first-child button { - display: none; + &.slideLeft, + &.slideRight { + @include transition(transform); + & > div > div:first-child button { + display: none; + } } - } - .isInRange { - position: relative; - transition: none; - - &::after { - content: ""; - position: absolute; - z-index: -1; - background-color: var(--theme-color-surface-primary-negative); - top: 0; - bottom: 0; - } + .isInRange { + position: relative; + transition: none; + + &::after { + content: ""; + position: absolute; + z-index: -1; + background-color: var(--theme-color-surface-primary-negative); + top: 0; + bottom: 0; + } - // leftmost items - &:nth-of-type(7n + 1)::after { - left: 0; - right: calc(-1 * var(--base-sizing-2x)); - } + // leftmost items + &:nth-of-type(7n + 1)::after { + left: 0; + right: calc(-1 * var(--base-sizing-2x)); + } - // middle items - &:not(:nth-of-type(7n), :nth-of-type(7n + 1))::after { - left: calc(-1 * var(--base-sizing-2x)); - right: calc(-1 * var(--base-sizing-2x)); - } + // middle items + &:not(:nth-of-type(7n), :nth-of-type(7n + 1))::after { + left: calc(-1 * var(--base-sizing-2x)); + right: calc(-1 * var(--base-sizing-2x)); + } - // rightmost items - &:nth-of-type(7n)::after { - right: 0; - left: calc(-1 * var(--base-sizing-2x)); - } + // rightmost items + &:nth-of-type(7n)::after { + right: 0; + left: calc(-1 * var(--base-sizing-2x)); + } - &.isSelected { - &.toLeft { - border-radius: 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0; - &::after { - right: 0; + &.isSelected { + &.toLeft { + border-radius: 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0; + &::after { + right: 0; + } } - } - &.toRight { - border-radius: var(--theme-sizing-radius-default) 0 0 var(--theme-sizing-radius-default); - &::after { - left: 0; + &.toRight { + border-radius: var(--theme-sizing-radius-default) 0 0 var(--theme-sizing-radius-default); + &::after { + left: 0; + } } } - } - &:not(.isSelected) { - background-color: transparent; - } + &:not(.isSelected) { + background-color: transparent; + } - // last item in range - &:not(:has(+ .isInRange))::after { - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); + // last item in range + &:not(:has(+ .isInRange))::after { + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + } } - } - // first item in range - :not(.isInRange) + .isInRange::after { - border-top-left-radius: var(--theme-sizing-radius-default); - border-bottom-left-radius: var(--theme-sizing-radius-default); + // first item in range + :not(.isInRange) + .isInRange::after { + border-top-left-radius: var(--theme-sizing-radius-default); + border-bottom-left-radius: var(--theme-sizing-radius-default); + } } -} -.selectionBar { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); - text-align: right; + .selectionBar { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + text-align: right; - > div:first-child { - float: left; - } - > div:last-child { - margin-left: var(--base-sizing-2x); + > div:first-child { + float: left; + } + > div:last-child { + margin-left: var(--base-sizing-2x); + } } } diff --git a/src/lib/components/DateTimePicker/DateTimePicker.module.scss b/src/lib/components/DateTimePicker/DateTimePicker.module.scss index 69169c4..2bb8eb0 100644 --- a/src/lib/components/DateTimePicker/DateTimePicker.module.scss +++ b/src/lib/components/DateTimePicker/DateTimePicker.module.scss @@ -10,94 +10,96 @@ $sizes: ( ("lg", "heading2", "12x", "24x", "md", "0") ); -.dateTimePickerContainer { - display: flex; - flex-direction: column; -} - -.info { - display: flex; - align-items: center; -} +@layer motif-ui { + .dateTimePickerContainer { + display: flex; + flex-direction: column; + } -.infoDate { - display: flex; - flex: 1; - gap: var(--base-sizing-4x); - align-items: baseline; - span { - color: var(--theme-color-text-base-caption-light); + .info { + display: flex; + align-items: center; } - &.active span { - color: var(--theme-color-text-primary-default); + + .infoDate { + display: flex; + flex: 1; + gap: var(--base-sizing-4x); + align-items: baseline; + span { + color: var(--theme-color-text-base-caption-light); + } + &.active span { + color: var(--theme-color-text-primary-default); + } } -} -.infoTime { - color: var(--theme-color-text-base-caption-light); - &.active { - color: var(--theme-color-text-primary-default); + .infoTime { + color: var(--theme-color-text-base-caption-light); + &.active { + color: var(--theme-color-text-primary-default); + } } -} -.infoTimePeriod { - color: var(--theme-color-text-base-disabled-light); -} + .infoTimePeriod { + color: var(--theme-color-text-base-disabled-light); + } -.tabItemContainer { - display: flex; + .tabItemContainer { + display: flex; - .tabItem { - flex: 1; - cursor: pointer; - appearance: unset; - background: none; - border: none; - border-bottom: solid var(--base-sizing-2x) var(--theme-color-surface-base-base6); + .tabItem { + flex: 1; + cursor: pointer; + appearance: unset; + background: none; + border: none; + border-bottom: solid var(--base-sizing-2x) var(--theme-color-surface-base-base6); - .icon { - color: var(--theme-color-text-base-caption-light); - @include transition(color); - } + .icon { + color: var(--theme-color-text-base-caption-light); + @include transition(color); + } - @include transition(border-bottom-color); + @include transition(border-bottom-color); - &.active { - border-bottom-color: var(--theme-color-border-primary-default); - .icon { - color: var(--theme-color-text-primary-default); + &.active { + border-bottom-color: var(--theme-color-border-primary-default); + .icon { + color: var(--theme-color-text-primary-default); + } } - } - &:not(.active):hover { - border-bottom-color: var(--theme-color-surface-base-base7); - .icon { - color: var(--theme-color-text-base-caption); + &:not(.active):hover { + border-bottom-color: var(--theme-color-surface-base-base7); + .icon { + color: var(--theme-color-text-base-caption); + } } } } -} -@each $size, $monthLabelSize, $tabPaddingV, $tabPaddingH, $timePeriodSize, $timePeriodMarginBottom in $sizes { - .#{$size} { - gap: map.get(pickerValues.$size, $size, "gapV"); + @each $size, $monthLabelSize, $tabPaddingV, $tabPaddingH, $timePeriodSize, $timePeriodMarginBottom in $sizes { + .#{$size} { + gap: map.get(pickerValues.$size, $size, "gapV"); - .infoMonthDay { - @include font("heading", $monthLabelSize); - } - .infoDate .infoYear, - .infoTime { - @include font("base", $size, "700"); - } - .infoTimePeriod { - @include font("base", $timePeriodSize, "500"); - margin-left: var(--base-sizing-2x); - } - .tabItemContainer .tabItem { - padding: var(--base-sizing-#{$tabPaddingV}) var(--base-sizing-#{$tabPaddingH}); - } - .timePicker { - margin: calc(-1 * map.get(pickerValues.$size, $size, "gapV")) 0; + .infoMonthDay { + @include font("heading", $monthLabelSize); + } + .infoDate .infoYear, + .infoTime { + @include font("base", $size, "700"); + } + .infoTimePeriod { + @include font("base", $timePeriodSize, "500"); + margin-left: var(--base-sizing-2x); + } + .tabItemContainer .tabItem { + padding: var(--base-sizing-#{$tabPaddingV}) var(--base-sizing-#{$tabPaddingH}); + } + .timePicker { + margin: calc(-1 * map.get(pickerValues.$size, $size, "gapV")) 0; + } } } } diff --git a/src/lib/components/Divider/Divider.module.scss b/src/lib/components/Divider/Divider.module.scss index 9a62c39..f892092 100644 --- a/src/lib/components/Divider/Divider.module.scss +++ b/src/lib/components/Divider/Divider.module.scss @@ -2,77 +2,79 @@ $sizes: (("sm", "1x", "6x"), ("md", "2x", "12x"), ("lg", "4x", "18x")); -.Root { - &::before { - box-sizing: border-box; - border-color: var(--theme-color-surface-base-base6); - position: absolute; - content: ""; - } - - &.horizontal { - min-width: 100%; - position: relative; +@layer motif-ui { + .Root { &::before { - width: 100%; - } - &.solid::before { - border-top-style: solid; + box-sizing: border-box; + border-color: var(--theme-color-surface-base-base6); + position: absolute; + content: ""; } - &.dashed::before { - border-top-style: dashed; - } - &.dotted::before { - border-top-style: dotted; - } - } - &.vertical { - min-height: 100%; - position: relative; - justify-content: center; - &::before { - height: 100%; - } - &.solid::before { - border-left-style: solid; - } - &.dashed::before { - border-left-style: dashed; + &.horizontal { + min-width: 100%; + position: relative; + &::before { + width: 100%; + } + &.solid::before { + border-top-style: solid; + } + &.dashed::before { + border-top-style: dashed; + } + &.dotted::before { + border-top-style: dotted; + } } - &.dotted::before { - border-left-style: dotted; + + &.vertical { + min-height: 100%; + position: relative; + justify-content: center; + &::before { + height: 100%; + } + &.solid::before { + border-left-style: solid; + } + &.dashed::before { + border-left-style: dashed; + } + &.dotted::before { + border-left-style: dotted; + } } - } - @each $size, $thickness, $gap in $sizes { - $align-position: calc(var(--base-sizing-#{$thickness}) / 2); - $border-width: var(--base-sizing-#{$thickness}); + @each $size, $thickness, $gap in $sizes { + $align-position: calc(var(--base-sizing-#{$thickness}) / 2); + $border-width: var(--base-sizing-#{$thickness}); - &.#{$size} { - &.horizontal { - height: $border-width; - &::before { - border-top-width: $border-width; - top: calc(50% - $align-position); + &.#{$size} { + &.horizontal { + height: $border-width; + &::before { + border-top-width: $border-width; + top: calc(50% - $align-position); + } } - } - &.vertical { - width: $border-width; - &::before { - border-left-width: $border-width; - left: calc(50% - $align-position); + &.vertical { + width: $border-width; + &::before { + border-left-width: $border-width; + left: calc(50% - $align-position); + } } } - } - &.gap-#{$size} { - &.horizontal { - margin-block: var(--base-sizing-#{$gap}); - } + &.gap-#{$size} { + &.horizontal { + margin-block: var(--base-sizing-#{$gap}); + } - &.vertical { - margin-inline: var(--base-sizing-#{$gap}); + &.vertical { + margin-inline: var(--base-sizing-#{$gap}); + } } } } diff --git a/src/lib/components/Dropdown/Dropdown.module.scss b/src/lib/components/Dropdown/Dropdown.module.scss index 5043198..526c33c 100644 --- a/src/lib/components/Dropdown/Dropdown.module.scss +++ b/src/lib/components/Dropdown/Dropdown.module.scss @@ -51,163 +51,165 @@ $variants: ("primary", "secondary", "info", "success", "warning", "danger"); } } -.Root { - position: relative; - display: inline-flex; -} - -// ============================================================================= -// Dropdown Button -// ============================================================================= -.Button { - display: flex; - justify-content: space-between; - flex: 1; - border-radius: var(--theme-sizing-radius-default); - align-items: center; - border: none; - overflow-wrap: break-word; - width: max-content; - @include transition(background color); - - &:not(:disabled) { - cursor: pointer; - } +@layer motif-ui { + .Root { + position: relative; + display: inline-flex; + } + + // ============================================================================= + // Dropdown Button + // ============================================================================= + .Button { + display: flex; + justify-content: space-between; + flex: 1; + border-radius: var(--theme-sizing-radius-default); + align-items: center; + border: none; + overflow-wrap: break-word; + width: max-content; + @include transition(background color); + + &:not(:disabled) { + cursor: pointer; + } - &:focus-visible { - border: solid var(--base-sizing-1x) var(--theme-color-surface-base-bg-light); - outline: solid var(--base-sizing-4x) var(--theme-color-border-primary-focus); - } + &:focus-visible { + border: solid var(--base-sizing-1x) var(--theme-color-surface-base-bg-light); + outline: solid var(--base-sizing-4x) var(--theme-color-border-primary-focus); + } - .Button-DropdownIcon { - @include transition(rotate); - .open & { - rotate: 180deg; + .Button-DropdownIcon { + @include transition(rotate); + .open & { + rotate: 180deg; + } } - } - .pill & { - border-radius: var(--theme-sizing-radius-round); - } + .pill & { + border-radius: var(--theme-sizing-radius-round); + } - .textOnly & { - background: transparent; - color: var(--theme-color-text-base-subtitle); + .textOnly & { + background: transparent; + color: var(--theme-color-text-base-subtitle); - &:hover, - &:active { - color: var(--theme-color-text-base-text-dark); - } - &:disabled { - color: var(--theme-color-text-base-disabled); + &:hover, + &:active { + color: var(--theme-color-text-base-text-dark); + } + &:disabled { + color: var(--theme-color-text-base-disabled); + } } - } - @each $variant in $variants { - $color: if($variant == "secondary", "light", $variant); - .solid.#{$variant} & { - background-color: var(--theme-color-surface-#{$color}-default); - color: if($variant == "secondary" or $variant == "warning", var(--theme-color-text-base-title), var(--theme-color-text-base-global-light)); - - @each $state in $states { - &:#{$state} { - background-color: var(--theme-color-surface-#{$color}-#{$state}); - @if $variant == "secondary" { - color: var(--theme-color-text-light-#{$state}); - } - @if $variant == "warning" and $state == "disabled" { - color: var(--theme-color-text-base-default-overlay50); + @each $variant in $variants { + $color: if($variant == "secondary", "light", $variant); + .solid.#{$variant} & { + background-color: var(--theme-color-surface-#{$color}-default); + color: if($variant == "secondary" or $variant == "warning", var(--theme-color-text-base-title), var(--theme-color-text-base-global-light)); + + @each $state in $states { + &:#{$state} { + background-color: var(--theme-color-surface-#{$color}-#{$state}); + @if $variant == "secondary" { + color: var(--theme-color-text-light-#{$state}); + } + @if $variant == "warning" and $state == "disabled" { + color: var(--theme-color-text-base-default-overlay50); + } } } } } } -} -// ============================================================================= -// Dropdown Menu -// ============================================================================= -.Menu { - list-style: none; - padding: 0; - position: absolute; - top: 100%; - z-index: 1; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-global-light); - @include shadow(6); - - &:not(.leftOverflow) { - @include overflow-caret(right); - } - &.leftOverflow { - @include overflow-caret(left); + // ============================================================================= + // Dropdown Menu + // ============================================================================= + .Menu { + list-style: none; + padding: 0; + position: absolute; + top: 100%; + z-index: 1; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-global-light); + @include shadow(6); + + &:not(.leftOverflow) { + @include overflow-caret(right); + } + &.leftOverflow { + @include overflow-caret(left); + } } -} -// ============================================================================= -// Dropdown Menu Item -// ============================================================================= -.MenuItem { - @include transition(color background-color); - color: var(--theme-color-text-base-subtitle); - user-select: none; - display: flex; - align-items: center; - white-space: nowrap; - - li:first-child & { - border-top-left-radius: var(--theme-sizing-radius-default); - border-top-right-radius: var(--theme-sizing-radius-default); - } - li:last-child & { - border-bottom-left-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - } - li:not(:last-child) & { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - } + // ============================================================================= + // Dropdown Menu Item + // ============================================================================= + .MenuItem { + @include transition(color background-color); + color: var(--theme-color-text-base-subtitle); + user-select: none; + display: flex; + align-items: center; + white-space: nowrap; + + li:first-child & { + border-top-left-radius: var(--theme-sizing-radius-default); + border-top-right-radius: var(--theme-sizing-radius-default); + } + li:last-child & { + border-bottom-left-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + } + li:not(:last-child) & { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + } - &.MenuItem_disabled, - &.MenuItem_header { - pointer-events: none; - color: var(--theme-color-text-base-caption-light); - } + &.MenuItem_disabled, + &.MenuItem_header { + pointer-events: none; + color: var(--theme-color-text-base-caption-light); + } - &.MenuItem_clickable { - cursor: pointer; - &:hover { - background: var(--theme-color-surface-base-base4); - color: var(--theme-color-text-base-text-dark); + &.MenuItem_clickable { + cursor: pointer; + &:hover { + background: var(--theme-color-surface-base-base4); + color: var(--theme-color-text-base-text-dark); + } } - } - .MenuItem-Icon:first-child:last-child { - flex: 1; - text-align: center; + .MenuItem-Icon:first-child:last-child { + flex: 1; + text-align: center; + } } -} -// ============================================================================= -// COMMON -// ============================================================================= -@each $size, $buttonPaddingAndGap, $itemPaddingAndGap in $sizes { - .#{$size} { - .Button { - padding: var(--base-sizing-#{$buttonPaddingAndGap}); - gap: var(--base-sizing-#{$buttonPaddingAndGap}); - @include font("base", $size, "500"); - } - .MenuItem { - padding: var(--base-sizing-#{$itemPaddingAndGap}); - gap: var(--base-sizing-#{$itemPaddingAndGap}); - &.MenuItem_clickable { - @include font("body", $size); - } - &.MenuItem_header { + // ============================================================================= + // COMMON + // ============================================================================= + @each $size, $buttonPaddingAndGap, $itemPaddingAndGap in $sizes { + .#{$size} { + .Button { + padding: var(--base-sizing-#{$buttonPaddingAndGap}); + gap: var(--base-sizing-#{$buttonPaddingAndGap}); @include font("base", $size, "500"); } + .MenuItem { + padding: var(--base-sizing-#{$itemPaddingAndGap}); + gap: var(--base-sizing-#{$itemPaddingAndGap}); + &.MenuItem_clickable { + @include font("body", $size); + } + &.MenuItem_header { + @include font("base", $size, "500"); + } + } } } } diff --git a/src/lib/components/Form/Form.module.scss b/src/lib/components/Form/Form.module.scss index 5ec7f38..b8b0ac4 100644 --- a/src/lib/components/Form/Form.module.scss +++ b/src/lib/components/Form/Form.module.scss @@ -8,66 +8,68 @@ $sizes: ( ("lg", "24x", "32x", "8x", "16x") ); -.Root { - flex-direction: column; -} - -.vertical, -.submitArea { - display: flex; -} - -.horizontal { - display: inline-flex; -} - -.horizontal .fields { - display: inline-flex; - align-items: flex-start; -} - -.horizontalLabels .submitArea { - padding-top: 0; -} - -.vertical { - .fields { - display: flex; +@layer motif-ui { + .Root { flex-direction: column; } + .vertical, .submitArea { - margin-top: var(--base-sizing-24x); + display: flex; + } - &.submitArea_align_left { - justify-content: flex-start; - } - &.submitArea_align_center { - justify-content: center; - } - &.submitArea_align_right { - justify-content: flex-end; - } + .horizontal { + display: inline-flex; + } + + .horizontal .fields { + display: inline-flex; + align-items: flex-start; } -} -@each $size, $gapV, $gapH, $gapVLabel, $gapButtons in $sizes { - .#{$size} { - &, - &.vertical .fields { - gap: var(--base-sizing-#{$gapV}); + .horizontalLabels .submitArea { + padding-top: 0; + } + + .vertical { + .fields { + display: flex; + flex-direction: column; } + .submitArea { - gap: var(--base-sizing-#{$gapButtons}); + margin-top: var(--base-sizing-24x); + + &.submitArea_align_left { + justify-content: flex-start; + } + &.submitArea_align_center { + justify-content: center; + } + &.submitArea_align_right { + justify-content: flex-end; + } } - &.horizontal { - .fields { - gap: var(--base-sizing-#{$gapH}); + } + + @each $size, $gapV, $gapH, $gapVLabel, $gapButtons in $sizes { + .#{$size} { + &, + &.vertical .fields { + gap: var(--base-sizing-#{$gapV}); + } + .submitArea { + gap: var(--base-sizing-#{$gapButtons}); } - &.verticalLabels .fields > [data-has-label] ~ .submitArea { - $gap-var: --base-sizing-#{$gapVLabel}; - $line-height-var: --typography-base-#{$size}-500-line-height; - padding-top: calc(var(#{$gap-var}) + var(#{$line-height-var})); + &.horizontal { + .fields { + gap: var(--base-sizing-#{$gapH}); + } + &.verticalLabels .fields > [data-has-label] ~ .submitArea { + $gap-var: --base-sizing-#{$gapVLabel}; + $line-height-var: --typography-base-#{$size}-500-line-height; + padding-top: calc(var(#{$gap-var}) + var(#{$line-height-var})); + } } } } diff --git a/src/lib/components/Form/FormFields/FormField.module.scss b/src/lib/components/Form/FormFields/FormField.module.scss index 694585a..37f65c3 100644 --- a/src/lib/components/Form/FormFields/FormField.module.scss +++ b/src/lib/components/Form/FormFields/FormField.module.scss @@ -8,142 +8,144 @@ $sizes: ( ("lg", "sm", "8x", "20x", "10x", "32x") ); -.Root { - display: flex; - - &.error { - &.required .label::before, - &.required .label::after, - .helper { - color: var(--theme-color-text-danger-default); +@layer motif-ui { + .Root { + display: flex; + + &.error { + &.required .label::before, + &.required .label::after, + .helper { + color: var(--theme-color-text-danger-default); + } } - } - &.success .helper { - color: var(--theme-color-text-success-default); - } + &.success .helper { + color: var(--theme-color-text-success-default); + } - &.disabled { - .label { - &, - &::before, - &::after { + &.disabled { + .label { + &, + &::before, + &::after { + color: var(--theme-color-text-base-disabled); + } + } + &.required .label::before, + &.required .label::after { + color: var(--theme-color-text-base-disabled); + } + .helper { color: var(--theme-color-text-base-disabled); } - } - &.required .label::before, - &.required .label::after { - color: var(--theme-color-text-base-disabled); - } - .helper { - color: var(--theme-color-text-base-disabled); } } -} -.label { - color: var(--theme-color-text-base-title-light); - .required & { - &::before, - &::after { - color: var(--theme-color-text-base-caption); - padding: 0 var(--base-sizing-2x); + .label { + color: var(--theme-color-text-base-title-light); + .required & { + &::before, + &::after { + color: var(--theme-color-text-base-caption); + padding: 0 var(--base-sizing-2x); + } } } -} -.helper { - color: var(--theme-color-text-base-caption); - white-space: pre-line; - @include transition(color); -} - -.inputContainer { - display: flex; - flex-direction: column; -} - -.horizontalForm { - .label { - white-space: nowrap; + .helper { + color: var(--theme-color-text-base-caption); + white-space: pre-line; + @include transition(color); } -} -.verticalForm.horizontalLabel { - .label { - width: var(--base-sizing-128x); - min-width: var(--base-sizing-128x); - } .inputContainer { - flex: 1; + display: flex; + flex-direction: column; } -} -.horizontalLabel { - align-items: flex-start; - &.required .label::before { - content: "*"; + .horizontalForm { + .label { + white-space: nowrap; + } } -} -.verticalLabel { - flex-direction: column; - &.required .label::after { - content: "*"; + .verticalForm.horizontalLabel { + .label { + width: var(--base-sizing-128x); + min-width: var(--base-sizing-128x); + } + .inputContainer { + flex: 1; + } } -} -.groupItems { - display: flex; - .verticalGroup & { - flex-direction: column; + .horizontalLabel { + align-items: flex-start; + &.required .label::before { + content: "*"; + } } -} -@each $size, $helperSize, $gapVLabel, $gapHLabel, $marginTopHLabel, $gapHGroupItems in $sizes { - .#{$size} { - &.verticalLabel { - gap: var(--base-sizing-#{$gapVLabel}); - &.required .label::after { - font-weight: var(--typography-base-#{$size}-700-font-weight); - } - &.horizontalForm:not(:has(> .label)) { - @at-root :has(.label) > & { - $gap-var: --base-sizing-#{$gapVLabel}; - $line-height-var: --typography-base-#{$size}-500-line-height; - padding-top: calc(var(#{$gap-var}) + var(#{$line-height-var})); - } - } + .verticalLabel { + flex-direction: column; + &.required .label::after { + content: "*"; } + } - &.verticalGroup .groupItems { - gap: var(--base-sizing-#{$gapVLabel}); + .groupItems { + display: flex; + .verticalGroup & { + flex-direction: column; } + } - &.horizontalLabel { - gap: var(--base-sizing-#{$gapHLabel}); - .label { - margin-top: var(--base-sizing-#{$marginTopHLabel}); + @each $size, $helperSize, $gapVLabel, $gapHLabel, $marginTopHLabel, $gapHGroupItems in $sizes { + .#{$size} { + &.verticalLabel { + gap: var(--base-sizing-#{$gapVLabel}); + &.required .label::after { + font-weight: var(--typography-base-#{$size}-700-font-weight); + } + &.horizontalForm:not(:has(> .label)) { + @at-root :has(.label) > & { + $gap-var: --base-sizing-#{$gapVLabel}; + $line-height-var: --typography-base-#{$size}-500-line-height; + padding-top: calc(var(#{$gap-var}) + var(#{$line-height-var})); + } + } } - &.required .label::before { - font-weight: var(--typography-base-#{$size}-700-font-weight); + + &.verticalGroup .groupItems { + gap: var(--base-sizing-#{$gapVLabel}); } - } - &.horizontalGroup .groupItems { - gap: var(--base-sizing-#{$gapHGroupItems}); - } + &.horizontalLabel { + gap: var(--base-sizing-#{$gapHLabel}); + .label { + margin-top: var(--base-sizing-#{$marginTopHLabel}); + } + &.required .label::before { + font-weight: var(--typography-base-#{$size}-700-font-weight); + } + } - .label { - @include font("base", $size, "500"); - } + &.horizontalGroup .groupItems { + gap: var(--base-sizing-#{$gapHGroupItems}); + } - .helper { - @include font("body", $helperSize); - } + .label { + @include font("base", $size, "500"); + } - .inputContainer { - gap: var(--base-sizing-#{$gapVLabel}); + .helper { + @include font("body", $helperSize); + } + + .inputContainer { + gap: var(--base-sizing-#{$gapVLabel}); + } } } } diff --git a/src/lib/components/Form/components/FormTitle.module.scss b/src/lib/components/Form/components/FormTitle.module.scss index 1d2c8f4..7d8a3ff 100644 --- a/src/lib/components/Form/components/FormTitle.module.scss +++ b/src/lib/components/Form/components/FormTitle.module.scss @@ -2,14 +2,16 @@ $headings: (("h2", "heading6"), ("h3", "heading5"), ("h4", "heading4"), ("h5", "heading5")); -.title { - margin: 0; - padding: 0; - color: var(--theme-color-text-base-title); +@layer motif-ui { + .title { + margin: 0; + padding: 0; + color: var(--theme-color-text-base-title); - @each $tag, $heading in $headings { - #{$tag} & { - @include font("heading", $heading); + @each $tag, $heading in $headings { + #{$tag} & { + @include font("heading", $heading); + } } } } diff --git a/src/lib/components/Grid/Grid.module.scss b/src/lib/components/Grid/Grid.module.scss index 788aaee..97ac253 100644 --- a/src/lib/components/Grid/Grid.module.scss +++ b/src/lib/components/Grid/Grid.module.scss @@ -7,85 +7,87 @@ $grids: 12; @return calc(($colIdx / $grids * 100%) - ((1 - $colIdx / $grids) * #{$gutter})); } -.Root { - width: 100%; - margin: 0 auto; - display: flex; - flex-direction: column; - box-sizing: border-box; - - @each $gutter-size in $grid-sizes { - &.gutter-#{$gutter-size} { - gap: var(--theme-grid-gutter-gutter-#{$gutter-size}); - padding: var(--theme-grid-gutter-gutter-#{$gutter-size}); +@layer motif-ui { + .Root { + width: 100%; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; - .row { + @each $gutter-size in $grid-sizes { + &.gutter-#{$gutter-size} { gap: var(--theme-grid-gutter-gutter-#{$gutter-size}); - } + padding: var(--theme-grid-gutter-gutter-#{$gutter-size}); - @for $i from 1 through $grids { - .col-size-#{$i} { - flex: 0 0 calculate-grid-flex-width($i, var(--theme-grid-gutter-gutter-#{$gutter-size})); + .row { + gap: var(--theme-grid-gutter-gutter-#{$gutter-size}); } - } - @include screen-width-breakpoints($grid-sizes) using ($size) { @for $i from 1 through $grids { - .col-#{$size}-#{$i} { + .col-size-#{$i} { flex: 0 0 calculate-grid-flex-width($i, var(--theme-grid-gutter-gutter-#{$gutter-size})); } } + + @include screen-width-breakpoints($grid-sizes) using ($size) { + @for $i from 1 through $grids { + .col-#{$size}-#{$i} { + flex: 0 0 calculate-grid-flex-width($i, var(--theme-grid-gutter-gutter-#{$gutter-size})); + } + } + } } } - } - &.leanToEdge { - padding: 0; - } + &.leanToEdge { + padding: 0; + } - &:not(.fluid) { - @include screen-width-breakpoints($grid-sizes) using ($size) { - max-width: var(--theme-grid-container-#{$size}); + &:not(.fluid) { + @include screen-width-breakpoints($grid-sizes) using ($size) { + max-width: var(--theme-grid-container-#{$size}); + } } } -} -// ============================== -// Col -// ============================== -.colBase { - box-sizing: border-box; - min-width: 0; - overflow-wrap: break-word; - flex: 1 0 0; - display: flex; - .col { - width: 100%; + // ============================== + // Col + // ============================== + .colBase { + box-sizing: border-box; + min-width: 0; + overflow-wrap: break-word; + flex: 1 0 0; + display: flex; + .col { + width: 100%; + } } -} -// ============================== -// Row -// ============================== -.row { - flex-grow: 1; - display: flex; - flex-wrap: wrap; + // ============================== + // Row + // ============================== + .row { + flex-grow: 1; + display: flex; + flex-wrap: wrap; - &.start { - justify-content: flex-start; - } - &.center { - justify-content: center; - } - &.end { - justify-content: flex-end; - } - &.evenly { - justify-content: space-evenly; - } + &.start { + justify-content: flex-start; + } + &.center { + justify-content: center; + } + &.end { + justify-content: flex-end; + } + &.evenly { + justify-content: space-evenly; + } - &.colsAuto > * { - flex: initial; + &.colsAuto > * { + flex: initial; + } } } diff --git a/src/lib/components/Icon/Icon.module.scss b/src/lib/components/Icon/Icon.module.scss index ce4c155..2fb99ff 100644 --- a/src/lib/components/Icon/Icon.module.scss +++ b/src/lib/components/Icon/Icon.module.scss @@ -3,40 +3,42 @@ $variants: "primary", "secondary", "info", "success", "warning", "danger"; $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24x"), ("xl", "28x"), ("xxl", "32x")); -.Root { - display: inline-flex; - vertical-align: middle; - user-select: none; - - span, - i { - font-size: inherit; +@layer motif-ui { + .Root { + display: inline-flex; + vertical-align: middle; + user-select: none; + + span, + i { + font-size: inherit; + } } -} -@each $variant in $variants { - .#{$variant} { - color: var(--theme-color-text-#{$variant}-default); + @each $variant in $variants { + .#{$variant} { + color: var(--theme-color-text-#{$variant}-default); + } } -} -@each $size, $fontSize in $sizes { - .#{$size} { - font-size: var(--base-sizing-#{$fontSize}); + @each $size, $fontSize in $sizes { + .#{$size} { + font-size: var(--base-sizing-#{$fontSize}); - svg { - width: var(--base-sizing-#{$fontSize}); - height: var(--base-sizing-#{$fontSize}); + svg { + width: var(--base-sizing-#{$fontSize}); + height: var(--base-sizing-#{$fontSize}); + } } } -} -.stroke svg { - stroke: currentColor; - fill: transparent; -} + .stroke svg { + stroke: currentColor; + fill: transparent; + } -.fill svg { - fill: currentColor; - stroke: transparent; + .fill svg { + fill: currentColor; + stroke: transparent; + } } diff --git a/src/lib/components/IconButton/IconButton.module.scss b/src/lib/components/IconButton/IconButton.module.scss index 484dfdb..213c3a8 100644 --- a/src/lib/components/IconButton/IconButton.module.scss +++ b/src/lib/components/IconButton/IconButton.module.scss @@ -4,57 +4,59 @@ $variants: "primary", "secondary", "info", "success", "warning", "danger"; $states: "hover", "active", "disabled"; $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24x"), ("xl", "28x"), ("xxl", "32x")); -.Root { - border: 0; - background: none; - padding: 0; - -webkit-tap-highlight-color: transparent; - @include transition(color); - &:not(:disabled):hover { - cursor: pointer; +@layer motif-ui { + .Root { + border: 0; + background: none; + padding: 0; + -webkit-tap-highlight-color: transparent; + @include transition(color); + &:not(:disabled):hover { + cursor: pointer; + } } -} - -.strong { - color: var(--theme-color-text-base-global-dark); - &:hover { - color: var(--theme-color-text-base-dark-overlay75); - } - &:active { + .strong { color: var(--theme-color-text-base-global-dark); - } - &:disabled { - color: var(--theme-color-text-base-dark-overlay25); - } -} - -.negative { - color: var(--theme-color-text-base-global-light); - &:hover { - color: var(--theme-color-text-base-light-overlay75); + &:hover { + color: var(--theme-color-text-base-dark-overlay75); + } + &:active { + color: var(--theme-color-text-base-global-dark); + } + &:disabled { + color: var(--theme-color-text-base-dark-overlay25); + } } - &:active { + + .negative { color: var(--theme-color-text-base-global-light); + + &:hover { + color: var(--theme-color-text-base-light-overlay75); + } + &:active { + color: var(--theme-color-text-base-global-light); + } + &:disabled { + color: var(--theme-color-text-base-light-overly50); + } } - &:disabled { - color: var(--theme-color-text-base-light-overly50); - } -} -@each $name, $fontSize in $sizes { - .#{$name} { - font-size: var(--base-sizing-#{$fontSize}); + @each $name, $fontSize in $sizes { + .#{$name} { + font-size: var(--base-sizing-#{$fontSize}); + } } -} -@each $variant in $variants { - .#{$variant} { - color: var(--theme-color-text-#{$variant}-default); - @each $state in $states { - &:#{$state} { - color: var(--theme-color-text-#{$variant}-#{$state}); + @each $variant in $variants { + .#{$variant} { + color: var(--theme-color-text-#{$variant}-default); + @each $state in $states { + &:#{$state} { + color: var(--theme-color-text-#{$variant}-#{$state}); + } } } } diff --git a/src/lib/components/ImageView/ImageView.module.scss b/src/lib/components/ImageView/ImageView.module.scss index 14269bb..b664979 100644 --- a/src/lib/components/ImageView/ImageView.module.scss +++ b/src/lib/components/ImageView/ImageView.module.scss @@ -1,38 +1,40 @@ @use "@styles" as *; -.Root { - border-radius: var(--theme-sizing-radius-default); - overflow: hidden; -} - -.placeholder { - background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA4MCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9Ikdyb3VwIj4KPGcgaWQ9Ikdyb3VwIDEiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNNzIuMTY0NSAwSDcuODM1ODVDMy45MTExNSAwIDAuNTc3NjM3IDMuMTY1ODEgMC41Nzc2MzcgNy4yNTgyMVY1Ni43NDE4QzAuNTc3NjM3IDYwLjgzNDMgMy45MTA4NCA2NCA3LjgzNTg1IDY0SDcyLjE2NDNDNzYuMDg5MiA2NCA3OS40MjI1IDYwLjgzNDIgNzkuNDIyNSA1Ni43NDE4VjcuMjU4MjFDNzkuNDIyNyAzLjE2NTY2IDc2LjA4OTUgMCA3Mi4xNjQ1IDBaTTUuMTk3NDYgNy4yNTgyMUM1LjE5NzQ2IDUuNzgzNzIgNi4zOTI3NyA0LjYxOTgzIDcuODM1ODUgNC42MTk4M0g3Mi4xNjQzQzczLjYwNjYgNC42MTk4MyA3NC44MDI3IDUuNzgyNzkgNzQuODAyNyA3LjI1ODIxVjM2LjMyTDYzLjkwMSAyNS40MTgxQzYzLjQ2NzggMjQuOTg0OSA2Mi44ODAzIDI0Ljc0MTUgNjIuMjY3NyAyNC43NDE1QzYxLjY1NTEgMjQuNzQxNSA2MS4wNjc2IDI0Ljk4NDggNjAuNjM0NSAyNS40MTgxTDQyLjQ3NDQgNDMuNTc4NUwzNC4yMTA5IDM1LjMxNTJDMzMuMzA5IDM0LjQxMzIgMzEuODQ2MyAzNC40MTMyIDMwLjk0NDIgMzUuMzE1Mkw3LjAxMjI5IDU5LjI0N0M1Ljk2NTc0IDU4LjkwMzEgNS4xOTc0NiA1Ny45MjM1IDUuMTk3NDYgNTYuNzQxOFY3LjI1ODIxWk03Mi4xNjQ1IDU5LjM4MDJIMTMuNDEyNEwzMi41Nzc2IDQwLjIxNTFMNDAuODQxMSA0OC40Nzg1QzQxLjc0MzEgNDkuMzgwNCA0My4yMDU3IDQ5LjM4MDQgNDQuMTA3OCA0OC40Nzg1TDYyLjI2NzcgMzAuMzE4Mkw3NC44MDI4IDQyLjg1MzRWNTYuNzQxOEM3NC44MDI4IDU4LjIxNjMgNzMuNjA3NSA1OS4zODAyIDcyLjE2NDUgNTkuMzgwMloiIGZpbGw9IiNBRUI0QkEiLz4KPHBhdGggaWQ9IlZlY3Rvcl8yIiBkPSJNMjAuMjA2OCAyOS4zNjE0QzI1LjU3MzMgMjkuMzYxNCAyOS45MzkyIDI0Ljk5NTYgMjkuOTM5MiAxOS42MjkyQzI5LjkzOTIgMTQuMjYyOCAyNS41NzMzIDkuODk2NzMgMjAuMjA2OCA5Ljg5NjczQzE0Ljg0MDMgOS44OTY3MyAxMC40NzQ0IDE0LjI2MjggMTAuNDc0NCAxOS42MjkyQzEwLjQ3NDQgMjQuOTk1NiAxNC44NDAzIDI5LjM2MTQgMjAuMjA2OCAyOS4zNjE0Wk0yMC4yMDY4IDE0LjUxNjZDMjMuMDI2IDE0LjUxNjYgMjUuMzE5NCAxNi44MTAxIDI1LjMxOTQgMTkuNjI5MkMyNS4zMTk0IDIyLjQ0ODIgMjMuMDI2IDI0Ljc0MTYgMjAuMjA2OCAyNC43NDE2QzE3LjM4NzYgMjQuNzQxNiAxNS4wOTQyIDIyLjQ0OCAxNS4wOTQyIDE5LjYyOTJDMTUuMDk0MiAxNi44MSAxNy4zODc2IDE0LjUxNjYgMjAuMjA2OCAxNC41MTY2WiIgZmlsbD0iI0FFQjRCQSIvPgo8L2c+CjwvZz4KPC9zdmc+Cg=="); - background-size: 60%; - background-repeat: no-repeat; - background-position: center; -} - -.bordered { - border: solid var(--base-sizing-1x) var(--theme-color-border-secondary-default); - background-position: center; -} - -.solid { - background-color: var(--theme-color-surface-base-base3); -} - -.original { - object-fit: none; -} - -.fill { - object-fit: fill; -} - -.fit { - object-fit: contain; -} - -.fillKeepAspectRatio { - object-fit: cover; +@layer motif-ui { + .Root { + border-radius: var(--theme-sizing-radius-default); + overflow: hidden; + } + + .placeholder { + background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA4MCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9Ikdyb3VwIj4KPGcgaWQ9Ikdyb3VwIDEiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNNzIuMTY0NSAwSDcuODM1ODVDMy45MTExNSAwIDAuNTc3NjM3IDMuMTY1ODEgMC41Nzc2MzcgNy4yNTgyMVY1Ni43NDE4QzAuNTc3NjM3IDYwLjgzNDMgMy45MTA4NCA2NCA3LjgzNTg1IDY0SDcyLjE2NDNDNzYuMDg5MiA2NCA3OS40MjI1IDYwLjgzNDIgNzkuNDIyNSA1Ni43NDE4VjcuMjU4MjFDNzkuNDIyNyAzLjE2NTY2IDc2LjA4OTUgMCA3Mi4xNjQ1IDBaTTUuMTk3NDYgNy4yNTgyMUM1LjE5NzQ2IDUuNzgzNzIgNi4zOTI3NyA0LjYxOTgzIDcuODM1ODUgNC42MTk4M0g3Mi4xNjQzQzczLjYwNjYgNC42MTk4MyA3NC44MDI3IDUuNzgyNzkgNzQuODAyNyA3LjI1ODIxVjM2LjMyTDYzLjkwMSAyNS40MTgxQzYzLjQ2NzggMjQuOTg0OSA2Mi44ODAzIDI0Ljc0MTUgNjIuMjY3NyAyNC43NDE1QzYxLjY1NTEgMjQuNzQxNSA2MS4wNjc2IDI0Ljk4NDggNjAuNjM0NSAyNS40MTgxTDQyLjQ3NDQgNDMuNTc4NUwzNC4yMTA5IDM1LjMxNTJDMzMuMzA5IDM0LjQxMzIgMzEuODQ2MyAzNC40MTMyIDMwLjk0NDIgMzUuMzE1Mkw3LjAxMjI5IDU5LjI0N0M1Ljk2NTc0IDU4LjkwMzEgNS4xOTc0NiA1Ny45MjM1IDUuMTk3NDYgNTYuNzQxOFY3LjI1ODIxWk03Mi4xNjQ1IDU5LjM4MDJIMTMuNDEyNEwzMi41Nzc2IDQwLjIxNTFMNDAuODQxMSA0OC40Nzg1QzQxLjc0MzEgNDkuMzgwNCA0My4yMDU3IDQ5LjM4MDQgNDQuMTA3OCA0OC40Nzg1TDYyLjI2NzcgMzAuMzE4Mkw3NC44MDI4IDQyLjg1MzRWNTYuNzQxOEM3NC44MDI4IDU4LjIxNjMgNzMuNjA3NSA1OS4zODAyIDcyLjE2NDUgNTkuMzgwMloiIGZpbGw9IiNBRUI0QkEiLz4KPHBhdGggaWQ9IlZlY3Rvcl8yIiBkPSJNMjAuMjA2OCAyOS4zNjE0QzI1LjU3MzMgMjkuMzYxNCAyOS45MzkyIDI0Ljk5NTYgMjkuOTM5MiAxOS42MjkyQzI5LjkzOTIgMTQuMjYyOCAyNS41NzMzIDkuODk2NzMgMjAuMjA2OCA5Ljg5NjczQzE0Ljg0MDMgOS44OTY3MyAxMC40NzQ0IDE0LjI2MjggMTAuNDc0NCAxOS42MjkyQzEwLjQ3NDQgMjQuOTk1NiAxNC44NDAzIDI5LjM2MTQgMjAuMjA2OCAyOS4zNjE0Wk0yMC4yMDY4IDE0LjUxNjZDMjMuMDI2IDE0LjUxNjYgMjUuMzE5NCAxNi44MTAxIDI1LjMxOTQgMTkuNjI5MkMyNS4zMTk0IDIyLjQ0ODIgMjMuMDI2IDI0Ljc0MTYgMjAuMjA2OCAyNC43NDE2QzE3LjM4NzYgMjQuNzQxNiAxNS4wOTQyIDIyLjQ0OCAxNS4wOTQyIDE5LjYyOTJDMTUuMDk0MiAxNi44MSAxNy4zODc2IDE0LjUxNjYgMjAuMjA2OCAxNC41MTY2WiIgZmlsbD0iI0FFQjRCQSIvPgo8L2c+CjwvZz4KPC9zdmc+Cg=="); + background-size: 60%; + background-repeat: no-repeat; + background-position: center; + } + + .bordered { + border: solid var(--base-sizing-1x) var(--theme-color-border-secondary-default); + background-position: center; + } + + .solid { + background-color: var(--theme-color-surface-base-base3); + } + + .original { + object-fit: none; + } + + .fill { + object-fit: fill; + } + + .fit { + object-fit: contain; + } + + .fillKeepAspectRatio { + object-fit: cover; + } } diff --git a/src/lib/components/InputDate/InputDate.module.scss b/src/lib/components/InputDate/InputDate.module.scss index 2f76417..be45801 100644 --- a/src/lib/components/InputDate/InputDate.module.scss +++ b/src/lib/components/InputDate/InputDate.module.scss @@ -1,12 +1,14 @@ -.Root { - position: relative; - display: inline-grid; +@layer motif-ui { + .Root { + position: relative; + display: inline-grid; - .datePicker { - position: absolute; - left: 0; - top: 100%; - z-index: 1; - margin-top: var(--base-sizing-2x); + .datePicker { + position: absolute; + left: 0; + top: 100%; + z-index: 1; + margin-top: var(--base-sizing-2x); + } } } diff --git a/src/lib/components/InputDateRange/InputDateRange.module.scss b/src/lib/components/InputDateRange/InputDateRange.module.scss index d8b41bb..a4ffb45 100644 --- a/src/lib/components/InputDateRange/InputDateRange.module.scss +++ b/src/lib/components/InputDateRange/InputDateRange.module.scss @@ -1,12 +1,14 @@ -.Root { - position: relative; - display: inline-grid; -} +@layer motif-ui { + .Root { + position: relative; + display: inline-grid; + } -.dateRangePicker { - position: absolute; - left: 0; - top: 100%; - z-index: 1; - margin-top: var(--base-sizing-2x); + .dateRangePicker { + position: absolute; + left: 0; + top: 100%; + z-index: 1; + margin-top: var(--base-sizing-2x); + } } diff --git a/src/lib/components/InputDateTime/InputDateTime.module.scss b/src/lib/components/InputDateTime/InputDateTime.module.scss index a7ee542..b5c75d9 100644 --- a/src/lib/components/InputDateTime/InputDateTime.module.scss +++ b/src/lib/components/InputDateTime/InputDateTime.module.scss @@ -1,12 +1,14 @@ -.Root { - position: relative; - display: inline-grid; +@layer motif-ui { + .Root { + position: relative; + display: inline-grid; - .pickerContainer { - position: absolute; - left: 0; - top: 100%; - z-index: 1; - margin-top: var(--base-sizing-2x); + .pickerContainer { + position: absolute; + left: 0; + top: 100%; + z-index: 1; + margin-top: var(--base-sizing-2x); + } } } diff --git a/src/lib/components/InputPassword/InputPassword.module.scss b/src/lib/components/InputPassword/InputPassword.module.scss index 9831ac6..0524138 100644 --- a/src/lib/components/InputPassword/InputPassword.module.scss +++ b/src/lib/components/InputPassword/InputPassword.module.scss @@ -8,100 +8,102 @@ $sizes: ( ("lg", "20x", "10x", "24x") ); -.Root { - position: relative; - display: inline-block; - box-sizing: border-box; - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-bg-light); - @include transition(border-color); - - &:focus-within { - border-color: var(--theme-color-border-primary-default); - } - - &.pill { - border-radius: var(--theme-sizing-radius-round); - } +@layer motif-ui { + .Root { + position: relative; + display: inline-block; + box-sizing: border-box; + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-bg-light); + @include transition(border-color); - &.inFormField { - min-width: var(--base-sizing-190x); - } + &:focus-within { + border-color: var(--theme-color-border-primary-default); + } - &.error { - border-color: var(--theme-color-border-danger-default); + &.pill { + border-radius: var(--theme-sizing-radius-round); + } - .visibilityToggleIcon { - color: var(--theme-color-text-danger-default); + &.inFormField { + min-width: var(--base-sizing-190x); } - } - &.success { - border-color: var(--theme-color-border-success-default); + &.error { + border-color: var(--theme-color-border-danger-default); - .visibilityToggleIcon { - color: var(--theme-color-text-success-default); + .visibilityToggleIcon { + color: var(--theme-color-text-danger-default); + } } - } - &.disabled { - background-color: var(--theme-color-surface-base-base1); - border-color: var(--theme-color-border-light-disabled); + &.success { + border-color: var(--theme-color-border-success-default); - * { - cursor: not-allowed; + .visibilityToggleIcon { + color: var(--theme-color-text-success-default); + } } - .icon, - input { - color: var(--theme-color-text-base-disabled); - } - } + &.disabled { + background-color: var(--theme-color-surface-base-base1); + border-color: var(--theme-color-border-light-disabled); - input { - width: 100%; - box-sizing: border-box; - border: none; - outline: none; - background: transparent; - color: var(--theme-color-text-base-title); + * { + cursor: not-allowed; + } - &::placeholder { - color: var(--theme-color-text-base-caption); + .icon, + input { + color: var(--theme-color-text-base-disabled); + } } - &:focus { + input { + width: 100%; + box-sizing: border-box; + border: none; outline: none; - } - } + background: transparent; + color: var(--theme-color-text-base-title); - .icon { - position: absolute; - top: 50%; - transform: translateY(-50%); - color: var(--theme-color-text-base-caption-light); - } -} + &::placeholder { + color: var(--theme-color-text-base-caption); + } -@each $size, $paddingH, $paddingV, $iconSize in $sizes { - .#{$size} { - input { - @include font("body", $size); - padding: var(--base-sizing-#{$paddingV}) - var(--base-sizing-#{$paddingH}) - var(--base-sizing-#{$paddingV}) - calc(var(--base-sizing-#{$iconSize}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV})); - - &:not(:last-child) { - padding-right: calc(var(--base-sizing-#{$iconSize}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV})); + &:focus { + outline: none; } } - .visibilityToggleIcon { - right: var(--base-sizing-#{$paddingH}); + + .icon { + position: absolute; + top: 50%; + transform: translateY(-50%); + color: var(--theme-color-text-base-caption-light); } - span:first-child { - left: var(--base-sizing-#{$paddingH}); + } + + @each $size, $paddingH, $paddingV, $iconSize in $sizes { + .#{$size} { + input { + @include font("body", $size); + padding: var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV}) + calc(var(--base-sizing-#{$iconSize}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV})); + + &:not(:last-child) { + padding-right: calc(var(--base-sizing-#{$iconSize}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV})); + } + } + .visibilityToggleIcon { + right: var(--base-sizing-#{$paddingH}); + } + span:first-child { + left: var(--base-sizing-#{$paddingH}); + } } } } diff --git a/src/lib/components/InputText/InputText.module.scss b/src/lib/components/InputText/InputText.module.scss index 4040949..2fb91f6 100644 --- a/src/lib/components/InputText/InputText.module.scss +++ b/src/lib/components/InputText/InputText.module.scss @@ -1,3 +1,5 @@ -.Root.inFormField { - min-width: var(--base-sizing-190x); +@layer motif-ui { + .Root.inFormField { + min-width: var(--base-sizing-190x); + } } diff --git a/src/lib/components/InputTime/InputTime.module.scss b/src/lib/components/InputTime/InputTime.module.scss index e44616a..45dc37a 100644 --- a/src/lib/components/InputTime/InputTime.module.scss +++ b/src/lib/components/InputTime/InputTime.module.scss @@ -1,14 +1,16 @@ @use "@styles" as *; -.Root { - position: relative; - display: inline-grid; +@layer motif-ui { + .Root { + position: relative; + display: inline-grid; - .timePicker { - position: absolute; - left: 0; - top: 100%; - z-index: 1; - margin-top: var(--base-sizing-2x); + .timePicker { + position: absolute; + left: 0; + top: 100%; + z-index: 1; + margin-top: var(--base-sizing-2x); + } } } diff --git a/src/lib/components/Link/Link.module.scss b/src/lib/components/Link/Link.module.scss index 6cbc466..650a609 100644 --- a/src/lib/components/Link/Link.module.scss +++ b/src/lib/components/Link/Link.module.scss @@ -2,48 +2,51 @@ $sizes: (("sm", "4x"), ("md", "6x"), ("lg", "8x")); $state: ("default", "disabled", "active", "hover"); -@each $name, $gap in $sizes { - .#{$name} { - gap: var(--base-sizing-#{$gap}); - @include font("base", $name, "500"); - } -} -.Root { - display: inline-flex; - align-items: center; - cursor: pointer; - color: var(--theme-color-text-primary-default); - vertical-align: middle; - &.rightIcon { - flex-direction: row-reverse; - } - &.leftIcon { - flex-direction: row; +@layer motif-ui { + @each $name, $gap in $sizes { + .#{$name} { + gap: var(--base-sizing-#{$gap}); + @include font("base", $name, "500"); + } } - .icon { + + .Root { + display: inline-flex; + align-items: center; + cursor: pointer; color: var(--theme-color-text-primary-default); - } - &:hover, - &:hover .icon { - color: var(--theme-color-text-primary-hover); - } + vertical-align: middle; + &.rightIcon { + flex-direction: row-reverse; + } + &.leftIcon { + flex-direction: row; + } + .icon { + color: var(--theme-color-text-primary-default); + } + &:hover, + &:hover .icon { + color: var(--theme-color-text-primary-hover); + } - &:focus, - &:focus .icon { - color: var(--theme-color-text-primary-active); - outline: none; - } + &:focus, + &:focus .icon { + color: var(--theme-color-text-primary-active); + outline: none; + } - &.disabled, - &.disabled .icon { - pointer-events: none; - color: var(--theme-color-text-primary-disabled); - } + &.disabled, + &.disabled .icon { + pointer-events: none; + color: var(--theme-color-text-primary-disabled); + } - &.underline { - .label { - text-decoration: underline; + &.underline { + .label { + text-decoration: underline; + } } } } diff --git a/src/lib/components/ListView/ListView.module.scss b/src/lib/components/ListView/ListView.module.scss index 69286d5..b06a91a 100644 --- a/src/lib/components/ListView/ListView.module.scss +++ b/src/lib/components/ListView/ListView.module.scss @@ -1,157 +1,160 @@ @use "@styles" as *; $list-item-sizes: (("sm", "xs", "2x", "16x", "8x", "24x"), ("md", "sm", "2x", "16x", "12x", "32x"), ("lg", "md", "4x", "20x", "16x", "40x")); -@each $size, $alternateTextS, $gap, $spaceH, $paddingV, $avatarSize in $list-item-sizes { - .#{$size} { - .baseContent { - gap: var(--base-sizing-#{$spaceH}); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$spaceH}); - } - .leftContent, - .image img { - width: var(--base-sizing-#{$avatarSize}); - height: var(--base-sizing-#{$avatarSize}); - } - .abbr { - @include font("base", $size, "600"); - } - .centerContent { - gap: var(--base-sizing-#{$gap}); - } - .alternateText { - @include font("body", $alternateTextS); + +@layer motif-ui { + @each $size, $alternateTextS, $gap, $spaceH, $paddingV, $avatarSize in $list-item-sizes { + .#{$size} { + .baseContent { + gap: var(--base-sizing-#{$spaceH}); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$spaceH}); + } + .leftContent, + .image img { + width: var(--base-sizing-#{$avatarSize}); + height: var(--base-sizing-#{$avatarSize}); + } + .abbr { + @include font("base", $size, "600"); + } + .centerContent { + gap: var(--base-sizing-#{$gap}); + } + .alternateText { + @include font("body", $alternateTextS); + } + .title { + @include font("base", $size, "500"); + } + .description { + @include font("body", $size); + } } - .title { - @include font("base", $size, "500"); + } + + .Root { + padding: 0; + list-style: none; + } + + // ============================================================================= + // List Item + // ============================================================================= + + .listItem { + list-style: none; + padding: 0; + &.divider:not(:last-child) { + border-bottom: var(--base-sizing-1x) solid var(--theme-color-border-secondary-default); } - .description { - @include font("body", $size); + + &.link, + &.button { + .baseContent { + cursor: pointer; + text-decoration: none; + @include focus-ring; + @include transition(background-color); + } + &:hover .baseContent { + background-color: var(--theme-color-surface-base-base2); + } } } -} -.Root { - padding: 0; - list-style: none; -} + .centerContent > span { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + } -// ============================================================================= -// List Item -// ============================================================================= + .multiLine .centerContent > span { + overflow: visible; + white-space: normal; + text-overflow: clip; + } -.listItem { - list-style: none; - padding: 0; - &.divider:not(:last-child) { - border-bottom: var(--base-sizing-1x) solid var(--theme-color-border-secondary-default); + .baseContent { + display: flex; + justify-content: stretch; + align-items: center; + background-color: var(--theme-color-surface-base-global-light); + overflow: hidden; } - &.link, - &.button { - .baseContent { - cursor: pointer; - text-decoration: none; - @include focus-ring; - @include transition(background-color); + .disabled { + pointer-events: none; + cursor: default; + .iconRight { + color: var(--theme-color-text-secondary-disabled); + } + .icon { + color: var(--theme-color-surface-base-base6); + } + .image { + filter: grayscale(100%); + opacity: 0.6; + } + span { + color: var(--theme-color-text-base-disabled-light); } - &:hover .baseContent { - background-color: var(--theme-color-surface-base-base2); + .avatar.abbr { + background-color: var(--theme-color-surface-base-base6); } } -} - -.centerContent > span { - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; -} -.multiLine .centerContent > span { - overflow: visible; - white-space: normal; - text-overflow: clip; -} - -.baseContent { - display: flex; - justify-content: stretch; - align-items: center; - background-color: var(--theme-color-surface-base-global-light); - overflow: hidden; -} + // ============================================================================= + // Left Content + // ============================================================================= -.disabled { - pointer-events: none; - cursor: default; - .iconRight { - color: var(--theme-color-text-secondary-disabled); + .leftContent { + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; } + .icon { - color: var(--theme-color-surface-base-base6); - } - .image { - filter: grayscale(100%); - opacity: 0.6; - } - span { - color: var(--theme-color-text-base-disabled-light); + color: var(--theme-color-text-secondary-default); } - .avatar.abbr { - background-color: var(--theme-color-surface-base-base6); - } -} - -// ============================================================================= -// Left Content -// ============================================================================= - -.leftContent { - display: flex; - align-items: center; - justify-content: center; - overflow: hidden; -} - -.icon { - color: var(--theme-color-text-secondary-default); -} - -.abbr { - color: var(--theme-color-text-secondary-default); - text-transform: uppercase; -} -.avatar { - border-radius: var(--theme-sizing-radius-round); - &.icon, - &.image { - background-color: var(--theme-color-surface-base-base5); + .abbr { + color: var(--theme-color-text-secondary-default); + text-transform: uppercase; } - &.abbr { - background-color: var(--theme-color-surface-base-base7); - color: var(--theme-color-text-base-text-light); + + .avatar { + border-radius: var(--theme-sizing-radius-round); + &.icon, + &.image { + background-color: var(--theme-color-surface-base-base5); + } + &.abbr { + background-color: var(--theme-color-surface-base-base7); + color: var(--theme-color-text-base-text-light); + } } -} -// ============================================================================= -// Center Content -// ============================================================================= + // ============================================================================= + // Center Content + // ============================================================================= -.centerContent { - display: flex; - flex-direction: column; - flex: 1; - overflow: hidden; -} + .centerContent { + display: flex; + flex-direction: column; + flex: 1; + overflow: hidden; + } -.alternateText { - color: var(--theme-color-text-base-caption-light); -} + .alternateText { + color: var(--theme-color-text-base-caption-light); + } -.title { - color: var(--theme-color-text-base-title-light); -} + .title { + color: var(--theme-color-text-base-title-light); + } -.description { - color: var(--theme-color-text-base-subtitle-light); + .description { + color: var(--theme-color-text-base-subtitle-light); + } } diff --git a/src/lib/components/MenuList/MenuList.module.scss b/src/lib/components/MenuList/MenuList.module.scss index fdc4c53..2c70ee2 100644 --- a/src/lib/components/MenuList/MenuList.module.scss +++ b/src/lib/components/MenuList/MenuList.module.scss @@ -10,272 +10,274 @@ $sizes: ( // Main Menu // ============================================================================= -.Root { - display: flex; - flex-direction: column; - gap: var(--base-sizing-36x); - height: 100%; - box-sizing: border-box; - padding: var(--base-sizing-16x); - background-color: var(--theme-color-surface-base-bg-light); - - &:not(.collapsed) { - @each $size, $value in $sizes { - &.#{$size} { - width: $value; - min-width: $value; - max-width: $value; +@layer motif-ui { + .Root { + display: flex; + flex-direction: column; + gap: var(--base-sizing-36x); + height: 100%; + box-sizing: border-box; + padding: var(--base-sizing-16x); + background-color: var(--theme-color-surface-base-bg-light); + + &:not(.collapsed) { + @each $size, $value in $sizes { + &.#{$size} { + width: $value; + min-width: $value; + max-width: $value; + } + } + .mainMenu { + overflow-y: scroll; } - } - .mainMenu { - overflow-y: scroll; } } -} -.mainMenu { - &, - ul { - padding: 0; - margin: 0; - list-style: none; - flex: 1; + .mainMenu { + &, + ul { + padding: 0; + margin: 0; + list-style: none; + flex: 1; + } } -} -.logoContainer { - height: var(--base-sizing-48x); - display: flex; - align-items: center; - gap: var(--base-sizing-10x); - justify-content: flex-end; -} + .logoContainer { + height: var(--base-sizing-48x); + display: flex; + align-items: center; + gap: var(--base-sizing-10x); + justify-content: flex-end; + } -.logo { - padding: var(--base-sizing-4x); - box-sizing: border-box; - height: 100%; - width: 100%; - object-fit: contain; - object-position: left; -} + .logo { + padding: var(--base-sizing-4x); + box-sizing: border-box; + height: 100%; + width: 100%; + object-fit: contain; + object-position: left; + } -.footerText { - @include font("body", "xxs"); - color: var(--theme-color-text-base-caption-light); - white-space: nowrap; -} + .footerText { + @include font("body", "xxs"); + color: var(--theme-color-text-base-caption-light); + white-space: nowrap; + } -.collapsed { - width: fit-content; + .collapsed { + width: fit-content; - .logoContainer { - justify-content: center; - } + .logoContainer { + justify-content: center; + } - .subMenu { - background-color: var(--theme-color-surface-base-bg-light); - &.firstLevel { - position: absolute; - z-index: 1; - left: calc(100% + var(--base-sizing-16x)); - top: 0; - padding: var(--base-sizing-8x); - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - border-left: solid var(--base-sizing-2x) var(--theme-color-border-primary-default); - @include shadow(3); - min-width: var(--base-sizing-128x); - - &::before { - content: " "; + .subMenu { + background-color: var(--theme-color-surface-base-bg-light); + &.firstLevel { position: absolute; - left: calc(-1 * var(--base-sizing-12x)); - top: var(--base-sizing-16x); - border-top: solid var(--base-sizing-6x) transparent; - border-right: solid var(--base-sizing-10x) var(--theme-color-surface-primary-default); - border-bottom: solid var(--base-sizing-6x) transparent; + z-index: 1; + left: calc(100% + var(--base-sizing-16x)); + top: 0; + padding: var(--base-sizing-8x); + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + border-left: solid var(--base-sizing-2x) var(--theme-color-border-primary-default); + @include shadow(3); + min-width: var(--base-sizing-128x); + + &::before { + content: " "; + position: absolute; + left: calc(-1 * var(--base-sizing-12x)); + top: var(--base-sizing-16x); + border-top: solid var(--base-sizing-6x) transparent; + border-right: solid var(--base-sizing-10x) var(--theme-color-surface-primary-default); + border-bottom: solid var(--base-sizing-6x) transparent; + } } } } -} -// ============================================================================= -// Sub Menu -// ============================================================================= + // ============================================================================= + // Sub Menu + // ============================================================================= -.subMenu { - padding: 0; - margin: 0; - list-style: none; -} + .subMenu { + padding: 0; + margin: 0; + list-style: none; + } -// ============================================================================= -// Collapse Button -// ============================================================================= + // ============================================================================= + // Collapse Button + // ============================================================================= -.collapseButton { - all: unset; - display: flex; - width: var(--base-sizing-36x); - min-width: var(--base-sizing-36x); - height: var(--base-sizing-36x); - box-sizing: border-box; - align-items: center; - justify-content: center; - border-radius: var(--theme-sizing-radius-default); - cursor: pointer; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - @include transition(border-color); - - path { - @include transition(fill); - fill: var(--theme-color-text-base-caption); - } + .collapseButton { + all: unset; + display: flex; + width: var(--base-sizing-36x); + min-width: var(--base-sizing-36x); + height: var(--base-sizing-36x); + box-sizing: border-box; + align-items: center; + justify-content: center; + border-radius: var(--theme-sizing-radius-default); + cursor: pointer; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + @include transition(border-color); - &:hover { - border-color: var(--theme-color-border-primary-default); path { - fill: var(--theme-color-text-primary-default); + @include transition(fill); + fill: var(--theme-color-text-base-caption); } - } -} -// ============================================================================= -// Menu Item -// ============================================================================= + &:hover { + border-color: var(--theme-color-border-primary-default); + path { + fill: var(--theme-color-text-primary-default); + } + } + } -.menuItemContainer { - position: relative; -} + // ============================================================================= + // Menu Item + // ============================================================================= -.menuItem { - display: flex; - width: auto; - text-decoration: none; - align-items: center; - padding: var(--base-sizing-12x); - gap: var(--base-sizing-8x); - user-select: none; - color: var(--theme-color-text-base-title-light); - @include transition(background-color border-bottom-color color, "fast"); - - .label { - display: inline-flex; - gap: var(--base-sizing-8x); - flex: 1; - align-items: center; - } - .arrowIcon { - @include transition(transform, "fast"); - } - &.subMenuOpen .arrowIcon { - transform: rotate(180deg); - } - &:not(.disabled, .active):hover { - cursor: pointer; - } - &.active { - pointer-events: none; - } - &.disabled { - color: var(--theme-color-text-light-disabled); - pointer-events: none; + .menuItemContainer { + position: relative; } - .solid & { - border-radius: var(--theme-sizing-radius-default); - &:hover { - background-color: var(--theme-color-surface-light-default); - color: var(--theme-color-border-primary-default); + .menuItem { + display: flex; + width: auto; + text-decoration: none; + align-items: center; + padding: var(--base-sizing-12x); + gap: var(--base-sizing-8x); + user-select: none; + color: var(--theme-color-text-base-title-light); + @include transition(background-color border-bottom-color color, "fast"); + + .label { + display: inline-flex; + gap: var(--base-sizing-8x); + flex: 1; + align-items: center; } - &.active { - background-color: var(--theme-color-surface-primary-default); - color: var(--theme-color-text-base-global-light); + .arrowIcon { + @include transition(transform, "fast"); } - } - .underline & { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - &:hover, - &.active { - border-bottom-color: var(--theme-color-border-primary-default); - color: var(--theme-color-text-primary-default); + &.subMenuOpen .arrowIcon { + transform: rotate(180deg); + } + &:not(.disabled, .active):hover { + cursor: pointer; } - } - .textOnly & { - &:hover, &.active { - color: var(--theme-color-text-primary-default); + pointer-events: none; + } + &.disabled { + color: var(--theme-color-text-light-disabled); + pointer-events: none; + } + + .solid & { + border-radius: var(--theme-sizing-radius-default); + &:hover { + background-color: var(--theme-color-surface-light-default); + color: var(--theme-color-border-primary-default); + } + &.active { + background-color: var(--theme-color-surface-primary-default); + color: var(--theme-color-text-base-global-light); + } + } + .underline & { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + &:hover, + &.active { + border-bottom-color: var(--theme-color-border-primary-default); + color: var(--theme-color-text-primary-default); + } + } + .textOnly & { + &:hover, + &.active { + color: var(--theme-color-text-primary-default); + } } } -} -.mainMenuItem { - @include font; -} + .mainMenuItem { + @include font; + } -.subMenuItem { - @include font("body", "md"); + .subMenuItem { + @include font("body", "md"); - &.expanded { - padding-left: var(--base-sizing-40x); - &.nestedSubMenuItem { - padding-left: var(--base-sizing-56x); + &.expanded { + padding-left: var(--base-sizing-40x); + &.nestedSubMenuItem { + padding-left: var(--base-sizing-56x); + } + } + &.collapsed.nestedSubMenuItem { + padding-left: var(--base-sizing-40x); } } - &.collapsed.nestedSubMenuItem { - padding-left: var(--base-sizing-40x); - } -} -/////////////// -// DARK PART // -/////////////// -.dark { - background: var(--theme-color-surface-secondary-default); - color: var(--theme-color-text-base-global-light); + /////////////// + // DARK PART // + /////////////// + .dark { + background: var(--theme-color-surface-secondary-default); + color: var(--theme-color-text-base-global-light); - .collapseButton { - border-color: var(--theme-color-border-light-active); - path { - fill: var(--theme-color-text-base-global-light); - } - &:hover { - border-color: var(--theme-color-text-primary-disabled); + .collapseButton { + border-color: var(--theme-color-border-light-active); path { - fill: var(--theme-color-text-primary-disabled); + fill: var(--theme-color-text-base-global-light); + } + &:hover { + border-color: var(--theme-color-text-primary-disabled); + path { + fill: var(--theme-color-text-primary-disabled); + } } } - } - .subMenu { - background-color: var(--theme-color-surface-secondary-default); - } + .subMenu { + background-color: var(--theme-color-surface-secondary-default); + } - &.solid .menuItem:hover { - background-color: var(--theme-color-surface-secondary-hover); - color: var(--theme-color-text-base-global-light); - } - &.underline .menuItem { - border-color: var(--theme-color-border-light-active); - &:hover, - &.active { - color: var(--theme-color-text-primary-disabled); - border-bottom-color: var(--theme-color-border-primary-default); + &.solid .menuItem:hover { + background-color: var(--theme-color-surface-secondary-hover); + color: var(--theme-color-text-base-global-light); } - } - .textOnly .menuItem { - &:hover, - &.active { - color: var(--theme-color-text-primary-disabled); + &.underline .menuItem { + border-color: var(--theme-color-border-light-active); + &:hover, + &.active { + color: var(--theme-color-text-primary-disabled); + border-bottom-color: var(--theme-color-border-primary-default); + } + } + .textOnly .menuItem { + &:hover, + &.active { + color: var(--theme-color-text-primary-disabled); + } } - } - &.disabled { - color: var(--theme-color-text-base-disabled); - } + &.disabled { + color: var(--theme-color-text-base-disabled); + } - .footerText { - color: var(--theme-color-text-base-disabled-light); + .footerText { + color: var(--theme-color-text-base-disabled-light); + } } } diff --git a/src/lib/components/Modal/Modal.module.scss b/src/lib/components/Modal/Modal.module.scss index 1bfd637..8c4ed8f 100644 --- a/src/lib/components/Modal/Modal.module.scss +++ b/src/lib/components/Modal/Modal.module.scss @@ -9,129 +9,131 @@ $sizes: ( ("xl", "960x") ); -.Root { - position: fixed; - inset: 0; - width: 100%; - height: 100%; - min-height: 100%; - background-color: var(--base-colors-black-black-overlay50); - display: flex; - z-index: 999; - @include fade-default; - - &.show { - @include fade-in; - } +@layer motif-ui { + .Root { + position: fixed; + inset: 0; + width: 100%; + height: 100%; + min-height: 100%; + background-color: var(--base-colors-black-black-overlay50); + display: flex; + z-index: 999; + @include fade-default; + + &.show { + @include fade-in; + } + + // Size classes at root level + @each $size, $width in $sizes { + &.#{$size} .modal { + width: var(--base-sizing-#{$width}); + } + } - // Size classes at root level - @each $size, $width in $sizes { - &.#{$size} .modal { - width: var(--base-sizing-#{$width}); + // Maximized class at root level + &.maximized .modal { + width: calc(100% - $side-space); + height: calc(100% - $side-space); + max-width: none; + max-height: none; } } - // Maximized class at root level - &.maximized .modal { - width: calc(100% - $side-space); - height: calc(100% - $side-space); - max-width: none; - max-height: none; + .modal { + display: flex; + flex-direction: column; + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + background: white; + color: black; + border-radius: var(--theme-sizing-radius-default); + @include shadow(4); + height: auto; + max-width: calc(100% - $side-space); + max-height: 100%; + overflow: hidden; + transform-origin: left top; + @include pop-default; } -} -.modal { - display: flex; - flex-direction: column; - position: fixed; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - background: white; - color: black; - border-radius: var(--theme-sizing-radius-default); - @include shadow(4); - height: auto; - max-width: calc(100% - $side-space); - max-height: 100%; - overflow: hidden; - transform-origin: left top; - @include pop-default; -} + .show .modal { + @include pop-in; + } -.show .modal { - @include pop-in; -} + .content { + padding: var(--base-sizing-16x); + min-height: var(--base-sizing-64x); + height: 100%; + overflow-y: auto; -.content { - padding: var(--base-sizing-16x); - min-height: var(--base-sizing-64x); - height: 100%; - overflow-y: auto; + .noContentPadding & { + padding: 0; + } - .noContentPadding & { - padding: 0; - } + &::-webkit-scrollbar { + width: var(--base-sizing-8x); + } - &::-webkit-scrollbar { - width: var(--base-sizing-8x); - } + &::-webkit-scrollbar-track { + background: #f1f1f1; + margin: var(--base-sizing-1x) 0; + border-radius: var(--theme-sizing-radius-default); + } - &::-webkit-scrollbar-track { - background: #f1f1f1; - margin: var(--base-sizing-1x) 0; - border-radius: var(--theme-sizing-radius-default); + &::-webkit-scrollbar-thumb { + background: var(--base-colors-black-black-overlay25); + border-radius: var(--theme-sizing-radius-default); + } } - &::-webkit-scrollbar-thumb { - background: var(--base-colors-black-black-overlay25); - border-radius: var(--theme-sizing-radius-default); + .closeButton { + position: absolute; + top: var(--base-sizing-16x); + right: var(--base-sizing-16x); } -} -.closeButton { - position: absolute; - top: var(--base-sizing-16x); - right: var(--base-sizing-16x); -} + // ============================================================================= + // Sub Component: Header + // ============================================================================= -// ============================================================================= -// Sub Component: Header -// ============================================================================= + .header { + display: flex; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + align-items: flex-start; + } -.header { - display: flex; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - align-items: flex-start; -} + .headerContent { + flex: 1; + gap: var(--base-sizing-4x); + overflow-wrap: break-word; -.headerContent { - flex: 1; - gap: var(--base-sizing-4x); - overflow-wrap: break-word; + .headerTitle { + display: block; + color: var(--theme-color-text-base-title); + @include font("heading", "heading4"); + } - .headerTitle { - display: block; - color: var(--theme-color-text-base-title); - @include font("heading", "heading4"); + .headerSubtitle { + display: block; + color: var(--theme-color-text-base-caption); + @include font("body", "lg"); + } } - .headerSubtitle { - display: block; - color: var(--theme-color-text-base-caption); - @include font("body", "lg"); + // Modal Actions Styles + .actions { + display: flex; + flex-wrap: wrap; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + justify-content: flex-end; + flex-shrink: 0; + border-top: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); } } - -// Modal Actions Styles -.actions { - display: flex; - flex-wrap: wrap; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - justify-content: flex-end; - flex-shrink: 0; - border-top: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); -} diff --git a/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.module.scss b/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.module.scss index 75a8304..5c1d720 100644 --- a/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.module.scss +++ b/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.module.scss @@ -1,15 +1,17 @@ @use "@styles" as *; -.Root { - display: inline-flex; - align-items: center; +@layer motif-ui { + .Root { + display: inline-flex; + align-items: center; - > :not(svg) { - font-size: 1em; - } + > :not(svg) { + font-size: 1em; + } - > svg { - width: 1em; - height: 1em; + > svg { + width: 1em; + height: 1em; + } } } diff --git a/src/lib/components/Motif/Icon/MotifIcon.module.scss b/src/lib/components/Motif/Icon/MotifIcon.module.scss index 6a9c694..7f73cca 100644 --- a/src/lib/components/Motif/Icon/MotifIcon.module.scss +++ b/src/lib/components/Motif/Icon/MotifIcon.module.scss @@ -1,144 +1,146 @@ -@font-face { - font-family: motif-icons-default; - src: - url("./assets/fonts/motif-icons-default.woff2") format("woff2"), - url("./assets/fonts/motif-icons-default.woff") format("woff"), - url("./assets/fonts/motif-icons-default.ttf") format("truetype"); - font-weight: normal; - font-style: normal; - font-display: block; -} +@layer motif-ui { + @font-face { + font-family: motif-icons-default; + src: + url("./assets/fonts/motif-icons-default.woff2") format("woff2"), + url("./assets/fonts/motif-icons-default.woff") format("woff"), + url("./assets/fonts/motif-icons-default.ttf") format("truetype"); + font-weight: normal; + font-style: normal; + font-display: block; + } -.motifIconsDefault { - font-family: motif-icons-default, serif !important; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; + .motifIconsDefault { + font-family: motif-icons-default, serif !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; - letter-spacing: 0; - font-feature-settings: "liga"; - font-variant-ligatures: discretionary-ligatures; + letter-spacing: 0; + font-feature-settings: "liga"; + font-variant-ligatures: discretionary-ligatures; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.motif_icon_d_motif_ui::before { - content: "\e926"; -} -.motif_icon_d_undo::before { - content: "\e924"; -} -.motif_icon_d_redo::before { - content: "\e925"; -} -.motif_icon_d_add::before { - content: "\e921"; -} -.motif_icon_d_calendar_expand_horizontal::before { - content: "\e920"; -} -.motif_icon_d_external::before { - content: "\e91f"; -} -.motif_icon_d_autorenew::before { - content: "\e91e"; -} -.motif_icon_d_cancel_outline::before { - content: "\e918"; -} -.motif_icon_d_cancel::before { - content: "\e919"; -} -.motif_icon_d_expand_all::before { - content: "\e91a"; -} -.motif_icon_d_keyboard_arrow_up::before { - content: "\e91b"; -} -.motif_icon_d_density_medium::before { - content: "\e91c"; -} -.motif_icon_d_delete::before { - content: "\e91d"; -} -.motif_icon_d_arrow_back::before { - content: "\e90f"; -} -.motif_icon_d_arrow_drop_down::before { - content: "\e90d"; -} -.motif_icon_d_arrow_forward::before { - content: "\e90e"; -} -.motif_icon_d_arrow_forward_ios::before { - content: "\e910"; -} -.motif_icon_d_attach_file::before { - content: "\e908"; -} -.motif_icon_d_calendar_month::before { - content: "\e90c"; -} -.motif_icon_d_check::before { - content: "\e909"; -} -.motif_icon_d_check_circle::before { - content: "\e904"; -} -.motif_icon_d_close::before { - content: "\e914"; -} -.motif_icon_d_error::before { - content: "\e905"; -} -.motif_icon_d_event::before { - content: "\e90b"; -} -.motif_icon_d_home::before { - content: "\e901"; -} -.motif_icon_d_imagesmode::before { - content: "\e912"; -} -.motif_icon_d_info::before { - content: "\e902"; -} -.motif_icon_d_keyboard_arrow_down::before { - content: "\e913"; -} -.motif_icon_d_person::before { - content: "\e911"; -} -.motif_icon_d_schedule::before { - content: "\e90a"; -} -.motif_icon_d_search::before { - content: "\e906"; -} -.motif_icon_d_upload_2::before { - content: "\e903"; -} -.motif_icon_d_upload_file::before { - content: "\e907"; -} -.motif_icon_d_visibility::before { - content: "\e915"; -} -.motif_icon_d_visibility_off::before { - content: "\e916"; -} -.motif_icon_d_vpn_key::before { - content: "\e917"; -} -.motif_icon_d_warning::before { - content: "\e900"; -} -.motif_icon_d_zoom_out::before { - content: "\e922"; -} -.motif_icon_d_zoom_in::before { - content: "\e923"; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + .motif_icon_d_motif_ui::before { + content: "\e926"; + } + .motif_icon_d_undo::before { + content: "\e924"; + } + .motif_icon_d_redo::before { + content: "\e925"; + } + .motif_icon_d_add::before { + content: "\e921"; + } + .motif_icon_d_calendar_expand_horizontal::before { + content: "\e920"; + } + .motif_icon_d_external::before { + content: "\e91f"; + } + .motif_icon_d_autorenew::before { + content: "\e91e"; + } + .motif_icon_d_cancel_outline::before { + content: "\e918"; + } + .motif_icon_d_cancel::before { + content: "\e919"; + } + .motif_icon_d_expand_all::before { + content: "\e91a"; + } + .motif_icon_d_keyboard_arrow_up::before { + content: "\e91b"; + } + .motif_icon_d_density_medium::before { + content: "\e91c"; + } + .motif_icon_d_delete::before { + content: "\e91d"; + } + .motif_icon_d_arrow_back::before { + content: "\e90f"; + } + .motif_icon_d_arrow_drop_down::before { + content: "\e90d"; + } + .motif_icon_d_arrow_forward::before { + content: "\e90e"; + } + .motif_icon_d_arrow_forward_ios::before { + content: "\e910"; + } + .motif_icon_d_attach_file::before { + content: "\e908"; + } + .motif_icon_d_calendar_month::before { + content: "\e90c"; + } + .motif_icon_d_check::before { + content: "\e909"; + } + .motif_icon_d_check_circle::before { + content: "\e904"; + } + .motif_icon_d_close::before { + content: "\e914"; + } + .motif_icon_d_error::before { + content: "\e905"; + } + .motif_icon_d_event::before { + content: "\e90b"; + } + .motif_icon_d_home::before { + content: "\e901"; + } + .motif_icon_d_imagesmode::before { + content: "\e912"; + } + .motif_icon_d_info::before { + content: "\e902"; + } + .motif_icon_d_keyboard_arrow_down::before { + content: "\e913"; + } + .motif_icon_d_person::before { + content: "\e911"; + } + .motif_icon_d_schedule::before { + content: "\e90a"; + } + .motif_icon_d_search::before { + content: "\e906"; + } + .motif_icon_d_upload_2::before { + content: "\e903"; + } + .motif_icon_d_upload_file::before { + content: "\e907"; + } + .motif_icon_d_visibility::before { + content: "\e915"; + } + .motif_icon_d_visibility_off::before { + content: "\e916"; + } + .motif_icon_d_vpn_key::before { + content: "\e917"; + } + .motif_icon_d_warning::before { + content: "\e900"; + } + .motif_icon_d_zoom_out::before { + content: "\e922"; + } + .motif_icon_d_zoom_in::before { + content: "\e923"; + } } diff --git a/src/lib/components/Motif/InputText/InputText.module.scss b/src/lib/components/Motif/InputText/InputText.module.scss index 157c99a..d3f32e8 100644 --- a/src/lib/components/Motif/InputText/InputText.module.scss +++ b/src/lib/components/Motif/InputText/InputText.module.scss @@ -3,126 +3,128 @@ // size, horizontalPadding, verticalPadding $sizes: (("xs", "8x", "4x"), ("sm", "12x", "6x"), ("md", "16x", "8x"), ("lg", "20x", "10x")); -.Root { - position: relative; - display: inline-flex; - align-items: center; - box-sizing: border-box; - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-bg-light); - @include transition(border-color); - - &:focus-within { - border-color: var(--theme-color-border-primary-default); - } - - input { - flex: 1; +@layer motif-ui { + .Root { + position: relative; + display: inline-flex; + align-items: center; box-sizing: border-box; - border: none; - outline: none; - padding: 0; - background: transparent; - color: var(--theme-color-text-base-title); - - &::placeholder { - color: var(--theme-color-text-base-caption); + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-bg-light); + @include transition(border-color); + + &:focus-within { + border-color: var(--theme-color-border-primary-default); } - &:focus { + + input { + flex: 1; + box-sizing: border-box; + border: none; outline: none; - } + padding: 0; + background: transparent; + color: var(--theme-color-text-base-title); + + &::placeholder { + color: var(--theme-color-text-base-caption); + } + &:focus { + outline: none; + } - &[type="number"] { - appearance: textfield; - &::-webkit-inner-spin-button, - &::-webkit-outer-spin-button { - appearance: none; + &[type="number"] { + appearance: textfield; + &::-webkit-inner-spin-button, + &::-webkit-outer-spin-button { + appearance: none; + } } } } -} - -.pill { - border-radius: var(--theme-sizing-radius-round); -} - -.inFormField { - min-width: var(--base-sizing-190x); -} -.icon { - color: var(--theme-color-text-base-caption-light); -} - -.error { - border-color: var(--theme-color-border-danger-default); - .icon.icon-right { - color: var(--theme-color-text-danger-default); + .pill { + border-radius: var(--theme-sizing-radius-round); } -} -.success { - border-color: var(--theme-color-border-success-default); - .icon.icon-right { - color: var(--theme-color-text-success-default); + .inFormField { + min-width: var(--base-sizing-190x); } -} -.disabled, -.readOnly { - pointer-events: none; - border-color: var(--theme-color-border-light-disabled); - background-color: var(--theme-color-surface-base-base1); - - .icon, - input { - color: var(--theme-color-text-base-disabled); - } - .numberButtons button { - color: var(--theme-color-text-base-disabled); - background-color: var(--theme-color-surface-base-base3); + .icon { + color: var(--theme-color-text-base-caption-light); } -} -.numberButtons { - display: flex; - align-self: stretch; - flex-direction: column; - button { - all: unset; - @include transition(background-color); - @include flex-center; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-light-default); - flex: 1; - &:first-child { - border-top-right-radius: var(--theme-sizing-radius-default); + .error { + border-color: var(--theme-color-border-danger-default); + .icon.icon-right { + color: var(--theme-color-text-danger-default); } - &:last-child { - border-bottom-right-radius: var(--theme-sizing-radius-default); - } - &:hover { - background-color: var(--theme-color-surface-light-hover); + } + + .success { + border-color: var(--theme-color-border-success-default); + .icon.icon-right { + color: var(--theme-color-text-success-default); } } -} -@each $size, $paddingH, $paddingV in $sizes { - .#{$size} { - gap: var(--base-sizing-#{$paddingV}); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + .disabled, + .readOnly { + pointer-events: none; + border-color: var(--theme-color-border-light-disabled); + background-color: var(--theme-color-surface-base-base1); + .icon, input { - @include font("body", $size); + color: var(--theme-color-text-base-disabled); + } + .numberButtons button { + color: var(--theme-color-text-base-disabled); + background-color: var(--theme-color-surface-base-base3); + } + } + + .numberButtons { + display: flex; + align-self: stretch; + flex-direction: column; + button { + all: unset; + @include transition(background-color); + @include flex-center; + color: var(--theme-color-text-base-subtitle); + background-color: var(--theme-color-surface-light-default); + flex: 1; + &:first-child { + border-top-right-radius: var(--theme-sizing-radius-default); + } + &:last-child { + border-bottom-right-radius: var(--theme-sizing-radius-default); + } + &:hover { + background-color: var(--theme-color-surface-light-hover); + } } + } + + @each $size, $paddingH, $paddingV in $sizes { + .#{$size} { + gap: var(--base-sizing-#{$paddingV}); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - .numberButtons { - width: calc(2 * var(--base-sizing-#{$paddingH})); - margin: calc(-1 * var(--base-sizing-#{$paddingV})) calc(-1 * var(--base-sizing-#{$paddingH})) calc(-1 * var(--base-sizing-#{$paddingV})) 0; - button { + input { @include font("body", $size); - line-height: 1; + } + + .numberButtons { + width: calc(2 * var(--base-sizing-#{$paddingH})); + margin: calc(-1 * var(--base-sizing-#{$paddingV})) calc(-1 * var(--base-sizing-#{$paddingH})) calc(-1 * var(--base-sizing-#{$paddingV})) 0; + button { + @include font("body", $size); + line-height: 1; + } } } } diff --git a/src/lib/components/Motif/Pickers/Picker.module.scss b/src/lib/components/Motif/Pickers/Picker.module.scss index 6858626..c353a18 100644 --- a/src/lib/components/Motif/Pickers/Picker.module.scss +++ b/src/lib/components/Motif/Pickers/Picker.module.scss @@ -5,58 +5,60 @@ // size, padding $sizes-picker: (("xs", "4x"), ("sm", "8x"), ("md", "12x"), ("lg", "16x")); -@each $name, $padding in $sizes-picker { - .#{$name} { - &:not(.wide) { - min-width: map.get(pickerValues.$size, $name, "width"); - max-width: map.get(pickerValues.$size, $name, "width"); - } - &.wide { - min-width: calc(map.get(pickerValues.$size, $name, "width") * 2); - max-width: calc(map.get(pickerValues.$size, $name, "width") * 2); - } - padding: var(--base-sizing-#{$padding}); - gap: map.get(pickerValues.$size, $name, "gapV"); - - .actions { - padding-top: map.get(pickerValues.$size, $name, "gapV"); +@layer motif-ui { + @each $name, $padding in $sizes-picker { + .#{$name} { + &:not(.wide) { + min-width: map.get(pickerValues.$size, $name, "width"); + max-width: map.get(pickerValues.$size, $name, "width"); + } + &.wide { + min-width: calc(map.get(pickerValues.$size, $name, "width") * 2); + max-width: calc(map.get(pickerValues.$size, $name, "width") * 2); + } + padding: var(--base-sizing-#{$padding}); gap: map.get(pickerValues.$size, $name, "gapV"); + + .actions { + padding-top: map.get(pickerValues.$size, $name, "gapV"); + gap: map.get(pickerValues.$size, $name, "gapV"); + } } } -} -.Root { - display: inline-flex; - flex-direction: column; - border-radius: var(--theme-sizing-radius-default); - box-sizing: border-box; + .Root { + display: inline-flex; + flex-direction: column; + border-radius: var(--theme-sizing-radius-default); + box-sizing: border-box; - &.shadow { - background: var(--theme-color-surface-base-bg-light); - @include shadow; - } + &.shadow { + background: var(--theme-color-surface-base-bg-light); + @include shadow; + } - &.borderless { - background: var(--theme-color-surface-base-bg-light); - } + &.borderless { + background: var(--theme-color-surface-base-bg-light); + } - &.bordered { - background: var(--theme-color-surface-base-bg-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - } + &.bordered { + background: var(--theme-color-surface-base-bg-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + } - &.fluid { - width: 100%; - max-width: 100%; - height: 100%; + &.fluid { + width: 100%; + max-width: 100%; + height: 100%; + } } -} -.actions { - display: flex; - justify-content: flex-end; - border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); - &.actionsSpread { - justify-content: space-between; + .actions { + display: flex; + justify-content: flex-end; + border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + &.actionsSpread { + justify-content: space-between; + } } } diff --git a/src/lib/components/NavBar/NavBar.module.scss b/src/lib/components/NavBar/NavBar.module.scss index a0040ca..dd76e2b 100644 --- a/src/lib/components/NavBar/NavBar.module.scss +++ b/src/lib/components/NavBar/NavBar.module.scss @@ -3,263 +3,265 @@ $variants: ("neutral", "primary", "secondary", "info", "danger", "warning", "success"); -.Root { - display: flex; - flex-wrap: wrap; - align-items: center; - padding: var(--base-sizing-16x) var(--base-sizing-32x); - gap: var(--base-sizing-16x); +@layer motif-ui { + .Root { + display: flex; + flex-wrap: wrap; + align-items: center; + padding: var(--base-sizing-16x) var(--base-sizing-32x); + gap: var(--base-sizing-16x); - &.elevated { - @include shadow(3); + &.elevated { + @include shadow(3); + } } -} - -// ============================================================================= -// Sub Components -// ============================================================================= -.hamburger { - @include transition(color); - display: none; -} -.logo { - height: var(--base-sizing-40x); - img { - height: 100%; + // ============================================================================= + // Sub Components + // ============================================================================= + .hamburger { + @include transition(color); + display: none; } -} -// ============================================================================= -// Menu -// ============================================================================= -.menu { - display: flex; - gap: var(--base-sizing-8x); - - &, - ul { - list-style: none; - margin: 0; - padding: 0; - } - a { - user-select: none; - cursor: pointer; - display: flex; - align-items: center; - white-space: nowrap; + .logo { + height: var(--base-sizing-40x); + img { + height: 100%; + } } -} -.mainMenuContainer { - flex: 1; -} + // ============================================================================= + // Menu + // ============================================================================= + .menu { + display: flex; + gap: var(--base-sizing-8x); -.subMenu { - position: absolute; - z-index: 1; - background-color: var(--theme-color-surface-base-global-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - @include shadow(4); - min-width: 100%; + &, + ul { + list-style: none; + margin: 0; + padding: 0; + } + a { + user-select: none; + cursor: pointer; + display: flex; + align-items: center; + white-space: nowrap; + } + } - .subMenu { - top: calc(-1 * var(--base-sizing-1x)); + .mainMenuContainer { + flex: 1; } -} -.subMenuItem { - position: relative; + .subMenu { + position: absolute; + z-index: 1; + background-color: var(--theme-color-surface-base-global-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + @include shadow(4); + min-width: 100%; - &:first-child > a { - border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; - } - &:last-child > a { - border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); - } - &:not(:last-child) > a { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + .subMenu { + top: calc(-1 * var(--base-sizing-1x)); + } } - a { - padding: var(--base-sizing-12x) var(--base-sizing-8x); - gap: var(--base-sizing-10x); - color: var(--theme-color-text-base-subtitle); - @include transition(color background-color); + .subMenuItem { + position: relative; - .label { - flex: 1; - @include font("body", "sm"); + &:first-child > a { + border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; + } + &:last-child > a { + border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); } + &:not(:last-child) > a { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + } + + a { + padding: var(--base-sizing-12x) var(--base-sizing-8x); + gap: var(--base-sizing-10x); + color: var(--theme-color-text-base-subtitle); + @include transition(color background-color); + + .label { + flex: 1; + @include font("body", "sm"); + } - &:hover { - background-color: var(--theme-color-surface-base-base4); - color: var(--theme-color-text-base-text-dark); + &:hover { + background-color: var(--theme-color-surface-base-base4); + color: var(--theme-color-text-base-text-dark); + } } } -} -.menu_left { - .menuBarItem > .subMenu { - top: calc(100% + var(--base-sizing-20x)); - right: 0; - } - .subMenu .subMenu { - right: calc(100% + var(--base-sizing-12x)); - } - .subMenuItem a { - flex-direction: row-reverse; - text-align: right; - .dropdown { - rotate: 90deg; - margin-left: calc(-1 * var(--base-sizing-10x)); + .menu_left { + .menuBarItem > .subMenu { + top: calc(100% + var(--base-sizing-20x)); + right: 0; + } + .subMenu .subMenu { + right: calc(100% + var(--base-sizing-12x)); + } + .subMenuItem a { + flex-direction: row-reverse; + text-align: right; + .dropdown { + rotate: 90deg; + margin-left: calc(-1 * var(--base-sizing-10x)); + } } } -} -.menu_right { - .menuBarItem > .subMenu { - top: calc(100% + var(--base-sizing-20x)); - } - .subMenu .subMenu { - left: calc(100% + var(--base-sizing-12x)); - } - .subMenuItem a { - justify-items: flex-start; - .dropdown { - rotate: 270deg; - margin-right: calc(-1 * var(--base-sizing-10x)); + .menu_right { + .menuBarItem > .subMenu { + top: calc(100% + var(--base-sizing-20x)); + } + .subMenu .subMenu { + left: calc(100% + var(--base-sizing-12x)); + } + .subMenuItem a { + justify-items: flex-start; + .dropdown { + rotate: 270deg; + margin-right: calc(-1 * var(--base-sizing-10x)); + } } } -} -.menuBarItem { - position: relative; - > a { - padding: var(--base-sizing-4x) var(--base-sizing-8x); - gap: var(--base-sizing-8x); - @include transition(color); - .label { - @include font("base", "md", "500"); + .menuBarItem { + position: relative; + > a { + padding: var(--base-sizing-4x) var(--base-sizing-8x); + gap: var(--base-sizing-8x); + @include transition(color); + .label { + @include font("base", "md", "500"); + } } } -} -// ============================================================================= -// Variants -// ============================================================================= -@each $variant in $variants { - .#{$variant} { - background-color: if($variant == "neutral", var(--theme-color-surface-base-base4), var(--theme-color-surface-#{$variant}-default)); + // ============================================================================= + // Variants + // ============================================================================= + @each $variant in $variants { + .#{$variant} { + background-color: if($variant == "neutral", var(--theme-color-surface-base-base4), var(--theme-color-surface-#{$variant}-default)); - .hamburger, - .menuBarItem > a { - color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-subtitle), var(--theme-color-text-base-light-overlay75)); - } - .hamburger:hover, - .menuBarItem > a:hover, - .menuBarItem.active > a { - color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); - } + .hamburger, + .menuBarItem > a { + color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-subtitle), var(--theme-color-text-base-light-overlay75)); + } + .hamburger:hover, + .menuBarItem > a:hover, + .menuBarItem.active > a { + color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); + } - @include screen-width("below", "sm") { - .mainMenu { - :has(.subMenu) > a { - color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); - } - .menuBarItem > a { - border-color: if($variant == "neutral", var(--theme-color-border-light-default), var(--theme-color-surface-base-light-overlay50)); - } - .subMenuItem a { - color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-subtitle), var(--theme-color-text-base-light-overlay75)); - &:hover { + @include screen-width("below", "sm") { + .mainMenu { + :has(.subMenu) > a { color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); - background-color: if( - $variant == "neutral", - var(--theme-color-surface-light-hover), - if($variant == "warning", var(--theme-color-surface-base-light-overlay25), var(--theme-color-surface-base-dark-overlay15)) - ); + } + .menuBarItem > a { + border-color: if($variant == "neutral", var(--theme-color-border-light-default), var(--theme-color-surface-base-light-overlay50)); + } + .subMenuItem a { + color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-subtitle), var(--theme-color-text-base-light-overlay75)); + &:hover { + color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); + background-color: if( + $variant == "neutral", + var(--theme-color-surface-light-hover), + if($variant == "warning", var(--theme-color-surface-base-light-overlay25), var(--theme-color-surface-base-dark-overlay15)) + ); + } } } } } } -} - -// ============================================================================= -// Responsive -// ============================================================================= -@include screen-width("below", "sm") { - .hamburger { - display: block; - } - .logo { - flex: 1; - } - .searchBox { - order: 998; - width: 100%; - } - .mainMenuContainer { - order: 999; - } - - .mainMenu { - gap: 0; - flex-direction: column; - - .menuCollapsed & { - display: none; + // ============================================================================= + // Responsive + // ============================================================================= + @include screen-width("below", "sm") { + .hamburger { + display: block; + } + .logo { + flex: 1; + } + .searchBox { + order: 998; + width: 100%; } - .menuBarItem { - > a { - border-bottom: solid var(--base-sizing-1x); - padding: var(--base-sizing-12x) var(--base-sizing-8x); - .label { - flex: 1; - } - .dropdown { - @include transition(rotate); - } - } - &:has(.subMenu) > a { - border-bottom: none; - .dropdown { - rotate: 180deg; - } - } + .mainMenuContainer { + order: 999; } - .subMenu { - position: initial; - background: none; - box-shadow: none; - border: none; - &::after, - &::before { + .mainMenu { + gap: 0; + flex-direction: column; + + .menuCollapsed & { display: none; } - .subMenuItem { - a { - padding: var(--base-sizing-8x) var(--base-sizing-16x); - border-radius: 0; - border-width: 0; - flex-direction: row; + .menuBarItem { + > a { + border-bottom: solid var(--base-sizing-1x); + padding: var(--base-sizing-12x) var(--base-sizing-8x); + .label { + flex: 1; + } + .dropdown { + @include transition(rotate); + } + } + &:has(.subMenu) > a { + border-bottom: none; .dropdown { - rotate: unset; + rotate: 180deg; } } + } + + .subMenu { + position: initial; + background: none; + box-shadow: none; + border: none; + &::after, + &::before { + display: none; + } + .subMenuItem { a { - margin-left: var(--base-sizing-16x); + padding: var(--base-sizing-8x) var(--base-sizing-16x); + border-radius: 0; + border-width: 0; + flex-direction: row; + .dropdown { + rotate: unset; + } } - .subMenuItem a { - margin-left: var(--base-sizing-32x); + .subMenuItem { + a { + margin-left: var(--base-sizing-16x); + } + .subMenuItem a { + margin-left: var(--base-sizing-32x); + } } } } diff --git a/src/lib/components/Pagination/Pagination.module.scss b/src/lib/components/Pagination/Pagination.module.scss index bd8980d..e5804f5 100644 --- a/src/lib/components/Pagination/Pagination.module.scss +++ b/src/lib/components/Pagination/Pagination.module.scss @@ -7,73 +7,75 @@ $pagination-sizes: ( ("lg", "48x", "10x") ); -.Root { - display: inline-flex; - flex-wrap: wrap; -} +@layer motif-ui { + .Root { + display: inline-flex; + flex-wrap: wrap; + } -.pageItem { - border: solid var(--base-sizing-1x) transparent; - border-radius: var(--theme-sizing-radius-default); - background: none; - color: var(--theme-color-text-base-title-light); - cursor: pointer; + .pageItem { + border: solid var(--base-sizing-1x) transparent; + border-radius: var(--theme-sizing-radius-default); + background: none; + color: var(--theme-color-text-base-title-light); + cursor: pointer; - &.arrowIcon { - display: flex; - align-items: center; - justify-content: center; - span { - color: var(--theme-color-text-base-title-light); - } - &:disabled { - pointer-events: none; + &.arrowIcon { + display: flex; + align-items: center; + justify-content: center; span { - color: var(--theme-color-text-secondary-disabled); + color: var(--theme-color-text-base-title-light); + } + &:disabled { + pointer-events: none; + span { + color: var(--theme-color-text-secondary-disabled); + } } } - } - &:hover { - background: var(--theme-color-surface-light-default); - } - &.active { - color: white; - pointer-events: none; - background: var(--theme-color-surface-primary-default); + &:hover { + background: var(--theme-color-surface-light-default); + } + &.active { + color: white; + pointer-events: none; + background: var(--theme-color-surface-primary-default); + } + @include focus-ring; } - @include focus-ring; -} -.separator { - color: var(--theme-color-text-base-caption); - display: flex; - align-items: center; - justify-content: center; - &::before { - content: "..."; + .separator { + color: var(--theme-color-text-base-caption); + display: flex; + align-items: center; + justify-content: center; + &::before { + content: "..."; + } } -} -@each $name, $size, $gap in $pagination-sizes { - .#{$name} { - padding: var(--base-sizing-#{$gap}); - gap: var(--base-sizing-#{$gap}); + @each $name, $size, $gap in $pagination-sizes { + .#{$name} { + padding: var(--base-sizing-#{$gap}); + gap: var(--base-sizing-#{$gap}); - .pageItem { - height: var(--base-sizing-#{$size}); - @include font("base", $name, "500"); - &.arrowIcon { - width: var(--base-sizing-#{$size}); - } - &:not(.arrowIcon) { - min-width: var(--base-sizing-#{$size}); + .pageItem { + height: var(--base-sizing-#{$size}); + @include font("base", $name, "500"); + &.arrowIcon { + width: var(--base-sizing-#{$size}); + } + &:not(.arrowIcon) { + min-width: var(--base-sizing-#{$size}); + } } - } - .separator { - width: var(--base-sizing-#{$size}); - height: var(--base-sizing-#{$size}); + .separator { + width: var(--base-sizing-#{$size}); + height: var(--base-sizing-#{$size}); + } } } } diff --git a/src/lib/components/Panel/Panel.module.scss b/src/lib/components/Panel/Panel.module.scss index 5d02ac9..6197bf2 100644 --- a/src/lib/components/Panel/Panel.module.scss +++ b/src/lib/components/Panel/Panel.module.scss @@ -2,74 +2,76 @@ $lean-positions: ("top", "bottom", "left", "right"); -.Root { - display: flex; - flex-direction: column; - border-radius: var(--theme-sizing-radius-default); - - &.bordered { - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - } +@layer motif-ui { + .Root { + display: flex; + flex-direction: column; + border-radius: var(--theme-sizing-radius-default); + + &.bordered { + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + } - &.default { - background-color: var(--theme-color-surface-base-bg-light); - } + &.default { + background-color: var(--theme-color-surface-base-bg-light); + } - &.solid { - background-color: var(--theme-color-surface-base-base2); - } + &.solid { + background-color: var(--theme-color-surface-base-base2); + } - &.elevated { - background-color: var(--theme-color-surface-base-bg-light); - @include shadow(3); - } + &.elevated { + background-color: var(--theme-color-surface-base-bg-light); + @include shadow(3); + } - &:not(.lean-all) { - padding: var(--base-sizing-24x); - } + &:not(.lean-all) { + padding: var(--base-sizing-24x); + } - @each $lean in $lean-positions { - &.lean-#{$lean} { - padding-#{$lean}: 0; + @each $lean in $lean-positions { + &.lean-#{$lean} { + padding-#{$lean}: 0; + } } } -} -.textContent { - @include font("body", "md"); - color: var(--theme-color-text-base-subtitle-light); - padding-top: var(--base-sizing-4x); - padding-bottom: var(--base-sizing-4x); -} + .textContent { + @include font("body", "md"); + color: var(--theme-color-text-base-subtitle-light); + padding-top: var(--base-sizing-4x); + padding-bottom: var(--base-sizing-4x); + } -// ============================================================================= -// Sub Component: PanelTitle -// ============================================================================= + // ============================================================================= + // Sub Component: PanelTitle + // ============================================================================= -$title-sizes: (("sm", "md"), ("md", "lg"), ("lg", "xl")); + $title-sizes: (("sm", "md"), ("md", "lg"), ("lg", "xl")); -.title { - color: var(--theme-color-text-base-subtitle); - margin-top: var(--base-sizing-12x); - margin-bottom: var(--base-sizing-12x); + .title { + color: var(--theme-color-text-base-subtitle); + margin-top: var(--base-sizing-12x); + margin-bottom: var(--base-sizing-12x); - &:first-child { - margin-top: 0; - } + &:first-child { + margin-top: 0; + } - &:last-child { - margin-bottom: 0; - } + &:last-child { + margin-bottom: 0; + } - .title-icon { - margin-right: var(--base-sizing-8x); - color: var(--theme-color-text-base-caption); - vertical-align: text-top; - } + .title-icon { + margin-right: var(--base-sizing-8x); + color: var(--theme-color-text-base-caption); + vertical-align: text-top; + } - @each $size, $title-size in $title-sizes { - &.title-#{$size} { - @include font("base", $title-size, "700"); + @each $size, $title-size in $title-sizes { + &.title-#{$size} { + @include font("base", $title-size, "700"); + } } } } diff --git a/src/lib/components/PinCode/PinCode.module.scss b/src/lib/components/PinCode/PinCode.module.scss index af21142..b102aec 100644 --- a/src/lib/components/PinCode/PinCode.module.scss +++ b/src/lib/components/PinCode/PinCode.module.scss @@ -8,62 +8,64 @@ $sizes: ( ("lg", "10x", "24x", "16x") ); -@each $size, $padding, $inputSize, $gap in $sizes { - .#{$size} { - gap: var(--base-sizing-#{$gap}); - .input { - @include font("body", $size); - width: var(--base-sizing-#{$inputSize}); - height: var(--base-sizing-#{$inputSize}); - padding: var(--base-sizing-#{$padding}); +@layer motif-ui { + @each $size, $padding, $inputSize, $gap in $sizes { + .#{$size} { + gap: var(--base-sizing-#{$gap}); + .input { + @include font("body", $size); + width: var(--base-sizing-#{$inputSize}); + height: var(--base-sizing-#{$inputSize}); + padding: var(--base-sizing-#{$padding}); + } } } -} -.Root { - display: inline-flex; - vertical-align: top; + .Root { + display: inline-flex; + vertical-align: top; - &.success .input { - border-color: var(--theme-color-border-success-default); - } + &.success .input { + border-color: var(--theme-color-border-success-default); + } - &.circle .input { - border-radius: var(--theme-sizing-radius-round); - } + &.circle .input { + border-radius: var(--theme-sizing-radius-round); + } - &.error .input { - border-color: var(--theme-color-border-danger-default); - } + &.error .input { + border-color: var(--theme-color-border-danger-default); + } - .input.item_space { - background: none; - border: none; + .input.item_space { + background: none; + border: none; + } } -} -// ============================================================================= -// Sub Component: PinCodeItemHOC -// ============================================================================= + // ============================================================================= + // Sub Component: PinCodeItemHOC + // ============================================================================= -.input { - text-align: center; - background-color: var(--theme-color-surface-base-bg-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - box-sizing: content-box; - border-radius: var(--theme-sizing-radius-default); - color: var(--theme-color-text-base-title); - @include focus-ring; + .input { + text-align: center; + background-color: var(--theme-color-surface-base-bg-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + box-sizing: content-box; + border-radius: var(--theme-sizing-radius-default); + color: var(--theme-color-text-base-title); + @include focus-ring; - &:disabled, - :read-only { - border-color: var(--theme-color-border-light-disabled); - color: var(--theme-color-text-base-disabled); - background-color: var(--theme-color-surface-base-base1); - pointer-events: none; - } + &:disabled, + :read-only { + border-color: var(--theme-color-border-light-disabled); + color: var(--theme-color-text-base-disabled); + background-color: var(--theme-color-surface-base-base1); + pointer-events: none; + } - &.item_space { - pointer-events: none; + &.item_space { + pointer-events: none; + } } } diff --git a/src/lib/components/Popover/Popover.module.scss b/src/lib/components/Popover/Popover.module.scss index 0fe0ada..751c672 100644 --- a/src/lib/components/Popover/Popover.module.scss +++ b/src/lib/components/Popover/Popover.module.scss @@ -120,82 +120,84 @@ $caret-margin: var(--base-sizing-12x); } } -.Root { - z-index: 1; - box-sizing: border-box; - position: absolute; - display: flex; // DO NOT REMOVE: this prevents borders get cut off when popover overflows - @include fade-default; -} - -.visible { - @include fade-in; -} - -.popover { - width: max-content; - border-radius: var(--theme-sizing-radius-default); - overflow: hidden; - .justText & { - padding: var(--base-sizing-10x); +@layer motif-ui { + .Root { + z-index: 1; + box-sizing: border-box; + position: absolute; + display: flex; // DO NOT REMOVE: this prevents borders get cut off when popover overflows + @include fade-default; } -} -.elevated { - @include drop-shadow(2); -} + .visible { + @include fade-in; + } -.withGap .popover::before { - content: ""; - position: absolute; - width: $caret-margin; - height: $caret-margin; - box-sizing: border-box; -} + .popover { + width: max-content; + border-radius: var(--theme-sizing-radius-default); + overflow: hidden; + .justText & { + padding: var(--base-sizing-10x); + } + } -.noSpace::before { - content: initial; -} + .elevated { + @include drop-shadow(2); + } -.callout .popover { - &::before, - &::after { + .withGap .popover::before { content: ""; position: absolute; width: $caret-margin; height: $caret-margin; box-sizing: border-box; - border-style: solid; - border-color: transparent; } -} -@each $position, $gapPosition, $edgeMarginPositions in $positions { - .#{$position} { - @each $variant, $bgColor, $borderColor, $textColor in $variants { - &.#{$variant} { - &.callout { - padding-#{$gapPosition}: $caret-margin; + .noSpace::before { + content: initial; + } + + .callout .popover { + &::before, + &::after { + content: ""; + position: absolute; + width: $caret-margin; + height: $caret-margin; + box-sizing: border-box; + border-style: solid; + border-color: transparent; + } + } - &.elevated { - @include caret-tip($position, $bgColor, true); + @each $position, $gapPosition, $edgeMarginPositions in $positions { + .#{$position} { + @each $variant, $bgColor, $borderColor, $textColor in $variants { + &.#{$variant} { + &.callout { + padding-#{$gapPosition}: $caret-margin; + + &.elevated { + @include caret-tip($position, $bgColor, true); + } + &:not(.elevated) { + @include caret-tip($position, $bgColor, false, $borderColor); + } } - &:not(.elevated) { - @include caret-tip($position, $bgColor, false, $borderColor); + &:not(.elevated) .popover { + border: solid var(--base-sizing-1x) $borderColor; } - } - &:not(.elevated) .popover { - border: solid var(--base-sizing-1x) $borderColor; - } - .popover { - background-color: $bgColor; - color: $textColor; - @each $edgePos in $edgeMarginPositions { - margin-#{$edgePos}: var(--base-sizing-4x); + .popover { + background-color: $bgColor; + color: $textColor; + @each $edgePos in $edgeMarginPositions { + margin-#{$edgePos}: var(--base-sizing-4x); + } + } + &.withGap { + padding-#{$gapPosition}: $caret-margin; } - } - &.withGap { - padding-#{$gapPosition}: $caret-margin; } } } diff --git a/src/lib/components/ProgressBar/ProgressBar.module.scss b/src/lib/components/ProgressBar/ProgressBar.module.scss index eaba29d..2b1507f 100644 --- a/src/lib/components/ProgressBar/ProgressBar.module.scss +++ b/src/lib/components/ProgressBar/ProgressBar.module.scss @@ -5,90 +5,92 @@ $colors: "primary", "success", "danger", "warning", "info"; // size, height, fontSize $sizes: (("xs", "2x", "xs"), ("sm", "4x", "sm"), ("md", "6x", "md"), ("lg", "8x", "lg"), ("xl", "12x", "lg")); -.Root { - text-align: center; +@layer motif-ui { + .Root { + text-align: center; - .bar { - position: relative; - background: var(--theme-color-surface-base-base5); - border-radius: var(--theme-sizing-radius-round); - - &::before { - content: ""; - position: absolute; + .bar { + position: relative; + background: var(--theme-color-surface-base-base5); border-radius: var(--theme-sizing-radius-round); - top: 0; - left: 0; - height: 100%; - @include transition(width, "slow", ease-in-out); - width: calc(var(--percentage, 0) * 1%); - } - } - .text { - display: inline-block; - color: var(--theme-color-text-base-subtitle-light); - margin-top: var(--base-sizing-4x); - } - - @each $size, $height, $fontSize in $sizes { - &.#{$size} { - .bar { - height: var(--base-sizing-#{$height}); - } - - .text { - @include font("base", $fontSize, "500"); + &::before { + content: ""; + position: absolute; + border-radius: var(--theme-sizing-radius-round); + top: 0; + left: 0; + height: 100%; + @include transition(width, "slow", ease-in-out); + width: calc(var(--percentage, 0) * 1%); } } - } - @each $color in $colors { - &.#{$color} .bar::before { - background: var(--theme-color-surface-#{$color}-default); + .text { + display: inline-block; + color: var(--theme-color-text-base-subtitle-light); + margin-top: var(--base-sizing-4x); } - } - &.secondary .bar::before { - background: var(--theme-color-surface-base-base7); - } + @each $size, $height, $fontSize in $sizes { + &.#{$size} { + .bar { + height: var(--base-sizing-#{$height}); + } - &.indeterminate { - .bar::before { - animation: progress-animation 1.2s cubic-bezier(0.5, 0.1, 0.9, 1) forwards infinite; + .text { + @include font("base", $fontSize, "500"); + } + } } - @keyframes progress-animation { - 0% { - left: 0; - width: 0; - } - 50% { - left: 50%; - width: 50%; - } - 100% { - left: 100%; - width: 0; + @each $color in $colors { + &.#{$color} .bar::before { + background: var(--theme-color-surface-#{$color}-default); } } - } - &.countdown { - .bar::before { - animation: countdown var(--countdown-duration) linear forwards; + &.secondary .bar::before { + background: var(--theme-color-surface-base-base7); } - &.paused .bar::before { - animation-play-state: paused; + &.indeterminate { + .bar::before { + animation: progress-animation 1.2s cubic-bezier(0.5, 0.1, 0.9, 1) forwards infinite; + } + + @keyframes progress-animation { + 0% { + left: 0; + width: 0; + } + 50% { + left: 50%; + width: 50%; + } + 100% { + left: 100%; + width: 0; + } + } } - @keyframes countdown { - 0% { - width: 100%; + &.countdown { + .bar::before { + animation: countdown var(--countdown-duration) linear forwards; } - 100% { - width: 0; + + &.paused .bar::before { + animation-play-state: paused; + } + + @keyframes countdown { + 0% { + width: 100%; + } + 100% { + width: 0; + } } } } diff --git a/src/lib/components/ProgressCircle/ProgressCircle.module.scss b/src/lib/components/ProgressCircle/ProgressCircle.module.scss index 49713eb..d47b6d8 100644 --- a/src/lib/components/ProgressCircle/ProgressCircle.module.scss +++ b/src/lib/components/ProgressCircle/ProgressCircle.module.scss @@ -7,84 +7,86 @@ $colors: "primary", "success", "danger", "warning", "info"; // size, strokeWidth, radius, fontPerc $sizes: (("xs", "2x", "8x", "xs"), ("sm", "3x", "12x", "xs"), ("md", "4x", "18x", "xs"), ("lg", "4x", "24x", "xs"), ("xl", "6x", "32x", "md")); -.Root { - @each $size, $strokeWidth, $radius, $fontPerc in $sizes { - &.#{$size} { - height: calc(var(--base-sizing-#{$radius}) * 2); - width: calc(var(--base-sizing-#{$radius}) * 2); - $normalized-radius: calc(var(--base-sizing-#{$radius}) - (var(--base-sizing-#{$strokeWidth}) / 2)); - $circumference-with-unit: calc(#{$normalized-radius} * 2 * #{math.$pi}); - $circumference: #{$circumference-with-unit}; - $calculated-offset: calc(#{$circumference} - ((#{$circumference} * var(--percentage, 0)) / 100)); +@layer motif-ui { + .Root { + @each $size, $strokeWidth, $radius, $fontPerc in $sizes { + &.#{$size} { + height: calc(var(--base-sizing-#{$radius}) * 2); + width: calc(var(--base-sizing-#{$radius}) * 2); + $normalized-radius: calc(var(--base-sizing-#{$radius}) - (var(--base-sizing-#{$strokeWidth}) / 2)); + $circumference-with-unit: calc(#{$normalized-radius} * 2 * #{math.$pi}); + $circumference: #{$circumference-with-unit}; + $calculated-offset: calc(#{$circumference} - ((#{$circumference} * var(--percentage, 0)) / 100)); - circle { - cx: var(--base-sizing-#{$radius}); - cy: var(--base-sizing-#{$radius}); - r: $normalized-radius; - stroke-width: var(--base-sizing-#{$strokeWidth}); - } - - .circle { - stroke-dashoffset: $calculated-offset; - stroke-dasharray: $circumference $circumference; - } + circle { + cx: var(--base-sizing-#{$radius}); + cy: var(--base-sizing-#{$radius}); + r: $normalized-radius; + stroke-width: var(--base-sizing-#{$strokeWidth}); + } - &.countdown { .circle { - animation: countdown-#{$size} var(--countdown-duration) linear forwards; + stroke-dashoffset: $calculated-offset; + stroke-dasharray: $circumference $circumference; } - &.paused .circle { - animation-play-state: paused; - } + &.countdown { + .circle { + animation: countdown-#{$size} var(--countdown-duration) linear forwards; + } - @keyframes countdown-#{$size} { - 0% { - stroke-dashoffset: 0; + &.paused .circle { + animation-play-state: paused; } - 100% { - stroke-dashoffset: #{$circumference}; + + @keyframes countdown-#{$size} { + 0% { + stroke-dashoffset: 0; + } + 100% { + stroke-dashoffset: #{$circumference}; + } } } - } - .text { - fill: var(--theme-color-text-base-subtitle-light); - font-weight: var(--typography-base-#{$fontPerc}-500-fontWeight); - font-size: var(--typography-base-#{$fontPerc}-500-fontSize); + .text { + fill: var(--theme-color-text-base-subtitle-light); + font-weight: var(--typography-base-#{$fontPerc}-500-fontWeight); + font-size: var(--typography-base-#{$fontPerc}-500-fontSize); + } } } - } - @each $color in $colors { - &.#{$color} .circle { - stroke: var(--theme-color-surface-#{$color}-default); + @each $color in $colors { + &.#{$color} .circle { + stroke: var(--theme-color-surface-#{$color}-default); + } } - } - &.secondary .circle { - stroke: var(--theme-color-surface-base-base7); - } + &.secondary .circle { + stroke: var(--theme-color-surface-base-base7); + } - .circle { - @include transition(stroke-dashoffset, "slow", ease-in-out); - transform: rotate(-90deg); - transform-origin: 50% 50%; - stroke-linecap: round; - } + .circle { + @include transition(stroke-dashoffset, "slow", ease-in-out); + transform: rotate(-90deg); + transform-origin: 50% 50%; + stroke-linecap: round; + } - .track { - stroke: var(--theme-color-surface-base-base5); - } + .track { + stroke: var(--theme-color-surface-base-base5); + } - &.indeterminate { - animation: 1.5s linear infinite svg-animation; - @keyframes svg-animation { - 0% { - transform: rotateZ(0deg); - } - 100% { - transform: rotateZ(360deg); + &.indeterminate { + animation: 1.5s linear infinite svg-animation; + @keyframes svg-animation { + 0% { + transform: rotateZ(0deg); + } + 100% { + transform: rotateZ(360deg); + } } } } diff --git a/src/lib/components/Radio/Radio.module.scss b/src/lib/components/Radio/Radio.module.scss index e429acf..832bf5e 100644 --- a/src/lib/components/Radio/Radio.module.scss +++ b/src/lib/components/Radio/Radio.module.scss @@ -1,77 +1,79 @@ @use "@styles" as *; $sizes: (("xs", "16x", "6x"), ("sm", "20x", "8x"), ("md", "24x", "10x"), ("lg", "28x", "12x")); -@each $name, $size, $gap in $sizes { - .#{$name} { - &.Root { - gap: var(--base-sizing-#{$gap}); +@layer motif-ui { + @each $name, $size, $gap in $sizes { + .#{$name} { + &.Root { + gap: var(--base-sizing-#{$gap}); + } + .label { + @include font("base", $name, "500"); + } + .radio { + width: var(--base-sizing-#{$size}); + min-width: var(--base-sizing-#{$size}); + height: var(--base-sizing-#{$size}); + min-height: var(--base-sizing-#{$size}); + } } + } + + .Root { + display: inline-flex; + align-items: center; + .label { - @include font("base", $name, "500"); - } - .radio { - width: var(--base-sizing-#{$size}); - min-width: var(--base-sizing-#{$size}); - height: var(--base-sizing-#{$size}); - min-height: var(--base-sizing-#{$size}); + color: var(--theme-color-text-base-title-light); } - } -} -.Root { - display: inline-flex; - align-items: center; + .radio { + @include transition; + appearance: none; + margin: 0; + background: var(--theme-color-surface-base-bg-light); + border-radius: var(--theme-sizing-radius-round); + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - .label { - color: var(--theme-color-text-base-title-light); - } + &:hover { + border-color: var(--theme-color-border-light-hover); + background-color: var(--theme-color-surface-base-base2); + } - .radio { - @include transition; - appearance: none; - margin: 0; - background: var(--theme-color-surface-base-bg-light); - border-radius: var(--theme-sizing-radius-round); - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + &:focus { + outline: none; + border-color: var(--theme-color-border-primary-default); + background-color: var(--theme-color-surface-base-base2); + } - &:hover { - border-color: var(--theme-color-border-light-hover); - background-color: var(--theme-color-surface-base-base2); + &:checked { + background: var(--theme-color-surface-primary-default); + border-color: var(--theme-color-border-primary-default); + } } - &:focus { - outline: none; - border-color: var(--theme-color-border-primary-default); - background-color: var(--theme-color-surface-base-base2); + &.error .radio:not(:checked) { + border-color: var(--theme-color-border-danger-default); } - &:checked { - background: var(--theme-color-surface-primary-default); - border-color: var(--theme-color-border-primary-default); + &.success .radio:not(:checked) { + border-color: var(--theme-color-border-success-default); } - } - - &.error .radio:not(:checked) { - border-color: var(--theme-color-border-danger-default); - } - - &.success .radio:not(:checked) { - border-color: var(--theme-color-border-success-default); - } - &.disabled { - * { - pointer-events: none; - } - .label { - color: var(--theme-color-text-base-disabled); - } - .radio { - border-color: var(--theme-color-border-light-disabled); - background: var(--theme-color-surface-base-bg-light); - &:checked { - border-color: var(--theme-color-surface-primary-disabled); - background: var(--theme-color-surface-primary-disabled); + &.disabled { + * { + pointer-events: none; + } + .label { + color: var(--theme-color-text-base-disabled); + } + .radio { + border-color: var(--theme-color-border-light-disabled); + background: var(--theme-color-surface-base-bg-light); + &:checked { + border-color: var(--theme-color-surface-primary-disabled); + background: var(--theme-color-surface-primary-disabled); + } } } } diff --git a/src/lib/components/RadioGroup/RadioGroup.module.scss b/src/lib/components/RadioGroup/RadioGroup.module.scss index 222a82e..2f3ea87 100644 --- a/src/lib/components/RadioGroup/RadioGroup.module.scss +++ b/src/lib/components/RadioGroup/RadioGroup.module.scss @@ -8,30 +8,32 @@ $sizes: ( ("lg", "32x", "24x", "10x") ); -.Root { - display: flex; - align-items: flex-start; - min-width: var(--base-sizing-128x); -} +@layer motif-ui { + .Root { + display: flex; + align-items: flex-start; + min-width: var(--base-sizing-128x); + } -.vertical { - flex-direction: column; -} + .vertical { + flex-direction: column; + } -.horizontal { - flex-direction: row; -} + .horizontal { + flex-direction: row; + } -@each $name, $gapItemsH, $gapItemsV, $paddingVInFormField in $sizes { - .#{$name} { - &.vertical { - gap: var(--base-sizing-#{$gapItemsV}); - } - &.horizontal { - gap: var(--base-sizing-#{$gapItemsH}); - } - &.inFormField { - padding: var(--base-sizing-#{$paddingVInFormField}) 0; + @each $name, $gapItemsH, $gapItemsV, $paddingVInFormField in $sizes { + .#{$name} { + &.vertical { + gap: var(--base-sizing-#{$gapItemsV}); + } + &.horizontal { + gap: var(--base-sizing-#{$gapItemsH}); + } + &.inFormField { + padding: var(--base-sizing-#{$paddingVInFormField}) 0; + } } } } diff --git a/src/lib/components/Select/Select.module.scss b/src/lib/components/Select/Select.module.scss index 1201d4e..03859dd 100644 --- a/src/lib/components/Select/Select.module.scss +++ b/src/lib/components/Select/Select.module.scss @@ -8,247 +8,249 @@ $sizes: ( ("lg", "10x", "20x", "10x", "256x", "24x", 0, "md", "20x") ); -.Root { - position: relative; - display: inline-block; - - &.expanded .input { - border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; - .arrowDown { - transform: rotate(180deg); +@layer motif-ui { + .Root { + position: relative; + display: inline-block; + + &.expanded .input { + border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; + .arrowDown { + transform: rotate(180deg); + } } - } - - &.inFormField .input { - min-width: var(--base-sizing-190x); - } - - @include transition(border-color); - &.error .input { - border-color: var(--theme-color-border-danger-default); - } + &.inFormField .input { + min-width: var(--base-sizing-190x); + } - &.success .input { - border-color: var(--theme-color-border-success-default); - } + @include transition(border-color); - &.active, - &:focus .input { - border-color: var(--theme-color-border-primary-default); - outline: none; - } - - &.disabled .input { - border-color: var(--theme-color-border-light-disabled); - background-color: var(--theme-color-surface-base-base1); - pointer-events: none; + &.error .input { + border-color: var(--theme-color-border-danger-default); + } - .inputText { - color: var(--theme-color-text-base-disabled); + &.success .input { + border-color: var(--theme-color-border-success-default); } - .iconRight { - color: var(--theme-color-text-light-disabled); + &.active, + &:focus .input { + border-color: var(--theme-color-border-primary-default); + outline: none; } - } -} -.input { - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-bg-light); - display: inline-flex; - width: 100%; - align-items: center; - box-sizing: border-box; + &.disabled .input { + border-color: var(--theme-color-border-light-disabled); + background-color: var(--theme-color-surface-base-base1); + pointer-events: none; - .inputTextAndItemsContainer { - display: flex; - flex-wrap: wrap; - flex: 1; - min-width: 0; - } + .inputText { + color: var(--theme-color-text-base-disabled); + } - .inputText { - all: unset; - min-width: 0; - flex-grow: 1; - text-align: left; - white-space: nowrap; - overflow: auto; - text-overflow: ellipsis; - color: var(--theme-color-text-base-title); - - &::placeholder { - color: var(--theme-color-text-base-caption); + .iconRight { + color: var(--theme-color-text-light-disabled); + } } } - .iconLeft { - color: var(--theme-color-text-base-caption-light); - } + .input { + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-bg-light); + display: inline-flex; + width: 100%; + align-items: center; + box-sizing: border-box; - .iconRight { - color: var(--theme-color-text-base-subtitle); - @include transition(transform); - } -} + .inputTextAndItemsContainer { + display: flex; + flex-wrap: wrap; + flex: 1; + min-width: 0; + } -.dropdown { - position: absolute; - z-index: 1; - list-style: none; - margin: 0; - padding: 0; - box-sizing: border-box; - border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-top: none; - width: 100%; - background-color: var(--theme-color-surface-base-global-light); - overflow-y: auto; - @include shadow(3); - - &::-webkit-scrollbar { - width: var(--base-sizing-8x); - } + .inputText { + all: unset; + min-width: 0; + flex-grow: 1; + text-align: left; + white-space: nowrap; + overflow: auto; + text-overflow: ellipsis; + color: var(--theme-color-text-base-title); + + &::placeholder { + color: var(--theme-color-text-base-caption); + } + } - &::-webkit-scrollbar-track { - background: #f1f1f1; - margin: var(--base-sizing-1x) 0; - border-radius: var(--theme-sizing-radius-default); - } + .iconLeft { + color: var(--theme-color-text-base-caption-light); + } - &::-webkit-scrollbar-thumb { - background: #cccccc; - border-radius: var(--theme-sizing-radius-default); + .iconRight { + color: var(--theme-color-text-base-subtitle); + @include transition(transform); + } } - li { - @include transition(background-color); - display: flex; - - &:not(:first-child) { - border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + .dropdown { + position: absolute; + z-index: 1; + list-style: none; + margin: 0; + padding: 0; + box-sizing: border-box; + border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-top: none; + width: 100%; + background-color: var(--theme-color-surface-base-global-light); + overflow-y: auto; + @include shadow(3); + + &::-webkit-scrollbar { + width: var(--base-sizing-8x); } - &.noData label { - color: var(--theme-color-text-base-disabled-light); + &::-webkit-scrollbar-track { + background: #f1f1f1; + margin: var(--base-sizing-1x) 0; + border-radius: var(--theme-sizing-radius-default); } - &.optionGroup label { - width: 100%; - color: var(--theme-color-text-base-caption-light); + &::-webkit-scrollbar-thumb { + background: #cccccc; + border-radius: var(--theme-sizing-radius-default); } - &.option { - &:hover { - background-color: var(--theme-color-surface-light-default); - } + li { + @include transition(background-color); + display: flex; - &.selected { - label, - .iconSelected { - color: var(--theme-color-text-primary-default); - } + &:not(:first-child) { + border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); } - input[type="checkbox"], - input[type="radio"] { - position: absolute; - left: 0; - opacity: 0; + &.noData label { + color: var(--theme-color-text-base-disabled-light); } - label { + &.optionGroup label { width: 100%; - display: flex; - align-items: center; - gap: var(--base-sizing-10x); - color: var(--theme-color-text-base-text-dark); + color: var(--theme-color-text-base-caption-light); + } + + &.option { + &:hover { + background-color: var(--theme-color-surface-light-default); + } + + &.selected { + label, + .iconSelected { + color: var(--theme-color-text-primary-default); + } + } - .labelText { - flex-grow: 1; + input[type="checkbox"], + input[type="radio"] { + position: absolute; + left: 0; + opacity: 0; + } + + label { + width: 100%; + display: flex; + align-items: center; + gap: var(--base-sizing-10x); + color: var(--theme-color-text-base-text-dark); + + .labelText { + flex-grow: 1; + } } } } } -} -@each $size, $paddingV, $paddingH, $gap, $maxDropdownHeight, $rightContainerSize, $loaderTop, $selectedSize, $selectedIconSize in $sizes { - .#{$size} { - .input { - padding: var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingH}); + @each $size, $paddingV, $paddingH, $gap, $maxDropdownHeight, $rightContainerSize, $loaderTop, $selectedSize, $selectedIconSize in $sizes { + .#{$size} { + .input { + padding: var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingH}); - gap: var(--base-sizing-#{$gap}); + gap: var(--base-sizing-#{$gap}); - .inputText { - @include font("body", $size); - } + .inputText { + @include font("body", $size); + } - .inputTextAndItemsContainer { - gap: var(--base-sizing-#{$gap}); + .inputTextAndItemsContainer { + gap: var(--base-sizing-#{$gap}); + } } - } - .label { - @include font("base", $selectedSize, "500"); - } + .label { + @include font("base", $selectedSize, "500"); + } - .closeIcon { - font-size: var(--base-sizing-#{$selectedIconSize}); - } + .closeIcon { + font-size: var(--base-sizing-#{$selectedIconSize}); + } - .dropdown { - max-height: var(--base-sizing-#{$maxDropdownHeight}); + .dropdown { + max-height: var(--base-sizing-#{$maxDropdownHeight}); - li { - &.optionGroup label { - padding: var(--base-sizing-#{$paddingV}); - @include font("base", $size, "500"); - } + li { + &.optionGroup label { + padding: var(--base-sizing-#{$paddingV}); + @include font("base", $size, "500"); + } - &.noData, - &.option { - label { - gap: var(--base-sizing-#{$gap}); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - @include font("body", $size); + &.noData, + &.option { + label { + gap: var(--base-sizing-#{$gap}); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + @include font("body", $size); + } } } } - } - .rightContainer { - width: var(--base-sizing-#{$rightContainerSize}); - height: var(--base-sizing-#{$rightContainerSize}); - position: relative; - display: flex; - align-items: center; - justify-content: center; + .rightContainer { + width: var(--base-sizing-#{$rightContainerSize}); + height: var(--base-sizing-#{$rightContainerSize}); + position: relative; + display: flex; + align-items: center; + justify-content: center; - .loader { - position: absolute; - top: add-unit($loaderTop); - right: 0; + .loader { + position: absolute; + top: add-unit($loaderTop); + right: 0; + } } } } -} -// ============================================================================= -// Sub Component: Selected Item -// ============================================================================= + // ============================================================================= + // Sub Component: Selected Item + // ============================================================================= -.selectionChip { - background-color: var(--theme-color-surface-base-base4); - border-radius: var(--theme-sizing-radius-default); - padding: var(--base-sizing-1x) var(--base-sizing-8x); - display: flex; - gap: var(--base-sizing-1x) var(--base-sizing-8x); -} + .selectionChip { + background-color: var(--theme-color-surface-base-base4); + border-radius: var(--theme-sizing-radius-default); + padding: var(--base-sizing-1x) var(--base-sizing-8x); + display: flex; + gap: var(--base-sizing-1x) var(--base-sizing-8x); + } -.label { - color: var(--theme-color-text-base-subtitle); + .label { + color: var(--theme-color-text-base-subtitle); + } } diff --git a/src/lib/components/Skeleton/Skeleton.module.scss b/src/lib/components/Skeleton/Skeleton.module.scss index aa4b7ac..4ffd3ea 100644 --- a/src/lib/components/Skeleton/Skeleton.module.scss +++ b/src/lib/components/Skeleton/Skeleton.module.scss @@ -1,36 +1,38 @@ -.skeleton { - &.table { - display: flex; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-22x); - flex-direction: column; +@layer motif-ui { + .skeleton { + &.table { + display: flex; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-22x); + flex-direction: column; - div { - height: var(--base-sizing-10x); - width: 100%; - border-radius: var(--base-sizing-4x); - &:nth-child(1) { + div { + height: var(--base-sizing-10x); width: 100%; + border-radius: var(--base-sizing-4x); + &:nth-child(1) { + width: 100%; + } + &:nth-child(2) { + width: 100%; + } + &:nth-child(3) { + width: 100%; + } } - &:nth-child(2) { - width: 100%; - } - &:nth-child(3) { - width: 100%; - } - } - &.pulse div { - animation: pulse 1s linear infinite alternate; + &.pulse div { + animation: pulse 1s linear infinite alternate; + } } - } - @keyframes pulse { - 0% { - background-color: #dddddd; - } - 100% { - background-color: #efefef; + @keyframes pulse { + 0% { + background-color: #dddddd; + } + 100% { + background-color: #efefef; + } } } } diff --git a/src/lib/components/Slider/Slider.module.scss b/src/lib/components/Slider/Slider.module.scss index 22ff2db..053d567 100644 --- a/src/lib/components/Slider/Slider.module.scss +++ b/src/lib/components/Slider/Slider.module.scss @@ -32,137 +32,139 @@ $color-types: ( border-color: $borderDisabledColor; } -@each $size, $progressHeight, $thumb, $thumbHover, $thumbBorder, $marginTop, $horizontalPadding in $sizes-positions { - .#{$size} { - &.Root { - min-height: var(--base-sizing-#{$thumbHover}); - min-width: var(--base-sizing-128x); +@layer motif-ui { + @each $size, $progressHeight, $thumb, $thumbHover, $thumbBorder, $marginTop, $horizontalPadding in $sizes-positions { + .#{$size} { + &.Root { + min-height: var(--base-sizing-#{$thumbHover}); + min-width: var(--base-sizing-128x); - &.inFormField { - margin: var(--base-sizing-#{$marginTop}) var(--base-sizing-#{$horizontalPadding}) 0; + &.inFormField { + margin: var(--base-sizing-#{$marginTop}) var(--base-sizing-#{$horizontalPadding}) 0; + } } - } - .tooltip { - bottom: calc(var(--base-sizing-#{$thumb}) - var(--base-sizing-20x)); - } - .fill, - .track, - .mRangeContainer::after { - height: var(--base-sizing-#{$progressHeight}); - } - .mRangeContainer { - min-width: var(--base-sizing-#{$thumb}); - } - - .mRange { - &::-webkit-slider-thumb { - @include slider-size-thumb($thumb, $thumbBorder, $thumbHover); + .tooltip { + bottom: calc(var(--base-sizing-#{$thumb}) - var(--base-sizing-20x)); } - &::-moz-range-thumb { - @include slider-size-thumb($thumb, $thumbBorder, $thumbHover); + .fill, + .track, + .mRangeContainer::after { + height: var(--base-sizing-#{$progressHeight}); } - } - } -} - -@each $variant, $color, $borderColor, $disabledColor, $borderDisabledColor in $color-types { - .#{$variant} { - .fill { - background: $color; - } - .mRange { - &::-webkit-slider-thumb { - border-color: $borderColor; + .mRangeContainer { + min-width: var(--base-sizing-#{$thumb}); } - &::-moz-range-thumb { - border-color: $borderColor; + + .mRange { + &::-webkit-slider-thumb { + @include slider-size-thumb($thumb, $thumbBorder, $thumbHover); + } + &::-moz-range-thumb { + @include slider-size-thumb($thumb, $thumbBorder, $thumbHover); + } } } - &.disabled { - cursor: not-allowed; + } + + @each $variant, $color, $borderColor, $disabledColor, $borderDisabledColor in $color-types { + .#{$variant} { .fill { - background: $disabledColor; + background: $color; } .mRange { &::-webkit-slider-thumb { - @include slider-color-thumb-disabled($borderDisabledColor); + border-color: $borderColor; } &::-moz-range-thumb { - @include slider-color-thumb-disabled($borderDisabledColor); + border-color: $borderColor; + } + } + &.disabled { + cursor: not-allowed; + .fill { + background: $disabledColor; + } + .mRange { + &::-webkit-slider-thumb { + @include slider-color-thumb-disabled($borderDisabledColor); + } + &::-moz-range-thumb { + @include slider-color-thumb-disabled($borderDisabledColor); + } } } } } -} -.Root { - position: relative; - display: flex; - cursor: pointer; - align-items: center; -} - -.mRangeContainer { - top: 0; - bottom: 0; - position: absolute; -} - -.mRange { - position: absolute; - inset: 0; - appearance: none; - background: transparent; - z-index: 1; - pointer-events: none; - margin: 0; + .Root { + position: relative; + display: flex; + cursor: pointer; + align-items: center; + } - &:hover + .tooltip { - @include pop-in; + .mRangeContainer { + top: 0; + bottom: 0; + position: absolute; } - &::-webkit-slider-thumb { + .mRange { + position: absolute; + inset: 0; appearance: none; - @include slider-style-thumb; - } - &::-moz-range-thumb { - @include slider-style-thumb; - } -} + background: transparent; + z-index: 1; + pointer-events: none; + margin: 0; -.tooltip { - @include pop-default; - transform-origin: center left; - bottom: auto; - position: absolute; - transform: translateX(-50%) translateY(-100%); - background: var(--theme-color-text-secondary-active); - padding: var(--base-sizing-4x) var(--base-sizing-8x); - border-radius: var(--theme-sizing-radius-default); - color: var(--theme-color-text-base-text-light); - z-index: 1; + &:hover + .tooltip { + @include pop-in; + } + + &::-webkit-slider-thumb { + appearance: none; + @include slider-style-thumb; + } + &::-moz-range-thumb { + @include slider-style-thumb; + } + } - &::after { - content: " "; + .tooltip { + @include pop-default; + transform-origin: center left; + bottom: auto; position: absolute; - top: 100%; - left: 50%; - transform: translateX(-50%) translateY(-1px); - border-width: var(--base-sizing-6x); - border-style: solid; - border-color: var(--theme-color-text-secondary-active) transparent transparent; + transform: translateX(-50%) translateY(-100%); + background: var(--theme-color-text-secondary-active); + padding: var(--base-sizing-4x) var(--base-sizing-8x); + border-radius: var(--theme-sizing-radius-default); + color: var(--theme-color-text-base-text-light); + z-index: 1; + + &::after { + content: " "; + position: absolute; + top: 100%; + left: 50%; + transform: translateX(-50%) translateY(-1px); + border-width: var(--base-sizing-6x); + border-style: solid; + border-color: var(--theme-color-text-secondary-active) transparent transparent; + } } -} -.fill { - position: absolute; - border-radius: var(--theme-sizing-radius-round); -} + .fill { + position: absolute; + border-radius: var(--theme-sizing-radius-round); + } -.track { - position: absolute; - left: 0; - right: 0; - background: var(--theme-color-surface-base-base4); - border-radius: var(--theme-sizing-radius-round); + .track { + position: absolute; + left: 0; + right: 0; + background: var(--theme-color-surface-base-base4); + border-radius: var(--theme-sizing-radius-round); + } } diff --git a/src/lib/components/SliderRange/SliderRange.module.scss b/src/lib/components/SliderRange/SliderRange.module.scss index db8ee80..662b649 100644 --- a/src/lib/components/SliderRange/SliderRange.module.scss +++ b/src/lib/components/SliderRange/SliderRange.module.scss @@ -1,20 +1,22 @@ @use "../Slider/sliderValues" as *; -.Root { - position: relative; +@layer motif-ui { + .Root { + position: relative; - > :last-child { - position: absolute; - top: 0; - left: 0; - right: 0; + > :last-child { + position: absolute; + top: 0; + left: 0; + right: 0; + } } -} -@each $size, $progressHeight, $thumb, $thumbHover, $thumbBorder, $marginTop, $horizontalPadding in $sizes-positions { - .#{$size} { - &.inFormField { - margin: var(--base-sizing-#{$marginTop}) var(--base-sizing-#{$horizontalPadding}) 0; + @each $size, $progressHeight, $thumb, $thumbHover, $thumbBorder, $marginTop, $horizontalPadding in $sizes-positions { + .#{$size} { + &.inFormField { + margin: var(--base-sizing-#{$marginTop}) var(--base-sizing-#{$horizontalPadding}) 0; + } } } } diff --git a/src/lib/components/Stepper/Stepper.module.scss b/src/lib/components/Stepper/Stepper.module.scss index 2270348..b012b26 100644 --- a/src/lib/components/Stepper/Stepper.module.scss +++ b/src/lib/components/Stepper/Stepper.module.scss @@ -3,200 +3,202 @@ $variants: ("primary", "secondary", "success", "warning", "danger"); $types: (("dot", var(--base-sizing-12x)), ("number", var(--base-sizing-24x)), ("icon", var(--base-sizing-40x)), ("text", var(--base-sizing-18x))); -.Root { - gap: var(--base-sizing-16x); - padding: var(--base-sizing-4x); -} - -.stepCount { - @include font("base", "sm", "500"); - color: var(--theme-color-text-base-caption); -} - -.stepList { - display: flex; -} +@layer motif-ui { + .Root { + gap: var(--base-sizing-16x); + padding: var(--base-sizing-4x); + } -.stepItem { - display: flex; + .stepCount { + @include font("base", "sm", "500"); + color: var(--theme-color-text-base-caption); + } - .stepHeader { + .stepList { display: flex; - align-items: center; - &.item-vertical { - flex-direction: column; - gap: var(--base-sizing-4x); - } - &.item-horizontal { - gap: var(--base-sizing-8x); - } } - .stepIndicator { - border-radius: var(--theme-sizing-radius-round); - background-color: var(--theme-color-surface-base-base7); - color: var(--theme-color-text-base-global-light); - @include transition(background-color); - @include flex-center; + .stepItem { + display: flex; - &.stepNumber { - @include font("base", "xxs", "700"); + .stepHeader { + display: flex; + align-items: center; + &.item-vertical { + flex-direction: column; + gap: var(--base-sizing-4x); + } + &.item-horizontal { + gap: var(--base-sizing-8x); + } } - } - .stepIcon { - .icon & { - font-size: var(--base-sizing-28x); + .stepIndicator { + border-radius: var(--theme-sizing-radius-round); + background-color: var(--theme-color-surface-base-base7); + color: var(--theme-color-text-base-global-light); + @include transition(background-color); + @include flex-center; + + &.stepNumber { + @include font("base", "xxs", "700"); + } } - .number & { - font-size: var(--base-sizing-16x); + + .stepIcon { + .icon & { + font-size: var(--base-sizing-28x); + } + .number & { + font-size: var(--base-sizing-16x); + } } - } - .dotStatusIcon { - pointer-events: none; - font-size: var(--base-sizing-22x); - width: var(--base-sizing-12x); - height: var(--base-sizing-12x); - @include flex-center; - } + .dotStatusIcon { + pointer-events: none; + font-size: var(--base-sizing-22x); + width: var(--base-sizing-12x); + height: var(--base-sizing-12x); + @include flex-center; + } - .title { - color: var(--theme-color-text-base-caption); - @include font("base", "sm", "500"); - } + .title { + color: var(--theme-color-text-base-caption); + @include font("base", "sm", "500"); + } - &.clickable .stepHeader { - cursor: pointer; - } + &.clickable .stepHeader { + cursor: pointer; + } - &.upcoming.clickable:hover .stepIndicator { - background-color: var(--theme-color-surface-base-base6); - } + &.upcoming.clickable:hover .stepIndicator { + background-color: var(--theme-color-surface-base-base6); + } - &.error { - .stepIndicator { - background-color: var(--theme-color-surface-danger-default); + &.error { + .stepIndicator { + background-color: var(--theme-color-surface-danger-default); + } + .title, + .dotStatusIcon { + color: var(--theme-color-text-danger-default); + } } - .title, - .dotStatusIcon { - color: var(--theme-color-text-danger-default); + + &.disabled { + pointer-events: none; + .title, + .dotStatusIcon { + color: var(--theme-color-text-base-caption); + } + .stepIndicator { + background-color: var(--theme-color-surface-base-base7); + color: var(--theme-color-text-base-global-light); + } } } - &.disabled { - pointer-events: none; - .title, - .dotStatusIcon { - color: var(--theme-color-text-base-caption); + .vertical { + display: grid; + row-gap: var(--base-sizing-8x); + + .stepList { + grid-row: 2; + flex-direction: column; } - .stepIndicator { - background-color: var(--theme-color-surface-base-base7); - color: var(--theme-color-text-base-global-light); + + .stepItem { + flex-direction: column; + + &:not(:last-child)::after { + display: block; + content: ""; + box-sizing: content-box; + margin: var(--base-sizing-8x) 0; + width: 50%; + height: var(--base-sizing-80x); + top: 100%; + border-right: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + } } - } -} -.vertical { - display: grid; - row-gap: var(--base-sizing-8x); + .stepCount { + text-align: center; + } - .stepList { - grid-row: 2; - flex-direction: column; + .stepContent { + grid-row: 2; + } } - .stepItem { + .horizontal { + display: flex; flex-direction: column; + width: fit-content; - &:not(:last-child)::after { - display: block; + .stepItem:not(:last-child)::after { content: ""; box-sizing: content-box; - margin: var(--base-sizing-8x) 0; - width: 50%; - height: var(--base-sizing-80x); - top: 100%; - border-right: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + margin: 0 var(--base-sizing-8x); + height: 50%; + width: var(--base-sizing-80x); + left: 100%; + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); } - } - .stepCount { - text-align: center; - } - - .stepContent { - grid-row: 2; - } -} - -.horizontal { - display: flex; - flex-direction: column; - width: fit-content; - - .stepItem:not(:last-child)::after { - content: ""; - box-sizing: content-box; - margin: 0 var(--base-sizing-8x); - height: 50%; - width: var(--base-sizing-80x); - left: 100%; - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - } - - .stepCount { - align-self: flex-end; - } -} - -@each $type, $size in $types { - .#{$type} { - .stepIndicator { - width: $size; - height: $size; + .stepCount { + align-self: flex-end; } } -} -@each $variant in $variants { - .count-#{$variant} .stepCountActive { - color: var(--theme-color-text-#{$variant}-default); + @each $type, $size in $types { + .#{$type} { + .stepIndicator { + width: $size; + height: $size; + } + } } - .#{$variant}.stepItem:not(.error, .disabled) { - .dotStatusIcon { + @each $variant in $variants { + .count-#{$variant} .stepCountActive { color: var(--theme-color-text-#{$variant}-default); } - &.active { - .title { - color: var(--theme-color-text-#{$variant}-active); - } - .stepIndicator { - background-color: var(--theme-color-surface-#{$variant}-active); - outline: var(--base-sizing-4x) solid var(--theme-color-border-#{$variant}-focus, var(--theme-color-border-#{$variant}-disabled)); + .#{$variant}.stepItem:not(.error, .disabled) { + .dotStatusIcon { + color: var(--theme-color-text-#{$variant}-default); } - } - &.completed { - .title { - color: if($variant == "secondary", var(--theme-color-text-#{$variant}-hover), var(--theme-color-text-#{$variant}-default)); - } - .stepIndicator { - background-color: var(--theme-color-surface-#{$variant}-default); - } - &.clickable .stepHeader:hover { + &.active { .title { - color: var(--theme-color-text-#{$variant}-hover); + color: var(--theme-color-text-#{$variant}-active); } .stepIndicator { - background-color: var(--theme-color-surface-#{$variant}-hover); + background-color: var(--theme-color-surface-#{$variant}-active); + outline: var(--base-sizing-4x) solid var(--theme-color-border-#{$variant}-focus, var(--theme-color-border-#{$variant}-disabled)); } } - &:not(:last-child)::after { - border-color: var(--theme-color-border-#{$variant}-default); + &.completed { + .title { + color: if($variant == "secondary", var(--theme-color-text-#{$variant}-hover), var(--theme-color-text-#{$variant}-default)); + } + .stepIndicator { + background-color: var(--theme-color-surface-#{$variant}-default); + } + &.clickable .stepHeader:hover { + .title { + color: var(--theme-color-text-#{$variant}-hover); + } + .stepIndicator { + background-color: var(--theme-color-surface-#{$variant}-hover); + } + } + + &:not(:last-child)::after { + border-color: var(--theme-color-border-#{$variant}-default); + } } } } diff --git a/src/lib/components/Switch/Switch.module.scss b/src/lib/components/Switch/Switch.module.scss index 5b92873..b56485d 100644 --- a/src/lib/components/Switch/Switch.module.scss +++ b/src/lib/components/Switch/Switch.module.scss @@ -8,69 +8,71 @@ $sizes: ( ("lg", "24x", "24x", "12x", "10x") ); -.Root { - display: flex; - align-items: flex-start; - input[type="checkbox"] { - display: none; +@layer motif-ui { + .Root { + display: flex; + align-items: flex-start; + input[type="checkbox"] { + display: none; + } } -} -.slider { - display: flex; - border-radius: var(--theme-sizing-radius-round); - background: var(--theme-color-surface-base-base7); - cursor: pointer; - @include transition(background-color); + .slider { + display: flex; + border-radius: var(--theme-sizing-radius-round); + background: var(--theme-color-surface-base-base7); + cursor: pointer; + @include transition(background-color); - &::before { - content: ""; - background: var(--theme-color-surface-base-bg-light); - border-radius: 50%; - @include transition(transform); - } - .checked & { - background: var(--theme-color-surface-primary-default); + &::before { + content: ""; + background: var(--theme-color-surface-base-bg-light); + border-radius: 50%; + @include transition(transform); + } + .checked & { + background: var(--theme-color-surface-primary-default); + } } -} - -.label { - color: var(--theme-color-text-base-title-light); -} -.disabled { - cursor: default; - pointer-events: none; - - &.checked .slider { - background: var(--theme-color-surface-primary-disabled); - } - .slider { - background: var(--theme-color-surface-base-base5); - } .label { - color: var(--theme-color-text-base-disabled); + color: var(--theme-color-text-base-title-light); } -} -@each $size, $paddingH, $circleSize, $gap, $paddingV in $sizes { - .#{$size} { - gap: var(--base-sizing-#{$gap}); - .label { - @include font("base", $size, "500"); + .disabled { + cursor: default; + pointer-events: none; + + &.checked .slider { + background: var(--theme-color-surface-primary-disabled); } .slider { - padding: var(--base-sizing-2x) var(--base-sizing-#{$paddingH}) var(--base-sizing-2x) var(--base-sizing-2x); - &::before { - width: var(--base-sizing-#{$circleSize}); - height: var(--base-sizing-#{$circleSize}); - } + background: var(--theme-color-surface-base-base5); } - &.checked .slider::before { - transform: translateX(calc(var(--base-sizing-#{$paddingH}) - var(--base-sizing-2x))); + .label { + color: var(--theme-color-text-base-disabled); } - &.inFormField { - padding: var(--base-sizing-#{$paddingV}) 0; + } + @each $size, $paddingH, $circleSize, $gap, $paddingV in $sizes { + .#{$size} { + gap: var(--base-sizing-#{$gap}); + + .label { + @include font("base", $size, "500"); + } + .slider { + padding: var(--base-sizing-2x) var(--base-sizing-#{$paddingH}) var(--base-sizing-2x) var(--base-sizing-2x); + &::before { + width: var(--base-sizing-#{$circleSize}); + height: var(--base-sizing-#{$circleSize}); + } + } + &.checked .slider::before { + transform: translateX(calc(var(--base-sizing-#{$paddingH}) - var(--base-sizing-2x))); + } + &.inFormField { + padding: var(--base-sizing-#{$paddingV}) 0; + } } } } diff --git a/src/lib/components/Tab/Tab.module.scss b/src/lib/components/Tab/Tab.module.scss index 8d05c9c..44427ec 100644 --- a/src/lib/components/Tab/Tab.module.scss +++ b/src/lib/components/Tab/Tab.module.scss @@ -7,103 +7,105 @@ } } -.Root { - display: flex; - flex-direction: column; -} - -.tabHeader { - padding-bottom: var(--base-sizing-8x); - display: flex; -} - -.left { - align-items: flex-start; -} -.center { - align-items: center; -} -.right { - align-items: flex-end; -} -.fill .tabHeader { - min-width: 0; - flex-wrap: wrap; - .tabItem { - flex: 1; +@layer motif-ui { + .Root { + display: flex; + flex-direction: column; } -} - -.solid .tabHeader { - gap: var(--base-sizing-4x); -} - -// ============================================================================= -// Sub Component: TabItem -// ============================================================================= -.tabItem { - appearance: none; - display: inline-flex; - align-items: center; - justify-content: center; - border: none; - gap: var(--base-sizing-10x); - user-select: none; - white-space: nowrap; - padding: var(--base-sizing-10x) var(--base-sizing-20x); - border-bottom: solid var(--base-sizing-2x) var(--theme-color-surface-base-base6); - cursor: pointer; - &:disabled, - &.active { - pointer-events: none; - cursor: default; + .tabHeader { + padding-bottom: var(--base-sizing-8x); + display: flex; } - .tabItem-title { - @include font; + .left { + align-items: flex-start; + } + .center { + align-items: center; + } + .right { + align-items: flex-end; + } + .fill .tabHeader { + min-width: 0; + flex-wrap: wrap; + .tabItem { + flex: 1; + } } - @include focus-ring; - @include transition(border-color background-color); - * { - @include transition(color); + .solid .tabHeader { + gap: var(--base-sizing-4x); } - .solid & { - @include color-span-and-icon(--theme-color-text-light-default); - background: var(--theme-color-surface-light-default); - border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; - box-sizing: border-box; + // ============================================================================= + // Sub Component: TabItem + // ============================================================================= + .tabItem { + appearance: none; + display: inline-flex; + align-items: center; + justify-content: center; + border: none; + gap: var(--base-sizing-10x); + user-select: none; + white-space: nowrap; + padding: var(--base-sizing-10x) var(--base-sizing-20x); + border-bottom: solid var(--base-sizing-2x) var(--theme-color-surface-base-base6); + cursor: pointer; - &:hover { - @include color-span-and-icon(--theme-color-text-primary-default); - border-color: var(--theme-color-border-primary-default); - } + &:disabled, &.active { - @include color-span-and-icon(--theme-color-text-base-global-light); - background-color: var(--theme-color-surface-primary-default); - border: none; - } - &:disabled { - @include color-span-and-icon(--theme-color-text-light-disabled); + pointer-events: none; + cursor: default; } - } - .underline & { - background: var(--theme-color-surface-base-bg-light); - @include color-span-and-icon(--theme-color-text-base-subtitle-light); + .tabItem-title { + @include font; + } - &:hover { - @include color-span-and-icon(--theme-color-text-base-title-light); - border-bottom-color: var(--theme-color-border-light-hover); + @include focus-ring; + @include transition(border-color background-color); + * { + @include transition(color); } - &.active { - @include color-span-and-icon(--theme-color-text-primary-default); - border-bottom-color: var(--theme-color-border-primary-default); + + .solid & { + @include color-span-and-icon(--theme-color-text-light-default); + background: var(--theme-color-surface-light-default); + border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; + box-sizing: border-box; + + &:hover { + @include color-span-and-icon(--theme-color-text-primary-default); + border-color: var(--theme-color-border-primary-default); + } + &.active { + @include color-span-and-icon(--theme-color-text-base-global-light); + background-color: var(--theme-color-surface-primary-default); + border: none; + } + &:disabled { + @include color-span-and-icon(--theme-color-text-light-disabled); + } } - &:disabled { - @include color-span-and-icon(--theme-color-text-light-disabled); + + .underline & { + background: var(--theme-color-surface-base-bg-light); + @include color-span-and-icon(--theme-color-text-base-subtitle-light); + + &:hover { + @include color-span-and-icon(--theme-color-text-base-title-light); + border-bottom-color: var(--theme-color-border-light-hover); + } + &.active { + @include color-span-and-icon(--theme-color-text-primary-default); + border-bottom-color: var(--theme-color-border-primary-default); + } + &:disabled { + @include color-span-and-icon(--theme-color-text-light-disabled); + } } } } diff --git a/src/lib/components/Table/Table.module.scss b/src/lib/components/Table/Table.module.scss index 8783524..a0d0567 100644 --- a/src/lib/components/Table/Table.module.scss +++ b/src/lib/components/Table/Table.module.scss @@ -2,286 +2,288 @@ $row-color-variants: "primary", "secondary", "light", "success", "danger", "warning", "info"; -.Root { - display: table; - &.distributeColsEvenly table { - table-layout: fixed; - } - &.fluid { - &, - table { - width: 100%; +@layer motif-ui { + .Root { + display: table; + &.distributeColsEvenly table { + table-layout: fixed; } - } - - table { - text-align: left; - border-spacing: 0; - } - - thead, - tfoot { - &.transparent { - background-color: transparent; + &.fluid { + &, + table { + width: 100%; + } } - &.solid { - background-color: var(--theme-color-surface-light-default); + + table { + text-align: left; + border-spacing: 0; } - &.opposite { - background-color: var(--theme-color-surface-secondary-default); - th { - color: var(--theme-color-text-base-global-light); - .thContent .sortButton { + + thead, + tfoot { + &.transparent { + background-color: transparent; + } + &.solid { + background-color: var(--theme-color-surface-light-default); + } + &.opposite { + background-color: var(--theme-color-surface-secondary-default); + th { color: var(--theme-color-text-base-global-light); + .thContent .sortButton { + color: var(--theme-color-text-base-global-light); + } } } } - } - thead { - tr.trColumnFilters th { - padding: var(--base-sizing-8x); - .thFilterContent { - display: flex; - flex-direction: column; + thead { + tr.trColumnFilters th { + padding: var(--base-sizing-8x); + .thFilterContent { + display: flex; + flex-direction: column; + } } - } - th { - color: var(--theme-color-text-base-title); - @include font("base", "sm", "700"); - overflow: hidden; + th { + color: var(--theme-color-text-base-title); + @include font("base", "sm", "700"); + overflow: hidden; - .thContent { - display: inline-flex; - gap: var(--base-sizing-8x); + .thContent { + display: inline-flex; + gap: var(--base-sizing-8x); - .sortButton { - color: var(--theme-color-text-base-title); + .sortButton { + color: var(--theme-color-text-base-title); + } } } } - } - tbody { - td { - color: var(--theme-color-text-base-title); - @include font("body", "sm"); - overflow-wrap: break-word; - word-break: break-all; - hyphens: auto; - } - &.striped { - tr:nth-child(even) { - background-color: var(--theme-color-surface-base-base2); + tbody { + td { + color: var(--theme-color-text-base-title); + @include font("body", "sm"); + overflow-wrap: break-word; + word-break: break-all; + hyphens: auto; + } + &.striped { + tr:nth-child(even) { + background-color: var(--theme-color-surface-base-base2); + } } - } - tr.selected { - @include transition(background-color); - background-color: var(--theme-color-surface-primary-negative); + tr.selected { + @include transition(background-color); + background-color: var(--theme-color-surface-primary-negative); + } } - } - tr { - &.loading, - &.emptyData { - pointer-events: none; - } - &.headerRow th { - padding: 0; + tr { + &.loading, + &.emptyData { + pointer-events: none; + } + &.headerRow th { + padding: 0; + } } - } - td, - th { - padding: var(--base-sizing-12x) var(--base-sizing-8x); + td, + th { + padding: var(--base-sizing-12x) var(--base-sizing-8x); - &.selectable { - text-align: center; - width: var(--base-sizing-32x); + &.selectable { + text-align: center; + width: var(--base-sizing-32x); + } } - } - tfoot { - th { - color: var(--theme-color-text-base-title); - @include font("base", "sm", "700"); - overflow: hidden; + tfoot { + th { + color: var(--theme-color-text-base-title); + @include font("base", "sm", "700"); + overflow: hidden; - &.customFooter { - padding: 0; - } + &.customFooter { + padding: 0; + } - &[colspan] { - text-align: right; + &[colspan] { + text-align: right; + } } } - } - &.hoverable tbody tr:hover { - background-color: var(--theme-color-surface-light-default); + &.hoverable tbody tr:hover { + background-color: var(--theme-color-surface-light-default); + } } -} -@each $variant in $row-color-variants { - .#{$variant} { - background-color: var(--theme-color-surface-#{$variant}-negative); + @each $variant in $row-color-variants { + .#{$variant} { + background-color: var(--theme-color-surface-#{$variant}-negative); + } } -} -.bordered { - &.cellBorders { - td, - th { - border-color: var(--theme-color-border-light-default); - border-style: solid; - border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) 0; - &:first-child { - border-left-width: var(--base-sizing-1x); + .bordered { + &.cellBorders { + td, + th { + border-color: var(--theme-color-border-light-default); + border-style: solid; + border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) 0; + &:first-child { + border-left-width: var(--base-sizing-1x); + } } - } - tbody tr:first-child td { - border-top-left-radius: var(--theme-sizing-radius-default); - border-top-right-radius: var(--theme-sizing-radius-default); - border-top-width: var(--base-sizing-1x); - } - thead tr:first-child th { - border-top-width: var(--base-sizing-1x); - &:first-child { + tbody tr:first-child td { border-top-left-radius: var(--theme-sizing-radius-default); - } - &:last-child { border-top-right-radius: var(--theme-sizing-radius-default); + border-top-width: var(--base-sizing-1x); } - } - - tbody:not(:has(+ tfoot)) tr:last-child td, - tfoot tr:last-child th { - &:first-child { - border-bottom-left-radius: var(--theme-sizing-radius-default); + thead tr:first-child th { + border-top-width: var(--base-sizing-1x); + &:first-child { + border-top-left-radius: var(--theme-sizing-radius-default); + } + &:last-child { + border-top-right-radius: var(--theme-sizing-radius-default); + } } - &:last-child { - border-bottom-right-radius: var(--theme-sizing-radius-default); + + tbody:not(:has(+ tfoot)) tr:last-child td, + tfoot tr:last-child th { + &:first-child { + border-bottom-left-radius: var(--theme-sizing-radius-default); + } + &:last-child { + border-bottom-right-radius: var(--theme-sizing-radius-default); + } } - } - // custom footer - tfoot tr:nth-child(2) th { - padding: 0; - } + // custom footer + tfoot tr:nth-child(2) th { + padding: 0; + } - thead + tbody tr:first-child td { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-top-width: 0; - } + thead + tbody tr:first-child td { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-top-width: 0; + } - // Body with footer - tbody:has(+ tfoot) { - tr:last-child td { - border-radius: 0; + // Body with footer + tbody:has(+ tfoot) { + tr:last-child td { + border-radius: 0; + } } - } - thead, - tfoot { - &.opposite { - th { - border-top-color: var(--theme-color-surface-secondary-default); - &:first-child { - border-left-color: var(--theme-color-surface-secondary-default); - } - &:last-child { - border-right-color: var(--theme-color-surface-secondary-default); + thead, + tfoot { + &.opposite { + th { + border-top-color: var(--theme-color-surface-secondary-default); + &:first-child { + border-left-color: var(--theme-color-surface-secondary-default); + } + &:last-child { + border-right-color: var(--theme-color-surface-secondary-default); + } } } } } - } - &.rowBorders { - table { - border-collapse: collapse; - } - tr { - border-bottom: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - &:first-child { - border-top: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + &.rowBorders { + table { + border-collapse: collapse; + } + tr { + border-bottom: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + &:first-child { + border-top: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + } } } } -} -.titleSection { - margin-bottom: var(--base-sizing-8x); - span { - display: block; - padding: var(--base-sizing-4x) var(--base-sizing-8x); + .titleSection { + margin-bottom: var(--base-sizing-8x); + span { + display: block; + padding: var(--base-sizing-4x) var(--base-sizing-8x); + } } -} - -.title { - color: var(--theme-color-text-base-title); - @include font("base", "lg", "600"); -} - -.subtitle { - color: var(--theme-color-text-base-subtitle); - @include font("base", "md", "500"); -} - -.headerRowContent { - display: flex; - gap: var(--base-sizing-8x); - align-items: center; -} -.header { - flex: 1; - padding: var(--base-sizing-10x) var(--base-sizing-8x); - @include font("base", "lg", "600"); -} + .title { + color: var(--theme-color-text-base-title); + @include font("base", "lg", "600"); + } -.filterInput { - flex-shrink: 0; - margin: var(--base-sizing-8x) var(--base-sizing-8x) var(--base-sizing-8x) auto; -} + .subtitle { + color: var(--theme-color-text-base-subtitle); + @include font("base", "md", "500"); + } -.footerForNumbers { - padding: var(--base-sizing-8x) var(--base-sizing-12x); - align-items: center; - display: flex; + .headerRowContent { + display: flex; + gap: var(--base-sizing-8x); + align-items: center; + } - &.hasPagination-center { - justify-content: center; + .header { + flex: 1; + padding: var(--base-sizing-10x) var(--base-sizing-8x); + @include font("base", "lg", "600"); } - &.hasPagination-right { - justify-content: flex-end; + + .filterInput { + flex-shrink: 0; + margin: var(--base-sizing-8x) var(--base-sizing-8x) var(--base-sizing-8x) auto; } - &.hasNumbers { - &.hasPagination-left { - flex-direction: row-reverse; - justify-content: space-between; - } + .footerForNumbers { + padding: var(--base-sizing-8x) var(--base-sizing-12x); + align-items: center; + display: flex; + &.hasPagination-center { - .totalRecordsLabel { - flex: 1; - } + justify-content: center; } &.hasPagination-right { - justify-content: space-between; + justify-content: flex-end; } - } - .totalRecordsLabel { - color: var(--theme-color-text-base-title); - @include font("body", "sm"); + &.hasNumbers { + &.hasPagination-left { + flex-direction: row-reverse; + justify-content: space-between; + } + &.hasPagination-center { + .totalRecordsLabel { + flex: 1; + } + } + &.hasPagination-right { + justify-content: space-between; + } + } + + .totalRecordsLabel { + color: var(--theme-color-text-base-title); + @include font("body", "sm"); + } } -} -.pagination { - display: flex; + .pagination { + display: flex; + } } diff --git a/src/lib/components/Text/Text.module.scss b/src/lib/components/Text/Text.module.scss index 38aba99..e4b89a7 100644 --- a/src/lib/components/Text/Text.module.scss +++ b/src/lib/components/Text/Text.module.scss @@ -20,25 +20,27 @@ $sizes: ( ("p3", "14x", "20x", 400, 0.9) ); -@each $type, $fontSize, $lineHeight, $fontWeight, $marginEnd in $sizes { - .#{$type} { - all: unset; - font-size: var(--base-sizing-#{$fontSize}); - line-height: var(--base-sizing-#{$lineHeight}); - font-weight: $fontWeight; - margin-top: $marginEnd + em; - margin-bottom: $marginEnd + em; +@layer motif-ui { + @each $type, $fontSize, $lineHeight, $fontWeight, $marginEnd in $sizes { + .#{$type} { + all: unset; + font-size: var(--base-sizing-#{$fontSize}); + line-height: var(--base-sizing-#{$lineHeight}); + font-weight: $fontWeight; + margin-top: $marginEnd + em; + margin-bottom: $marginEnd + em; + } } -} -.Root { - display: inline-block; -} + .Root { + display: inline-block; + } -.italic { - font-style: italic; -} + .italic { + font-style: italic; + } -.underline { - text-decoration: underline; + .underline { + text-decoration: underline; + } } diff --git a/src/lib/components/Textarea/Textarea.module.scss b/src/lib/components/Textarea/Textarea.module.scss index 24177cb..9bcae20 100644 --- a/src/lib/components/Textarea/Textarea.module.scss +++ b/src/lib/components/Textarea/Textarea.module.scss @@ -8,82 +8,84 @@ $sizes: ( ("lg", "10x", "20x", "sm") ); -.Root { - display: inline-flex; - flex-direction: column; -} +@layer motif-ui { + .Root { + display: inline-flex; + flex-direction: column; + } -.inFormField { - min-width: var(--base-sizing-190x); -} + .inFormField { + min-width: var(--base-sizing-190x); + } -.disabled { - .textArea, - .counterArea { - color: var(--theme-color-text-base-disabled); - border-color: var(--theme-color-border-light-disabled); - background-color: var(--theme-color-surface-base-base1); + .disabled { + .textArea, + .counterArea { + color: var(--theme-color-text-base-disabled); + border-color: var(--theme-color-border-light-disabled); + background-color: var(--theme-color-surface-base-base1); + } } -} -.textArea { - @include transition(border-color); - color: var(--theme-color-text-base-title); - background-color: var(--theme-color-surface-base-bg-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - outline: none; - resize: none; - margin: 0; + .textArea { + @include transition(border-color); + color: var(--theme-color-text-base-title); + background-color: var(--theme-color-surface-base-bg-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + outline: none; + resize: none; + margin: 0; - &::placeholder { - color: var(--theme-color-text-base-caption); - } - &:focus { - border-color: var(--theme-color-border-primary-default); - } - .hasCounter & { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - } - .success & { - border-color: var(--theme-color-border-success-default); - } - .error & { - border-color: var(--theme-color-border-danger-default); + &::placeholder { + color: var(--theme-color-text-base-caption); + } + &:focus { + border-color: var(--theme-color-border-primary-default); + } + .hasCounter & { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + } + .success & { + border-color: var(--theme-color-border-success-default); + } + .error & { + border-color: var(--theme-color-border-danger-default); + } } -} -.counterArea { - display: flex; - justify-content: flex-end; - align-items: center; - border-style: solid; - border-color: var(--theme-color-border-light-default); - border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) var(--base-sizing-1x); - border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); - color: var(--theme-color-text-base-caption); - background-color: var(--theme-color-surface-base-bg-light); + .counterArea { + display: flex; + justify-content: flex-end; + align-items: center; + border-style: solid; + border-color: var(--theme-color-border-light-default); + border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) var(--base-sizing-1x); + border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); + color: var(--theme-color-text-base-caption); + background-color: var(--theme-color-surface-base-bg-light); - .success & { - color: var(--theme-color-text-success-default); - border-color: var(--theme-color-border-success-default); - } - .error & { - color: var(--theme-color-text-danger-default); - border-color: var(--theme-color-border-danger-default); + .success & { + color: var(--theme-color-text-success-default); + border-color: var(--theme-color-border-success-default); + } + .error & { + color: var(--theme-color-text-danger-default); + border-color: var(--theme-color-border-danger-default); + } } -} -@each $size, $paddingV, $paddingH, $counterSize in $sizes { - .#{$size} { - .textArea { - @include font("body", $size); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - } - .counterArea { - @include font("body", $counterSize); - padding-right: var(--base-sizing-#{$paddingV}); + @each $size, $paddingV, $paddingH, $counterSize in $sizes { + .#{$size} { + .textArea { + @include font("body", $size); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + } + .counterArea { + @include font("body", $counterSize); + padding-right: var(--base-sizing-#{$paddingV}); + } } } } diff --git a/src/lib/components/TimePicker/TimePicker.module.scss b/src/lib/components/TimePicker/TimePicker.module.scss index e824e5a..218154a 100644 --- a/src/lib/components/TimePicker/TimePicker.module.scss +++ b/src/lib/components/TimePicker/TimePicker.module.scss @@ -11,115 +11,117 @@ $sizes: ( ("lg", "heading2", "8x", "16x", "56x", "40x", "4x", "6x", "12x", "12x", "24x") ); -.timeLabel { - color: var(--theme-color-text-primary-default); - text-align: center; -} +@layer motif-ui { + .timeLabel { + color: var(--theme-color-text-primary-default); + text-align: center; + } -.periodSelector { - display: flex; - justify-content: center; - border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); - button { - border: none; - border-radius: var(--theme-sizing-radius-default); - cursor: pointer; - user-select: none; - background: none; - color: var(--theme-color-text-light-disabled); - @include transition(color, "fast"); - - &:disabled { + .periodSelector { + display: flex; + justify-content: center; + border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + button { + border: none; + border-radius: var(--theme-sizing-radius-default); + cursor: pointer; + user-select: none; + background: none; color: var(--theme-color-text-light-disabled); - } - &.selected { - color: var(--theme-color-text-primary-default); + @include transition(color, "fast"); + + &:disabled { + color: var(--theme-color-text-light-disabled); + } + &.selected { + color: var(--theme-color-text-primary-default); + } } } -} - -.stripeContainer { - display: flex; - justify-content: center; - .timeStripe { - margin: 0; - list-style: none; + .stripeContainer { display: flex; - flex-direction: column; - overflow-y: auto; - - @include hidden-scrollbar; - } + justify-content: center; - button { - border: none; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-base-global-light); - border-radius: var(--base-radius-sm); - cursor: pointer; - @include transition(background-color, "fast"); + .timeStripe { + margin: 0; + list-style: none; + display: flex; + flex-direction: column; + overflow-y: auto; - &:hover { - background-color: var(--theme-color-surface-base-base1); + @include hidden-scrollbar; } - &.selected { - background-color: var(--theme-color-surface-primary-default); - color: var(--theme-color-text-base-global-light); + + button { + border: none; + color: var(--theme-color-text-base-subtitle); + background-color: var(--theme-color-surface-base-global-light); + border-radius: var(--base-radius-sm); + cursor: pointer; + @include transition(background-color, "fast"); + + &:hover { + background-color: var(--theme-color-surface-base-base1); + } + &.selected { + background-color: var(--theme-color-surface-primary-default); + color: var(--theme-color-text-base-global-light); + } } } -} -.abbrContainer { - display: flex; - justify-content: center; - background: var(--theme-color-surface-base-base1); + .abbrContainer { + display: flex; + justify-content: center; + background: var(--theme-color-surface-base-base1); - span { - text-align: center; - color: var(--theme-color-text-base-caption); + span { + text-align: center; + color: var(--theme-color-text-base-caption); + } } -} -@each $size, $labelFontSize, $timePeriodPaddingV, $timePeriodPaddingH, $numberWidth, $numberHeight, $numberGap, $stripePaddingV, $stripePaddingH, $periodGapH, $abbrGap in $sizes { - .#{$size} { - .timeLabel { - @include font("heading", $labelFontSize); - margin-bottom: map.get(pickerValues.$size, $size, "gapV"); - } + @each $size, $labelFontSize, $timePeriodPaddingV, $timePeriodPaddingH, $numberWidth, $numberHeight, $numberGap, $stripePaddingV, $stripePaddingH, $periodGapH, $abbrGap in $sizes { + .#{$size} { + .timeLabel { + @include font("heading", $labelFontSize); + margin-bottom: map.get(pickerValues.$size, $size, "gapV"); + } - .periodSelector { - padding: map.get(pickerValues.$size, $size, "gapV") 0; - gap: var(--base-sizing-#{$periodGapH}); + .periodSelector { + padding: map.get(pickerValues.$size, $size, "gapV") 0; + gap: var(--base-sizing-#{$periodGapH}); - button { - padding: var(--base-sizing-#{$timePeriodPaddingV}) var(--base-sizing-#{$timePeriodPaddingH}); - @include font("base", $size, "600"); + button { + padding: var(--base-sizing-#{$timePeriodPaddingV}) var(--base-sizing-#{$timePeriodPaddingH}); + @include font("base", $size, "600"); + } } - } - .stripeContainer { - max-height: calc(((var(--base-sizing-#{$numberGap}) + var(--base-sizing-#{$numberHeight})) * $items-to-show) + var(--base-sizing-#{$numberHeight}) * 0.7); - } + .stripeContainer { + max-height: calc(((var(--base-sizing-#{$numberGap}) + var(--base-sizing-#{$numberHeight})) * $items-to-show) + var(--base-sizing-#{$numberHeight}) * 0.7); + } - .abbrContainer { - padding: map.get(pickerValues.$size, $size, "gapV") 0; - gap: var(--base-sizing-#{$abbrGap}); + .abbrContainer { + padding: map.get(pickerValues.$size, $size, "gapV") 0; + gap: var(--base-sizing-#{$abbrGap}); - span { - width: var(--base-sizing-#{$numberWidth}); - @include font("base", $size, "500"); + span { + width: var(--base-sizing-#{$numberWidth}); + @include font("base", $size, "500"); + } } - } - .timeStripe { - gap: var(--base-sizing-#{$numberGap}); - padding: var(--base-sizing-#{$stripePaddingV}) var(--base-sizing-#{$stripePaddingH}); + .timeStripe { + gap: var(--base-sizing-#{$numberGap}); + padding: var(--base-sizing-#{$stripePaddingV}) var(--base-sizing-#{$stripePaddingH}); - button { - width: var(--base-sizing-#{$numberWidth}); - height: var(--base-sizing-#{$numberHeight}); - @include font("base", $size, "700"); + button { + width: var(--base-sizing-#{$numberWidth}); + height: var(--base-sizing-#{$numberHeight}); + @include font("base", $size, "700"); + } } } } diff --git a/src/lib/components/Timeline/Timeline.module.scss b/src/lib/components/Timeline/Timeline.module.scss index 8f4ba36..38772b6 100644 --- a/src/lib/components/Timeline/Timeline.module.scss +++ b/src/lib/components/Timeline/Timeline.module.scss @@ -55,256 +55,258 @@ $variants: ( } } -.Root { - display: flex; -} - -.item { - display: flex; - gap: var(--base-sizing-8x); -} - -.section { - display: flex; - flex-direction: column; - gap: var(--base-sizing-4x); - color: var(--theme-color-text-base-subtitle); -} - -.title { - @include font("base", "lg", "600"); -} - -.content { - @include font("body", "md"); -} - -.marker { - display: flex; - align-items: center; - - > * { - display: block; - border-radius: var(--theme-sizing-radius-round); +@layer motif-ui { + .Root { + display: flex; } - .outlined & span { - border-width: var(--base-sizing-2x); - border-style: solid; + .item { + display: flex; + gap: var(--base-sizing-8x); } - .markerDot { - width: var(--base-sizing-12x); - height: var(--base-sizing-12x); + .section { + display: flex; + flex-direction: column; + gap: var(--base-sizing-4x); + color: var(--theme-color-text-base-subtitle); } - .markerNumber { - width: var(--base-sizing-24x); - height: var(--base-sizing-24x); - @include font("base", "xxs", "700"); - @include flex-center; + + .title { + @include font("base", "lg", "600"); } - .markerIcon { - width: var(--base-sizing-40x); - height: var(--base-sizing-40x); - font-size: var(--base-sizing-24x); - @include flex-center; + + .content { + @include font("body", "md"); } -} -.vertical { - &, .marker { - flex-direction: column; - } + display: flex; + align-items: center; - .item { - padding-left: var(--base-sizing-8x); - padding-right: var(--base-sizing-8x); - } + > * { + display: block; + border-radius: var(--theme-sizing-radius-round); + } - &.before .item { - flex-direction: row-reverse; - text-align: right; - } - &.after .item { - flex-direction: row; - } - &.alternate .item { - display: grid; - grid-template-columns: 1fr auto 1fr; - .marker { - grid-column: 2; + .outlined & span { + border-width: var(--base-sizing-2x); + border-style: solid; } - .section { - grid-column: 3; + + .markerDot { + width: var(--base-sizing-12x); + height: var(--base-sizing-12x); } - &:nth-child(odd) { - grid-auto-flow: dense; - .section { - grid-column: 1; - text-align: right; - } + .markerNumber { + width: var(--base-sizing-24x); + height: var(--base-sizing-24x); + @include font("base", "xxs", "700"); + @include flex-center; + } + .markerIcon { + width: var(--base-sizing-40x); + height: var(--base-sizing-40x); + font-size: var(--base-sizing-24x); + @include flex-center; } } - &.start { + .vertical { + &, .marker { - justify-content: flex-start; - &:has(.markerDot) ~ .section { - margin-top: calc(-1 * var(--base-sizing-6x)); + flex-direction: column; + } + + .item { + padding-left: var(--base-sizing-8x); + padding-right: var(--base-sizing-8x); + } + + &.before .item { + flex-direction: row-reverse; + text-align: right; + } + &.after .item { + flex-direction: row; + } + &.alternate .item { + display: grid; + grid-template-columns: 1fr auto 1fr; + .marker { + grid-column: 2; + } + .section { + grid-column: 3; } - &:has(.markerIcon) ~ .section { - margin-top: var(--base-sizing-8x); + &:nth-child(odd) { + grid-auto-flow: dense; + .section { + grid-column: 1; + text-align: right; + } } } - .item:not(:last-child) { - .section { + &.start { + .marker { justify-content: flex-start; - padding-bottom: var(--base-sizing-24x); + &:has(.markerDot) ~ .section { + margin-top: calc(-1 * var(--base-sizing-6x)); + } + &:has(.markerIcon) ~ .section { + margin-top: var(--base-sizing-8x); + } } - .marker::after { - @include connection-line("vertical"); + + .item:not(:last-child) { + .section { + justify-content: flex-start; + padding-bottom: var(--base-sizing-24x); + } + .marker::after { + @include connection-line("vertical"); + } } } - } - &.center .item { - .section { - justify-content: center; - padding-top: var(--base-sizing-12x); - padding-bottom: var(--base-sizing-12x); - } - &:last-child .marker::after, - &:first-child .marker::before { - background-color: transparent; - } - .marker { - justify-content: center; - &::after, - &::before { - @include connection-line("vertical", "half"); + &.center .item { + .section { + justify-content: center; + padding-top: var(--base-sizing-12x); + padding-bottom: var(--base-sizing-12x); } - } - } - &.end { - .marker { - justify-content: flex-end; - &:has(.markerDot) ~ .section { - margin-bottom: calc(-1 * var(--base-sizing-4x)); + &:last-child .marker::after, + &:first-child .marker::before { + background-color: transparent; } - &:has(.markerIcon) ~ .section { - margin-bottom: var(--base-sizing-8x); + .marker { + justify-content: center; + &::after, + &::before { + @include connection-line("vertical", "half"); + } } } - .item:not(:first-child) { - .section { + &.end { + .marker { justify-content: flex-end; - padding-top: var(--base-sizing-24x); + &:has(.markerDot) ~ .section { + margin-bottom: calc(-1 * var(--base-sizing-4x)); + } + &:has(.markerIcon) ~ .section { + margin-bottom: var(--base-sizing-8x); + } } - .marker::before { - @include connection-line("vertical"); + .item:not(:first-child) { + .section { + justify-content: flex-end; + padding-top: var(--base-sizing-24x); + } + .marker::before { + @include connection-line("vertical"); + } } } } -} - -.horizontal { - &, - .marker { - flex-direction: row; - } - .item { - padding-top: var(--base-sizing-8x); - padding-bottom: var(--base-sizing-8x); - } - - &.before .item { - flex-direction: column-reverse; - } - &.after .item { - flex-direction: column; - } - &.alternate { - display: grid; - grid-template-rows: auto auto auto; + .horizontal { + &, + .marker { + flex-direction: row; + } .item { + padding-top: var(--base-sizing-8x); + padding-bottom: var(--base-sizing-8x); + } + + &.before .item { + flex-direction: column-reverse; + } + &.after .item { + flex-direction: column; + } + &.alternate { display: grid; - grid-row: 1 / -1; - /* stylelint-disable-next-line plugin/no-unsupported-browser-features */ - grid-template-rows: subgrid; + grid-template-rows: auto auto auto; + + .item { + display: grid; + grid-row: 1 / -1; + /* stylelint-disable-next-line plugin/no-unsupported-browser-features */ + grid-template-rows: subgrid; + .marker { + grid-row: 2; + } + .section { + grid-row: 3; + align-self: start; + } + &:nth-child(odd) .section { + grid-row: 1; + align-self: end; + } + } + } + + &.start .item { .marker { - grid-row: 2; + justify-content: flex-start; } .section { - grid-row: 3; - align-self: start; + text-align: left; } - &:nth-child(odd) .section { - grid-row: 1; - align-self: end; + &:not(:last-child) { + .section { + padding-right: var(--base-sizing-24x); + } + .marker::after { + @include connection-line("horizontal"); + } } } - } - - &.start .item { - .marker { - justify-content: flex-start; - } - .section { - text-align: left; - } - &:not(:last-child) { + &.center .item { + .marker { + justify-content: center; + } .section { - padding-right: var(--base-sizing-24x); + text-align: center; + padding-left: var(--base-sizing-12x); + padding-right: var(--base-sizing-12x); } - .marker::after { - @include connection-line("horizontal"); + &:last-child .marker::after, + &:first-child .marker::before { + background-color: transparent; + } + .marker::after, + .marker::before { + @include connection-line("horizontal", true); } } - } - &.center .item { - .marker { - justify-content: center; - } - .section { - text-align: center; - padding-left: var(--base-sizing-12x); - padding-right: var(--base-sizing-12x); - } - &:last-child .marker::after, - &:first-child .marker::before { - background-color: transparent; - } - .marker::after, - .marker::before { - @include connection-line("horizontal", true); - } - } - &.end .item { - .marker { - justify-content: flex-end; - } - .section { - text-align: right; - } - &:not(:first-child) { + &.end .item { + .marker { + justify-content: flex-end; + } .section { - padding-left: var(--base-sizing-24x); + text-align: right; } - .marker::before { - @include connection-line("horizontal"); + &:not(:first-child) { + .section { + padding-left: var(--base-sizing-24x); + } + .marker::before { + @include connection-line("horizontal"); + } } } } -} -@each $variant, $fill-text-token in $variants { - .#{$variant} { - @include marker-variant($variant, $fill-text-token); - } - .item.#{$variant} { - @include marker-variant($variant, $fill-text-token, $self: true); + @each $variant, $fill-text-token in $variants { + .#{$variant} { + @include marker-variant($variant, $fill-text-token); + } + .item.#{$variant} { + @include marker-variant($variant, $fill-text-token, $self: true); + } } } diff --git a/src/lib/components/Toast/Toast.module.scss b/src/lib/components/Toast/Toast.module.scss index bb665fa..2102853 100644 --- a/src/lib/components/Toast/Toast.module.scss +++ b/src/lib/components/Toast/Toast.module.scss @@ -21,92 +21,95 @@ $animation-keyframes: ( ("slideInBottom", translateY(100%), translateY(0%), 0, 1), ("slideOutBottom", translateY(0%), translateY(100%), 1, 0) ); -@each $animation, $transformZero, $transformHundred, $opacityZero, $opacityHundred in $animation-keyframes { - @keyframes #{$animation} { - 0% { - opacity: $opacityZero; - transform: $transformZero; - } - 100% { - opacity: $opacityHundred; - transform: $transformHundred; + +@layer motif-ui { + @each $animation, $transformZero, $transformHundred, $opacityZero, $opacityHundred in $animation-keyframes { + @keyframes #{$animation} { + 0% { + opacity: $opacityZero; + transform: $transformZero; + } + 100% { + opacity: $opacityHundred; + transform: $transformHundred; + } } } -} -.Root { - position: relative; - display: flex; - flex-wrap: nowrap; - @include width-or-width-below-screen-size(--theme-grid-breakpoint-sm, --base-sizing-256x, calc(100vw - var(--base-sizing-72x))); - padding: var(--base-sizing-10x) var(--base-sizing-20x); - gap: var(--base-sizing-10x); - border-radius: var(--theme-sizing-radius-default); - align-items: flex-start; + .Root { + position: relative; + display: flex; + flex-wrap: nowrap; + @include width-or-width-below-screen-size(--theme-grid-breakpoint-sm, --base-sizing-256x, calc(100vw - var(--base-sizing-72x))); + padding: var(--base-sizing-10x) var(--base-sizing-20x); + gap: var(--base-sizing-10x); + border-radius: var(--theme-sizing-radius-default); + align-items: flex-start; - .icon { - align-self: center; + .icon { + align-self: center; + } } -} -@each $color-type, $color in $color-types { - .#{$color-type} { - color: var(--theme-color-text-base-title); - background-color: var(--theme-color-surface-#{$color}-negative); - border-left-color: var(--theme-color-text-#{$color}-active); + @each $color-type, $color in $color-types { + .#{$color-type} { + color: var(--theme-color-text-base-title); + background-color: var(--theme-color-surface-#{$color}-negative); + border-left-color: var(--theme-color-text-#{$color}-active); - .title { - color: var(--theme-color-text-#{$color}-active); + .title { + color: var(--theme-color-text-#{$color}-active); + } } } -} -.contentContainer { - display: flex; - flex-direction: column; - gap: var(--base-sizing-4x); - flex-grow: 1; - max-height: 90vh; - overflow-y: scroll; - @include hidden-scrollbar; + .contentContainer { + display: flex; + flex-direction: column; + gap: var(--base-sizing-4x); + flex-grow: 1; + max-height: 90vh; + overflow-y: scroll; + @include hidden-scrollbar; - .content { - @include font("body", "md"); - } - .title { - @include font("base", "lg", "600"); + .content { + @include font("body", "md"); + } + .title { + @include font("base", "lg", "600"); + } } -} -.progress { - position: absolute; - bottom: 0; - left: 0; - width: 100%; -} + .progress { + position: absolute; + bottom: 0; + left: 0; + width: 100%; + } -.Container { - display: flex; - flex-direction: column-reverse; - row-gap: var(--base-sizing-12x); - position: fixed; - z-index: 5; + .Container { + display: flex; + flex-direction: column-reverse; + row-gap: var(--base-sizing-12x); + position: fixed; + z-index: 5; - @each $position, $animationIn, $animationOut, $top, $right, $bottom, $left, $transform in $positions { - &.#{$position} { - /* stylelint-disable declaration-block-no-redundant-longhand-properties */ - top: $top; - right: $right; - bottom: $bottom; - left: $left; - /* stylelint-enable declaration-block-no-redundant-longhand-properties */ - transform: $transform; + @each $position, $animationIn, $animationOut, $top, $right, $bottom, $left, $transform in $positions { + &.#{$position} { + /* stylelint-disable declaration-block-no-redundant-longhand-properties */ + top: $top; + right: $right; + bottom: $bottom; + left: $left; + /* stylelint-enable declaration-block-no-redundant-longhand-properties */ + transform: $transform; - .Root:not(.closing) { - animation: $animationIn 0.3s ease-in-out forwards; - } - .Root.closing { - animation: $animationOut 0.3s ease-in-out forwards; + .Root:not(.closing) { + animation: $animationIn 0.3s ease-in-out forwards; + } + .Root.closing { + animation: $animationOut 0.3s ease-in-out forwards; + } } } } diff --git a/src/lib/components/Tooltip/Tooltip.module.scss b/src/lib/components/Tooltip/Tooltip.module.scss index 57e8c5b..e88c5dc 100644 --- a/src/lib/components/Tooltip/Tooltip.module.scss +++ b/src/lib/components/Tooltip/Tooltip.module.scss @@ -15,101 +15,103 @@ $positions: ( ("bottomLeft", column, flex-start, 0deg, left top, top) ); -.Root { - @include pop-default(1); - position: absolute; - z-index: 1; - display: flex; - width: max-content; - text-wrap: auto; - will-change: transform; - box-sizing: border-box; +@layer motif-ui { + .Root { + @include pop-default(1); + position: absolute; + z-index: 1; + display: flex; + width: max-content; + text-wrap: auto; + will-change: transform; + box-sizing: border-box; - &.visible { - @include pop-in; - } + &.visible { + @include pop-in; + } - .triangle { - box-sizing: border-box; - } + .triangle { + box-sizing: border-box; + } - .textWrapper { - border-radius: var(--theme-sizing-radius-default); - display: flex; - flex-direction: column; + .textWrapper { + border-radius: var(--theme-sizing-radius-default); + display: flex; + flex-direction: column; - .title, - .text { - overflow-wrap: break-word; - white-space: pre-line; + .title, + .text { + overflow-wrap: break-word; + white-space: pre-line; + } } - } - @each $size, $paddingH, $paddingV, $textSize, $pointerSize in $sizes { - &.#{$size} { - .textWrapper { - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + @each $size, $paddingH, $paddingV, $textSize, $pointerSize in $sizes { + &.#{$size} { + .textWrapper { + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - .title { - @include font("base", $textSize, "600"); - } - .text { - @include font("body", $textSize); + .title { + @include font("base", $textSize, "600"); + } + .text { + @include font("body", $textSize); + } } - } - .triangle { - width: var(--base-sizing-#{$pointerSize}); - height: var(--base-sizing-#{$pointerSize}); - border-left: calc(var(--base-sizing-#{$pointerSize}) / 2) solid transparent; - border-right: calc(var(--base-sizing-#{$pointerSize}) / 2) solid transparent; - border-bottom: var(--base-sizing-#{$pointerSize}) solid var(--theme-color-surface-base-base3); - margin: 0 var(--base-sizing-#{$pointerSize}); + .triangle { + width: var(--base-sizing-#{$pointerSize}); + height: var(--base-sizing-#{$pointerSize}); + border-left: calc(var(--base-sizing-#{$pointerSize}) / 2) solid transparent; + border-right: calc(var(--base-sizing-#{$pointerSize}) / 2) solid transparent; + border-bottom: var(--base-sizing-#{$pointerSize}) solid var(--theme-color-surface-base-base3); + margin: 0 var(--base-sizing-#{$pointerSize}); + } } } - } - @each $position, $flexDir, $alignArrow, $rotate, $transformOrigin, $trianglePos in $positions { - &.#{$position} { - flex-direction: $flexDir; - transform-origin: $transformOrigin; + @each $position, $flexDir, $alignArrow, $rotate, $transformOrigin, $trianglePos in $positions { + &.#{$position} { + flex-direction: $flexDir; + transform-origin: $transformOrigin; - .triangle { - align-self: $alignArrow; - transform: rotate($rotate); - @if $trianglePos != "top" and $trianglePos != "bottom" { - margin: 0; + .triangle { + align-self: $alignArrow; + transform: rotate($rotate); + @if $trianglePos != "top" and $trianglePos != "bottom" { + margin: 0; + } } } } - } - &.light { - .textWrapper { - background-color: var(--theme-color-surface-base-base3); - .title { - color: var(--theme-color-text-base-title); + &.light { + .textWrapper { + background-color: var(--theme-color-surface-base-base3); + .title { + color: var(--theme-color-text-base-title); + } + .text { + color: var(--theme-color-text-base-subtitle); + } } - .text { - color: var(--theme-color-text-base-subtitle); + .triangle { + border-bottom-color: var(--theme-color-surface-base-base3); } } - .triangle { - border-bottom-color: var(--theme-color-surface-base-base3); - } - } - &.dark { - .textWrapper { - background-color: var(--theme-color-text-secondary-active); - .title { - color: var(--theme-color-semantic-base-white); + &.dark { + .textWrapper { + background-color: var(--theme-color-text-secondary-active); + .title { + color: var(--theme-color-semantic-base-white); + } + .text { + color: var(--theme-color-text-base-text-light); + } } - .text { - color: var(--theme-color-text-base-text-light); + .triangle { + border-bottom-color: var(--theme-color-text-secondary-active); } } - .triangle { - border-bottom-color: var(--theme-color-text-secondary-active); - } } } diff --git a/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss b/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss index c82b86e..906e1e7 100644 --- a/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss +++ b/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss @@ -2,196 +2,198 @@ $sizes: (("xs", 160x, 6x, 36x, 24x), ("sm", 190x, 8x, 40x, 28x), ("md", 256x, 10x, 44x, 32x), ("lg", 320x, 12x, 48x, 36x)); -@each $name, $box, $padding, $fontSize, $iconSize in $sizes { - .#{$name} { - width: var(--base-sizing-#{$box}); - - .dragArea { +@layer motif-ui { + @each $name, $box, $padding, $fontSize, $iconSize in $sizes { + .#{$name} { width: var(--base-sizing-#{$box}); - height: var(--base-sizing-#{$box}); - padding: var(--base-sizing-#{$padding}); - } - .errorMessage { - @include font("body", $name); + .dragArea { + width: var(--base-sizing-#{$box}); + height: var(--base-sizing-#{$box}); + padding: var(--base-sizing-#{$padding}); + } + + .errorMessage { + @include font("body", $name); + } + + .icon { + width: var(--base-sizing-#{$fontSize}); + height: var(--base-sizing-#{$fontSize}); + font-size: var(--base-sizing-#{$iconSize}); + } + + .addIcon { + font-size: var(--base-sizing-#{$fontSize}); + } + + .dragMessage { + @include font("base", $name, "500"); + } } + } - .icon { - width: var(--base-sizing-#{$fontSize}); - height: var(--base-sizing-#{$fontSize}); - font-size: var(--base-sizing-#{$iconSize}); - } + .Root { + display: flex; + flex-direction: column; + } + + .errorMessage { + color: var(--theme-color-border-danger-default); + margin-top: var(--base-sizing-6x); + display: inline-block; + } - .addIcon { - font-size: var(--base-sizing-#{$fontSize}); + .dragArea { + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-base2); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: var(--base-sizing-8x); + box-sizing: border-box; + @include transition(border-color); + + .progress { + span { + display: block; + color: var(--theme-color-text-base-caption); + margin-bottom: var(--base-sizing-8x); + } + + text-align: center; + width: 100%; } .dragMessage { - @include font("base", $name, "500"); + color: var(--theme-color-text-base-caption-light); } - } -} - -.Root { - display: flex; - flex-direction: column; -} -.errorMessage { - color: var(--theme-color-border-danger-default); - margin-top: var(--base-sizing-6x); - display: inline-block; -} + &.dragReady { + cursor: pointer; + &.onDrag, + &:hover { + border-style: dashed; + border-color: var(--theme-color-text-primary-default); + } + } -.dragArea { - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-base2); - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - gap: var(--base-sizing-8x); - box-sizing: border-box; - @include transition(border-color); - - .progress { - span { - display: block; - color: var(--theme-color-text-base-caption); - margin-bottom: var(--base-sizing-8x); + &.error { + color: var(--theme-color-border-danger-default); + border-color: var(--theme-color-border-danger-default); + .content { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + position: relative; + } } + } - text-align: center; + .fileItem { width: 100%; - } + height: 100%; + position: relative; - .dragMessage { - color: var(--theme-color-text-base-caption-light); - } + .icon { + background: var(--theme-color-surface-base-base1); + border-radius: var(--theme-sizing-radius-default); + display: flex; + justify-content: center; + align-items: center; + } + + .content { + @include transition(filter); + width: 100%; + height: 100%; + background: var(--theme-color-surface-base-base2); + + img { + object-fit: contain; + width: 100%; + height: 100%; + background: none; + } + } - &.dragReady { - cursor: pointer; - &.onDrag, &:hover { - border-style: dashed; - border-color: var(--theme-color-text-primary-default); + .iconContainer { + opacity: 1; + } + + .content { + filter: brightness(0.5); + } } - } - &.error { - color: var(--theme-color-border-danger-default); - border-color: var(--theme-color-border-danger-default); - .content { + .iconContainer { + gap: var(--base-sizing-12x); + position: absolute; + transform: translate(-50%, -50%); + top: 50%; + left: 50%; display: flex; - align-items: center; - justify-content: center; - flex-direction: column; - position: relative; + opacity: 0; } } -} -.fileItem { - width: 100%; - height: 100%; - position: relative; + .previewOverlay { + position: fixed; + inset: 0; + z-index: 1; + background: var(--theme-color-semantic-base-black-overlay75); + } - .icon { - background: var(--theme-color-surface-base-base1); - border-radius: var(--theme-sizing-radius-default); + .previewContent { + position: fixed; + inset: 0; display: flex; justify-content: center; align-items: center; } - .content { - @include transition(filter); - width: 100%; - height: 100%; - background: var(--theme-color-surface-base-base2); - - img { - object-fit: contain; - width: 100%; - height: 100%; - background: none; - } + .previewImage { + max-width: 100%; + max-height: 100%; } - &:hover { - .iconContainer { - opacity: 1; + .closeBtn { + all: unset; + position: fixed; + right: var(--base-sizing-8x); + top: var(--base-sizing-8x); + background-color: var(--theme-color-surface-light-default); + border-radius: var(--theme-sizing-radius-round); + width: var(--base-sizing-24x); + height: var(--base-sizing-24x); + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + @include transition(background-color); + &:hover { + background-color: var(--theme-color-surface-light-hover); } - - .content { - filter: brightness(0.5); + span { + color: var(--theme-color-text-base-global-dark); + font-size: var(--base-sizing-18x); + font-weight: 600; } } - .iconContainer { - gap: var(--base-sizing-12x); + .toolbar { position: absolute; - transform: translate(-50%, -50%); - top: 50%; + bottom: var(--base-sizing-32x); left: 50%; + transform: translateX(-50%); display: flex; - opacity: 0; - } -} - -.previewOverlay { - position: fixed; - inset: 0; - z-index: 1; - background: var(--theme-color-semantic-base-black-overlay75); -} - -.previewContent { - position: fixed; - inset: 0; - display: flex; - justify-content: center; - align-items: center; -} - -.previewImage { - max-width: 100%; - max-height: 100%; -} - -.closeBtn { - all: unset; - position: fixed; - right: var(--base-sizing-8x); - top: var(--base-sizing-8x); - background-color: var(--theme-color-surface-light-default); - border-radius: var(--theme-sizing-radius-round); - width: var(--base-sizing-24x); - height: var(--base-sizing-24x); - display: flex; - justify-content: center; - align-items: center; - cursor: pointer; - @include transition(background-color); - &:hover { - background-color: var(--theme-color-surface-light-hover); - } - span { - color: var(--theme-color-text-base-global-dark); - font-size: var(--base-sizing-18x); - font-weight: 600; + gap: var(--base-sizing-72x); + background: var(--theme-color-border-secondary-hover); + padding: var(--base-sizing-8x) var(--base-sizing-32x); + border-radius: var(--base-sizing-32x); } } - -.toolbar { - position: absolute; - bottom: var(--base-sizing-32x); - left: 50%; - transform: translateX(-50%); - display: flex; - gap: var(--base-sizing-72x); - background: var(--theme-color-border-secondary-hover); - padding: var(--base-sizing-8x) var(--base-sizing-32x); - border-radius: var(--base-sizing-32x); -} diff --git a/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss b/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss index 7e8618e..c22b7df 100644 --- a/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss +++ b/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss @@ -3,106 +3,108 @@ // name, spacing, padding, infoFontPerc, iconSize $sizes: (("xs", "2x", "20x", "xxs", "32x"), ("sm", "4x", "24x", "xs", "40x"), ("md", "6x", "28x", "sm", "48x"), ("lg", "8x", "32x", "md", "56x")); -.Root { - display: inline-block; - width: auto; - max-width: 100%; - min-width: var(--base-sizing-216x); - flex-grow: 1; - box-sizing: border-box; - - .dragArea { - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-base2); - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - cursor: pointer; +@layer motif-ui { + .Root { + display: inline-block; + width: auto; + max-width: 100%; + min-width: var(--base-sizing-216x); + flex-grow: 1; box-sizing: border-box; - @include transition(border-color); - .dragIcon { - color: var(--theme-color-text-base-caption-light); - @include transition(color); - } - - .dragTextGroup { + .dragArea { + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-base2); display: flex; flex-direction: column; + justify-content: center; align-items: center; - } + cursor: pointer; + box-sizing: border-box; + @include transition(border-color); - .dragText { - color: var(--theme-color-text-base-subtitle); - text-align: center; - } + .dragIcon { + color: var(--theme-color-text-base-caption-light); + @include transition(color); + } - .dragInfo { - color: var(--theme-color-text-base-caption); - text-align: center; - } + .dragTextGroup { + display: flex; + flex-direction: column; + align-items: center; + } - &.flatBottom { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - } + .dragText { + color: var(--theme-color-text-base-subtitle); + text-align: center; + } - &.onDrag, - &:hover { - &:not(.disabled) { - border-style: dashed; - border-color: var(--theme-color-text-primary-default); - .dragIcon { - color: var(--theme-color-text-primary-default); - } + .dragInfo { + color: var(--theme-color-text-base-caption); + text-align: center; } - } - &.error { - border-color: var(--theme-color-surface-danger-default); - } + &.flatBottom { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + } - &.disabled { - cursor: default; - border-color: var(--theme-color-border-light-disabled); - .dragIcon { - color: var(--theme-color-text-base-disabled-light); + &.onDrag, + &:hover { + &:not(.disabled) { + border-style: dashed; + border-color: var(--theme-color-text-primary-default); + .dragIcon { + color: var(--theme-color-text-primary-default); + } + } } - .dragText, - .dragInfo { - color: var(--theme-color-text-base-disabled); + + &.error { + border-color: var(--theme-color-surface-danger-default); + } + + &.disabled { + cursor: default; + border-color: var(--theme-color-border-light-disabled); + .dragIcon { + color: var(--theme-color-text-base-disabled-light); + } + .dragText, + .dragInfo { + color: var(--theme-color-text-base-disabled); + } } - } - &.success:not(.disabled) { - border-color: var(--theme-color-border-success-default); + &.success:not(.disabled) { + border-color: var(--theme-color-border-success-default); + } } } -} -@each $name, $spacing, $padding, $infoFontPerc, $iconSize in $sizes { - .#{$name} { - .dragArea { - gap: var(--base-sizing-#{$spacing}); - padding: var(--base-sizing-#{$padding}); + @each $name, $spacing, $padding, $infoFontPerc, $iconSize in $sizes { + .#{$name} { + .dragArea { + gap: var(--base-sizing-#{$spacing}); + padding: var(--base-sizing-#{$padding}); - .dragIcon { - font-size: var(--base-sizing-#{$iconSize}); - } + .dragIcon { + font-size: var(--base-sizing-#{$iconSize}); + } - .dragTextGroup { - gap: var(--base-sizing-#{$spacing}); - padding: var(--base-sizing-#{$spacing}); - } + .dragTextGroup { + gap: var(--base-sizing-#{$spacing}); + padding: var(--base-sizing-#{$spacing}); + } - .dragText { - @include font("base", $name, "500"); - } + .dragText { + @include font("base", $name, "500"); + } - .dragInfo { - @include font("body", $infoFontPerc); + .dragInfo { + @include font("body", $infoFontPerc); + } } } } diff --git a/src/lib/components/Upload/UploadFileList/FileList.module.scss b/src/lib/components/Upload/UploadFileList/FileList.module.scss index c330ebf..c2a47d0 100644 --- a/src/lib/components/Upload/UploadFileList/FileList.module.scss +++ b/src/lib/components/Upload/UploadFileList/FileList.module.scss @@ -3,105 +3,107 @@ // name, gap, paddingV, paddingH, labelSize, helperSize $sizes: (("xs", "4x", "4x", "8x", "xs", "xxs"), ("sm", "6x", "6x", "12x", "xs", "xxs"), ("md", "8x", "8x", "16x", "sm", "xxs"), ("lg", "10x", "10x", "20x", "md", "xs")); -.Root { - border-color: var(--theme-color-border-light-default); - border-style: solid; - border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) var(--base-sizing-1x); - border-bottom-left-radius: var(--base-radius-sm); - border-bottom-right-radius: var(--base-radius-sm); - overflow: hidden; -} - -.uploadButtonArea { - padding: var(--base-sizing-8x); - display: flex; - justify-content: flex-end; - border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-default); -} - -.files { - display: flex; - flex-direction: column; - gap: var(--base-sizing-8x); - max-height: var(--base-sizing-256x); - overflow-y: scroll; - background: var(--theme-color-surface-base-bg-light); -} - -.fileRow { - @include transition(background); - display: flex; - flex-direction: row; - align-items: center; +@layer motif-ui { + .Root { + border-color: var(--theme-color-border-light-default); + border-style: solid; + border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) var(--base-sizing-1x); + border-bottom-left-radius: var(--base-radius-sm); + border-bottom-right-radius: var(--base-radius-sm); + overflow: hidden; + } - .icon { - @include transition(color); + .uploadButtonArea { + padding: var(--base-sizing-8x); + display: flex; + justify-content: flex-end; + border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-default); } - .labelWrapper { - flex: 1; + .files { display: flex; flex-direction: column; - justify-items: stretch; + gap: var(--base-sizing-8x); + max-height: var(--base-sizing-256x); + overflow-y: scroll; + background: var(--theme-color-surface-base-bg-light); + } + + .fileRow { + @include transition(background); + display: flex; + flex-direction: row; + align-items: center; - .label { - color: var(--theme-color-text-base-title); + .icon { + @include transition(color); } - .helperText { - color: var(--theme-color-text-secondary-default); - overflow-wrap: break-word; - white-space: pre-wrap; + .labelWrapper { + flex: 1; + display: flex; + flex-direction: column; + justify-items: stretch; - &.helperSuccess { - color: var(--theme-color-text-success-default); + .label { + color: var(--theme-color-text-base-title); } - &.helperError { - color: var(--theme-color-text-danger-default); + + .helperText { + color: var(--theme-color-text-secondary-default); + overflow-wrap: break-word; + white-space: pre-wrap; + + &.helperSuccess { + color: var(--theme-color-text-success-default); + } + &.helperError { + color: var(--theme-color-text-danger-default); + } } - } - .progress { - margin-top: var(--base-sizing-8x); + .progress { + margin-top: var(--base-sizing-8x); + } } - } - &.disabled { - .label { - color: var(--theme-color-text-base-disabled); - } - .helperSuccess { - color: var(--theme-color-text-success-disabled); - } - .helperError { - color: var(--theme-color-text-danger-disabled); + &.disabled { + .label { + color: var(--theme-color-text-base-disabled); + } + .helperSuccess { + color: var(--theme-color-text-success-disabled); + } + .helperError { + color: var(--theme-color-text-danger-disabled); + } } - } - &:hover { - background: var(--theme-color-surface-base-base2); - .icon { - &.iconDelete { - color: var(--theme-color-text-danger-default); - } - &.iconRenew { - color: var(--theme-color-text-primary-default); + &:hover { + background: var(--theme-color-surface-base-base2); + .icon { + &.iconDelete { + color: var(--theme-color-text-danger-default); + } + &.iconRenew { + color: var(--theme-color-text-primary-default); + } } } } -} -@each $name, $gap, $paddingV, $paddingH, $labelS, $helperS in $sizes { - .#{$name} { - .fileRow { - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - gap: var(--base-sizing-#{$gap}); + @each $name, $gap, $paddingV, $paddingH, $labelS, $helperS in $sizes { + .#{$name} { + .fileRow { + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + gap: var(--base-sizing-#{$gap}); - .label { - @include font("base", $labelS, "500"); - } - .helperText { - @include font("body", $helperS); + .label { + @include font("base", $labelS, "500"); + } + .helperText { + @include font("body", $helperS); + } } } } diff --git a/src/lib/components/Upload/UploadInput/UploadInput.module.scss b/src/lib/components/Upload/UploadInput/UploadInput.module.scss index 96f001a..daff691 100644 --- a/src/lib/components/Upload/UploadInput/UploadInput.module.scss +++ b/src/lib/components/Upload/UploadInput/UploadInput.module.scss @@ -3,180 +3,182 @@ // size, gap, paddingV, paddingH, labelMinWidth $sizes: (("xs", "4x", "4x", "10x", "128x"), ("sm", "6x", "6x", "12x", "128x"), ("md", "8x", "8x", "16x", "160x"), ("lg", "8x", "10x", "20x", "190x")); -.Root { - display: flex; - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background: var(--theme-color-surface-base-bg-light); - - &.inFormField { - min-width: var(--base-sizing-256x); - } +@layer motif-ui { + .Root { + display: flex; + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background: var(--theme-color-surface-base-bg-light); - &.disabled { - background: var(--theme-color-surface-base-base1); - border-color: var(--theme-color-border-light-disabled); - .label { - color: var(--theme-color-text-base-disabled); + &.inFormField { + min-width: var(--base-sizing-256x); } - } - &.error { - &, - .browseButton, - .uploadButton { - border-color: var(--theme-color-surface-danger-default); + &.disabled { + background: var(--theme-color-surface-base-base1); + border-color: var(--theme-color-border-light-disabled); + .label { + color: var(--theme-color-text-base-disabled); + } } - } - &.success { - &, - .browseButton, - .uploadButton { - border-color: var(--theme-color-border-success-default); + &.error { + &, + .browseButton, + .uploadButton { + border-color: var(--theme-color-surface-danger-default); + } } - } - > button { - margin: calc(-1 * var(--base-sizing-1x)); - cursor: pointer; - display: inline-flex; - justify-content: center; - align-items: center; - background: var(--theme-color-surface-light-default); - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - &, - & > * { - @include transition; + &.success { + &, + .browseButton, + .uploadButton { + border-color: var(--theme-color-border-success-default); + } } - &:focus-visible { - outline: none; - border-color: var(--theme-color-border-primary-default); + > button { + margin: calc(-1 * var(--base-sizing-1x)); + cursor: pointer; + display: inline-flex; + justify-content: center; + align-items: center; + background: var(--theme-color-surface-light-default); + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + &, + & > * { + @include transition; + } + + &:focus-visible { + outline: none; + border-color: var(--theme-color-border-primary-default); + } + + &:disabled { + pointer-events: none; + cursor: default; + border-color: var(--theme-color-border-light-disabled); + background: var(--theme-color-surface-light-disabled); + &, + span { + color: var(--theme-color-text-base-disabled); + } + } } + } - &:disabled { - pointer-events: none; - cursor: default; - border-color: var(--theme-color-border-light-disabled); - background: var(--theme-color-surface-light-disabled); + .browseButton { + border-top-left-radius: var(--theme-sizing-radius-default); + border-bottom-left-radius: var(--theme-sizing-radius-default); + &:hover { + background: var(--theme-color-surface-light-hover); + border-color: var(--theme-color-border-light-hover); &, span { - color: var(--theme-color-text-base-disabled); + color: var(--theme-color-text-base-title); } } - } -} - -.browseButton { - border-top-left-radius: var(--theme-sizing-radius-default); - border-bottom-left-radius: var(--theme-sizing-radius-default); - &:hover { - background: var(--theme-color-surface-light-hover); - border-color: var(--theme-color-border-light-hover); &, span { - color: var(--theme-color-text-base-title); + color: var(--theme-color-text-base-subtitle-light); } } - &, - span { - color: var(--theme-color-text-base-subtitle-light); - } -} -.uploadButton { - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - &:hover { - background: var(--theme-color-surface-primary-default); - border-color: var(--theme-color-surface-primary-default); + .uploadButton { + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + &:hover { + background: var(--theme-color-surface-primary-default); + border-color: var(--theme-color-surface-primary-default); + &, + span { + color: var(--theme-color-text-base-global-light); + } + } &, span { - color: var(--theme-color-text-base-global-light); + color: var(--theme-color-text-base-title); } } - &, - span { - color: var(--theme-color-text-base-title); - } -} - -.labelArea { - flex: 1; - display: flex; - position: relative; - overflow: hidden; - .label { - color: var(--theme-color-text-base-title); - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - margin: calc(-1 * var(--base-sizing-1x)) 0; - text-align: left; - align-self: stretch; + .labelArea { flex: 1; - background: transparent; - border: solid var(--base-sizing-1x) transparent; - &.roundedEnd { - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - margin: calc(-1 * var(--base-sizing-1x)) calc(-1 * var(--base-sizing-1x)) calc(-1 * var(--base-sizing-1x)) 0; - } - &.placeholder { - color: var(--theme-color-text-base-caption-light); - } - &:disabled { - pointer-events: none; - } - &:hover { - border-color: var(--theme-color-border-light-hover); - } - } - - .labelSuffixWrapper { - position: absolute; display: flex; - background: none; - top: 50%; - transform: translateY(-50%); - border-radius: var(--theme-sizing-radius-default); - border: solid var(--base-sizing-1x) transparent; - @include transition(color); - } - - .progress { - flex: 1; - align-self: center; - margin: 0 var(--base-sizing-16x); - } -} + position: relative; + overflow: hidden; -@each $size, $gap, $paddingV, $paddingH, $labelMinWidth in $sizes { - .#{$size} { - > button { - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - gap: var(--base-sizing-#{$gap}); - @include font("base", $size, "500"); - } .label { - @include font("body", $size); - min-width: var(--base-sizing-#{$labelMinWidth}); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - &.hasSuffix { - padding-right: calc(3 * var(--base-sizing-#{$paddingH})); + color: var(--theme-color-text-base-title); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + margin: calc(-1 * var(--base-sizing-1x)) 0; + text-align: left; + align-self: stretch; + flex: 1; + background: transparent; + border: solid var(--base-sizing-1x) transparent; + &.roundedEnd { + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + margin: calc(-1 * var(--base-sizing-1x)) calc(-1 * var(--base-sizing-1x)) calc(-1 * var(--base-sizing-1x)) 0; + } + &.placeholder { + color: var(--theme-color-text-base-caption-light); + } + &:disabled { + pointer-events: none; } - &.hasSuffixes { - padding-right: calc(5 * var(--base-sizing-#{$paddingH})); + &:hover { + border-color: var(--theme-color-border-light-hover); } } + .labelSuffixWrapper { - right: var(--base-sizing-#{$paddingH}); - gap: var(--base-sizing-#{$paddingV}); + position: absolute; + display: flex; + background: none; + top: 50%; + transform: translateY(-50%); + border-radius: var(--theme-sizing-radius-default); + border: solid var(--base-sizing-1x) transparent; + @include transition(color); } + .progress { - margin: 0 var(--base-sizing-#{$paddingH}); + flex: 1; + align-self: center; + margin: 0 var(--base-sizing-16x); + } + } + + @each $size, $gap, $paddingV, $paddingH, $labelMinWidth in $sizes { + .#{$size} { + > button { + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + gap: var(--base-sizing-#{$gap}); + @include font("base", $size, "500"); + } + .label { + @include font("body", $size); + min-width: var(--base-sizing-#{$labelMinWidth}); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + &.hasSuffix { + padding-right: calc(3 * var(--base-sizing-#{$paddingH})); + } + &.hasSuffixes { + padding-right: calc(5 * var(--base-sizing-#{$paddingH})); + } + } + .labelSuffixWrapper { + right: var(--base-sizing-#{$paddingH}); + gap: var(--base-sizing-#{$paddingV}); + } + .progress { + margin: 0 var(--base-sizing-#{$paddingH}); + } } } } diff --git a/src/lib/components/Upload/UploadList/UploadList.module.scss b/src/lib/components/Upload/UploadList/UploadList.module.scss index 2aaa227..6636a44 100644 --- a/src/lib/components/Upload/UploadList/UploadList.module.scss +++ b/src/lib/components/Upload/UploadList/UploadList.module.scss @@ -3,69 +3,71 @@ // name, gap, padding, infoFontPerc $sizes: (("xs", "4x", "8x", "xs"), ("sm", "6x", "12x", "sm"), ("md", "8x", "16x", "sm"), ("lg", "10x", "20x", "sm")); -.Root { - display: inline-block; - width: auto; - min-width: var(--base-sizing-216x); - max-width: 100%; - flex-grow: 1; - box-sizing: border-box; - - .dragArea { - @include transition(border-color); - width: 100%; - display: inline-flex; - justify-content: space-between; - align-items: center; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--base-radius-sm); - background-color: var(--theme-color-surface-base-base2); +@layer motif-ui { + .Root { + display: inline-block; + width: auto; + min-width: var(--base-sizing-216x); + max-width: 100%; + flex-grow: 1; box-sizing: border-box; - .infoText { - text-align: right; - color: var(--base-colors-gray-gray-500); - } + .dragArea { + @include transition(border-color); + width: 100%; + display: inline-flex; + justify-content: space-between; + align-items: center; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--base-radius-sm); + background-color: var(--theme-color-surface-base-base2); + box-sizing: border-box; - &:hover, - &.onDrag { - &:not(.disabled) { - cursor: pointer; - border-style: dashed; - border-color: var(--theme-color-text-primary-default); + .infoText { + text-align: right; + color: var(--base-colors-gray-gray-500); } - } - &.flatBottom { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - } + &:hover, + &.onDrag { + &:not(.disabled) { + cursor: pointer; + border-style: dashed; + border-color: var(--theme-color-text-primary-default); + } + } - &.error { - border-color: var(--theme-color-surface-danger-default); - } + &.flatBottom { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + } - &.disabled { - border-color: var(--theme-color-border-light-disabled); - .infoText { - color: var(--theme-color-text-base-disabled-light); + &.error { + border-color: var(--theme-color-surface-danger-default); + } + + &.disabled { + border-color: var(--theme-color-border-light-disabled); + .infoText { + color: var(--theme-color-text-base-disabled-light); + } } - } - &.success:not(.disabled) { - border-color: var(--theme-color-border-success-default); + &.success:not(.disabled) { + border-color: var(--theme-color-border-success-default); + } } } -} -@each $name, $gap, $padding, $infoFontPerc in $sizes { - .#{$name} { - .dragArea { - padding: var(--base-sizing-#{$padding}); - gap: var(--base-sizing-#{$gap}); + @each $name, $gap, $padding, $infoFontPerc in $sizes { + .#{$name} { + .dragArea { + padding: var(--base-sizing-#{$padding}); + gap: var(--base-sizing-#{$gap}); - .infoText { - @include font("body", $infoFontPerc); + .infoText { + @include font("body", $infoFontPerc); + } } } } From f60495bcf485d656c510f2dbe27b88e28a0feba5 Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Thu, 7 May 2026 11:25:53 +0300 Subject: [PATCH 02/17] scss @layer wrapper script is added with comment explanation --- src/scripts/wrap-with-layer.mjs | 186 ++++++++++++++++++++++++++++++++ 1 file changed, 186 insertions(+) create mode 100644 src/scripts/wrap-with-layer.mjs diff --git a/src/scripts/wrap-with-layer.mjs b/src/scripts/wrap-with-layer.mjs new file mode 100644 index 0000000..dedb744 --- /dev/null +++ b/src/scripts/wrap-with-layer.mjs @@ -0,0 +1,186 @@ +/** + * wrap-with-layer.mjs + * + * Each .module.scss file is wrapped with @layer + * + * Excluded formats: + * @use, @forward, @import + * $variable declarations + * @mixin, @function + * + * + */ + +import { readFileSync, writeFileSync } from "fs"; +import { glob } from "glob"; + +const LAYER_NAME = "motif-ui"; // projeye göre değiştir +const GLOB_PATTERN = "src/lib/**/*.module.scss"; + +/** + * Single-line compile-time directives → remain outside the layer. + * NOTE: $variable is not handled here, but in isHoistedBlockStart, + * because they can be multi-line (multiline map/list). + */ +function isAtomicHoistedLine(line) { + const t = line.trimStart(); + if (t === "") return true; // boş satır + if (t.startsWith("//")) return true; // // yorum + if (/^\/\*/.test(t)) return true; // /* blok yorum */ + if (/^@(use|forward|import)\s/.test(t)) return true; // @use / @forward / @import + return false; +} + +/** + * Directives that will remain outside the layer along with their entire block: + * @mixin / @function → followed by braces {} + * $var: value; → single-line (ends with semicolon) + * $var: (...) → multi-line map/list, followed by parentheses () + * + * IMPORTANT: This check must be performed BEFORE isAtomicHoistedLine. + * Otherwise, $var lines inside a @mixin body would be counted as atomic, + * causing the mixin to be cut off midway and @layer to be opened in the wrong place. + */ +function isHoistedBlockStart(line) { + const t = line.trimStart(); + if (/^@(mixin|function)\s/.test(t)) return true; + if (/^\$[\w-]+\s*:/.test(t)) return true; // $var: ... (tek veya çok satır) + return false; +} + +/** + * Returns the depth counter that will track the block's closing. + * null → single-line (already closed), loop is not entered. + */ +function getDepthCounter(line) { + const t = line.trimStart(); + + if (/^@(mixin|function)\s/.test(t)) { + return l => (l.match(/\{/g) || []).length - (l.match(/\}/g) || []).length; + } + + if (/^\$[\w-]+\s*:/.test(t)) { + if (/;\s*$/.test(line.trimEnd())) return null; + return l => (l.match(/\(/g) || []).length - (l.match(/\)/g) || []).length; + } + + return null; +} + +/** + * Splits the file content into two parts: + * - hoisted : will remain outside @layer (SCSS compile-time) + * - body : will be wrapped inside @layer (CSS selector blocks) + */ +function splitContent(content) { + const lines = content.split("\n"); + const hoisted = []; + const body = []; + let bodyStarted = false; + let i = 0; + + while (i < lines.length) { + const line = lines[i]; + + if (bodyStarted) { + body.push(line); + i++; + continue; + } + + // 1. Multi lined hoisted block (@mixin, @function, $var: (...)) + if (isHoistedBlockStart(line)) { + const counter = getDepthCounter(line); + hoisted.push(line); + i++; + + if (counter !== null) { + let depth = counter(line); + while (depth > 0 && i < lines.length) { + const inner = lines[i]; + hoisted.push(inner); + depth += counter(inner); + i++; + } + } + continue; + } + + // 2. Single line compile time + if (isAtomicHoistedLine(line)) { + hoisted.push(line); + i++; + continue; + } + + // 3. Firs real css line + bodyStarted = true; + body.push(line); + i++; + } + + return { hoisted, body }; +} + +/** + * Hoisted + body + @layer + */ +function wrapWithLayer(hoisted, body, layerName) { + while (body.length && body[body.length - 1].trim() === "") body.pop(); + while (hoisted.length && hoisted[hoisted.length - 1].trim() === "") hoisted.pop(); + + const indented = body.map(l => (l.trim() === "" ? "" : ` ${l}`)); + + const parts = []; + if (hoisted.length) { + parts.push(hoisted.join("\n")); + parts.push(""); + } + parts.push(`@layer ${layerName} {`); + parts.push(...indented); + parts.push(`}`); + parts.push(""); + return parts.join("\n"); +} + +// ─── Main Flow ──────────────────────────────────────────────────────────────── + +const files = await glob(GLOB_PATTERN); + +if (files.length === 0) { + console.warn(`⚠️ There is no file matched on this pattern: ${GLOB_PATTERN}`); +} + +let skipped = 0; +let processed = 0; +let errors = 0; + +for (const file of files) { + try { + const content = readFileSync(file, "utf8"); + + if (content.includes(`@layer ${LAYER_NAME}`)) { + console.log(`⏭ SKIP ${file}`); + skipped++; + continue; + } + + const { hoisted, body } = splitContent(content); + + if (body.filter(l => l.trim()).length === 0) { + console.log(`⚠️ NO BODY ${file}`); + skipped++; + continue; + } + + const result = wrapWithLayer([...hoisted], [...body], LAYER_NAME); + writeFileSync(file, result, "utf8"); + console.log(`✅ DONE ${file}`); + processed++; + } catch (err) { + console.error(`❌ ERROR ${file}:`, err.message); + errors++; + } +} + +console.log(`\n📊 Result: ${processed} completed, ${skipped} skipped, ${errors} error`); From e2d4ce49e97d04b66231dc102963150b3a8a731c Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Thu, 14 May 2026 10:06:44 +0300 Subject: [PATCH 03/17] layer wrapping inside scss files are reverted --- .../Accordion/Accordion.module.scss | 150 +++-- src/lib/components/Alert/Alert.module.scss | 66 ++- src/lib/components/Avatar/Avatar.module.scss | 72 ++- src/lib/components/Badge/Badge.module.scss | 78 ++- .../Breadcrumb/Breadcrumb.module.scss | 76 ++- .../BusinessCard/BusinessCard.module.scss | 194 ++++--- src/lib/components/Button/Button.module.scss | 122 ++--- .../ButtonGroup/ButtonGroup.module.scss | 324 ++++++----- src/lib/components/Card/Card.module.scss | 212 ++++--- .../components/Carousel/Carousel.module.scss | 184 +++---- .../components/Checkbox/Checkbox.module.scss | 186 ++++--- src/lib/components/Chip/Chip.module.scss | 110 ++-- .../components/DataView/DataView.module.scss | 156 +++--- .../DatePicker/DatePicker.module.scss | 432 ++++++++------- .../DateRangePicker.module.scss | 188 ++++--- .../DateTimePicker/DateTimePicker.module.scss | 142 +++-- .../components/Divider/Divider.module.scss | 120 ++-- .../components/Dropdown/Dropdown.module.scss | 274 +++++---- src/lib/components/Form/Form.module.scss | 100 ++-- .../Form/FormFields/FormField.module.scss | 210 ++++--- .../Form/components/FormTitle.module.scss | 16 +- src/lib/components/Grid/Grid.module.scss | 122 ++--- src/lib/components/Icon/Icon.module.scss | 62 +-- .../IconButton/IconButton.module.scss | 84 ++- .../ImageView/ImageView.module.scss | 72 ++- .../InputDate/InputDate.module.scss | 20 +- .../InputDateRange/InputDateRange.module.scss | 22 +- .../InputDateTime/InputDateTime.module.scss | 20 +- .../InputPassword/InputPassword.module.scss | 152 +++-- .../InputText/InputText.module.scss | 6 +- .../InputTime/InputTime.module.scss | 20 +- src/lib/components/Link/Link.module.scss | 78 ++- .../components/ListView/ListView.module.scss | 274 +++++---- .../components/MenuList/MenuList.module.scss | 438 ++++++++------- src/lib/components/Modal/Modal.module.scss | 208 ++++--- .../Motif/Icon/MotifIcon.module.scss | 282 +++++----- .../Motif/InputText/InputText.module.scss | 218 ++++---- .../Motif/Pickers/Picker.module.scss | 88 ++- src/lib/components/NavBar/NavBar.module.scss | 518 +++++++++--------- .../Pagination/Pagination.module.scss | 110 ++-- src/lib/components/Panel/Panel.module.scss | 108 ++-- .../components/PinCode/PinCode.module.scss | 92 ++-- .../components/Popover/Popover.module.scss | 122 ++--- .../ProgressBar/ProgressBar.module.scss | 132 +++-- .../ProgressCircle/ProgressCircle.module.scss | 122 ++--- src/lib/components/Radio/Radio.module.scss | 118 ++-- .../RadioGroup/RadioGroup.module.scss | 44 +- src/lib/components/Select/Select.module.scss | 372 +++++++------ .../components/Skeleton/Skeleton.module.scss | 56 +- src/lib/components/Slider/Slider.module.scss | 212 ++++--- .../SliderRange/SliderRange.module.scss | 26 +- .../components/Stepper/Stepper.module.scss | 296 +++++----- src/lib/components/Switch/Switch.module.scss | 104 ++-- src/lib/components/Tab/Tab.module.scss | 166 +++--- src/lib/components/Table/Table.module.scss | 426 +++++++------- src/lib/components/Text/Text.module.scss | 36 +- .../components/Textarea/Textarea.module.scss | 134 +++-- .../TimePicker/TimePicker.module.scss | 172 +++--- .../components/Timeline/Timeline.module.scss | 396 +++++++------ src/lib/components/Toast/Toast.module.scss | 142 +++-- .../components/Tooltip/Tooltip.module.scss | 148 +++-- .../ImageUpload/ImageUpload.module.scss | 308 ++++++----- .../UploadDragger/UploadDragger.module.scss | 158 +++--- .../UploadFileList/FileList.module.scss | 158 +++--- .../UploadInput/UploadInput.module.scss | 280 +++++----- .../Upload/UploadList/UploadList.module.scss | 102 ++-- 66 files changed, 5252 insertions(+), 5384 deletions(-) diff --git a/src/lib/components/Accordion/Accordion.module.scss b/src/lib/components/Accordion/Accordion.module.scss index 4af5488..0c63ab5 100644 --- a/src/lib/components/Accordion/Accordion.module.scss +++ b/src/lib/components/Accordion/Accordion.module.scss @@ -1,98 +1,96 @@ @use "@styles" as *; -@layer motif-ui { - .Root { - display: flex; - flex-direction: column; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - overflow: hidden; - - .header { - @include transition(background-color); - background: var(--theme-color-surface-base-base2); - border-width: 0; - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - padding: var(--base-sizing-8x) var(--base-sizing-16x); - display: flex; - flex: 1; - gap: var(--base-sizing-6x); - align-items: center; - user-select: none; - cursor: pointer; +.Root { + display: flex; + flex-direction: column; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + overflow: hidden; - .title { - color: var(--theme-color-text-base-title); - @include font; - flex-grow: 1; - text-align: left; - } + .header { + @include transition(background-color); + background: var(--theme-color-surface-base-base2); + border-width: 0; + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + padding: var(--base-sizing-8x) var(--base-sizing-16x); + display: flex; + flex: 1; + gap: var(--base-sizing-6x); + align-items: center; + user-select: none; + cursor: pointer; - &:hover { - background: var(--theme-color-surface-base-base4); - } + .title { + color: var(--theme-color-text-base-title); + @include font; + flex-grow: 1; + text-align: left; + } - @include focus-ring; + &:hover { + background: var(--theme-color-surface-base-base4); } - .content { - display: grid; - grid-template-rows: 0fr; - @include transition(grid-template-rows); - margin-top: calc(-1 * var(--base-sizing-1x)); + @include focus-ring; + } - .contentOverflowContainer { - overflow: hidden; - display: grid; - } + .content { + display: grid; + grid-template-rows: 0fr; + @include transition(grid-template-rows); + margin-top: calc(-1 * var(--base-sizing-1x)); - .textContent { - display: block; - padding: var(--base-sizing-16x); - @include font("body", "sm"); - color: var(--theme-color-text-light-default); - } + .contentOverflowContainer { + overflow: hidden; + display: grid; } - .icon { - font-size: var(--base-sizing-24x); + .textContent { + display: block; + padding: var(--base-sizing-16x); + @include font("body", "sm"); + color: var(--theme-color-text-light-default); } + } - .collapseIcon { - @include transition(transform); - color: var(--theme-color-text-base-text-dark); - } + .icon { + font-size: var(--base-sizing-24x); + } - &.expanded { - .content { - grid-template-rows: 1fr; - } - .collapseIcon { - transform: rotate(180deg); - } + .collapseIcon { + @include transition(transform); + color: var(--theme-color-text-base-text-dark); + } + + &.expanded { + .content { + grid-template-rows: 1fr; + } + .collapseIcon { + transform: rotate(180deg); } } +} - // ============================================================================= - // Relevant Group Component: Accordion Group - // ============================================================================= +// ============================================================================= +// Relevant Group Component: Accordion Group +// ============================================================================= - .group { - display: flex; - flex-direction: column; - gap: var(--base-sizing-8x); - overflow: hidden; +.group { + display: flex; + flex-direction: column; + gap: var(--base-sizing-8x); + overflow: hidden; - &.group_condensed { - gap: 0; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - > * { - border: none; - border-radius: 0; - &:not(:last-child) { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - } + &.group_condensed { + gap: 0; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + > * { + border: none; + border-radius: 0; + &:not(:last-child) { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); } } } diff --git a/src/lib/components/Alert/Alert.module.scss b/src/lib/components/Alert/Alert.module.scss index 24876db..8097e81 100644 --- a/src/lib/components/Alert/Alert.module.scss +++ b/src/lib/components/Alert/Alert.module.scss @@ -2,45 +2,43 @@ $color-types: (("secondary", "light"), ("warning", "warning"), ("success", "success"), ("danger", "danger"), ("info", "info")); -@layer motif-ui { - .Root { - display: flex; - padding: var(--base-sizing-10x) var(--base-sizing-20x); - align-items: flex-start; - gap: var(--base-sizing-10x); - border-left: var(--base-sizing-4x) solid; - border-radius: 0 var(--base-sizing-4x) var(--base-sizing-4x) 0; - opacity: 1; - @include transition(opacity); - &.hiding { - opacity: 0; - } +.Root { + display: flex; + padding: var(--base-sizing-10x) var(--base-sizing-20x); + align-items: flex-start; + gap: var(--base-sizing-10x); + border-left: var(--base-sizing-4x) solid; + border-radius: 0 var(--base-sizing-4x) var(--base-sizing-4x) 0; + opacity: 1; + @include transition(opacity); + &.hiding { + opacity: 0; + } - @each $colorType, $color in $color-types { - &.#{$colorType} { - background-color: var(--theme-color-surface-#{$color}-negative); - color: var(--theme-color-text-base-title); - border-left-color: var(--theme-color-text-#{$color}-active); + @each $colorType, $color in $color-types { + &.#{$colorType} { + background-color: var(--theme-color-surface-#{$color}-negative); + color: var(--theme-color-text-base-title); + border-left-color: var(--theme-color-text-#{$color}-active); - .title { - @include font("base", "lg", "600"); - letter-spacing: var(--typography-base-lg-600-letter-spacing); - color: var(--theme-color-text-#{$color}-active); - } + .title { + @include font("base", "lg", "600"); + letter-spacing: var(--typography-base-lg-600-letter-spacing); + color: var(--theme-color-text-#{$color}-active); } } } +} - .contentBox { - display: flex; - flex-direction: column; - align-items: flex-start; - gap: var(--base-sizing-4x); - flex: 1 0 0; - align-self: center; - } +.contentBox { + display: flex; + flex-direction: column; + align-items: flex-start; + gap: var(--base-sizing-4x); + flex: 1 0 0; + align-self: center; +} - .message { - @include font("body", "md"); - } +.message { + @include font("body", "md"); } diff --git a/src/lib/components/Avatar/Avatar.module.scss b/src/lib/components/Avatar/Avatar.module.scss index e4cd434..f547ac6 100644 --- a/src/lib/components/Avatar/Avatar.module.scss +++ b/src/lib/components/Avatar/Avatar.module.scss @@ -10,48 +10,46 @@ $sizes: ( ); $variants: ("primary", "secondary", "info", "success", "warning", "danger"); -@layer motif-ui { - .Root { - display: flex; - align-items: center; - justify-content: center; - overflow: hidden; - border-radius: var(--theme-sizing-radius-round); - color: var(--theme-color-text-base-text-light); - } +.Root { + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; + border-radius: var(--theme-sizing-radius-round); + color: var(--theme-color-text-base-text-light); +} - .image { - img { - z-index: 1; - aspect-ratio: 1; - width: 100%; - &::before { - content: ""; - display: block; - padding-top: 100%; - } - } - .imagePlaceholder { - position: absolute; - z-index: 0; +.image { + img { + z-index: 1; + aspect-ratio: 1; + width: 100%; + &::before { + content: ""; + display: block; + padding-top: 100%; } } + .imagePlaceholder { + position: absolute; + z-index: 0; + } +} - @each $name, $size, $iconSize, $fontType, $fontSize, $fontWeight in $sizes { - .#{$name} { - width: var(--base-sizing-#{$size}); - height: var(--base-sizing-#{$size}); - &.letters { - @include font($fontType, $fontSize, $fontWeight); - } - &.icon span { - font-size: var(--base-sizing-#{$iconSize}); - } +@each $name, $size, $iconSize, $fontType, $fontSize, $fontWeight in $sizes { + .#{$name} { + width: var(--base-sizing-#{$size}); + height: var(--base-sizing-#{$size}); + &.letters { + @include font($fontType, $fontSize, $fontWeight); } - } - @each $variant in $variants { - .#{$variant} { - background-color: if($variant == "secondary", var(--theme-color-surface-base-base7), var(--theme-color-surface-#{$variant}-default)); + &.icon span { + font-size: var(--base-sizing-#{$iconSize}); } } } +@each $variant in $variants { + .#{$variant} { + background-color: if($variant == "secondary", var(--theme-color-surface-base-base7), var(--theme-color-surface-#{$variant}-default)); + } +} diff --git a/src/lib/components/Badge/Badge.module.scss b/src/lib/components/Badge/Badge.module.scss index 35b747a..2fd9182 100644 --- a/src/lib/components/Badge/Badge.module.scss +++ b/src/lib/components/Badge/Badge.module.scss @@ -15,51 +15,49 @@ $positions: ("top-left", "top-right", "bottom-left", "bottom-right"); transform: translateX(if($horizontal == "left", -50%, 50%)) translateY(if($vertical == "top", -75%, 75%)); } -@layer motif-ui { - .Root { - width: fit-content; - display: inline-block; - position: relative; - vertical-align: middle; - } - - .icon { - font-size: var(--base-sizing-16x); - } +.Root { + width: fit-content; + display: inline-block; + position: relative; + vertical-align: middle; +} - .badge { - @include font("body", "xs"); - border-radius: var(--theme-sizing-radius-round); - border: solid var(--base-sizing-2x) var(--theme-color-surface-base-global-light); - padding: var(--base-sizing-4x); - min-width: var(--base-sizing-28x); - box-sizing: border-box; - display: flex; - justify-content: center; - align-items: center; - position: absolute; - z-index: 1; - text-wrap: nowrap; +.icon { + font-size: var(--base-sizing-16x); +} - .dot & { - padding: 0; - width: var(--base-sizing-12x); - height: var(--base-sizing-12x); - min-width: var(--base-sizing-12x); - min-height: var(--base-sizing-12x); - } +.badge { + @include font("body", "xs"); + border-radius: var(--theme-sizing-radius-round); + border: solid var(--base-sizing-2x) var(--theme-color-surface-base-global-light); + padding: var(--base-sizing-4x); + min-width: var(--base-sizing-28x); + box-sizing: border-box; + display: flex; + justify-content: center; + align-items: center; + position: absolute; + z-index: 1; + text-wrap: nowrap; + + .dot & { + padding: 0; + width: var(--base-sizing-12x); + height: var(--base-sizing-12x); + min-width: var(--base-sizing-12x); + min-height: var(--base-sizing-12x); + } - @each $variant in $variants { - .#{$variant} & { - background-color: if($variant == "secondary", var(--theme-color-surface-base-base7), var(--theme-color-surface-#{$variant}-default)); - color: if($variant == "warning", var(--theme-color-text-base-global-dark), var(--theme-color-text-base-global-light)); - } + @each $variant in $variants { + .#{$variant} & { + background-color: if($variant == "secondary", var(--theme-color-surface-base-base7), var(--theme-color-surface-#{$variant}-default)); + color: if($variant == "warning", var(--theme-color-text-base-global-dark), var(--theme-color-text-base-global-light)); } + } - @each $position in $positions { - .#{$position} & { - @include position($position); - } + @each $position in $positions { + .#{$position} & { + @include position($position); } } } diff --git a/src/lib/components/Breadcrumb/Breadcrumb.module.scss b/src/lib/components/Breadcrumb/Breadcrumb.module.scss index 0edd806..298f1df 100644 --- a/src/lib/components/Breadcrumb/Breadcrumb.module.scss +++ b/src/lib/components/Breadcrumb/Breadcrumb.module.scss @@ -1,48 +1,46 @@ @use "@styles" as *; -@layer motif-ui { - .Root { - display: flex; - flex-wrap: wrap; +.Root { + display: flex; + flex-wrap: wrap; + align-items: center; + margin: 0; + padding: 0; + list-style: none; + + li { + display: inline-flex; align-items: center; - margin: 0; - padding: 0; - list-style: none; - - li { - display: inline-flex; - align-items: center; - padding: var(--base-sizing-8x) var(--base-sizing-8x) var(--base-sizing-8x) 0; - @include font; - - .collapsed { - color: var(--theme-color-text-base-disabled); - } - - .label { - color: var(--theme-color-text-base-title); - } - - a { - text-decoration: none; - color: var(--theme-color-text-primary-default); - } - - a:hover { - color: var(--theme-color-text-primary-active); - } - - .right-icon { - margin-left: var(--base-sizing-8x); - color: var(--theme-color-text-base-caption-light); - font-size: var(--base-sizing-14x); - } + padding: var(--base-sizing-8x) var(--base-sizing-8x) var(--base-sizing-8x) 0; + @include font; + + .collapsed { + color: var(--theme-color-text-base-disabled); + } + + .label { + color: var(--theme-color-text-base-title); } - .homepage-icon { + a { + text-decoration: none; color: var(--theme-color-text-primary-default); - margin-right: var(--base-sizing-8x); - font-size: var(--base-sizing-22x); } + + a:hover { + color: var(--theme-color-text-primary-active); + } + + .right-icon { + margin-left: var(--base-sizing-8x); + color: var(--theme-color-text-base-caption-light); + font-size: var(--base-sizing-14x); + } + } + + .homepage-icon { + color: var(--theme-color-text-primary-default); + margin-right: var(--base-sizing-8x); + font-size: var(--base-sizing-22x); } } diff --git a/src/lib/components/BusinessCard/BusinessCard.module.scss b/src/lib/components/BusinessCard/BusinessCard.module.scss index 168db79..221f405 100644 --- a/src/lib/components/BusinessCard/BusinessCard.module.scss +++ b/src/lib/components/BusinessCard/BusinessCard.module.scss @@ -2,132 +2,130 @@ $variants: (("neutral", "light"), ("primary", "primary"), ("secondary", "secondary"), ("info", "info"), ("success", "success"), ("danger", "danger"), ("warning", "warning")); -@layer motif-ui { - .Root { - display: flex; - flex-flow: column nowrap; - border-radius: var(--theme-sizing-radius-default); - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - background: var(--theme-color-surface-base-bg-light); +.Root { + display: flex; + flex-flow: column nowrap; + border-radius: var(--theme-sizing-radius-default); + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + background: var(--theme-color-surface-base-bg-light); - .icon { - font-size: var(--base-sizing-40x); + .icon { + font-size: var(--base-sizing-40x); + } + .title { + @include font("base", "lg", "700"); + } + .description { + @include font("body", "md"); + } + .link { + text-decoration: none; + @include font("body", "md"); + &:hover { + text-decoration: underline; } + } + + &:not(.solid), + &.neutral.solid { .title { - @include font("base", "lg", "700"); + color: var(--theme-color-text-base-title); } .description { - @include font("body", "md"); + color: var(--theme-color-text-base-caption); } .link { - text-decoration: none; - @include font("body", "md"); - &:hover { - text-decoration: underline; - } - } - - &:not(.solid), - &.neutral.solid { - .title { - color: var(--theme-color-text-base-title); - } - .description { - color: var(--theme-color-text-base-caption); - } - .link { - color: var(--theme-color-text-primary-default); - } + color: var(--theme-color-text-primary-default); } } +} - .outline { - border: var(--base-sizing-1x) solid; - } +.outline { + border: var(--base-sizing-1x) solid; +} - .elevated { - @include shadow(3); - } +.elevated { + @include shadow(3); +} - .clickable { - cursor: pointer; - &:not(.solid, .elevated, .outline) { - @include transition(background-color); - &:hover { - background-color: var(--theme-color-surface-base-base3); - } +.clickable { + cursor: pointer; + &:not(.solid, .elevated, .outline) { + @include transition(background-color); + &:hover { + background-color: var(--theme-color-surface-base-base3); } - &.solid { - @include transition(background-color); + } + &.solid { + @include transition(background-color); + } + &.outline { + @include transition(background-color border-color); + &:not(.solid, .elevated):hover { + background-color: var(--theme-color-surface-light-negative); } + } + &.elevated { + @include transition(box-shadow); &.outline { - @include transition(background-color border-color); - &:not(.solid, .elevated):hover { - background-color: var(--theme-color-surface-light-negative); - } + @include transition(box-shadow border-color); } - &.elevated { - @include transition(box-shadow); - &.outline { - @include transition(box-shadow border-color); - } - &:hover { - @include shadow(4); - } + &:hover { + @include shadow(4); } } +} - @each $variant, $name in $variants { - .#{$variant} { - &.solid { - background-color: var(--theme-color-surface-#{$name}-default); - &.clickable:not(.elevated):hover { - background-color: var(--theme-color-surface-#{$name}-hover); - } - - @if $variant != "neutral" { - .title, - .description, - .link, - .icon, - .iconButton { - $tone: if($variant == "warning", "dark", "light"); - color: var(--theme-color-text-base-global-#{$tone}); - } - } @else { - .icon { - color: var(--theme-color-text-#{$name}-default); - } - } +@each $variant, $name in $variants { + .#{$variant} { + &.solid { + background-color: var(--theme-color-surface-#{$name}-default); + &.clickable:not(.elevated):hover { + background-color: var(--theme-color-surface-#{$name}-hover); } - &.outline { - border-color: var(--theme-color-border-#{$name}-default); - &.clickable:hover { - border-color: var(--theme-color-border-#{$name}-hover); + @if $variant != "neutral" { + .title, + .description, + .link, + .icon, + .iconButton { + $tone: if($variant == "warning", "dark", "light"); + color: var(--theme-color-text-base-global-#{$tone}); + } + } @else { + .icon { + color: var(--theme-color-text-#{$name}-default); } } + } - &:not(.solid) .icon { - color: var(--theme-color-text-#{$name}-default); + &.outline { + border-color: var(--theme-color-border-#{$name}-default); + &.clickable:hover { + border-color: var(--theme-color-border-#{$name}-hover); } } - } - .left { - align-items: flex-start; - } - .center { - align-items: center; - span { - text-align: center; + &:not(.solid) .icon { + color: var(--theme-color-text-#{$name}-default); } } - .right { - align-items: flex-end; - span { - text-align: right; - } +} + +.left { + align-items: flex-start; +} +.center { + align-items: center; + span { + text-align: center; + } +} +.right { + align-items: flex-end; + span { + text-align: right; } } diff --git a/src/lib/components/Button/Button.module.scss b/src/lib/components/Button/Button.module.scss index 653d35e..8a891ed 100644 --- a/src/lib/components/Button/Button.module.scss +++ b/src/lib/components/Button/Button.module.scss @@ -37,81 +37,79 @@ $variants: ( } } -@layer motif-ui { - .Root { - border: none; - border-radius: var(--theme-sizing-radius-default); - display: inline-flex; - align-items: center; - justify-content: center; - cursor: pointer; - vertical-align: bottom; - white-space: nowrap; - @include transition(background-color); +.Root { + border: none; + border-radius: var(--theme-sizing-radius-default); + display: inline-flex; + align-items: center; + justify-content: center; + cursor: pointer; + vertical-align: bottom; + white-space: nowrap; + @include transition(background-color); - &:disabled { - pointer-events: none; - } + &:disabled { + pointer-events: none; } +} - .pill { - border-radius: var(--theme-sizing-radius-round); - } - .fluid { - width: 100%; - } - .icon-left { - flex-direction: row; - } - .icon-right { - flex-direction: row-reverse; - } +.pill { + border-radius: var(--theme-sizing-radius-round); +} +.fluid { + width: 100%; +} +.icon-left { + flex-direction: row; +} +.icon-right { + flex-direction: row-reverse; +} - @each $size, $ph, $pv, $fontSize, $iconSize in $sizes { - .#{$size} { - padding: var(--base-sizing-#{$pv}) var(--base-sizing-#{$ph}); - gap: var(--base-sizing-#{$pv}); - @include font("base", $fontSize, "600"); - .icon { - font-size: var(--base-sizing-#{$iconSize}); - } +@each $size, $ph, $pv, $fontSize, $iconSize in $sizes { + .#{$size} { + padding: var(--base-sizing-#{$pv}) var(--base-sizing-#{$ph}); + gap: var(--base-sizing-#{$pv}); + @include font("base", $fontSize, "600"); + .icon { + font-size: var(--base-sizing-#{$iconSize}); } } +} - @each $variant, $color, $textColorOnSurface in $variants { - .#{$variant} { - &.solid { - background-color: var(--theme-color-surface-#{$color}-default); - @include text-color-on-surface($variant, $textColorOnSurface); - @each $state in $states { - &:#{$state} { - @include state-background-color($color, $state, "solid"); - @include text-color-on-surface($variant, $textColorOnSurface, $state); - } +@each $variant, $color, $textColorOnSurface in $variants { + .#{$variant} { + &.solid { + background-color: var(--theme-color-surface-#{$color}-default); + @include text-color-on-surface($variant, $textColorOnSurface); + @each $state in $states { + &:#{$state} { + @include state-background-color($color, $state, "solid"); + @include text-color-on-surface($variant, $textColorOnSurface, $state); } } + } - &.outline { - background-color: var(--theme-color-surface-base-bg-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-#{$color}-default); - color: var(--theme-color-text-#{$color}-default); - @each $state in $states { - &:#{$state} { - @include state-background-color($color, $state, "outline"); - border-color: var(--theme-color-border-#{$color}-#{$state}); - color: var(--theme-color-text-#{$color}-#{$state}); - } + &.outline { + background-color: var(--theme-color-surface-base-bg-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-#{$color}-default); + color: var(--theme-color-text-#{$color}-default); + @each $state in $states { + &:#{$state} { + @include state-background-color($color, $state, "outline"); + border-color: var(--theme-color-border-#{$color}-#{$state}); + color: var(--theme-color-text-#{$color}-#{$state}); } } + } - &.textonly { - background-color: transparent; - color: var(--theme-color-text-#{$color}-default); - @each $state in $states { - &:#{$state} { - @include state-background-color($color, $state, "textonly"); - color: var(--theme-color-text-#{$color}-#{$state}); - } + &.textonly { + background-color: transparent; + color: var(--theme-color-text-#{$color}-default); + @each $state in $states { + &:#{$state} { + @include state-background-color($color, $state, "textonly"); + color: var(--theme-color-text-#{$color}-#{$state}); } } } diff --git a/src/lib/components/ButtonGroup/ButtonGroup.module.scss b/src/lib/components/ButtonGroup/ButtonGroup.module.scss index 68aefeb..23920b3 100644 --- a/src/lib/components/ButtonGroup/ButtonGroup.module.scss +++ b/src/lib/components/ButtonGroup/ButtonGroup.module.scss @@ -3,218 +3,216 @@ // size, paddingH, paddingV, gap, iconSize $sizes: (("xs", "8x", "4x", "4x", "18x"), ("sm", "12x", "6x", "6x", "20x"), ("md", "16x", "8x", "8x", "22x"), ("lg", "20x", "10x", "10x", "24x")); -@layer motif-ui { - .Root { - display: inline-flex; - - > .button:first-child, - > .buttonDropdownContainer:first-child > .button:first-child { - border-left-width: var(--base-sizing-1x); - border-top-left-radius: var(--theme-sizing-radius-default); - border-bottom-left-radius: var(--theme-sizing-radius-default); - } +.Root { + display: inline-flex; + + > .button:first-child, + > .buttonDropdownContainer:first-child > .button:first-child { + border-left-width: var(--base-sizing-1x); + border-top-left-radius: var(--theme-sizing-radius-default); + border-bottom-left-radius: var(--theme-sizing-radius-default); + } - > .button:last-child, - > .buttonDropdownContainer:last-child > button:last-of-type { - border-right-width: var(--base-sizing-1x); - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - } + > .button:last-child, + > .buttonDropdownContainer:last-child > button:last-of-type { + border-right-width: var(--base-sizing-1x); + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + } - .disabled, - .disabled .button, - .button:disabled { - pointer-events: none; - background-color: var(--theme-color-surface-light-disabled); + .disabled, + .disabled .button, + .button:disabled { + pointer-events: none; + background-color: var(--theme-color-surface-light-disabled); - &, - .icon { - color: var(--theme-color-text-light-disabled); - } + &, + .icon { + color: var(--theme-color-text-light-disabled); } } +} - .divider { - margin: 0; - padding: 0; - border-right: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - } +.divider { + margin: 0; + padding: 0; + border-right: solid var(--base-sizing-1x) var(--theme-color-border-light-default); +} - .button { - outline: none; - white-space: nowrap; - cursor: pointer; - display: flex; - align-items: center; - border-style: solid; - border-color: var(--theme-color-border-light-default); +.button { + outline: none; + white-space: nowrap; + cursor: pointer; + display: flex; + align-items: center; + border-style: solid; + border-color: var(--theme-color-border-light-default); + color: var(--theme-color-text-light-default); + + .icon { color: var(--theme-color-text-light-default); + @include transition(color); + } + + @include transition(background-color border-color color); + @include focus-ring; +} + +.button__single { + border-width: var(--base-sizing-1x) 0; + background-color: var(--theme-color-surface-light-default); + &:hover, + &:active { + &, .icon { - color: var(--theme-color-text-light-default); - @include transition(color); + color: var(--theme-color-text-base-text-light); } + } - @include transition(background-color border-color color); - @include focus-ring; + &:hover { + background-color: var(--theme-color-surface-primary-default); + border-color: var(--theme-color-border-primary-default); } - .button__single { - border-width: var(--base-sizing-1x) 0; - background-color: var(--theme-color-surface-light-default); + &:active { + background-color: var(--theme-color-surface-primary-hover); + border-color: var(--theme-color-border-primary-hover); + } +} - &:hover, - &:active { - &, - .icon { - color: var(--theme-color-text-base-text-light); - } - } +.button__multiple { + border-width: var(--base-sizing-1x) 0; + background-color: var(--theme-color-surface-light-default); - &:hover { - background-color: var(--theme-color-surface-primary-default); - border-color: var(--theme-color-border-primary-default); + &:hover, + &:active { + &, + .icon { + color: var(--theme-color-text-base-text-light); } + } - &:active { - background-color: var(--theme-color-surface-primary-hover); - border-color: var(--theme-color-border-primary-hover); - } + &:hover { + background-color: var(--theme-color-surface-primary-hover); + border-color: var(--theme-color-border-primary-hover); } - .button__multiple { - border-width: var(--base-sizing-1x) 0; - background-color: var(--theme-color-surface-light-default); + &:active { + background-color: var(--theme-color-surface-primary-active); + border-color: var(--theme-color-border-primary-active); + } +} - &:hover, - &:active { - &, - .icon { - color: var(--theme-color-text-base-text-light); - } - } +.button__dropdown { + border-width: var(--base-sizing-1x) 0; + background-color: var(--theme-color-surface-light-default); - &:hover { - background-color: var(--theme-color-surface-primary-hover); - border-color: var(--theme-color-border-primary-hover); + &:hover, + &:active { + &, + .icon { + color: var(--theme-color-text-base-text-light); } + } - &:active { - background-color: var(--theme-color-surface-primary-active); - border-color: var(--theme-color-border-primary-active); - } + &:hover { + background-color: var(--theme-color-surface-primary-hover); + border-color: var(--theme-color-border-primary-hover); } - .button__dropdown { - border-width: var(--base-sizing-1x) 0; - background-color: var(--theme-color-surface-light-default); + &:active { + background-color: var(--theme-color-surface-primary-active); + border-color: var(--theme-color-border-primary-active); + } +} - &:hover, - &:active { - &, - .icon { - color: var(--theme-color-text-base-text-light); - } - } +.buttonDropdownContainer { + display: flex; + position: relative; - &:hover { - background-color: var(--theme-color-surface-primary-hover); - border-color: var(--theme-color-border-primary-hover); - } + &:hover > .button { + background-color: var(--theme-color-surface-primary-default); + border-color: var(--theme-color-border-primary-default); - &:active { - background-color: var(--theme-color-surface-primary-active); - border-color: var(--theme-color-border-primary-active); + &, + .icon { + color: var(--theme-color-text-base-text-light); } } +} - .buttonDropdownContainer { - display: flex; - position: relative; +.button__dropdownItem { + position: absolute; + display: flex; + flex-direction: column; + right: 0; + top: calc(100% + var(--base-sizing-1x)); + border-radius: var(--theme-sizing-radius-default); + z-index: 1; + @include shadow(6); +} - &:hover > .button { - background-color: var(--theme-color-surface-primary-default); - border-color: var(--theme-color-border-primary-default); +.button__dropdownItem .button__single { + flex: 1; + border-width: var(--base-sizing-1x); + background-color: var(--theme-color-surface-base-global-light); - &, - .icon { - color: var(--theme-color-text-base-text-light); - } - } + &:not(:first-child) { + border-top-width: 0; } - .button__dropdownItem { - position: absolute; - display: flex; - flex-direction: column; - right: 0; - top: calc(100% + var(--base-sizing-1x)); - border-radius: var(--theme-sizing-radius-default); - z-index: 1; - @include shadow(6); + &:first-child { + border-top-right-radius: var(--theme-sizing-radius-default); + border-top-left-radius: var(--theme-sizing-radius-default); } - .button__dropdownItem .button__single { - flex: 1; - border-width: var(--base-sizing-1x); - background-color: var(--theme-color-surface-base-global-light); - - &:not(:first-child) { - border-top-width: 0; - } - - &:first-child { - border-top-right-radius: var(--theme-sizing-radius-default); - border-top-left-radius: var(--theme-sizing-radius-default); - } - - &:last-child { - border-bottom-right-radius: var(--theme-sizing-radius-default); - border-bottom-left-radius: var(--theme-sizing-radius-default); - } + &:last-child { + border-bottom-right-radius: var(--theme-sizing-radius-default); + border-bottom-left-radius: var(--theme-sizing-radius-default); + } - &:hover { - background-color: var(--theme-color-surface-base-base2); - border-color: var(--theme-color-border-light-default); + &:hover { + background-color: var(--theme-color-surface-base-base2); + border-color: var(--theme-color-border-light-default); - &, - .icon { - color: var(--theme-color-text-light-hover); - } + &, + .icon { + color: var(--theme-color-text-light-hover); } + } - &:active { - background-color: var(--theme-color-surface-base-base4); - border-color: var(--theme-color-border-light-default); + &:active { + background-color: var(--theme-color-surface-base-base4); + border-color: var(--theme-color-border-light-default); - &, - .icon { - color: var(--theme-color-text-light-hover); - } + &, + .icon { + color: var(--theme-color-text-light-hover); } } +} - @each $size, $pH, $pV, $gap, $iconSize in $sizes { - .#{$size} { - .button { - gap: var(--base-sizing-#{$gap}); - padding: var(--base-sizing-#{$pV}) var(--base-sizing-#{$pH}); - @include font("base", $size, "500"); - } +@each $size, $pH, $pV, $gap, $iconSize in $sizes { + .#{$size} { + .button { + gap: var(--base-sizing-#{$gap}); + padding: var(--base-sizing-#{$pV}) var(--base-sizing-#{$pH}); + @include font("base", $size, "500"); + } - .button__dropdown { - gap: var(--base-sizing-#{$gap}); - padding: var(--base-sizing-#{$pV}); - @include font("base", $size, "500"); - } + .button__dropdown { + gap: var(--base-sizing-#{$gap}); + padding: var(--base-sizing-#{$pV}); + @include font("base", $size, "500"); + } - .icon { - font-size: var(--base-sizing-#{$iconSize}); - } + .icon { + font-size: var(--base-sizing-#{$iconSize}); + } - .button__dropdownItem .button { - @include font("body", $size); - } + .button__dropdownItem .button { + @include font("body", $size); } } } diff --git a/src/lib/components/Card/Card.module.scss b/src/lib/components/Card/Card.module.scss index 04b1c9b..9ddfad0 100644 --- a/src/lib/components/Card/Card.module.scss +++ b/src/lib/components/Card/Card.module.scss @@ -52,135 +52,133 @@ $variants: ( ) ); -@layer motif-ui { - .Root { - border-radius: var(--theme-sizing-radius-default); - background: var(--theme-color-surface-base-bg-light); - overflow: hidden; +.Root { + border-radius: var(--theme-sizing-radius-default); + background: var(--theme-color-surface-base-bg-light); + overflow: hidden; - &.elevated { - @include shadow(3); - } + &.elevated { + @include shadow(3); + } - &.outlined { - border-style: solid; - border-width: var(--base-sizing-1x); - border-color: var(--theme-color-border-light-default); - } + &.outlined { + border-style: solid; + border-width: var(--base-sizing-1x); + border-color: var(--theme-color-border-light-default); } +} - .header { - display: flex; +.header { + display: flex; - &.headerImageAlignRight { - flex-direction: row-reverse; - } + &.headerImageAlignRight { + flex-direction: row-reverse; + } - .headerContainer { - flex: 1; - display: flex; - align-items: center; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - min-width: 0; - } + .headerContainer { + flex: 1; + display: flex; + align-items: center; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + min-width: 0; + } - .headerContent { - flex: 1; - overflow: hidden; - white-space: nowrap; - } + .headerContent { + flex: 1; + overflow: hidden; + white-space: nowrap; + } - .headerTitle { - color: var(--theme-color-text-base-title); - display: block; - overflow: hidden; - text-overflow: ellipsis; - @include font("base", "lg", "700"); - } + .headerTitle { + color: var(--theme-color-text-base-title); + display: block; + overflow: hidden; + text-overflow: ellipsis; + @include font("base", "lg", "700"); + } - .headerSubtitle { - color: var(--theme-color-text-base-caption); - display: block; - overflow: hidden; - text-overflow: ellipsis; - @include font("body", "md"); - } + .headerSubtitle { + color: var(--theme-color-text-base-caption); + display: block; + overflow: hidden; + text-overflow: ellipsis; + @include font("body", "md"); + } - img { - border-radius: 0; - min-height: var(--base-sizing-80x); - max-height: var(--base-sizing-80x); - } + img { + border-radius: 0; + min-height: var(--base-sizing-80x); + max-height: var(--base-sizing-80x); } +} - .content { - display: flex; - flex-direction: column; +.content { + display: flex; + flex-direction: column; - img { - border-radius: 0; - } + img { + border-radius: 0; } +} + +.contentContainer { + display: flex; + flex-direction: column; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); - .contentContainer { + .contentTitleContainer { display: flex; flex-direction: column; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - - .contentTitleContainer { - display: flex; - flex-direction: column; - gap: var(--base-sizing-4x); - } + gap: var(--base-sizing-4x); + } - .contentTitle { - color: var(--theme-color-text-base-title); - @include font("base", "lg", "700"); - } - .contentSubtitle { - color: var(--theme-color-text-base-subtitle-light); - @include font("body", "md"); - } - .contentText { - margin: 0; - @include font("body", "md"); - color: var(--theme-color-text-base-title); - } - .contentLink { - text-decoration: none; - @include font("body", "md"); - color: var(--theme-color-text-primary-default); - } + .contentTitle { + color: var(--theme-color-text-base-title); + @include font("base", "lg", "700"); + } + .contentSubtitle { + color: var(--theme-color-text-base-subtitle-light); + @include font("body", "md"); } + .contentText { + margin: 0; + @include font("body", "md"); + color: var(--theme-color-text-base-title); + } + .contentLink { + text-decoration: none; + @include font("body", "md"); + color: var(--theme-color-text-primary-default); + } +} - .actionsContainer { - display: flex; - flex-wrap: wrap; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - justify-content: flex-end; - align-items: center; - &:not(:first-child) { - border-top: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - } +.actionsContainer { + display: flex; + flex-wrap: wrap; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + justify-content: flex-end; + align-items: center; + &:not(:first-child) { + border-top: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); } +} - @each $variant, $bgColor, $titleColor, $subtitleColor, $avatarBgColor, $avatarTextColor in $variants { - .#{$variant} { - background-color: $bgColor; - - .headerTitle { - color: $titleColor; - } - .headerSubtitle { - color: $subtitleColor; - } - .avatar { - background-color: $avatarBgColor; - color: $avatarTextColor; - } +@each $variant, $bgColor, $titleColor, $subtitleColor, $avatarBgColor, $avatarTextColor in $variants { + .#{$variant} { + background-color: $bgColor; + + .headerTitle { + color: $titleColor; + } + .headerSubtitle { + color: $subtitleColor; + } + .avatar { + background-color: $avatarBgColor; + color: $avatarTextColor; } } } diff --git a/src/lib/components/Carousel/Carousel.module.scss b/src/lib/components/Carousel/Carousel.module.scss index 8388b0d..ffa9451 100644 --- a/src/lib/components/Carousel/Carousel.module.scss +++ b/src/lib/components/Carousel/Carousel.module.scss @@ -26,118 +26,116 @@ $theme: ( ) ); -@layer motif-ui { - .Root { - position: relative; - width: 100%; - overflow: hidden; - } +.Root { + position: relative; + width: 100%; + overflow: hidden; +} - @each $theme, $background, $titleColor, $subtitleColor, $controlButtonHoverColor, $controlButtonColor, $indicatorBgColor, $indicatorActiveBgColor, $indicatorHoverBgColor in $theme { - .#{$theme} { - background: var($background); - .title { - color: var($titleColor); - } - .subtitle { - color: var($subtitleColor); +@each $theme, $background, $titleColor, $subtitleColor, $controlButtonHoverColor, $controlButtonColor, $indicatorBgColor, $indicatorActiveBgColor, $indicatorHoverBgColor in $theme { + .#{$theme} { + background: var($background); + .title { + color: var($titleColor); + } + .subtitle { + color: var($subtitleColor); + } + .prev, + .next { + color: var($controlButtonColor); + &:hover { + color: var($controlButtonHoverColor); } - .prev, - .next { - color: var($controlButtonColor); - &:hover { - color: var($controlButtonHoverColor); - } + } + .indicators li { + background-color: var($indicatorBgColor); + &.active { + background-color: var($indicatorActiveBgColor); } - .indicators li { - background-color: var($indicatorBgColor); - &.active { - background-color: var($indicatorActiveBgColor); - } - &:hover { - background-color: var($indicatorHoverBgColor); - } + &:hover { + background-color: var($indicatorHoverBgColor); } } } +} - .next { - position: absolute; - top: calc(50% - var(--base-sizing-20x)); - right: var(--base-sizing-16x); - } +.next { + position: absolute; + top: calc(50% - var(--base-sizing-20x)); + right: var(--base-sizing-16x); +} - .prev { - position: absolute; - top: calc(50% - var(--base-sizing-20x)); - transform: rotate(180deg); - left: var(--base-sizing-16x); - } +.prev { + position: absolute; + top: calc(50% - var(--base-sizing-20x)); + transform: rotate(180deg); + left: var(--base-sizing-16x); +} - .track { - display: flex; - height: 100%; - @include transition(transform, "slow"); - will-change: transform; +.track { + display: flex; + height: 100%; + @include transition(transform, "slow"); + will-change: transform; - .item { - position: relative; - flex: 0 0 100%; - width: 100%; + .item { + position: relative; + flex: 0 0 100%; + width: 100%; - > img { - width: 100%; - height: 100%; - object-fit: cover; - object-position: center; - } + > img { + width: 100%; + height: 100%; + object-fit: cover; + object-position: center; + } - .text { - position: absolute; - left: 0; - right: 0; - bottom: var(--base-sizing-48x); - padding: var(--base-sizing-20x) var(--base-sizing-12x); - @include flex-center(column); - text-align: center; + .text { + position: absolute; + left: 0; + right: 0; + bottom: var(--base-sizing-48x); + padding: var(--base-sizing-20x) var(--base-sizing-12x); + @include flex-center(column); + text-align: center; - .title { - @include font("heading", "heading5"); - } - .subtitle { - @include font("body", "md"); - margin-top: var(--base-sizing-4x); - } + .title { + @include font("heading", "heading5"); + } + .subtitle { + @include font("body", "md"); + margin-top: var(--base-sizing-4x); } } } +} - .indicators { - all: unset; - @include flex-center; - gap: var(--base-sizing-6x); - list-style: none; - position: absolute; - left: 0; - right: 0; - bottom: var(--base-sizing-16x); +.indicators { + all: unset; + @include flex-center; + gap: var(--base-sizing-6x); + list-style: none; + position: absolute; + left: 0; + right: 0; + bottom: var(--base-sizing-16x); - li { - cursor: pointer; - @include transition(background-color); - } + li { + cursor: pointer; + @include transition(background-color); + } - &.dot li { - width: var(--base-sizing-12x); - height: var(--base-sizing-12x); - border-radius: var(--theme-sizing-radius-round); - margin: var(--base-sizing-10x); - } + &.dot li { + width: var(--base-sizing-12x); + height: var(--base-sizing-12x); + border-radius: var(--theme-sizing-radius-round); + margin: var(--base-sizing-10x); + } - &.line li { - width: var(--base-sizing-32x); - height: var(--base-sizing-4x); - margin: var(--base-sizing-10x) 0; - } + &.line li { + width: var(--base-sizing-32x); + height: var(--base-sizing-4x); + margin: var(--base-sizing-10x) 0; } } diff --git a/src/lib/components/Checkbox/Checkbox.module.scss b/src/lib/components/Checkbox/Checkbox.module.scss index 7fbb6b2..1638ce9 100644 --- a/src/lib/components/Checkbox/Checkbox.module.scss +++ b/src/lib/components/Checkbox/Checkbox.module.scss @@ -10,125 +10,123 @@ $sizes: ( $svg-path: ''; $partial-check-svg-path: ''; -@layer motif-ui { - @each $name, $size, $gap, $paddingV, $iconSize, $viewBox in $sizes { - .#{$name} { - gap: var(--base-sizing-#{$gap}); +@each $name, $size, $gap, $paddingV, $iconSize, $viewBox in $sizes { + .#{$name} { + gap: var(--base-sizing-#{$gap}); - .label { - @include font("base", $name, "500"); - } + .label { + @include font("base", $name, "500"); + } - .input { - width: var(--base-sizing-#{$size}); - height: var(--base-sizing-#{$size}); - min-width: var(--base-sizing-#{$size}); - min-height: var(--base-sizing-#{$size}); - &::before { - mask-image: url('data:image/svg+xml;utf8,#{$svg-path}'); - content: ""; - width: var(--base-sizing-#{$iconSize}x); - height: var(--base-sizing-#{$iconSize}x); - background-color: var(--theme-color-text-base-global-light); - } + .input { + width: var(--base-sizing-#{$size}); + height: var(--base-sizing-#{$size}); + min-width: var(--base-sizing-#{$size}); + min-height: var(--base-sizing-#{$size}); + &::before { + mask-image: url('data:image/svg+xml;utf8,#{$svg-path}'); + content: ""; + width: var(--base-sizing-#{$iconSize}x); + height: var(--base-sizing-#{$iconSize}x); + background-color: var(--theme-color-text-base-global-light); } + } - &.partialCheck { - .input::before { - mask-image: url('data:image/svg+xml;utf8,#{$partial-check-svg-path}'); - } + &.partialCheck { + .input::before { + mask-image: url('data:image/svg+xml;utf8,#{$partial-check-svg-path}'); } + } - &.inFormField { - padding: var(--base-sizing-#{$paddingV}) 0; - } + &.inFormField { + padding: var(--base-sizing-#{$paddingV}) 0; } } +} - .Root { - display: inline-flex; - vertical-align: bottom; - align-items: center; - - .input { - appearance: none; - background: var(--theme-color-surface-base-bg-light); - margin: 0; // Not removed via appearance - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - @include transition; - overflow: hidden; - display: flex; - justify-content: center; - - &:hover { - border-color: var(--theme-color-border-light-hover); - background-color: var(--theme-color-surface-base-base2); - } +.Root { + display: inline-flex; + vertical-align: bottom; + align-items: center; + + .input { + appearance: none; + background: var(--theme-color-surface-base-bg-light); + margin: 0; // Not removed via appearance + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + @include transition; + overflow: hidden; + display: flex; + justify-content: center; + + &:hover { + border-color: var(--theme-color-border-light-hover); + background-color: var(--theme-color-surface-base-base2); } + } - .input::before { - opacity: 0; - @include transition(opacity); - } + .input::before { + opacity: 0; + @include transition(opacity); + } - .input:checked, - &.partialCheck .input { - border-color: var(--theme-color-surface-primary-default); - background: var(--theme-color-surface-primary-default); + .input:checked, + &.partialCheck .input { + border-color: var(--theme-color-surface-primary-default); + background: var(--theme-color-surface-primary-default); - &::before { - opacity: 1; - } + &::before { + opacity: 1; } + } - .input:focus-visible { - outline: none; - border-color: var(--theme-color-border-primary-default); - background-color: var(--theme-color-surface-base-base2); + .input:focus-visible { + outline: none; + border-color: var(--theme-color-border-primary-default); + background-color: var(--theme-color-surface-base-base2); + } + + .label { + color: var(--theme-color-text-base-title-light); + } + + &.disabled { + * { + pointer-events: none; } .label { - color: var(--theme-color-text-base-title-light); + color: var(--theme-color-text-base-disabled); } - &.disabled { - * { - pointer-events: none; - } - - .label { - color: var(--theme-color-text-base-disabled); - } - - .input { - border-color: var(--theme-color-border-light-disabled); - } + .input { + border-color: var(--theme-color-border-light-disabled); + } - .input:checked, - &.partialCheck .input { - border-color: var(--theme-color-border-primary-disabled); - background: var(--theme-color-surface-primary-disabled); - } + .input:checked, + &.partialCheck .input { + border-color: var(--theme-color-border-primary-disabled); + background: var(--theme-color-surface-primary-disabled); + } - &.success .input:checked, - &.success.partialCheck .input { - border-color: var(--theme-color-surface-success-disabled); - background: var(--theme-color-surface-success-disabled); - } + &.success .input:checked, + &.success.partialCheck .input { + border-color: var(--theme-color-surface-success-disabled); + background: var(--theme-color-surface-success-disabled); } - &.success { - .input:checked, - &.partialCheck .input { - border-color: var(--theme-color-surface-success-default); - background: var(--theme-color-surface-success-default); - } + } + &.success { + .input:checked, + &.partialCheck .input { + border-color: var(--theme-color-surface-success-default); + background: var(--theme-color-surface-success-default); } + } - &.error { - .input { - border-color: var(--theme-color-border-danger-default); - } + &.error { + .input { + border-color: var(--theme-color-border-danger-default); } } } diff --git a/src/lib/components/Chip/Chip.module.scss b/src/lib/components/Chip/Chip.module.scss index ff95a13..18e5ad1 100644 --- a/src/lib/components/Chip/Chip.module.scss +++ b/src/lib/components/Chip/Chip.module.scss @@ -10,74 +10,72 @@ $variants: ( ("danger", "danger", base-global-light, base-light-overlay75) ); -@layer motif-ui { - .Root { - display: inline-flex; - vertical-align: bottom; - box-sizing: content-box; - justify-content: center; - align-items: center; - white-space: nowrap; - border-radius: var(--theme-sizing-radius-default); - } +.Root { + display: inline-flex; + vertical-align: bottom; + box-sizing: content-box; + justify-content: center; + align-items: center; + white-space: nowrap; + border-radius: var(--theme-sizing-radius-default); +} - .pill { - border-radius: var(--theme-sizing-radius-round); - } +.pill { + border-radius: var(--theme-sizing-radius-round); +} - @each $size, $fontSize, $padding, $iconLeftSize in $sizes { - .#{$size} { - min-width: var(--typography-body-#{$fontSize}-line-height); - padding: var(--base-sizing-#{$padding}); - .label { - @include font("body", $fontSize); - margin: 0 var(--base-sizing-#{$padding}); - } - .icon-left { - font-size: var(--base-sizing-#{$iconLeftSize}); - margin-right: var(--base-sizing-2x); - } - .icon-close { - margin-left: var(--base-sizing-2x); - } +@each $size, $fontSize, $padding, $iconLeftSize in $sizes { + .#{$size} { + min-width: var(--typography-body-#{$fontSize}-line-height); + padding: var(--base-sizing-#{$padding}); + .label { + @include font("body", $fontSize); + margin: 0 var(--base-sizing-#{$padding}); + } + .icon-left { + font-size: var(--base-sizing-#{$iconLeftSize}); + margin-right: var(--base-sizing-2x); + } + .icon-close { + margin-left: var(--base-sizing-2x); } } +} - @each $variant, $color, $colorSolid, $colorCloseIconSolid in $variants { - .#{$variant} { - &.solid { - background-color: var(--theme-color-surface-#{$color}-default); - color: var(--theme-color-text-#{$colorSolid}); - &.closable { - @include transition(background-color color); +@each $variant, $color, $colorSolid, $colorCloseIconSolid in $variants { + .#{$variant} { + &.solid { + background-color: var(--theme-color-surface-#{$color}-default); + color: var(--theme-color-text-#{$colorSolid}); + &.closable { + @include transition(background-color color); + .icon-close { + color: var(--theme-color-text-#{$colorCloseIconSolid}); + } + &:hover { + background-color: var(--theme-color-surface-#{$color}-hover); + &, .icon-close { - color: var(--theme-color-text-#{$colorCloseIconSolid}); - } - &:hover { - background-color: var(--theme-color-surface-#{$color}-hover); - &, - .icon-close { - color: if($variant == "secondary", var(--theme-color-text-light-hover), var(--theme-color-text-#{$colorSolid})); - } + color: if($variant == "secondary", var(--theme-color-text-light-hover), var(--theme-color-text-#{$colorSolid})); } } } + } - &.outline { - border: solid var(--base-sizing-1x) var(--theme-color-border-#{$color}-default); - color: if($variant == "warning", var(--theme-color-text-warning-hover), var(--theme-color-text-#{$color}-default)); + &.outline { + border: solid var(--base-sizing-1x) var(--theme-color-border-#{$color}-default); + color: if($variant == "warning", var(--theme-color-text-warning-hover), var(--theme-color-text-#{$color}-default)); - &.closable { - @include transition(color border-color); + &.closable { + @include transition(color border-color); + .icon-close { + color: var(--theme-color-text-#{$color}-disabled); + } + &:hover { + border-color: var(--theme-color-border-#{$color}-hover); + &, .icon-close { - color: var(--theme-color-text-#{$color}-disabled); - } - &:hover { - border-color: var(--theme-color-border-#{$color}-hover); - &, - .icon-close { - color: if($variant == "warning", var(--theme-color-text-warning-active), var(--theme-color-text-#{$color}-hover)); - } + color: if($variant == "warning", var(--theme-color-text-warning-active), var(--theme-color-text-#{$color}-hover)); } } } diff --git a/src/lib/components/DataView/DataView.module.scss b/src/lib/components/DataView/DataView.module.scss index f5d277a..21f367e 100644 --- a/src/lib/components/DataView/DataView.module.scss +++ b/src/lib/components/DataView/DataView.module.scss @@ -2,107 +2,105 @@ $data-view-sizes: ("xs", "sm", "md", "lg", "xl"); -@layer motif-ui { - .Root { - display: grid; - column-gap: var(--base-sizing-32x); +.Root { + display: grid; + column-gap: var(--base-sizing-32x); - &.leftAlign .item .value { - text-align: left; - } + &.leftAlign .item .value { + text-align: left; + } - &.centerAlign .item .value { - text-align: center; - } + &.centerAlign .item .value { + text-align: center; + } - &.rightAlign .item .value { - text-align: right; - } + &.rightAlign .item .value { + text-align: right; + } - &.horizontal .item { - flex-direction: row; + &.horizontal .item { + flex-direction: row; + } + &.vertical { + .item { + flex-direction: column; + .title { + width: initial; + } } - &.vertical { - .item { - flex-direction: column; - .title { - width: initial; - } + &:not(.solid) .item { + .title { + padding-bottom: var(--base-sizing-2x); } - &:not(.solid) .item { - .title { - padding-bottom: var(--base-sizing-2x); - } - .value { - padding-top: var(--base-sizing-2x); - } + .value { + padding-top: var(--base-sizing-2x); } } } +} - .solid { - .item .title { - background: var(--theme-color-surface-base-base2); - } - &:not(.bordered) .item { - margin-bottom: var(--base-sizing-2x); - } +.solid { + .item .title { + background: var(--theme-color-surface-base-base2); + } + &:not(.bordered) .item { + margin-bottom: var(--base-sizing-2x); } +} - .item { - display: flex; +.item { + display: flex; - $color-variants: "primary", "info", "success", "warning", "danger"; - @each $variant in $color-variants { - &.#{$variant} { - background-color: var(--theme-color-surface-#{$variant}-inverse); - } + $color-variants: "primary", "info", "success", "warning", "danger"; + @each $variant in $color-variants { + &.#{$variant} { + background-color: var(--theme-color-surface-#{$variant}-inverse); } + } - .title, - .value { - @include font("body", "md"); - } + .title, + .value { + @include font("body", "md"); + } - .title { - width: 30%; - color: var(--theme-color-text-base-caption); - display: inline-flex; - gap: var(--base-sizing-10x); - padding: var(--base-sizing-10x) var(--base-sizing-20x); - overflow-wrap: break-word; - } - .value { - flex: 1; - color: var(--theme-color-text-base-title); - padding: var(--base-sizing-10x) var(--base-sizing-20x); - overflow: hidden; - overflow-wrap: break-word; - } - .icon { - color: var(--theme-color-text-base-caption); - } + .title { + width: 30%; + color: var(--theme-color-text-base-caption); + display: inline-flex; + gap: var(--base-sizing-10x); + padding: var(--base-sizing-10x) var(--base-sizing-20x); + overflow-wrap: break-word; } + .value { + flex: 1; + color: var(--theme-color-text-base-title); + padding: var(--base-sizing-10x) var(--base-sizing-20x); + overflow: hidden; + overflow-wrap: break-word; + } + .icon { + color: var(--theme-color-text-base-caption); + } +} - @mixin data-view-cols($breakpoint) { - @for $i from 1 through 4 { - .Root.#{$breakpoint}-#{$i} { - grid-template-columns: repeat(#{$i}, 1fr); - &.bordered .item:not(:nth-last-child(-n + #{$i})) { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - } - &.stripe { - @for $j from 1 through $i { - .item:nth-child(#{2 * $i}n + #{$j}) { - background-color: var(--theme-color-surface-base-base2); - } +@mixin data-view-cols($breakpoint) { + @for $i from 1 through 4 { + .Root.#{$breakpoint}-#{$i} { + grid-template-columns: repeat(#{$i}, 1fr); + &.bordered .item:not(:nth-last-child(-n + #{$i})) { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + } + &.stripe { + @for $j from 1 through $i { + .item:nth-child(#{2 * $i}n + #{$j}) { + background-color: var(--theme-color-surface-base-base2); } } } } } +} - @include screen-width-breakpoints($data-view-sizes) using ($breakpoint) { - @include data-view-cols($breakpoint); - } +@include screen-width-breakpoints($data-view-sizes) using ($breakpoint) { + @include data-view-cols($breakpoint); } diff --git a/src/lib/components/DatePicker/DatePicker.module.scss b/src/lib/components/DatePicker/DatePicker.module.scss index 83a8d23..7c015e4 100644 --- a/src/lib/components/DatePicker/DatePicker.module.scss +++ b/src/lib/components/DatePicker/DatePicker.module.scss @@ -10,273 +10,271 @@ $sizes: ( ("lg", "48x", "10x", "16x", "8x", "32x", "48x", "28x", "72x") ); -@layer motif-ui { - .dateSelector { - display: flex; - flex-direction: column; +.dateSelector { + display: flex; + flex-direction: column; - &.fluid { - .weekDays { - place-items: center; - } - .days { - flex: 1; - place-items: center; - } - .monthSelector, - .yearSelector { - justify-content: space-evenly; - } + &.fluid { + .weekDays { + place-items: center; + } + .days { + flex: 1; + place-items: center; + } + .monthSelector, + .yearSelector { + justify-content: space-evenly; } } +} - .header { - display: grid; - grid-template-columns: 1fr 1fr 1fr; - - .arrowButton { - border-radius: var(--theme-sizing-radius-round); - background-color: var(--theme-color-surface-base-base1); - display: flex; - border: solid var(--base-sizing-1x) transparent; - align-items: center; - justify-content: center; - cursor: pointer; - box-sizing: border-box; - @include transition(background-color border-color); - color: var(--theme-color-text-base-subtitle); +.header { + display: grid; + grid-template-columns: 1fr 1fr 1fr; - &:first-child { - grid-column: 1; - justify-self: start; - } - &:last-child { - grid-column: 3; - justify-self: end; - } + .arrowButton { + border-radius: var(--theme-sizing-radius-round); + background-color: var(--theme-color-surface-base-base1); + display: flex; + border: solid var(--base-sizing-1x) transparent; + align-items: center; + justify-content: center; + cursor: pointer; + box-sizing: border-box; + @include transition(background-color border-color); + color: var(--theme-color-text-base-subtitle); + + &:first-child { + grid-column: 1; + justify-self: start; + } + &:last-child { + grid-column: 3; + justify-self: end; + } - &:hover { - background-color: var(--theme-color-surface-base-base2); - border-color: var(--theme-color-border-light-disabled); - } + &:hover { + background-color: var(--theme-color-surface-base-base2); + border-color: var(--theme-color-border-light-disabled); } + } - .headerMonthYearButtonContainer { - grid-column: 2; - justify-self: center; - display: flex; - gap: var(--base-sizing-2x); + .headerMonthYearButtonContainer { + grid-column: 2; + justify-self: center; + display: flex; + gap: var(--base-sizing-2x); - button { - all: unset; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-base-bg-light); - border-radius: var(--base-radius-sm); - @include transition(background-color); - - &:not(:disabled) { - cursor: pointer; - &:hover { - background-color: var(--theme-color-surface-base-base1); - } + button { + all: unset; + color: var(--theme-color-text-base-subtitle); + background-color: var(--theme-color-surface-base-bg-light); + border-radius: var(--base-radius-sm); + @include transition(background-color); + + &:not(:disabled) { + cursor: pointer; + &:hover { + background-color: var(--theme-color-surface-base-base1); } } } } +} - .daySelector { - display: flex; - flex-direction: column; - } +.daySelector { + display: flex; + flex-direction: column; +} - .divider { - width: 100%; - height: var(--base-sizing-1x); - margin: 0; - border: 0; - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); - } +.divider { + width: 100%; + height: var(--base-sizing-1x); + margin: 0; + border: 0; + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); +} - .weekDays { - display: grid; - grid-template-areas: "x x x x x x x"; +.weekDays { + display: grid; + grid-template-areas: "x x x x x x x"; - span { - display: flex; - justify-content: center; - align-items: center; - color: var(--theme-color-text-base-caption); - } + span { + display: flex; + justify-content: center; + align-items: center; + color: var(--theme-color-text-base-caption); } +} - .days { - display: grid; - grid-template-areas: "x x x x x x x"; - overflow: hidden; +.days { + display: grid; + grid-template-areas: "x x x x x x x"; + overflow: hidden; - button { - display: flex; - justify-content: center; - align-items: center; - cursor: pointer; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-base-bg-light); - border-radius: var(--theme-sizing-radius-default); - border: none; - @include transition(background-color); - @include focus-ring; + button { + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + color: var(--theme-color-text-base-subtitle); + background-color: var(--theme-color-surface-base-bg-light); + border-radius: var(--theme-sizing-radius-default); + border: none; + @include transition(background-color); + @include focus-ring; + + &:hover { + background-color: var(--theme-color-surface-base-base1); + } - &:hover { - background-color: var(--theme-color-surface-base-base1); - } + &:disabled { + color: var(--theme-color-text-base-disabled-light); + pointer-events: none; + } - &:disabled { - color: var(--theme-color-text-base-disabled-light); - pointer-events: none; - } + &.today { + background-color: var(--theme-color-surface-base-bg-light); + color: var(--theme-color-text-primary-default); + border: solid var(--base-sizing-1x) var(--theme-color-border-primary-default); + } - &.today { - background-color: var(--theme-color-surface-base-bg-light); - color: var(--theme-color-text-primary-default); - border: solid var(--base-sizing-1x) var(--theme-color-border-primary-default); - } + &.selected { + background-color: var(--theme-color-surface-primary-default); + color: var(--theme-color-text-base-text-light); + position: relative; - &.selected { - background-color: var(--theme-color-surface-primary-default); - color: var(--theme-color-text-base-text-light); - position: relative; - - &.toLeft, - &.toRight { - &::after { - position: absolute; - z-index: -1; - content: ""; - background-color: var(--theme-color-surface-primary-negative); - top: 0; - bottom: 0; - } + &.toLeft, + &.toRight { + &::after { + position: absolute; + z-index: -1; + content: ""; + background-color: var(--theme-color-surface-primary-negative); + top: 0; + bottom: 0; } + } - &.toLeft { - &, - &::after { - border-radius: 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0; - } - &::after { - right: 0; - left: calc(-1 * var(--base-sizing-2x)); - } + &.toLeft { + &, + &::after { + border-radius: 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0; } - - &.toRight { - &, - &::after { - border-radius: var(--theme-sizing-radius-default) 0 0 var(--theme-sizing-radius-default); - } - &::after { - left: 0; - right: calc(-1 * var(--base-sizing-2x)); - } + &::after { + right: 0; + left: calc(-1 * var(--base-sizing-2x)); } } - &.partiallySelected { - background-color: transparent; - position: relative; + &.toRight { + &, &::after { - content: ""; - background-color: var(--theme-color-surface-primary-negative); - position: absolute; - inset: 0 calc(-1 * var(--base-sizing-2x)); - z-index: -1; + border-radius: var(--theme-sizing-radius-default) 0 0 var(--theme-sizing-radius-default); + } + &::after { + left: 0; + right: calc(-1 * var(--base-sizing-2x)); } } } - } - .monthSelector, - .yearSelector { - display: grid; - justify-content: center; + &.partiallySelected { + background-color: transparent; + position: relative; + &::after { + content: ""; + background-color: var(--theme-color-surface-primary-negative); + position: absolute; + inset: 0 calc(-1 * var(--base-sizing-2x)); + z-index: -1; + } + } + } +} - button { - display: flex; - cursor: pointer; - justify-content: center; - align-items: center; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-base-bg-light); - border-radius: var(--base-radius-sm); - border: none; - @include focus-ring; - @include transition(background-color); +.monthSelector, +.yearSelector { + display: grid; + justify-content: center; - &:hover { - background-color: var(--theme-color-surface-base-base1); - } + button { + display: flex; + cursor: pointer; + justify-content: center; + align-items: center; + color: var(--theme-color-text-base-subtitle); + background-color: var(--theme-color-surface-base-bg-light); + border-radius: var(--base-radius-sm); + border: none; + @include focus-ring; + @include transition(background-color); + + &:hover { + background-color: var(--theme-color-surface-base-base1); + } - &.selected { - background-color: var(--theme-color-surface-primary-default); - color: var(--theme-color-text-base-text-light); - } + &.selected { + background-color: var(--theme-color-surface-primary-default); + color: var(--theme-color-text-base-text-light); } } +} - .monthSelector { - grid-template-areas: "x x x"; - } - .yearSelector { - grid-template-areas: "x x x x"; - } +.monthSelector { + grid-template-areas: "x x x"; +} +.yearSelector { + grid-template-areas: "x x x x"; +} - @each $size, $itemSize, $headerButtonPaddingH, $daysRowGap, $daysColGap, $monthYearGapV, $monthGapH, $yearGapH, $monthYearButtonW in $sizes { - .#{$size} { - &.daySelector, - &.dateSelector { - gap: map.get(pickerValues.$size, $size, "gapV"); - } +@each $size, $itemSize, $headerButtonPaddingH, $daysRowGap, $daysColGap, $monthYearGapV, $monthGapH, $yearGapH, $monthYearButtonW in $sizes { + .#{$size} { + &.daySelector, + &.dateSelector { + gap: map.get(pickerValues.$size, $size, "gapV"); + } - .header { + .header { + height: var(--base-sizing-#{$itemSize}); + .arrowButton { + width: var(--base-sizing-#{$itemSize}); height: var(--base-sizing-#{$itemSize}); - .arrowButton { - width: var(--base-sizing-#{$itemSize}); - height: var(--base-sizing-#{$itemSize}); - } - .headerMonthYearButtonContainer button { - padding: 0 var(--base-sizing-#{$headerButtonPaddingH}); - @include font("base", $size, "700"); - } } - - .days, - .weekDays { - gap: var(--base-sizing-#{$daysRowGap}) var(--base-sizing-#{$daysColGap}); + .headerMonthYearButtonContainer button { + padding: 0 var(--base-sizing-#{$headerButtonPaddingH}); + @include font("base", $size, "700"); } + } - .weekDays span, - .days button { - width: var(--base-sizing-#{$itemSize}); + .days, + .weekDays { + gap: var(--base-sizing-#{$daysRowGap}) var(--base-sizing-#{$daysColGap}); + } + + .weekDays span, + .days button { + width: var(--base-sizing-#{$itemSize}); + height: var(--base-sizing-#{$itemSize}); + @include font("base", $size, "700"); + } + + .monthSelector, + .yearSelector { + margin: map.get(pickerValues.$size, $size, "gapV") 0; + row-gap: var(--base-sizing-#{$monthYearGapV}); + button { + width: var(--base-sizing-#{$monthYearButtonW}); height: var(--base-sizing-#{$itemSize}); @include font("base", $size, "700"); } - - .monthSelector, - .yearSelector { - margin: map.get(pickerValues.$size, $size, "gapV") 0; - row-gap: var(--base-sizing-#{$monthYearGapV}); - button { - width: var(--base-sizing-#{$monthYearButtonW}); - height: var(--base-sizing-#{$itemSize}); - @include font("base", $size, "700"); - } - } - .monthSelector { - column-gap: var(--base-sizing-#{$monthGapH}); - } - .yearSelector { - column-gap: var(--base-sizing-#{$yearGapH}); - } + } + .monthSelector { + column-gap: var(--base-sizing-#{$monthGapH}); + } + .yearSelector { + column-gap: var(--base-sizing-#{$yearGapH}); } } } diff --git a/src/lib/components/DateRangePicker/DateRangePicker.module.scss b/src/lib/components/DateRangePicker/DateRangePicker.module.scss index 8de823c..b956dba 100644 --- a/src/lib/components/DateRangePicker/DateRangePicker.module.scss +++ b/src/lib/components/DateRangePicker/DateRangePicker.module.scss @@ -10,125 +10,123 @@ $sizes: ( ("lg", "32x", "190x", "190x") ); -@layer motif-ui { - @each $size, $pickerGap, $minWidthDropdown, $inputWidth in $sizes { - .#{$size} { - gap: map.get(pickerValues.$size, $size, "gapV"); - - .selectionBar { - padding-bottom: map.get(pickerValues.$size, $size, "gapV"); - > div:first-child { - min-width: var(--base-sizing-#{$minWidthDropdown}); - } - > div:not(:first-child) { - width: var(--base-sizing-#{$inputWidth}); - } +@each $size, $pickerGap, $minWidthDropdown, $inputWidth in $sizes { + .#{$size} { + gap: map.get(pickerValues.$size, $size, "gapV"); + + .selectionBar { + padding-bottom: map.get(pickerValues.$size, $size, "gapV"); + > div:first-child { + min-width: var(--base-sizing-#{$minWidthDropdown}); } + > div:not(:first-child) { + width: var(--base-sizing-#{$inputWidth}); + } + } - .datePickers { - gap: calc(var(--base-sizing-#{$pickerGap})); - transform: translateX(calc(-50% - var(--base-sizing-#{$pickerGap}) / 2 + var(--base-sizing-1x))); + .datePickers { + gap: calc(var(--base-sizing-#{$pickerGap})); + transform: translateX(calc(-50% - var(--base-sizing-#{$pickerGap}) / 2 + var(--base-sizing-1x))); - &.slideLeft { - transform: translateX(calc(-100% - var(--base-sizing-#{$pickerGap}) + var(--base-sizing-3x))); - } - &.slideRight { - transform: translateX(0); - } + &.slideLeft { + transform: translateX(calc(-100% - var(--base-sizing-#{$pickerGap}) + var(--base-sizing-3x))); + } + &.slideRight { + transform: translateX(0); } } } +} - .rangeSelector { - display: flex; - flex-direction: column; - overflow: hidden; - } +.rangeSelector { + display: flex; + flex-direction: column; + overflow: hidden; +} - .datePickers { - display: flex; +.datePickers { + display: flex; - &.slideLeft, - &.slideRight { - @include transition(transform); - & > div > div:first-child button { - display: none; - } + &.slideLeft, + &.slideRight { + @include transition(transform); + & > div > div:first-child button { + display: none; } + } - .isInRange { - position: relative; - transition: none; - - &::after { - content: ""; - position: absolute; - z-index: -1; - background-color: var(--theme-color-surface-primary-negative); - top: 0; - bottom: 0; - } + .isInRange { + position: relative; + transition: none; + + &::after { + content: ""; + position: absolute; + z-index: -1; + background-color: var(--theme-color-surface-primary-negative); + top: 0; + bottom: 0; + } - // leftmost items - &:nth-of-type(7n + 1)::after { - left: 0; - right: calc(-1 * var(--base-sizing-2x)); - } + // leftmost items + &:nth-of-type(7n + 1)::after { + left: 0; + right: calc(-1 * var(--base-sizing-2x)); + } - // middle items - &:not(:nth-of-type(7n), :nth-of-type(7n + 1))::after { - left: calc(-1 * var(--base-sizing-2x)); - right: calc(-1 * var(--base-sizing-2x)); - } + // middle items + &:not(:nth-of-type(7n), :nth-of-type(7n + 1))::after { + left: calc(-1 * var(--base-sizing-2x)); + right: calc(-1 * var(--base-sizing-2x)); + } - // rightmost items - &:nth-of-type(7n)::after { - right: 0; - left: calc(-1 * var(--base-sizing-2x)); - } + // rightmost items + &:nth-of-type(7n)::after { + right: 0; + left: calc(-1 * var(--base-sizing-2x)); + } - &.isSelected { - &.toLeft { - border-radius: 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0; - &::after { - right: 0; - } - } - &.toRight { - border-radius: var(--theme-sizing-radius-default) 0 0 var(--theme-sizing-radius-default); - &::after { - left: 0; - } + &.isSelected { + &.toLeft { + border-radius: 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0; + &::after { + right: 0; } } - - &:not(.isSelected) { - background-color: transparent; + &.toRight { + border-radius: var(--theme-sizing-radius-default) 0 0 var(--theme-sizing-radius-default); + &::after { + left: 0; + } } + } - // last item in range - &:not(:has(+ .isInRange))::after { - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - } + &:not(.isSelected) { + background-color: transparent; } - // first item in range - :not(.isInRange) + .isInRange::after { - border-top-left-radius: var(--theme-sizing-radius-default); - border-bottom-left-radius: var(--theme-sizing-radius-default); + // last item in range + &:not(:has(+ .isInRange))::after { + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); } } - .selectionBar { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); - text-align: right; + // first item in range + :not(.isInRange) + .isInRange::after { + border-top-left-radius: var(--theme-sizing-radius-default); + border-bottom-left-radius: var(--theme-sizing-radius-default); + } +} - > div:first-child { - float: left; - } - > div:last-child { - margin-left: var(--base-sizing-2x); - } +.selectionBar { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + text-align: right; + + > div:first-child { + float: left; + } + > div:last-child { + margin-left: var(--base-sizing-2x); } } diff --git a/src/lib/components/DateTimePicker/DateTimePicker.module.scss b/src/lib/components/DateTimePicker/DateTimePicker.module.scss index 2bb8eb0..69169c4 100644 --- a/src/lib/components/DateTimePicker/DateTimePicker.module.scss +++ b/src/lib/components/DateTimePicker/DateTimePicker.module.scss @@ -10,96 +10,94 @@ $sizes: ( ("lg", "heading2", "12x", "24x", "md", "0") ); -@layer motif-ui { - .dateTimePickerContainer { - display: flex; - flex-direction: column; - } - - .info { - display: flex; - align-items: center; - } +.dateTimePickerContainer { + display: flex; + flex-direction: column; +} - .infoDate { - display: flex; - flex: 1; - gap: var(--base-sizing-4x); - align-items: baseline; - span { - color: var(--theme-color-text-base-caption-light); - } - &.active span { - color: var(--theme-color-text-primary-default); - } - } +.info { + display: flex; + align-items: center; +} - .infoTime { +.infoDate { + display: flex; + flex: 1; + gap: var(--base-sizing-4x); + align-items: baseline; + span { color: var(--theme-color-text-base-caption-light); - &.active { - color: var(--theme-color-text-primary-default); - } } + &.active span { + color: var(--theme-color-text-primary-default); + } +} - .infoTimePeriod { - color: var(--theme-color-text-base-disabled-light); +.infoTime { + color: var(--theme-color-text-base-caption-light); + &.active { + color: var(--theme-color-text-primary-default); } +} - .tabItemContainer { - display: flex; +.infoTimePeriod { + color: var(--theme-color-text-base-disabled-light); +} - .tabItem { - flex: 1; - cursor: pointer; - appearance: unset; - background: none; - border: none; - border-bottom: solid var(--base-sizing-2x) var(--theme-color-surface-base-base6); +.tabItemContainer { + display: flex; - .icon { - color: var(--theme-color-text-base-caption-light); - @include transition(color); - } + .tabItem { + flex: 1; + cursor: pointer; + appearance: unset; + background: none; + border: none; + border-bottom: solid var(--base-sizing-2x) var(--theme-color-surface-base-base6); - @include transition(border-bottom-color); + .icon { + color: var(--theme-color-text-base-caption-light); + @include transition(color); + } - &.active { - border-bottom-color: var(--theme-color-border-primary-default); - .icon { - color: var(--theme-color-text-primary-default); - } + @include transition(border-bottom-color); + + &.active { + border-bottom-color: var(--theme-color-border-primary-default); + .icon { + color: var(--theme-color-text-primary-default); } + } - &:not(.active):hover { - border-bottom-color: var(--theme-color-surface-base-base7); - .icon { - color: var(--theme-color-text-base-caption); - } + &:not(.active):hover { + border-bottom-color: var(--theme-color-surface-base-base7); + .icon { + color: var(--theme-color-text-base-caption); } } } +} - @each $size, $monthLabelSize, $tabPaddingV, $tabPaddingH, $timePeriodSize, $timePeriodMarginBottom in $sizes { - .#{$size} { - gap: map.get(pickerValues.$size, $size, "gapV"); +@each $size, $monthLabelSize, $tabPaddingV, $tabPaddingH, $timePeriodSize, $timePeriodMarginBottom in $sizes { + .#{$size} { + gap: map.get(pickerValues.$size, $size, "gapV"); - .infoMonthDay { - @include font("heading", $monthLabelSize); - } - .infoDate .infoYear, - .infoTime { - @include font("base", $size, "700"); - } - .infoTimePeriod { - @include font("base", $timePeriodSize, "500"); - margin-left: var(--base-sizing-2x); - } - .tabItemContainer .tabItem { - padding: var(--base-sizing-#{$tabPaddingV}) var(--base-sizing-#{$tabPaddingH}); - } - .timePicker { - margin: calc(-1 * map.get(pickerValues.$size, $size, "gapV")) 0; - } + .infoMonthDay { + @include font("heading", $monthLabelSize); + } + .infoDate .infoYear, + .infoTime { + @include font("base", $size, "700"); + } + .infoTimePeriod { + @include font("base", $timePeriodSize, "500"); + margin-left: var(--base-sizing-2x); + } + .tabItemContainer .tabItem { + padding: var(--base-sizing-#{$tabPaddingV}) var(--base-sizing-#{$tabPaddingH}); + } + .timePicker { + margin: calc(-1 * map.get(pickerValues.$size, $size, "gapV")) 0; } } } diff --git a/src/lib/components/Divider/Divider.module.scss b/src/lib/components/Divider/Divider.module.scss index f892092..9a62c39 100644 --- a/src/lib/components/Divider/Divider.module.scss +++ b/src/lib/components/Divider/Divider.module.scss @@ -2,79 +2,77 @@ $sizes: (("sm", "1x", "6x"), ("md", "2x", "12x"), ("lg", "4x", "18x")); -@layer motif-ui { - .Root { +.Root { + &::before { + box-sizing: border-box; + border-color: var(--theme-color-surface-base-base6); + position: absolute; + content: ""; + } + + &.horizontal { + min-width: 100%; + position: relative; &::before { - box-sizing: border-box; - border-color: var(--theme-color-surface-base-base6); - position: absolute; - content: ""; + width: 100%; } - - &.horizontal { - min-width: 100%; - position: relative; - &::before { - width: 100%; - } - &.solid::before { - border-top-style: solid; - } - &.dashed::before { - border-top-style: dashed; - } - &.dotted::before { - border-top-style: dotted; - } + &.solid::before { + border-top-style: solid; + } + &.dashed::before { + border-top-style: dashed; + } + &.dotted::before { + border-top-style: dotted; } + } - &.vertical { - min-height: 100%; - position: relative; - justify-content: center; - &::before { - height: 100%; - } - &.solid::before { - border-left-style: solid; - } - &.dashed::before { - border-left-style: dashed; - } - &.dotted::before { - border-left-style: dotted; - } + &.vertical { + min-height: 100%; + position: relative; + justify-content: center; + &::before { + height: 100%; + } + &.solid::before { + border-left-style: solid; + } + &.dashed::before { + border-left-style: dashed; + } + &.dotted::before { + border-left-style: dotted; } + } - @each $size, $thickness, $gap in $sizes { - $align-position: calc(var(--base-sizing-#{$thickness}) / 2); - $border-width: var(--base-sizing-#{$thickness}); + @each $size, $thickness, $gap in $sizes { + $align-position: calc(var(--base-sizing-#{$thickness}) / 2); + $border-width: var(--base-sizing-#{$thickness}); - &.#{$size} { - &.horizontal { - height: $border-width; - &::before { - border-top-width: $border-width; - top: calc(50% - $align-position); - } + &.#{$size} { + &.horizontal { + height: $border-width; + &::before { + border-top-width: $border-width; + top: calc(50% - $align-position); } - &.vertical { - width: $border-width; - &::before { - border-left-width: $border-width; - left: calc(50% - $align-position); - } + } + &.vertical { + width: $border-width; + &::before { + border-left-width: $border-width; + left: calc(50% - $align-position); } } + } - &.gap-#{$size} { - &.horizontal { - margin-block: var(--base-sizing-#{$gap}); - } + &.gap-#{$size} { + &.horizontal { + margin-block: var(--base-sizing-#{$gap}); + } - &.vertical { - margin-inline: var(--base-sizing-#{$gap}); - } + &.vertical { + margin-inline: var(--base-sizing-#{$gap}); } } } diff --git a/src/lib/components/Dropdown/Dropdown.module.scss b/src/lib/components/Dropdown/Dropdown.module.scss index 6b6363b..8037cd5 100644 --- a/src/lib/components/Dropdown/Dropdown.module.scss +++ b/src/lib/components/Dropdown/Dropdown.module.scss @@ -52,168 +52,166 @@ $variants: ("primary", "secondary", "info", "success", "warning", "danger"); } } -@layer motif-ui { - .Root { - position: relative; - display: inline-flex; - } - - // ============================================================================= - // Dropdown Button - // ============================================================================= - .Button { - display: flex; - justify-content: space-between; - flex: 1; - border-radius: var(--theme-sizing-radius-default); - align-items: center; - border: none; - overflow-wrap: break-word; - width: max-content; - @include transition(background color); - - &:not(:disabled) { - cursor: pointer; - } +.Root { + position: relative; + display: inline-flex; +} - &:focus-visible { - border: solid var(--base-sizing-1x) var(--theme-color-surface-base-bg-light); - outline: solid var(--base-sizing-4x) var(--theme-color-border-primary-focus); - } +// ============================================================================= +// Dropdown Button +// ============================================================================= +.Button { + display: flex; + justify-content: space-between; + flex: 1; + border-radius: var(--theme-sizing-radius-default); + align-items: center; + border: none; + overflow-wrap: break-word; + width: max-content; + @include transition(background color); + + &:not(:disabled) { + cursor: pointer; + } - .Button-DropdownIcon { - @include transition(rotate); - .open & { - rotate: 180deg; - } - } + &:focus-visible { + border: solid var(--base-sizing-1x) var(--theme-color-surface-base-bg-light); + outline: solid var(--base-sizing-4x) var(--theme-color-border-primary-focus); + } - .pill & { - border-radius: var(--theme-sizing-radius-round); + .Button-DropdownIcon { + @include transition(rotate); + .open & { + rotate: 180deg; } + } - .textOnly & { - background: transparent; - color: var(--theme-color-text-base-subtitle); + .pill & { + border-radius: var(--theme-sizing-radius-round); + } - &:hover, - &:active { - color: var(--theme-color-text-base-text-dark); - } - &:disabled { - color: var(--theme-color-text-base-disabled); - } + .textOnly & { + background: transparent; + color: var(--theme-color-text-base-subtitle); + + &:hover, + &:active { + color: var(--theme-color-text-base-text-dark); + } + &:disabled { + color: var(--theme-color-text-base-disabled); } + } - @each $variant in $variants { - $color: if($variant == "secondary", "light", $variant); - .solid.#{$variant} & { - background-color: var(--theme-color-surface-#{$color}-default); - color: if($variant == "secondary" or $variant == "warning", var(--theme-color-text-base-title), var(--theme-color-text-base-global-light)); - - @each $state in $states { - &:#{$state} { - background-color: var(--theme-color-surface-#{$color}-#{$state}); - @if $variant == "secondary" { - color: var(--theme-color-text-light-#{$state}); - } - @if $variant == "warning" and $state == "disabled" { - color: var(--theme-color-text-base-default-overlay50); - } + @each $variant in $variants { + $color: if($variant == "secondary", "light", $variant); + .solid.#{$variant} & { + background-color: var(--theme-color-surface-#{$color}-default); + color: if($variant == "secondary" or $variant == "warning", var(--theme-color-text-base-title), var(--theme-color-text-base-global-light)); + + @each $state in $states { + &:#{$state} { + background-color: var(--theme-color-surface-#{$color}-#{$state}); + @if $variant == "secondary" { + color: var(--theme-color-text-light-#{$state}); + } + @if $variant == "warning" and $state == "disabled" { + color: var(--theme-color-text-base-default-overlay50); } } } } } +} - // ============================================================================= - // Dropdown Menu - // ============================================================================= - .Menu { - list-style: none; - padding: 0; - position: absolute; - top: 100%; - z-index: 1; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-global-light); - @include shadow(6); - - &:not(.leftOverflow) { - @include overflow-caret(right); - } - &.leftOverflow { - @include overflow-caret(left); - } +// ============================================================================= +// Dropdown Menu +// ============================================================================= +.Menu { + list-style: none; + padding: 0; + position: absolute; + top: 100%; + z-index: 1; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-global-light); + @include shadow(6); + + &:not(.leftOverflow) { + @include overflow-caret(right); } + &.leftOverflow { + @include overflow-caret(left); + } +} - // ============================================================================= - // Dropdown Menu Item - // ============================================================================= - .MenuItem { - @include transition(color background-color); - color: var(--theme-color-text-base-subtitle); - user-select: none; - display: flex; - align-items: center; - white-space: nowrap; - - li:first-child & { - border-top-left-radius: var(--theme-sizing-radius-default); - border-top-right-radius: var(--theme-sizing-radius-default); - } - li:last-child & { - border-bottom-left-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - } - li:not(:last-child) & { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - } +// ============================================================================= +// Dropdown Menu Item +// ============================================================================= +.MenuItem { + @include transition(color background-color); + color: var(--theme-color-text-base-subtitle); + user-select: none; + display: flex; + align-items: center; + white-space: nowrap; + + li:first-child & { + border-top-left-radius: var(--theme-sizing-radius-default); + border-top-right-radius: var(--theme-sizing-radius-default); + } + li:last-child & { + border-bottom-left-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + } + li:not(:last-child) & { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + } - &.MenuItem_disabled, - &.MenuItem_header { - pointer-events: none; - color: var(--theme-color-text-base-caption-light); - } + &.MenuItem_disabled, + &.MenuItem_header { + pointer-events: none; + color: var(--theme-color-text-base-caption-light); + } - &.MenuItem_clickable { - cursor: pointer; - &:hover { - background: var(--theme-color-surface-base-base4); - color: var(--theme-color-text-base-text-dark); - } + &.MenuItem_clickable { + cursor: pointer; + &:hover { + background: var(--theme-color-surface-base-base4); + color: var(--theme-color-text-base-text-dark); } + } - .icon:first-child:last-child { - flex: 1; - text-align: center; - } + .icon:first-child:last-child { + flex: 1; + text-align: center; } +} - // ============================================================================= - // COMMON - // ============================================================================= - @each $size, $buttonPaddingAndGap, $itemPaddingAndGap, $iconFontSize in $sizes { - .#{$size} { - .Button { - padding: var(--base-sizing-#{$buttonPaddingAndGap}); - gap: var(--base-sizing-#{$buttonPaddingAndGap}); - @include font("base", $size, "500"); - } - .MenuItem { - padding: var(--base-sizing-#{$itemPaddingAndGap}); - gap: var(--base-sizing-#{$itemPaddingAndGap}); - &.MenuItem_clickable { - @include font("body", $size); - } - &.MenuItem_header { - @include font("base", $size, "500"); - } +// ============================================================================= +// COMMON +// ============================================================================= +@each $size, $buttonPaddingAndGap, $itemPaddingAndGap, $iconFontSize in $sizes { + .#{$size} { + .Button { + padding: var(--base-sizing-#{$buttonPaddingAndGap}); + gap: var(--base-sizing-#{$buttonPaddingAndGap}); + @include font("base", $size, "500"); + } + .MenuItem { + padding: var(--base-sizing-#{$itemPaddingAndGap}); + gap: var(--base-sizing-#{$itemPaddingAndGap}); + &.MenuItem_clickable { + @include font("body", $size); } - .icon { - font-size: var(--base-sizing-#{$iconFontSize}); + &.MenuItem_header { + @include font("base", $size, "500"); } } + .icon { + font-size: var(--base-sizing-#{$iconFontSize}); + } } } diff --git a/src/lib/components/Form/Form.module.scss b/src/lib/components/Form/Form.module.scss index b8b0ac4..5ec7f38 100644 --- a/src/lib/components/Form/Form.module.scss +++ b/src/lib/components/Form/Form.module.scss @@ -8,68 +8,66 @@ $sizes: ( ("lg", "24x", "32x", "8x", "16x") ); -@layer motif-ui { - .Root { - flex-direction: column; - } +.Root { + flex-direction: column; +} - .vertical, - .submitArea { - display: flex; - } +.vertical, +.submitArea { + display: flex; +} - .horizontal { - display: inline-flex; - } +.horizontal { + display: inline-flex; +} - .horizontal .fields { - display: inline-flex; - align-items: flex-start; - } +.horizontal .fields { + display: inline-flex; + align-items: flex-start; +} - .horizontalLabels .submitArea { - padding-top: 0; - } +.horizontalLabels .submitArea { + padding-top: 0; +} - .vertical { - .fields { - display: flex; - flex-direction: column; - } +.vertical { + .fields { + display: flex; + flex-direction: column; + } - .submitArea { - margin-top: var(--base-sizing-24x); + .submitArea { + margin-top: var(--base-sizing-24x); - &.submitArea_align_left { - justify-content: flex-start; - } - &.submitArea_align_center { - justify-content: center; - } - &.submitArea_align_right { - justify-content: flex-end; - } + &.submitArea_align_left { + justify-content: flex-start; + } + &.submitArea_align_center { + justify-content: center; + } + &.submitArea_align_right { + justify-content: flex-end; } } +} - @each $size, $gapV, $gapH, $gapVLabel, $gapButtons in $sizes { - .#{$size} { - &, - &.vertical .fields { - gap: var(--base-sizing-#{$gapV}); - } - .submitArea { - gap: var(--base-sizing-#{$gapButtons}); +@each $size, $gapV, $gapH, $gapVLabel, $gapButtons in $sizes { + .#{$size} { + &, + &.vertical .fields { + gap: var(--base-sizing-#{$gapV}); + } + .submitArea { + gap: var(--base-sizing-#{$gapButtons}); + } + &.horizontal { + .fields { + gap: var(--base-sizing-#{$gapH}); } - &.horizontal { - .fields { - gap: var(--base-sizing-#{$gapH}); - } - &.verticalLabels .fields > [data-has-label] ~ .submitArea { - $gap-var: --base-sizing-#{$gapVLabel}; - $line-height-var: --typography-base-#{$size}-500-line-height; - padding-top: calc(var(#{$gap-var}) + var(#{$line-height-var})); - } + &.verticalLabels .fields > [data-has-label] ~ .submitArea { + $gap-var: --base-sizing-#{$gapVLabel}; + $line-height-var: --typography-base-#{$size}-500-line-height; + padding-top: calc(var(#{$gap-var}) + var(#{$line-height-var})); } } } diff --git a/src/lib/components/Form/FormFields/FormField.module.scss b/src/lib/components/Form/FormFields/FormField.module.scss index 37f65c3..694585a 100644 --- a/src/lib/components/Form/FormFields/FormField.module.scss +++ b/src/lib/components/Form/FormFields/FormField.module.scss @@ -8,144 +8,142 @@ $sizes: ( ("lg", "sm", "8x", "20x", "10x", "32x") ); -@layer motif-ui { - .Root { - display: flex; - - &.error { - &.required .label::before, - &.required .label::after, - .helper { - color: var(--theme-color-text-danger-default); - } - } - - &.success .helper { - color: var(--theme-color-text-success-default); +.Root { + display: flex; + + &.error { + &.required .label::before, + &.required .label::after, + .helper { + color: var(--theme-color-text-danger-default); } + } - &.disabled { - .label { - &, - &::before, - &::after { - color: var(--theme-color-text-base-disabled); - } - } - &.required .label::before, - &.required .label::after { - color: var(--theme-color-text-base-disabled); - } - .helper { - color: var(--theme-color-text-base-disabled); - } - } + &.success .helper { + color: var(--theme-color-text-success-default); } - .label { - color: var(--theme-color-text-base-title-light); - .required & { + &.disabled { + .label { + &, &::before, &::after { - color: var(--theme-color-text-base-caption); - padding: 0 var(--base-sizing-2x); + color: var(--theme-color-text-base-disabled); } } + &.required .label::before, + &.required .label::after { + color: var(--theme-color-text-base-disabled); + } + .helper { + color: var(--theme-color-text-base-disabled); + } } +} - .helper { - color: var(--theme-color-text-base-caption); - white-space: pre-line; - @include transition(color); +.label { + color: var(--theme-color-text-base-title-light); + .required & { + &::before, + &::after { + color: var(--theme-color-text-base-caption); + padding: 0 var(--base-sizing-2x); + } } +} - .inputContainer { - display: flex; - flex-direction: column; - } +.helper { + color: var(--theme-color-text-base-caption); + white-space: pre-line; + @include transition(color); +} - .horizontalForm { - .label { - white-space: nowrap; - } - } +.inputContainer { + display: flex; + flex-direction: column; +} - .verticalForm.horizontalLabel { - .label { - width: var(--base-sizing-128x); - min-width: var(--base-sizing-128x); - } - .inputContainer { - flex: 1; - } +.horizontalForm { + .label { + white-space: nowrap; } +} - .horizontalLabel { - align-items: flex-start; - &.required .label::before { - content: "*"; - } +.verticalForm.horizontalLabel { + .label { + width: var(--base-sizing-128x); + min-width: var(--base-sizing-128x); + } + .inputContainer { + flex: 1; } +} - .verticalLabel { - flex-direction: column; - &.required .label::after { - content: "*"; - } +.horizontalLabel { + align-items: flex-start; + &.required .label::before { + content: "*"; } +} - .groupItems { - display: flex; - .verticalGroup & { - flex-direction: column; - } +.verticalLabel { + flex-direction: column; + &.required .label::after { + content: "*"; } +} - @each $size, $helperSize, $gapVLabel, $gapHLabel, $marginTopHLabel, $gapHGroupItems in $sizes { - .#{$size} { - &.verticalLabel { - gap: var(--base-sizing-#{$gapVLabel}); - &.required .label::after { - font-weight: var(--typography-base-#{$size}-700-font-weight); - } - &.horizontalForm:not(:has(> .label)) { - @at-root :has(.label) > & { - $gap-var: --base-sizing-#{$gapVLabel}; - $line-height-var: --typography-base-#{$size}-500-line-height; - padding-top: calc(var(#{$gap-var}) + var(#{$line-height-var})); - } - } - } +.groupItems { + display: flex; + .verticalGroup & { + flex-direction: column; + } +} - &.verticalGroup .groupItems { - gap: var(--base-sizing-#{$gapVLabel}); +@each $size, $helperSize, $gapVLabel, $gapHLabel, $marginTopHLabel, $gapHGroupItems in $sizes { + .#{$size} { + &.verticalLabel { + gap: var(--base-sizing-#{$gapVLabel}); + &.required .label::after { + font-weight: var(--typography-base-#{$size}-700-font-weight); } - - &.horizontalLabel { - gap: var(--base-sizing-#{$gapHLabel}); - .label { - margin-top: var(--base-sizing-#{$marginTopHLabel}); - } - &.required .label::before { - font-weight: var(--typography-base-#{$size}-700-font-weight); + &.horizontalForm:not(:has(> .label)) { + @at-root :has(.label) > & { + $gap-var: --base-sizing-#{$gapVLabel}; + $line-height-var: --typography-base-#{$size}-500-line-height; + padding-top: calc(var(#{$gap-var}) + var(#{$line-height-var})); } } + } - &.horizontalGroup .groupItems { - gap: var(--base-sizing-#{$gapHGroupItems}); - } + &.verticalGroup .groupItems { + gap: var(--base-sizing-#{$gapVLabel}); + } + &.horizontalLabel { + gap: var(--base-sizing-#{$gapHLabel}); .label { - @include font("base", $size, "500"); + margin-top: var(--base-sizing-#{$marginTopHLabel}); } - - .helper { - @include font("body", $helperSize); + &.required .label::before { + font-weight: var(--typography-base-#{$size}-700-font-weight); } + } - .inputContainer { - gap: var(--base-sizing-#{$gapVLabel}); - } + &.horizontalGroup .groupItems { + gap: var(--base-sizing-#{$gapHGroupItems}); + } + + .label { + @include font("base", $size, "500"); + } + + .helper { + @include font("body", $helperSize); + } + + .inputContainer { + gap: var(--base-sizing-#{$gapVLabel}); } } } diff --git a/src/lib/components/Form/components/FormTitle.module.scss b/src/lib/components/Form/components/FormTitle.module.scss index 7d8a3ff..1d2c8f4 100644 --- a/src/lib/components/Form/components/FormTitle.module.scss +++ b/src/lib/components/Form/components/FormTitle.module.scss @@ -2,16 +2,14 @@ $headings: (("h2", "heading6"), ("h3", "heading5"), ("h4", "heading4"), ("h5", "heading5")); -@layer motif-ui { - .title { - margin: 0; - padding: 0; - color: var(--theme-color-text-base-title); +.title { + margin: 0; + padding: 0; + color: var(--theme-color-text-base-title); - @each $tag, $heading in $headings { - #{$tag} & { - @include font("heading", $heading); - } + @each $tag, $heading in $headings { + #{$tag} & { + @include font("heading", $heading); } } } diff --git a/src/lib/components/Grid/Grid.module.scss b/src/lib/components/Grid/Grid.module.scss index 97ac253..788aaee 100644 --- a/src/lib/components/Grid/Grid.module.scss +++ b/src/lib/components/Grid/Grid.module.scss @@ -7,87 +7,85 @@ $grids: 12; @return calc(($colIdx / $grids * 100%) - ((1 - $colIdx / $grids) * #{$gutter})); } -@layer motif-ui { - .Root { - width: 100%; - margin: 0 auto; - display: flex; - flex-direction: column; - box-sizing: border-box; +.Root { + width: 100%; + margin: 0 auto; + display: flex; + flex-direction: column; + box-sizing: border-box; + + @each $gutter-size in $grid-sizes { + &.gutter-#{$gutter-size} { + gap: var(--theme-grid-gutter-gutter-#{$gutter-size}); + padding: var(--theme-grid-gutter-gutter-#{$gutter-size}); - @each $gutter-size in $grid-sizes { - &.gutter-#{$gutter-size} { + .row { gap: var(--theme-grid-gutter-gutter-#{$gutter-size}); - padding: var(--theme-grid-gutter-gutter-#{$gutter-size}); + } - .row { - gap: var(--theme-grid-gutter-gutter-#{$gutter-size}); + @for $i from 1 through $grids { + .col-size-#{$i} { + flex: 0 0 calculate-grid-flex-width($i, var(--theme-grid-gutter-gutter-#{$gutter-size})); } + } + @include screen-width-breakpoints($grid-sizes) using ($size) { @for $i from 1 through $grids { - .col-size-#{$i} { + .col-#{$size}-#{$i} { flex: 0 0 calculate-grid-flex-width($i, var(--theme-grid-gutter-gutter-#{$gutter-size})); } } - - @include screen-width-breakpoints($grid-sizes) using ($size) { - @for $i from 1 through $grids { - .col-#{$size}-#{$i} { - flex: 0 0 calculate-grid-flex-width($i, var(--theme-grid-gutter-gutter-#{$gutter-size})); - } - } - } } } + } - &.leanToEdge { - padding: 0; - } + &.leanToEdge { + padding: 0; + } - &:not(.fluid) { - @include screen-width-breakpoints($grid-sizes) using ($size) { - max-width: var(--theme-grid-container-#{$size}); - } + &:not(.fluid) { + @include screen-width-breakpoints($grid-sizes) using ($size) { + max-width: var(--theme-grid-container-#{$size}); } } +} - // ============================== - // Col - // ============================== - .colBase { - box-sizing: border-box; - min-width: 0; - overflow-wrap: break-word; - flex: 1 0 0; - display: flex; - .col { - width: 100%; - } +// ============================== +// Col +// ============================== +.colBase { + box-sizing: border-box; + min-width: 0; + overflow-wrap: break-word; + flex: 1 0 0; + display: flex; + .col { + width: 100%; } +} - // ============================== - // Row - // ============================== - .row { - flex-grow: 1; - display: flex; - flex-wrap: wrap; +// ============================== +// Row +// ============================== +.row { + flex-grow: 1; + display: flex; + flex-wrap: wrap; - &.start { - justify-content: flex-start; - } - &.center { - justify-content: center; - } - &.end { - justify-content: flex-end; - } - &.evenly { - justify-content: space-evenly; - } + &.start { + justify-content: flex-start; + } + &.center { + justify-content: center; + } + &.end { + justify-content: flex-end; + } + &.evenly { + justify-content: space-evenly; + } - &.colsAuto > * { - flex: initial; - } + &.colsAuto > * { + flex: initial; } } diff --git a/src/lib/components/Icon/Icon.module.scss b/src/lib/components/Icon/Icon.module.scss index 8b47247..fb4a19b 100644 --- a/src/lib/components/Icon/Icon.module.scss +++ b/src/lib/components/Icon/Icon.module.scss @@ -3,45 +3,43 @@ $variants: "primary", "secondary", "info", "success", "warning", "danger"; $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24x"), ("xl", "28x"), ("xxl", "32x")); -@layer motif-ui { - .Root { - display: inline-flex; - vertical-align: top; - user-select: none; +.Root { + display: inline-flex; + vertical-align: top; + user-select: none; - span, - i { - font-size: inherit; - line-height: 1; - &::before { - vertical-align: bottom; - } - } - svg { - width: 1em; - height: 1em; + span, + i { + font-size: inherit; + line-height: 1; + &::before { + vertical-align: bottom; } } - - @each $variant in $variants { - .#{$variant} { - color: var(--theme-color-text-#{$variant}-default); - } + svg { + width: 1em; + height: 1em; } +} - @each $size, $fontSize in $sizes { - .#{$size} { - font-size: var(--base-sizing-#{$fontSize}); - } +@each $variant in $variants { + .#{$variant} { + color: var(--theme-color-text-#{$variant}-default); } +} - .stroke svg { - stroke: currentColor; - fill: transparent; +@each $size, $fontSize in $sizes { + .#{$size} { + font-size: var(--base-sizing-#{$fontSize}); } +} - .fill svg { - fill: currentColor; - stroke: transparent; - } +.stroke svg { + stroke: currentColor; + fill: transparent; +} + +.fill svg { + fill: currentColor; + stroke: transparent; } diff --git a/src/lib/components/IconButton/IconButton.module.scss b/src/lib/components/IconButton/IconButton.module.scss index 213c3a8..484dfdb 100644 --- a/src/lib/components/IconButton/IconButton.module.scss +++ b/src/lib/components/IconButton/IconButton.module.scss @@ -4,59 +4,57 @@ $variants: "primary", "secondary", "info", "success", "warning", "danger"; $states: "hover", "active", "disabled"; $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24x"), ("xl", "28x"), ("xxl", "32x")); -@layer motif-ui { - .Root { - border: 0; - background: none; - padding: 0; - -webkit-tap-highlight-color: transparent; - @include transition(color); - &:not(:disabled):hover { - cursor: pointer; - } +.Root { + border: 0; + background: none; + padding: 0; + -webkit-tap-highlight-color: transparent; + @include transition(color); + &:not(:disabled):hover { + cursor: pointer; } +} - .strong { - color: var(--theme-color-text-base-global-dark); +.strong { + color: var(--theme-color-text-base-global-dark); - &:hover { - color: var(--theme-color-text-base-dark-overlay75); - } - &:active { - color: var(--theme-color-text-base-global-dark); - } - &:disabled { - color: var(--theme-color-text-base-dark-overlay25); - } + &:hover { + color: var(--theme-color-text-base-dark-overlay75); + } + &:active { + color: var(--theme-color-text-base-global-dark); } + &:disabled { + color: var(--theme-color-text-base-dark-overlay25); + } +} - .negative { - color: var(--theme-color-text-base-global-light); +.negative { + color: var(--theme-color-text-base-global-light); - &:hover { - color: var(--theme-color-text-base-light-overlay75); - } - &:active { - color: var(--theme-color-text-base-global-light); - } - &:disabled { - color: var(--theme-color-text-base-light-overly50); - } + &:hover { + color: var(--theme-color-text-base-light-overlay75); + } + &:active { + color: var(--theme-color-text-base-global-light); + } + &:disabled { + color: var(--theme-color-text-base-light-overly50); } +} - @each $name, $fontSize in $sizes { - .#{$name} { - font-size: var(--base-sizing-#{$fontSize}); - } +@each $name, $fontSize in $sizes { + .#{$name} { + font-size: var(--base-sizing-#{$fontSize}); } +} - @each $variant in $variants { - .#{$variant} { - color: var(--theme-color-text-#{$variant}-default); - @each $state in $states { - &:#{$state} { - color: var(--theme-color-text-#{$variant}-#{$state}); - } +@each $variant in $variants { + .#{$variant} { + color: var(--theme-color-text-#{$variant}-default); + @each $state in $states { + &:#{$state} { + color: var(--theme-color-text-#{$variant}-#{$state}); } } } diff --git a/src/lib/components/ImageView/ImageView.module.scss b/src/lib/components/ImageView/ImageView.module.scss index b664979..14269bb 100644 --- a/src/lib/components/ImageView/ImageView.module.scss +++ b/src/lib/components/ImageView/ImageView.module.scss @@ -1,40 +1,38 @@ @use "@styles" as *; -@layer motif-ui { - .Root { - border-radius: var(--theme-sizing-radius-default); - overflow: hidden; - } - - .placeholder { - background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA4MCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9Ikdyb3VwIj4KPGcgaWQ9Ikdyb3VwIDEiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNNzIuMTY0NSAwSDcuODM1ODVDMy45MTExNSAwIDAuNTc3NjM3IDMuMTY1ODEgMC41Nzc2MzcgNy4yNTgyMVY1Ni43NDE4QzAuNTc3NjM3IDYwLjgzNDMgMy45MTA4NCA2NCA3LjgzNTg1IDY0SDcyLjE2NDNDNzYuMDg5MiA2NCA3OS40MjI1IDYwLjgzNDIgNzkuNDIyNSA1Ni43NDE4VjcuMjU4MjFDNzkuNDIyNyAzLjE2NTY2IDc2LjA4OTUgMCA3Mi4xNjQ1IDBaTTUuMTk3NDYgNy4yNTgyMUM1LjE5NzQ2IDUuNzgzNzIgNi4zOTI3NyA0LjYxOTgzIDcuODM1ODUgNC42MTk4M0g3Mi4xNjQzQzczLjYwNjYgNC42MTk4MyA3NC44MDI3IDUuNzgyNzkgNzQuODAyNyA3LjI1ODIxVjM2LjMyTDYzLjkwMSAyNS40MTgxQzYzLjQ2NzggMjQuOTg0OSA2Mi44ODAzIDI0Ljc0MTUgNjIuMjY3NyAyNC43NDE1QzYxLjY1NTEgMjQuNzQxNSA2MS4wNjc2IDI0Ljk4NDggNjAuNjM0NSAyNS40MTgxTDQyLjQ3NDQgNDMuNTc4NUwzNC4yMTA5IDM1LjMxNTJDMzMuMzA5IDM0LjQxMzIgMzEuODQ2MyAzNC40MTMyIDMwLjk0NDIgMzUuMzE1Mkw3LjAxMjI5IDU5LjI0N0M1Ljk2NTc0IDU4LjkwMzEgNS4xOTc0NiA1Ny45MjM1IDUuMTk3NDYgNTYuNzQxOFY3LjI1ODIxWk03Mi4xNjQ1IDU5LjM4MDJIMTMuNDEyNEwzMi41Nzc2IDQwLjIxNTFMNDAuODQxMSA0OC40Nzg1QzQxLjc0MzEgNDkuMzgwNCA0My4yMDU3IDQ5LjM4MDQgNDQuMTA3OCA0OC40Nzg1TDYyLjI2NzcgMzAuMzE4Mkw3NC44MDI4IDQyLjg1MzRWNTYuNzQxOEM3NC44MDI4IDU4LjIxNjMgNzMuNjA3NSA1OS4zODAyIDcyLjE2NDUgNTkuMzgwMloiIGZpbGw9IiNBRUI0QkEiLz4KPHBhdGggaWQ9IlZlY3Rvcl8yIiBkPSJNMjAuMjA2OCAyOS4zNjE0QzI1LjU3MzMgMjkuMzYxNCAyOS45MzkyIDI0Ljk5NTYgMjkuOTM5MiAxOS42MjkyQzI5LjkzOTIgMTQuMjYyOCAyNS41NzMzIDkuODk2NzMgMjAuMjA2OCA5Ljg5NjczQzE0Ljg0MDMgOS44OTY3MyAxMC40NzQ0IDE0LjI2MjggMTAuNDc0NCAxOS42MjkyQzEwLjQ3NDQgMjQuOTk1NiAxNC44NDAzIDI5LjM2MTQgMjAuMjA2OCAyOS4zNjE0Wk0yMC4yMDY4IDE0LjUxNjZDMjMuMDI2IDE0LjUxNjYgMjUuMzE5NCAxNi44MTAxIDI1LjMxOTQgMTkuNjI5MkMyNS4zMTk0IDIyLjQ0ODIgMjMuMDI2IDI0Ljc0MTYgMjAuMjA2OCAyNC43NDE2QzE3LjM4NzYgMjQuNzQxNiAxNS4wOTQyIDIyLjQ0OCAxNS4wOTQyIDE5LjYyOTJDMTUuMDk0MiAxNi44MSAxNy4zODc2IDE0LjUxNjYgMjAuMjA2OCAxNC41MTY2WiIgZmlsbD0iI0FFQjRCQSIvPgo8L2c+CjwvZz4KPC9zdmc+Cg=="); - background-size: 60%; - background-repeat: no-repeat; - background-position: center; - } - - .bordered { - border: solid var(--base-sizing-1x) var(--theme-color-border-secondary-default); - background-position: center; - } - - .solid { - background-color: var(--theme-color-surface-base-base3); - } - - .original { - object-fit: none; - } - - .fill { - object-fit: fill; - } - - .fit { - object-fit: contain; - } - - .fillKeepAspectRatio { - object-fit: cover; - } +.Root { + border-radius: var(--theme-sizing-radius-default); + overflow: hidden; +} + +.placeholder { + background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iNjQiIHZpZXdCb3g9IjAgMCA4MCA2NCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9Ikdyb3VwIj4KPGcgaWQ9Ikdyb3VwIDEiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNNzIuMTY0NSAwSDcuODM1ODVDMy45MTExNSAwIDAuNTc3NjM3IDMuMTY1ODEgMC41Nzc2MzcgNy4yNTgyMVY1Ni43NDE4QzAuNTc3NjM3IDYwLjgzNDMgMy45MTA4NCA2NCA3LjgzNTg1IDY0SDcyLjE2NDNDNzYuMDg5MiA2NCA3OS40MjI1IDYwLjgzNDIgNzkuNDIyNSA1Ni43NDE4VjcuMjU4MjFDNzkuNDIyNyAzLjE2NTY2IDc2LjA4OTUgMCA3Mi4xNjQ1IDBaTTUuMTk3NDYgNy4yNTgyMUM1LjE5NzQ2IDUuNzgzNzIgNi4zOTI3NyA0LjYxOTgzIDcuODM1ODUgNC42MTk4M0g3Mi4xNjQzQzczLjYwNjYgNC42MTk4MyA3NC44MDI3IDUuNzgyNzkgNzQuODAyNyA3LjI1ODIxVjM2LjMyTDYzLjkwMSAyNS40MTgxQzYzLjQ2NzggMjQuOTg0OSA2Mi44ODAzIDI0Ljc0MTUgNjIuMjY3NyAyNC43NDE1QzYxLjY1NTEgMjQuNzQxNSA2MS4wNjc2IDI0Ljk4NDggNjAuNjM0NSAyNS40MTgxTDQyLjQ3NDQgNDMuNTc4NUwzNC4yMTA5IDM1LjMxNTJDMzMuMzA5IDM0LjQxMzIgMzEuODQ2MyAzNC40MTMyIDMwLjk0NDIgMzUuMzE1Mkw3LjAxMjI5IDU5LjI0N0M1Ljk2NTc0IDU4LjkwMzEgNS4xOTc0NiA1Ny45MjM1IDUuMTk3NDYgNTYuNzQxOFY3LjI1ODIxWk03Mi4xNjQ1IDU5LjM4MDJIMTMuNDEyNEwzMi41Nzc2IDQwLjIxNTFMNDAuODQxMSA0OC40Nzg1QzQxLjc0MzEgNDkuMzgwNCA0My4yMDU3IDQ5LjM4MDQgNDQuMTA3OCA0OC40Nzg1TDYyLjI2NzcgMzAuMzE4Mkw3NC44MDI4IDQyLjg1MzRWNTYuNzQxOEM3NC44MDI4IDU4LjIxNjMgNzMuNjA3NSA1OS4zODAyIDcyLjE2NDUgNTkuMzgwMloiIGZpbGw9IiNBRUI0QkEiLz4KPHBhdGggaWQ9IlZlY3Rvcl8yIiBkPSJNMjAuMjA2OCAyOS4zNjE0QzI1LjU3MzMgMjkuMzYxNCAyOS45MzkyIDI0Ljk5NTYgMjkuOTM5MiAxOS42MjkyQzI5LjkzOTIgMTQuMjYyOCAyNS41NzMzIDkuODk2NzMgMjAuMjA2OCA5Ljg5NjczQzE0Ljg0MDMgOS44OTY3MyAxMC40NzQ0IDE0LjI2MjggMTAuNDc0NCAxOS42MjkyQzEwLjQ3NDQgMjQuOTk1NiAxNC44NDAzIDI5LjM2MTQgMjAuMjA2OCAyOS4zNjE0Wk0yMC4yMDY4IDE0LjUxNjZDMjMuMDI2IDE0LjUxNjYgMjUuMzE5NCAxNi44MTAxIDI1LjMxOTQgMTkuNjI5MkMyNS4zMTk0IDIyLjQ0ODIgMjMuMDI2IDI0Ljc0MTYgMjAuMjA2OCAyNC43NDE2QzE3LjM4NzYgMjQuNzQxNiAxNS4wOTQyIDIyLjQ0OCAxNS4wOTQyIDE5LjYyOTJDMTUuMDk0MiAxNi44MSAxNy4zODc2IDE0LjUxNjYgMjAuMjA2OCAxNC41MTY2WiIgZmlsbD0iI0FFQjRCQSIvPgo8L2c+CjwvZz4KPC9zdmc+Cg=="); + background-size: 60%; + background-repeat: no-repeat; + background-position: center; +} + +.bordered { + border: solid var(--base-sizing-1x) var(--theme-color-border-secondary-default); + background-position: center; +} + +.solid { + background-color: var(--theme-color-surface-base-base3); +} + +.original { + object-fit: none; +} + +.fill { + object-fit: fill; +} + +.fit { + object-fit: contain; +} + +.fillKeepAspectRatio { + object-fit: cover; } diff --git a/src/lib/components/InputDate/InputDate.module.scss b/src/lib/components/InputDate/InputDate.module.scss index be45801..2f76417 100644 --- a/src/lib/components/InputDate/InputDate.module.scss +++ b/src/lib/components/InputDate/InputDate.module.scss @@ -1,14 +1,12 @@ -@layer motif-ui { - .Root { - position: relative; - display: inline-grid; +.Root { + position: relative; + display: inline-grid; - .datePicker { - position: absolute; - left: 0; - top: 100%; - z-index: 1; - margin-top: var(--base-sizing-2x); - } + .datePicker { + position: absolute; + left: 0; + top: 100%; + z-index: 1; + margin-top: var(--base-sizing-2x); } } diff --git a/src/lib/components/InputDateRange/InputDateRange.module.scss b/src/lib/components/InputDateRange/InputDateRange.module.scss index a4ffb45..d8b41bb 100644 --- a/src/lib/components/InputDateRange/InputDateRange.module.scss +++ b/src/lib/components/InputDateRange/InputDateRange.module.scss @@ -1,14 +1,12 @@ -@layer motif-ui { - .Root { - position: relative; - display: inline-grid; - } +.Root { + position: relative; + display: inline-grid; +} - .dateRangePicker { - position: absolute; - left: 0; - top: 100%; - z-index: 1; - margin-top: var(--base-sizing-2x); - } +.dateRangePicker { + position: absolute; + left: 0; + top: 100%; + z-index: 1; + margin-top: var(--base-sizing-2x); } diff --git a/src/lib/components/InputDateTime/InputDateTime.module.scss b/src/lib/components/InputDateTime/InputDateTime.module.scss index b5c75d9..a7ee542 100644 --- a/src/lib/components/InputDateTime/InputDateTime.module.scss +++ b/src/lib/components/InputDateTime/InputDateTime.module.scss @@ -1,14 +1,12 @@ -@layer motif-ui { - .Root { - position: relative; - display: inline-grid; +.Root { + position: relative; + display: inline-grid; - .pickerContainer { - position: absolute; - left: 0; - top: 100%; - z-index: 1; - margin-top: var(--base-sizing-2x); - } + .pickerContainer { + position: absolute; + left: 0; + top: 100%; + z-index: 1; + margin-top: var(--base-sizing-2x); } } diff --git a/src/lib/components/InputPassword/InputPassword.module.scss b/src/lib/components/InputPassword/InputPassword.module.scss index f91700f..8e66ab3 100644 --- a/src/lib/components/InputPassword/InputPassword.module.scss +++ b/src/lib/components/InputPassword/InputPassword.module.scss @@ -8,105 +8,103 @@ $sizes: ( ("lg", "20x", "10x", "24x") ); -@layer motif-ui { - .Root { - position: relative; - display: inline-block; - box-sizing: border-box; - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-bg-light); - @include transition(border-color); - - &:focus-within { - border-color: var(--theme-color-border-primary-default); - } +.Root { + position: relative; + display: inline-block; + box-sizing: border-box; + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-bg-light); + @include transition(border-color); + + &:focus-within { + border-color: var(--theme-color-border-primary-default); + } - &.pill { - border-radius: var(--theme-sizing-radius-round); - } + &.pill { + border-radius: var(--theme-sizing-radius-round); + } - &.inFormField { - min-width: var(--base-sizing-190x); - } + &.inFormField { + min-width: var(--base-sizing-190x); + } - &.error { - border-color: var(--theme-color-border-danger-default); + &.error { + border-color: var(--theme-color-border-danger-default); - .visibilityToggleIcon { - color: var(--theme-color-text-danger-default); - } + .visibilityToggleIcon { + color: var(--theme-color-text-danger-default); } + } - &.success { - border-color: var(--theme-color-border-success-default); + &.success { + border-color: var(--theme-color-border-success-default); - .visibilityToggleIcon { - color: var(--theme-color-text-success-default); - } + .visibilityToggleIcon { + color: var(--theme-color-text-success-default); } + } - &.disabled { - background-color: var(--theme-color-surface-base-base1); - border-color: var(--theme-color-border-light-disabled); - - * { - cursor: not-allowed; - } + &.disabled { + background-color: var(--theme-color-surface-base-base1); + border-color: var(--theme-color-border-light-disabled); - .icon, - input { - color: var(--theme-color-text-base-disabled); - } + * { + cursor: not-allowed; } + .icon, input { - width: 100%; - box-sizing: border-box; - border: none; - outline: none; - background: transparent; - color: var(--theme-color-text-base-title); + color: var(--theme-color-text-base-disabled); + } + } - &::placeholder { - color: var(--theme-color-text-base-caption); - } + input { + width: 100%; + box-sizing: border-box; + border: none; + outline: none; + background: transparent; + color: var(--theme-color-text-base-title); - &:focus { - outline: none; - } + &::placeholder { + color: var(--theme-color-text-base-caption); } - .icon { - position: absolute; - top: 50%; - transform: translateY(-50%); - color: var(--theme-color-text-base-caption-light); + &:focus { + outline: none; } } - @each $size, $paddingH, $paddingV, $iconSize in $sizes { - .#{$size} { - input { - @include font("body", $size); - padding: var(--base-sizing-#{$paddingV}) - var(--base-sizing-#{$paddingH}) - var(--base-sizing-#{$paddingV}) - calc(var(--base-sizing-#{$iconSize}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV})); - - &:not(:last-child) { - padding-right: calc(var(--base-sizing-#{$iconSize}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV})); - } - } - .visibilityToggleIcon { - right: var(--base-sizing-#{$paddingH}); - } - span:first-child { - left: var(--base-sizing-#{$paddingH}); + .icon { + position: absolute; + top: 50%; + transform: translateY(-50%); + color: var(--theme-color-text-base-caption-light); + } +} + +@each $size, $paddingH, $paddingV, $iconSize in $sizes { + .#{$size} { + input { + @include font("body", $size); + padding: var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV}) + calc(var(--base-sizing-#{$iconSize}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV})); + + &:not(:last-child) { + padding-right: calc(var(--base-sizing-#{$iconSize}) + var(--base-sizing-#{$paddingH}) + var(--base-sizing-#{$paddingV})); } } - .icon { - font-size: var(--base-sizing-#{$iconSize}); + .visibilityToggleIcon { + right: var(--base-sizing-#{$paddingH}); + } + span:first-child { + left: var(--base-sizing-#{$paddingH}); } } + .icon { + font-size: var(--base-sizing-#{$iconSize}); + } } diff --git a/src/lib/components/InputText/InputText.module.scss b/src/lib/components/InputText/InputText.module.scss index 2fb91f6..4040949 100644 --- a/src/lib/components/InputText/InputText.module.scss +++ b/src/lib/components/InputText/InputText.module.scss @@ -1,5 +1,3 @@ -@layer motif-ui { - .Root.inFormField { - min-width: var(--base-sizing-190x); - } +.Root.inFormField { + min-width: var(--base-sizing-190x); } diff --git a/src/lib/components/InputTime/InputTime.module.scss b/src/lib/components/InputTime/InputTime.module.scss index 45dc37a..e44616a 100644 --- a/src/lib/components/InputTime/InputTime.module.scss +++ b/src/lib/components/InputTime/InputTime.module.scss @@ -1,16 +1,14 @@ @use "@styles" as *; -@layer motif-ui { - .Root { - position: relative; - display: inline-grid; +.Root { + position: relative; + display: inline-grid; - .timePicker { - position: absolute; - left: 0; - top: 100%; - z-index: 1; - margin-top: var(--base-sizing-2x); - } + .timePicker { + position: absolute; + left: 0; + top: 100%; + z-index: 1; + margin-top: var(--base-sizing-2x); } } diff --git a/src/lib/components/Link/Link.module.scss b/src/lib/components/Link/Link.module.scss index 1e43ce1..9c77a08 100644 --- a/src/lib/components/Link/Link.module.scss +++ b/src/lib/components/Link/Link.module.scss @@ -3,53 +3,51 @@ $sizes: (("sm", "4x", "16x"), ("md", "6x", "20x"), ("lg", "8x", "24x")); $state: ("default", "disabled", "active", "hover"); -@layer motif-ui { - @each $name, $gap, $iconFontSize in $sizes { - .#{$name} { - gap: var(--base-sizing-#{$gap}); - @include font("base", $name, "500"); - .icon { - font-size: var(--base-sizing-#{$iconFontSize}); - } +@each $name, $gap, $iconFontSize in $sizes { + .#{$name} { + gap: var(--base-sizing-#{$gap}); + @include font("base", $name, "500"); + .icon { + font-size: var(--base-sizing-#{$iconFontSize}); } } +} - .Root { - display: inline-flex; - cursor: pointer; - color: var(--theme-color-text-primary-default); - text-decoration: none; +.Root { + display: inline-flex; + cursor: pointer; + color: var(--theme-color-text-primary-default); + text-decoration: none; - &.rightIcon { - flex-direction: row-reverse; - } - &.leftIcon { - flex-direction: row; - } - .icon { - color: var(--theme-color-text-primary-default); - } - &:hover, - &:hover .icon { - color: var(--theme-color-text-primary-hover); - } + &.rightIcon { + flex-direction: row-reverse; + } + &.leftIcon { + flex-direction: row; + } + .icon { + color: var(--theme-color-text-primary-default); + } + &:hover, + &:hover .icon { + color: var(--theme-color-text-primary-hover); + } - &:focus, - &:focus .icon { - color: var(--theme-color-text-primary-active); - outline: none; - } + &:focus, + &:focus .icon { + color: var(--theme-color-text-primary-active); + outline: none; + } - &.disabled, - &.disabled .icon { - pointer-events: none; - color: var(--theme-color-text-primary-disabled); - } + &.disabled, + &.disabled .icon { + pointer-events: none; + color: var(--theme-color-text-primary-disabled); + } - &.underline { - .label { - text-decoration: underline; - } + &.underline { + .label { + text-decoration: underline; } } } diff --git a/src/lib/components/ListView/ListView.module.scss b/src/lib/components/ListView/ListView.module.scss index a36a78a..82c97ec 100644 --- a/src/lib/components/ListView/ListView.module.scss +++ b/src/lib/components/ListView/ListView.module.scss @@ -2,167 +2,165 @@ $list-item-sizes: (("sm", "xs", "2x", "16x", "8x", "24x", "20x", "22x"), ("md", "sm", "2x", "16x", "12x", "32x", "22x", "24x"), ("lg", "md", "4x", "20x", "16x", "40x", "24x", "28x")); -@layer motif-ui { - @each $size, $alternateTextS, $gap, $spaceH, $paddingV, $avatarSize, $iconFontSize, $iconRightFontSize in $list-item-sizes { - .#{$size} { - .baseContent { - gap: var(--base-sizing-#{$spaceH}); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$spaceH}); - } - .leftContent, - .image img { - width: var(--base-sizing-#{$avatarSize}); - height: var(--base-sizing-#{$avatarSize}); - } - .abbr { - @include font("base", $size, "600"); - } - .centerContent { - gap: var(--base-sizing-#{$gap}); - } - .alternateText { - @include font("body", $alternateTextS); - } - .title { - @include font("base", $size, "500"); - } - .description { - @include font("body", $size); - } - .icon { - font-size: var(--base-sizing-#{$iconFontSize}); - } - .iconRight { - font-size: var(--base-sizing-#{$iconRightFontSize}); - } +@each $size, $alternateTextS, $gap, $spaceH, $paddingV, $avatarSize, $iconFontSize, $iconRightFontSize in $list-item-sizes { + .#{$size} { + .baseContent { + gap: var(--base-sizing-#{$spaceH}); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$spaceH}); } - } - - .Root { - padding: 0; - margin: 0; - list-style: none; - } - - // ============================================================================= - // List Item - // ============================================================================= - - .listItem { - list-style: none; - padding: 0; - &.divider:not(:last-child) { - border-bottom: var(--base-sizing-1x) solid var(--theme-color-border-secondary-default); + .leftContent, + .image img { + width: var(--base-sizing-#{$avatarSize}); + height: var(--base-sizing-#{$avatarSize}); } - - &.link, - &.button { - .baseContent { - cursor: pointer; - text-decoration: none; - @include focus-ring; - @include transition(background-color); - } - &:hover .baseContent { - background-color: var(--theme-color-surface-base-base2); - } + .abbr { + @include font("base", $size, "600"); + } + .centerContent { + gap: var(--base-sizing-#{$gap}); + } + .alternateText { + @include font("body", $alternateTextS); + } + .title { + @include font("base", $size, "500"); + } + .description { + @include font("body", $size); + } + .icon { + font-size: var(--base-sizing-#{$iconFontSize}); + } + .iconRight { + font-size: var(--base-sizing-#{$iconRightFontSize}); } } +} - .centerContent > span { - overflow: hidden; - white-space: nowrap; - text-overflow: ellipsis; - } +.Root { + padding: 0; + margin: 0; + list-style: none; +} - .multiLine .centerContent > span { - overflow: visible; - white-space: normal; - text-overflow: clip; - } +// ============================================================================= +// List Item +// ============================================================================= - .baseContent { - display: flex; - justify-content: stretch; - align-items: center; - background-color: var(--theme-color-surface-base-global-light); - overflow: hidden; +.listItem { + list-style: none; + padding: 0; + &.divider:not(:last-child) { + border-bottom: var(--base-sizing-1x) solid var(--theme-color-border-secondary-default); } - .disabled { - pointer-events: none; - cursor: default; - .iconRight { - color: var(--theme-color-text-secondary-disabled); + &.link, + &.button { + .baseContent { + cursor: pointer; + text-decoration: none; + @include focus-ring; + @include transition(background-color); } - .icon { - color: var(--theme-color-surface-base-base6); - } - .image { - filter: grayscale(100%); - opacity: 0.6; - } - span { - color: var(--theme-color-text-base-disabled-light); - } - .avatar.abbr { - background-color: var(--theme-color-surface-base-base6); + &:hover .baseContent { + background-color: var(--theme-color-surface-base-base2); } } +} - // ============================================================================= - // Left Content - // ============================================================================= +.centerContent > span { + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} - .leftContent { - display: flex; - align-items: center; - justify-content: center; - overflow: hidden; - } +.multiLine .centerContent > span { + overflow: visible; + white-space: normal; + text-overflow: clip; +} + +.baseContent { + display: flex; + justify-content: stretch; + align-items: center; + background-color: var(--theme-color-surface-base-global-light); + overflow: hidden; +} - .icon, +.disabled { + pointer-events: none; + cursor: default; .iconRight { - color: var(--theme-color-text-secondary-default); + color: var(--theme-color-text-secondary-disabled); } - - .abbr { - color: var(--theme-color-text-secondary-default); - text-transform: uppercase; + .icon { + color: var(--theme-color-surface-base-base6); } - - .avatar { - border-radius: var(--theme-sizing-radius-round); - &.icon, - &.image { - background-color: var(--theme-color-surface-base-base5); - } - &.abbr { - background-color: var(--theme-color-surface-base-base7); - color: var(--theme-color-text-base-text-light); - } + .image { + filter: grayscale(100%); + opacity: 0.6; } + span { + color: var(--theme-color-text-base-disabled-light); + } + .avatar.abbr { + background-color: var(--theme-color-surface-base-base6); + } +} - // ============================================================================= - // Center Content - // ============================================================================= +// ============================================================================= +// Left Content +// ============================================================================= - .centerContent { - display: flex; - flex-direction: column; - flex: 1; - overflow: hidden; - } +.leftContent { + display: flex; + align-items: center; + justify-content: center; + overflow: hidden; +} - .alternateText { - color: var(--theme-color-text-base-caption-light); - } +.icon, +.iconRight { + color: var(--theme-color-text-secondary-default); +} - .title { - color: var(--theme-color-text-base-title-light); - } +.abbr { + color: var(--theme-color-text-secondary-default); + text-transform: uppercase; +} - .description { - color: var(--theme-color-text-base-subtitle-light); +.avatar { + border-radius: var(--theme-sizing-radius-round); + &.icon, + &.image { + background-color: var(--theme-color-surface-base-base5); + } + &.abbr { + background-color: var(--theme-color-surface-base-base7); + color: var(--theme-color-text-base-text-light); } } + +// ============================================================================= +// Center Content +// ============================================================================= + +.centerContent { + display: flex; + flex-direction: column; + flex: 1; + overflow: hidden; +} + +.alternateText { + color: var(--theme-color-text-base-caption-light); +} + +.title { + color: var(--theme-color-text-base-title-light); +} + +.description { + color: var(--theme-color-text-base-subtitle-light); +} diff --git a/src/lib/components/MenuList/MenuList.module.scss b/src/lib/components/MenuList/MenuList.module.scss index 2c70ee2..fdc4c53 100644 --- a/src/lib/components/MenuList/MenuList.module.scss +++ b/src/lib/components/MenuList/MenuList.module.scss @@ -10,274 +10,272 @@ $sizes: ( // Main Menu // ============================================================================= -@layer motif-ui { - .Root { - display: flex; - flex-direction: column; - gap: var(--base-sizing-36x); - height: 100%; - box-sizing: border-box; - padding: var(--base-sizing-16x); - background-color: var(--theme-color-surface-base-bg-light); - - &:not(.collapsed) { - @each $size, $value in $sizes { - &.#{$size} { - width: $value; - min-width: $value; - max-width: $value; - } - } - .mainMenu { - overflow-y: scroll; +.Root { + display: flex; + flex-direction: column; + gap: var(--base-sizing-36x); + height: 100%; + box-sizing: border-box; + padding: var(--base-sizing-16x); + background-color: var(--theme-color-surface-base-bg-light); + + &:not(.collapsed) { + @each $size, $value in $sizes { + &.#{$size} { + width: $value; + min-width: $value; + max-width: $value; } } - } - - .mainMenu { - &, - ul { - padding: 0; - margin: 0; - list-style: none; - flex: 1; + .mainMenu { + overflow-y: scroll; } } +} - .logoContainer { - height: var(--base-sizing-48x); - display: flex; - align-items: center; - gap: var(--base-sizing-10x); - justify-content: flex-end; +.mainMenu { + &, + ul { + padding: 0; + margin: 0; + list-style: none; + flex: 1; } +} - .logo { - padding: var(--base-sizing-4x); - box-sizing: border-box; - height: 100%; - width: 100%; - object-fit: contain; - object-position: left; - } +.logoContainer { + height: var(--base-sizing-48x); + display: flex; + align-items: center; + gap: var(--base-sizing-10x); + justify-content: flex-end; +} - .footerText { - @include font("body", "xxs"); - color: var(--theme-color-text-base-caption-light); - white-space: nowrap; - } +.logo { + padding: var(--base-sizing-4x); + box-sizing: border-box; + height: 100%; + width: 100%; + object-fit: contain; + object-position: left; +} - .collapsed { - width: fit-content; +.footerText { + @include font("body", "xxs"); + color: var(--theme-color-text-base-caption-light); + white-space: nowrap; +} - .logoContainer { - justify-content: center; - } +.collapsed { + width: fit-content; + + .logoContainer { + justify-content: center; + } - .subMenu { - background-color: var(--theme-color-surface-base-bg-light); - &.firstLevel { + .subMenu { + background-color: var(--theme-color-surface-base-bg-light); + &.firstLevel { + position: absolute; + z-index: 1; + left: calc(100% + var(--base-sizing-16x)); + top: 0; + padding: var(--base-sizing-8x); + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + border-left: solid var(--base-sizing-2x) var(--theme-color-border-primary-default); + @include shadow(3); + min-width: var(--base-sizing-128x); + + &::before { + content: " "; position: absolute; - z-index: 1; - left: calc(100% + var(--base-sizing-16x)); - top: 0; - padding: var(--base-sizing-8x); - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - border-left: solid var(--base-sizing-2x) var(--theme-color-border-primary-default); - @include shadow(3); - min-width: var(--base-sizing-128x); - - &::before { - content: " "; - position: absolute; - left: calc(-1 * var(--base-sizing-12x)); - top: var(--base-sizing-16x); - border-top: solid var(--base-sizing-6x) transparent; - border-right: solid var(--base-sizing-10x) var(--theme-color-surface-primary-default); - border-bottom: solid var(--base-sizing-6x) transparent; - } + left: calc(-1 * var(--base-sizing-12x)); + top: var(--base-sizing-16x); + border-top: solid var(--base-sizing-6x) transparent; + border-right: solid var(--base-sizing-10x) var(--theme-color-surface-primary-default); + border-bottom: solid var(--base-sizing-6x) transparent; } } } +} - // ============================================================================= - // Sub Menu - // ============================================================================= +// ============================================================================= +// Sub Menu +// ============================================================================= - .subMenu { - padding: 0; - margin: 0; - list-style: none; - } +.subMenu { + padding: 0; + margin: 0; + list-style: none; +} - // ============================================================================= - // Collapse Button - // ============================================================================= +// ============================================================================= +// Collapse Button +// ============================================================================= - .collapseButton { - all: unset; - display: flex; - width: var(--base-sizing-36x); - min-width: var(--base-sizing-36x); - height: var(--base-sizing-36x); - box-sizing: border-box; - align-items: center; - justify-content: center; - border-radius: var(--theme-sizing-radius-default); - cursor: pointer; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - @include transition(border-color); +.collapseButton { + all: unset; + display: flex; + width: var(--base-sizing-36x); + min-width: var(--base-sizing-36x); + height: var(--base-sizing-36x); + box-sizing: border-box; + align-items: center; + justify-content: center; + border-radius: var(--theme-sizing-radius-default); + cursor: pointer; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + @include transition(border-color); + + path { + @include transition(fill); + fill: var(--theme-color-text-base-caption); + } + &:hover { + border-color: var(--theme-color-border-primary-default); path { - @include transition(fill); - fill: var(--theme-color-text-base-caption); - } - - &:hover { - border-color: var(--theme-color-border-primary-default); - path { - fill: var(--theme-color-text-primary-default); - } + fill: var(--theme-color-text-primary-default); } } +} - // ============================================================================= - // Menu Item - // ============================================================================= +// ============================================================================= +// Menu Item +// ============================================================================= - .menuItemContainer { - position: relative; - } +.menuItemContainer { + position: relative; +} - .menuItem { - display: flex; - width: auto; - text-decoration: none; - align-items: center; - padding: var(--base-sizing-12x); +.menuItem { + display: flex; + width: auto; + text-decoration: none; + align-items: center; + padding: var(--base-sizing-12x); + gap: var(--base-sizing-8x); + user-select: none; + color: var(--theme-color-text-base-title-light); + @include transition(background-color border-bottom-color color, "fast"); + + .label { + display: inline-flex; gap: var(--base-sizing-8x); - user-select: none; - color: var(--theme-color-text-base-title-light); - @include transition(background-color border-bottom-color color, "fast"); - - .label { - display: inline-flex; - gap: var(--base-sizing-8x); - flex: 1; - align-items: center; - } - .arrowIcon { - @include transition(transform, "fast"); - } - &.subMenuOpen .arrowIcon { - transform: rotate(180deg); - } - &:not(.disabled, .active):hover { - cursor: pointer; + flex: 1; + align-items: center; + } + .arrowIcon { + @include transition(transform, "fast"); + } + &.subMenuOpen .arrowIcon { + transform: rotate(180deg); + } + &:not(.disabled, .active):hover { + cursor: pointer; + } + &.active { + pointer-events: none; + } + &.disabled { + color: var(--theme-color-text-light-disabled); + pointer-events: none; + } + + .solid & { + border-radius: var(--theme-sizing-radius-default); + &:hover { + background-color: var(--theme-color-surface-light-default); + color: var(--theme-color-border-primary-default); } &.active { - pointer-events: none; - } - &.disabled { - color: var(--theme-color-text-light-disabled); - pointer-events: none; - } - - .solid & { - border-radius: var(--theme-sizing-radius-default); - &:hover { - background-color: var(--theme-color-surface-light-default); - color: var(--theme-color-border-primary-default); - } - &.active { - background-color: var(--theme-color-surface-primary-default); - color: var(--theme-color-text-base-global-light); - } + background-color: var(--theme-color-surface-primary-default); + color: var(--theme-color-text-base-global-light); } - .underline & { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - &:hover, - &.active { - border-bottom-color: var(--theme-color-border-primary-default); - color: var(--theme-color-text-primary-default); - } + } + .underline & { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + &:hover, + &.active { + border-bottom-color: var(--theme-color-border-primary-default); + color: var(--theme-color-text-primary-default); } - .textOnly & { - &:hover, - &.active { - color: var(--theme-color-text-primary-default); - } + } + .textOnly & { + &:hover, + &.active { + color: var(--theme-color-text-primary-default); } } +} - .mainMenuItem { - @include font; - } +.mainMenuItem { + @include font; +} - .subMenuItem { - @include font("body", "md"); +.subMenuItem { + @include font("body", "md"); - &.expanded { - padding-left: var(--base-sizing-40x); - &.nestedSubMenuItem { - padding-left: var(--base-sizing-56x); - } - } - &.collapsed.nestedSubMenuItem { - padding-left: var(--base-sizing-40x); + &.expanded { + padding-left: var(--base-sizing-40x); + &.nestedSubMenuItem { + padding-left: var(--base-sizing-56x); } } + &.collapsed.nestedSubMenuItem { + padding-left: var(--base-sizing-40x); + } +} - /////////////// - // DARK PART // - /////////////// - .dark { - background: var(--theme-color-surface-secondary-default); - color: var(--theme-color-text-base-global-light); +/////////////// +// DARK PART // +/////////////// +.dark { + background: var(--theme-color-surface-secondary-default); + color: var(--theme-color-text-base-global-light); - .collapseButton { - border-color: var(--theme-color-border-light-active); + .collapseButton { + border-color: var(--theme-color-border-light-active); + path { + fill: var(--theme-color-text-base-global-light); + } + &:hover { + border-color: var(--theme-color-text-primary-disabled); path { - fill: var(--theme-color-text-base-global-light); - } - &:hover { - border-color: var(--theme-color-text-primary-disabled); - path { - fill: var(--theme-color-text-primary-disabled); - } + fill: var(--theme-color-text-primary-disabled); } } + } - .subMenu { - background-color: var(--theme-color-surface-secondary-default); - } + .subMenu { + background-color: var(--theme-color-surface-secondary-default); + } - &.solid .menuItem:hover { - background-color: var(--theme-color-surface-secondary-hover); - color: var(--theme-color-text-base-global-light); - } - &.underline .menuItem { - border-color: var(--theme-color-border-light-active); - &:hover, - &.active { - color: var(--theme-color-text-primary-disabled); - border-bottom-color: var(--theme-color-border-primary-default); - } + &.solid .menuItem:hover { + background-color: var(--theme-color-surface-secondary-hover); + color: var(--theme-color-text-base-global-light); + } + &.underline .menuItem { + border-color: var(--theme-color-border-light-active); + &:hover, + &.active { + color: var(--theme-color-text-primary-disabled); + border-bottom-color: var(--theme-color-border-primary-default); } - .textOnly .menuItem { - &:hover, - &.active { - color: var(--theme-color-text-primary-disabled); - } + } + .textOnly .menuItem { + &:hover, + &.active { + color: var(--theme-color-text-primary-disabled); } + } - &.disabled { - color: var(--theme-color-text-base-disabled); - } + &.disabled { + color: var(--theme-color-text-base-disabled); + } - .footerText { - color: var(--theme-color-text-base-disabled-light); - } + .footerText { + color: var(--theme-color-text-base-disabled-light); } } diff --git a/src/lib/components/Modal/Modal.module.scss b/src/lib/components/Modal/Modal.module.scss index 8c4ed8f..1bfd637 100644 --- a/src/lib/components/Modal/Modal.module.scss +++ b/src/lib/components/Modal/Modal.module.scss @@ -9,131 +9,129 @@ $sizes: ( ("xl", "960x") ); -@layer motif-ui { - .Root { - position: fixed; - inset: 0; - width: 100%; - height: 100%; - min-height: 100%; - background-color: var(--base-colors-black-black-overlay50); - display: flex; - z-index: 999; - @include fade-default; - - &.show { - @include fade-in; - } - - // Size classes at root level - @each $size, $width in $sizes { - &.#{$size} .modal { - width: var(--base-sizing-#{$width}); - } - } +.Root { + position: fixed; + inset: 0; + width: 100%; + height: 100%; + min-height: 100%; + background-color: var(--base-colors-black-black-overlay50); + display: flex; + z-index: 999; + @include fade-default; + + &.show { + @include fade-in; + } - // Maximized class at root level - &.maximized .modal { - width: calc(100% - $side-space); - height: calc(100% - $side-space); - max-width: none; - max-height: none; + // Size classes at root level + @each $size, $width in $sizes { + &.#{$size} .modal { + width: var(--base-sizing-#{$width}); } } - .modal { - display: flex; - flex-direction: column; - position: fixed; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - background: white; - color: black; - border-radius: var(--theme-sizing-radius-default); - @include shadow(4); - height: auto; - max-width: calc(100% - $side-space); - max-height: 100%; - overflow: hidden; - transform-origin: left top; - @include pop-default; + // Maximized class at root level + &.maximized .modal { + width: calc(100% - $side-space); + height: calc(100% - $side-space); + max-width: none; + max-height: none; } +} - .show .modal { - @include pop-in; - } +.modal { + display: flex; + flex-direction: column; + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + background: white; + color: black; + border-radius: var(--theme-sizing-radius-default); + @include shadow(4); + height: auto; + max-width: calc(100% - $side-space); + max-height: 100%; + overflow: hidden; + transform-origin: left top; + @include pop-default; +} - .content { - padding: var(--base-sizing-16x); - min-height: var(--base-sizing-64x); - height: 100%; - overflow-y: auto; +.show .modal { + @include pop-in; +} - .noContentPadding & { - padding: 0; - } +.content { + padding: var(--base-sizing-16x); + min-height: var(--base-sizing-64x); + height: 100%; + overflow-y: auto; - &::-webkit-scrollbar { - width: var(--base-sizing-8x); - } + .noContentPadding & { + padding: 0; + } - &::-webkit-scrollbar-track { - background: #f1f1f1; - margin: var(--base-sizing-1x) 0; - border-radius: var(--theme-sizing-radius-default); - } + &::-webkit-scrollbar { + width: var(--base-sizing-8x); + } - &::-webkit-scrollbar-thumb { - background: var(--base-colors-black-black-overlay25); - border-radius: var(--theme-sizing-radius-default); - } + &::-webkit-scrollbar-track { + background: #f1f1f1; + margin: var(--base-sizing-1x) 0; + border-radius: var(--theme-sizing-radius-default); } - .closeButton { - position: absolute; - top: var(--base-sizing-16x); - right: var(--base-sizing-16x); + &::-webkit-scrollbar-thumb { + background: var(--base-colors-black-black-overlay25); + border-radius: var(--theme-sizing-radius-default); } +} - // ============================================================================= - // Sub Component: Header - // ============================================================================= +.closeButton { + position: absolute; + top: var(--base-sizing-16x); + right: var(--base-sizing-16x); +} - .header { - display: flex; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - align-items: flex-start; - } +// ============================================================================= +// Sub Component: Header +// ============================================================================= - .headerContent { - flex: 1; - gap: var(--base-sizing-4x); - overflow-wrap: break-word; +.header { + display: flex; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + align-items: flex-start; +} - .headerTitle { - display: block; - color: var(--theme-color-text-base-title); - @include font("heading", "heading4"); - } +.headerContent { + flex: 1; + gap: var(--base-sizing-4x); + overflow-wrap: break-word; - .headerSubtitle { - display: block; - color: var(--theme-color-text-base-caption); - @include font("body", "lg"); - } + .headerTitle { + display: block; + color: var(--theme-color-text-base-title); + @include font("heading", "heading4"); } - // Modal Actions Styles - .actions { - display: flex; - flex-wrap: wrap; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-16x); - justify-content: flex-end; - flex-shrink: 0; - border-top: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + .headerSubtitle { + display: block; + color: var(--theme-color-text-base-caption); + @include font("body", "lg"); } } + +// Modal Actions Styles +.actions { + display: flex; + flex-wrap: wrap; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-16x); + justify-content: flex-end; + flex-shrink: 0; + border-top: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); +} diff --git a/src/lib/components/Motif/Icon/MotifIcon.module.scss b/src/lib/components/Motif/Icon/MotifIcon.module.scss index 7f73cca..b270c2e 100644 --- a/src/lib/components/Motif/Icon/MotifIcon.module.scss +++ b/src/lib/components/Motif/Icon/MotifIcon.module.scss @@ -1,146 +1,144 @@ -@layer motif-ui { - @font-face { - font-family: motif-icons-default; - src: - url("./assets/fonts/motif-icons-default.woff2") format("woff2"), - url("./assets/fonts/motif-icons-default.woff") format("woff"), - url("./assets/fonts/motif-icons-default.ttf") format("truetype"); - font-weight: normal; - font-style: normal; - font-display: block; - } +@font-face { + font-family: motif-icons-default; + src: + url("./assets/fonts/motif-icons-default.woff2") format("woff2"), + url("./assets/fonts/motif-icons-default.woff") format("woff"), + url("./assets/fonts/motif-icons-default.ttf") format("truetype"); + font-weight: normal; + font-style: normal; + font-display: block; +} - .motifIconsDefault { - font-family: motif-icons-default, serif !important; - speak: none; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; +.motifIconsDefault { + font-family: motif-icons-default, serif !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; - letter-spacing: 0; - font-feature-settings: "liga"; - font-variant-ligatures: discretionary-ligatures; + letter-spacing: 0; + font-feature-settings: "liga"; + font-variant-ligatures: discretionary-ligatures; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - } - .motif_icon_d_motif_ui::before { - content: "\e926"; - } - .motif_icon_d_undo::before { - content: "\e924"; - } - .motif_icon_d_redo::before { - content: "\e925"; - } - .motif_icon_d_add::before { - content: "\e921"; - } - .motif_icon_d_calendar_expand_horizontal::before { - content: "\e920"; - } - .motif_icon_d_external::before { - content: "\e91f"; - } - .motif_icon_d_autorenew::before { - content: "\e91e"; - } - .motif_icon_d_cancel_outline::before { - content: "\e918"; - } - .motif_icon_d_cancel::before { - content: "\e919"; - } - .motif_icon_d_expand_all::before { - content: "\e91a"; - } - .motif_icon_d_keyboard_arrow_up::before { - content: "\e91b"; - } - .motif_icon_d_density_medium::before { - content: "\e91c"; - } - .motif_icon_d_delete::before { - content: "\e91d"; - } - .motif_icon_d_arrow_back::before { - content: "\e90f"; - } - .motif_icon_d_arrow_drop_down::before { - content: "\e90d"; - } - .motif_icon_d_arrow_forward::before { - content: "\e90e"; - } - .motif_icon_d_arrow_forward_ios::before { - content: "\e910"; - } - .motif_icon_d_attach_file::before { - content: "\e908"; - } - .motif_icon_d_calendar_month::before { - content: "\e90c"; - } - .motif_icon_d_check::before { - content: "\e909"; - } - .motif_icon_d_check_circle::before { - content: "\e904"; - } - .motif_icon_d_close::before { - content: "\e914"; - } - .motif_icon_d_error::before { - content: "\e905"; - } - .motif_icon_d_event::before { - content: "\e90b"; - } - .motif_icon_d_home::before { - content: "\e901"; - } - .motif_icon_d_imagesmode::before { - content: "\e912"; - } - .motif_icon_d_info::before { - content: "\e902"; - } - .motif_icon_d_keyboard_arrow_down::before { - content: "\e913"; - } - .motif_icon_d_person::before { - content: "\e911"; - } - .motif_icon_d_schedule::before { - content: "\e90a"; - } - .motif_icon_d_search::before { - content: "\e906"; - } - .motif_icon_d_upload_2::before { - content: "\e903"; - } - .motif_icon_d_upload_file::before { - content: "\e907"; - } - .motif_icon_d_visibility::before { - content: "\e915"; - } - .motif_icon_d_visibility_off::before { - content: "\e916"; - } - .motif_icon_d_vpn_key::before { - content: "\e917"; - } - .motif_icon_d_warning::before { - content: "\e900"; - } - .motif_icon_d_zoom_out::before { - content: "\e922"; - } - .motif_icon_d_zoom_in::before { - content: "\e923"; - } + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.motif_icon_d_motif_ui::before { + content: "\e926"; +} +.motif_icon_d_undo::before { + content: "\e924"; +} +.motif_icon_d_redo::before { + content: "\e925"; +} +.motif_icon_d_add::before { + content: "\e921"; +} +.motif_icon_d_calendar_expand_horizontal::before { + content: "\e920"; +} +.motif_icon_d_external::before { + content: "\e91f"; +} +.motif_icon_d_autorenew::before { + content: "\e91e"; +} +.motif_icon_d_cancel_outline::before { + content: "\e918"; +} +.motif_icon_d_cancel::before { + content: "\e919"; +} +.motif_icon_d_expand_all::before { + content: "\e91a"; +} +.motif_icon_d_keyboard_arrow_up::before { + content: "\e91b"; +} +.motif_icon_d_density_medium::before { + content: "\e91c"; +} +.motif_icon_d_delete::before { + content: "\e91d"; +} +.motif_icon_d_arrow_back::before { + content: "\e90f"; +} +.motif_icon_d_arrow_drop_down::before { + content: "\e90d"; +} +.motif_icon_d_arrow_forward::before { + content: "\e90e"; +} +.motif_icon_d_arrow_forward_ios::before { + content: "\e910"; +} +.motif_icon_d_attach_file::before { + content: "\e908"; +} +.motif_icon_d_calendar_month::before { + content: "\e90c"; +} +.motif_icon_d_check::before { + content: "\e909"; +} +.motif_icon_d_check_circle::before { + content: "\e904"; +} +.motif_icon_d_close::before { + content: "\e914"; +} +.motif_icon_d_error::before { + content: "\e905"; +} +.motif_icon_d_event::before { + content: "\e90b"; +} +.motif_icon_d_home::before { + content: "\e901"; +} +.motif_icon_d_imagesmode::before { + content: "\e912"; +} +.motif_icon_d_info::before { + content: "\e902"; +} +.motif_icon_d_keyboard_arrow_down::before { + content: "\e913"; +} +.motif_icon_d_person::before { + content: "\e911"; +} +.motif_icon_d_schedule::before { + content: "\e90a"; +} +.motif_icon_d_search::before { + content: "\e906"; +} +.motif_icon_d_upload_2::before { + content: "\e903"; +} +.motif_icon_d_upload_file::before { + content: "\e907"; +} +.motif_icon_d_visibility::before { + content: "\e915"; +} +.motif_icon_d_visibility_off::before { + content: "\e916"; +} +.motif_icon_d_vpn_key::before { + content: "\e917"; +} +.motif_icon_d_warning::before { + content: "\e900"; +} +.motif_icon_d_zoom_out::before { + content: "\e922"; +} +.motif_icon_d_zoom_in::before { + content: "\e923"; } diff --git a/src/lib/components/Motif/InputText/InputText.module.scss b/src/lib/components/Motif/InputText/InputText.module.scss index 8d5a7e4..aa6d71e 100644 --- a/src/lib/components/Motif/InputText/InputText.module.scss +++ b/src/lib/components/Motif/InputText/InputText.module.scss @@ -3,142 +3,140 @@ // size, horizontalPadding, verticalPadding, loaderRadius $sizes: (("xs", "8x", "4x", "18x"), ("sm", "12x", "6x", "20x"), ("md", "16x", "8x", "22x"), ("lg", "20x", "10x", "24x")); -@layer motif-ui { - .Root { - position: relative; - display: inline-flex; - align-items: center; - box-sizing: border-box; - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-bg-light); - @include transition(border-color); +.Root { + position: relative; + display: inline-flex; + align-items: center; + box-sizing: border-box; + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-bg-light); + @include transition(border-color); + + &:focus-within { + border-color: var(--theme-color-border-primary-default); + } - &:focus-within { - border-color: var(--theme-color-border-primary-default); + input { + flex: 1; + box-sizing: border-box; + border: none; + outline: none; + padding: 0; + background: transparent; + color: var(--theme-color-text-base-title); + width: 100%; + + &::placeholder { + color: var(--theme-color-text-base-caption); } - - input { - flex: 1; - box-sizing: border-box; - border: none; + &:focus { outline: none; - padding: 0; - background: transparent; - color: var(--theme-color-text-base-title); - width: 100%; - - &::placeholder { - color: var(--theme-color-text-base-caption); - } - &:focus { - outline: none; - } + } - &[type="number"] { - appearance: textfield; - &::-webkit-inner-spin-button, - &::-webkit-outer-spin-button { - appearance: none; - } + &[type="number"] { + appearance: textfield; + &::-webkit-inner-spin-button, + &::-webkit-outer-spin-button { + appearance: none; } } } +} - .pill { - border-radius: var(--theme-sizing-radius-round); - } +.pill { + border-radius: var(--theme-sizing-radius-round); +} - .inFormField { - min-width: var(--base-sizing-190x); - } +.inFormField { + min-width: var(--base-sizing-190x); +} - .icon { - color: var(--theme-color-text-base-caption-light); - } +.icon { + color: var(--theme-color-text-base-caption-light); +} - .error { - border-color: var(--theme-color-border-danger-default); - .icon.icon-right { - color: var(--theme-color-text-danger-default); - } +.error { + border-color: var(--theme-color-border-danger-default); + .icon.icon-right { + color: var(--theme-color-text-danger-default); } +} - .success { - border-color: var(--theme-color-border-success-default); - .icon.icon-right { - color: var(--theme-color-text-success-default); - } +.success { + border-color: var(--theme-color-border-success-default); + .icon.icon-right { + color: var(--theme-color-text-success-default); } +} - .disabled, - .readOnly { - pointer-events: none; - border-color: var(--theme-color-border-light-disabled); - background-color: var(--theme-color-surface-base-base1); +.disabled, +.readOnly { + pointer-events: none; + border-color: var(--theme-color-border-light-disabled); + background-color: var(--theme-color-surface-base-base1); - .icon, - input { - color: var(--theme-color-text-base-disabled); - } - .numberButtons button { - color: var(--theme-color-text-base-disabled); - background-color: var(--theme-color-surface-base-base3); - } + .icon, + input { + color: var(--theme-color-text-base-disabled); } + .numberButtons button { + color: var(--theme-color-text-base-disabled); + background-color: var(--theme-color-surface-base-base3); + } +} - .numberButtons { - display: flex; - align-self: stretch; - flex-direction: column; - button { - all: unset; - @include transition(background-color); - @include flex-center; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-light-default); - flex: 1; - &:first-child { - border-top-right-radius: var(--theme-sizing-radius-default); - } - &:last-child { - border-bottom-right-radius: var(--theme-sizing-radius-default); - } - &:hover { - background-color: var(--theme-color-surface-light-hover); - } +.numberButtons { + display: flex; + align-self: stretch; + flex-direction: column; + button { + all: unset; + @include transition(background-color); + @include flex-center; + color: var(--theme-color-text-base-subtitle); + background-color: var(--theme-color-surface-light-default); + flex: 1; + &:first-child { + border-top-right-radius: var(--theme-sizing-radius-default); + } + &:last-child { + border-bottom-right-radius: var(--theme-sizing-radius-default); + } + &:hover { + background-color: var(--theme-color-surface-light-hover); } } +} - .loader { - color: var(--theme-color-border-primary-default); - circle { - @include spin; - transform-origin: 50% 50%; - } +.loader { + color: var(--theme-color-border-primary-default); + circle { + @include spin; + transform-origin: 50% 50%; } +} - @each $size, $paddingH, $paddingV, $loaderRadius in $sizes { - .#{$size} { - gap: var(--base-sizing-#{$paddingV}); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); +@each $size, $paddingH, $paddingV, $loaderRadius in $sizes { + .#{$size} { + gap: var(--base-sizing-#{$paddingV}); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - input { - @include font("body", $size); - } + input { + @include font("body", $size); + } - .loader { - width: var(--base-sizing-#{$loaderRadius}); - height: var(--base-sizing-#{$loaderRadius}); - } + .loader { + width: var(--base-sizing-#{$loaderRadius}); + height: var(--base-sizing-#{$loaderRadius}); + } - .numberButtons { - width: calc(2 * var(--base-sizing-#{$paddingH})); - margin: calc(-1 * var(--base-sizing-#{$paddingV})) calc(-1 * var(--base-sizing-#{$paddingH})) calc(-1 * var(--base-sizing-#{$paddingV})) 0; - button { - @include font("body", $size); - line-height: 1; - } + .numberButtons { + width: calc(2 * var(--base-sizing-#{$paddingH})); + margin: calc(-1 * var(--base-sizing-#{$paddingV})) calc(-1 * var(--base-sizing-#{$paddingH})) calc(-1 * var(--base-sizing-#{$paddingV})) 0; + button { + @include font("body", $size); + line-height: 1; } } } diff --git a/src/lib/components/Motif/Pickers/Picker.module.scss b/src/lib/components/Motif/Pickers/Picker.module.scss index c353a18..6858626 100644 --- a/src/lib/components/Motif/Pickers/Picker.module.scss +++ b/src/lib/components/Motif/Pickers/Picker.module.scss @@ -5,60 +5,58 @@ // size, padding $sizes-picker: (("xs", "4x"), ("sm", "8x"), ("md", "12x"), ("lg", "16x")); -@layer motif-ui { - @each $name, $padding in $sizes-picker { - .#{$name} { - &:not(.wide) { - min-width: map.get(pickerValues.$size, $name, "width"); - max-width: map.get(pickerValues.$size, $name, "width"); - } - &.wide { - min-width: calc(map.get(pickerValues.$size, $name, "width") * 2); - max-width: calc(map.get(pickerValues.$size, $name, "width") * 2); - } - padding: var(--base-sizing-#{$padding}); - gap: map.get(pickerValues.$size, $name, "gapV"); +@each $name, $padding in $sizes-picker { + .#{$name} { + &:not(.wide) { + min-width: map.get(pickerValues.$size, $name, "width"); + max-width: map.get(pickerValues.$size, $name, "width"); + } + &.wide { + min-width: calc(map.get(pickerValues.$size, $name, "width") * 2); + max-width: calc(map.get(pickerValues.$size, $name, "width") * 2); + } + padding: var(--base-sizing-#{$padding}); + gap: map.get(pickerValues.$size, $name, "gapV"); - .actions { - padding-top: map.get(pickerValues.$size, $name, "gapV"); - gap: map.get(pickerValues.$size, $name, "gapV"); - } + .actions { + padding-top: map.get(pickerValues.$size, $name, "gapV"); + gap: map.get(pickerValues.$size, $name, "gapV"); } } +} - .Root { - display: inline-flex; - flex-direction: column; - border-radius: var(--theme-sizing-radius-default); - box-sizing: border-box; +.Root { + display: inline-flex; + flex-direction: column; + border-radius: var(--theme-sizing-radius-default); + box-sizing: border-box; - &.shadow { - background: var(--theme-color-surface-base-bg-light); - @include shadow; - } + &.shadow { + background: var(--theme-color-surface-base-bg-light); + @include shadow; + } - &.borderless { - background: var(--theme-color-surface-base-bg-light); - } + &.borderless { + background: var(--theme-color-surface-base-bg-light); + } - &.bordered { - background: var(--theme-color-surface-base-bg-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - } + &.bordered { + background: var(--theme-color-surface-base-bg-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + } - &.fluid { - width: 100%; - max-width: 100%; - height: 100%; - } + &.fluid { + width: 100%; + max-width: 100%; + height: 100%; } +} - .actions { - display: flex; - justify-content: flex-end; - border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); - &.actionsSpread { - justify-content: space-between; - } +.actions { + display: flex; + justify-content: flex-end; + border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + &.actionsSpread { + justify-content: space-between; } } diff --git a/src/lib/components/NavBar/NavBar.module.scss b/src/lib/components/NavBar/NavBar.module.scss index bd63048..2b38b82 100644 --- a/src/lib/components/NavBar/NavBar.module.scss +++ b/src/lib/components/NavBar/NavBar.module.scss @@ -3,326 +3,324 @@ $variants: ("neutral", "primary", "secondary", "info", "danger", "warning", "success"); -@layer motif-ui { - .Root { - display: flex; - flex-wrap: wrap; - align-items: center; - padding: var(--base-sizing-16x) var(--base-sizing-32x); - gap: var(--base-sizing-16x); - - &.elevated { - @include shadow(3); - } +.Root { + display: flex; + flex-wrap: wrap; + align-items: center; + padding: var(--base-sizing-16x) var(--base-sizing-32x); + gap: var(--base-sizing-16x); + + &.elevated { + @include shadow(3); } +} - // ============================================================================= - // Sub Components - // ============================================================================= - .hamburger { - @include transition(color); - display: none; - } +// ============================================================================= +// Sub Components +// ============================================================================= +.hamburger { + @include transition(color); + display: none; +} - .logo { - height: var(--base-sizing-40x); - img { - height: 100%; - } +.logo { + height: var(--base-sizing-40x); + img { + height: 100%; } +} - .searchBox { - position: relative; - - .searchResults { - all: unset; - position: absolute; - left: 0; - right: 0; - top: calc(100% + var(--base-sizing-2x)); - list-style: none; - z-index: 1; - border-radius: var(--theme-sizing-radius-default); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - background-color: var(--theme-color-surface-base-global-light); - overflow-y: auto; - @include shadow(3); +.searchBox { + position: relative; - &::-webkit-scrollbar { - width: var(--base-sizing-6x); - } - &::-webkit-scrollbar-track { - background: var(--theme-color-surface-light-disabled); - margin: var(--base-sizing-1x) 0; - border-radius: var(--theme-sizing-radius-default); - } - &::-webkit-scrollbar-thumb { - background: var(--theme-color-surface-light-hover); - border-radius: var(--theme-sizing-radius-default); - } + .searchResults { + all: unset; + position: absolute; + left: 0; + right: 0; + top: calc(100% + var(--base-sizing-2x)); + list-style: none; + z-index: 1; + border-radius: var(--theme-sizing-radius-default); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + background-color: var(--theme-color-surface-base-global-light); + overflow-y: auto; + @include shadow(3); - li { - button { - all: unset; - box-sizing: border-box; - display: block; - width: 100%; - text-align: left; - padding: var(--base-sizing-8x) var(--base-sizing-16x); - color: var(--theme-color-text-base-text-dark); - @include font("body", "md"); - @include transition(background-color); + &::-webkit-scrollbar { + width: var(--base-sizing-6x); + } + &::-webkit-scrollbar-track { + background: var(--theme-color-surface-light-disabled); + margin: var(--base-sizing-1x) 0; + border-radius: var(--theme-sizing-radius-default); + } + &::-webkit-scrollbar-thumb { + background: var(--theme-color-surface-light-hover); + border-radius: var(--theme-sizing-radius-default); + } - &:hover { - background-color: var(--theme-color-surface-light-default); - } - } - &:not(:first-child) button { - border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + li { + button { + all: unset; + box-sizing: border-box; + display: block; + width: 100%; + text-align: left; + padding: var(--base-sizing-8x) var(--base-sizing-16x); + color: var(--theme-color-text-base-text-dark); + @include font("body", "md"); + @include transition(background-color); + + &:hover { + background-color: var(--theme-color-surface-light-default); } } + &:not(:first-child) button { + border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + } } + } - &.pill .searchResults { - left: var(--base-sizing-20x); - right: var(--base-sizing-20x); - } + &.pill .searchResults { + left: var(--base-sizing-20x); + right: var(--base-sizing-20x); } +} - // ============================================================================= - // Menu - // ============================================================================= - .menu { +// ============================================================================= +// Menu +// ============================================================================= +.menu { + display: flex; + gap: var(--base-sizing-8x); + + &, + ul { + list-style: none; + margin: 0; + padding: 0; + } + a { + user-select: none; + cursor: pointer; display: flex; - gap: var(--base-sizing-8x); - - &, - ul { - list-style: none; - margin: 0; - padding: 0; - } - a { - user-select: none; - cursor: pointer; - display: flex; - align-items: center; - white-space: nowrap; - } + align-items: center; + white-space: nowrap; } +} - .mainMenuContainer { - flex: 1; - } +.mainMenuContainer { + flex: 1; +} - .subMenu { - position: absolute; - z-index: 1; - background-color: var(--theme-color-surface-base-global-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - @include shadow(4); - min-width: 100%; +.subMenu { + position: absolute; + z-index: 1; + background-color: var(--theme-color-surface-base-global-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + @include shadow(4); + min-width: 100%; - .subMenu { - top: calc(-1 * var(--base-sizing-1x)); - } + .subMenu { + top: calc(-1 * var(--base-sizing-1x)); } +} - .subMenuItem { - position: relative; +.subMenuItem { + position: relative; - &:first-child > a { - border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; - } - &:last-child > a { - border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); - } - &:not(:last-child) > a { - border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); - } + &:first-child > a { + border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; + } + &:last-child > a { + border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); + } + &:not(:last-child) > a { + border-bottom: solid var(--base-sizing-1x) var(--theme-color-surface-base-base6); + } - a { - padding: var(--base-sizing-12x) var(--base-sizing-8x); - gap: var(--base-sizing-10x); - color: var(--theme-color-text-base-subtitle); - @include transition(color background-color); + a { + padding: var(--base-sizing-12x) var(--base-sizing-8x); + gap: var(--base-sizing-10x); + color: var(--theme-color-text-base-subtitle); + @include transition(color background-color); - .label { - flex: 1; - @include font("body", "sm"); - } + .label { + flex: 1; + @include font("body", "sm"); + } - &:hover { - background-color: var(--theme-color-surface-base-base4); - color: var(--theme-color-text-base-text-dark); - } + &:hover { + background-color: var(--theme-color-surface-base-base4); + color: var(--theme-color-text-base-text-dark); } } +} - .menu_left { - .menuBarItem > .subMenu { - top: calc(100% + var(--base-sizing-20x)); - right: 0; - } - .subMenu .subMenu { - right: calc(100% + var(--base-sizing-12x)); - } - .subMenuItem a { - flex-direction: row-reverse; - text-align: right; - .dropdown { - rotate: 90deg; - margin-left: calc(-1 * var(--base-sizing-10x)); - } +.menu_left { + .menuBarItem > .subMenu { + top: calc(100% + var(--base-sizing-20x)); + right: 0; + } + .subMenu .subMenu { + right: calc(100% + var(--base-sizing-12x)); + } + .subMenuItem a { + flex-direction: row-reverse; + text-align: right; + .dropdown { + rotate: 90deg; + margin-left: calc(-1 * var(--base-sizing-10x)); } } +} - .menu_right { - .menuBarItem > .subMenu { - top: calc(100% + var(--base-sizing-20x)); - } - .subMenu .subMenu { - left: calc(100% + var(--base-sizing-12x)); - } - .subMenuItem a { - justify-items: flex-start; - .dropdown { - rotate: 270deg; - margin-right: calc(-1 * var(--base-sizing-10x)); - } +.menu_right { + .menuBarItem > .subMenu { + top: calc(100% + var(--base-sizing-20x)); + } + .subMenu .subMenu { + left: calc(100% + var(--base-sizing-12x)); + } + .subMenuItem a { + justify-items: flex-start; + .dropdown { + rotate: 270deg; + margin-right: calc(-1 * var(--base-sizing-10x)); } } +} - .menuBarItem { - position: relative; - > a { - padding: var(--base-sizing-4x) var(--base-sizing-8x); - gap: var(--base-sizing-8x); - @include transition(color); - .label { - @include font("base", "md", "500"); - } +.menuBarItem { + position: relative; + > a { + padding: var(--base-sizing-4x) var(--base-sizing-8x); + gap: var(--base-sizing-8x); + @include transition(color); + .label { + @include font("base", "md", "500"); } } +} - // ============================================================================= - // Variants - // ============================================================================= - @each $variant in $variants { - .#{$variant} { - background-color: if($variant == "neutral", var(--theme-color-surface-base-base4), var(--theme-color-surface-#{$variant}-default)); +// ============================================================================= +// Variants +// ============================================================================= +@each $variant in $variants { + .#{$variant} { + background-color: if($variant == "neutral", var(--theme-color-surface-base-base4), var(--theme-color-surface-#{$variant}-default)); - .hamburger, - .menuBarItem > a { - color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-subtitle), var(--theme-color-text-base-light-overlay75)); - } - .hamburger:hover, - .menuBarItem > a:hover, - .menuBarItem.active > a { - color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); - } + .hamburger, + .menuBarItem > a { + color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-subtitle), var(--theme-color-text-base-light-overlay75)); + } + .hamburger:hover, + .menuBarItem > a:hover, + .menuBarItem.active > a { + color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); + } - @include screen-width("below", "sm") { - .mainMenu { - :has(.subMenu) > a { + @include screen-width("below", "sm") { + .mainMenu { + :has(.subMenu) > a { + color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); + } + .menuBarItem > a { + border-color: if($variant == "neutral", var(--theme-color-border-light-default), var(--theme-color-surface-base-light-overlay50)); + } + .subMenuItem a { + color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-subtitle), var(--theme-color-text-base-light-overlay75)); + &:hover { color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); - } - .menuBarItem > a { - border-color: if($variant == "neutral", var(--theme-color-border-light-default), var(--theme-color-surface-base-light-overlay50)); - } - .subMenuItem a { - color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-subtitle), var(--theme-color-text-base-light-overlay75)); - &:hover { - color: if($variant == "neutral" or $variant == "warning", var(--theme-color-text-base-text-dark), var(--theme-color-text-base-global-light)); - background-color: if( - $variant == "neutral", - var(--theme-color-surface-light-hover), - if($variant == "warning", var(--theme-color-surface-base-light-overlay25), var(--theme-color-surface-base-dark-overlay15)) - ); - } + background-color: if( + $variant == "neutral", + var(--theme-color-surface-light-hover), + if($variant == "warning", var(--theme-color-surface-base-light-overlay25), var(--theme-color-surface-base-dark-overlay15)) + ); } } } } } +} - // ============================================================================= - // Responsive - // ============================================================================= - @include screen-width("below", "sm") { - .hamburger { - display: block; - } - .logo { - flex: 1; - } - .searchBox { - order: 998; - &, - .searchInput { - width: 100%; - } +// ============================================================================= +// Responsive +// ============================================================================= +@include screen-width("below", "sm") { + .hamburger { + display: block; + } + .logo { + flex: 1; + } + .searchBox { + order: 998; + &, + .searchInput { + width: 100%; } + } + + .mainMenuContainer { + order: 999; + } - .mainMenuContainer { - order: 999; + .mainMenu { + gap: 0; + flex-direction: column; + + .menuCollapsed & { + display: none; } - .mainMenu { - gap: 0; - flex-direction: column; + .menuBarItem { + > a { + border-bottom: solid var(--base-sizing-1x); + padding: var(--base-sizing-12x) var(--base-sizing-8x); + .label { + flex: 1; + } + .dropdown { + @include transition(rotate); + } + } + &:has(.subMenu) > a { + border-bottom: none; + .dropdown { + rotate: 180deg; + } + } + } - .menuCollapsed & { + .subMenu { + position: initial; + background: none; + box-shadow: none; + border: none; + &::after, + &::before { display: none; } - .menuBarItem { - > a { - border-bottom: solid var(--base-sizing-1x); - padding: var(--base-sizing-12x) var(--base-sizing-8x); - .label { - flex: 1; - } - .dropdown { - @include transition(rotate); - } - } - &:has(.subMenu) > a { - border-bottom: none; + .subMenuItem { + a { + padding: var(--base-sizing-8x) var(--base-sizing-16x); + border-radius: 0; + border-width: 0; + flex-direction: row; .dropdown { - rotate: 180deg; + rotate: unset; } } - } - - .subMenu { - position: initial; - background: none; - box-shadow: none; - border: none; - &::after, - &::before { - display: none; - } - .subMenuItem { a { - padding: var(--base-sizing-8x) var(--base-sizing-16x); - border-radius: 0; - border-width: 0; - flex-direction: row; - .dropdown { - rotate: unset; - } + margin-left: var(--base-sizing-16x); } - .subMenuItem { - a { - margin-left: var(--base-sizing-16x); - } - .subMenuItem a { - margin-left: var(--base-sizing-32x); - } + .subMenuItem a { + margin-left: var(--base-sizing-32x); } } } diff --git a/src/lib/components/Pagination/Pagination.module.scss b/src/lib/components/Pagination/Pagination.module.scss index e5804f5..bd8980d 100644 --- a/src/lib/components/Pagination/Pagination.module.scss +++ b/src/lib/components/Pagination/Pagination.module.scss @@ -7,75 +7,73 @@ $pagination-sizes: ( ("lg", "48x", "10x") ); -@layer motif-ui { - .Root { - display: inline-flex; - flex-wrap: wrap; - } - - .pageItem { - border: solid var(--base-sizing-1x) transparent; - border-radius: var(--theme-sizing-radius-default); - background: none; - color: var(--theme-color-text-base-title-light); - cursor: pointer; +.Root { + display: inline-flex; + flex-wrap: wrap; +} - &.arrowIcon { - display: flex; - align-items: center; - justify-content: center; - span { - color: var(--theme-color-text-base-title-light); - } - &:disabled { - pointer-events: none; - span { - color: var(--theme-color-text-secondary-disabled); - } - } - } +.pageItem { + border: solid var(--base-sizing-1x) transparent; + border-radius: var(--theme-sizing-radius-default); + background: none; + color: var(--theme-color-text-base-title-light); + cursor: pointer; - &:hover { - background: var(--theme-color-surface-light-default); + &.arrowIcon { + display: flex; + align-items: center; + justify-content: center; + span { + color: var(--theme-color-text-base-title-light); } - &.active { - color: white; + &:disabled { pointer-events: none; - background: var(--theme-color-surface-primary-default); + span { + color: var(--theme-color-text-secondary-disabled); + } } - @include focus-ring; } - .separator { - color: var(--theme-color-text-base-caption); - display: flex; - align-items: center; - justify-content: center; - &::before { - content: "..."; - } + &:hover { + background: var(--theme-color-surface-light-default); + } + &.active { + color: white; + pointer-events: none; + background: var(--theme-color-surface-primary-default); } + @include focus-ring; +} - @each $name, $size, $gap in $pagination-sizes { - .#{$name} { - padding: var(--base-sizing-#{$gap}); - gap: var(--base-sizing-#{$gap}); +.separator { + color: var(--theme-color-text-base-caption); + display: flex; + align-items: center; + justify-content: center; + &::before { + content: "..."; + } +} - .pageItem { - height: var(--base-sizing-#{$size}); - @include font("base", $name, "500"); - &.arrowIcon { - width: var(--base-sizing-#{$size}); - } - &:not(.arrowIcon) { - min-width: var(--base-sizing-#{$size}); - } - } +@each $name, $size, $gap in $pagination-sizes { + .#{$name} { + padding: var(--base-sizing-#{$gap}); + gap: var(--base-sizing-#{$gap}); - .separator { + .pageItem { + height: var(--base-sizing-#{$size}); + @include font("base", $name, "500"); + &.arrowIcon { width: var(--base-sizing-#{$size}); - height: var(--base-sizing-#{$size}); } + &:not(.arrowIcon) { + min-width: var(--base-sizing-#{$size}); + } + } + + .separator { + width: var(--base-sizing-#{$size}); + height: var(--base-sizing-#{$size}); } } } diff --git a/src/lib/components/Panel/Panel.module.scss b/src/lib/components/Panel/Panel.module.scss index 6197bf2..5d02ac9 100644 --- a/src/lib/components/Panel/Panel.module.scss +++ b/src/lib/components/Panel/Panel.module.scss @@ -2,76 +2,74 @@ $lean-positions: ("top", "bottom", "left", "right"); -@layer motif-ui { - .Root { - display: flex; - flex-direction: column; - border-radius: var(--theme-sizing-radius-default); - - &.bordered { - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - } +.Root { + display: flex; + flex-direction: column; + border-radius: var(--theme-sizing-radius-default); - &.default { - background-color: var(--theme-color-surface-base-bg-light); - } + &.bordered { + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + } - &.solid { - background-color: var(--theme-color-surface-base-base2); - } + &.default { + background-color: var(--theme-color-surface-base-bg-light); + } - &.elevated { - background-color: var(--theme-color-surface-base-bg-light); - @include shadow(3); - } + &.solid { + background-color: var(--theme-color-surface-base-base2); + } - &:not(.lean-all) { - padding: var(--base-sizing-24x); - } + &.elevated { + background-color: var(--theme-color-surface-base-bg-light); + @include shadow(3); + } - @each $lean in $lean-positions { - &.lean-#{$lean} { - padding-#{$lean}: 0; - } - } + &:not(.lean-all) { + padding: var(--base-sizing-24x); } - .textContent { - @include font("body", "md"); - color: var(--theme-color-text-base-subtitle-light); - padding-top: var(--base-sizing-4x); - padding-bottom: var(--base-sizing-4x); + @each $lean in $lean-positions { + &.lean-#{$lean} { + padding-#{$lean}: 0; + } } +} - // ============================================================================= - // Sub Component: PanelTitle - // ============================================================================= +.textContent { + @include font("body", "md"); + color: var(--theme-color-text-base-subtitle-light); + padding-top: var(--base-sizing-4x); + padding-bottom: var(--base-sizing-4x); +} - $title-sizes: (("sm", "md"), ("md", "lg"), ("lg", "xl")); +// ============================================================================= +// Sub Component: PanelTitle +// ============================================================================= - .title { - color: var(--theme-color-text-base-subtitle); - margin-top: var(--base-sizing-12x); - margin-bottom: var(--base-sizing-12x); +$title-sizes: (("sm", "md"), ("md", "lg"), ("lg", "xl")); - &:first-child { - margin-top: 0; - } +.title { + color: var(--theme-color-text-base-subtitle); + margin-top: var(--base-sizing-12x); + margin-bottom: var(--base-sizing-12x); - &:last-child { - margin-bottom: 0; - } + &:first-child { + margin-top: 0; + } - .title-icon { - margin-right: var(--base-sizing-8x); - color: var(--theme-color-text-base-caption); - vertical-align: text-top; - } + &:last-child { + margin-bottom: 0; + } + + .title-icon { + margin-right: var(--base-sizing-8x); + color: var(--theme-color-text-base-caption); + vertical-align: text-top; + } - @each $size, $title-size in $title-sizes { - &.title-#{$size} { - @include font("base", $title-size, "700"); - } + @each $size, $title-size in $title-sizes { + &.title-#{$size} { + @include font("base", $title-size, "700"); } } } diff --git a/src/lib/components/PinCode/PinCode.module.scss b/src/lib/components/PinCode/PinCode.module.scss index b102aec..af21142 100644 --- a/src/lib/components/PinCode/PinCode.module.scss +++ b/src/lib/components/PinCode/PinCode.module.scss @@ -8,64 +8,62 @@ $sizes: ( ("lg", "10x", "24x", "16x") ); -@layer motif-ui { - @each $size, $padding, $inputSize, $gap in $sizes { - .#{$size} { - gap: var(--base-sizing-#{$gap}); - .input { - @include font("body", $size); - width: var(--base-sizing-#{$inputSize}); - height: var(--base-sizing-#{$inputSize}); - padding: var(--base-sizing-#{$padding}); - } +@each $size, $padding, $inputSize, $gap in $sizes { + .#{$size} { + gap: var(--base-sizing-#{$gap}); + .input { + @include font("body", $size); + width: var(--base-sizing-#{$inputSize}); + height: var(--base-sizing-#{$inputSize}); + padding: var(--base-sizing-#{$padding}); } } +} - .Root { - display: inline-flex; - vertical-align: top; +.Root { + display: inline-flex; + vertical-align: top; - &.success .input { - border-color: var(--theme-color-border-success-default); - } + &.success .input { + border-color: var(--theme-color-border-success-default); + } - &.circle .input { - border-radius: var(--theme-sizing-radius-round); - } + &.circle .input { + border-radius: var(--theme-sizing-radius-round); + } - &.error .input { - border-color: var(--theme-color-border-danger-default); - } + &.error .input { + border-color: var(--theme-color-border-danger-default); + } - .input.item_space { - background: none; - border: none; - } + .input.item_space { + background: none; + border: none; } +} - // ============================================================================= - // Sub Component: PinCodeItemHOC - // ============================================================================= +// ============================================================================= +// Sub Component: PinCodeItemHOC +// ============================================================================= - .input { - text-align: center; - background-color: var(--theme-color-surface-base-bg-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - box-sizing: content-box; - border-radius: var(--theme-sizing-radius-default); - color: var(--theme-color-text-base-title); - @include focus-ring; +.input { + text-align: center; + background-color: var(--theme-color-surface-base-bg-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + box-sizing: content-box; + border-radius: var(--theme-sizing-radius-default); + color: var(--theme-color-text-base-title); + @include focus-ring; - &:disabled, - :read-only { - border-color: var(--theme-color-border-light-disabled); - color: var(--theme-color-text-base-disabled); - background-color: var(--theme-color-surface-base-base1); - pointer-events: none; - } + &:disabled, + :read-only { + border-color: var(--theme-color-border-light-disabled); + color: var(--theme-color-text-base-disabled); + background-color: var(--theme-color-surface-base-base1); + pointer-events: none; + } - &.item_space { - pointer-events: none; - } + &.item_space { + pointer-events: none; } } diff --git a/src/lib/components/Popover/Popover.module.scss b/src/lib/components/Popover/Popover.module.scss index 751c672..0fe0ada 100644 --- a/src/lib/components/Popover/Popover.module.scss +++ b/src/lib/components/Popover/Popover.module.scss @@ -120,85 +120,83 @@ $caret-margin: var(--base-sizing-12x); } } -@layer motif-ui { - .Root { - z-index: 1; - box-sizing: border-box; - position: absolute; - display: flex; // DO NOT REMOVE: this prevents borders get cut off when popover overflows - @include fade-default; - } +.Root { + z-index: 1; + box-sizing: border-box; + position: absolute; + display: flex; // DO NOT REMOVE: this prevents borders get cut off when popover overflows + @include fade-default; +} - .visible { - @include fade-in; - } +.visible { + @include fade-in; +} - .popover { - width: max-content; - border-radius: var(--theme-sizing-radius-default); - overflow: hidden; - .justText & { - padding: var(--base-sizing-10x); - } +.popover { + width: max-content; + border-radius: var(--theme-sizing-radius-default); + overflow: hidden; + .justText & { + padding: var(--base-sizing-10x); } +} - .elevated { - @include drop-shadow(2); - } +.elevated { + @include drop-shadow(2); +} + +.withGap .popover::before { + content: ""; + position: absolute; + width: $caret-margin; + height: $caret-margin; + box-sizing: border-box; +} + +.noSpace::before { + content: initial; +} - .withGap .popover::before { +.callout .popover { + &::before, + &::after { content: ""; position: absolute; width: $caret-margin; height: $caret-margin; box-sizing: border-box; + border-style: solid; + border-color: transparent; } +} - .noSpace::before { - content: initial; - } - - .callout .popover { - &::before, - &::after { - content: ""; - position: absolute; - width: $caret-margin; - height: $caret-margin; - box-sizing: border-box; - border-style: solid; - border-color: transparent; - } - } +@each $position, $gapPosition, $edgeMarginPositions in $positions { + .#{$position} { + @each $variant, $bgColor, $borderColor, $textColor in $variants { + &.#{$variant} { + &.callout { + padding-#{$gapPosition}: $caret-margin; - @each $position, $gapPosition, $edgeMarginPositions in $positions { - .#{$position} { - @each $variant, $bgColor, $borderColor, $textColor in $variants { - &.#{$variant} { - &.callout { - padding-#{$gapPosition}: $caret-margin; - - &.elevated { - @include caret-tip($position, $bgColor, true); - } - &:not(.elevated) { - @include caret-tip($position, $bgColor, false, $borderColor); - } - } - &:not(.elevated) .popover { - border: solid var(--base-sizing-1x) $borderColor; + &.elevated { + @include caret-tip($position, $bgColor, true); } - .popover { - background-color: $bgColor; - color: $textColor; - @each $edgePos in $edgeMarginPositions { - margin-#{$edgePos}: var(--base-sizing-4x); - } + &:not(.elevated) { + @include caret-tip($position, $bgColor, false, $borderColor); } - &.withGap { - padding-#{$gapPosition}: $caret-margin; + } + &:not(.elevated) .popover { + border: solid var(--base-sizing-1x) $borderColor; + } + .popover { + background-color: $bgColor; + color: $textColor; + @each $edgePos in $edgeMarginPositions { + margin-#{$edgePos}: var(--base-sizing-4x); } } + &.withGap { + padding-#{$gapPosition}: $caret-margin; + } } } } diff --git a/src/lib/components/ProgressBar/ProgressBar.module.scss b/src/lib/components/ProgressBar/ProgressBar.module.scss index 2b1507f..eaba29d 100644 --- a/src/lib/components/ProgressBar/ProgressBar.module.scss +++ b/src/lib/components/ProgressBar/ProgressBar.module.scss @@ -5,92 +5,90 @@ $colors: "primary", "success", "danger", "warning", "info"; // size, height, fontSize $sizes: (("xs", "2x", "xs"), ("sm", "4x", "sm"), ("md", "6x", "md"), ("lg", "8x", "lg"), ("xl", "12x", "lg")); -@layer motif-ui { - .Root { - text-align: center; +.Root { + text-align: center; - .bar { - position: relative; - background: var(--theme-color-surface-base-base5); - border-radius: var(--theme-sizing-radius-round); + .bar { + position: relative; + background: var(--theme-color-surface-base-base5); + border-radius: var(--theme-sizing-radius-round); - &::before { - content: ""; - position: absolute; - border-radius: var(--theme-sizing-radius-round); - top: 0; - left: 0; - height: 100%; - @include transition(width, "slow", ease-in-out); - width: calc(var(--percentage, 0) * 1%); - } + &::before { + content: ""; + position: absolute; + border-radius: var(--theme-sizing-radius-round); + top: 0; + left: 0; + height: 100%; + @include transition(width, "slow", ease-in-out); + width: calc(var(--percentage, 0) * 1%); } + } - .text { - display: inline-block; - color: var(--theme-color-text-base-subtitle-light); - margin-top: var(--base-sizing-4x); - } + .text { + display: inline-block; + color: var(--theme-color-text-base-subtitle-light); + margin-top: var(--base-sizing-4x); + } - @each $size, $height, $fontSize in $sizes { - &.#{$size} { - .bar { - height: var(--base-sizing-#{$height}); - } + @each $size, $height, $fontSize in $sizes { + &.#{$size} { + .bar { + height: var(--base-sizing-#{$height}); + } - .text { - @include font("base", $fontSize, "500"); - } + .text { + @include font("base", $fontSize, "500"); } } + } - @each $color in $colors { - &.#{$color} .bar::before { - background: var(--theme-color-surface-#{$color}-default); - } + @each $color in $colors { + &.#{$color} .bar::before { + background: var(--theme-color-surface-#{$color}-default); } + } - &.secondary .bar::before { - background: var(--theme-color-surface-base-base7); + &.secondary .bar::before { + background: var(--theme-color-surface-base-base7); + } + + &.indeterminate { + .bar::before { + animation: progress-animation 1.2s cubic-bezier(0.5, 0.1, 0.9, 1) forwards infinite; } - &.indeterminate { - .bar::before { - animation: progress-animation 1.2s cubic-bezier(0.5, 0.1, 0.9, 1) forwards infinite; + @keyframes progress-animation { + 0% { + left: 0; + width: 0; } - - @keyframes progress-animation { - 0% { - left: 0; - width: 0; - } - 50% { - left: 50%; - width: 50%; - } - 100% { - left: 100%; - width: 0; - } + 50% { + left: 50%; + width: 50%; + } + 100% { + left: 100%; + width: 0; } } + } - &.countdown { - .bar::before { - animation: countdown var(--countdown-duration) linear forwards; - } + &.countdown { + .bar::before { + animation: countdown var(--countdown-duration) linear forwards; + } - &.paused .bar::before { - animation-play-state: paused; - } + &.paused .bar::before { + animation-play-state: paused; + } - @keyframes countdown { - 0% { - width: 100%; - } - 100% { - width: 0; - } + @keyframes countdown { + 0% { + width: 100%; + } + 100% { + width: 0; } } } diff --git a/src/lib/components/ProgressCircle/ProgressCircle.module.scss b/src/lib/components/ProgressCircle/ProgressCircle.module.scss index d47b6d8..49713eb 100644 --- a/src/lib/components/ProgressCircle/ProgressCircle.module.scss +++ b/src/lib/components/ProgressCircle/ProgressCircle.module.scss @@ -7,86 +7,84 @@ $colors: "primary", "success", "danger", "warning", "info"; // size, strokeWidth, radius, fontPerc $sizes: (("xs", "2x", "8x", "xs"), ("sm", "3x", "12x", "xs"), ("md", "4x", "18x", "xs"), ("lg", "4x", "24x", "xs"), ("xl", "6x", "32x", "md")); -@layer motif-ui { - .Root { - @each $size, $strokeWidth, $radius, $fontPerc in $sizes { - &.#{$size} { - height: calc(var(--base-sizing-#{$radius}) * 2); - width: calc(var(--base-sizing-#{$radius}) * 2); - $normalized-radius: calc(var(--base-sizing-#{$radius}) - (var(--base-sizing-#{$strokeWidth}) / 2)); - $circumference-with-unit: calc(#{$normalized-radius} * 2 * #{math.$pi}); - $circumference: #{$circumference-with-unit}; - $calculated-offset: calc(#{$circumference} - ((#{$circumference} * var(--percentage, 0)) / 100)); +.Root { + @each $size, $strokeWidth, $radius, $fontPerc in $sizes { + &.#{$size} { + height: calc(var(--base-sizing-#{$radius}) * 2); + width: calc(var(--base-sizing-#{$radius}) * 2); + $normalized-radius: calc(var(--base-sizing-#{$radius}) - (var(--base-sizing-#{$strokeWidth}) / 2)); + $circumference-with-unit: calc(#{$normalized-radius} * 2 * #{math.$pi}); + $circumference: #{$circumference-with-unit}; + $calculated-offset: calc(#{$circumference} - ((#{$circumference} * var(--percentage, 0)) / 100)); - circle { - cx: var(--base-sizing-#{$radius}); - cy: var(--base-sizing-#{$radius}); - r: $normalized-radius; - stroke-width: var(--base-sizing-#{$strokeWidth}); - } + circle { + cx: var(--base-sizing-#{$radius}); + cy: var(--base-sizing-#{$radius}); + r: $normalized-radius; + stroke-width: var(--base-sizing-#{$strokeWidth}); + } + + .circle { + stroke-dashoffset: $calculated-offset; + stroke-dasharray: $circumference $circumference; + } + &.countdown { .circle { - stroke-dashoffset: $calculated-offset; - stroke-dasharray: $circumference $circumference; + animation: countdown-#{$size} var(--countdown-duration) linear forwards; } - &.countdown { - .circle { - animation: countdown-#{$size} var(--countdown-duration) linear forwards; - } + &.paused .circle { + animation-play-state: paused; + } - &.paused .circle { - animation-play-state: paused; + @keyframes countdown-#{$size} { + 0% { + stroke-dashoffset: 0; } - - @keyframes countdown-#{$size} { - 0% { - stroke-dashoffset: 0; - } - 100% { - stroke-dashoffset: #{$circumference}; - } + 100% { + stroke-dashoffset: #{$circumference}; } } - - .text { - fill: var(--theme-color-text-base-subtitle-light); - font-weight: var(--typography-base-#{$fontPerc}-500-fontWeight); - font-size: var(--typography-base-#{$fontPerc}-500-fontSize); - } } - } - @each $color in $colors { - &.#{$color} .circle { - stroke: var(--theme-color-surface-#{$color}-default); + .text { + fill: var(--theme-color-text-base-subtitle-light); + font-weight: var(--typography-base-#{$fontPerc}-500-fontWeight); + font-size: var(--typography-base-#{$fontPerc}-500-fontSize); } } + } - &.secondary .circle { - stroke: var(--theme-color-surface-base-base7); + @each $color in $colors { + &.#{$color} .circle { + stroke: var(--theme-color-surface-#{$color}-default); } + } - .circle { - @include transition(stroke-dashoffset, "slow", ease-in-out); - transform: rotate(-90deg); - transform-origin: 50% 50%; - stroke-linecap: round; - } + &.secondary .circle { + stroke: var(--theme-color-surface-base-base7); + } - .track { - stroke: var(--theme-color-surface-base-base5); - } + .circle { + @include transition(stroke-dashoffset, "slow", ease-in-out); + transform: rotate(-90deg); + transform-origin: 50% 50%; + stroke-linecap: round; + } - &.indeterminate { - animation: 1.5s linear infinite svg-animation; - @keyframes svg-animation { - 0% { - transform: rotateZ(0deg); - } - 100% { - transform: rotateZ(360deg); - } + .track { + stroke: var(--theme-color-surface-base-base5); + } + + &.indeterminate { + animation: 1.5s linear infinite svg-animation; + @keyframes svg-animation { + 0% { + transform: rotateZ(0deg); + } + 100% { + transform: rotateZ(360deg); } } } diff --git a/src/lib/components/Radio/Radio.module.scss b/src/lib/components/Radio/Radio.module.scss index 832bf5e..e429acf 100644 --- a/src/lib/components/Radio/Radio.module.scss +++ b/src/lib/components/Radio/Radio.module.scss @@ -1,79 +1,77 @@ @use "@styles" as *; $sizes: (("xs", "16x", "6x"), ("sm", "20x", "8x"), ("md", "24x", "10x"), ("lg", "28x", "12x")); -@layer motif-ui { - @each $name, $size, $gap in $sizes { - .#{$name} { - &.Root { - gap: var(--base-sizing-#{$gap}); - } - .label { - @include font("base", $name, "500"); - } - .radio { - width: var(--base-sizing-#{$size}); - min-width: var(--base-sizing-#{$size}); - height: var(--base-sizing-#{$size}); - min-height: var(--base-sizing-#{$size}); - } +@each $name, $size, $gap in $sizes { + .#{$name} { + &.Root { + gap: var(--base-sizing-#{$gap}); } - } - - .Root { - display: inline-flex; - align-items: center; - .label { - color: var(--theme-color-text-base-title-light); + @include font("base", $name, "500"); } - .radio { - @include transition; - appearance: none; - margin: 0; - background: var(--theme-color-surface-base-bg-light); - border-radius: var(--theme-sizing-radius-round); - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + width: var(--base-sizing-#{$size}); + min-width: var(--base-sizing-#{$size}); + height: var(--base-sizing-#{$size}); + min-height: var(--base-sizing-#{$size}); + } + } +} - &:hover { - border-color: var(--theme-color-border-light-hover); - background-color: var(--theme-color-surface-base-base2); - } +.Root { + display: inline-flex; + align-items: center; - &:focus { - outline: none; - border-color: var(--theme-color-border-primary-default); - background-color: var(--theme-color-surface-base-base2); - } + .label { + color: var(--theme-color-text-base-title-light); + } - &:checked { - background: var(--theme-color-surface-primary-default); - border-color: var(--theme-color-border-primary-default); - } + .radio { + @include transition; + appearance: none; + margin: 0; + background: var(--theme-color-surface-base-bg-light); + border-radius: var(--theme-sizing-radius-round); + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + + &:hover { + border-color: var(--theme-color-border-light-hover); + background-color: var(--theme-color-surface-base-base2); } - &.error .radio:not(:checked) { - border-color: var(--theme-color-border-danger-default); + &:focus { + outline: none; + border-color: var(--theme-color-border-primary-default); + background-color: var(--theme-color-surface-base-base2); } - &.success .radio:not(:checked) { - border-color: var(--theme-color-border-success-default); + &:checked { + background: var(--theme-color-surface-primary-default); + border-color: var(--theme-color-border-primary-default); } + } - &.disabled { - * { - pointer-events: none; - } - .label { - color: var(--theme-color-text-base-disabled); - } - .radio { - border-color: var(--theme-color-border-light-disabled); - background: var(--theme-color-surface-base-bg-light); - &:checked { - border-color: var(--theme-color-surface-primary-disabled); - background: var(--theme-color-surface-primary-disabled); - } + &.error .radio:not(:checked) { + border-color: var(--theme-color-border-danger-default); + } + + &.success .radio:not(:checked) { + border-color: var(--theme-color-border-success-default); + } + + &.disabled { + * { + pointer-events: none; + } + .label { + color: var(--theme-color-text-base-disabled); + } + .radio { + border-color: var(--theme-color-border-light-disabled); + background: var(--theme-color-surface-base-bg-light); + &:checked { + border-color: var(--theme-color-surface-primary-disabled); + background: var(--theme-color-surface-primary-disabled); } } } diff --git a/src/lib/components/RadioGroup/RadioGroup.module.scss b/src/lib/components/RadioGroup/RadioGroup.module.scss index 2f3ea87..222a82e 100644 --- a/src/lib/components/RadioGroup/RadioGroup.module.scss +++ b/src/lib/components/RadioGroup/RadioGroup.module.scss @@ -8,32 +8,30 @@ $sizes: ( ("lg", "32x", "24x", "10x") ); -@layer motif-ui { - .Root { - display: flex; - align-items: flex-start; - min-width: var(--base-sizing-128x); - } +.Root { + display: flex; + align-items: flex-start; + min-width: var(--base-sizing-128x); +} - .vertical { - flex-direction: column; - } +.vertical { + flex-direction: column; +} - .horizontal { - flex-direction: row; - } +.horizontal { + flex-direction: row; +} - @each $name, $gapItemsH, $gapItemsV, $paddingVInFormField in $sizes { - .#{$name} { - &.vertical { - gap: var(--base-sizing-#{$gapItemsV}); - } - &.horizontal { - gap: var(--base-sizing-#{$gapItemsH}); - } - &.inFormField { - padding: var(--base-sizing-#{$paddingVInFormField}) 0; - } +@each $name, $gapItemsH, $gapItemsV, $paddingVInFormField in $sizes { + .#{$name} { + &.vertical { + gap: var(--base-sizing-#{$gapItemsV}); + } + &.horizontal { + gap: var(--base-sizing-#{$gapItemsH}); + } + &.inFormField { + padding: var(--base-sizing-#{$paddingVInFormField}) 0; } } } diff --git a/src/lib/components/Select/Select.module.scss b/src/lib/components/Select/Select.module.scss index 03859dd..1201d4e 100644 --- a/src/lib/components/Select/Select.module.scss +++ b/src/lib/components/Select/Select.module.scss @@ -8,249 +8,247 @@ $sizes: ( ("lg", "10x", "20x", "10x", "256x", "24x", 0, "md", "20x") ); -@layer motif-ui { - .Root { - position: relative; - display: inline-block; - - &.expanded .input { - border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; - .arrowDown { - transform: rotate(180deg); - } +.Root { + position: relative; + display: inline-block; + + &.expanded .input { + border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; + .arrowDown { + transform: rotate(180deg); } + } - &.inFormField .input { - min-width: var(--base-sizing-190x); - } + &.inFormField .input { + min-width: var(--base-sizing-190x); + } - @include transition(border-color); + @include transition(border-color); - &.error .input { - border-color: var(--theme-color-border-danger-default); - } + &.error .input { + border-color: var(--theme-color-border-danger-default); + } + + &.success .input { + border-color: var(--theme-color-border-success-default); + } + + &.active, + &:focus .input { + border-color: var(--theme-color-border-primary-default); + outline: none; + } + + &.disabled .input { + border-color: var(--theme-color-border-light-disabled); + background-color: var(--theme-color-surface-base-base1); + pointer-events: none; - &.success .input { - border-color: var(--theme-color-border-success-default); + .inputText { + color: var(--theme-color-text-base-disabled); } - &.active, - &:focus .input { - border-color: var(--theme-color-border-primary-default); - outline: none; + .iconRight { + color: var(--theme-color-text-light-disabled); } + } +} - &.disabled .input { - border-color: var(--theme-color-border-light-disabled); - background-color: var(--theme-color-surface-base-base1); - pointer-events: none; +.input { + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-bg-light); + display: inline-flex; + width: 100%; + align-items: center; + box-sizing: border-box; - .inputText { - color: var(--theme-color-text-base-disabled); - } + .inputTextAndItemsContainer { + display: flex; + flex-wrap: wrap; + flex: 1; + min-width: 0; + } - .iconRight { - color: var(--theme-color-text-light-disabled); - } + .inputText { + all: unset; + min-width: 0; + flex-grow: 1; + text-align: left; + white-space: nowrap; + overflow: auto; + text-overflow: ellipsis; + color: var(--theme-color-text-base-title); + + &::placeholder { + color: var(--theme-color-text-base-caption); } } - .input { - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-bg-light); - display: inline-flex; - width: 100%; - align-items: center; - box-sizing: border-box; + .iconLeft { + color: var(--theme-color-text-base-caption-light); + } - .inputTextAndItemsContainer { - display: flex; - flex-wrap: wrap; - flex: 1; - min-width: 0; - } + .iconRight { + color: var(--theme-color-text-base-subtitle); + @include transition(transform); + } +} - .inputText { - all: unset; - min-width: 0; - flex-grow: 1; - text-align: left; - white-space: nowrap; - overflow: auto; - text-overflow: ellipsis; - color: var(--theme-color-text-base-title); - - &::placeholder { - color: var(--theme-color-text-base-caption); - } - } +.dropdown { + position: absolute; + z-index: 1; + list-style: none; + margin: 0; + padding: 0; + box-sizing: border-box; + border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-top: none; + width: 100%; + background-color: var(--theme-color-surface-base-global-light); + overflow-y: auto; + @include shadow(3); + + &::-webkit-scrollbar { + width: var(--base-sizing-8x); + } - .iconLeft { - color: var(--theme-color-text-base-caption-light); - } + &::-webkit-scrollbar-track { + background: #f1f1f1; + margin: var(--base-sizing-1x) 0; + border-radius: var(--theme-sizing-radius-default); + } - .iconRight { - color: var(--theme-color-text-base-subtitle); - @include transition(transform); - } + &::-webkit-scrollbar-thumb { + background: #cccccc; + border-radius: var(--theme-sizing-radius-default); } - .dropdown { - position: absolute; - z-index: 1; - list-style: none; - margin: 0; - padding: 0; - box-sizing: border-box; - border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-top: none; - width: 100%; - background-color: var(--theme-color-surface-base-global-light); - overflow-y: auto; - @include shadow(3); - - &::-webkit-scrollbar { - width: var(--base-sizing-8x); - } + li { + @include transition(background-color); + display: flex; - &::-webkit-scrollbar-track { - background: #f1f1f1; - margin: var(--base-sizing-1x) 0; - border-radius: var(--theme-sizing-radius-default); + &:not(:first-child) { + border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); } - &::-webkit-scrollbar-thumb { - background: #cccccc; - border-radius: var(--theme-sizing-radius-default); + &.noData label { + color: var(--theme-color-text-base-disabled-light); } - li { - @include transition(background-color); - display: flex; + &.optionGroup label { + width: 100%; + color: var(--theme-color-text-base-caption-light); + } - &:not(:first-child) { - border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + &.option { + &:hover { + background-color: var(--theme-color-surface-light-default); } - &.noData label { - color: var(--theme-color-text-base-disabled-light); + &.selected { + label, + .iconSelected { + color: var(--theme-color-text-primary-default); + } } - &.optionGroup label { - width: 100%; - color: var(--theme-color-text-base-caption-light); + input[type="checkbox"], + input[type="radio"] { + position: absolute; + left: 0; + opacity: 0; } - &.option { - &:hover { - background-color: var(--theme-color-surface-light-default); - } - - &.selected { - label, - .iconSelected { - color: var(--theme-color-text-primary-default); - } - } - - input[type="checkbox"], - input[type="radio"] { - position: absolute; - left: 0; - opacity: 0; - } - - label { - width: 100%; - display: flex; - align-items: center; - gap: var(--base-sizing-10x); - color: var(--theme-color-text-base-text-dark); + label { + width: 100%; + display: flex; + align-items: center; + gap: var(--base-sizing-10x); + color: var(--theme-color-text-base-text-dark); - .labelText { - flex-grow: 1; - } + .labelText { + flex-grow: 1; } } } } +} - @each $size, $paddingV, $paddingH, $gap, $maxDropdownHeight, $rightContainerSize, $loaderTop, $selectedSize, $selectedIconSize in $sizes { - .#{$size} { - .input { - padding: var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingH}); - - gap: var(--base-sizing-#{$gap}); +@each $size, $paddingV, $paddingH, $gap, $maxDropdownHeight, $rightContainerSize, $loaderTop, $selectedSize, $selectedIconSize in $sizes { + .#{$size} { + .input { + padding: var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingV}) + var(--base-sizing-#{$paddingH}); - .inputText { - @include font("body", $size); - } + gap: var(--base-sizing-#{$gap}); - .inputTextAndItemsContainer { - gap: var(--base-sizing-#{$gap}); - } + .inputText { + @include font("body", $size); } - .label { - @include font("base", $selectedSize, "500"); + .inputTextAndItemsContainer { + gap: var(--base-sizing-#{$gap}); } + } - .closeIcon { - font-size: var(--base-sizing-#{$selectedIconSize}); - } + .label { + @include font("base", $selectedSize, "500"); + } + + .closeIcon { + font-size: var(--base-sizing-#{$selectedIconSize}); + } - .dropdown { - max-height: var(--base-sizing-#{$maxDropdownHeight}); + .dropdown { + max-height: var(--base-sizing-#{$maxDropdownHeight}); - li { - &.optionGroup label { - padding: var(--base-sizing-#{$paddingV}); - @include font("base", $size, "500"); - } + li { + &.optionGroup label { + padding: var(--base-sizing-#{$paddingV}); + @include font("base", $size, "500"); + } - &.noData, - &.option { - label { - gap: var(--base-sizing-#{$gap}); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - @include font("body", $size); - } + &.noData, + &.option { + label { + gap: var(--base-sizing-#{$gap}); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + @include font("body", $size); } } } + } - .rightContainer { - width: var(--base-sizing-#{$rightContainerSize}); - height: var(--base-sizing-#{$rightContainerSize}); - position: relative; - display: flex; - align-items: center; - justify-content: center; + .rightContainer { + width: var(--base-sizing-#{$rightContainerSize}); + height: var(--base-sizing-#{$rightContainerSize}); + position: relative; + display: flex; + align-items: center; + justify-content: center; - .loader { - position: absolute; - top: add-unit($loaderTop); - right: 0; - } + .loader { + position: absolute; + top: add-unit($loaderTop); + right: 0; } } } +} - // ============================================================================= - // Sub Component: Selected Item - // ============================================================================= +// ============================================================================= +// Sub Component: Selected Item +// ============================================================================= - .selectionChip { - background-color: var(--theme-color-surface-base-base4); - border-radius: var(--theme-sizing-radius-default); - padding: var(--base-sizing-1x) var(--base-sizing-8x); - display: flex; - gap: var(--base-sizing-1x) var(--base-sizing-8x); - } +.selectionChip { + background-color: var(--theme-color-surface-base-base4); + border-radius: var(--theme-sizing-radius-default); + padding: var(--base-sizing-1x) var(--base-sizing-8x); + display: flex; + gap: var(--base-sizing-1x) var(--base-sizing-8x); +} - .label { - color: var(--theme-color-text-base-subtitle); - } +.label { + color: var(--theme-color-text-base-subtitle); } diff --git a/src/lib/components/Skeleton/Skeleton.module.scss b/src/lib/components/Skeleton/Skeleton.module.scss index 4ffd3ea..aa4b7ac 100644 --- a/src/lib/components/Skeleton/Skeleton.module.scss +++ b/src/lib/components/Skeleton/Skeleton.module.scss @@ -1,38 +1,36 @@ -@layer motif-ui { - .skeleton { - &.table { - display: flex; - padding: var(--base-sizing-16x); - gap: var(--base-sizing-22x); - flex-direction: column; +.skeleton { + &.table { + display: flex; + padding: var(--base-sizing-16x); + gap: var(--base-sizing-22x); + flex-direction: column; - div { - height: var(--base-sizing-10x); + div { + height: var(--base-sizing-10x); + width: 100%; + border-radius: var(--base-sizing-4x); + &:nth-child(1) { width: 100%; - border-radius: var(--base-sizing-4x); - &:nth-child(1) { - width: 100%; - } - &:nth-child(2) { - width: 100%; - } - &:nth-child(3) { - width: 100%; - } } - - &.pulse div { - animation: pulse 1s linear infinite alternate; + &:nth-child(2) { + width: 100%; + } + &:nth-child(3) { + width: 100%; } } - @keyframes pulse { - 0% { - background-color: #dddddd; - } - 100% { - background-color: #efefef; - } + &.pulse div { + animation: pulse 1s linear infinite alternate; + } + } + + @keyframes pulse { + 0% { + background-color: #dddddd; + } + 100% { + background-color: #efefef; } } } diff --git a/src/lib/components/Slider/Slider.module.scss b/src/lib/components/Slider/Slider.module.scss index 053d567..22ff2db 100644 --- a/src/lib/components/Slider/Slider.module.scss +++ b/src/lib/components/Slider/Slider.module.scss @@ -32,139 +32,137 @@ $color-types: ( border-color: $borderDisabledColor; } -@layer motif-ui { - @each $size, $progressHeight, $thumb, $thumbHover, $thumbBorder, $marginTop, $horizontalPadding in $sizes-positions { - .#{$size} { - &.Root { - min-height: var(--base-sizing-#{$thumbHover}); - min-width: var(--base-sizing-128x); +@each $size, $progressHeight, $thumb, $thumbHover, $thumbBorder, $marginTop, $horizontalPadding in $sizes-positions { + .#{$size} { + &.Root { + min-height: var(--base-sizing-#{$thumbHover}); + min-width: var(--base-sizing-128x); - &.inFormField { - margin: var(--base-sizing-#{$marginTop}) var(--base-sizing-#{$horizontalPadding}) 0; - } - } - .tooltip { - bottom: calc(var(--base-sizing-#{$thumb}) - var(--base-sizing-20x)); - } - .fill, - .track, - .mRangeContainer::after { - height: var(--base-sizing-#{$progressHeight}); - } - .mRangeContainer { - min-width: var(--base-sizing-#{$thumb}); + &.inFormField { + margin: var(--base-sizing-#{$marginTop}) var(--base-sizing-#{$horizontalPadding}) 0; } + } + .tooltip { + bottom: calc(var(--base-sizing-#{$thumb}) - var(--base-sizing-20x)); + } + .fill, + .track, + .mRangeContainer::after { + height: var(--base-sizing-#{$progressHeight}); + } + .mRangeContainer { + min-width: var(--base-sizing-#{$thumb}); + } - .mRange { - &::-webkit-slider-thumb { - @include slider-size-thumb($thumb, $thumbBorder, $thumbHover); - } - &::-moz-range-thumb { - @include slider-size-thumb($thumb, $thumbBorder, $thumbHover); - } + .mRange { + &::-webkit-slider-thumb { + @include slider-size-thumb($thumb, $thumbBorder, $thumbHover); + } + &::-moz-range-thumb { + @include slider-size-thumb($thumb, $thumbBorder, $thumbHover); } } } +} - @each $variant, $color, $borderColor, $disabledColor, $borderDisabledColor in $color-types { - .#{$variant} { +@each $variant, $color, $borderColor, $disabledColor, $borderDisabledColor in $color-types { + .#{$variant} { + .fill { + background: $color; + } + .mRange { + &::-webkit-slider-thumb { + border-color: $borderColor; + } + &::-moz-range-thumb { + border-color: $borderColor; + } + } + &.disabled { + cursor: not-allowed; .fill { - background: $color; + background: $disabledColor; } .mRange { &::-webkit-slider-thumb { - border-color: $borderColor; + @include slider-color-thumb-disabled($borderDisabledColor); } &::-moz-range-thumb { - border-color: $borderColor; - } - } - &.disabled { - cursor: not-allowed; - .fill { - background: $disabledColor; - } - .mRange { - &::-webkit-slider-thumb { - @include slider-color-thumb-disabled($borderDisabledColor); - } - &::-moz-range-thumb { - @include slider-color-thumb-disabled($borderDisabledColor); - } + @include slider-color-thumb-disabled($borderDisabledColor); } } } } +} - .Root { - position: relative; - display: flex; - cursor: pointer; - align-items: center; - } - - .mRangeContainer { - top: 0; - bottom: 0; - position: absolute; - } +.Root { + position: relative; + display: flex; + cursor: pointer; + align-items: center; +} - .mRange { - position: absolute; - inset: 0; - appearance: none; - background: transparent; - z-index: 1; - pointer-events: none; - margin: 0; +.mRangeContainer { + top: 0; + bottom: 0; + position: absolute; +} - &:hover + .tooltip { - @include pop-in; - } +.mRange { + position: absolute; + inset: 0; + appearance: none; + background: transparent; + z-index: 1; + pointer-events: none; + margin: 0; - &::-webkit-slider-thumb { - appearance: none; - @include slider-style-thumb; - } - &::-moz-range-thumb { - @include slider-style-thumb; - } + &:hover + .tooltip { + @include pop-in; } - .tooltip { - @include pop-default; - transform-origin: center left; - bottom: auto; - position: absolute; - transform: translateX(-50%) translateY(-100%); - background: var(--theme-color-text-secondary-active); - padding: var(--base-sizing-4x) var(--base-sizing-8x); - border-radius: var(--theme-sizing-radius-default); - color: var(--theme-color-text-base-text-light); - z-index: 1; - - &::after { - content: " "; - position: absolute; - top: 100%; - left: 50%; - transform: translateX(-50%) translateY(-1px); - border-width: var(--base-sizing-6x); - border-style: solid; - border-color: var(--theme-color-text-secondary-active) transparent transparent; - } + &::-webkit-slider-thumb { + appearance: none; + @include slider-style-thumb; } - - .fill { - position: absolute; - border-radius: var(--theme-sizing-radius-round); + &::-moz-range-thumb { + @include slider-style-thumb; } +} + +.tooltip { + @include pop-default; + transform-origin: center left; + bottom: auto; + position: absolute; + transform: translateX(-50%) translateY(-100%); + background: var(--theme-color-text-secondary-active); + padding: var(--base-sizing-4x) var(--base-sizing-8x); + border-radius: var(--theme-sizing-radius-default); + color: var(--theme-color-text-base-text-light); + z-index: 1; - .track { + &::after { + content: " "; position: absolute; - left: 0; - right: 0; - background: var(--theme-color-surface-base-base4); - border-radius: var(--theme-sizing-radius-round); + top: 100%; + left: 50%; + transform: translateX(-50%) translateY(-1px); + border-width: var(--base-sizing-6x); + border-style: solid; + border-color: var(--theme-color-text-secondary-active) transparent transparent; } } + +.fill { + position: absolute; + border-radius: var(--theme-sizing-radius-round); +} + +.track { + position: absolute; + left: 0; + right: 0; + background: var(--theme-color-surface-base-base4); + border-radius: var(--theme-sizing-radius-round); +} diff --git a/src/lib/components/SliderRange/SliderRange.module.scss b/src/lib/components/SliderRange/SliderRange.module.scss index 662b649..db8ee80 100644 --- a/src/lib/components/SliderRange/SliderRange.module.scss +++ b/src/lib/components/SliderRange/SliderRange.module.scss @@ -1,22 +1,20 @@ @use "../Slider/sliderValues" as *; -@layer motif-ui { - .Root { - position: relative; +.Root { + position: relative; - > :last-child { - position: absolute; - top: 0; - left: 0; - right: 0; - } + > :last-child { + position: absolute; + top: 0; + left: 0; + right: 0; } +} - @each $size, $progressHeight, $thumb, $thumbHover, $thumbBorder, $marginTop, $horizontalPadding in $sizes-positions { - .#{$size} { - &.inFormField { - margin: var(--base-sizing-#{$marginTop}) var(--base-sizing-#{$horizontalPadding}) 0; - } +@each $size, $progressHeight, $thumb, $thumbHover, $thumbBorder, $marginTop, $horizontalPadding in $sizes-positions { + .#{$size} { + &.inFormField { + margin: var(--base-sizing-#{$marginTop}) var(--base-sizing-#{$horizontalPadding}) 0; } } } diff --git a/src/lib/components/Stepper/Stepper.module.scss b/src/lib/components/Stepper/Stepper.module.scss index b012b26..2270348 100644 --- a/src/lib/components/Stepper/Stepper.module.scss +++ b/src/lib/components/Stepper/Stepper.module.scss @@ -3,202 +3,200 @@ $variants: ("primary", "secondary", "success", "warning", "danger"); $types: (("dot", var(--base-sizing-12x)), ("number", var(--base-sizing-24x)), ("icon", var(--base-sizing-40x)), ("text", var(--base-sizing-18x))); -@layer motif-ui { - .Root { - gap: var(--base-sizing-16x); - padding: var(--base-sizing-4x); - } +.Root { + gap: var(--base-sizing-16x); + padding: var(--base-sizing-4x); +} - .stepCount { - @include font("base", "sm", "500"); - color: var(--theme-color-text-base-caption); - } +.stepCount { + @include font("base", "sm", "500"); + color: var(--theme-color-text-base-caption); +} - .stepList { - display: flex; - } +.stepList { + display: flex; +} - .stepItem { - display: flex; +.stepItem { + display: flex; - .stepHeader { - display: flex; - align-items: center; - &.item-vertical { - flex-direction: column; - gap: var(--base-sizing-4x); - } - &.item-horizontal { - gap: var(--base-sizing-8x); - } + .stepHeader { + display: flex; + align-items: center; + &.item-vertical { + flex-direction: column; + gap: var(--base-sizing-4x); } - - .stepIndicator { - border-radius: var(--theme-sizing-radius-round); - background-color: var(--theme-color-surface-base-base7); - color: var(--theme-color-text-base-global-light); - @include transition(background-color); - @include flex-center; - - &.stepNumber { - @include font("base", "xxs", "700"); - } + &.item-horizontal { + gap: var(--base-sizing-8x); } + } - .stepIcon { - .icon & { - font-size: var(--base-sizing-28x); - } - .number & { - font-size: var(--base-sizing-16x); - } - } + .stepIndicator { + border-radius: var(--theme-sizing-radius-round); + background-color: var(--theme-color-surface-base-base7); + color: var(--theme-color-text-base-global-light); + @include transition(background-color); + @include flex-center; - .dotStatusIcon { - pointer-events: none; - font-size: var(--base-sizing-22x); - width: var(--base-sizing-12x); - height: var(--base-sizing-12x); - @include flex-center; + &.stepNumber { + @include font("base", "xxs", "700"); } + } - .title { - color: var(--theme-color-text-base-caption); - @include font("base", "sm", "500"); + .stepIcon { + .icon & { + font-size: var(--base-sizing-28x); } - - &.clickable .stepHeader { - cursor: pointer; + .number & { + font-size: var(--base-sizing-16x); } + } - &.upcoming.clickable:hover .stepIndicator { - background-color: var(--theme-color-surface-base-base6); - } + .dotStatusIcon { + pointer-events: none; + font-size: var(--base-sizing-22x); + width: var(--base-sizing-12x); + height: var(--base-sizing-12x); + @include flex-center; + } - &.error { - .stepIndicator { - background-color: var(--theme-color-surface-danger-default); - } - .title, - .dotStatusIcon { - color: var(--theme-color-text-danger-default); - } - } + .title { + color: var(--theme-color-text-base-caption); + @include font("base", "sm", "500"); + } - &.disabled { - pointer-events: none; - .title, - .dotStatusIcon { - color: var(--theme-color-text-base-caption); - } - .stepIndicator { - background-color: var(--theme-color-surface-base-base7); - color: var(--theme-color-text-base-global-light); - } - } + &.clickable .stepHeader { + cursor: pointer; } - .vertical { - display: grid; - row-gap: var(--base-sizing-8x); + &.upcoming.clickable:hover .stepIndicator { + background-color: var(--theme-color-surface-base-base6); + } - .stepList { - grid-row: 2; - flex-direction: column; + &.error { + .stepIndicator { + background-color: var(--theme-color-surface-danger-default); } - - .stepItem { - flex-direction: column; - - &:not(:last-child)::after { - display: block; - content: ""; - box-sizing: content-box; - margin: var(--base-sizing-8x) 0; - width: 50%; - height: var(--base-sizing-80x); - top: 100%; - border-right: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - } + .title, + .dotStatusIcon { + color: var(--theme-color-text-danger-default); } + } - .stepCount { - text-align: center; + &.disabled { + pointer-events: none; + .title, + .dotStatusIcon { + color: var(--theme-color-text-base-caption); } - - .stepContent { - grid-row: 2; + .stepIndicator { + background-color: var(--theme-color-surface-base-base7); + color: var(--theme-color-text-base-global-light); } } +} - .horizontal { - display: flex; +.vertical { + display: grid; + row-gap: var(--base-sizing-8x); + + .stepList { + grid-row: 2; flex-direction: column; - width: fit-content; + } - .stepItem:not(:last-child)::after { + .stepItem { + flex-direction: column; + + &:not(:last-child)::after { + display: block; content: ""; box-sizing: content-box; - margin: 0 var(--base-sizing-8x); - height: 50%; - width: var(--base-sizing-80x); - left: 100%; - border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + margin: var(--base-sizing-8x) 0; + width: 50%; + height: var(--base-sizing-80x); + top: 100%; + border-right: solid var(--base-sizing-1x) var(--theme-color-border-light-default); } + } - .stepCount { - align-self: flex-end; - } + .stepCount { + text-align: center; } - @each $type, $size in $types { - .#{$type} { - .stepIndicator { - width: $size; - height: $size; - } + .stepContent { + grid-row: 2; + } +} + +.horizontal { + display: flex; + flex-direction: column; + width: fit-content; + + .stepItem:not(:last-child)::after { + content: ""; + box-sizing: content-box; + margin: 0 var(--base-sizing-8x); + height: 50%; + width: var(--base-sizing-80x); + left: 100%; + border-bottom: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + } + + .stepCount { + align-self: flex-end; + } +} + +@each $type, $size in $types { + .#{$type} { + .stepIndicator { + width: $size; + height: $size; } } +} + +@each $variant in $variants { + .count-#{$variant} .stepCountActive { + color: var(--theme-color-text-#{$variant}-default); + } - @each $variant in $variants { - .count-#{$variant} .stepCountActive { + .#{$variant}.stepItem:not(.error, .disabled) { + .dotStatusIcon { color: var(--theme-color-text-#{$variant}-default); } - .#{$variant}.stepItem:not(.error, .disabled) { - .dotStatusIcon { - color: var(--theme-color-text-#{$variant}-default); + &.active { + .title { + color: var(--theme-color-text-#{$variant}-active); } - - &.active { - .title { - color: var(--theme-color-text-#{$variant}-active); - } - .stepIndicator { - background-color: var(--theme-color-surface-#{$variant}-active); - outline: var(--base-sizing-4x) solid var(--theme-color-border-#{$variant}-focus, var(--theme-color-border-#{$variant}-disabled)); - } + .stepIndicator { + background-color: var(--theme-color-surface-#{$variant}-active); + outline: var(--base-sizing-4x) solid var(--theme-color-border-#{$variant}-focus, var(--theme-color-border-#{$variant}-disabled)); } + } - &.completed { + &.completed { + .title { + color: if($variant == "secondary", var(--theme-color-text-#{$variant}-hover), var(--theme-color-text-#{$variant}-default)); + } + .stepIndicator { + background-color: var(--theme-color-surface-#{$variant}-default); + } + &.clickable .stepHeader:hover { .title { - color: if($variant == "secondary", var(--theme-color-text-#{$variant}-hover), var(--theme-color-text-#{$variant}-default)); + color: var(--theme-color-text-#{$variant}-hover); } .stepIndicator { - background-color: var(--theme-color-surface-#{$variant}-default); - } - &.clickable .stepHeader:hover { - .title { - color: var(--theme-color-text-#{$variant}-hover); - } - .stepIndicator { - background-color: var(--theme-color-surface-#{$variant}-hover); - } + background-color: var(--theme-color-surface-#{$variant}-hover); } + } - &:not(:last-child)::after { - border-color: var(--theme-color-border-#{$variant}-default); - } + &:not(:last-child)::after { + border-color: var(--theme-color-border-#{$variant}-default); } } } diff --git a/src/lib/components/Switch/Switch.module.scss b/src/lib/components/Switch/Switch.module.scss index b56485d..5b92873 100644 --- a/src/lib/components/Switch/Switch.module.scss +++ b/src/lib/components/Switch/Switch.module.scss @@ -8,71 +8,69 @@ $sizes: ( ("lg", "24x", "24x", "12x", "10x") ); -@layer motif-ui { - .Root { - display: flex; - align-items: flex-start; - input[type="checkbox"] { - display: none; - } +.Root { + display: flex; + align-items: flex-start; + input[type="checkbox"] { + display: none; } +} - .slider { - display: flex; - border-radius: var(--theme-sizing-radius-round); - background: var(--theme-color-surface-base-base7); - cursor: pointer; - @include transition(background-color); +.slider { + display: flex; + border-radius: var(--theme-sizing-radius-round); + background: var(--theme-color-surface-base-base7); + cursor: pointer; + @include transition(background-color); - &::before { - content: ""; - background: var(--theme-color-surface-base-bg-light); - border-radius: 50%; - @include transition(transform); - } - .checked & { - background: var(--theme-color-surface-primary-default); - } + &::before { + content: ""; + background: var(--theme-color-surface-base-bg-light); + border-radius: 50%; + @include transition(transform); + } + .checked & { + background: var(--theme-color-surface-primary-default); } +} + +.label { + color: var(--theme-color-text-base-title-light); +} +.disabled { + cursor: default; + pointer-events: none; + + &.checked .slider { + background: var(--theme-color-surface-primary-disabled); + } + .slider { + background: var(--theme-color-surface-base-base5); + } .label { - color: var(--theme-color-text-base-title-light); + color: var(--theme-color-text-base-disabled); } +} +@each $size, $paddingH, $circleSize, $gap, $paddingV in $sizes { + .#{$size} { + gap: var(--base-sizing-#{$gap}); - .disabled { - cursor: default; - pointer-events: none; - - &.checked .slider { - background: var(--theme-color-surface-primary-disabled); + .label { + @include font("base", $size, "500"); } .slider { - background: var(--theme-color-surface-base-base5); + padding: var(--base-sizing-2x) var(--base-sizing-#{$paddingH}) var(--base-sizing-2x) var(--base-sizing-2x); + &::before { + width: var(--base-sizing-#{$circleSize}); + height: var(--base-sizing-#{$circleSize}); + } } - .label { - color: var(--theme-color-text-base-disabled); + &.checked .slider::before { + transform: translateX(calc(var(--base-sizing-#{$paddingH}) - var(--base-sizing-2x))); } - } - @each $size, $paddingH, $circleSize, $gap, $paddingV in $sizes { - .#{$size} { - gap: var(--base-sizing-#{$gap}); - - .label { - @include font("base", $size, "500"); - } - .slider { - padding: var(--base-sizing-2x) var(--base-sizing-#{$paddingH}) var(--base-sizing-2x) var(--base-sizing-2x); - &::before { - width: var(--base-sizing-#{$circleSize}); - height: var(--base-sizing-#{$circleSize}); - } - } - &.checked .slider::before { - transform: translateX(calc(var(--base-sizing-#{$paddingH}) - var(--base-sizing-2x))); - } - &.inFormField { - padding: var(--base-sizing-#{$paddingV}) 0; - } + &.inFormField { + padding: var(--base-sizing-#{$paddingV}) 0; } } } diff --git a/src/lib/components/Tab/Tab.module.scss b/src/lib/components/Tab/Tab.module.scss index 36e262f..e1cc597 100644 --- a/src/lib/components/Tab/Tab.module.scss +++ b/src/lib/components/Tab/Tab.module.scss @@ -7,105 +7,103 @@ } } -@layer motif-ui { - .Root { - display: flex; - flex-direction: column; - } +.Root { + display: flex; + flex-direction: column; +} - .tabHeader { - padding-bottom: var(--base-sizing-8x); - display: flex; - } +.tabHeader { + padding-bottom: var(--base-sizing-8x); + display: flex; +} - .left { - align-items: flex-start; - } - .center { - align-items: center; +.left { + align-items: flex-start; +} +.center { + align-items: center; +} +.right { + align-items: flex-end; +} +.fill .tabHeader { + min-width: 0; + flex-wrap: wrap; + .tabItem { + flex: 1; } - .right { - align-items: flex-end; +} + +.solid .tabHeader { + gap: var(--base-sizing-4x); +} + +// ============================================================================= +// Sub Component: TabItem +// ============================================================================= +.tabItem { + appearance: none; + display: inline-flex; + align-items: center; + justify-content: center; + border: none; + gap: var(--base-sizing-10x); + user-select: none; + white-space: nowrap; + padding: var(--base-sizing-10x) var(--base-sizing-20x); + border-bottom: solid var(--base-sizing-2x) var(--theme-color-surface-base-base6); + cursor: pointer; + + &:disabled, + &.active { + pointer-events: none; + cursor: default; } - .fill .tabHeader { - min-width: 0; - flex-wrap: wrap; - .tabItem { - flex: 1; - } + + .tabItem-title { + @include font; } - .solid .tabHeader { - gap: var(--base-sizing-4x); + @include focus-ring; + @include transition(border-color background-color); + * { + @include transition(color); } - // ============================================================================= - // Sub Component: TabItem - // ============================================================================= - .tabItem { - appearance: none; - display: inline-flex; - align-items: center; - justify-content: center; - border: none; - gap: var(--base-sizing-10x); - user-select: none; - white-space: nowrap; - padding: var(--base-sizing-10x) var(--base-sizing-20x); - border-bottom: solid var(--base-sizing-2x) var(--theme-color-surface-base-base6); - cursor: pointer; + .solid & { + @include color-span-and-icon(--theme-color-text-light-default); + background: var(--theme-color-surface-light-default); + border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; + box-sizing: border-box; - &:disabled, - &.active { - pointer-events: none; - cursor: default; + &:hover { + @include color-span-and-icon(--theme-color-text-primary-default); + border-color: var(--theme-color-border-primary-default); } - - .tabItem-title { - @include font; + &.active { + @include color-span-and-icon(--theme-color-text-base-global-light); + background-color: var(--theme-color-surface-primary-default); + border: none; } - - @include focus-ring; - @include transition(border-color background-color); - * { - @include transition(color); + &:disabled { + @include color-span-and-icon(--theme-color-text-light-disabled); } + } - .solid & { - @include color-span-and-icon(--theme-color-text-light-default); - background: var(--theme-color-surface-light-default); - border-radius: var(--theme-sizing-radius-default) var(--theme-sizing-radius-default) 0 0; - box-sizing: border-box; + .underline & { + background: var(--theme-color-surface-base-bg-light); + @include color-span-and-icon(--theme-color-text-base-subtitle-light); - &:hover { - @include color-span-and-icon(--theme-color-text-primary-default); - border-color: var(--theme-color-border-primary-default); - } - &.active { - @include color-span-and-icon(--theme-color-text-base-global-light); - background-color: var(--theme-color-surface-primary-default); - border: none; - } - &:disabled { - @include color-span-and-icon(--theme-color-text-light-disabled); - } + &:hover { + @include color-span-and-icon(--theme-color-text-base-title-light); + border-bottom-color: var(--theme-color-border-light-hover); } - - .underline & { - background: var(--theme-color-surface-base-bg-light); - @include color-span-and-icon(--theme-color-text-base-subtitle-light); - - &:hover { - @include color-span-and-icon(--theme-color-text-base-title-light); - border-bottom-color: var(--theme-color-border-light-hover); - } - &.active { - @include color-span-and-icon(--theme-color-text-primary-default); - border-bottom-color: var(--theme-color-border-primary-default); - } - &:disabled { - @include color-span-and-icon(--theme-color-text-light-disabled); - } + &.active { + @include color-span-and-icon(--theme-color-text-primary-default); + border-bottom-color: var(--theme-color-border-primary-default); + } + &:disabled { + @include color-span-and-icon(--theme-color-text-light-disabled); } } } diff --git a/src/lib/components/Table/Table.module.scss b/src/lib/components/Table/Table.module.scss index a0d0567..8783524 100644 --- a/src/lib/components/Table/Table.module.scss +++ b/src/lib/components/Table/Table.module.scss @@ -2,288 +2,286 @@ $row-color-variants: "primary", "secondary", "light", "success", "danger", "warning", "info"; -@layer motif-ui { - .Root { - display: table; - &.distributeColsEvenly table { - table-layout: fixed; - } - &.fluid { - &, - table { - width: 100%; - } - } - +.Root { + display: table; + &.distributeColsEvenly table { + table-layout: fixed; + } + &.fluid { + &, table { - text-align: left; - border-spacing: 0; + width: 100%; } + } - thead, - tfoot { - &.transparent { - background-color: transparent; - } - &.solid { - background-color: var(--theme-color-surface-light-default); - } - &.opposite { - background-color: var(--theme-color-surface-secondary-default); - th { + table { + text-align: left; + border-spacing: 0; + } + + thead, + tfoot { + &.transparent { + background-color: transparent; + } + &.solid { + background-color: var(--theme-color-surface-light-default); + } + &.opposite { + background-color: var(--theme-color-surface-secondary-default); + th { + color: var(--theme-color-text-base-global-light); + .thContent .sortButton { color: var(--theme-color-text-base-global-light); - .thContent .sortButton { - color: var(--theme-color-text-base-global-light); - } } } } + } - thead { - tr.trColumnFilters th { - padding: var(--base-sizing-8x); - .thFilterContent { - display: flex; - flex-direction: column; - } + thead { + tr.trColumnFilters th { + padding: var(--base-sizing-8x); + .thFilterContent { + display: flex; + flex-direction: column; } + } - th { - color: var(--theme-color-text-base-title); - @include font("base", "sm", "700"); - overflow: hidden; + th { + color: var(--theme-color-text-base-title); + @include font("base", "sm", "700"); + overflow: hidden; - .thContent { - display: inline-flex; - gap: var(--base-sizing-8x); + .thContent { + display: inline-flex; + gap: var(--base-sizing-8x); - .sortButton { - color: var(--theme-color-text-base-title); - } + .sortButton { + color: var(--theme-color-text-base-title); } } } + } - tbody { - td { - color: var(--theme-color-text-base-title); - @include font("body", "sm"); - overflow-wrap: break-word; - word-break: break-all; - hyphens: auto; - } - &.striped { - tr:nth-child(even) { - background-color: var(--theme-color-surface-base-base2); - } + tbody { + td { + color: var(--theme-color-text-base-title); + @include font("body", "sm"); + overflow-wrap: break-word; + word-break: break-all; + hyphens: auto; + } + &.striped { + tr:nth-child(even) { + background-color: var(--theme-color-surface-base-base2); } + } - tr.selected { - @include transition(background-color); - background-color: var(--theme-color-surface-primary-negative); - } + tr.selected { + @include transition(background-color); + background-color: var(--theme-color-surface-primary-negative); } + } - tr { - &.loading, - &.emptyData { - pointer-events: none; - } - &.headerRow th { - padding: 0; - } + tr { + &.loading, + &.emptyData { + pointer-events: none; } + &.headerRow th { + padding: 0; + } + } - td, - th { - padding: var(--base-sizing-12x) var(--base-sizing-8x); + td, + th { + padding: var(--base-sizing-12x) var(--base-sizing-8x); - &.selectable { - text-align: center; - width: var(--base-sizing-32x); - } + &.selectable { + text-align: center; + width: var(--base-sizing-32x); } + } - tfoot { - th { - color: var(--theme-color-text-base-title); - @include font("base", "sm", "700"); - overflow: hidden; + tfoot { + th { + color: var(--theme-color-text-base-title); + @include font("base", "sm", "700"); + overflow: hidden; - &.customFooter { - padding: 0; - } + &.customFooter { + padding: 0; + } - &[colspan] { - text-align: right; - } + &[colspan] { + text-align: right; } } + } - &.hoverable tbody tr:hover { - background-color: var(--theme-color-surface-light-default); - } + &.hoverable tbody tr:hover { + background-color: var(--theme-color-surface-light-default); } +} - @each $variant in $row-color-variants { - .#{$variant} { - background-color: var(--theme-color-surface-#{$variant}-negative); - } +@each $variant in $row-color-variants { + .#{$variant} { + background-color: var(--theme-color-surface-#{$variant}-negative); } +} - .bordered { - &.cellBorders { - td, - th { - border-color: var(--theme-color-border-light-default); - border-style: solid; - border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) 0; - &:first-child { - border-left-width: var(--base-sizing-1x); - } +.bordered { + &.cellBorders { + td, + th { + border-color: var(--theme-color-border-light-default); + border-style: solid; + border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) 0; + &:first-child { + border-left-width: var(--base-sizing-1x); } + } - tbody tr:first-child td { + tbody tr:first-child td { + border-top-left-radius: var(--theme-sizing-radius-default); + border-top-right-radius: var(--theme-sizing-radius-default); + border-top-width: var(--base-sizing-1x); + } + thead tr:first-child th { + border-top-width: var(--base-sizing-1x); + &:first-child { border-top-left-radius: var(--theme-sizing-radius-default); - border-top-right-radius: var(--theme-sizing-radius-default); - border-top-width: var(--base-sizing-1x); } - thead tr:first-child th { - border-top-width: var(--base-sizing-1x); - &:first-child { - border-top-left-radius: var(--theme-sizing-radius-default); - } - &:last-child { - border-top-right-radius: var(--theme-sizing-radius-default); - } + &:last-child { + border-top-right-radius: var(--theme-sizing-radius-default); } + } - tbody:not(:has(+ tfoot)) tr:last-child td, - tfoot tr:last-child th { - &:first-child { - border-bottom-left-radius: var(--theme-sizing-radius-default); - } - &:last-child { - border-bottom-right-radius: var(--theme-sizing-radius-default); - } + tbody:not(:has(+ tfoot)) tr:last-child td, + tfoot tr:last-child th { + &:first-child { + border-bottom-left-radius: var(--theme-sizing-radius-default); } - - // custom footer - tfoot tr:nth-child(2) th { - padding: 0; + &:last-child { + border-bottom-right-radius: var(--theme-sizing-radius-default); } + } - thead + tbody tr:first-child td { - border-top-left-radius: 0; - border-top-right-radius: 0; - border-top-width: 0; - } + // custom footer + tfoot tr:nth-child(2) th { + padding: 0; + } - // Body with footer - tbody:has(+ tfoot) { - tr:last-child td { - border-radius: 0; - } - } + thead + tbody tr:first-child td { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-top-width: 0; + } - thead, - tfoot { - &.opposite { - th { - border-top-color: var(--theme-color-surface-secondary-default); - &:first-child { - border-left-color: var(--theme-color-surface-secondary-default); - } - &:last-child { - border-right-color: var(--theme-color-surface-secondary-default); - } - } - } + // Body with footer + tbody:has(+ tfoot) { + tr:last-child td { + border-radius: 0; } } - &.rowBorders { - table { - border-collapse: collapse; - } - tr { - border-bottom: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - &:first-child { - border-top: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + thead, + tfoot { + &.opposite { + th { + border-top-color: var(--theme-color-surface-secondary-default); + &:first-child { + border-left-color: var(--theme-color-surface-secondary-default); + } + &:last-child { + border-right-color: var(--theme-color-surface-secondary-default); + } } } } } - .titleSection { - margin-bottom: var(--base-sizing-8x); - span { - display: block; - padding: var(--base-sizing-4x) var(--base-sizing-8x); + &.rowBorders { + table { + border-collapse: collapse; + } + tr { + border-bottom: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + &:first-child { + border-top: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + } } } +} - .title { - color: var(--theme-color-text-base-title); - @include font("base", "lg", "600"); +.titleSection { + margin-bottom: var(--base-sizing-8x); + span { + display: block; + padding: var(--base-sizing-4x) var(--base-sizing-8x); } +} - .subtitle { - color: var(--theme-color-text-base-subtitle); - @include font("base", "md", "500"); - } +.title { + color: var(--theme-color-text-base-title); + @include font("base", "lg", "600"); +} - .headerRowContent { - display: flex; - gap: var(--base-sizing-8x); - align-items: center; - } +.subtitle { + color: var(--theme-color-text-base-subtitle); + @include font("base", "md", "500"); +} - .header { - flex: 1; - padding: var(--base-sizing-10x) var(--base-sizing-8x); - @include font("base", "lg", "600"); - } +.headerRowContent { + display: flex; + gap: var(--base-sizing-8x); + align-items: center; +} - .filterInput { - flex-shrink: 0; - margin: var(--base-sizing-8x) var(--base-sizing-8x) var(--base-sizing-8x) auto; - } +.header { + flex: 1; + padding: var(--base-sizing-10x) var(--base-sizing-8x); + @include font("base", "lg", "600"); +} - .footerForNumbers { - padding: var(--base-sizing-8x) var(--base-sizing-12x); - align-items: center; - display: flex; +.filterInput { + flex-shrink: 0; + margin: var(--base-sizing-8x) var(--base-sizing-8x) var(--base-sizing-8x) auto; +} - &.hasPagination-center { - justify-content: center; - } - &.hasPagination-right { - justify-content: flex-end; - } +.footerForNumbers { + padding: var(--base-sizing-8x) var(--base-sizing-12x); + align-items: center; + display: flex; - &.hasNumbers { - &.hasPagination-left { - flex-direction: row-reverse; - justify-content: space-between; - } - &.hasPagination-center { - .totalRecordsLabel { - flex: 1; - } - } - &.hasPagination-right { - justify-content: space-between; + &.hasPagination-center { + justify-content: center; + } + &.hasPagination-right { + justify-content: flex-end; + } + + &.hasNumbers { + &.hasPagination-left { + flex-direction: row-reverse; + justify-content: space-between; + } + &.hasPagination-center { + .totalRecordsLabel { + flex: 1; } } - - .totalRecordsLabel { - color: var(--theme-color-text-base-title); - @include font("body", "sm"); + &.hasPagination-right { + justify-content: space-between; } } - .pagination { - display: flex; + .totalRecordsLabel { + color: var(--theme-color-text-base-title); + @include font("body", "sm"); } } + +.pagination { + display: flex; +} diff --git a/src/lib/components/Text/Text.module.scss b/src/lib/components/Text/Text.module.scss index e4b89a7..38aba99 100644 --- a/src/lib/components/Text/Text.module.scss +++ b/src/lib/components/Text/Text.module.scss @@ -20,27 +20,25 @@ $sizes: ( ("p3", "14x", "20x", 400, 0.9) ); -@layer motif-ui { - @each $type, $fontSize, $lineHeight, $fontWeight, $marginEnd in $sizes { - .#{$type} { - all: unset; - font-size: var(--base-sizing-#{$fontSize}); - line-height: var(--base-sizing-#{$lineHeight}); - font-weight: $fontWeight; - margin-top: $marginEnd + em; - margin-bottom: $marginEnd + em; - } +@each $type, $fontSize, $lineHeight, $fontWeight, $marginEnd in $sizes { + .#{$type} { + all: unset; + font-size: var(--base-sizing-#{$fontSize}); + line-height: var(--base-sizing-#{$lineHeight}); + font-weight: $fontWeight; + margin-top: $marginEnd + em; + margin-bottom: $marginEnd + em; } +} - .Root { - display: inline-block; - } +.Root { + display: inline-block; +} - .italic { - font-style: italic; - } +.italic { + font-style: italic; +} - .underline { - text-decoration: underline; - } +.underline { + text-decoration: underline; } diff --git a/src/lib/components/Textarea/Textarea.module.scss b/src/lib/components/Textarea/Textarea.module.scss index 9bcae20..24177cb 100644 --- a/src/lib/components/Textarea/Textarea.module.scss +++ b/src/lib/components/Textarea/Textarea.module.scss @@ -8,84 +8,82 @@ $sizes: ( ("lg", "10x", "20x", "sm") ); -@layer motif-ui { - .Root { - display: inline-flex; - flex-direction: column; - } +.Root { + display: inline-flex; + flex-direction: column; +} - .inFormField { - min-width: var(--base-sizing-190x); - } +.inFormField { + min-width: var(--base-sizing-190x); +} - .disabled { - .textArea, - .counterArea { - color: var(--theme-color-text-base-disabled); - border-color: var(--theme-color-border-light-disabled); - background-color: var(--theme-color-surface-base-base1); - } +.disabled { + .textArea, + .counterArea { + color: var(--theme-color-text-base-disabled); + border-color: var(--theme-color-border-light-disabled); + background-color: var(--theme-color-surface-base-base1); } +} - .textArea { - @include transition(border-color); - color: var(--theme-color-text-base-title); - background-color: var(--theme-color-surface-base-bg-light); - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - outline: none; - resize: none; - margin: 0; +.textArea { + @include transition(border-color); + color: var(--theme-color-text-base-title); + background-color: var(--theme-color-surface-base-bg-light); + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + outline: none; + resize: none; + margin: 0; - &::placeholder { - color: var(--theme-color-text-base-caption); - } - &:focus { - border-color: var(--theme-color-border-primary-default); - } - .hasCounter & { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - } - .success & { - border-color: var(--theme-color-border-success-default); - } - .error & { - border-color: var(--theme-color-border-danger-default); - } + &::placeholder { + color: var(--theme-color-text-base-caption); } + &:focus { + border-color: var(--theme-color-border-primary-default); + } + .hasCounter & { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + } + .success & { + border-color: var(--theme-color-border-success-default); + } + .error & { + border-color: var(--theme-color-border-danger-default); + } +} - .counterArea { - display: flex; - justify-content: flex-end; - align-items: center; - border-style: solid; - border-color: var(--theme-color-border-light-default); - border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) var(--base-sizing-1x); - border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); - color: var(--theme-color-text-base-caption); - background-color: var(--theme-color-surface-base-bg-light); +.counterArea { + display: flex; + justify-content: flex-end; + align-items: center; + border-style: solid; + border-color: var(--theme-color-border-light-default); + border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) var(--base-sizing-1x); + border-radius: 0 0 var(--theme-sizing-radius-default) var(--theme-sizing-radius-default); + color: var(--theme-color-text-base-caption); + background-color: var(--theme-color-surface-base-bg-light); - .success & { - color: var(--theme-color-text-success-default); - border-color: var(--theme-color-border-success-default); - } - .error & { - color: var(--theme-color-text-danger-default); - border-color: var(--theme-color-border-danger-default); - } + .success & { + color: var(--theme-color-text-success-default); + border-color: var(--theme-color-border-success-default); + } + .error & { + color: var(--theme-color-text-danger-default); + border-color: var(--theme-color-border-danger-default); } +} - @each $size, $paddingV, $paddingH, $counterSize in $sizes { - .#{$size} { - .textArea { - @include font("body", $size); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - } - .counterArea { - @include font("body", $counterSize); - padding-right: var(--base-sizing-#{$paddingV}); - } +@each $size, $paddingV, $paddingH, $counterSize in $sizes { + .#{$size} { + .textArea { + @include font("body", $size); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + } + .counterArea { + @include font("body", $counterSize); + padding-right: var(--base-sizing-#{$paddingV}); } } } diff --git a/src/lib/components/TimePicker/TimePicker.module.scss b/src/lib/components/TimePicker/TimePicker.module.scss index 218154a..e824e5a 100644 --- a/src/lib/components/TimePicker/TimePicker.module.scss +++ b/src/lib/components/TimePicker/TimePicker.module.scss @@ -11,117 +11,115 @@ $sizes: ( ("lg", "heading2", "8x", "16x", "56x", "40x", "4x", "6x", "12x", "12x", "24x") ); -@layer motif-ui { - .timeLabel { - color: var(--theme-color-text-primary-default); - text-align: center; - } +.timeLabel { + color: var(--theme-color-text-primary-default); + text-align: center; +} - .periodSelector { - display: flex; - justify-content: center; - border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); - button { - border: none; - border-radius: var(--theme-sizing-radius-default); - cursor: pointer; - user-select: none; - background: none; +.periodSelector { + display: flex; + justify-content: center; + border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-disabled); + button { + border: none; + border-radius: var(--theme-sizing-radius-default); + cursor: pointer; + user-select: none; + background: none; + color: var(--theme-color-text-light-disabled); + @include transition(color, "fast"); + + &:disabled { color: var(--theme-color-text-light-disabled); - @include transition(color, "fast"); - - &:disabled { - color: var(--theme-color-text-light-disabled); - } - &.selected { - color: var(--theme-color-text-primary-default); - } + } + &.selected { + color: var(--theme-color-text-primary-default); } } +} - .stripeContainer { - display: flex; - justify-content: center; +.stripeContainer { + display: flex; + justify-content: center; - .timeStripe { - margin: 0; - list-style: none; - display: flex; - flex-direction: column; - overflow-y: auto; + .timeStripe { + margin: 0; + list-style: none; + display: flex; + flex-direction: column; + overflow-y: auto; - @include hidden-scrollbar; - } + @include hidden-scrollbar; + } - button { - border: none; - color: var(--theme-color-text-base-subtitle); - background-color: var(--theme-color-surface-base-global-light); - border-radius: var(--base-radius-sm); - cursor: pointer; - @include transition(background-color, "fast"); + button { + border: none; + color: var(--theme-color-text-base-subtitle); + background-color: var(--theme-color-surface-base-global-light); + border-radius: var(--base-radius-sm); + cursor: pointer; + @include transition(background-color, "fast"); - &:hover { - background-color: var(--theme-color-surface-base-base1); - } - &.selected { - background-color: var(--theme-color-surface-primary-default); - color: var(--theme-color-text-base-global-light); - } + &:hover { + background-color: var(--theme-color-surface-base-base1); + } + &.selected { + background-color: var(--theme-color-surface-primary-default); + color: var(--theme-color-text-base-global-light); } } +} - .abbrContainer { - display: flex; - justify-content: center; - background: var(--theme-color-surface-base-base1); +.abbrContainer { + display: flex; + justify-content: center; + background: var(--theme-color-surface-base-base1); - span { - text-align: center; - color: var(--theme-color-text-base-caption); - } + span { + text-align: center; + color: var(--theme-color-text-base-caption); } +} - @each $size, $labelFontSize, $timePeriodPaddingV, $timePeriodPaddingH, $numberWidth, $numberHeight, $numberGap, $stripePaddingV, $stripePaddingH, $periodGapH, $abbrGap in $sizes { - .#{$size} { - .timeLabel { - @include font("heading", $labelFontSize); - margin-bottom: map.get(pickerValues.$size, $size, "gapV"); - } +@each $size, $labelFontSize, $timePeriodPaddingV, $timePeriodPaddingH, $numberWidth, $numberHeight, $numberGap, $stripePaddingV, $stripePaddingH, $periodGapH, $abbrGap in $sizes { + .#{$size} { + .timeLabel { + @include font("heading", $labelFontSize); + margin-bottom: map.get(pickerValues.$size, $size, "gapV"); + } - .periodSelector { - padding: map.get(pickerValues.$size, $size, "gapV") 0; - gap: var(--base-sizing-#{$periodGapH}); + .periodSelector { + padding: map.get(pickerValues.$size, $size, "gapV") 0; + gap: var(--base-sizing-#{$periodGapH}); - button { - padding: var(--base-sizing-#{$timePeriodPaddingV}) var(--base-sizing-#{$timePeriodPaddingH}); - @include font("base", $size, "600"); - } + button { + padding: var(--base-sizing-#{$timePeriodPaddingV}) var(--base-sizing-#{$timePeriodPaddingH}); + @include font("base", $size, "600"); } + } - .stripeContainer { - max-height: calc(((var(--base-sizing-#{$numberGap}) + var(--base-sizing-#{$numberHeight})) * $items-to-show) + var(--base-sizing-#{$numberHeight}) * 0.7); - } + .stripeContainer { + max-height: calc(((var(--base-sizing-#{$numberGap}) + var(--base-sizing-#{$numberHeight})) * $items-to-show) + var(--base-sizing-#{$numberHeight}) * 0.7); + } - .abbrContainer { - padding: map.get(pickerValues.$size, $size, "gapV") 0; - gap: var(--base-sizing-#{$abbrGap}); + .abbrContainer { + padding: map.get(pickerValues.$size, $size, "gapV") 0; + gap: var(--base-sizing-#{$abbrGap}); - span { - width: var(--base-sizing-#{$numberWidth}); - @include font("base", $size, "500"); - } + span { + width: var(--base-sizing-#{$numberWidth}); + @include font("base", $size, "500"); } + } - .timeStripe { - gap: var(--base-sizing-#{$numberGap}); - padding: var(--base-sizing-#{$stripePaddingV}) var(--base-sizing-#{$stripePaddingH}); + .timeStripe { + gap: var(--base-sizing-#{$numberGap}); + padding: var(--base-sizing-#{$stripePaddingV}) var(--base-sizing-#{$stripePaddingH}); - button { - width: var(--base-sizing-#{$numberWidth}); - height: var(--base-sizing-#{$numberHeight}); - @include font("base", $size, "700"); - } + button { + width: var(--base-sizing-#{$numberWidth}); + height: var(--base-sizing-#{$numberHeight}); + @include font("base", $size, "700"); } } } diff --git a/src/lib/components/Timeline/Timeline.module.scss b/src/lib/components/Timeline/Timeline.module.scss index 38772b6..8f4ba36 100644 --- a/src/lib/components/Timeline/Timeline.module.scss +++ b/src/lib/components/Timeline/Timeline.module.scss @@ -55,258 +55,256 @@ $variants: ( } } -@layer motif-ui { - .Root { - display: flex; - } +.Root { + display: flex; +} - .item { - display: flex; - gap: var(--base-sizing-8x); - } +.item { + display: flex; + gap: var(--base-sizing-8x); +} - .section { - display: flex; - flex-direction: column; - gap: var(--base-sizing-4x); - color: var(--theme-color-text-base-subtitle); +.section { + display: flex; + flex-direction: column; + gap: var(--base-sizing-4x); + color: var(--theme-color-text-base-subtitle); +} + +.title { + @include font("base", "lg", "600"); +} + +.content { + @include font("body", "md"); +} + +.marker { + display: flex; + align-items: center; + + > * { + display: block; + border-radius: var(--theme-sizing-radius-round); } - .title { - @include font("base", "lg", "600"); + .outlined & span { + border-width: var(--base-sizing-2x); + border-style: solid; } - .content { - @include font("body", "md"); + .markerDot { + width: var(--base-sizing-12x); + height: var(--base-sizing-12x); + } + .markerNumber { + width: var(--base-sizing-24x); + height: var(--base-sizing-24x); + @include font("base", "xxs", "700"); + @include flex-center; } + .markerIcon { + width: var(--base-sizing-40x); + height: var(--base-sizing-40x); + font-size: var(--base-sizing-24x); + @include flex-center; + } +} +.vertical { + &, .marker { - display: flex; - align-items: center; - - > * { - display: block; - border-radius: var(--theme-sizing-radius-round); - } + flex-direction: column; + } - .outlined & span { - border-width: var(--base-sizing-2x); - border-style: solid; - } + .item { + padding-left: var(--base-sizing-8x); + padding-right: var(--base-sizing-8x); + } - .markerDot { - width: var(--base-sizing-12x); - height: var(--base-sizing-12x); + &.before .item { + flex-direction: row-reverse; + text-align: right; + } + &.after .item { + flex-direction: row; + } + &.alternate .item { + display: grid; + grid-template-columns: 1fr auto 1fr; + .marker { + grid-column: 2; } - .markerNumber { - width: var(--base-sizing-24x); - height: var(--base-sizing-24x); - @include font("base", "xxs", "700"); - @include flex-center; + .section { + grid-column: 3; } - .markerIcon { - width: var(--base-sizing-40x); - height: var(--base-sizing-40x); - font-size: var(--base-sizing-24x); - @include flex-center; + &:nth-child(odd) { + grid-auto-flow: dense; + .section { + grid-column: 1; + text-align: right; + } } } - .vertical { - &, + &.start { .marker { - flex-direction: column; - } - - .item { - padding-left: var(--base-sizing-8x); - padding-right: var(--base-sizing-8x); - } - - &.before .item { - flex-direction: row-reverse; - text-align: right; - } - &.after .item { - flex-direction: row; - } - &.alternate .item { - display: grid; - grid-template-columns: 1fr auto 1fr; - .marker { - grid-column: 2; - } - .section { - grid-column: 3; + justify-content: flex-start; + &:has(.markerDot) ~ .section { + margin-top: calc(-1 * var(--base-sizing-6x)); } - &:nth-child(odd) { - grid-auto-flow: dense; - .section { - grid-column: 1; - text-align: right; - } + &:has(.markerIcon) ~ .section { + margin-top: var(--base-sizing-8x); } } - &.start { - .marker { + .item:not(:last-child) { + .section { justify-content: flex-start; - &:has(.markerDot) ~ .section { - margin-top: calc(-1 * var(--base-sizing-6x)); - } - &:has(.markerIcon) ~ .section { - margin-top: var(--base-sizing-8x); - } + padding-bottom: var(--base-sizing-24x); } - - .item:not(:last-child) { - .section { - justify-content: flex-start; - padding-bottom: var(--base-sizing-24x); - } - .marker::after { - @include connection-line("vertical"); - } + .marker::after { + @include connection-line("vertical"); } } - &.center .item { - .section { - justify-content: center; - padding-top: var(--base-sizing-12x); - padding-bottom: var(--base-sizing-12x); + } + &.center .item { + .section { + justify-content: center; + padding-top: var(--base-sizing-12x); + padding-bottom: var(--base-sizing-12x); + } + &:last-child .marker::after, + &:first-child .marker::before { + background-color: transparent; + } + .marker { + justify-content: center; + &::after, + &::before { + @include connection-line("vertical", "half"); } - &:last-child .marker::after, - &:first-child .marker::before { - background-color: transparent; + } + } + &.end { + .marker { + justify-content: flex-end; + &:has(.markerDot) ~ .section { + margin-bottom: calc(-1 * var(--base-sizing-4x)); } - .marker { - justify-content: center; - &::after, - &::before { - @include connection-line("vertical", "half"); - } + &:has(.markerIcon) ~ .section { + margin-bottom: var(--base-sizing-8x); } } - &.end { - .marker { + .item:not(:first-child) { + .section { justify-content: flex-end; - &:has(.markerDot) ~ .section { - margin-bottom: calc(-1 * var(--base-sizing-4x)); - } - &:has(.markerIcon) ~ .section { - margin-bottom: var(--base-sizing-8x); - } + padding-top: var(--base-sizing-24x); } - .item:not(:first-child) { - .section { - justify-content: flex-end; - padding-top: var(--base-sizing-24x); - } - .marker::before { - @include connection-line("vertical"); - } + .marker::before { + @include connection-line("vertical"); } } } +} - .horizontal { - &, - .marker { - flex-direction: row; - } - .item { - padding-top: var(--base-sizing-8x); - padding-bottom: var(--base-sizing-8x); - } - - &.before .item { - flex-direction: column-reverse; - } - &.after .item { - flex-direction: column; - } - &.alternate { - display: grid; - grid-template-rows: auto auto auto; +.horizontal { + &, + .marker { + flex-direction: row; + } + .item { + padding-top: var(--base-sizing-8x); + padding-bottom: var(--base-sizing-8x); + } - .item { - display: grid; - grid-row: 1 / -1; - /* stylelint-disable-next-line plugin/no-unsupported-browser-features */ - grid-template-rows: subgrid; + &.before .item { + flex-direction: column-reverse; + } + &.after .item { + flex-direction: column; + } + &.alternate { + display: grid; + grid-template-rows: auto auto auto; - .marker { - grid-row: 2; - } - .section { - grid-row: 3; - align-self: start; - } - &:nth-child(odd) .section { - grid-row: 1; - align-self: end; - } - } - } + .item { + display: grid; + grid-row: 1 / -1; + /* stylelint-disable-next-line plugin/no-unsupported-browser-features */ + grid-template-rows: subgrid; - &.start .item { .marker { - justify-content: flex-start; + grid-row: 2; } .section { - text-align: left; + grid-row: 3; + align-self: start; } - &:not(:last-child) { - .section { - padding-right: var(--base-sizing-24x); - } - .marker::after { - @include connection-line("horizontal"); - } + &:nth-child(odd) .section { + grid-row: 1; + align-self: end; } } - &.center .item { - .marker { - justify-content: center; - } + } + + &.start .item { + .marker { + justify-content: flex-start; + } + .section { + text-align: left; + } + &:not(:last-child) { .section { - text-align: center; - padding-left: var(--base-sizing-12x); - padding-right: var(--base-sizing-12x); + padding-right: var(--base-sizing-24x); } - &:last-child .marker::after, - &:first-child .marker::before { - background-color: transparent; - } - .marker::after, - .marker::before { - @include connection-line("horizontal", true); + .marker::after { + @include connection-line("horizontal"); } } - &.end .item { - .marker { - justify-content: flex-end; - } + } + &.center .item { + .marker { + justify-content: center; + } + .section { + text-align: center; + padding-left: var(--base-sizing-12x); + padding-right: var(--base-sizing-12x); + } + &:last-child .marker::after, + &:first-child .marker::before { + background-color: transparent; + } + .marker::after, + .marker::before { + @include connection-line("horizontal", true); + } + } + &.end .item { + .marker { + justify-content: flex-end; + } + .section { + text-align: right; + } + &:not(:first-child) { .section { - text-align: right; + padding-left: var(--base-sizing-24x); } - &:not(:first-child) { - .section { - padding-left: var(--base-sizing-24x); - } - .marker::before { - @include connection-line("horizontal"); - } + .marker::before { + @include connection-line("horizontal"); } } } +} - @each $variant, $fill-text-token in $variants { - .#{$variant} { - @include marker-variant($variant, $fill-text-token); - } - .item.#{$variant} { - @include marker-variant($variant, $fill-text-token, $self: true); - } +@each $variant, $fill-text-token in $variants { + .#{$variant} { + @include marker-variant($variant, $fill-text-token); + } + .item.#{$variant} { + @include marker-variant($variant, $fill-text-token, $self: true); } } diff --git a/src/lib/components/Toast/Toast.module.scss b/src/lib/components/Toast/Toast.module.scss index 2102853..6ecfc19 100644 --- a/src/lib/components/Toast/Toast.module.scss +++ b/src/lib/components/Toast/Toast.module.scss @@ -22,94 +22,92 @@ $animation-keyframes: ( ("slideOutBottom", translateY(0%), translateY(100%), 1, 0) ); -@layer motif-ui { - @each $animation, $transformZero, $transformHundred, $opacityZero, $opacityHundred in $animation-keyframes { - @keyframes #{$animation} { - 0% { - opacity: $opacityZero; - transform: $transformZero; - } - 100% { - opacity: $opacityHundred; - transform: $transformHundred; - } +@each $animation, $transformZero, $transformHundred, $opacityZero, $opacityHundred in $animation-keyframes { + @keyframes #{$animation} { + 0% { + opacity: $opacityZero; + transform: $transformZero; } - } - - .Root { - position: relative; - display: flex; - flex-wrap: nowrap; - @include width-or-width-below-screen-size(--theme-grid-breakpoint-sm, --base-sizing-256x, calc(100vw - var(--base-sizing-72x))); - padding: var(--base-sizing-10x) var(--base-sizing-20x); - gap: var(--base-sizing-10x); - border-radius: var(--theme-sizing-radius-default); - align-items: flex-start; - - .icon { - align-self: center; + 100% { + opacity: $opacityHundred; + transform: $transformHundred; } } +} - @each $color-type, $color in $color-types { - .#{$color-type} { - color: var(--theme-color-text-base-title); - background-color: var(--theme-color-surface-#{$color}-negative); - border-left-color: var(--theme-color-text-#{$color}-active); +.Root { + position: relative; + display: flex; + flex-wrap: nowrap; + @include width-or-width-below-screen-size(--theme-grid-breakpoint-sm, --base-sizing-256x, calc(100vw - var(--base-sizing-72x))); + padding: var(--base-sizing-10x) var(--base-sizing-20x); + gap: var(--base-sizing-10x); + border-radius: var(--theme-sizing-radius-default); + align-items: flex-start; - .title { - color: var(--theme-color-text-#{$color}-active); - } - } + .icon { + align-self: center; } +} - .contentContainer { - display: flex; - flex-direction: column; - gap: var(--base-sizing-4x); - flex-grow: 1; - max-height: 90vh; - overflow-y: scroll; - @include hidden-scrollbar; +@each $color-type, $color in $color-types { + .#{$color-type} { + color: var(--theme-color-text-base-title); + background-color: var(--theme-color-surface-#{$color}-negative); + border-left-color: var(--theme-color-text-#{$color}-active); - .content { - @include font("body", "md"); - } .title { - @include font("base", "lg", "600"); + color: var(--theme-color-text-#{$color}-active); } } +} - .progress { - position: absolute; - bottom: 0; - left: 0; - width: 100%; +.contentContainer { + display: flex; + flex-direction: column; + gap: var(--base-sizing-4x); + flex-grow: 1; + max-height: 90vh; + overflow-y: scroll; + @include hidden-scrollbar; + + .content { + @include font("body", "md"); + } + .title { + @include font("base", "lg", "600"); } +} + +.progress { + position: absolute; + bottom: 0; + left: 0; + width: 100%; +} - .Container { - display: flex; - flex-direction: column-reverse; - row-gap: var(--base-sizing-12x); - position: fixed; - z-index: 5; +.Container { + display: flex; + flex-direction: column-reverse; + row-gap: var(--base-sizing-12x); + position: fixed; + z-index: 5; - @each $position, $animationIn, $animationOut, $top, $right, $bottom, $left, $transform in $positions { - &.#{$position} { - /* stylelint-disable declaration-block-no-redundant-longhand-properties */ - top: $top; - right: $right; - bottom: $bottom; - left: $left; - /* stylelint-enable declaration-block-no-redundant-longhand-properties */ - transform: $transform; + @each $position, $animationIn, $animationOut, $top, $right, $bottom, $left, $transform in $positions { + &.#{$position} { + /* stylelint-disable declaration-block-no-redundant-longhand-properties */ + top: $top; + right: $right; + bottom: $bottom; + left: $left; + /* stylelint-enable declaration-block-no-redundant-longhand-properties */ + transform: $transform; - .Root:not(.closing) { - animation: $animationIn 0.3s ease-in-out forwards; - } - .Root.closing { - animation: $animationOut 0.3s ease-in-out forwards; - } + .Root:not(.closing) { + animation: $animationIn 0.3s ease-in-out forwards; + } + .Root.closing { + animation: $animationOut 0.3s ease-in-out forwards; } } } diff --git a/src/lib/components/Tooltip/Tooltip.module.scss b/src/lib/components/Tooltip/Tooltip.module.scss index e88c5dc..57e8c5b 100644 --- a/src/lib/components/Tooltip/Tooltip.module.scss +++ b/src/lib/components/Tooltip/Tooltip.module.scss @@ -15,103 +15,101 @@ $positions: ( ("bottomLeft", column, flex-start, 0deg, left top, top) ); -@layer motif-ui { - .Root { - @include pop-default(1); - position: absolute; - z-index: 1; - display: flex; - width: max-content; - text-wrap: auto; - will-change: transform; - box-sizing: border-box; +.Root { + @include pop-default(1); + position: absolute; + z-index: 1; + display: flex; + width: max-content; + text-wrap: auto; + will-change: transform; + box-sizing: border-box; - &.visible { - @include pop-in; - } + &.visible { + @include pop-in; + } - .triangle { - box-sizing: border-box; - } + .triangle { + box-sizing: border-box; + } - .textWrapper { - border-radius: var(--theme-sizing-radius-default); - display: flex; - flex-direction: column; + .textWrapper { + border-radius: var(--theme-sizing-radius-default); + display: flex; + flex-direction: column; - .title, - .text { - overflow-wrap: break-word; - white-space: pre-line; - } + .title, + .text { + overflow-wrap: break-word; + white-space: pre-line; } + } - @each $size, $paddingH, $paddingV, $textSize, $pointerSize in $sizes { - &.#{$size} { - .textWrapper { - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + @each $size, $paddingH, $paddingV, $textSize, $pointerSize in $sizes { + &.#{$size} { + .textWrapper { + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - .title { - @include font("base", $textSize, "600"); - } - .text { - @include font("body", $textSize); - } + .title { + @include font("base", $textSize, "600"); } - - .triangle { - width: var(--base-sizing-#{$pointerSize}); - height: var(--base-sizing-#{$pointerSize}); - border-left: calc(var(--base-sizing-#{$pointerSize}) / 2) solid transparent; - border-right: calc(var(--base-sizing-#{$pointerSize}) / 2) solid transparent; - border-bottom: var(--base-sizing-#{$pointerSize}) solid var(--theme-color-surface-base-base3); - margin: 0 var(--base-sizing-#{$pointerSize}); + .text { + @include font("body", $textSize); } } + + .triangle { + width: var(--base-sizing-#{$pointerSize}); + height: var(--base-sizing-#{$pointerSize}); + border-left: calc(var(--base-sizing-#{$pointerSize}) / 2) solid transparent; + border-right: calc(var(--base-sizing-#{$pointerSize}) / 2) solid transparent; + border-bottom: var(--base-sizing-#{$pointerSize}) solid var(--theme-color-surface-base-base3); + margin: 0 var(--base-sizing-#{$pointerSize}); + } } + } - @each $position, $flexDir, $alignArrow, $rotate, $transformOrigin, $trianglePos in $positions { - &.#{$position} { - flex-direction: $flexDir; - transform-origin: $transformOrigin; + @each $position, $flexDir, $alignArrow, $rotate, $transformOrigin, $trianglePos in $positions { + &.#{$position} { + flex-direction: $flexDir; + transform-origin: $transformOrigin; - .triangle { - align-self: $alignArrow; - transform: rotate($rotate); - @if $trianglePos != "top" and $trianglePos != "bottom" { - margin: 0; - } + .triangle { + align-self: $alignArrow; + transform: rotate($rotate); + @if $trianglePos != "top" and $trianglePos != "bottom" { + margin: 0; } } } - &.light { - .textWrapper { - background-color: var(--theme-color-surface-base-base3); - .title { - color: var(--theme-color-text-base-title); - } - .text { - color: var(--theme-color-text-base-subtitle); - } + } + &.light { + .textWrapper { + background-color: var(--theme-color-surface-base-base3); + .title { + color: var(--theme-color-text-base-title); } - .triangle { - border-bottom-color: var(--theme-color-surface-base-base3); + .text { + color: var(--theme-color-text-base-subtitle); } } + .triangle { + border-bottom-color: var(--theme-color-surface-base-base3); + } + } - &.dark { - .textWrapper { - background-color: var(--theme-color-text-secondary-active); - .title { - color: var(--theme-color-semantic-base-white); - } - .text { - color: var(--theme-color-text-base-text-light); - } + &.dark { + .textWrapper { + background-color: var(--theme-color-text-secondary-active); + .title { + color: var(--theme-color-semantic-base-white); } - .triangle { - border-bottom-color: var(--theme-color-text-secondary-active); + .text { + color: var(--theme-color-text-base-text-light); } } + .triangle { + border-bottom-color: var(--theme-color-text-secondary-active); + } } } diff --git a/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss b/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss index 906e1e7..c82b86e 100644 --- a/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss +++ b/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss @@ -2,198 +2,196 @@ $sizes: (("xs", 160x, 6x, 36x, 24x), ("sm", 190x, 8x, 40x, 28x), ("md", 256x, 10x, 44x, 32x), ("lg", 320x, 12x, 48x, 36x)); -@layer motif-ui { - @each $name, $box, $padding, $fontSize, $iconSize in $sizes { - .#{$name} { - width: var(--base-sizing-#{$box}); +@each $name, $box, $padding, $fontSize, $iconSize in $sizes { + .#{$name} { + width: var(--base-sizing-#{$box}); - .dragArea { - width: var(--base-sizing-#{$box}); - height: var(--base-sizing-#{$box}); - padding: var(--base-sizing-#{$padding}); - } - - .errorMessage { - @include font("body", $name); - } - - .icon { - width: var(--base-sizing-#{$fontSize}); - height: var(--base-sizing-#{$fontSize}); - font-size: var(--base-sizing-#{$iconSize}); - } - - .addIcon { - font-size: var(--base-sizing-#{$fontSize}); - } - - .dragMessage { - @include font("base", $name, "500"); - } + .dragArea { + width: var(--base-sizing-#{$box}); + height: var(--base-sizing-#{$box}); + padding: var(--base-sizing-#{$padding}); } - } - - .Root { - display: flex; - flex-direction: column; - } - .errorMessage { - color: var(--theme-color-border-danger-default); - margin-top: var(--base-sizing-6x); - display: inline-block; - } - - .dragArea { - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-base2); - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - gap: var(--base-sizing-8x); - box-sizing: border-box; - @include transition(border-color); - - .progress { - span { - display: block; - color: var(--theme-color-text-base-caption); - margin-bottom: var(--base-sizing-8x); - } - - text-align: center; - width: 100%; + .errorMessage { + @include font("body", $name); } - .dragMessage { - color: var(--theme-color-text-base-caption-light); + .icon { + width: var(--base-sizing-#{$fontSize}); + height: var(--base-sizing-#{$fontSize}); + font-size: var(--base-sizing-#{$iconSize}); } - &.dragReady { - cursor: pointer; - &.onDrag, - &:hover { - border-style: dashed; - border-color: var(--theme-color-text-primary-default); - } + .addIcon { + font-size: var(--base-sizing-#{$fontSize}); } - &.error { - color: var(--theme-color-border-danger-default); - border-color: var(--theme-color-border-danger-default); - .content { - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; - position: relative; - } + .dragMessage { + @include font("base", $name, "500"); } } +} - .fileItem { - width: 100%; - height: 100%; - position: relative; +.Root { + display: flex; + flex-direction: column; +} - .icon { - background: var(--theme-color-surface-base-base1); - border-radius: var(--theme-sizing-radius-default); - display: flex; - justify-content: center; - align-items: center; - } +.errorMessage { + color: var(--theme-color-border-danger-default); + margin-top: var(--base-sizing-6x); + display: inline-block; +} - .content { - @include transition(filter); - width: 100%; - height: 100%; - background: var(--theme-color-surface-base-base2); - - img { - object-fit: contain; - width: 100%; - height: 100%; - background: none; - } +.dragArea { + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-base2); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: var(--base-sizing-8x); + box-sizing: border-box; + @include transition(border-color); + + .progress { + span { + display: block; + color: var(--theme-color-text-base-caption); + margin-bottom: var(--base-sizing-8x); } - &:hover { - .iconContainer { - opacity: 1; - } + text-align: center; + width: 100%; + } + + .dragMessage { + color: var(--theme-color-text-base-caption-light); + } - .content { - filter: brightness(0.5); - } + &.dragReady { + cursor: pointer; + &.onDrag, + &:hover { + border-style: dashed; + border-color: var(--theme-color-text-primary-default); } + } - .iconContainer { - gap: var(--base-sizing-12x); - position: absolute; - transform: translate(-50%, -50%); - top: 50%; - left: 50%; + &.error { + color: var(--theme-color-border-danger-default); + border-color: var(--theme-color-border-danger-default); + .content { display: flex; - opacity: 0; + align-items: center; + justify-content: center; + flex-direction: column; + position: relative; } } +} - .previewOverlay { - position: fixed; - inset: 0; - z-index: 1; - background: var(--theme-color-semantic-base-black-overlay75); - } +.fileItem { + width: 100%; + height: 100%; + position: relative; - .previewContent { - position: fixed; - inset: 0; + .icon { + background: var(--theme-color-surface-base-base1); + border-radius: var(--theme-sizing-radius-default); display: flex; justify-content: center; align-items: center; } - .previewImage { - max-width: 100%; - max-height: 100%; + .content { + @include transition(filter); + width: 100%; + height: 100%; + background: var(--theme-color-surface-base-base2); + + img { + object-fit: contain; + width: 100%; + height: 100%; + background: none; + } } - .closeBtn { - all: unset; - position: fixed; - right: var(--base-sizing-8x); - top: var(--base-sizing-8x); - background-color: var(--theme-color-surface-light-default); - border-radius: var(--theme-sizing-radius-round); - width: var(--base-sizing-24x); - height: var(--base-sizing-24x); - display: flex; - justify-content: center; - align-items: center; - cursor: pointer; - @include transition(background-color); - &:hover { - background-color: var(--theme-color-surface-light-hover); + &:hover { + .iconContainer { + opacity: 1; } - span { - color: var(--theme-color-text-base-global-dark); - font-size: var(--base-sizing-18x); - font-weight: 600; + + .content { + filter: brightness(0.5); } } - .toolbar { + .iconContainer { + gap: var(--base-sizing-12x); position: absolute; - bottom: var(--base-sizing-32x); + transform: translate(-50%, -50%); + top: 50%; left: 50%; - transform: translateX(-50%); display: flex; - gap: var(--base-sizing-72x); - background: var(--theme-color-border-secondary-hover); - padding: var(--base-sizing-8x) var(--base-sizing-32x); - border-radius: var(--base-sizing-32x); + opacity: 0; + } +} + +.previewOverlay { + position: fixed; + inset: 0; + z-index: 1; + background: var(--theme-color-semantic-base-black-overlay75); +} + +.previewContent { + position: fixed; + inset: 0; + display: flex; + justify-content: center; + align-items: center; +} + +.previewImage { + max-width: 100%; + max-height: 100%; +} + +.closeBtn { + all: unset; + position: fixed; + right: var(--base-sizing-8x); + top: var(--base-sizing-8x); + background-color: var(--theme-color-surface-light-default); + border-radius: var(--theme-sizing-radius-round); + width: var(--base-sizing-24x); + height: var(--base-sizing-24x); + display: flex; + justify-content: center; + align-items: center; + cursor: pointer; + @include transition(background-color); + &:hover { + background-color: var(--theme-color-surface-light-hover); + } + span { + color: var(--theme-color-text-base-global-dark); + font-size: var(--base-sizing-18x); + font-weight: 600; } } + +.toolbar { + position: absolute; + bottom: var(--base-sizing-32x); + left: 50%; + transform: translateX(-50%); + display: flex; + gap: var(--base-sizing-72x); + background: var(--theme-color-border-secondary-hover); + padding: var(--base-sizing-8x) var(--base-sizing-32x); + border-radius: var(--base-sizing-32x); +} diff --git a/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss b/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss index c22b7df..7e8618e 100644 --- a/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss +++ b/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss @@ -3,108 +3,106 @@ // name, spacing, padding, infoFontPerc, iconSize $sizes: (("xs", "2x", "20x", "xxs", "32x"), ("sm", "4x", "24x", "xs", "40x"), ("md", "6x", "28x", "sm", "48x"), ("lg", "8x", "32x", "md", "56x")); -@layer motif-ui { - .Root { - display: inline-block; - width: auto; - max-width: 100%; - min-width: var(--base-sizing-216x); - flex-grow: 1; +.Root { + display: inline-block; + width: auto; + max-width: 100%; + min-width: var(--base-sizing-216x); + flex-grow: 1; + box-sizing: border-box; + + .dragArea { + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background-color: var(--theme-color-surface-base-base2); + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + cursor: pointer; box-sizing: border-box; + @include transition(border-color); - .dragArea { - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background-color: var(--theme-color-surface-base-base2); + .dragIcon { + color: var(--theme-color-text-base-caption-light); + @include transition(color); + } + + .dragTextGroup { display: flex; flex-direction: column; - justify-content: center; align-items: center; - cursor: pointer; - box-sizing: border-box; - @include transition(border-color); - - .dragIcon { - color: var(--theme-color-text-base-caption-light); - @include transition(color); - } - - .dragTextGroup { - display: flex; - flex-direction: column; - align-items: center; - } + } - .dragText { - color: var(--theme-color-text-base-subtitle); - text-align: center; - } + .dragText { + color: var(--theme-color-text-base-subtitle); + text-align: center; + } - .dragInfo { - color: var(--theme-color-text-base-caption); - text-align: center; - } + .dragInfo { + color: var(--theme-color-text-base-caption); + text-align: center; + } - &.flatBottom { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - } + &.flatBottom { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + } - &.onDrag, - &:hover { - &:not(.disabled) { - border-style: dashed; - border-color: var(--theme-color-text-primary-default); - .dragIcon { - color: var(--theme-color-text-primary-default); - } + &.onDrag, + &:hover { + &:not(.disabled) { + border-style: dashed; + border-color: var(--theme-color-text-primary-default); + .dragIcon { + color: var(--theme-color-text-primary-default); } } + } - &.error { - border-color: var(--theme-color-surface-danger-default); - } + &.error { + border-color: var(--theme-color-surface-danger-default); + } - &.disabled { - cursor: default; - border-color: var(--theme-color-border-light-disabled); - .dragIcon { - color: var(--theme-color-text-base-disabled-light); - } - .dragText, - .dragInfo { - color: var(--theme-color-text-base-disabled); - } + &.disabled { + cursor: default; + border-color: var(--theme-color-border-light-disabled); + .dragIcon { + color: var(--theme-color-text-base-disabled-light); } - - &.success:not(.disabled) { - border-color: var(--theme-color-border-success-default); + .dragText, + .dragInfo { + color: var(--theme-color-text-base-disabled); } } + + &.success:not(.disabled) { + border-color: var(--theme-color-border-success-default); + } } +} - @each $name, $spacing, $padding, $infoFontPerc, $iconSize in $sizes { - .#{$name} { - .dragArea { - gap: var(--base-sizing-#{$spacing}); - padding: var(--base-sizing-#{$padding}); +@each $name, $spacing, $padding, $infoFontPerc, $iconSize in $sizes { + .#{$name} { + .dragArea { + gap: var(--base-sizing-#{$spacing}); + padding: var(--base-sizing-#{$padding}); - .dragIcon { - font-size: var(--base-sizing-#{$iconSize}); - } + .dragIcon { + font-size: var(--base-sizing-#{$iconSize}); + } - .dragTextGroup { - gap: var(--base-sizing-#{$spacing}); - padding: var(--base-sizing-#{$spacing}); - } + .dragTextGroup { + gap: var(--base-sizing-#{$spacing}); + padding: var(--base-sizing-#{$spacing}); + } - .dragText { - @include font("base", $name, "500"); - } + .dragText { + @include font("base", $name, "500"); + } - .dragInfo { - @include font("body", $infoFontPerc); - } + .dragInfo { + @include font("body", $infoFontPerc); } } } diff --git a/src/lib/components/Upload/UploadFileList/FileList.module.scss b/src/lib/components/Upload/UploadFileList/FileList.module.scss index c2a47d0..c330ebf 100644 --- a/src/lib/components/Upload/UploadFileList/FileList.module.scss +++ b/src/lib/components/Upload/UploadFileList/FileList.module.scss @@ -3,107 +3,105 @@ // name, gap, paddingV, paddingH, labelSize, helperSize $sizes: (("xs", "4x", "4x", "8x", "xs", "xxs"), ("sm", "6x", "6x", "12x", "xs", "xxs"), ("md", "8x", "8x", "16x", "sm", "xxs"), ("lg", "10x", "10x", "20x", "md", "xs")); -@layer motif-ui { - .Root { - border-color: var(--theme-color-border-light-default); - border-style: solid; - border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) var(--base-sizing-1x); - border-bottom-left-radius: var(--base-radius-sm); - border-bottom-right-radius: var(--base-radius-sm); - overflow: hidden; - } +.Root { + border-color: var(--theme-color-border-light-default); + border-style: solid; + border-width: 0 var(--base-sizing-1x) var(--base-sizing-1x) var(--base-sizing-1x); + border-bottom-left-radius: var(--base-radius-sm); + border-bottom-right-radius: var(--base-radius-sm); + overflow: hidden; +} - .uploadButtonArea { - padding: var(--base-sizing-8x); - display: flex; - justify-content: flex-end; - border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - } +.uploadButtonArea { + padding: var(--base-sizing-8x); + display: flex; + justify-content: flex-end; + border-top: solid var(--base-sizing-1x) var(--theme-color-border-light-default); +} - .files { - display: flex; - flex-direction: column; - gap: var(--base-sizing-8x); - max-height: var(--base-sizing-256x); - overflow-y: scroll; - background: var(--theme-color-surface-base-bg-light); +.files { + display: flex; + flex-direction: column; + gap: var(--base-sizing-8x); + max-height: var(--base-sizing-256x); + overflow-y: scroll; + background: var(--theme-color-surface-base-bg-light); +} + +.fileRow { + @include transition(background); + display: flex; + flex-direction: row; + align-items: center; + + .icon { + @include transition(color); } - .fileRow { - @include transition(background); + .labelWrapper { + flex: 1; display: flex; - flex-direction: row; - align-items: center; + flex-direction: column; + justify-items: stretch; - .icon { - @include transition(color); + .label { + color: var(--theme-color-text-base-title); } - .labelWrapper { - flex: 1; - display: flex; - flex-direction: column; - justify-items: stretch; + .helperText { + color: var(--theme-color-text-secondary-default); + overflow-wrap: break-word; + white-space: pre-wrap; - .label { - color: var(--theme-color-text-base-title); + &.helperSuccess { + color: var(--theme-color-text-success-default); } - - .helperText { - color: var(--theme-color-text-secondary-default); - overflow-wrap: break-word; - white-space: pre-wrap; - - &.helperSuccess { - color: var(--theme-color-text-success-default); - } - &.helperError { - color: var(--theme-color-text-danger-default); - } + &.helperError { + color: var(--theme-color-text-danger-default); } + } - .progress { - margin-top: var(--base-sizing-8x); - } + .progress { + margin-top: var(--base-sizing-8x); } + } - &.disabled { - .label { - color: var(--theme-color-text-base-disabled); - } - .helperSuccess { - color: var(--theme-color-text-success-disabled); - } - .helperError { - color: var(--theme-color-text-danger-disabled); - } + &.disabled { + .label { + color: var(--theme-color-text-base-disabled); + } + .helperSuccess { + color: var(--theme-color-text-success-disabled); } + .helperError { + color: var(--theme-color-text-danger-disabled); + } + } - &:hover { - background: var(--theme-color-surface-base-base2); - .icon { - &.iconDelete { - color: var(--theme-color-text-danger-default); - } - &.iconRenew { - color: var(--theme-color-text-primary-default); - } + &:hover { + background: var(--theme-color-surface-base-base2); + .icon { + &.iconDelete { + color: var(--theme-color-text-danger-default); + } + &.iconRenew { + color: var(--theme-color-text-primary-default); } } } +} - @each $name, $gap, $paddingV, $paddingH, $labelS, $helperS in $sizes { - .#{$name} { - .fileRow { - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - gap: var(--base-sizing-#{$gap}); +@each $name, $gap, $paddingV, $paddingH, $labelS, $helperS in $sizes { + .#{$name} { + .fileRow { + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + gap: var(--base-sizing-#{$gap}); - .label { - @include font("base", $labelS, "500"); - } - .helperText { - @include font("body", $helperS); - } + .label { + @include font("base", $labelS, "500"); + } + .helperText { + @include font("body", $helperS); } } } diff --git a/src/lib/components/Upload/UploadInput/UploadInput.module.scss b/src/lib/components/Upload/UploadInput/UploadInput.module.scss index daff691..96f001a 100644 --- a/src/lib/components/Upload/UploadInput/UploadInput.module.scss +++ b/src/lib/components/Upload/UploadInput/UploadInput.module.scss @@ -3,182 +3,180 @@ // size, gap, paddingV, paddingH, labelMinWidth $sizes: (("xs", "4x", "4x", "10x", "128x"), ("sm", "6x", "6x", "12x", "128x"), ("md", "8x", "8x", "16x", "160x"), ("lg", "8x", "10x", "20x", "190x")); -@layer motif-ui { - .Root { - display: flex; - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - border-radius: var(--theme-sizing-radius-default); - background: var(--theme-color-surface-base-bg-light); +.Root { + display: flex; + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + border-radius: var(--theme-sizing-radius-default); + background: var(--theme-color-surface-base-bg-light); + + &.inFormField { + min-width: var(--base-sizing-256x); + } - &.inFormField { - min-width: var(--base-sizing-256x); + &.disabled { + background: var(--theme-color-surface-base-base1); + border-color: var(--theme-color-border-light-disabled); + .label { + color: var(--theme-color-text-base-disabled); } + } - &.disabled { - background: var(--theme-color-surface-base-base1); - border-color: var(--theme-color-border-light-disabled); - .label { - color: var(--theme-color-text-base-disabled); - } + &.error { + &, + .browseButton, + .uploadButton { + border-color: var(--theme-color-surface-danger-default); } + } - &.error { - &, - .browseButton, - .uploadButton { - border-color: var(--theme-color-surface-danger-default); - } + &.success { + &, + .browseButton, + .uploadButton { + border-color: var(--theme-color-border-success-default); } + } - &.success { - &, - .browseButton, - .uploadButton { - border-color: var(--theme-color-border-success-default); - } + > button { + margin: calc(-1 * var(--base-sizing-1x)); + cursor: pointer; + display: inline-flex; + justify-content: center; + align-items: center; + background: var(--theme-color-surface-light-default); + border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); + &, + & > * { + @include transition; } - > button { - margin: calc(-1 * var(--base-sizing-1x)); - cursor: pointer; - display: inline-flex; - justify-content: center; - align-items: center; - background: var(--theme-color-surface-light-default); - border: var(--base-sizing-1x) solid var(--theme-color-border-light-default); - &, - & > * { - @include transition; - } - - &:focus-visible { - outline: none; - border-color: var(--theme-color-border-primary-default); - } - - &:disabled { - pointer-events: none; - cursor: default; - border-color: var(--theme-color-border-light-disabled); - background: var(--theme-color-surface-light-disabled); - &, - span { - color: var(--theme-color-text-base-disabled); - } - } + &:focus-visible { + outline: none; + border-color: var(--theme-color-border-primary-default); } - } - .browseButton { - border-top-left-radius: var(--theme-sizing-radius-default); - border-bottom-left-radius: var(--theme-sizing-radius-default); - &:hover { - background: var(--theme-color-surface-light-hover); - border-color: var(--theme-color-border-light-hover); + &:disabled { + pointer-events: none; + cursor: default; + border-color: var(--theme-color-border-light-disabled); + background: var(--theme-color-surface-light-disabled); &, span { - color: var(--theme-color-text-base-title); + color: var(--theme-color-text-base-disabled); } } + } +} + +.browseButton { + border-top-left-radius: var(--theme-sizing-radius-default); + border-bottom-left-radius: var(--theme-sizing-radius-default); + &:hover { + background: var(--theme-color-surface-light-hover); + border-color: var(--theme-color-border-light-hover); &, span { - color: var(--theme-color-text-base-subtitle-light); + color: var(--theme-color-text-base-title); } } + &, + span { + color: var(--theme-color-text-base-subtitle-light); + } +} - .uploadButton { - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - &:hover { - background: var(--theme-color-surface-primary-default); - border-color: var(--theme-color-surface-primary-default); - &, - span { - color: var(--theme-color-text-base-global-light); - } - } +.uploadButton { + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + &:hover { + background: var(--theme-color-surface-primary-default); + border-color: var(--theme-color-surface-primary-default); &, span { - color: var(--theme-color-text-base-title); + color: var(--theme-color-text-base-global-light); } } + &, + span { + color: var(--theme-color-text-base-title); + } +} + +.labelArea { + flex: 1; + display: flex; + position: relative; + overflow: hidden; - .labelArea { + .label { + color: var(--theme-color-text-base-title); + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + margin: calc(-1 * var(--base-sizing-1x)) 0; + text-align: left; + align-self: stretch; flex: 1; + background: transparent; + border: solid var(--base-sizing-1x) transparent; + &.roundedEnd { + border-top-right-radius: var(--theme-sizing-radius-default); + border-bottom-right-radius: var(--theme-sizing-radius-default); + margin: calc(-1 * var(--base-sizing-1x)) calc(-1 * var(--base-sizing-1x)) calc(-1 * var(--base-sizing-1x)) 0; + } + &.placeholder { + color: var(--theme-color-text-base-caption-light); + } + &:disabled { + pointer-events: none; + } + &:hover { + border-color: var(--theme-color-border-light-hover); + } + } + + .labelSuffixWrapper { + position: absolute; display: flex; - position: relative; - overflow: hidden; + background: none; + top: 50%; + transform: translateY(-50%); + border-radius: var(--theme-sizing-radius-default); + border: solid var(--base-sizing-1x) transparent; + @include transition(color); + } + + .progress { + flex: 1; + align-self: center; + margin: 0 var(--base-sizing-16x); + } +} +@each $size, $gap, $paddingV, $paddingH, $labelMinWidth in $sizes { + .#{$size} { + > button { + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + gap: var(--base-sizing-#{$gap}); + @include font("base", $size, "500"); + } .label { - color: var(--theme-color-text-base-title); - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - margin: calc(-1 * var(--base-sizing-1x)) 0; - text-align: left; - align-self: stretch; - flex: 1; - background: transparent; - border: solid var(--base-sizing-1x) transparent; - &.roundedEnd { - border-top-right-radius: var(--theme-sizing-radius-default); - border-bottom-right-radius: var(--theme-sizing-radius-default); - margin: calc(-1 * var(--base-sizing-1x)) calc(-1 * var(--base-sizing-1x)) calc(-1 * var(--base-sizing-1x)) 0; - } - &.placeholder { - color: var(--theme-color-text-base-caption-light); - } - &:disabled { - pointer-events: none; + @include font("body", $size); + min-width: var(--base-sizing-#{$labelMinWidth}); + padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); + &.hasSuffix { + padding-right: calc(3 * var(--base-sizing-#{$paddingH})); } - &:hover { - border-color: var(--theme-color-border-light-hover); + &.hasSuffixes { + padding-right: calc(5 * var(--base-sizing-#{$paddingH})); } } - .labelSuffixWrapper { - position: absolute; - display: flex; - background: none; - top: 50%; - transform: translateY(-50%); - border-radius: var(--theme-sizing-radius-default); - border: solid var(--base-sizing-1x) transparent; - @include transition(color); + right: var(--base-sizing-#{$paddingH}); + gap: var(--base-sizing-#{$paddingV}); } - .progress { - flex: 1; - align-self: center; - margin: 0 var(--base-sizing-16x); - } - } - - @each $size, $gap, $paddingV, $paddingH, $labelMinWidth in $sizes { - .#{$size} { - > button { - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - gap: var(--base-sizing-#{$gap}); - @include font("base", $size, "500"); - } - .label { - @include font("body", $size); - min-width: var(--base-sizing-#{$labelMinWidth}); - padding: var(--base-sizing-#{$paddingV}) var(--base-sizing-#{$paddingH}); - &.hasSuffix { - padding-right: calc(3 * var(--base-sizing-#{$paddingH})); - } - &.hasSuffixes { - padding-right: calc(5 * var(--base-sizing-#{$paddingH})); - } - } - .labelSuffixWrapper { - right: var(--base-sizing-#{$paddingH}); - gap: var(--base-sizing-#{$paddingV}); - } - .progress { - margin: 0 var(--base-sizing-#{$paddingH}); - } + margin: 0 var(--base-sizing-#{$paddingH}); } } } diff --git a/src/lib/components/Upload/UploadList/UploadList.module.scss b/src/lib/components/Upload/UploadList/UploadList.module.scss index 6636a44..2aaa227 100644 --- a/src/lib/components/Upload/UploadList/UploadList.module.scss +++ b/src/lib/components/Upload/UploadList/UploadList.module.scss @@ -3,71 +3,69 @@ // name, gap, padding, infoFontPerc $sizes: (("xs", "4x", "8x", "xs"), ("sm", "6x", "12x", "sm"), ("md", "8x", "16x", "sm"), ("lg", "10x", "20x", "sm")); -@layer motif-ui { - .Root { - display: inline-block; - width: auto; - min-width: var(--base-sizing-216x); - max-width: 100%; - flex-grow: 1; - box-sizing: border-box; +.Root { + display: inline-block; + width: auto; + min-width: var(--base-sizing-216x); + max-width: 100%; + flex-grow: 1; + box-sizing: border-box; - .dragArea { - @include transition(border-color); - width: 100%; - display: inline-flex; - justify-content: space-between; - align-items: center; - border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - border-radius: var(--base-radius-sm); - background-color: var(--theme-color-surface-base-base2); - box-sizing: border-box; + .dragArea { + @include transition(border-color); + width: 100%; + display: inline-flex; + justify-content: space-between; + align-items: center; + border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); + border-radius: var(--base-radius-sm); + background-color: var(--theme-color-surface-base-base2); + box-sizing: border-box; - .infoText { - text-align: right; - color: var(--base-colors-gray-gray-500); - } + .infoText { + text-align: right; + color: var(--base-colors-gray-gray-500); + } - &:hover, - &.onDrag { - &:not(.disabled) { - cursor: pointer; - border-style: dashed; - border-color: var(--theme-color-text-primary-default); - } + &:hover, + &.onDrag { + &:not(.disabled) { + cursor: pointer; + border-style: dashed; + border-color: var(--theme-color-text-primary-default); } + } - &.flatBottom { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - } + &.flatBottom { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; + } - &.error { - border-color: var(--theme-color-surface-danger-default); - } + &.error { + border-color: var(--theme-color-surface-danger-default); + } - &.disabled { - border-color: var(--theme-color-border-light-disabled); - .infoText { - color: var(--theme-color-text-base-disabled-light); - } + &.disabled { + border-color: var(--theme-color-border-light-disabled); + .infoText { + color: var(--theme-color-text-base-disabled-light); } + } - &.success:not(.disabled) { - border-color: var(--theme-color-border-success-default); - } + &.success:not(.disabled) { + border-color: var(--theme-color-border-success-default); } } +} - @each $name, $gap, $padding, $infoFontPerc in $sizes { - .#{$name} { - .dragArea { - padding: var(--base-sizing-#{$padding}); - gap: var(--base-sizing-#{$gap}); +@each $name, $gap, $padding, $infoFontPerc in $sizes { + .#{$name} { + .dragArea { + padding: var(--base-sizing-#{$padding}); + gap: var(--base-sizing-#{$gap}); - .infoText { - @include font("body", $infoFontPerc); - } + .infoText { + @include font("body", $infoFontPerc); } } } From 789b61dba687a92faa06f4b47a01e2fb1f90578b Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Thu, 14 May 2026 11:54:04 +0300 Subject: [PATCH 04/17] rollup and nextjs layer wrapping is added --- package.json | 1 + postcss.config.js | 14 +++ rollup.config.mjs | 3 + src/scripts/postcss-wrap-layer.js | 26 ++++ src/scripts/wrap-with-layer.mjs | 195 +++--------------------------- 5 files changed, 63 insertions(+), 176 deletions(-) create mode 100644 postcss.config.js create mode 100644 src/scripts/postcss-wrap-layer.js diff --git a/package.json b/package.json index e18414f..21b488d 100644 --- a/package.json +++ b/package.json @@ -72,6 +72,7 @@ "jest-environment-jsdom": "^30.4.1", "lint-staged": "16.4.0", "next": "^16.2.4", + "postcss-preset-env": "11.3.0", "postcss-url": "10.1.3", "prettier": "3.8.3", "rollup": "^4.60.2", diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..05719b2 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,14 @@ +import path from "path"; +import { fileURLToPath } from "url"; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); + +const config = async () => { + const wrapLayer = (await import(path.join(__dirname, "src/scripts/postcss-wrap-layer.js"))).default; + + return { + plugins: [wrapLayer()], + }; +}; + +export default config; diff --git a/rollup.config.mjs b/rollup.config.mjs index 5450bb6..e1b0e83 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -14,6 +14,7 @@ import path from "path"; import process from "node:process"; import { fileURLToPath } from "url"; import json from "@rollup/plugin-json"; +import { wrapCssWithLayer } from "./src/scripts/wrap-with-layer.mjs"; process.env.NODE_ENV = process.env.NODE_ENV || "production"; @@ -85,6 +86,7 @@ export default [ commonjs(), json(), styles({ + //mode: ["extract", "dist/bundle.css"], //TODO: Lets keep it like this unless there is problem. modules: { generateScopedName: generateScopedCssClassName, }, @@ -109,6 +111,7 @@ export default [ }), ], }), + wrapCssWithLayer(), copy({ targets: [ { diff --git a/src/scripts/postcss-wrap-layer.js b/src/scripts/postcss-wrap-layer.js new file mode 100644 index 0000000..aa37728 --- /dev/null +++ b/src/scripts/postcss-wrap-layer.js @@ -0,0 +1,26 @@ +const LAYER_NAME = "motif-ui"; + +/** @type {function(): {postcssPlugin: string, Once(*, {postcss: *}): void}} */ +const wrapLayerPlugin = () => { + return { + postcssPlugin: "postcss-wrap-layer", + Once(root, { postcss }) { + const from = root.source?.input?.file || ""; + if (!from.includes(".module.scss") && !from.includes(".module.css")) return; + if (root.first?.name === "layer" || !root.nodes.length) return; + + const layer = postcss.atRule({ + name: "layer", + params: LAYER_NAME, + }); + + const nodes = root.nodes.slice(); + root.removeAll(); + layer.append(nodes); + root.append(layer); + }, + }; +}; + +wrapLayerPlugin.postcss = true; +export default wrapLayerPlugin; diff --git a/src/scripts/wrap-with-layer.mjs b/src/scripts/wrap-with-layer.mjs index dedb744..e6caeb4 100644 --- a/src/scripts/wrap-with-layer.mjs +++ b/src/scripts/wrap-with-layer.mjs @@ -1,186 +1,29 @@ -/** - * wrap-with-layer.mjs - * - * Each .module.scss file is wrapped with @layer - * - * Excluded formats: - * @use, @forward, @import - * $variable declarations - * @mixin, @function - * - * - */ - import { readFileSync, writeFileSync } from "fs"; import { glob } from "glob"; -const LAYER_NAME = "motif-ui"; // projeye göre değiştir -const GLOB_PATTERN = "src/lib/**/*.module.scss"; - -/** - * Single-line compile-time directives → remain outside the layer. - * NOTE: $variable is not handled here, but in isHoistedBlockStart, - * because they can be multi-line (multiline map/list). - */ -function isAtomicHoistedLine(line) { - const t = line.trimStart(); - if (t === "") return true; // boş satır - if (t.startsWith("//")) return true; // // yorum - if (/^\/\*/.test(t)) return true; // /* blok yorum */ - if (/^@(use|forward|import)\s/.test(t)) return true; // @use / @forward / @import - return false; -} - -/** - * Directives that will remain outside the layer along with their entire block: - * @mixin / @function → followed by braces {} - * $var: value; → single-line (ends with semicolon) - * $var: (...) → multi-line map/list, followed by parentheses () - * - * IMPORTANT: This check must be performed BEFORE isAtomicHoistedLine. - * Otherwise, $var lines inside a @mixin body would be counted as atomic, - * causing the mixin to be cut off midway and @layer to be opened in the wrong place. - */ -function isHoistedBlockStart(line) { - const t = line.trimStart(); - if (/^@(mixin|function)\s/.test(t)) return true; - if (/^\$[\w-]+\s*:/.test(t)) return true; // $var: ... (tek veya çok satır) - return false; -} - -/** - * Returns the depth counter that will track the block's closing. - * null → single-line (already closed), loop is not entered. - */ -function getDepthCounter(line) { - const t = line.trimStart(); +const LAYER_NAME = "motif-ui"; - if (/^@(mixin|function)\s/.test(t)) { - return l => (l.match(/\{/g) || []).length - (l.match(/\}/g) || []).length; - } +export function wrapCssWithLayer() { + return { + name: "wrap-css-with-layer", - if (/^\$[\w-]+\s*:/.test(t)) { - if (/;\s*$/.test(line.trimEnd())) return null; - return l => (l.match(/\(/g) || []).length - (l.match(/\)/g) || []).length; - } - - return null; -} + async closeBundle() { + const files = await glob("dist/**/*.css", { + ignore: ["dist/themes/**"], + }); -/** - * Splits the file content into two parts: - * - hoisted : will remain outside @layer (SCSS compile-time) - * - body : will be wrapped inside @layer (CSS selector blocks) - */ -function splitContent(content) { - const lines = content.split("\n"); - const hoisted = []; - const body = []; - let bodyStarted = false; - let i = 0; + for (const file of files) { + const content = readFileSync(file, "utf8"); + if (content.includes(`@layer ${LAYER_NAME}`)) continue; - while (i < lines.length) { - const line = lines[i]; + const wrapped = `@layer ${LAYER_NAME} {\n${content + .split("\n") + .map(l => (l.trim() ? ` ${l}` : "")) + .join("\n")}\n}\n`; - if (bodyStarted) { - body.push(line); - i++; - continue; - } - - // 1. Multi lined hoisted block (@mixin, @function, $var: (...)) - if (isHoistedBlockStart(line)) { - const counter = getDepthCounter(line); - hoisted.push(line); - i++; - - if (counter !== null) { - let depth = counter(line); - while (depth > 0 && i < lines.length) { - const inner = lines[i]; - hoisted.push(inner); - depth += counter(inner); - i++; - } + writeFileSync(file, wrapped, "utf8"); + console.log(`✅ Wrapped: ${file}`); } - continue; - } - - // 2. Single line compile time - if (isAtomicHoistedLine(line)) { - hoisted.push(line); - i++; - continue; - } - - // 3. Firs real css line - bodyStarted = true; - body.push(line); - i++; - } - - return { hoisted, body }; + }, + }; } - -/** - * Hoisted + body + @layer - */ -function wrapWithLayer(hoisted, body, layerName) { - while (body.length && body[body.length - 1].trim() === "") body.pop(); - while (hoisted.length && hoisted[hoisted.length - 1].trim() === "") hoisted.pop(); - - const indented = body.map(l => (l.trim() === "" ? "" : ` ${l}`)); - - const parts = []; - if (hoisted.length) { - parts.push(hoisted.join("\n")); - parts.push(""); - } - parts.push(`@layer ${layerName} {`); - parts.push(...indented); - parts.push(`}`); - parts.push(""); - return parts.join("\n"); -} - -// ─── Main Flow ──────────────────────────────────────────────────────────────── - -const files = await glob(GLOB_PATTERN); - -if (files.length === 0) { - console.warn(`⚠️ There is no file matched on this pattern: ${GLOB_PATTERN}`); -} - -let skipped = 0; -let processed = 0; -let errors = 0; - -for (const file of files) { - try { - const content = readFileSync(file, "utf8"); - - if (content.includes(`@layer ${LAYER_NAME}`)) { - console.log(`⏭ SKIP ${file}`); - skipped++; - continue; - } - - const { hoisted, body } = splitContent(content); - - if (body.filter(l => l.trim()).length === 0) { - console.log(`⚠️ NO BODY ${file}`); - skipped++; - continue; - } - - const result = wrapWithLayer([...hoisted], [...body], LAYER_NAME); - writeFileSync(file, result, "utf8"); - console.log(`✅ DONE ${file}`); - processed++; - } catch (err) { - console.error(`❌ ERROR ${file}:`, err.message); - errors++; - } -} - -console.log(`\n📊 Result: ${processed} completed, ${skipped} skipped, ${errors} error`); From ff21a46f0f042ce714cbf70d527bd5b34038b91b Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Thu, 14 May 2026 11:56:29 +0300 Subject: [PATCH 05/17] unsync package lock json is added --- package-lock.json | 9394 +++++++++++++++++++++++++++++++++------------ 1 file changed, 7026 insertions(+), 2368 deletions(-) diff --git a/package-lock.json b/package-lock.json index dadcd82..fa73c98 100644 --- a/package-lock.json +++ b/package-lock.json @@ -45,6 +45,7 @@ "jest-environment-jsdom": "^30.4.1", "lint-staged": "16.4.0", "next": "^16.2.4", + "postcss-preset-env": "11.3.0", "postcss-url": "10.1.3", "prettier": "3.8.3", "rollup": "^4.60.2", @@ -2476,10 +2477,10 @@ "node": ">=18" } }, - "node_modules/@csstools/selector-resolve-nested": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-4.0.0.tgz", - "integrity": "sha512-9vAPxmp+Dx3wQBIUwc1v7Mdisw1kbbaGqXUM8QLTgWg7SoPGYtXBsMXvsFs/0Bn5yoFhcktzxNZGNaUt0VjgjA==", + "node_modules/@csstools/postcss-alpha-function": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@csstools/postcss-alpha-function/-/postcss-alpha-function-2.0.5.tgz", + "integrity": "sha512-i2lNJ6b4GdMoybHlpUM07TIk8KQRXTTe7Qf8LfctQhjDRTIgaodWTQqzWU4fpWO/nxBWNkSloDM22Lw/30NBcg==", "dev": true, "funding": [ { @@ -2492,17 +2493,24 @@ } ], "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, "engines": { "node": ">=20.19.0" }, "peerDependencies": { - "postcss-selector-parser": "^7.1.1" + "postcss": "^8.4" } }, - "node_modules/@csstools/selector-specificity": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-6.0.0.tgz", - "integrity": "sha512-4sSgl78OtOXEX/2d++8A83zHNTgwCJMaR24FvsYL7Uf/VS8HZk9PTwR51elTbGqMuwH3szLvvOXEaVnqn0Z3zA==", + "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", "dev": true, "funding": [ { @@ -2517,763 +2525,4102 @@ "license": "MIT-0", "engines": { "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss-selector-parser": "^7.1.1" } }, - "node_modules/@emnapi/core": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz", - "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==", + "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "optional": true, - "dependencies": { - "@emnapi/wasi-threads": "1.2.1", - "tslib": "^2.4.0" + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@emnapi/runtime": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", - "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "optional": true, "dependencies": { - "tslib": "^2.4.0" + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@emnapi/wasi-threads": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", - "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", + "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", - "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", - "cpu": [ - "ppc64" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], - "dev": true, "license": "MIT", - "optional": true, - "os": [ - "aix" - ], "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/android-arm": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", - "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", - "cpu": [ - "arm" - ], + "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" } }, - "node_modules/@esbuild/android-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", - "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", - "cpu": [ - "arm64" - ], + "node_modules/@csstools/postcss-cascade-layers": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-6.0.0.tgz", + "integrity": "sha512-WhsECqmrEZQGqaPlBA7JkmF/CJ2/+wetL4fkL9sOPccKd32PQ1qToFM6gqSI5rkpmYqubvbxjEJhyMTHYK0vZQ==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT-0", + "dependencies": { + "@csstools/selector-specificity": "^6.0.0", + "postcss-selector-parser": "^7.1.1" + }, "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@esbuild/android-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", - "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", - "cpu": [ - "x64" - ], + "node_modules/@csstools/postcss-color-function": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-5.0.4.tgz", + "integrity": "sha512-PhUu86ppxKcNHHqrJ43ZL1mYa2uHKGRoY0KPbZA9k8iOaanL3I+1zYqbgVumxj1UgNTDw5BE3BUQ1Dono6bD6g==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", - "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", - "cpu": [ - "arm64" - ], + "node_modules/@csstools/postcss-color-function-display-p3-linear": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function-display-p3-linear/-/postcss-color-function-display-p3-linear-2.0.4.tgz", + "integrity": "sha512-xrGqSFj9pu6XbJYD4NNCxYK9WFbf0KMfXFaisnJezkIRDZCwefUB2azkU4Zr0dFmLtIb9LlshrSZ0be1/QVthQ==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", - "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", - "cpu": [ - "x64" - ], + "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT-0", "engines": { - "node": ">=18" + "node": ">=20.19.0" } }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", - "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", - "cpu": [ - "arm64" - ], + "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", - "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", - "cpu": [ - "x64" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], - "dev": true, "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/linux-arm": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", - "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", - "cpu": [ - "arm" - ], + "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", - "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", - "cpu": [ - "arm64" - ], + "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", - "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", - "cpu": [ - "ia32" - ], + "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" } }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", - "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", - "cpu": [ - "loong64" - ], + "node_modules/@csstools/postcss-color-function/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT-0", "engines": { - "node": ">=18" + "node": ">=20.19.0" } }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", - "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", - "cpu": [ - "mips64el" - ], + "node_modules/@csstools/postcss-color-function/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", - "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", - "cpu": [ - "ppc64" - ], + "node_modules/@csstools/postcss-color-function/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", - "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", - "cpu": [ - "riscv64" - ], + "node_modules/@csstools/postcss-color-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", - "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", - "cpu": [ - "s390x" - ], + "node_modules/@csstools/postcss-color-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" } }, - "node_modules/@esbuild/linux-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", - "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", - "cpu": [ - "x64" - ], + "node_modules/@csstools/postcss-color-mix-function": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-4.0.4.tgz", + "integrity": "sha512-zYS78MHBuih9f9qtPFcSvVXMKg9q/lNPeFJUjyw7+/W1VHRjubvs5MlzuC363UUeahAhrOvYdo2ZZhmlxZbj6w==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@esbuild/netbsd-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", - "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", - "cpu": [ - "arm64" - ], + "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT-0", "engines": { - "node": ">=18" + "node": ">=20.19.0" } }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", - "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", - "cpu": [ - "x64" - ], + "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/openbsd-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", - "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", - "cpu": [ - "arm64" - ], + "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", - "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", - "cpu": [ - "x64" - ], + "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/openharmony-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", - "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", - "cpu": [ - "arm64" - ], + "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openharmony" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" } }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", - "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", - "cpu": [ - "x64" - ], + "node_modules/@csstools/postcss-color-mix-variadic-function-arguments": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-variadic-function-arguments/-/postcss-color-mix-variadic-function-arguments-2.0.4.tgz", + "integrity": "sha512-qlrABMEFPUqbCxX0aOsHcxQZo/8XgMqnEtqqtVUbdizcuTUtJyLdHike7hkoemwDspMSEotdIfRlUY4jhZaD+A==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "sunos" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", - "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", - "cpu": [ - "arm64" - ], + "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT-0", "engines": { - "node": ">=18" + "node": ">=20.19.0" } }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", - "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", - "cpu": [ - "ia32" - ], + "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@esbuild/win32-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", - "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", - "cpu": [ - "x64" - ], + "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, "engines": { - "node": ">=18" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", - "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^3.4.3" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=20.19.0" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@eslint-community/regexpp": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", - "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + "node": ">=20.19.0" } }, - "node_modules/@eslint/config-array": { - "version": "0.21.2", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", - "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "node_modules/@csstools/postcss-container-rule-prelude-list": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-container-rule-prelude-list/-/postcss-container-rule-prelude-list-1.0.1.tgz", + "integrity": "sha512-c5qlevVGKHU+zDbVoUGSZl1Mw7Vl1gVRKv6cdIYnaoyM+9Ou23Ian0H5Gr2ZF+lsDWovPK03hOSAbkw6HS8aTg==", "dev": true, - "license": "Apache-2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@eslint/object-schema": "^2.1.7", - "debug": "^4.3.1", - "minimatch": "^3.1.5" + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@eslint/config-array/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/@csstools/postcss-container-rule-prelude-list/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, - "license": "MIT" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } }, - "node_modules/@eslint/config-array/node_modules/brace-expansion": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", - "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "node_modules/@csstools/postcss-container-rule-prelude-list/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "engines": { + "node": ">=20.19.0" } }, - "node_modules/@eslint/config-array/node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "node_modules/@csstools/postcss-content-alt-text": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-3.0.1.tgz", + "integrity": "sha512-mK5lCgzgV/ZC+LgnFy4rAQVMcXR6HsnX3D1+4Q5gshSQsst5TtcvHbxTdzKy1XTv09sNZHJX8CO4CEQF9zA4ug==", "dev": true, - "license": "ISC", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "brace-expansion": "^1.1.7" + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" }, "engines": { - "node": "*" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@eslint/config-helpers": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", - "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "node_modules/@csstools/postcss-content-alt-text/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@eslint/core": "^0.17.0" - }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@eslint/core": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", - "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "node_modules/@csstools/postcss-content-alt-text/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@types/json-schema": "^7.0.15" - }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=20.19.0" } }, - "node_modules/@eslint/eslintrc": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", - "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "node_modules/@csstools/postcss-contrast-color-function": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-contrast-color-function/-/postcss-contrast-color-function-3.0.4.tgz", + "integrity": "sha512-EiTZzUICztGqEuYg8AVCUWH9vH2jDzO6RryxMja+PWluZHP6n3/iG6i1leTt5LiDQjDUQlCRbQtMNj7V7S+b4Q==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "ajv": "^6.14.0", - "debug": "^4.3.2", - "espree": "^10.0.1", - "globals": "^14.0.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.1", - "minimatch": "^3.1.5", - "strip-json-comments": "^3.1.1" + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=20.19.0" }, - "funding": { - "url": "https://opencollective.com/eslint" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@eslint/eslintrc/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", "dev": true, - "license": "MIT" - }, - "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", - "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" } }, - "node_modules/@eslint/eslintrc/node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": ">= 4" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@eslint/eslintrc/node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", "dev": true, - "license": "ISC", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" }, "engines": { - "node": "*" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@eslint/js": { - "version": "9.39.4", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", - "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=20.19.0" }, - "funding": { - "url": "https://eslint.org/donate" + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@eslint/object-schema": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", - "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, - "license": "Apache-2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=20.19.0" } }, - "node_modules/@eslint/plugin-kit": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", - "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "node_modules/@csstools/postcss-exponential-functions": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-3.0.3.tgz", + "integrity": "sha512-mB/NoeHLBHh0LZiVSrFdRDA/NxSfmg4tSN9117IJH9bdC2BzSTVgc82h3Gu/sdBXay6kDH2sA7fbkTigMiEi2A==", "dev": true, - "license": "Apache-2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@eslint/core": "^0.17.0", - "levn": "^0.4.1" + "@csstools/css-calc": "^3.2.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@humanfs/core": { - "version": "0.19.2", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", - "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@humanfs/types": "^0.15.0" + "node": ">=20.19.0" }, - "engines": { - "node": ">=18.18.0" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@humanfs/node": { - "version": "0.16.8", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz", - "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==", + "node_modules/@csstools/postcss-exponential-functions/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@humanfs/core": "^0.19.2", - "@humanfs/types": "^0.15.0", - "@humanwhocodes/retry": "^0.4.0" - }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "engines": { - "node": ">=18.18.0" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@humanfs/types": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz", - "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==", + "node_modules/@csstools/postcss-exponential-functions/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, - "license": "Apache-2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "engines": { - "node": ">=18.18.0" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "node_modules/@csstools/postcss-exponential-functions/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, - "license": "Apache-2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "node": ">=20.19.0" } }, - "node_modules/@humanwhocodes/retry": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", - "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-5.0.0.tgz", + "integrity": "sha512-M1EjCe/J3u8fFhOZgRci74cQhJ7R0UFBX6T+WqoEvjrr8hVfMiV+HTYrzxLY5OW8YllvXYr5Q5t5OvJbsUSeDg==", "dev": true, - "license": "Apache-2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/utilities": "^3.0.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=18.18" + "node": ">=20.19.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/@img/colour": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", - "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "node_modules/@csstools/postcss-font-width-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-width-property/-/postcss-font-width-property-1.0.0.tgz", + "integrity": "sha512-AvmySApdijbjYQuXXh95tb7iVnqZBbJrv3oajO927ksE/mDmJBiszm+psW8orL2lRGR8j6ZU5Uv9/ou2Z5KRKA==", "dev": true, - "license": "MIT", - "optional": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/utilities": "^3.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-gamut-mapping": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-3.0.4.tgz", + "integrity": "sha512-2dWGsxtxypKU9Ra862F2335W8xegRwl9ohQ6hk808PiQlEahSaFtt5fqsGmKDaSiaFUx+2X8GZxVo970Ajr2vQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-gradients-interpolation-method": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-6.0.4.tgz", + "integrity": "sha512-sC/7dqVTtQTniLjPp/NagzeUn4sGinnMTicNBLDzirKq/GNXuJaApBOnvBmgNXjV6XPizfMhNRYCk5stn3q2nQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-5.0.4.tgz", + "integrity": "sha512-cl0KPaaeYyAXNHO3pqK8adbpbAGmIU1cT1thyaEkmP8yvbJvmyztkpdGADGqziUUoh4dZQ0IhHxOxnKQ296T+A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-5.0.1.tgz", + "integrity": "sha512-jmsVLXPdMBTlaJAhiEijhIR3qL0j75MrlRfhJEs91DF1Wlt2kpJTDsbpXQpYFzn1nPFHZC/WEf+Mw0I/HXkHzQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-image-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-image-function/-/postcss-image-function-1.0.0.tgz", + "integrity": "sha512-iuQztV6Cfeuc7NczazfickrzEhALOpxUS0yWgGkmRY1zZ0CKjBBFc/7WWSN9qupfpNAzHY7cPNcJCqUhtr+YMw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-image-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-image-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-initial": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-3.0.0.tgz", + "integrity": "sha512-UVUrFmrTQyLomVepnjWlbBg7GoscLmXLwYFyjbcEnmpeGW7wde6lNpx5eM3eVwZI2M+7hCE3ykYnAsEPLcLa+Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-6.0.0.tgz", + "integrity": "sha512-1Hdy/ykg9RDo8vU8RiM2o+RaXO39WpFPaIkHxlAEJFofle/lc33tdQMKhBk3jR/Fe+uZNLOs3HlowFafyFptVw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/selector-specificity": "^6.0.0", + "postcss-selector-parser": "^7.1.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-light-dark-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-3.0.1.tgz", + "integrity": "sha512-tD2MMJmZ6XXCHgDythLHcXQDNi5z7KEEWPe7JeB3vPcw+YMuMabpW5ugRqndhIrui+vduhc0Md7f7yGPCmOErg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-light-dark-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-light-dark-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-logical-float-and-clear": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-4.0.0.tgz", + "integrity": "sha512-NGzdIRVj/VxOa/TjVdkHeyiJoDihONV0+uB0csUdgWbFFr8xndtfqK8iIGP9IKJzco+w0hvBF2SSk2sDSTAnOQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-overflow": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-3.0.0.tgz", + "integrity": "sha512-5cRg93QXVskM0MNepHpPcL0WLSf5Hncky0DrFDQY/4ozbH5lH7SX5ejayVpNTGSX7IpOvu7ykQDLOdMMGYzwpA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-overscroll-behavior": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-3.0.0.tgz", + "integrity": "sha512-82Jnl/5Wi5jb19nQE1XlBHrZcNL3PzOgcj268cDkfwf+xi10HBqufGo1Unwf5n8bbbEFhEKgyQW+vFsc9iY1jw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-resize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-resize/-/postcss-logical-resize-4.0.0.tgz", + "integrity": "sha512-L0T3q0gei/tGetCGZU0c7VN77VTivRpz1YZRNxjXYmW+85PKeI6U9YnSvDqLU2vBT2uN4kLEzfgZ0ThIZpN18A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-viewport-units": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-4.0.0.tgz", + "integrity": "sha512-TA3AqVN/1IH3dKRC2UUWvprvwyOs2IeD7FDZk5Hz20w4q33yIuSg0i0gjyTUkcn90g8A4n7QpyZ2AgBrnYPnnA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/utilities": "^3.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-viewport-units/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-media-minmax": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-3.0.3.tgz", + "integrity": "sha512-ch1tNS+1QayiHTGsyc53zv3AzrSd0zigjbkfLxoeuzzJyn32+P3V7em3u5vLVnqLMzBbEZK//GI13EVTIPRdDA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "dependencies": { + "@csstools/css-calc": "^3.2.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/media-query-list-parser": "^5.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-media-minmax/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-media-minmax/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-media-minmax/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-media-minmax/node_modules/@csstools/media-query-list-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-5.0.0.tgz", + "integrity": "sha512-T9lXmZOfnam3eMERPsszjY5NK0jX8RmThmmm99FZ8b7z8yMaFZWKwLWGZuTwdO3ddRY5fy13GmmEYZXB4I98Eg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-4.0.0.tgz", + "integrity": "sha512-FDdC3lbrj8Vr0SkGIcSLTcRB7ApG6nlJFxOxkEF2C5hIZC1jtgjISFSGn/WjFdVkn8Dqe+Vx9QXI3axS2w1XHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/media-query-list-parser": "^5.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values/node_modules/@csstools/media-query-list-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-5.0.0.tgz", + "integrity": "sha512-T9lXmZOfnam3eMERPsszjY5NK0jX8RmThmmm99FZ8b7z8yMaFZWKwLWGZuTwdO3ddRY5fy13GmmEYZXB4I98Eg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-mixins": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-mixins/-/postcss-mixins-1.0.0.tgz", + "integrity": "sha512-rz6qjT2w9L3k65jGc2dX+3oGiSrYQ70EZPDrINSmSVoVys7lLBFH0tvEa8DW2sr9cbRVD/W+1sy8+7bfu0JUfg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-mixins/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-mixins/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-5.0.0.tgz", + "integrity": "sha512-aPSw8P60e/i9BEfugauhikBqgjiwXcw3I9o4vXs+hktl4NSTgZRI0QHimxk9mst8N01A2TKDBxOln3mssRxiHQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/utilities": "^3.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz", + "integrity": "sha512-FcbEmoxDEGYvm2W3rQzVzcuo66+dDJjzzVDs+QwRmZLHYofGmMGwIKPqzF86/YW+euMDa7sh1xjWDvz/fzByZQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-5.0.4.tgz", + "integrity": "sha512-vIgrKe5ffW99it5SUIXOBczGLSiTaHBhU6afVr9KPwoZ4uq9H0E3Ehvi+xsUjmvnAyMTxOUSszNo04kEhbvYjQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-position-area-property": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-position-area-property/-/postcss-position-area-property-2.0.0.tgz", + "integrity": "sha512-TeEfzsJGB23Syv7yCm8AHCD2XTFujdjr9YYu9ebH64vnfCEvY4BG319jXAYSlNlf3Yc9PNJ6WnkDkUF5XVgSKQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-5.1.0.tgz", + "integrity": "sha512-lt/4yHy2GdKcGVpK4OGhBdSIq+z2PXynSusSRggn/T4y7uFurYAhdHqo/aYM+xI37vNb8rJlEKchqKKvVCXROQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-property-rule-prelude-list": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-property-rule-prelude-list/-/postcss-property-rule-prelude-list-2.0.0.tgz", + "integrity": "sha512-qcMAkc9AhpzHgmQCD8hoJgGYifcOAxd1exXjjxilMM6euwRE619xDa4UsKBCv/v4g+sS63sd6c29LPM8s2ylSQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-property-rule-prelude-list/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-property-rule-prelude-list/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-random-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-3.0.3.tgz", + "integrity": "sha512-0EScyKxscGonwpi30Hj9DEAr0X8D2eDhOqqayQXE91gIqGli9UT+deLYqoogZLOy5GT+ncqltMqztc/q+0UkhA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-calc": "^3.2.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-random-function/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-random-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-random-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-relative-color-syntax": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-4.0.4.tgz", + "integrity": "sha512-reFFKD9eS602We8621e5cAroKD7hH4104duLNBBhzwawGN7dhbnL1+c/DRHqwyq6eGK35HaKMMiifEZhAztlOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-scope-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-5.0.0.tgz", + "integrity": "sha512-kBrBFJcAji3MSHS4qQIihPvJfJC5xCabXLbejqDMiQi+86HD4eMBiTayAo46Urg7tlEmZZQFymFiJt+GH6nvXw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-selector-parser": "^7.1.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-sign-functions": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-2.0.3.tgz", + "integrity": "sha512-2BCPwlpeQweTC/8S8oQFYhYD5kxYkiroLf3AUJV2kVoKkSZ+4WM4rSwySXlKrqXL8HfCryAwVrJg7B0jr/RnOw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-calc": "^3.2.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-sign-functions/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-sign-functions/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-sign-functions/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-5.0.3.tgz", + "integrity": "sha512-nXMFQBz5Pi2LLG02iqm2k+scrqwtqJT9ta/gN8S79oBZ23M0E7O3wDJ20//3z5Q6HU5e+K0n+SmmxN6iWtbm6w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-calc": "^3.2.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-syntax-descriptor-syntax-production": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-syntax-descriptor-syntax-production/-/postcss-syntax-descriptor-syntax-production-2.0.0.tgz", + "integrity": "sha512-elYcbdiBXAkPqvojB9kIBRuHY6htUhjSITtFQ+XiXnt6SvZCbNGxQmaaw6uZ7SPHu/+i/XVjzIt09/1k3SIerQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-syntax-descriptor-syntax-production/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-system-ui-font-family": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-system-ui-font-family/-/postcss-system-ui-font-family-2.0.0.tgz", + "integrity": "sha512-FyGZCgchFImFyiHS2x3rD5trAqatf/x23veBLTIgbaqyFfna6RNBD+Qf8HRSjt6HGMXOLhAjxJ3OoZg0bbn7Qw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-system-ui-font-family/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-system-ui-font-family/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-5.0.3.tgz", + "integrity": "sha512-62fjggvIM1YYfDJPcErMUDkEZB6CByG8neTJqexnZe1hRBgCjD4dnXDLoCSSurjs1LzjBq6irFDpDaOvDZfrlw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-5.0.3.tgz", + "integrity": "sha512-p9LTvLj+DFpl5RHbG/X9QGwg7BoMOBsRBZqsUAKKVvCw7MRCsk1P1llTUR/MW5nyZ4IsjFGDtDwTTj1reJjxvg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-calc": "^3.2.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-5.0.0.tgz", + "integrity": "sha512-EoO54sS2KCIfesvHyFYAW99RtzwHdgaJzhl7cqKZSaMYKZv3fXSOehDjAQx8WZBKn1JrMd7xJJI1T1BxPF7/jA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/selector-resolve-nested": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-4.0.0.tgz", + "integrity": "sha512-9vAPxmp+Dx3wQBIUwc1v7Mdisw1kbbaGqXUM8QLTgWg7SoPGYtXBsMXvsFs/0Bn5yoFhcktzxNZGNaUt0VjgjA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss-selector-parser": "^7.1.1" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-6.0.0.tgz", + "integrity": "sha512-4sSgl78OtOXEX/2d++8A83zHNTgwCJMaR24FvsYL7Uf/VS8HZk9PTwR51elTbGqMuwH3szLvvOXEaVnqn0Z3zA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss-selector-parser": "^7.1.1" + } + }, + "node_modules/@csstools/utilities": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/utilities/-/utilities-3.0.0.tgz", + "integrity": "sha512-etDqA/4jYvOGBM6yfKCOsEXfH96BKztZdgGmGqKi2xHnDe0ILIBraRspwgYatJH9JsCZ5HCGoCst8w18EKOAdg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@emnapi/core": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz", + "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@emnapi/wasi-threads": "1.2.1", + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", + "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@emnapi/wasi-threads": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", + "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", + "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", + "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", + "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", + "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", + "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", + "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", + "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", + "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.5" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-array/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@eslint/config-array/node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/config-array/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", + "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/types": "^0.15.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz", + "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.2", + "@humanfs/types": "^0.15.0", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/types": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz", + "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "dev": true, + "license": "MIT", + "optional": true, "engines": { "node": ">=18" } @@ -8448,6 +11795,43 @@ "node": ">= 0.4" } }, + "node_modules/autoprefixer": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz", + "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.28.2", + "caniuse-lite": "^1.0.30001787", + "fraction.js": "^5.3.4", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, "node_modules/available-typed-arrays": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", @@ -9867,6 +13251,32 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/css-blank-pseudo": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-8.0.1.tgz", + "integrity": "sha512-C5B2e5hCM4llrQkUms+KnWEMVW8K1n2XvX9G7ppfMZJQ7KAS/4rNnkP1Cs+HhWriOz1mWWTMFD4j1J7s31Dgug==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-selector-parser": "^7.1.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, "node_modules/css-declaration-sorter": { "version": "7.4.0", "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.4.0.tgz", @@ -9874,20 +13284,48 @@ "dev": true, "license": "ISC", "engines": { - "node": "^14 || ^16 || >=18" + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-functions-list": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.3.3.tgz", + "integrity": "sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/css-has-pseudo": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-8.0.0.tgz", + "integrity": "sha512-Uz/bsHRbOeir/5Oeuz85tq/yLJLxX+3dpoRdjNTshs6jjqwUg8XaEZGDd0ci3fw7l53Srw0EkJ8mYan0eW5uGQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/selector-specificity": "^6.0.0", + "postcss-selector-parser": "^7.1.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" }, "peerDependencies": { - "postcss": "^8.0.9" - } - }, - "node_modules/css-functions-list": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.3.3.tgz", - "integrity": "sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" + "postcss": "^8.4" } }, "node_modules/css-loader": { @@ -9926,6 +13364,29 @@ } } }, + "node_modules/css-prefers-color-scheme": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-11.0.0.tgz", + "integrity": "sha512-fv0mgtwUhh2m9iio3Kxc2CkrogjIaRdMFaaqyzSFdii17JF4cfPyMNX72B15ZW2Nrr/NZUpxI4dec1VMHYJvdw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, "node_modules/css-select": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", @@ -10015,6 +13476,23 @@ "dev": true, "license": "MIT" }, + "node_modules/cssdb": { + "version": "8.9.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-8.9.0.tgz", + "integrity": "sha512-J8jOU/hLjaXcO1LldOLraJSQpfLXRKof0I7mtbRyOy2AAXgqst0x9rlgi2qXeD6d0ou3ZLqcPAMqYVbpCbrxEw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ], + "license": "MIT-0" + }, "node_modules/cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", @@ -11980,6 +15458,20 @@ "url": "https://opencollective.com/webpack" } }, + "node_modules/fraction.js": { + "version": "5.3.4", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", + "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/rawify" + } + }, "node_modules/fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -14045,7 +17537,213 @@ "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-each/node_modules/ansi-styles": { + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-30.4.1.tgz", + "integrity": "sha512-o3nfaN4zej7qgk2X0j8Jhq/S9nAVKs2xK3QeQxeHVvpkEPxaA1yxDGydR+iVI7zPy7Cp62Aq2h3Ja46QvfWHGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "30.4.1", + "@jest/environment-jsdom-abstract": "30.4.1", + "jsdom": "^26.1.0" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "canvas": "^3.0.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jest-environment-node": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-30.4.1.tgz", + "integrity": "sha512-4FZYVOk85hz2AyT6BbarKy9u37g6DbrDyCdFhsnDdXqyrueYQvB+0zO4f/kqLCRD0BsPRXPMNJeQwihKZV8naw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/environment": "30.4.1", + "@jest/fake-timers": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "jest-mock": "30.4.1", + "jest-util": "30.4.1", + "jest-validate": "30.4.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-30.4.1.tgz", + "integrity": "sha512-rFrcONd8jeFsyw+Z9CrScJgglRf2+NFmNam8dKu7n+SoHqNYT47mn0DdEcVUZJpvh7Iz6/si7f7yUH7GJHVgnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/types": "30.4.1", + "@types/node": "*", + "anymatch": "^3.1.3", + "fb-watchman": "^2.0.2", + "graceful-fs": "^4.2.11", + "jest-regex-util": "30.4.0", + "jest-util": "30.4.1", + "jest-worker": "30.4.1", + "picomatch": "^4.0.3", + "walker": "^1.0.8" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.3" + } + }, + "node_modules/jest-leak-detector": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-30.4.1.tgz", + "integrity": "sha512-IpmyiioeHxiWDhesHnUFmOxcTzwCwKpgACgWajtAP+nYQXiY7DakTxB6Bx9JFiRMljr0AX1PvnQdaU1KFoz6NQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.1.0", + "pretty-format": "30.4.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.4.1.tgz", + "integrity": "sha512-zvYfX5CaeEkFrrLS9suWe9rvJrm9J1Iv3ua8kIBv9GEPzcnsfBf0bob37la7s67fs0nlBC3EuvkOLnXQKxtx4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.1.0", + "chalk": "^4.1.2", + "jest-diff": "30.4.1", + "pretty-format": "30.4.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.4.1.tgz", + "integrity": "sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@jest/types": "30.4.1", + "@types/stack-utils": "^2.0.3", + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "jest-util": "30.4.1", + "picomatch": "^4.0.3", + "pretty-format": "30.4.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.6" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", @@ -14058,7 +17756,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-each/node_modules/pretty-format": { + "node_modules/jest-message-util/node_modules/pretty-format": { "version": "30.4.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", @@ -14074,133 +17772,192 @@ "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-environment-jsdom": { + "node_modules/jest-mock": { "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-30.4.1.tgz", - "integrity": "sha512-o3nfaN4zej7qgk2X0j8Jhq/S9nAVKs2xK3QeQxeHVvpkEPxaA1yxDGydR+iVI7zPy7Cp62Aq2h3Ja46QvfWHGA==", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-30.4.1.tgz", + "integrity": "sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/environment": "30.4.1", - "@jest/environment-jsdom-abstract": "30.4.1", - "jsdom": "^26.1.0" + "@jest/types": "30.4.1", + "@types/node": "*", + "jest-util": "30.4.1" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" }, "peerDependencies": { - "canvas": "^3.0.0" + "jest-resolve": "*" }, "peerDependenciesMeta": { - "canvas": { + "jest-resolve": { "optional": true } } }, - "node_modules/jest-environment-node": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-30.4.1.tgz", - "integrity": "sha512-4FZYVOk85hz2AyT6BbarKy9u37g6DbrDyCdFhsnDdXqyrueYQvB+0zO4f/kqLCRD0BsPRXPMNJeQwihKZV8naw==", + "node_modules/jest-regex-util": { + "version": "30.4.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.4.0.tgz", + "integrity": "sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==", "dev": true, "license": "MIT", - "dependencies": { - "@jest/environment": "30.4.1", - "@jest/fake-timers": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "jest-mock": "30.4.1", - "jest-util": "30.4.1", - "jest-validate": "30.4.1" - }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-haste-map": { + "node_modules/jest-resolve": { "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-30.4.1.tgz", - "integrity": "sha512-rFrcONd8jeFsyw+Z9CrScJgglRf2+NFmNam8dKu7n+SoHqNYT47mn0DdEcVUZJpvh7Iz6/si7f7yUH7GJHVgnw==", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-30.4.1.tgz", + "integrity": "sha512-Zry8Yq/yJcNAZ7dJ5F2heic8AheXvbFZ7XI5V+h28nrYZ7Qoyy4dItq8OodjnYD270mvX+ZudmrNV9cysqhW5Q==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.4.1", - "@types/node": "*", - "anymatch": "^3.1.3", - "fb-watchman": "^2.0.2", + "chalk": "^4.1.2", "graceful-fs": "^4.2.11", - "jest-regex-util": "30.4.0", + "jest-haste-map": "30.4.1", + "jest-pnp-resolver": "^1.2.3", "jest-util": "30.4.1", - "jest-worker": "30.4.1", - "picomatch": "^4.0.3", - "walker": "^1.0.8" + "jest-validate": "30.4.1", + "slash": "^3.0.0", + "unrs-resolver": "^1.7.11" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.3" } }, - "node_modules/jest-leak-detector": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-30.4.1.tgz", - "integrity": "sha512-IpmyiioeHxiWDhesHnUFmOxcTzwCwKpgACgWajtAP+nYQXiY7DakTxB6Bx9JFiRMljr0AX1PvnQdaU1KFoz6NQ==", + "node_modules/jest-resolve-dependencies": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-30.4.2.tgz", + "integrity": "sha512-gDiVh1I+GxYzz9oXlyw+1wv6VOYX1WYxMOfjsA3iGKePV2oxmbHhwxfkALxNxYy1ciw6APWwkW2zZONwP97aEQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/get-type": "30.1.0", - "pretty-format": "30.4.1" + "jest-regex-util": "30.4.0", + "jest-snapshot": "30.4.1" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-leak-detector/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/jest-runner": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-30.4.2.tgz", + "integrity": "sha512-2dw0PslVYXxffXGpLo+Ejad+KcI1Qkjn7f4X4619gf21oCUmL+SPfjqIa/losUem3yEOvfNZe/F1HWUcNpODcg==", "dev": true, "license": "MIT", - "engines": { - "node": ">=10" + "dependencies": { + "@jest/console": "30.4.1", + "@jest/environment": "30.4.1", + "@jest/test-result": "30.4.1", + "@jest/transform": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "chalk": "^4.1.2", + "emittery": "^0.13.1", + "exit-x": "^0.2.2", + "graceful-fs": "^4.2.11", + "jest-docblock": "30.4.0", + "jest-environment-node": "30.4.1", + "jest-haste-map": "30.4.1", + "jest-leak-detector": "30.4.1", + "jest-message-util": "30.4.1", + "jest-resolve": "30.4.1", + "jest-runtime": "30.4.2", + "jest-util": "30.4.1", + "jest-watcher": "30.4.1", + "jest-worker": "30.4.1", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-leak-detector/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "node_modules/jest-runtime": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-30.4.2.tgz", + "integrity": "sha512-3/5e8iPz2k/VLqlr8DgTftYyLUv8Su3FkCAO2/Od81UsUTpSxOrS6O5x5KkoQwyUjmpYyDJKeyAvg2T2nvpNkQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" + "@jest/environment": "30.4.1", + "@jest/fake-timers": "30.4.1", + "@jest/globals": "30.4.1", + "@jest/source-map": "30.0.1", + "@jest/test-result": "30.4.1", + "@jest/transform": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "chalk": "^4.1.2", + "cjs-module-lexer": "^2.1.0", + "collect-v8-coverage": "^1.0.2", + "glob": "^10.5.0", + "graceful-fs": "^4.2.11", + "jest-haste-map": "30.4.1", + "jest-message-util": "30.4.1", + "jest-mock": "30.4.1", + "jest-regex-util": "30.4.0", + "jest-resolve": "30.4.1", + "jest-snapshot": "30.4.1", + "jest-util": "30.4.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-matcher-utils": { + "node_modules/jest-runtime/node_modules/cjs-module-lexer": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz", + "integrity": "sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/jest-snapshot": { "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.4.1.tgz", - "integrity": "sha512-zvYfX5CaeEkFrrLS9suWe9rvJrm9J1Iv3ua8kIBv9GEPzcnsfBf0bob37la7s67fs0nlBC3EuvkOLnXQKxtx4A==", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-30.4.1.tgz", + "integrity": "sha512-tEOkkfOMppUyeiHwjZswOQ3lcnoTnws/q5FnGIaeIh/jmoU0ZlgMYRR8sTlTj+nNGCoJ0RDq6SfxGxCsyMTPmw==", "dev": true, "license": "MIT", "dependencies": { + "@babel/core": "^7.27.4", + "@babel/generator": "^7.27.5", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.27.1", + "@babel/types": "^7.27.3", + "@jest/expect-utils": "30.4.1", "@jest/get-type": "30.1.0", + "@jest/snapshot-utils": "30.4.1", + "@jest/transform": "30.4.1", + "@jest/types": "30.4.1", + "babel-preset-current-node-syntax": "^1.2.0", "chalk": "^4.1.2", + "expect": "30.4.1", + "graceful-fs": "^4.2.11", "jest-diff": "30.4.1", - "pretty-format": "30.4.1" + "jest-matcher-utils": "30.4.1", + "jest-message-util": "30.4.1", + "jest-util": "30.4.1", + "pretty-format": "30.4.1", + "semver": "^7.7.2", + "synckit": "^0.11.8" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "node_modules/jest-snapshot/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", @@ -14213,7 +17970,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "node_modules/jest-snapshot/node_modules/pretty-format": { "version": "30.4.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", @@ -14229,29 +17986,43 @@ "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-message-util": { + "node_modules/jest-util": { "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.4.1.tgz", - "integrity": "sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ==", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-30.4.1.tgz", + "integrity": "sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.27.1", "@jest/types": "30.4.1", - "@types/stack-utils": "^2.0.3", + "@types/node": "*", "chalk": "^4.1.2", + "ci-info": "^4.2.0", "graceful-fs": "^4.2.11", - "jest-util": "30.4.1", - "picomatch": "^4.0.3", - "pretty-format": "30.4.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.6" + "picomatch": "^4.0.3" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { + "node_modules/jest-validate": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-30.4.1.tgz", + "integrity": "sha512-PDWi4SOwLnwqNDfHZjOcsEFyZ4fc/2W2gVL3DEoyqnB6jCQMLRtfBong8s6omIw3lI0HWOus12xfnFmQtjW3fw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/get-type": "30.1.0", + "@jest/types": "30.4.1", + "camelcase": "^6.3.0", + "chalk": "^4.1.2", + "leven": "^3.1.0", + "pretty-format": "30.4.1" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", @@ -14264,7 +18035,20 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/pretty-format": { + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-validate/node_modules/pretty-format": { "version": "30.4.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", @@ -14280,1208 +18064,1445 @@ "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-mock": { + "node_modules/jest-watcher": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-30.4.1.tgz", + "integrity": "sha512-/l9UonmvCwjHH7d2h3iAwIloLc1H0S8mJZ/LNK3i86hqwPAz8otUJjP9MfYtz9Tt77Su5FD2xGjZn8d31IZHlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2", + "emittery": "^0.13.1", + "jest-util": "30.4.1", + "string-length": "^4.0.2" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-worker": { "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-30.4.1.tgz", - "integrity": "sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw==", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-30.4.1.tgz", + "integrity": "sha512-SHynN/q/QD++iNyvMdy+WMmbCGk8jIsNcRxycXbWubSOhvo6T+j2afcfUSl+3hYsiBebOTo0cT7c2H7CXugu1g==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.4.1", "@types/node": "*", - "jest-util": "30.4.1" + "@ungap/structured-clone": "^1.3.0", + "jest-util": "30.4.1", + "merge-stream": "^2.0.0", + "supports-color": "^8.1.1" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "node_modules/jiti": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz", + "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==", "dev": true, "license": "MIT", - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } + "bin": { + "jiti": "lib/jiti-cli.mjs" } }, - "node_modules/jest-regex-util": { - "version": "30.4.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.4.0.tgz", - "integrity": "sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==", + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true, - "license": "MIT", - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } + "license": "MIT" }, - "node_modules/jest-resolve": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-30.4.1.tgz", - "integrity": "sha512-Zry8Yq/yJcNAZ7dJ5F2heic8AheXvbFZ7XI5V+h28nrYZ7Qoyy4dItq8OodjnYD270mvX+ZudmrNV9cysqhW5Q==", + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "dev": true, "license": "MIT", "dependencies": { - "chalk": "^4.1.2", - "graceful-fs": "^4.2.11", - "jest-haste-map": "30.4.1", - "jest-pnp-resolver": "^1.2.3", - "jest-util": "30.4.1", - "jest-validate": "30.4.1", - "slash": "^3.0.0", - "unrs-resolver": "^1.7.11" + "argparse": "^2.0.1" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jest-resolve-dependencies": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-30.4.2.tgz", - "integrity": "sha512-gDiVh1I+GxYzz9oXlyw+1wv6VOYX1WYxMOfjsA3iGKePV2oxmbHhwxfkALxNxYy1ciw6APWwkW2zZONwP97aEQ==", + "node_modules/jsdom": { + "version": "26.1.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-26.1.0.tgz", + "integrity": "sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==", "dev": true, "license": "MIT", "dependencies": { - "jest-regex-util": "30.4.0", - "jest-snapshot": "30.4.1" + "cssstyle": "^4.2.1", + "data-urls": "^5.0.0", + "decimal.js": "^10.5.0", + "html-encoding-sniffer": "^4.0.0", + "http-proxy-agent": "^7.0.2", + "https-proxy-agent": "^7.0.6", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.16", + "parse5": "^7.2.1", + "rrweb-cssom": "^0.8.0", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^5.1.1", + "w3c-xmlserializer": "^5.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^3.1.1", + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.1.1", + "ws": "^8.18.0", + "xml-name-validator": "^5.0.0" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=18" + }, + "peerDependencies": { + "canvas": "^3.0.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/jest-runner": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-30.4.2.tgz", - "integrity": "sha512-2dw0PslVYXxffXGpLo+Ejad+KcI1Qkjn7f4X4619gf21oCUmL+SPfjqIa/losUem3yEOvfNZe/F1HWUcNpODcg==", + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, "license": "MIT", - "dependencies": { - "@jest/console": "30.4.1", - "@jest/environment": "30.4.1", - "@jest/test-result": "30.4.1", - "@jest/transform": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "chalk": "^4.1.2", - "emittery": "^0.13.1", - "exit-x": "^0.2.2", - "graceful-fs": "^4.2.11", - "jest-docblock": "30.4.0", - "jest-environment-node": "30.4.1", - "jest-haste-map": "30.4.1", - "jest-leak-detector": "30.4.1", - "jest-message-util": "30.4.1", - "jest-resolve": "30.4.1", - "jest-runtime": "30.4.2", - "jest-util": "30.4.1", - "jest-watcher": "30.4.1", - "jest-worker": "30.4.1", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=6" } }, - "node_modules/jest-runtime": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-30.4.2.tgz", - "integrity": "sha512-3/5e8iPz2k/VLqlr8DgTftYyLUv8Su3FkCAO2/Od81UsUTpSxOrS6O5x5KkoQwyUjmpYyDJKeyAvg2T2nvpNkQ==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "license": "MIT", - "dependencies": { - "@jest/environment": "30.4.1", - "@jest/fake-timers": "30.4.1", - "@jest/globals": "30.4.1", - "@jest/source-map": "30.0.1", - "@jest/test-result": "30.4.1", - "@jest/transform": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "chalk": "^4.1.2", - "cjs-module-lexer": "^2.1.0", - "collect-v8-coverage": "^1.0.2", - "glob": "^10.5.0", - "graceful-fs": "^4.2.11", - "jest-haste-map": "30.4.1", - "jest-message-util": "30.4.1", - "jest-mock": "30.4.1", - "jest-regex-util": "30.4.0", - "jest-resolve": "30.4.1", - "jest-snapshot": "30.4.1", - "jest-util": "30.4.1", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=6" } }, - "node_modules/jest-runtime/node_modules/cjs-module-lexer": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz", - "integrity": "sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ==", + "node_modules/jsonfile": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz", + "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } }, - "node_modules/jest-snapshot": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-30.4.1.tgz", - "integrity": "sha512-tEOkkfOMppUyeiHwjZswOQ3lcnoTnws/q5FnGIaeIh/jmoU0ZlgMYRR8sTlTj+nNGCoJ0RDq6SfxGxCsyMTPmw==", + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dev": true, "license": "MIT", - "dependencies": { - "@babel/core": "^7.27.4", - "@babel/generator": "^7.27.5", - "@babel/plugin-syntax-jsx": "^7.27.1", - "@babel/plugin-syntax-typescript": "^7.27.1", - "@babel/types": "^7.27.3", - "@jest/expect-utils": "30.4.1", - "@jest/get-type": "30.1.0", - "@jest/snapshot-utils": "30.4.1", - "@jest/transform": "30.4.1", - "@jest/types": "30.4.1", - "babel-preset-current-node-syntax": "^1.2.0", - "chalk": "^4.1.2", - "expect": "30.4.1", - "graceful-fs": "^4.2.11", - "jest-diff": "30.4.1", - "jest-matcher-utils": "30.4.1", - "jest-message-util": "30.4.1", - "jest-util": "30.4.1", - "pretty-format": "30.4.1", - "semver": "^7.7.2", - "synckit": "^0.11.8" + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=4.0" } }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-snapshot/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "node_modules/known-css-properties": { + "version": "0.37.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.37.0.tgz", + "integrity": "sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, "license": "MIT", - "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" - }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=6" } }, - "node_modules/jest-util": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-30.4.1.tgz", - "integrity": "sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.4.1", - "@types/node": "*", - "chalk": "^4.1.2", - "ci-info": "^4.2.0", - "graceful-fs": "^4.2.11", - "picomatch": "^4.0.3" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.8.0" } }, - "node_modules/jest-validate": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-30.4.1.tgz", - "integrity": "sha512-PDWi4SOwLnwqNDfHZjOcsEFyZ4fc/2W2gVL3DEoyqnB6jCQMLRtfBong8s6omIw3lI0HWOus12xfnFmQtjW3fw==", + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "peer": true, "dependencies": { - "@jest/get-type": "30.1.0", - "@jest/types": "30.4.1", - "camelcase": "^6.3.0", - "chalk": "^4.1.2", - "leven": "^3.1.0", - "pretty-format": "30.4.1" + "detect-libc": "^2.0.3" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "peer": true, "engines": { - "node": ">=10" + "node": ">= 12.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, "engines": { - "node": ">=10" + "node": ">= 12.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/jest-validate/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">= 12.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "peer": true, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/jest-watcher": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-30.4.1.tgz", - "integrity": "sha512-/l9UonmvCwjHH7d2h3iAwIloLc1H0S8mJZ/LNK3i86hqwPAz8otUJjP9MfYtz9Tt77Su5FD2xGjZn8d31IZHlw==", + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], "dev": true, - "license": "MIT", - "dependencies": { - "@jest/test-result": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "ansi-escapes": "^4.3.2", - "chalk": "^4.1.2", - "emittery": "^0.13.1", - "jest-util": "30.4.1", - "string-length": "^4.0.2" + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">= 12.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/jest-worker": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-30.4.1.tgz", - "integrity": "sha512-SHynN/q/QD++iNyvMdy+WMmbCGk8jIsNcRxycXbWubSOhvo6T+j2afcfUSl+3hYsiBebOTo0cT7c2H7CXugu1g==", + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "@ungap/structured-clone": "^1.3.0", - "jest-util": "30.4.1", - "merge-stream": "^2.0.0", - "supports-color": "^8.1.1" - }, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/jiti": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz", - "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==", + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "bin": { - "jiti": "lib/jiti-cli.mjs" + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT" + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } }, - "node_modules/js-yaml": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", - "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "peer": true, + "engines": { + "node": ">= 12.0.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/jsdom": { - "version": "26.1.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-26.1.0.tgz", - "integrity": "sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==", + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "cssstyle": "^4.2.1", - "data-urls": "^5.0.0", - "decimal.js": "^10.5.0", - "html-encoding-sniffer": "^4.0.0", - "http-proxy-agent": "^7.0.2", - "https-proxy-agent": "^7.0.6", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.16", - "parse5": "^7.2.1", - "rrweb-cssom": "^0.8.0", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^5.1.1", - "w3c-xmlserializer": "^5.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^3.1.1", - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.1.1", - "ws": "^8.18.0", - "xml-name-validator": "^5.0.0" - }, + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "peer": true, "engines": { - "node": ">=18" - }, - "peerDependencies": { - "canvas": "^3.0.0" + "node": ">= 12.0.0" }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/jsesc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", - "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "dev": true, "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, "engines": { - "node": ">=6" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true, "license": "MIT" }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "node_modules/lint-staged": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-16.4.0.tgz", + "integrity": "sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw==", "dev": true, "license": "MIT", + "dependencies": { + "commander": "^14.0.3", + "listr2": "^9.0.5", + "picomatch": "^4.0.3", + "string-argv": "^0.3.2", + "tinyexec": "^1.0.4", + "yaml": "^2.8.2" + }, "bin": { - "json5": "lib/cli.js" + "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": ">=6" - } - }, - "node_modules/jsonfile": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz", - "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" + "node": ">=20.17" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "funding": { + "url": "https://opencollective.com/lint-staged" } }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "node_modules/lint-staged/node_modules/commander": { + "version": "14.0.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.3.tgz", + "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==", "dev": true, "license": "MIT", - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" - }, "engines": { - "node": ">=4.0" + "node": ">=20" } }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "node_modules/listr2": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-9.0.5.tgz", + "integrity": "sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==", "dev": true, "license": "MIT", "dependencies": { - "json-buffer": "3.0.1" + "cli-truncate": "^5.0.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^6.1.0", + "rfdc": "^1.4.1", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=20.0.0" } }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/listr2/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/known-css-properties": { - "version": "0.37.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.37.0.tgz", - "integrity": "sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==", + "node_modules/listr2/node_modules/emoji-regex": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", "dev": true, "license": "MIT" }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "node_modules/listr2/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", "dev": true, "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, "engines": { - "node": ">=6" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", "dev": true, "license": "MIT", "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/lightningcss": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", - "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", + "node_modules/loader-runner": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz", + "integrity": "sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==", "dev": true, - "license": "MPL-2.0", - "peer": true, - "dependencies": { - "detect-libc": "^2.0.3" - }, + "license": "MIT", "engines": { - "node": ">= 12.0.0" + "node": ">=6.11.5" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/parcel" - }, - "optionalDependencies": { - "lightningcss-android-arm64": "1.32.0", - "lightningcss-darwin-arm64": "1.32.0", - "lightningcss-darwin-x64": "1.32.0", - "lightningcss-freebsd-x64": "1.32.0", - "lightningcss-linux-arm-gnueabihf": "1.32.0", - "lightningcss-linux-arm64-gnu": "1.32.0", - "lightningcss-linux-arm64-musl": "1.32.0", - "lightningcss-linux-x64-gnu": "1.32.0", - "lightningcss-linux-x64-musl": "1.32.0", - "lightningcss-win32-arm64-msvc": "1.32.0", - "lightningcss-win32-x64-msvc": "1.32.0" + "url": "https://opencollective.com/webpack" } }, - "node_modules/lightningcss-android-arm64": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", - "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", - "cpu": [ - "arm64" - ], + "node_modules/loader-utils": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "android" - ], - "peer": true, + "license": "MIT", "engines": { - "node": ">= 12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "node": ">= 12.13.0" } }, - "node_modules/lightningcss-darwin-arm64": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", - "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", - "cpu": [ - "arm64" - ], + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "darwin" - ], - "peer": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, "engines": { - "node": ">= 12.0.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lightningcss-darwin-x64": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", - "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", - "cpu": [ - "x64" - ], + "node_modules/lodash": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz", + "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "darwin" - ], - "peer": true, + "license": "MIT" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-update": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", + "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^7.0.0", + "cli-cursor": "^5.0.0", + "slice-ansi": "^7.1.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" + }, "engines": { - "node": ">= 12.0.0" + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lightningcss-freebsd-x64": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", - "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", - "cpu": [ - "x64" - ], + "node_modules/log-update/node_modules/ansi-escapes": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz", + "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "freebsd" - ], - "peer": true, + "license": "MIT", + "dependencies": { + "environment": "^1.0.0" + }, "engines": { - "node": ">= 12.0.0" + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lightningcss-linux-arm-gnueabihf": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", - "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", - "cpu": [ - "arm" - ], + "node_modules/log-update/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, + "license": "MIT", "engines": { - "node": ">= 12.0.0" + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/lightningcss-linux-arm64-gnu": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", - "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", - "cpu": [ - "arm64" - ], + "node_modules/log-update/node_modules/emoji-regex": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, + "license": "MIT" + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.2.tgz", + "integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "is-fullwidth-code-point": "^5.0.0" + }, "engines": { - "node": ">= 12.0.0" + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/lightningcss-linux-arm64-musl": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", - "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", - "cpu": [ - "arm64" - ], + "node_modules/log-update/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, "engines": { - "node": ">= 12.0.0" + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lightningcss-linux-x64-gnu": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", - "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", - "cpu": [ - "x64" - ], + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, "engines": { - "node": ">= 12.0.0" + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/lightningcss-linux-x64-musl": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", - "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", - "cpu": [ - "x64" - ], + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">= 12.0.0" + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/lightningcss-win32-arm64-msvc": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", - "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", - "cpu": [ - "arm64" - ], + "node_modules/loupe": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", + "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "win32" - ], - "peer": true, + "license": "MIT" + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "dev": true, + "license": "MIT", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, "engines": { - "node": ">= 12.0.0" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lightningcss-win32-x64-msvc": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", - "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", - "cpu": [ - "x64" - ], + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "win32" - ], - "peer": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", "engines": { - "node": ">= 12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "node": ">= 0.4" } }, - "node_modules/lilconfig": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", - "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "node_modules/mathml-tag-names": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-4.0.0.tgz", + "integrity": "sha512-aa6AU2Pcx0VP/XWnh8IGL0SYSgQHDT6Ucror2j2mXeFAlN3ahaNs8EZtG1YiticMkSLj3Gt6VPFfZogt7G5iFQ==", "dev": true, "license": "MIT", - "engines": { - "node": ">=14" - }, "funding": { - "url": "https://github.com/sponsors/antonk52" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } }, - "node_modules/lint-staged": { - "version": "16.4.0", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-16.4.0.tgz", - "integrity": "sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw==", + "node_modules/mdn-data": { + "version": "2.27.1", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", + "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", "dev": true, - "license": "MIT", + "license": "CC0-1.0" + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "license": "Unlicense", "dependencies": { - "commander": "^14.0.3", - "listr2": "^9.0.5", - "picomatch": "^4.0.3", - "string-argv": "^0.3.2", - "tinyexec": "^1.0.4", - "yaml": "^2.8.2" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" + "fs-monkey": "^1.0.4" }, "engines": { - "node": ">=20.17" + "node": ">= 4.0.0" + } + }, + "node_modules/meow": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-14.1.0.tgz", + "integrity": "sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20" }, "funding": { - "url": "https://opencollective.com/lint-staged" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lint-staged/node_modules/commander": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.3.tgz", - "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==", + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "license": "MIT", "engines": { - "node": ">=20" + "node": ">= 8" } }, - "node_modules/listr2": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-9.0.5.tgz", - "integrity": "sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==", + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "license": "MIT", "dependencies": { - "cli-truncate": "^5.0.0", - "colorette": "^2.0.20", - "eventemitter3": "^5.0.1", - "log-update": "^6.1.0", - "rfdc": "^1.4.1", - "wrap-ansi": "^9.0.0" + "braces": "^3.0.3", + "picomatch": "^2.3.1" }, "engines": { - "node": ">=20.0.0" + "node": ">=8.6" } }, - "node_modules/listr2/node_modules/ansi-styles": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", - "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "node_modules/micromatch/node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "license": "MIT", "engines": { - "node": ">=12" + "node": ">=8.6" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/listr2/node_modules/emoji-regex": { - "version": "10.6.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", - "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", "dev": true, "license": "MIT" }, - "node_modules/listr2/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "node_modules/mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", "dev": true, "license": "MIT", - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4.0.0" } }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", - "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, "license": "MIT", - "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" - }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": ">= 0.6" } }, - "node_modules/loader-runner": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz", - "integrity": "sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "license": "MIT", - "engines": { - "node": ">=6.11.5" + "dependencies": { + "mime-db": "1.52.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "engines": { + "node": ">= 0.6" } }, - "node_modules/loader-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", - "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "license": "MIT", "engines": { - "node": ">= 12.13.0" + "node": ">=6" } }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", "dev": true, "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lodash": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz", - "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true, - "license": "MIT" + "license": "ISC" }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", "dev": true, "license": "MIT" }, - "node_modules/log-update": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", - "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", + "node_modules/minimatch": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, - "license": "MIT", + "license": "BlueOak-1.0.0", "dependencies": { - "ansi-escapes": "^7.0.0", - "cli-cursor": "^5.0.0", - "slice-ansi": "^7.1.0", - "strip-ansi": "^7.1.0", - "wrap-ansi": "^9.0.0" + "brace-expansion": "^5.0.5" }, "engines": { - "node": ">=18" + "node": "18 || 20 || >=22" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/log-update/node_modules/ansi-escapes": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz", - "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, "license": "MIT", - "dependencies": { - "environment": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/log-update/node_modules/ansi-styles": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", - "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "node_modules/minipass": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", "dev": true, - "license": "MIT", + "license": "BlueOak-1.0.0", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/log-update/node_modules/emoji-regex": { - "version": "10.6.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", - "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true, "license": "MIT" }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.2.tgz", - "integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==", + "node_modules/multimatch": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", + "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^6.2.1", - "is-fullwidth-code-point": "^5.0.0" + "@types/minimatch": "^3.0.3", + "array-differ": "^3.0.0", + "array-union": "^2.1.0", + "arrify": "^2.0.1", + "minimatch": "^3.0.4" }, "engines": { - "node": ">=18" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "node_modules/multimatch/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/multimatch/node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", "dev": true, "license": "MIT", "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/multimatch/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=18" + "node": "*" + } + }, + "node_modules/nanoid": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", - "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", "dev": true, "license": "MIT", - "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" + "bin": { + "napi-postinstall": "lib/cli.js" }, "engines": { - "node": ">=18" + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://opencollective.com/napi-postinstall" } }, - "node_modules/loose-envify": { + "node_modules/natural-compare": { "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "license": "MIT" + }, + "node_modules/next": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/next/-/next-16.2.6.tgz", + "integrity": "sha512-qOVgKJg1+At15NpeUP+eJgCHvTCgXsogweq87Ri/Ix7PkqQHg4sdaXmSFqKlgaIXE4kW0g25LE68W87UANlHtw==", "dev": true, "license": "MIT", "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" + "@next/env": "16.2.6", + "@swc/helpers": "0.5.15", + "baseline-browser-mapping": "^2.9.19", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" }, "bin": { - "loose-envify": "cli.js" + "next": "dist/bin/next" + }, + "engines": { + "node": ">=20.9.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "16.2.6", + "@next/swc-darwin-x64": "16.2.6", + "@next/swc-linux-arm64-gnu": "16.2.6", + "@next/swc-linux-arm64-musl": "16.2.6", + "@next/swc-linux-x64-gnu": "16.2.6", + "@next/swc-linux-x64-musl": "16.2.6", + "@next/swc-win32-arm64-msvc": "16.2.6", + "@next/swc-win32-x64-msvc": "16.2.6", + "sharp": "^0.34.5" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.51.1", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } } }, - "node_modules/loupe": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", - "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "dev": true, - "license": "MIT" + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "node_modules/next/node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", "dev": true, "license": "MIT", "dependencies": { - "tslib": "^2.0.3" + "client-only": "0.0.1" + }, + "engines": { + "node": ">= 12.0.0" + }, + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } } }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "yallist": "^3.0.2" + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "node_modules/lz-string": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", - "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", "dev": true, - "license": "MIT", - "bin": { - "lz-string": "bin/bin.js" - } + "license": "MIT" }, - "node_modules/magic-string": { - "version": "0.30.21", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", - "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", "dev": true, "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.5" - } + "optional": true }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/node-exports-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.0.tgz", + "integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==", "dev": true, "license": "MIT", "dependencies": { - "semver": "^6.0.0" + "array.prototype.flatmap": "^1.3.3", + "es-errors": "^1.3.0", + "object.entries": "^1.1.9", + "semver": "^6.3.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/make-dir/node_modules/semver": { + "node_modules/node-exports-info/node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", @@ -15491,199 +19512,286 @@ "semver": "bin/semver.js" } }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "tmpl": "1.0.5" - } + "license": "MIT" }, - "node_modules/math-intrinsics": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", - "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "node_modules/node-polyfill-webpack-plugin": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-2.0.1.tgz", + "integrity": "sha512-ZUMiCnZkP1LF0Th2caY6J/eKKoA0TefpoVa68m/LQU1I/mE8rGt4fNYGgNuCcK+aG8P8P43nbeJ2RqJMOL/Y1A==", "dev": true, "license": "MIT", + "dependencies": { + "assert": "^2.0.0", + "browserify-zlib": "^0.2.0", + "buffer": "^6.0.3", + "console-browserify": "^1.2.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.12.0", + "domain-browser": "^4.22.0", + "events": "^3.3.0", + "filter-obj": "^2.0.2", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "^1.0.1", + "process": "^0.11.10", + "punycode": "^2.1.1", + "querystring-es3": "^0.2.1", + "readable-stream": "^4.0.0", + "stream-browserify": "^3.0.0", + "stream-http": "^3.2.0", + "string_decoder": "^1.3.0", + "timers-browserify": "^2.0.12", + "tty-browserify": "^0.0.1", + "type-fest": "^2.14.0", + "url": "^0.11.0", + "util": "^0.12.4", + "vm-browserify": "^1.1.2" + }, "engines": { - "node": ">= 0.4" + "node": ">=12" + }, + "peerDependencies": { + "webpack": ">=5" } }, - "node_modules/mathml-tag-names": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-4.0.0.tgz", - "integrity": "sha512-aa6AU2Pcx0VP/XWnh8IGL0SYSgQHDT6Ucror2j2mXeFAlN3ahaNs8EZtG1YiticMkSLj3Gt6VPFfZogt7G5iFQ==", + "node_modules/node-polyfill-webpack-plugin/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, - "license": "MIT", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "node_modules/node-releases": { + "version": "2.0.44", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.44.tgz", + "integrity": "sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/mdn-data": { - "version": "2.27.1", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", - "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, - "license": "CC0-1.0" + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } }, - "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, - "license": "Unlicense", + "license": "BSD-2-Clause", "dependencies": { - "fs-monkey": "^1.0.4" + "boolbase": "^1.0.0" }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.23", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz", + "integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">= 4.0.0" + "node": ">=0.10.0" } }, - "node_modules/meow": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-14.1.0.tgz", - "integrity": "sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw==", + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "dev": true, "license": "MIT", "engines": { - "node": ">=20" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true, - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", "dev": true, "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" + }, "engines": { - "node": ">= 8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, "engines": { - "node": ">=8.6" + "node": ">= 0.4" } }, - "node_modules/micromatch/node_modules/picomatch": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", - "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "dev": true, "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" + }, "engines": { - "node": ">=8.6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", "dev": true, "license": "MIT", "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" }, - "bin": { - "miller-rabin": "bin/miller-rabin" + "engines": { + "node": ">= 0.4" } }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.3", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", - "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", - "dev": true, - "license": "MIT" - }, - "node_modules/mime": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", - "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, "license": "MIT", - "bin": { - "mime": "cli.js" + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=4.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", "dev": true, "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/objectorarray": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz", + "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==", "dev": true, - "license": "MIT", + "license": "ISC" + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" + "wrappy": "1" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, "engines": { "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mimic-function": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", - "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", + "node_modules/open": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz", + "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", "dev": true, "license": "MIT", + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "wsl-utils": "^0.1.0" + }, "engines": { "node": ">=18" }, @@ -15691,1233 +19799,1482 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, "engines": { - "node": ">=4" + "node": ">= 0.8.0" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true, - "license": "ISC" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", "dev": true, "license": "MIT" }, - "node_modules/minimatch": { - "version": "10.2.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", - "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", "dev": true, - "license": "BlueOak-1.0.0", + "license": "MIT", "dependencies": { - "brace-expansion": "^5.0.5" + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" }, "engines": { - "node": "18 || 20 || >=22" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/minipass": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", - "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "license": "BlueOak-1.0.0", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "node_modules/p-map": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz", + "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/multimatch": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", - "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", + "node_modules/p-queue": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.1.tgz", + "integrity": "sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==", "dev": true, "license": "MIT", "dependencies": { - "@types/minimatch": "^3.0.3", - "array-differ": "^3.0.0", - "array-union": "^2.1.0", - "arrify": "^2.0.1", - "minimatch": "^3.0.4" + "eventemitter3": "^5.0.1", + "p-timeout": "^6.1.2" }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/multimatch/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/p-timeout": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", + "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/multimatch/node_modules/brace-expansion": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", - "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "engines": { + "node": ">=6" } }, - "node_modules/multimatch/node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", "dev": true, - "license": "ISC", + "license": "BlueOak-1.0.0" + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true, + "license": "(MIT AND Zlib)" + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/nanoid": { - "version": "3.3.12", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", - "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" + "dependencies": { + "callsites": "^3.0.0" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">=6" } }, - "node_modules/napi-postinstall": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", - "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "node_modules/parse-asn1": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.9.tgz", + "integrity": "sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==", "dev": true, - "license": "MIT", - "bin": { - "napi-postinstall": "lib/cli.js" + "license": "ISC", + "dependencies": { + "asn1.js": "^4.10.1", + "browserify-aes": "^1.2.0", + "evp_bytestokey": "^1.0.3", + "pbkdf2": "^3.1.5", + "safe-buffer": "^5.2.1" }, "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/napi-postinstall" + "node": ">= 0.10" } }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true, - "license": "MIT" - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true, - "license": "MIT" - }, - "node_modules/next": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/next/-/next-16.2.6.tgz", - "integrity": "sha512-qOVgKJg1+At15NpeUP+eJgCHvTCgXsogweq87Ri/Ix7PkqQHg4sdaXmSFqKlgaIXE4kW0g25LE68W87UANlHtw==", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "license": "MIT", "dependencies": { - "@next/env": "16.2.6", - "@swc/helpers": "0.5.15", - "baseline-browser-mapping": "^2.9.19", - "caniuse-lite": "^1.0.30001579", - "postcss": "8.4.31", - "styled-jsx": "5.1.6" - }, - "bin": { - "next": "dist/bin/next" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" }, "engines": { - "node": ">=20.9.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "16.2.6", - "@next/swc-darwin-x64": "16.2.6", - "@next/swc-linux-arm64-gnu": "16.2.6", - "@next/swc-linux-arm64-musl": "16.2.6", - "@next/swc-linux-x64-gnu": "16.2.6", - "@next/swc-linux-x64-musl": "16.2.6", - "@next/swc-win32-arm64-msvc": "16.2.6", - "@next/swc-win32-x64-msvc": "16.2.6", - "sharp": "^0.34.5" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "@playwright/test": "^1.51.1", - "babel-plugin-react-compiler": "*", - "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", - "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", - "sass": "^1.3.0" + "node": ">=8" }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "@playwright/test": { - "optional": true - }, - "babel-plugin-react-compiler": { - "optional": true - }, - "sass": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/next/node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "node_modules/parse5": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "entities": "^6.0.0" }, - "engines": { - "node": "^10 || ^12 || >=14" + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/next/node_modules/styled-jsx": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", - "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, "license": "MIT", "dependencies": { - "client-only": "0.0.1" - }, - "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "node_modules/path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", "dev": true, "license": "MIT", "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" + "process": "^0.11.1", + "util": "^0.10.3" } }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", "dev": true, "license": "MIT" }, - "node_modules/node-addon-api": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", - "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "license": "MIT", - "optional": true + "engines": { + "node": ">=8" + } }, - "node_modules/node-exports-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.0.tgz", - "integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, "license": "MIT", - "dependencies": { - "array.prototype.flatmap": "^1.3.3", - "es-errors": "^1.3.0", - "object.entries": "^1.1.9", - "semver": "^6.3.1" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.10.0" } }, - "node_modules/node-exports-info/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true, "license": "MIT" }, - "node_modules/node-polyfill-webpack-plugin": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-2.0.1.tgz", - "integrity": "sha512-ZUMiCnZkP1LF0Th2caY6J/eKKoA0TefpoVa68m/LQU1I/mE8rGt4fNYGgNuCcK+aG8P8P43nbeJ2RqJMOL/Y1A==", + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, - "license": "MIT", + "license": "BlueOak-1.0.0", "dependencies": { - "assert": "^2.0.0", - "browserify-zlib": "^0.2.0", - "buffer": "^6.0.3", - "console-browserify": "^1.2.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.12.0", - "domain-browser": "^4.22.0", - "events": "^3.3.0", - "filter-obj": "^2.0.2", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "^1.0.1", - "process": "^0.11.10", - "punycode": "^2.1.1", - "querystring-es3": "^0.2.1", - "readable-stream": "^4.0.0", - "stream-browserify": "^3.0.0", - "stream-http": "^3.2.0", - "string_decoder": "^1.3.0", - "timers-browserify": "^2.0.12", - "tty-browserify": "^0.0.1", - "type-fest": "^2.14.0", - "url": "^0.11.0", - "util": "^0.12.4", - "vm-browserify": "^1.1.2" + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=12" + "node": ">=16 || 14 >=14.18" }, - "peerDependencies": { - "webpack": ">=5" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/node-polyfill-webpack-plugin/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, - "license": "(MIT OR CC0-1.0)", + "license": "ISC" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/node-releases": { - "version": "2.0.44", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.44.tgz", - "integrity": "sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ==", + "node_modules/path-unified": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/path-unified/-/path-unified-0.2.0.tgz", + "integrity": "sha512-MNKqvrKbbbb5p7XHXV6ZAsf/1f/yJQa13S/fcX0uua8ew58Tgc6jXV+16JyAbnR/clgCH+euKDxrF2STxMHdrg==", "dev": true, "license": "MIT" }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/path/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true, + "license": "ISC" + }, + "node_modules/path/node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", "dev": true, "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "inherits": "2.0.3" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "node_modules/pathval": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", + "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", "dev": true, "license": "MIT", - "dependencies": { - "path-key": "^3.0.0" - }, "engines": { - "node": ">=8" + "node": ">= 14.16" } }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "node_modules/pbkdf2": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.5.tgz", + "integrity": "sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "boolbase": "^1.0.0" + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "ripemd160": "^2.0.3", + "safe-buffer": "^5.2.1", + "sha.js": "^2.4.12", + "to-buffer": "^1.2.1" }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "engines": { + "node": ">= 0.10" } }, - "node_modules/nwsapi": { - "version": "2.2.23", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz", - "integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==", + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true, - "license": "MIT" + "license": "ISC" }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 6" } }, - "node_modules/object-is": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", - "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1" + "find-up": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, "engines": { - "node": ">= 0.4" + "node": ">=8" } }, - "node_modules/object.assign": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", - "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.8", - "call-bound": "^1.0.3", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0", - "has-symbols": "^1.1.0", - "object-keys": "^1.1.1" + "p-try": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/object.entries": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", - "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.8", - "call-bound": "^1.0.4", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.1.1" + "p-limit": "^2.2.0" }, "engines": { - "node": ">= 0.4" + "node": ">=8" } }, - "node_modules/object.fromentries": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", - "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0" - }, "engines": { "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.values": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", - "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "node_modules/postcss": { + "version": "8.5.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", + "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", "dependencies": { - "call-bind": "^1.0.8", - "call-bound": "^1.0.3", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10 || ^12 || >=14" } }, - "node_modules/objectorarray": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz", - "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==", - "dev": true, - "license": "ISC" - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "node_modules/postcss-attribute-case-insensitive": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-8.0.0.tgz", + "integrity": "sha512-fovIPEV35c2JzVXdmP+sp2xirbBMt54J+upU8u6TSj410kUU5+axgEzvBBSAX8KCybze8CFCelzFAw/FfWg2TA==", "dev": true, - "license": "ISC", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "dependencies": { - "wrappy": "1" + "postcss-selector-parser": "^7.1.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/postcss-calc": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.1.tgz", + "integrity": "sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==", "dev": true, "license": "MIT", "dependencies": { - "mimic-fn": "^2.1.0" + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=6" + "node": "^18.12 || ^20.9 || >=22.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4.38" } }, - "node_modules/open": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz", - "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", "dev": true, "license": "MIT", "dependencies": { - "default-browser": "^5.2.1", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "wsl-utils": "^0.1.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=18" + "node": ">=7.6.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4.6" } }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "node_modules/postcss-color-functional-notation": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-8.0.4.tgz", + "integrity": "sha512-Zn3yPgBFakVXthmA2n1NUMY7gdhuFUB/DrUJ0Eug/d0rl9wahMQZykp4NVTJLGzQrDUwZ2rzjiTeW5udxFNG8A==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.5" + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" }, "engines": { - "node": ">= 0.8.0" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "node_modules/postcss-color-functional-notation/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", "dev": true, - "license": "MIT" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=20.19.0" + } }, - "node_modules/own-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", - "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "node_modules/postcss-color-functional-notation/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.6", - "object-keys": "^1.1.1", - "safe-push-apply": "^1.0.0" - }, "engines": { - "node": ">= 0.4" + "node": ">=20.19.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/postcss-color-functional-notation/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "yocto-queue": "^0.1.0" + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" }, "engines": { - "node": ">=10" + "node": ">=20.19.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/postcss-color-functional-notation/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" - }, "engines": { - "node": ">=10" + "node": ">=20.19.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/p-map": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz", - "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==", + "node_modules/postcss-color-functional-notation/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=20.19.0" } }, - "node_modules/p-queue": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.1.tgz", - "integrity": "sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==", + "node_modules/postcss-color-hex-alpha": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-11.0.0.tgz", + "integrity": "sha512-NCGa6vjIyrjosz9GqRxVKbONBklz5TeipYqTJp3IqbnBWlBq5e5EMtG6MaX4vqk9LzocPfMQkuRK9tfk+OQuKg==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "eventemitter3": "^5.0.1", - "p-timeout": "^6.1.2" + "@csstools/utilities": "^3.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=18" + "node": ">=20.19.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/p-timeout": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", - "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", + "node_modules/postcss-color-rebeccapurple": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-11.0.0.tgz", + "integrity": "sha512-g9561mx7cbdqx7XeO/L+lJzVlzu7bICyXr72efBVKZGxIhvBBJf9fGXn3Cb6U4Bwh3LbzQO2e9NWBLVYdX5Eag==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/utilities": "^3.0.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=14.16" + "node": ">=20.19.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/postcss-colormin": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.10.tgz", + "integrity": "sha512-yFr6JezOolHLta/buLE71VKPh2mXursp4saVe98/ol8ZnEWhL+racShqPKlvd/DKWLre/39B6HhcMXf7RZ3hxg==", "dev": true, "license": "MIT", + "dependencies": { + "@colordx/core": "^5.4.3", + "browserslist": "^4.28.2", + "caniuse-api": "^3.0.0", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=6" + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/package-json-from-dist": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true, - "license": "BlueOak-1.0.0" - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", - "dev": true, - "license": "(MIT AND Zlib)" - }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "node_modules/postcss-convert-values": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.12.tgz", + "integrity": "sha512-xurKu5qqk4viR3Cp3p4xBR4KfnZm4w4ys6+UBwBmeuBSNkH7+DtLnYOYnOffgtE4yx8sH9S1VZ6RAAvROXzP2Q==", "dev": true, "license": "MIT", "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" + "browserslist": "^4.28.2", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "node_modules/postcss-custom-media": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-12.0.1.tgz", + "integrity": "sha512-66syE14+VeqkUf0rRX0bvbTCbNRJF132jD+ceo8th1dap2YJEAqpdh5uG98CE3IbgHT7m9XM0GIlOazNWqQdeA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "callsites": "^3.0.0" + "@csstools/cascade-layer-name-parser": "^3.0.0", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/media-query-list-parser": "^5.0.0" }, "engines": { - "node": ">=6" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/parse-asn1": { - "version": "5.1.9", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.9.tgz", - "integrity": "sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==", + "node_modules/postcss-custom-media/node_modules/@csstools/cascade-layer-name-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-3.0.0.tgz", + "integrity": "sha512-/3iksyevwRfSJx5yH0RkcrcYXwuhMQx3Juqf40t97PeEy2/Mz2TItZ/z/216qpe4GgOyFBP8MKIwVvytzHmfIQ==", "dev": true, - "license": "ISC", - "dependencies": { - "asn1.js": "^4.10.1", - "browserify-aes": "^1.2.0", - "evp_bytestokey": "^1.0.3", - "pbkdf2": "^3.1.5", - "safe-buffer": "^5.2.1" - }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "engines": { - "node": ">= 0.10" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/postcss-custom-media/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, "engines": { - "node": ">=8" + "node": ">=20.19.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/parse5": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", - "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "node_modules/postcss-custom-media/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "entities": "^6.0.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "engines": { + "node": ">=20.19.0" } }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "node_modules/postcss-custom-media/node_modules/@csstools/media-query-list-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-5.0.0.tgz", + "integrity": "sha512-T9lXmZOfnam3eMERPsszjY5NK0jX8RmThmmm99FZ8b7z8yMaFZWKwLWGZuTwdO3ddRY5fy13GmmEYZXB4I98Eg==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/path": { - "version": "0.12.7", - "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", + "node_modules/postcss-custom-properties": { + "version": "15.0.1", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-15.0.1.tgz", + "integrity": "sha512-cuyq8sd8dLY0GLbelz1KB8IMIoDECo6RVXMeHeXY2Uw3Q05k/d1GVITdaKLsheqrHbnxlwxzSRZQQ5u+rNtbMg==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "dependencies": { - "process": "^0.11.1", - "util": "^0.10.3" + "@csstools/cascade-layer-name-parser": "^3.0.0", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/utilities": "^3.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", - "dev": true, - "license": "MIT" - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/postcss-custom-properties/node_modules/@csstools/cascade-layer-name-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-3.0.0.tgz", + "integrity": "sha512-/3iksyevwRfSJx5yH0RkcrcYXwuhMQx3Juqf40t97PeEy2/Mz2TItZ/z/216qpe4GgOyFBP8MKIwVvytzHmfIQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": ">=8" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "node_modules/postcss-custom-properties/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/postcss-custom-properties/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": ">=8" + "node": ">=20.19.0" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" - }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "node_modules/postcss-custom-selectors": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-9.0.1.tgz", + "integrity": "sha512-2XBELy4DmdVKimChfaZ2id9u9CSGYQhiJ53SvlfBvMTzLMW2VxuMb9rHsMSQw9kRq/zSbhT5x13EaK8JSmK8KQ==", "dev": true, - "license": "BlueOak-1.0.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + "@csstools/cascade-layer-name-parser": "^3.0.0", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "postcss-selector-parser": "^7.1.1" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": ">=20.19.0" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/postcss-custom-selectors/node_modules/@csstools/cascade-layer-name-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-3.0.0.tgz", + "integrity": "sha512-/3iksyevwRfSJx5yH0RkcrcYXwuhMQx3Juqf40t97PeEy2/Mz2TItZ/z/216qpe4GgOyFBP8MKIwVvytzHmfIQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": ">=8" - } - }, - "node_modules/path-unified": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/path-unified/-/path-unified-0.2.0.tgz", - "integrity": "sha512-MNKqvrKbbbb5p7XHXV6ZAsf/1f/yJQa13S/fcX0uua8ew58Tgc6jXV+16JyAbnR/clgCH+euKDxrF2STxMHdrg==", - "dev": true, - "license": "MIT" - }, - "node_modules/path/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true, - "license": "ISC" - }, - "node_modules/path/node_modules/util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "2.0.3" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/pathval": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", - "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", + "node_modules/postcss-custom-selectors/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": ">= 14.16" + "node": ">=20.19.0" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/pbkdf2": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.5.tgz", - "integrity": "sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==", + "node_modules/postcss-custom-selectors/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "ripemd160": "^2.0.3", - "safe-buffer": "^5.2.1", - "sha.js": "^2.4.12", - "to-buffer": "^1.2.1" - }, "engines": { - "node": ">= 0.10" + "node": ">=20.19.0" } }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "node_modules/postcss-dir-pseudo-class": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-10.0.0.tgz", + "integrity": "sha512-DmtIzULpyC8XaH4b5AaUgt4Jic4QmrECqidNCdR7u7naQFdnxX80YI06u238a+ZVRXwURDxVzy0s/UQnWmpVeg==", "dev": true, - "license": "ISC" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-selector-parser": "^7.1.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } }, - "node_modules/picomatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", - "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "node_modules/postcss-discard-comments": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.8.tgz", + "integrity": "sha512-CvvS5S9WrXblFXCEJ9nVo+4z+eA7zSC7Z88V1HEJuwlQhlFnYTIjg1xJY+BCUiG2bvICap2tXii4mP22BD108Q==", "dev": true, "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^7.1.1" + }, "engines": { - "node": ">=12" + "node": "^18.12.0 || ^20.9.0 || >=22.0" }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/pirates": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", - "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "node_modules/postcss-discard-duplicates": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.4.tgz", + "integrity": "sha512-VBNn1+EuMZkeGVVtz0gRfbNGtx9IFgAsAV+E2pHtXPrp4qfGBkhTIiAuE/wrb+Y6Pakg9NewAlfTpYIFAWODtw==", "dev": true, "license": "MIT", "engines": { - "node": ">= 6" + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/postcss-discard-empty": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.3.tgz", + "integrity": "sha512-M2pyjQCU+/7cMHVtL6bKTHjv0lZnPLMpicgr67Dlth7AbuV9gjVTtUqaRwn6Pp6BwSDspUzhz8SaUrRykJU5Dw==", "dev": true, "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/postcss-discard-overridden": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.3.tgz", + "integrity": "sha512-aNovXo9UsZuRNLzHJtp13lHIvinDPfiXBPePpXkSjCbgp++iU2FqE+YxvjIsg6EdyPZsASFbfu+JcBFVsErXIQ==", "dev": true, "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/postcss-double-position-gradients": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-7.0.1.tgz", + "integrity": "sha512-M69I4EolEGwiYa0KmxKWg4zZp2DxhlNM0Bz12OvHCj930GXDVCvFhdWNGsRscz6BIijN6tFryzSFsy8kMLyD5Q==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "p-locate": "^4.1.0" + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/postcss-focus-visible": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-11.0.0.tgz", + "integrity": "sha512-VG1a9kBKizUBWS66t5xyB4uLONBnvZLCmZXxT40FALu8EF0QgVZBYy5ApC0KhmpHsv+pvHMJHB3agKHwmocWjw==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "p-try": "^2.0.0" + "postcss-selector-parser": "^7.1.1" }, "engines": { - "node": ">=6" + "node": ">=20.19.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/postcss-focus-within": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-10.0.0.tgz", + "integrity": "sha512-dvql0fzUTG+gcJYp+KTbag5vAjuo94LDYZHkqDV1rnf5gPGer1v/SrmIZBdvKU8moep3HbcbujqGjzSb3DL53Q==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "p-limit": "^2.2.0" + "postcss-selector-parser": "^7.1.1" }, "engines": { - "node": ">=8" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/possible-typed-array-names": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", - "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.4" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/postcss": { - "version": "8.5.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", - "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "node_modules/postcss-gap-properties": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-7.0.0.tgz", + "integrity": "sha512-PSDF2QoZMRUbsINvXObQgxx4HExRP85QTT8qS/YN9fBsCPWCqUuwqAD6E6PNp0BqL/jU1eyWUBORaOK/J/9LDA==", "dev": true, "funding": [ { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" + "type": "github", + "url": "https://github.com/sponsors/csstools" }, { - "type": "github", - "url": "https://github.com/sponsors/ai" + "type": "opencollective", + "url": "https://opencollective.com/csstools" } ], - "license": "MIT", - "dependencies": { - "nanoid": "^3.3.11", - "picocolors": "^1.1.1", - "source-map-js": "^1.2.1" - }, + "license": "MIT-0", "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/postcss-calc": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.1.tgz", - "integrity": "sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==", + "node_modules/postcss-image-set-function": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-8.0.0.tgz", + "integrity": "sha512-rEGNkOkNusf4+IuMmfEoIdLuVmvbExGbmG+MIsyV6jR5UaWSoyPcAYHV/PxzVDCmudyF+2Nh/o6Ub2saqUdnuA==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "postcss-selector-parser": "^7.0.0", + "@csstools/utilities": "^3.0.0", "postcss-value-parser": "^4.2.0" }, "engines": { - "node": "^18.12 || ^20.9 || >=22.0" + "node": ">=20.19.0" }, "peerDependencies": { - "postcss": "^8.4.38" + "postcss": "^8.4" } }, - "node_modules/postcss-colormin": { - "version": "7.0.10", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.10.tgz", - "integrity": "sha512-yFr6JezOolHLta/buLE71VKPh2mXursp4saVe98/ol8ZnEWhL+racShqPKlvd/DKWLre/39B6HhcMXf7RZ3hxg==", + "node_modules/postcss-lab-function": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-8.0.4.tgz", + "integrity": "sha512-dqcJSzVasdELD9xqJ1wfP95uzP57J6zFd80c7S3AWK127H9zwqR9Kbk5ZgyIfN2DiMStI7Vq8E7ablXNeTvpew==", "dev": true, - "license": "MIT", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "@colordx/core": "^5.4.3", - "browserslist": "^4.28.2", - "caniuse-api": "^3.0.0", - "postcss-value-parser": "^4.2.0" + "@csstools/css-color-parser": "^4.1.1", + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/utilities": "^3.0.0" }, "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "node": ">=20.19.0" }, "peerDependencies": { - "postcss": "^8.5.13" + "postcss": "^8.4" } }, - "node_modules/postcss-convert-values": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.12.tgz", - "integrity": "sha512-xurKu5qqk4viR3Cp3p4xBR4KfnZm4w4ys6+UBwBmeuBSNkH7+DtLnYOYnOffgtE4yx8sH9S1VZ6RAAvROXzP2Q==", + "node_modules/postcss-lab-function/node_modules/@csstools/color-helpers": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", + "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", "dev": true, - "license": "MIT", - "dependencies": { - "browserslist": "^4.28.2", - "postcss-value-parser": "^4.2.0" - }, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" - }, - "peerDependencies": { - "postcss": "^8.5.13" + "node": ">=20.19.0" } }, - "node_modules/postcss-discard-comments": { - "version": "7.0.8", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.8.tgz", - "integrity": "sha512-CvvS5S9WrXblFXCEJ9nVo+4z+eA7zSC7Z88V1HEJuwlQhlFnYTIjg1xJY+BCUiG2bvICap2tXii4mP22BD108Q==", + "node_modules/postcss-lab-function/node_modules/@csstools/css-calc": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^7.1.1" - }, "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "node": ">=20.19.0" }, "peerDependencies": { - "postcss": "^8.5.13" + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/postcss-discard-duplicates": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.4.tgz", - "integrity": "sha512-VBNn1+EuMZkeGVVtz0gRfbNGtx9IFgAsAV+E2pHtXPrp4qfGBkhTIiAuE/wrb+Y6Pakg9NewAlfTpYIFAWODtw==", + "node_modules/postcss-lab-function/node_modules/@csstools/css-color-parser": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", + "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", + "dependencies": { + "@csstools/color-helpers": "^6.0.2", + "@csstools/css-calc": "^3.2.1" + }, "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "node": ">=20.19.0" }, "peerDependencies": { - "postcss": "^8.5.13" + "@csstools/css-parser-algorithms": "^4.0.0", + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/postcss-discard-empty": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.3.tgz", - "integrity": "sha512-M2pyjQCU+/7cMHVtL6bKTHjv0lZnPLMpicgr67Dlth7AbuV9gjVTtUqaRwn6Pp6BwSDspUzhz8SaUrRykJU5Dw==", + "node_modules/postcss-lab-function/node_modules/@csstools/css-parser-algorithms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", + "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "node": ">=20.19.0" }, "peerDependencies": { - "postcss": "^8.5.13" + "@csstools/css-tokenizer": "^4.0.0" } }, - "node_modules/postcss-discard-overridden": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.3.tgz", - "integrity": "sha512-aNovXo9UsZuRNLzHJtp13lHIvinDPfiXBPePpXkSjCbgp++iU2FqE+YxvjIsg6EdyPZsASFbfu+JcBFVsErXIQ==", + "node_modules/postcss-lab-function/node_modules/@csstools/css-tokenizer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", + "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], "license": "MIT", "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" - }, - "peerDependencies": { - "postcss": "^8.5.13" + "node": ">=20.19.0" } }, "node_modules/postcss-loader": { @@ -16979,6 +21336,32 @@ } } }, + "node_modules/postcss-logical": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-9.0.0.tgz", + "integrity": "sha512-A4LNd9dk3q/juEUA9Gd8ALhBO3TeOeYurnyHLlf2aAToD94VHR8c5Uv7KNmf8YVRhTxvWsyug4c5fKtARzyIRQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", @@ -17156,6 +21539,34 @@ "postcss": "^8.1.0" } }, + "node_modules/postcss-nesting": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-14.0.0.tgz", + "integrity": "sha512-YGFOfVrjxYfeGTS5XctP1WCI5hu8Lr9SmntjfRC+iX5hCihEO+QZl9Ra+pkjqkgoVdDKvb2JccpElcowhZtzpw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/selector-resolve-nested": "^4.0.0", + "@csstools/selector-specificity": "^6.0.0", + "postcss-selector-parser": "^7.1.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, "node_modules/postcss-normalize-charset": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-7.0.3.tgz", @@ -17298,6 +21709,29 @@ "postcss": "^8.5.13" } }, + "node_modules/postcss-opacity-percentage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz", + "integrity": "sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==", + "dev": true, + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, "node_modules/postcss-ordered-values": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.4.tgz", @@ -17315,6 +21749,194 @@ "postcss": "^8.5.13" } }, + "node_modules/postcss-overflow-shorthand": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-7.0.0.tgz", + "integrity": "sha512-9SLpjoUdGRoRrzoOdX66HbUs0+uDwfIAiXsRa7piKGOqPd6F4ZlON9oaDSP5r1Qpgmzw5L9Ht0undIK6igJPMA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-11.0.0.tgz", + "integrity": "sha512-fAifpyjQ+fuDRp2nmF95WbotqbpjdazebedahXdfBxy5sHembOLpBQ1cHveZD9ZmjK26tYM8tikeNaUlp/KfHA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-preset-env": { + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-11.3.0.tgz", + "integrity": "sha512-PpijTuY+NT35vvk7us0pw9lJVrsZZWukjONZsza2Kq1Gag8nrUXRkgdKdxyyhZPJ6R43L3/nLpspUK99TmU9xg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/postcss-alpha-function": "^2.0.5", + "@csstools/postcss-cascade-layers": "^6.0.0", + "@csstools/postcss-color-function": "^5.0.4", + "@csstools/postcss-color-function-display-p3-linear": "^2.0.4", + "@csstools/postcss-color-mix-function": "^4.0.4", + "@csstools/postcss-color-mix-variadic-function-arguments": "^2.0.4", + "@csstools/postcss-container-rule-prelude-list": "^1.0.1", + "@csstools/postcss-content-alt-text": "^3.0.1", + "@csstools/postcss-contrast-color-function": "^3.0.4", + "@csstools/postcss-exponential-functions": "^3.0.3", + "@csstools/postcss-font-format-keywords": "^5.0.0", + "@csstools/postcss-font-width-property": "^1.0.0", + "@csstools/postcss-gamut-mapping": "^3.0.4", + "@csstools/postcss-gradients-interpolation-method": "^6.0.4", + "@csstools/postcss-hwb-function": "^5.0.4", + "@csstools/postcss-ic-unit": "^5.0.1", + "@csstools/postcss-image-function": "^1.0.0", + "@csstools/postcss-initial": "^3.0.0", + "@csstools/postcss-is-pseudo-class": "^6.0.0", + "@csstools/postcss-light-dark-function": "^3.0.1", + "@csstools/postcss-logical-float-and-clear": "^4.0.0", + "@csstools/postcss-logical-overflow": "^3.0.0", + "@csstools/postcss-logical-overscroll-behavior": "^3.0.0", + "@csstools/postcss-logical-resize": "^4.0.0", + "@csstools/postcss-logical-viewport-units": "^4.0.0", + "@csstools/postcss-media-minmax": "^3.0.3", + "@csstools/postcss-media-queries-aspect-ratio-number-values": "^4.0.0", + "@csstools/postcss-mixins": "^1.0.0", + "@csstools/postcss-nested-calc": "^5.0.0", + "@csstools/postcss-normalize-display-values": "^5.0.1", + "@csstools/postcss-oklab-function": "^5.0.4", + "@csstools/postcss-position-area-property": "^2.0.0", + "@csstools/postcss-progressive-custom-properties": "^5.1.0", + "@csstools/postcss-property-rule-prelude-list": "^2.0.0", + "@csstools/postcss-random-function": "^3.0.3", + "@csstools/postcss-relative-color-syntax": "^4.0.4", + "@csstools/postcss-scope-pseudo-class": "^5.0.0", + "@csstools/postcss-sign-functions": "^2.0.3", + "@csstools/postcss-stepped-value-functions": "^5.0.3", + "@csstools/postcss-syntax-descriptor-syntax-production": "^2.0.0", + "@csstools/postcss-system-ui-font-family": "^2.0.0", + "@csstools/postcss-text-decoration-shorthand": "^5.0.3", + "@csstools/postcss-trigonometric-functions": "^5.0.3", + "@csstools/postcss-unset-value": "^5.0.0", + "autoprefixer": "^10.5.0", + "browserslist": "^4.28.1", + "css-blank-pseudo": "^8.0.1", + "css-has-pseudo": "^8.0.0", + "css-prefers-color-scheme": "^11.0.0", + "cssdb": "^8.9.0", + "postcss-attribute-case-insensitive": "^8.0.0", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^8.0.4", + "postcss-color-hex-alpha": "^11.0.0", + "postcss-color-rebeccapurple": "^11.0.0", + "postcss-custom-media": "^12.0.1", + "postcss-custom-properties": "^15.0.1", + "postcss-custom-selectors": "^9.0.1", + "postcss-dir-pseudo-class": "^10.0.0", + "postcss-double-position-gradients": "^7.0.1", + "postcss-focus-visible": "^11.0.0", + "postcss-focus-within": "^10.0.0", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^7.0.0", + "postcss-image-set-function": "^8.0.0", + "postcss-lab-function": "^8.0.4", + "postcss-logical": "^9.0.0", + "postcss-nesting": "^14.0.0", + "postcss-opacity-percentage": "^3.0.0", + "postcss-overflow-shorthand": "^7.0.0", + "postcss-page-break": "^3.0.4", + "postcss-place": "^11.0.0", + "postcss-pseudo-class-any-link": "^11.0.0", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^9.0.0" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-11.0.0.tgz", + "integrity": "sha512-DNFZ4GMa3C3pU5dM+UCTG1CEeLtS1ZqV5DKSqCTJQMn1G5jnd/30fS8+A7H4o5bSD3MOcnx+VgI+xPE9Z5Wvig==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "postcss-selector-parser": "^7.1.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, "node_modules/postcss-reduce-initial": { "version": "7.0.9", "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.9.tgz", @@ -17348,6 +21970,16 @@ "postcss": "^8.5.13" } }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, "node_modules/postcss-resolve-nested-selector": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz", @@ -17409,6 +22041,32 @@ "postcss": "^8.4.29" } }, + "node_modules/postcss-selector-not": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-9.0.0.tgz", + "integrity": "sha512-xhAtTdHnVU2M/CrpYOPyRUvg3njhVlKmn2GNYXDaRJV9Ygx4d5OkSkc7NINzjUqnbDFtaKXlISOBeyMXU/zyFQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^7.1.1" + }, + "engines": { + "node": ">=20.19.0" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, "node_modules/postcss-selector-parser": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", From 7a543fe9f423ec6c4865f561e108f5cc8e90c578 Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Wed, 20 May 2026 09:53:06 +0300 Subject: [PATCH 06/17] postcss config is added for layer wrapping design --- eslint.config.mjs | 7 +++++++ postcss.config.mjs | 7 +++++++ src/scripts/nextjsPostcssWrapLayer.cjs | 24 ++++++++++++++++++++++++ 3 files changed, 38 insertions(+) create mode 100644 postcss.config.mjs create mode 100644 src/scripts/nextjsPostcssWrapLayer.cjs diff --git a/eslint.config.mjs b/eslint.config.mjs index ec816bc..e23601b 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -4,6 +4,7 @@ import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended" import reactHooks from "eslint-plugin-react-hooks"; import react from "eslint-plugin-react"; import compat from "eslint-plugin-compat"; +import globals from "globals"; export default [ js.configs.recommended, @@ -13,6 +14,12 @@ export default [ files: ["**/*.js", "**/*.jsx", "**/*.mjs", "**/*.cjs"], ...typescript.configs.disableTypeChecked, }, + { + files: ["**/*.cjs"], + languageOptions: { + globals: globals.commonjs, + }, + }, { files: ["**/*.{js,jsx,ts,tsx}"], plugins: { diff --git a/postcss.config.mjs b/postcss.config.mjs new file mode 100644 index 0000000..f5ec3aa --- /dev/null +++ b/postcss.config.mjs @@ -0,0 +1,7 @@ +import { createRequire } from "module"; + +const require = createRequire(import.meta.url); + +export default { + plugins: [require.resolve("./src/scripts/nextjsPostcssWrapLayer.cjs")], +}; diff --git a/src/scripts/nextjsPostcssWrapLayer.cjs b/src/scripts/nextjsPostcssWrapLayer.cjs new file mode 100644 index 0000000..8765b12 --- /dev/null +++ b/src/scripts/nextjsPostcssWrapLayer.cjs @@ -0,0 +1,24 @@ +const plugin = () => ({ + postcssPlugin: "postcss-wrap-layer", + + Once(root, { atRule }) { + let alreadyLayered = false; + + root.walkAtRules("layer", () => { + alreadyLayered = true; + }); + + if (!alreadyLayered) { + const nodes = [...root.nodes]; + root.removeAll(); + + const layerRule = atRule({ name: "layer", params: "motif-ui" }); + nodes.forEach(node => layerRule.append(node)); + root.append(layerRule); + } + }, +}); + +plugin.postcss = true; + +module.exports = plugin; From 99fdcef229fe1e355ce189906b2a360092340d7b Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Wed, 20 May 2026 12:08:57 +0300 Subject: [PATCH 07/17] css specificity error is fixed with single file --- package-lock.json | 832 +++++++++--------- postcss.config.js | 14 - postcss.config.mjs | 6 +- rollup.config.mjs | 4 +- src/scripts/postcss-wrap-layer.js | 26 - src/scripts/wrap-with-layer.mjs | 29 - ...xtjsPostcssWrapLayer.cjs => wrapLayer.mjs} | 12 +- 7 files changed, 442 insertions(+), 481 deletions(-) delete mode 100644 postcss.config.js delete mode 100644 src/scripts/postcss-wrap-layer.js delete mode 100644 src/scripts/wrap-with-layer.mjs rename src/scripts/{nextjsPostcssWrapLayer.cjs => wrapLayer.mjs} (64%) diff --git a/package-lock.json b/package-lock.json index fa73c98..1db6b94 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2152,9 +2152,9 @@ } }, "node_modules/@bundled-es-modules/glob/node_modules/lru-cache": { - "version": "11.3.6", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.3.6.tgz", - "integrity": "sha512-Gf/KoL3C/MlI7Bt0PGI9I+TeTC/I6r/csU58N4BSNc4lppLBeKsOdFYkK+dX0ABDUMJNfCHTyPpzwwO21Awd3A==", + "version": "11.5.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.5.0.tgz", + "integrity": "sha512-5YgH9UJd7wVb9hIouI2adWpgqrrICkt070Dnj8EUY1+B4B2P9eRLPAkAAo6NICA7CEhOIeBHl46u9zSNpNu7zA==", "dev": true, "license": "BlueOak-1.0.0", "engines": { @@ -2225,13 +2225,13 @@ } }, "node_modules/@cacheable/memory": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@cacheable/memory/-/memory-2.0.8.tgz", - "integrity": "sha512-FvEb29x5wVwu/Kf93IWwsOOEuhHh6dYCJF3vcKLzXc0KXIW181AOzv6ceT4ZpBHDvAfG60eqb+ekmrnLHIy+jw==", + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@cacheable/memory/-/memory-2.0.9.tgz", + "integrity": "sha512-HdMx6DoGywB30vacDbBsITbIX4pgFqj1zsrV58jZBUw3klzkNoXhj7qOqAgledhxG7YZI5rBSJg7Zp8/VG0DuA==", "dev": true, "license": "MIT", "dependencies": { - "@cacheable/utils": "^2.4.0", + "@cacheable/utils": "^2.4.1", "@keyv/bigmap": "^1.3.1", "hookified": "^1.15.1", "keyv": "^5.6.0" @@ -2433,9 +2433,9 @@ } }, "node_modules/@csstools/css-syntax-patches-for-csstree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.3.tgz", - "integrity": "sha512-SH60bMfrRCJF3morcdk57WklujF4Jr/EsQUzqkarfHXEFcAR1gg7fS/chAE922Sehgzc1/+Tz5H3Ypa1HiEKrg==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.4.tgz", + "integrity": "sha512-wgsqt92b7C7tQhIdPNxj0n9zuUbQlvAuI1exyzeNrOKOi62SD7ren8zqszmpVREjAOqg8cD2FqYhQfAuKjk4sw==", "dev": true, "funding": [ { @@ -8162,16 +8162,22 @@ } }, "node_modules/@napi-rs/wasm-runtime": { - "version": "0.2.12", - "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", - "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz", + "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==", "dev": true, "license": "MIT", "optional": true, "dependencies": { - "@emnapi/core": "^1.4.3", - "@emnapi/runtime": "^1.4.3", - "@tybys/wasm-util": "^0.10.0" + "@tybys/wasm-util": "^0.10.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" + }, + "peerDependencies": { + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1" } }, "node_modules/@neoconfetti/react": { @@ -8386,9 +8392,9 @@ } }, "node_modules/@oxc-project/types": { - "version": "0.129.0", - "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.129.0.tgz", - "integrity": "sha512-3oz8m3FGdr2nDXVqmFUw7jolKliC4MoyXYIG2c7gpjBnzUWQpUGIYcXYKxTdTi+N2jusvt610ckTMkxdwHkYEg==", + "version": "0.130.0", + "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.130.0.tgz", + "integrity": "sha512-ibD2usx9JRu7f5pu2tMKMI4cpA4NgXJQoYRP4pQ7Pxmn1l6k/53qWtQWZayhYy3X4QZkt90Ot+mJEaeXouio6Q==", "dev": true, "license": "MIT", "peer": true, @@ -8795,9 +8801,9 @@ } }, "node_modules/@rolldown/binding-android-arm64": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.0.tgz", - "integrity": "sha512-TWMZnRLMe63C2Lhyicviu7ZHaU4kxa6PS3rofvc9GmcvptzNN11BcfQ4Sl7MwTOsisQoa2keB/EBdNCAnUo8vA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.1.tgz", + "integrity": "sha512-fJI3I0r3C3Oj/zdBCpaCmBRZYf07xpaq4yCfDDoSFm+beWNzbIl26puW8RraUdugoJw/95zerNOn6jasAhzSmg==", "cpu": [ "arm64" ], @@ -8813,9 +8819,9 @@ } }, "node_modules/@rolldown/binding-darwin-arm64": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.0.tgz", - "integrity": "sha512-6XcD+8k0gPVItNagEw78/qqcBDwKcwDYS8V2hRmVsfUSIrd8cWe/CBvRDI5toqFyPfj+FJr6t8U6Xj2P2prEew==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.1.tgz", + "integrity": "sha512-cKnAhWEsV7TPcA/5EAteDp6KcJZBQ2G+BqE7zayMMi7kMvwRsbv7WT9aOnn0WNl4SKEIf43vjS31iUPu80nzXg==", "cpu": [ "arm64" ], @@ -8831,9 +8837,9 @@ } }, "node_modules/@rolldown/binding-darwin-x64": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.0.tgz", - "integrity": "sha512-iN/tWVXRQDWvmZlKdceP1Dwug9GDpEymhb9p4xnEe6zvCg5lFmzVljl+1qR1NVx3yfGpr2Na+CuLmv5IU8uzfQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.1.tgz", + "integrity": "sha512-YKrVwQjIRBPo+5G/u03wGjbdy4q7pyzCe93DK9VJ7zkVmeg8LJ7GbgsiHWdR4xSoe4CAXRD7Bcjgbtr64bkXNg==", "cpu": [ "x64" ], @@ -8849,9 +8855,9 @@ } }, "node_modules/@rolldown/binding-freebsd-x64": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.0.tgz", - "integrity": "sha512-jjQMDvvwSOuhOwMszD/klSOjyWMM3zI64hWTj9KT5x4MxRbZAf+7vLQ6qouRhtsLVFHr3f0ILaJAfgENPiQdAQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.1.tgz", + "integrity": "sha512-z/oBsREo46SsFqBwYtFe0kpJeBijAT48O/WXLI4suiCLBkr03RTtTJMCzSdDd2znlh8VJizL09XVkQgk8IZonw==", "cpu": [ "x64" ], @@ -8867,9 +8873,9 @@ } }, "node_modules/@rolldown/binding-linux-arm-gnueabihf": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.0.tgz", - "integrity": "sha512-d//Dtg2x6/m3mbV64yUGNnDGNZaDGRpDLLNGerHQUVObuNaIQaaDp25yUiqGXtHEXX+NP2d0wAlmKgpYgIAJ2A==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.1.tgz", + "integrity": "sha512-ik8q7GM11zxvYxFc2PeDcT6TBvhCQMaUxfph/M5l9sKuTs/Sjg3L+Byw0F7w0ZVLBZmx30P+gG0ECzzN+MFcmQ==", "cpu": [ "arm" ], @@ -8885,9 +8891,9 @@ } }, "node_modules/@rolldown/binding-linux-arm64-gnu": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.0.tgz", - "integrity": "sha512-n7Ofp0mx+aB2cC+Sdy5YtMnXtY9lchnHbY+3Yt0uq9JsWQExf4f5Whu0tK0R8Jdc9S6RchTHjIFY7uc92puOVQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.1.tgz", + "integrity": "sha512-QoSx2EkyrrdZ6kcyE8stqZ62t0Yra8Fs5ia9lOxJrh6TMQJK7gQKmscdTHf7pOXKREKrVwOtJcQG3qVSfc866A==", "cpu": [ "arm64" ], @@ -8903,9 +8909,9 @@ } }, "node_modules/@rolldown/binding-linux-arm64-musl": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.0.tgz", - "integrity": "sha512-EIVjy2cgd7uuMMo94FVkBp7F6DhcZAUwNURkSG3RwUmvAXR6s0ISxM81U+IydcZByPG0pZIHsf1b6kTxoFDgJA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.1.tgz", + "integrity": "sha512-uwNwFpwKeNiZawfAWBgg0VIztPTV3ihhh1vV334h9ivnNLorxnQMU6Fz8wG1Zb4Qh9LC1/MkcyT3YlDXG3Rsgg==", "cpu": [ "arm64" ], @@ -8921,9 +8927,9 @@ } }, "node_modules/@rolldown/binding-linux-ppc64-gnu": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.0.tgz", - "integrity": "sha512-JEwwOPcwTLAcpDQlqSmjEmfs63xJnSiUNIGvLcDLUHCWK4XowpS/7c7tUsUH6uT/ct6bMUTdXKfI8967FYj6mg==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.1.tgz", + "integrity": "sha512-zY1bul7OWr7DFBiJ++wofXvnr8B45ce3QsQUhKrIhXsygAh7bTkwyeM1bi1a2g5C/yC/N8TZyGDEoMfm/l9mpg==", "cpu": [ "ppc64" ], @@ -8939,9 +8945,9 @@ } }, "node_modules/@rolldown/binding-linux-s390x-gnu": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.0.tgz", - "integrity": "sha512-0wjCFhLrihtAubnT9iA0N++0pSV0z5Hg7tNGdNJ4RFaINceHadoF+kiFGyY1qSSNVIAZtLotG8Ju1bgDPkjnFA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.1.tgz", + "integrity": "sha512-0frlsT/f4Ft6I7SMESTKnF3cZsdicQn1dCMkF/jT9wDLE+gGoiQfv1nmT9e+s7s/fekvvy6tZM2jHvI2tkbJDQ==", "cpu": [ "s390x" ], @@ -8957,9 +8963,9 @@ } }, "node_modules/@rolldown/binding-linux-x64-gnu": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.0.tgz", - "integrity": "sha512-Dfn7iak9BcMMePxcoJfpSbWqnEyrp/dRF63/8qW/eHBdOZov6x5aShLLEYGYdIeSJ6vMLK/XCVB+lGIxm41bQA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.1.tgz", + "integrity": "sha512-XABVmGp9Tg0WspTVvwduTc4fpqy6JnAUrSQe6OuyqD/03nI7r0O9OWUkMIwFrjKAIqolvqoA4ZrJppgwE0Gxmw==", "cpu": [ "x64" ], @@ -8975,9 +8981,9 @@ } }, "node_modules/@rolldown/binding-linux-x64-musl": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.0.tgz", - "integrity": "sha512-5/utzzDmD/pD/bmuaUcbTf/sZYy0aztwIVlfpoW1fTjCZ0BaPOMVWGZL1zvgxyi7ZIVYWlxKONHmSbHuiOh8Jw==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.1.tgz", + "integrity": "sha512-bV4fzswuzVcKD90o/VM6QqKxnxlDq0g2BISDLNVmxrnhpv1DDbyPhCIjYfvzYLV+MvkKKnQt2Q6AO86SEBULUQ==", "cpu": [ "x64" ], @@ -8993,9 +8999,9 @@ } }, "node_modules/@rolldown/binding-openharmony-arm64": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.0.tgz", - "integrity": "sha512-ouJs8VcUomfLfpbUECqFMRqdV4x6aeAK3MA4m6vTrJJjKyWTV5KnxZx7Jd9G+GlDaQQxubcba00x16OyJ1meig==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.1.tgz", + "integrity": "sha512-/Mh0Zhq3OP7fVs0kcQHZP6lZEthMGTaSf8UBQYSFEZDWGXXlEC+nJ6EqenaK2t4LBXMe3A+K/G2BVXXdtOr4PQ==", "cpu": [ "arm64" ], @@ -9011,9 +9017,9 @@ } }, "node_modules/@rolldown/binding-wasm32-wasi": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.0.tgz", - "integrity": "sha512-E+oHKGiDA+lsKMmFtffDDw91EryDT7uJocrIuCHqhm6bCTM6xFK+3gaCkYOHfPwQr0cCNarSM2xaELoQDz9jJg==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.1.tgz", + "integrity": "sha512-+1xc9X45l8ufsBAm6Gjvx2qDRIY9lTVt0cgWNcJ+1gdhXvkbxePA60yRTwSTuXL09CMhyJmjpV7E3NoyxbqFQQ==", "cpu": [ "wasm32" ], @@ -9030,30 +9036,10 @@ "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@rolldown/binding-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz", - "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==", - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@tybys/wasm-util": "^0.10.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Brooooooklyn" - }, - "peerDependencies": { - "@emnapi/core": "^1.7.1", - "@emnapi/runtime": "^1.7.1" - } - }, "node_modules/@rolldown/binding-win32-arm64-msvc": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.0.tgz", - "integrity": "sha512-yYK02n8Rngo+gbm1y6G0+7jk1sJ/2Wt7K0me0Y7k/ErBpyf+LJ2gFpqWVTcRV1rUepBlQRmpgWkTQCiiwrK0Ow==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.1.tgz", + "integrity": "sha512-1D+UqZdfnuR+Jy1GgMJwi85bD40H21uNmOPRWQhw4oRSuolZ/B5rixZ45DK2KXOTCvmVCecauWgEhbw8bI7tOw==", "cpu": [ "arm64" ], @@ -9069,9 +9055,9 @@ } }, "node_modules/@rolldown/binding-win32-x64-msvc": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.0.tgz", - "integrity": "sha512-14bpChMahXRRXiTwahSl+zzHPW6qQTXtkMuJBFlbo+pqSAews2d4BdCSHfrJ/MBsCZtpmTafsY+1QhBzitcmdg==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.1.tgz", + "integrity": "sha512-INAycaWuhlOK3wk4mRHGsdgwYWmd9cChdPdE9bwWmy6rn9VqVNYNFGhOdXrofXUxwHIncSiPNb8tNm8knDVIeQ==", "cpu": [ "x64" ], @@ -9087,9 +9073,9 @@ } }, "node_modules/@rolldown/pluginutils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0.tgz", - "integrity": "sha512-aKs/3GSWyV0mrhNmt/96/Z3yczC3yvrzYATCiCXQebBsGyYzjNdUphRVLeJQ67ySKVXRfMxt2lm12pmXvbPFQQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz", + "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==", "dev": true, "license": "MIT", "peer": true @@ -9317,9 +9303,9 @@ "license": "MIT" }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.3.tgz", - "integrity": "sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.4.tgz", + "integrity": "sha512-F5QXMSiFebS9hKZj02XhWLLnRpJ3B3AROP0tWbFBSj+6kCbg5m9j5JoHKd4mmSVy5mS/IMQloYgYxCuJC0fxEQ==", "cpu": [ "arm" ], @@ -9331,9 +9317,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.3.tgz", - "integrity": "sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.4.tgz", + "integrity": "sha512-GxxTKApUpzRhof7poWvCJHRF51C67u1R7D6DiluBE8wKU1u5GWE8t+v81JvJYtbawoBFX1hLv5Ei4eVjkWokaw==", "cpu": [ "arm64" ], @@ -9345,9 +9331,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.3.tgz", - "integrity": "sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.4.tgz", + "integrity": "sha512-tua0TaJxMOB1R0V0RS1jFZ/RpURFDJIOR2A6jWwQeawuFyS4gBW+rntLRaQd0EQ4bd6Vp44Z2rXW+YYDBsj6IA==", "cpu": [ "arm64" ], @@ -9359,9 +9345,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.3.tgz", - "integrity": "sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.4.tgz", + "integrity": "sha512-CSKq7MsP+5PFIcydhAiR1K0UhEI1A2jWXVKHPCBZ151yOutENwvnPocgVHkivu2kviURtCEB6zUQw0vs8RrhMg==", "cpu": [ "x64" ], @@ -9373,9 +9359,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.3.tgz", - "integrity": "sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.4.tgz", + "integrity": "sha512-+O8OkVdyvXMtJEciu2wS/pzm1IxntEEQx3z5TAVy4l32G0etZn+RsA48ARRrFm6Ri8fvqPQfgrvNxSjKAbnd3g==", "cpu": [ "arm64" ], @@ -9387,9 +9373,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.3.tgz", - "integrity": "sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.4.tgz", + "integrity": "sha512-Iw3oMskH3AfNuhU0MSN7vNbdi4me/NiYo2azqPz/Le16zHSa+3RRmliCMWWQmh4lcndccU40xcJuTYJZxNo/lw==", "cpu": [ "x64" ], @@ -9401,9 +9387,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.3.tgz", - "integrity": "sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.4.tgz", + "integrity": "sha512-EIPRXTVQpHyF8WOo219AD2yEltPehLTcTMz2fn6JsatLYSzQf00hj3rulF+yauOlF9/FtM2WpkT/hJh/KJFGhA==", "cpu": [ "arm" ], @@ -9415,9 +9401,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.3.tgz", - "integrity": "sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.4.tgz", + "integrity": "sha512-J3Yh9PzzF1Ovah2At+lHiGQdsYgArxBbXv/zHfSyaiFQEqvNv7DcW98pCrmdjCZBrqBiKrKKe2V+aaSGWuBe/w==", "cpu": [ "arm" ], @@ -9429,9 +9415,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.3.tgz", - "integrity": "sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.4.tgz", + "integrity": "sha512-BFDEZMYfUvLn37ONE1yMBojPxnMlTFsdyNoqncT0qFq1mAfllL+ATMMJd8TeuVMiX84s1KbcxcZbXInmcO2mRg==", "cpu": [ "arm64" ], @@ -9443,9 +9429,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.3.tgz", - "integrity": "sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.4.tgz", + "integrity": "sha512-pc9EYOSlOgdQ2uPl1o9PF6/kLSgaUosia7gOuS8mB69IxJvlclko1MECXysjs5ryez1/5zjYqx3+xYU0TU6R1A==", "cpu": [ "arm64" ], @@ -9457,9 +9443,9 @@ ] }, "node_modules/@rollup/rollup-linux-loong64-gnu": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.3.tgz", - "integrity": "sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.4.tgz", + "integrity": "sha512-NxnomyxYerDh5n4iLrNa+sH+Z+U4BMEE46V2PgQ/hoB909i8gV1M5wPojWg9fk1jWpO3IQnOs20K4wyZuFLEFQ==", "cpu": [ "loong64" ], @@ -9471,9 +9457,9 @@ ] }, "node_modules/@rollup/rollup-linux-loong64-musl": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.3.tgz", - "integrity": "sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.4.tgz", + "integrity": "sha512-nbJnQ8a3z1mtmrwImCYhc6BGpThAyYVRQxw9uKSKG4wR6aAYno9sVjJ0zaZcW9BPJX1GbrDPf+SvdWjgTuDmnw==", "cpu": [ "loong64" ], @@ -9485,9 +9471,9 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.3.tgz", - "integrity": "sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.4.tgz", + "integrity": "sha512-2EU6acNrQLd8tYvo/LXW535wupT3m6fo7HKo6lr7ktQoItxTyOL1ZCR/GfGCuXl2vR+zmfI6eRXkSemafv+iVg==", "cpu": [ "ppc64" ], @@ -9499,9 +9485,9 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-musl": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.3.tgz", - "integrity": "sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.4.tgz", + "integrity": "sha512-WeBtoMuaMxiiIrO2IYP3xs6GMWkJP2C0EoT8beTLkUPmzV1i/UcOSVw1d5r9KBODtHKilG5yFxsGRnBbK3wJ4A==", "cpu": [ "ppc64" ], @@ -9513,9 +9499,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.3.tgz", - "integrity": "sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.4.tgz", + "integrity": "sha512-FJHFfqpKUI3A10WrWKiFbBZ7yVbGT4q4B5o1qKFFojqpaYoh9LrQgqWCmmcxQzVSXYtyB5bzkXrYzlHTs21MYA==", "cpu": [ "riscv64" ], @@ -9527,9 +9513,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.3.tgz", - "integrity": "sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.4.tgz", + "integrity": "sha512-mcEl6CUT5IAUmQf1m9FYSmVqCJlpQ8r8eyftFUHG8i9OhY7BkBXSUdnLH5DOf0wCOjcP9v/QO93zpmF1SptCCw==", "cpu": [ "riscv64" ], @@ -9541,9 +9527,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.3.tgz", - "integrity": "sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.4.tgz", + "integrity": "sha512-ynt3JxVd2w2buzoKDWIyiV1pJW93xlQic1THVLXilz429oijRpSHivZAgp65KBu+cMcgf1eVVjdnTLvPxgCuoQ==", "cpu": [ "s390x" ], @@ -9555,9 +9541,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.3.tgz", - "integrity": "sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.4.tgz", + "integrity": "sha512-Boiz5+MsaROEWDf+GGEwF8VMHGhlUoQMtIPjOgA5fv4osupqTVnJteQNKJwUcnUog2G55jYXH7KZFFiJe0TEzQ==", "cpu": [ "x64" ], @@ -9569,9 +9555,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.3.tgz", - "integrity": "sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.4.tgz", + "integrity": "sha512-+qfSY27qIrFfI/Hom04KYFw3GKZSGU4lXus51wsb5EuySfFlWRwjkKWoE9emgRw/ukoT4Udsj4W/+xxG8VbPKg==", "cpu": [ "x64" ], @@ -9583,9 +9569,9 @@ ] }, "node_modules/@rollup/rollup-openbsd-x64": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.3.tgz", - "integrity": "sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.4.tgz", + "integrity": "sha512-VpTfOPHgVXEBeeR8hZ2O0F3aSso+JDWqTWmTmzcQKted54IAdUVbxE+j/MVxUsKa8L20HJhv3vUezVPoquqWjA==", "cpu": [ "x64" ], @@ -9597,9 +9583,9 @@ ] }, "node_modules/@rollup/rollup-openharmony-arm64": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.3.tgz", - "integrity": "sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.4.tgz", + "integrity": "sha512-IPOsh5aRYuLv/nkU51X10Bf75Bsf6+gZdx1X+QP5QM6lIJFHHqbHLG0uJn/hWthzo13UAc2umiUorqZy3axoZg==", "cpu": [ "arm64" ], @@ -9611,9 +9597,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.3.tgz", - "integrity": "sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.4.tgz", + "integrity": "sha512-4QzE9E81OohJ/HKzHhsqU+zcYYojVOXlFMs1DdyMT6qXl/niOH7AVElmmEdUNHHS/oRkc++d5k6Vy85zFs0DEw==", "cpu": [ "arm64" ], @@ -9625,9 +9611,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.3.tgz", - "integrity": "sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.4.tgz", + "integrity": "sha512-zTPgT1YuHHcd+Tmx7h8aml0FWFVelV5N54oHow9SLj+GfoDy/huQ+UV396N/C7KpMDMiPspRktzM1/0r1usYEA==", "cpu": [ "ia32" ], @@ -9639,9 +9625,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-gnu": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.3.tgz", - "integrity": "sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.4.tgz", + "integrity": "sha512-DRS4G7mi9lJxqEDezIkKCaUIKCrLUUDCUaCsTPCi/rtqaC6D/jjwslMQyiDU50Ka0JKpeXeRBFBAXwArY52vBw==", "cpu": [ "x64" ], @@ -9653,9 +9639,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.3.tgz", - "integrity": "sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.4.tgz", + "integrity": "sha512-QVTUovf40zgTqlFVrKA1uXMVvU2QWEFWfAH8Wdc48IxLvrJMQVMBRjuQyUpzZCDkakImib9eVazbWlC6ksWtJw==", "cpu": [ "x64" ], @@ -10426,13 +10412,13 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "25.7.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-25.7.0.tgz", - "integrity": "sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg==", + "version": "25.9.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.1.tgz", + "integrity": "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==", "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~7.21.0" + "undici-types": ">=7.24.0 <7.24.7" } }, "node_modules/@types/react": { @@ -10501,17 +10487,17 @@ "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.3.tgz", - "integrity": "sha512-PwFvSKsXGShKGW6n5bZOhGHEcCZXM8HofLK9fNsEwZXzFRjoY+XT1Vsf1zgyXdwTr0ZYz1/2tkZ0DBTT9jZjhw==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.4.tgz", + "integrity": "sha512-PegsU+XfyJJNjd4+u/k6f9yTyp0lEXXiPopUNobZcIAUJFGICFLN+sP0Rb3JehVmiij1Ph0dFGYqODoRo/2+6A==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.12.2", - "@typescript-eslint/scope-manager": "8.59.3", - "@typescript-eslint/type-utils": "8.59.3", - "@typescript-eslint/utils": "8.59.3", - "@typescript-eslint/visitor-keys": "8.59.3", + "@typescript-eslint/scope-manager": "8.59.4", + "@typescript-eslint/type-utils": "8.59.4", + "@typescript-eslint/utils": "8.59.4", + "@typescript-eslint/visitor-keys": "8.59.4", "ignore": "^7.0.5", "natural-compare": "^1.4.0", "ts-api-utils": "^2.5.0" @@ -10524,22 +10510,22 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^8.59.3", + "@typescript-eslint/parser": "^8.59.4", "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/parser": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.3.tgz", - "integrity": "sha512-HPwA+hVkfcriajbNvTmZv4VRauibay+cWArYUYq7u7W7PmGShMxbPxLvrwDme55a6d5alG3nrYfhyJ/G28XlLg==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.4.tgz", + "integrity": "sha512-zORHqO/tuhxY1zWuTvMUqddRxpiFJ72xVfcNoWpqdLjs6lfPbuQBJuW4pk+49/uBMy7Ssr4bzgjiKmmDB1UbZQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "8.59.3", - "@typescript-eslint/types": "8.59.3", - "@typescript-eslint/typescript-estree": "8.59.3", - "@typescript-eslint/visitor-keys": "8.59.3", + "@typescript-eslint/scope-manager": "8.59.4", + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/typescript-estree": "8.59.4", + "@typescript-eslint/visitor-keys": "8.59.4", "debug": "^4.4.3" }, "engines": { @@ -10555,14 +10541,14 @@ } }, "node_modules/@typescript-eslint/project-service": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.3.tgz", - "integrity": "sha512-ECiUWa/KYRGDFUqTNehaRgzDshnJfkTABJxVemHk4ko22gcr0ukloKjWvyQ64g8YCV/UI47kN1dbmjf/GaQYng==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.4.tgz", + "integrity": "sha512-Ly00Vu4oAacfDeHp2Zg85ioNG6l8HG+tN1D7J+xTHSxu9y0awYKJ2zH1rFBn8ZSfuGK+7FxK3Cgl3uAz0aZZLg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/tsconfig-utils": "^8.59.3", - "@typescript-eslint/types": "^8.59.3", + "@typescript-eslint/tsconfig-utils": "^8.59.4", + "@typescript-eslint/types": "^8.59.4", "debug": "^4.4.3" }, "engines": { @@ -10577,14 +10563,14 @@ } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.3.tgz", - "integrity": "sha512-t2LvZnoEfzKtnPjgeEu41xw5gxq9mQVfYy4OoZ4Vlt0sk3JwxmhCca/AR7DwOiHrjWgjAj6as4AhRLKSDfvZIA==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.4.tgz", + "integrity": "sha512-mUeR/3H1WrTAddJrwut8OoPjfauaztMQmRwV5fQTUyNVJCLiUXXe4lGEyYIL2oFDpP7UtgbGJXCt72wT0z2S3Q==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.59.3", - "@typescript-eslint/visitor-keys": "8.59.3" + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/visitor-keys": "8.59.4" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -10595,9 +10581,9 @@ } }, "node_modules/@typescript-eslint/tsconfig-utils": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.3.tgz", - "integrity": "sha512-PcIJHjmaREXLgIAIzLnSY9VucEzz8FKXsRgFa1DmdGCK/5tJpW03TKJF01Q6VZd1lLdz2sIKPWaDUZN9dp//dw==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.4.tgz", + "integrity": "sha512-DLCpnKgD4alVxTBSKulK+gU1KCqOgUXfDRDXh2mZgzokQKa/70ax93I2uVO3m/LLvIAtWZIFoiifudmIqAxpMA==", "dev": true, "license": "MIT", "engines": { @@ -10612,15 +10598,15 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.3.tgz", - "integrity": "sha512-g71d8QD8UaiHGvrJwyIS1hCX5r63w6Jll+4VEYhEAHXTDIqX1JgxhTAbEHtKntL9kuc4jRo7/GWw5xfCepSccQ==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.4.tgz", + "integrity": "sha512-uonTuPAAKr9XaBGqJ3LjYTh72zy5DyGesljO9gtmk/eFW0W1fRHjnwVYKB35Lm8d5Q5CluEW3gPHjTvZTmgrfA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.59.3", - "@typescript-eslint/typescript-estree": "8.59.3", - "@typescript-eslint/utils": "8.59.3", + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/typescript-estree": "8.59.4", + "@typescript-eslint/utils": "8.59.4", "debug": "^4.4.3", "ts-api-utils": "^2.5.0" }, @@ -10637,9 +10623,9 @@ } }, "node_modules/@typescript-eslint/types": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.3.tgz", - "integrity": "sha512-ePFoH0g4ludssdRFqqDxQePCxU4WQyRa9+XVwjm7yLn0FKhMeoetC+qBEEI1Eyb1pGSDveTIT09Bvw2WhlGayg==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.4.tgz", + "integrity": "sha512-F1o7WJcCq+bc8dwcO/YsSEOudAH8RDtaOhM6wcAQhcUsFhnWQl81JKy48q1hoxAU0qrzM89+31GYh1515Zde3Q==", "dev": true, "license": "MIT", "engines": { @@ -10651,16 +10637,16 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.3.tgz", - "integrity": "sha512-CbRjVRAf7Lr9Kr8RopKcbY45p2VfmmHrm0ygOCYFi7oU8q19m0Fs/6iHS7kNOmwpp+ob07ZVcAqlxUod9lYdmg==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.4.tgz", + "integrity": "sha512-F+RuOmcDXo4+TPdfd/TCLS3m2nw8gE9XXyZLrA3JBfaA5tz9TtdkyD3YJFmPxulyc2cKbEok/CvFE3MgSLWnag==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/project-service": "8.59.3", - "@typescript-eslint/tsconfig-utils": "8.59.3", - "@typescript-eslint/types": "8.59.3", - "@typescript-eslint/visitor-keys": "8.59.3", + "@typescript-eslint/project-service": "8.59.4", + "@typescript-eslint/tsconfig-utils": "8.59.4", + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/visitor-keys": "8.59.4", "debug": "^4.4.3", "minimatch": "^10.2.2", "semver": "^7.7.3", @@ -10679,16 +10665,16 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.3.tgz", - "integrity": "sha512-JAvT14goBzRzzzZyqq3P9BLArIxTtQURUtFgQ/V7FO+eU+Gg6ES+5ymOPP1wRxXcxAYeivCk4uS3jCKWI1K8Zg==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.4.tgz", + "integrity": "sha512-cYXeNAUsG4lJo5dbc1FcKm+JwIWrj1/UpTORsC6tGMjEZ81DYcvIr9/ueikhMa/Y/gDQYGp+YX9/xQrXje5BJw==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", - "@typescript-eslint/scope-manager": "8.59.3", - "@typescript-eslint/types": "8.59.3", - "@typescript-eslint/typescript-estree": "8.59.3" + "@typescript-eslint/scope-manager": "8.59.4", + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/typescript-estree": "8.59.4" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -10703,13 +10689,13 @@ } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.3.tgz", - "integrity": "sha512-f1UQF7ggd42YiwI5wGrRaPsa+P0CINBlrkLPmGfpq/u/I/oVtecoEIfFR9ag/oa1sLOsRNZ6xehf6qMZhQGBDg==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.4.tgz", + "integrity": "sha512-U3gxVaDVnuZKhSspW/MzMxE1kq7zOdc072FcSNoqA1I9p8HyKbBFfEHoWckBAMgNMph4MamwS5iTVzFmrnt8TQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.59.3", + "@typescript-eslint/types": "8.59.4", "eslint-visitor-keys": "^5.0.0" }, "engines": { @@ -10741,9 +10727,9 @@ "license": "ISC" }, "node_modules/@unrs/resolver-binding-android-arm-eabi": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", - "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.12.2.tgz", + "integrity": "sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==", "cpu": [ "arm" ], @@ -10755,9 +10741,9 @@ ] }, "node_modules/@unrs/resolver-binding-android-arm64": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", - "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.12.2.tgz", + "integrity": "sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ==", "cpu": [ "arm64" ], @@ -10769,9 +10755,9 @@ ] }, "node_modules/@unrs/resolver-binding-darwin-arm64": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", - "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.12.2.tgz", + "integrity": "sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w==", "cpu": [ "arm64" ], @@ -10783,9 +10769,9 @@ ] }, "node_modules/@unrs/resolver-binding-darwin-x64": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", - "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.12.2.tgz", + "integrity": "sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA==", "cpu": [ "x64" ], @@ -10797,9 +10783,9 @@ ] }, "node_modules/@unrs/resolver-binding-freebsd-x64": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", - "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.12.2.tgz", + "integrity": "sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg==", "cpu": [ "x64" ], @@ -10811,9 +10797,9 @@ ] }, "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", - "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.12.2.tgz", + "integrity": "sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A==", "cpu": [ "arm" ], @@ -10825,9 +10811,9 @@ ] }, "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", - "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.12.2.tgz", + "integrity": "sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g==", "cpu": [ "arm" ], @@ -10839,9 +10825,9 @@ ] }, "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", - "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.12.2.tgz", + "integrity": "sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg==", "cpu": [ "arm64" ], @@ -10853,9 +10839,9 @@ ] }, "node_modules/@unrs/resolver-binding-linux-arm64-musl": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", - "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.12.2.tgz", + "integrity": "sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA==", "cpu": [ "arm64" ], @@ -10866,10 +10852,38 @@ "linux" ] }, + "node_modules/@unrs/resolver-binding-linux-loong64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-gnu/-/resolver-binding-linux-loong64-gnu-1.12.2.tgz", + "integrity": "sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-loong64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-musl/-/resolver-binding-linux-loong64-musl-1.12.2.tgz", + "integrity": "sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", - "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.12.2.tgz", + "integrity": "sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg==", "cpu": [ "ppc64" ], @@ -10881,9 +10895,9 @@ ] }, "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", - "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.12.2.tgz", + "integrity": "sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A==", "cpu": [ "riscv64" ], @@ -10895,9 +10909,9 @@ ] }, "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", - "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.12.2.tgz", + "integrity": "sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w==", "cpu": [ "riscv64" ], @@ -10909,9 +10923,9 @@ ] }, "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", - "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.12.2.tgz", + "integrity": "sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw==", "cpu": [ "s390x" ], @@ -10923,9 +10937,9 @@ ] }, "node_modules/@unrs/resolver-binding-linux-x64-gnu": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", - "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.12.2.tgz", + "integrity": "sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ==", "cpu": [ "x64" ], @@ -10937,9 +10951,9 @@ ] }, "node_modules/@unrs/resolver-binding-linux-x64-musl": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", - "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.12.2.tgz", + "integrity": "sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A==", "cpu": [ "x64" ], @@ -10950,10 +10964,24 @@ "linux" ] }, + "node_modules/@unrs/resolver-binding-openharmony-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-openharmony-arm64/-/resolver-binding-openharmony-arm64-1.12.2.tgz", + "integrity": "sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, "node_modules/@unrs/resolver-binding-wasm32-wasi": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", - "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.12.2.tgz", + "integrity": "sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A==", "cpu": [ "wasm32" ], @@ -10961,16 +10989,18 @@ "license": "MIT", "optional": true, "dependencies": { - "@napi-rs/wasm-runtime": "^0.2.11" + "@emnapi/core": "1.10.0", + "@emnapi/runtime": "1.10.0", + "@napi-rs/wasm-runtime": "^1.1.4" }, "engines": { "node": ">=14.0.0" } }, "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", - "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.12.2.tgz", + "integrity": "sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==", "cpu": [ "arm64" ], @@ -10982,9 +11012,9 @@ ] }, "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", - "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.12.2.tgz", + "integrity": "sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g==", "cpu": [ "ia32" ], @@ -10996,9 +11026,9 @@ ] }, "node_modules/@unrs/resolver-binding-win32-x64-msvc": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", - "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.12.2.tgz", + "integrity": "sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA==", "cpu": [ "x64" ], @@ -12170,9 +12200,9 @@ "license": "MIT" }, "node_modules/baseline-browser-mapping": { - "version": "2.10.29", - "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.29.tgz", - "integrity": "sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ==", + "version": "2.10.31", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.31.tgz", + "integrity": "sha512-MujYO3eP72uvmSE0i4wltsodRfIpZATP3jvzRNRGGxgzId7aVocVJJV3nf01qnzzKFGxQVC9bpWxl5cjxTr/7Q==", "dev": true, "license": "Apache-2.0", "bin": { @@ -12597,9 +12627,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001792", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001792.tgz", - "integrity": "sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==", + "version": "1.0.30001793", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001793.tgz", + "integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==", "dev": true, "funding": [ { @@ -14157,9 +14187,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.354", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.354.tgz", - "integrity": "sha512-JaBHwWcfIdmSAfWM5l3uwjGd431j8YEMikZ+K/2nXVuBqJKyZ0f+2h4n4JY5AyNiZmnY9qQr2RU3v9DxDmHMNg==", + "version": "1.5.360", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.360.tgz", + "integrity": "sha512-GkcBt6YYAw9SxFWn+xVar4cLVGlXVuswwtRLBozi2zp0GjXs4ZnOrqV4zbXzg35n7w81hCkyJNYicgXlVHAmBA==", "dev": true, "license": "ISC" }, @@ -14239,9 +14269,9 @@ } }, "node_modules/enhanced-resolve": { - "version": "5.21.3", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.3.tgz", - "integrity": "sha512-QyL119InA+XXEkNLNTPCXPugSvOfhwv0JOlGNzvxs0hZaiHLNvXSpudUWsOlsXGWJh8G6ckCScEkVHfX3kw/2Q==", + "version": "5.21.5", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.5.tgz", + "integrity": "sha512-mLCNbrQli11K1ySUmuNt4ZUB3OpGIDq4q2vTBTf5cL2lpsRjI9QKqSD0ndjW8FyvcW/Jj46gMe9syyHAsvMa/A==", "dev": true, "license": "MIT", "dependencies": { @@ -14784,14 +14814,14 @@ } }, "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.6", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.6.tgz", - "integrity": "sha512-3JmVl5hMGtJ3kMmB3zi3DL25KfkCEyy3Tw7Gmw7z5w8M9WlwoPFnIvwChzu1+cF3iaK3sp18hhPz8ANeimdJfA==", + "version": "2.0.0-next.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.7.tgz", + "integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", - "is-core-module": "^2.16.1", + "is-core-module": "^2.16.2", "node-exports-info": "^1.6.0", "object-keys": "^1.1.1", "path-parse": "^1.0.7", @@ -20276,9 +20306,9 @@ } }, "node_modules/postcss": { - "version": "8.5.14", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", - "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "version": "8.5.15", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz", + "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==", "dev": true, "funding": [ { @@ -20296,7 +20326,7 @@ ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.11", + "nanoid": "^3.3.12", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, @@ -22368,9 +22398,9 @@ "license": "MIT" }, "node_modules/qs": { - "version": "6.15.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz", - "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==", + "version": "6.15.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.2.tgz", + "integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -23138,15 +23168,15 @@ "license": "MIT" }, "node_modules/rolldown": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0.tgz", - "integrity": "sha512-yD986aXDESFGS95spT1LAv0jssywP4npMEjmMHyN2/5+eE8qQJUype2AaKkRiLgBgyD0LFlubwAht7VmY8rGoA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.1.tgz", + "integrity": "sha512-X0KQHljNnEkWNqqiz9zJrGunh1B0HgOxLXvnFpCOcadzcy5qohZ3tqMEUg00vncoRovXuK3ZqCT9KnnKzoInFQ==", "dev": true, "license": "MIT", "peer": true, "dependencies": { - "@oxc-project/types": "=0.129.0", - "@rolldown/pluginutils": "1.0.0" + "@oxc-project/types": "=0.130.0", + "@rolldown/pluginutils": "^1.0.0" }, "bin": { "rolldown": "bin/cli.mjs" @@ -23155,27 +23185,27 @@ "node": "^20.19.0 || >=22.12.0" }, "optionalDependencies": { - "@rolldown/binding-android-arm64": "1.0.0", - "@rolldown/binding-darwin-arm64": "1.0.0", - "@rolldown/binding-darwin-x64": "1.0.0", - "@rolldown/binding-freebsd-x64": "1.0.0", - "@rolldown/binding-linux-arm-gnueabihf": "1.0.0", - "@rolldown/binding-linux-arm64-gnu": "1.0.0", - "@rolldown/binding-linux-arm64-musl": "1.0.0", - "@rolldown/binding-linux-ppc64-gnu": "1.0.0", - "@rolldown/binding-linux-s390x-gnu": "1.0.0", - "@rolldown/binding-linux-x64-gnu": "1.0.0", - "@rolldown/binding-linux-x64-musl": "1.0.0", - "@rolldown/binding-openharmony-arm64": "1.0.0", - "@rolldown/binding-wasm32-wasi": "1.0.0", - "@rolldown/binding-win32-arm64-msvc": "1.0.0", - "@rolldown/binding-win32-x64-msvc": "1.0.0" + "@rolldown/binding-android-arm64": "1.0.1", + "@rolldown/binding-darwin-arm64": "1.0.1", + "@rolldown/binding-darwin-x64": "1.0.1", + "@rolldown/binding-freebsd-x64": "1.0.1", + "@rolldown/binding-linux-arm-gnueabihf": "1.0.1", + "@rolldown/binding-linux-arm64-gnu": "1.0.1", + "@rolldown/binding-linux-arm64-musl": "1.0.1", + "@rolldown/binding-linux-ppc64-gnu": "1.0.1", + "@rolldown/binding-linux-s390x-gnu": "1.0.1", + "@rolldown/binding-linux-x64-gnu": "1.0.1", + "@rolldown/binding-linux-x64-musl": "1.0.1", + "@rolldown/binding-openharmony-arm64": "1.0.1", + "@rolldown/binding-wasm32-wasi": "1.0.1", + "@rolldown/binding-win32-arm64-msvc": "1.0.1", + "@rolldown/binding-win32-x64-msvc": "1.0.1" } }, "node_modules/rollup": { - "version": "4.60.3", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.3.tgz", - "integrity": "sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==", + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.4.tgz", + "integrity": "sha512-WHeFSbZYsPu3+bLoNRUuAO+wavNlocOPf3wSHTP7hcFKVnJeWsYlCDbr3mTS14FCizf9ccIxXA8sGL8zKeQN3g==", "dev": true, "license": "MIT", "dependencies": { @@ -23189,31 +23219,31 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.60.3", - "@rollup/rollup-android-arm64": "4.60.3", - "@rollup/rollup-darwin-arm64": "4.60.3", - "@rollup/rollup-darwin-x64": "4.60.3", - "@rollup/rollup-freebsd-arm64": "4.60.3", - "@rollup/rollup-freebsd-x64": "4.60.3", - "@rollup/rollup-linux-arm-gnueabihf": "4.60.3", - "@rollup/rollup-linux-arm-musleabihf": "4.60.3", - "@rollup/rollup-linux-arm64-gnu": "4.60.3", - "@rollup/rollup-linux-arm64-musl": "4.60.3", - "@rollup/rollup-linux-loong64-gnu": "4.60.3", - "@rollup/rollup-linux-loong64-musl": "4.60.3", - "@rollup/rollup-linux-ppc64-gnu": "4.60.3", - "@rollup/rollup-linux-ppc64-musl": "4.60.3", - "@rollup/rollup-linux-riscv64-gnu": "4.60.3", - "@rollup/rollup-linux-riscv64-musl": "4.60.3", - "@rollup/rollup-linux-s390x-gnu": "4.60.3", - "@rollup/rollup-linux-x64-gnu": "4.60.3", - "@rollup/rollup-linux-x64-musl": "4.60.3", - "@rollup/rollup-openbsd-x64": "4.60.3", - "@rollup/rollup-openharmony-arm64": "4.60.3", - "@rollup/rollup-win32-arm64-msvc": "4.60.3", - "@rollup/rollup-win32-ia32-msvc": "4.60.3", - "@rollup/rollup-win32-x64-gnu": "4.60.3", - "@rollup/rollup-win32-x64-msvc": "4.60.3", + "@rollup/rollup-android-arm-eabi": "4.60.4", + "@rollup/rollup-android-arm64": "4.60.4", + "@rollup/rollup-darwin-arm64": "4.60.4", + "@rollup/rollup-darwin-x64": "4.60.4", + "@rollup/rollup-freebsd-arm64": "4.60.4", + "@rollup/rollup-freebsd-x64": "4.60.4", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.4", + "@rollup/rollup-linux-arm-musleabihf": "4.60.4", + "@rollup/rollup-linux-arm64-gnu": "4.60.4", + "@rollup/rollup-linux-arm64-musl": "4.60.4", + "@rollup/rollup-linux-loong64-gnu": "4.60.4", + "@rollup/rollup-linux-loong64-musl": "4.60.4", + "@rollup/rollup-linux-ppc64-gnu": "4.60.4", + "@rollup/rollup-linux-ppc64-musl": "4.60.4", + "@rollup/rollup-linux-riscv64-gnu": "4.60.4", + "@rollup/rollup-linux-riscv64-musl": "4.60.4", + "@rollup/rollup-linux-s390x-gnu": "4.60.4", + "@rollup/rollup-linux-x64-gnu": "4.60.4", + "@rollup/rollup-linux-x64-musl": "4.60.4", + "@rollup/rollup-openbsd-x64": "4.60.4", + "@rollup/rollup-openharmony-arm64": "4.60.4", + "@rollup/rollup-win32-arm64-msvc": "4.60.4", + "@rollup/rollup-win32-ia32-msvc": "4.60.4", + "@rollup/rollup-win32-x64-gnu": "4.60.4", + "@rollup/rollup-win32-x64-msvc": "4.60.4", "fsevents": "~2.3.2" } }, @@ -23950,9 +23980,9 @@ } }, "node_modules/smob": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/smob/-/smob-1.6.1.tgz", - "integrity": "sha512-KAkBqZl3c2GvNgNhcoyJae1aKldDW0LO279wF9bk1PnluRTETKBq0WyzRXxEhoQLk56yHaOY4JCBEKDuJIET5g==", + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/smob/-/smob-1.6.2.tgz", + "integrity": "sha512-RQsvleCbF8cVHEv+xuDGaA4pOizFqJ0GgjtMSRo6oP8pnN7WsigHgVGey6aILRBKv4W2YOMHLqbKdnB6hpB9fw==", "dev": true, "license": "MIT", "engines": { @@ -24579,9 +24609,9 @@ } }, "node_modules/stylelint": { - "version": "17.11.0", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-17.11.0.tgz", - "integrity": "sha512-/3czzmbF9XdGWvReDF3Ex4R23Ajolo7j8RB2bFNEqk6Ht356nlpVV+G5bG2Qt8AW1ofJzXztBRDnAtd7cgowWA==", + "version": "17.11.1", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-17.11.1.tgz", + "integrity": "sha512-+smN/HqVTggUx3iuAzOi9fPh8SrH+cJWlZrYVldXoJ06orWBhZ4Ue/QEp64oei6pVrAh4w3tG+Y12Vw7MbCFRQ==", "dev": true, "funding": [ { @@ -24616,13 +24646,12 @@ "html-tags": "^5.1.0", "ignore": "^7.0.5", "import-meta-resolve": "^4.2.0", - "is-plain-object": "^5.0.0", "mathml-tag-names": "^4.0.0", "meow": "^14.1.0", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "picocolors": "^1.1.1", - "postcss": "^8.5.13", + "postcss": "^8.5.14", "postcss-safe-parser": "^7.0.1", "postcss-selector-parser": "^7.1.1", "postcss-value-parser": "^4.2.0", @@ -24780,9 +24809,9 @@ } }, "node_modules/stylelint-scss/node_modules/@csstools/css-calc": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.0.tgz", - "integrity": "sha512-bR9e6o2BDB12jzN/gIbjHa5wLJ4UjD1CB9pM7ehlc0ddk6EBz+yYS1EV2MF55/HUxrHcB/hehAyt5vhsA3hx7w==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, "funding": [ { @@ -24847,9 +24876,9 @@ } }, "node_modules/stylelint/node_modules/@csstools/css-calc": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.0.tgz", - "integrity": "sha512-bR9e6o2BDB12jzN/gIbjHa5wLJ4UjD1CB9pM7ehlc0ddk6EBz+yYS1EV2MF55/HUxrHcB/hehAyt5vhsA3hx7w==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", + "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", "dev": true, "funding": [ { @@ -26004,16 +26033,16 @@ } }, "node_modules/typescript-eslint": { - "version": "8.59.3", - "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.59.3.tgz", - "integrity": "sha512-KgusgyDgG4LI8Ih/sWaCtZ06tckLAS5CvT5A4D1Q7bYVoAAyzwiZvE4BmwDHkhRVkvhRBepKeASoFzQetha7Fg==", + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.59.4.tgz", + "integrity": "sha512-Rw6+44QNFaXtgHSjPy+Kw8hrJniMYzR85E9yLmOLcfZ91/rz+JXQbDTCmc6ccxMPY6K6PgAq26f0JCBfR7LIPQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/eslint-plugin": "8.59.3", - "@typescript-eslint/parser": "8.59.3", - "@typescript-eslint/typescript-estree": "8.59.3", - "@typescript-eslint/utils": "8.59.3" + "@typescript-eslint/eslint-plugin": "8.59.4", + "@typescript-eslint/parser": "8.59.4", + "@typescript-eslint/typescript-estree": "8.59.4", + "@typescript-eslint/utils": "8.59.4" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -26047,9 +26076,9 @@ } }, "node_modules/undici-types": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.21.0.tgz", - "integrity": "sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ==", + "version": "7.24.6", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.24.6.tgz", + "integrity": "sha512-WRNW+sJgj5OBN4/0JpHFqtqzhpbnV0GuB+OozA9gCL7a993SmU+1JBZCzLNxYsbMfIeDL+lTsphD5jN5N+n0zg==", "dev": true, "license": "MIT" }, @@ -26137,38 +26166,41 @@ } }, "node_modules/unrs-resolver": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", - "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.12.2.tgz", + "integrity": "sha512-dmlRxBJJayXjqTwC+JtF1HhJmgf3ftQ3YejFcZrf4+KKtJv0qDsK1pjqaaVjG7wJ5NJ6UVP1OqRMQ71Z4C3rxQ==", "dev": true, "hasInstallScript": true, "license": "MIT", "dependencies": { - "napi-postinstall": "^0.3.0" + "napi-postinstall": "^0.3.4" }, "funding": { "url": "https://opencollective.com/unrs-resolver" }, "optionalDependencies": { - "@unrs/resolver-binding-android-arm-eabi": "1.11.1", - "@unrs/resolver-binding-android-arm64": "1.11.1", - "@unrs/resolver-binding-darwin-arm64": "1.11.1", - "@unrs/resolver-binding-darwin-x64": "1.11.1", - "@unrs/resolver-binding-freebsd-x64": "1.11.1", - "@unrs/resolver-binding-linux-arm-gnueabihf": "1.11.1", - "@unrs/resolver-binding-linux-arm-musleabihf": "1.11.1", - "@unrs/resolver-binding-linux-arm64-gnu": "1.11.1", - "@unrs/resolver-binding-linux-arm64-musl": "1.11.1", - "@unrs/resolver-binding-linux-ppc64-gnu": "1.11.1", - "@unrs/resolver-binding-linux-riscv64-gnu": "1.11.1", - "@unrs/resolver-binding-linux-riscv64-musl": "1.11.1", - "@unrs/resolver-binding-linux-s390x-gnu": "1.11.1", - "@unrs/resolver-binding-linux-x64-gnu": "1.11.1", - "@unrs/resolver-binding-linux-x64-musl": "1.11.1", - "@unrs/resolver-binding-wasm32-wasi": "1.11.1", - "@unrs/resolver-binding-win32-arm64-msvc": "1.11.1", - "@unrs/resolver-binding-win32-ia32-msvc": "1.11.1", - "@unrs/resolver-binding-win32-x64-msvc": "1.11.1" + "@unrs/resolver-binding-android-arm-eabi": "1.12.2", + "@unrs/resolver-binding-android-arm64": "1.12.2", + "@unrs/resolver-binding-darwin-arm64": "1.12.2", + "@unrs/resolver-binding-darwin-x64": "1.12.2", + "@unrs/resolver-binding-freebsd-x64": "1.12.2", + "@unrs/resolver-binding-linux-arm-gnueabihf": "1.12.2", + "@unrs/resolver-binding-linux-arm-musleabihf": "1.12.2", + "@unrs/resolver-binding-linux-arm64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-arm64-musl": "1.12.2", + "@unrs/resolver-binding-linux-loong64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-loong64-musl": "1.12.2", + "@unrs/resolver-binding-linux-ppc64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-riscv64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-riscv64-musl": "1.12.2", + "@unrs/resolver-binding-linux-s390x-gnu": "1.12.2", + "@unrs/resolver-binding-linux-x64-gnu": "1.12.2", + "@unrs/resolver-binding-linux-x64-musl": "1.12.2", + "@unrs/resolver-binding-openharmony-arm64": "1.12.2", + "@unrs/resolver-binding-wasm32-wasi": "1.12.2", + "@unrs/resolver-binding-win32-arm64-msvc": "1.12.2", + "@unrs/resolver-binding-win32-ia32-msvc": "1.12.2", + "@unrs/resolver-binding-win32-x64-msvc": "1.12.2" } }, "node_modules/update-browserslist-db": { @@ -26305,9 +26337,9 @@ } }, "node_modules/vite": { - "version": "8.0.12", - "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.12.tgz", - "integrity": "sha512-w2dDofOWv2QB09ZITZBsvKTVAlYvPR4IAmrY/v0ir9KvLs0xybR7i48wxhM1/oyBWO34wPns+bPGw5ZrZqDpZg==", + "version": "8.0.13", + "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.13.tgz", + "integrity": "sha512-MFtjBYgzmSxmgA4RAfjIyXWpGe1oALnjgUTzzV7QLx/TKxCzjtMH6Fd9/eVK+5Fg1qNoz5VAwsmMs/NofrmJvw==", "dev": true, "license": "MIT", "peer": true, @@ -26315,7 +26347,7 @@ "lightningcss": "^1.32.0", "picomatch": "^4.0.4", "postcss": "^8.5.14", - "rolldown": "1.0.0", + "rolldown": "1.0.1", "tinyglobby": "^0.2.16" }, "bin": { diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index 05719b2..0000000 --- a/postcss.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import path from "path"; -import { fileURLToPath } from "url"; - -const __dirname = path.dirname(fileURLToPath(import.meta.url)); - -const config = async () => { - const wrapLayer = (await import(path.join(__dirname, "src/scripts/postcss-wrap-layer.js"))).default; - - return { - plugins: [wrapLayer()], - }; -}; - -export default config; diff --git a/postcss.config.mjs b/postcss.config.mjs index f5ec3aa..7e42659 100644 --- a/postcss.config.mjs +++ b/postcss.config.mjs @@ -1,7 +1,5 @@ -import { createRequire } from "module"; - -const require = createRequire(import.meta.url); +import wrapLayerPlugin from "./src/scripts/wrapLayer.mjs"; export default { - plugins: [require.resolve("./src/scripts/nextjsPostcssWrapLayer.cjs")], + plugins: [wrapLayerPlugin], }; diff --git a/rollup.config.mjs b/rollup.config.mjs index e1b0e83..9316cee 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -14,7 +14,7 @@ import path from "path"; import process from "node:process"; import { fileURLToPath } from "url"; import json from "@rollup/plugin-json"; -import { wrapCssWithLayer } from "./src/scripts/wrap-with-layer.mjs"; +import wrapLayerPlugin from "./src/scripts/wrapLayer.mjs"; process.env.NODE_ENV = process.env.NODE_ENV || "production"; @@ -109,9 +109,9 @@ export default [ url({ url: "inline", // enable inline assets using base64 encoding }), + wrapLayerPlugin, ], }), - wrapCssWithLayer(), copy({ targets: [ { diff --git a/src/scripts/postcss-wrap-layer.js b/src/scripts/postcss-wrap-layer.js deleted file mode 100644 index aa37728..0000000 --- a/src/scripts/postcss-wrap-layer.js +++ /dev/null @@ -1,26 +0,0 @@ -const LAYER_NAME = "motif-ui"; - -/** @type {function(): {postcssPlugin: string, Once(*, {postcss: *}): void}} */ -const wrapLayerPlugin = () => { - return { - postcssPlugin: "postcss-wrap-layer", - Once(root, { postcss }) { - const from = root.source?.input?.file || ""; - if (!from.includes(".module.scss") && !from.includes(".module.css")) return; - if (root.first?.name === "layer" || !root.nodes.length) return; - - const layer = postcss.atRule({ - name: "layer", - params: LAYER_NAME, - }); - - const nodes = root.nodes.slice(); - root.removeAll(); - layer.append(nodes); - root.append(layer); - }, - }; -}; - -wrapLayerPlugin.postcss = true; -export default wrapLayerPlugin; diff --git a/src/scripts/wrap-with-layer.mjs b/src/scripts/wrap-with-layer.mjs deleted file mode 100644 index e6caeb4..0000000 --- a/src/scripts/wrap-with-layer.mjs +++ /dev/null @@ -1,29 +0,0 @@ -import { readFileSync, writeFileSync } from "fs"; -import { glob } from "glob"; - -const LAYER_NAME = "motif-ui"; - -export function wrapCssWithLayer() { - return { - name: "wrap-css-with-layer", - - async closeBundle() { - const files = await glob("dist/**/*.css", { - ignore: ["dist/themes/**"], - }); - - for (const file of files) { - const content = readFileSync(file, "utf8"); - if (content.includes(`@layer ${LAYER_NAME}`)) continue; - - const wrapped = `@layer ${LAYER_NAME} {\n${content - .split("\n") - .map(l => (l.trim() ? ` ${l}` : "")) - .join("\n")}\n}\n`; - - writeFileSync(file, wrapped, "utf8"); - console.log(`✅ Wrapped: ${file}`); - } - }, - }; -} diff --git a/src/scripts/nextjsPostcssWrapLayer.cjs b/src/scripts/wrapLayer.mjs similarity index 64% rename from src/scripts/nextjsPostcssWrapLayer.cjs rename to src/scripts/wrapLayer.mjs index 8765b12..b8eee8c 100644 --- a/src/scripts/nextjsPostcssWrapLayer.cjs +++ b/src/scripts/wrapLayer.mjs @@ -1,9 +1,10 @@ -const plugin = () => ({ +const LAYER_NAME = "motif-ui"; + +const wrapLayerPlugin = () => ({ postcssPlugin: "postcss-wrap-layer", Once(root, { atRule }) { let alreadyLayered = false; - root.walkAtRules("layer", () => { alreadyLayered = true; }); @@ -11,14 +12,13 @@ const plugin = () => ({ if (!alreadyLayered) { const nodes = [...root.nodes]; root.removeAll(); - - const layerRule = atRule({ name: "layer", params: "motif-ui" }); + const layerRule = atRule({ name: "layer", params: LAYER_NAME }); nodes.forEach(node => layerRule.append(node)); root.append(layerRule); } }, }); -plugin.postcss = true; +wrapLayerPlugin.postcss = true; -module.exports = plugin; +export default wrapLayerPlugin; From 32a609348d093cb1b947b83be7861211defb5caa Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Thu, 21 May 2026 09:51:22 +0300 Subject: [PATCH 08/17] nextjs rollup plugin is refactored and implemented back --- postcss.config.mjs | 6 ++++-- src/scripts/nextjsPostcssWrapLayer.cjs | 24 ++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 src/scripts/nextjsPostcssWrapLayer.cjs diff --git a/postcss.config.mjs b/postcss.config.mjs index 7e42659..f5ec3aa 100644 --- a/postcss.config.mjs +++ b/postcss.config.mjs @@ -1,5 +1,7 @@ -import wrapLayerPlugin from "./src/scripts/wrapLayer.mjs"; +import { createRequire } from "module"; + +const require = createRequire(import.meta.url); export default { - plugins: [wrapLayerPlugin], + plugins: [require.resolve("./src/scripts/nextjsPostcssWrapLayer.cjs")], }; diff --git a/src/scripts/nextjsPostcssWrapLayer.cjs b/src/scripts/nextjsPostcssWrapLayer.cjs new file mode 100644 index 0000000..8765b12 --- /dev/null +++ b/src/scripts/nextjsPostcssWrapLayer.cjs @@ -0,0 +1,24 @@ +const plugin = () => ({ + postcssPlugin: "postcss-wrap-layer", + + Once(root, { atRule }) { + let alreadyLayered = false; + + root.walkAtRules("layer", () => { + alreadyLayered = true; + }); + + if (!alreadyLayered) { + const nodes = [...root.nodes]; + root.removeAll(); + + const layerRule = atRule({ name: "layer", params: "motif-ui" }); + nodes.forEach(node => layerRule.append(node)); + root.append(layerRule); + } + }, +}); + +plugin.postcss = true; + +module.exports = plugin; From 482c688c6b2f38cfef2a52c3050964f04a3be9a5 Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Thu, 21 May 2026 11:06:31 +0300 Subject: [PATCH 09/17] icon problems which was accured after css errors are fixed --- src/lib/components/Stepper/components/StepperItem.tsx | 7 +++---- src/lib/components/Timeline/Timeline.module.scss | 4 +++- src/lib/components/Timeline/TimelineItem.tsx | 4 +++- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/lib/components/Stepper/components/StepperItem.tsx b/src/lib/components/Stepper/components/StepperItem.tsx index 085340d..15f9002 100644 --- a/src/lib/components/Stepper/components/StepperItem.tsx +++ b/src/lib/components/Stepper/components/StepperItem.tsx @@ -30,10 +30,9 @@ const StepperItem = (props: PropsWithChildren) => { )} ) : stepType !== "text" && (status === "completed" || status === "error" || stepType === "icon") ? ( - + + + ) : ( stepType === "number" && {index + 1} ); diff --git a/src/lib/components/Timeline/Timeline.module.scss b/src/lib/components/Timeline/Timeline.module.scss index 8f4ba36..3a7453d 100644 --- a/src/lib/components/Timeline/Timeline.module.scss +++ b/src/lib/components/Timeline/Timeline.module.scss @@ -88,7 +88,9 @@ $variants: ( border-radius: var(--theme-sizing-radius-round); } - .outlined & span { + .outlined & .markerIcon, + .outlined & .markerNumber, + .outlined & .markerDot { border-width: var(--base-sizing-2x); border-style: solid; } diff --git a/src/lib/components/Timeline/TimelineItem.tsx b/src/lib/components/Timeline/TimelineItem.tsx index 8c7a785..8368d66 100644 --- a/src/lib/components/Timeline/TimelineItem.tsx +++ b/src/lib/components/Timeline/TimelineItem.tsx @@ -18,7 +18,9 @@ const TimelineItem = memo((props: Props) => {
{markerType === "icon" ? ( - + + + ) : markerType === "number" ? ( {order} ) : ( From 2bf0de5cefb6246afb9683e46e17e6add45184da Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Thu, 21 May 2026 13:48:29 +0300 Subject: [PATCH 10/17] icon components inherits size from parents --- src/lib/components/Icon/Icon.module.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/Icon/Icon.module.scss b/src/lib/components/Icon/Icon.module.scss index fb4a19b..6374059 100644 --- a/src/lib/components/Icon/Icon.module.scss +++ b/src/lib/components/Icon/Icon.module.scss @@ -10,7 +10,7 @@ $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24 span, i { - font-size: inherit; + font-size: inherit !important; line-height: 1; &::before { vertical-align: bottom; From 5c5c0afddc140dfa256e5cf3194ee0ef8ce0a839 Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Fri, 22 May 2026 10:06:15 +0300 Subject: [PATCH 11/17] icon revert with css changes --- rollup.config.mjs | 1 - src/lib/components/Icon/Icon.module.scss | 2 +- src/lib/components/Icon/Icon.tsx | 13 +------------ .../InputPassword/InputPassword.module.scss | 6 +++--- src/lib/components/Link/Link.module.scss | 1 - src/lib/components/ListView/ListView.module.scss | 1 - src/lib/components/Timeline/Timeline.module.scss | 4 +--- src/lib/components/Timeline/TimelineItem.tsx | 4 +--- src/lib/components/Toast/Toast.module.scss | 1 - 9 files changed, 7 insertions(+), 26 deletions(-) diff --git a/rollup.config.mjs b/rollup.config.mjs index 9316cee..7f7880c 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -86,7 +86,6 @@ export default [ commonjs(), json(), styles({ - //mode: ["extract", "dist/bundle.css"], //TODO: Lets keep it like this unless there is problem. modules: { generateScopedName: generateScopedCssClassName, }, diff --git a/src/lib/components/Icon/Icon.module.scss b/src/lib/components/Icon/Icon.module.scss index 6374059..3e10c41 100644 --- a/src/lib/components/Icon/Icon.module.scss +++ b/src/lib/components/Icon/Icon.module.scss @@ -4,7 +4,7 @@ $variants: "primary", "secondary", "info", "success", "warning", "danger"; $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24x"), ("xl", "28x"), ("xxl", "32x")); .Root { - display: inline-flex; + display: inline-flex !important; vertical-align: top; user-select: none; diff --git a/src/lib/components/Icon/Icon.tsx b/src/lib/components/Icon/Icon.tsx index 7ef4e05..a580246 100644 --- a/src/lib/components/Icon/Icon.tsx +++ b/src/lib/components/Icon/Icon.tsx @@ -8,18 +8,7 @@ import usePropsWithThemeDefaults from "../../motif/hooks/usePropsWithThemeDefaul import { sanitizeModuleRootClasses } from "../../../utils/cssUtils"; const Icon = (props: PropsWithRefAndChildren) => { - const { - iconClass, - name, - svgColorType, - children, - ref, - color, - size = "md", - variant, - className, - style, - } = usePropsWithThemeDefaults("Icon", props); + const { iconClass, name, svgColorType, children, ref, color, size, variant, className, style } = usePropsWithThemeDefaults("Icon", props); const { baseIconClass } = useMotifContext(); const isChildMotifIcon = isValidElement(children) && (children.type as FunctionComponent).displayName === "Icon"; diff --git a/src/lib/components/InputPassword/InputPassword.module.scss b/src/lib/components/InputPassword/InputPassword.module.scss index 8e66ab3..05f13bd 100644 --- a/src/lib/components/InputPassword/InputPassword.module.scss +++ b/src/lib/components/InputPassword/InputPassword.module.scss @@ -103,8 +103,8 @@ $sizes: ( span:first-child { left: var(--base-sizing-#{$paddingH}); } - } - .icon { - font-size: var(--base-sizing-#{$iconSize}); + .icon { + font-size: var(--base-sizing-#{$iconSize}); + } } } diff --git a/src/lib/components/Link/Link.module.scss b/src/lib/components/Link/Link.module.scss index 9c77a08..5a1afa7 100644 --- a/src/lib/components/Link/Link.module.scss +++ b/src/lib/components/Link/Link.module.scss @@ -2,7 +2,6 @@ $sizes: (("sm", "4x", "16x"), ("md", "6x", "20x"), ("lg", "8x", "24x")); $state: ("default", "disabled", "active", "hover"); - @each $name, $gap, $iconFontSize in $sizes { .#{$name} { gap: var(--base-sizing-#{$gap}); diff --git a/src/lib/components/ListView/ListView.module.scss b/src/lib/components/ListView/ListView.module.scss index 82c97ec..5c9596d 100644 --- a/src/lib/components/ListView/ListView.module.scss +++ b/src/lib/components/ListView/ListView.module.scss @@ -1,7 +1,6 @@ @use "@styles" as *; $list-item-sizes: (("sm", "xs", "2x", "16x", "8x", "24x", "20x", "22x"), ("md", "sm", "2x", "16x", "12x", "32x", "22x", "24x"), ("lg", "md", "4x", "20x", "16x", "40x", "24x", "28x")); - @each $size, $alternateTextS, $gap, $spaceH, $paddingV, $avatarSize, $iconFontSize, $iconRightFontSize in $list-item-sizes { .#{$size} { .baseContent { diff --git a/src/lib/components/Timeline/Timeline.module.scss b/src/lib/components/Timeline/Timeline.module.scss index 3a7453d..8f4ba36 100644 --- a/src/lib/components/Timeline/Timeline.module.scss +++ b/src/lib/components/Timeline/Timeline.module.scss @@ -88,9 +88,7 @@ $variants: ( border-radius: var(--theme-sizing-radius-round); } - .outlined & .markerIcon, - .outlined & .markerNumber, - .outlined & .markerDot { + .outlined & span { border-width: var(--base-sizing-2x); border-style: solid; } diff --git a/src/lib/components/Timeline/TimelineItem.tsx b/src/lib/components/Timeline/TimelineItem.tsx index 8368d66..8c7a785 100644 --- a/src/lib/components/Timeline/TimelineItem.tsx +++ b/src/lib/components/Timeline/TimelineItem.tsx @@ -18,9 +18,7 @@ const TimelineItem = memo((props: Props) => {
{markerType === "icon" ? ( - - - + ) : markerType === "number" ? ( {order} ) : ( diff --git a/src/lib/components/Toast/Toast.module.scss b/src/lib/components/Toast/Toast.module.scss index 6ecfc19..bb665fa 100644 --- a/src/lib/components/Toast/Toast.module.scss +++ b/src/lib/components/Toast/Toast.module.scss @@ -21,7 +21,6 @@ $animation-keyframes: ( ("slideInBottom", translateY(100%), translateY(0%), 0, 1), ("slideOutBottom", translateY(0%), translateY(100%), 1, 0) ); - @each $animation, $transformZero, $transformHundred, $opacityZero, $opacityHundred in $animation-keyframes { @keyframes #{$animation} { 0% { From 5dd95cefce0292b1d5fb463b297dd418fa07d4c0 Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Fri, 22 May 2026 10:07:56 +0300 Subject: [PATCH 12/17] snapshot changes because of default md size deletion inside icon --- .../Avatar/__snapshots__/Avatar.test.tsx.snap | 2 +- .../__snapshots__/Breadcrumb.test.tsx.snap | 8 +- .../__snapshots__/Carousel.test.tsx.snap | 4 +- .../Icon/__snapshots__/Icon.test.tsx.snap | 546 +++++++++--------- .../__snapshots__/IconButton.test.tsx.snap | 546 +++++++++--------- .../__snapshots__/InputPassword.test.tsx.snap | 2 +- .../__snapshots__/MotifIcon.test.tsx.snap | 2 +- .../MotifIconButton.test.tsx.snap | 2 +- .../Table/__snapshots__/Table.test.tsx.snap | 2 +- .../__snapshots__/ImageUpload.test.tsx.snap | 2 +- .../__snapshots__/UploadDragger.test.tsx.snap | 2 +- 11 files changed, 559 insertions(+), 559 deletions(-) diff --git a/src/lib/components/Avatar/__snapshots__/Avatar.test.tsx.snap b/src/lib/components/Avatar/__snapshots__/Avatar.test.tsx.snap index 8e78dcd..da02a2f 100644 --- a/src/lib/components/Avatar/__snapshots__/Avatar.test.tsx.snap +++ b/src/lib/components/Avatar/__snapshots__/Avatar.test.tsx.snap @@ -7,7 +7,7 @@ exports[`Avatar should be rendered with only required props 1`] = ` data-testid="avatarItem" > diff --git a/src/lib/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap b/src/lib/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap index ea9ea91..0000a46 100644 --- a/src/lib/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap +++ b/src/lib/components/Breadcrumb/__snapshots__/Breadcrumb.test.tsx.snap @@ -6,7 +6,7 @@ exports[`Breadcrumb should render with only required props 1`] = ` class="Root" > @@ -21,7 +21,7 @@ exports[`Breadcrumb should render with only required props 1`] = ` Ana Sayfa @@ -37,7 +37,7 @@ exports[`Breadcrumb should render with only required props 1`] = ` ... @@ -53,7 +53,7 @@ exports[`Breadcrumb should render with only required props 1`] = ` Microsoft diff --git a/src/lib/components/Carousel/__snapshots__/Carousel.test.tsx.snap b/src/lib/components/Carousel/__snapshots__/Carousel.test.tsx.snap index 1d6ae98..6e81e28 100644 --- a/src/lib/components/Carousel/__snapshots__/Carousel.test.tsx.snap +++ b/src/lib/components/Carousel/__snapshots__/Carousel.test.tsx.snap @@ -69,7 +69,7 @@ exports[`Carousel should be rendered with only required props and should have de type="button" > @@ -82,7 +82,7 @@ exports[`Carousel should be rendered with only required props and should have de type="button" > diff --git a/src/lib/components/Icon/__snapshots__/Icon.test.tsx.snap b/src/lib/components/Icon/__snapshots__/Icon.test.tsx.snap index fce120b..1b31964 100644 --- a/src/lib/components/Icon/__snapshots__/Icon.test.tsx.snap +++ b/src/lib/components/Icon/__snapshots__/Icon.test.tsx.snap @@ -3,7 +3,7 @@ exports[`Icon should be rendered with only required props 1`] = `
@@ -15,7 +15,7 @@ exports[`Icon should be rendered with only required props 1`] = ` exports[`Icon should render all icons in motifIcons set 1`] = `
@@ -27,7 +27,7 @@ exports[`Icon should render all icons in motifIcons set 1`] = ` exports[`Icon should render all icons in motifIcons set 2`] = `
@@ -39,7 +39,7 @@ exports[`Icon should render all icons in motifIcons set 2`] = ` exports[`Icon should render all icons in motifIcons set 3`] = `
@@ -51,7 +51,7 @@ exports[`Icon should render all icons in motifIcons set 3`] = ` exports[`Icon should render all icons in motifIcons set 4`] = `
@@ -63,7 +63,7 @@ exports[`Icon should render all icons in motifIcons set 4`] = ` exports[`Icon should render all icons in motifIcons set 5`] = `
@@ -75,7 +75,7 @@ exports[`Icon should render all icons in motifIcons set 5`] = ` exports[`Icon should render all icons in motifIcons set 6`] = `
@@ -87,7 +87,7 @@ exports[`Icon should render all icons in motifIcons set 6`] = ` exports[`Icon should render all icons in motifIcons set 7`] = `
@@ -99,7 +99,7 @@ exports[`Icon should render all icons in motifIcons set 7`] = ` exports[`Icon should render all icons in motifIcons set 8`] = `
@@ -111,7 +111,7 @@ exports[`Icon should render all icons in motifIcons set 8`] = ` exports[`Icon should render all icons in motifIcons set 9`] = `
@@ -123,7 +123,7 @@ exports[`Icon should render all icons in motifIcons set 9`] = ` exports[`Icon should render all icons in motifIcons set 10`] = `
@@ -135,7 +135,7 @@ exports[`Icon should render all icons in motifIcons set 10`] = ` exports[`Icon should render all icons in motifIcons set 11`] = `
@@ -147,7 +147,7 @@ exports[`Icon should render all icons in motifIcons set 11`] = ` exports[`Icon should render all icons in motifIcons set 12`] = `
@@ -159,7 +159,7 @@ exports[`Icon should render all icons in motifIcons set 12`] = ` exports[`Icon should render all icons in motifIcons set 13`] = `
@@ -171,7 +171,7 @@ exports[`Icon should render all icons in motifIcons set 13`] = ` exports[`Icon should render all icons in motifIcons set 14`] = `
@@ -183,7 +183,7 @@ exports[`Icon should render all icons in motifIcons set 14`] = ` exports[`Icon should render all icons in motifIcons set 15`] = `
@@ -195,7 +195,7 @@ exports[`Icon should render all icons in motifIcons set 15`] = ` exports[`Icon should render all icons in motifIcons set 16`] = `
@@ -207,7 +207,7 @@ exports[`Icon should render all icons in motifIcons set 16`] = ` exports[`Icon should render all icons in motifIcons set 17`] = `
@@ -219,7 +219,7 @@ exports[`Icon should render all icons in motifIcons set 17`] = ` exports[`Icon should render all icons in motifIcons set 18`] = `
@@ -231,7 +231,7 @@ exports[`Icon should render all icons in motifIcons set 18`] = ` exports[`Icon should render all icons in motifIcons set 19`] = `
@@ -243,7 +243,7 @@ exports[`Icon should render all icons in motifIcons set 19`] = ` exports[`Icon should render all icons in motifIcons set 20`] = `
@@ -255,7 +255,7 @@ exports[`Icon should render all icons in motifIcons set 20`] = ` exports[`Icon should render all icons in motifIcons set 21`] = `
@@ -267,7 +267,7 @@ exports[`Icon should render all icons in motifIcons set 21`] = ` exports[`Icon should render all icons in motifIcons set 22`] = `
@@ -279,7 +279,7 @@ exports[`Icon should render all icons in motifIcons set 22`] = ` exports[`Icon should render all icons in motifIcons set 23`] = `
@@ -291,7 +291,7 @@ exports[`Icon should render all icons in motifIcons set 23`] = ` exports[`Icon should render all icons in motifIcons set 24`] = `
@@ -303,7 +303,7 @@ exports[`Icon should render all icons in motifIcons set 24`] = ` exports[`Icon should render all icons in motifIcons set 25`] = `
@@ -315,7 +315,7 @@ exports[`Icon should render all icons in motifIcons set 25`] = ` exports[`Icon should render all icons in motifIcons set 26`] = `
@@ -327,7 +327,7 @@ exports[`Icon should render all icons in motifIcons set 26`] = ` exports[`Icon should render all icons in motifIcons set 27`] = `
@@ -339,7 +339,7 @@ exports[`Icon should render all icons in motifIcons set 27`] = ` exports[`Icon should render all icons in motifIcons set 28`] = `
@@ -351,7 +351,7 @@ exports[`Icon should render all icons in motifIcons set 28`] = ` exports[`Icon should render all icons in motifIcons set 29`] = `
@@ -363,7 +363,7 @@ exports[`Icon should render all icons in motifIcons set 29`] = ` exports[`Icon should render all icons in motifIcons set 30`] = `
@@ -375,7 +375,7 @@ exports[`Icon should render all icons in motifIcons set 30`] = ` exports[`Icon should render all icons in motifIcons set 31`] = `
@@ -387,7 +387,7 @@ exports[`Icon should render all icons in motifIcons set 31`] = ` exports[`Icon should render all icons in motifIcons set 32`] = `
@@ -399,7 +399,7 @@ exports[`Icon should render all icons in motifIcons set 32`] = ` exports[`Icon should render all icons in motifIcons set 33`] = `
@@ -411,7 +411,7 @@ exports[`Icon should render all icons in motifIcons set 33`] = ` exports[`Icon should render all icons in motifIcons set 34`] = `
@@ -423,7 +423,7 @@ exports[`Icon should render all icons in motifIcons set 34`] = ` exports[`Icon should render all icons in motifIcons set 35`] = `
@@ -435,7 +435,7 @@ exports[`Icon should render all icons in motifIcons set 35`] = ` exports[`Icon should render all icons in motifIcons set 36`] = `
@@ -447,7 +447,7 @@ exports[`Icon should render all icons in motifIcons set 36`] = ` exports[`Icon should render all icons in motifIcons set 37`] = `
@@ -459,7 +459,7 @@ exports[`Icon should render all icons in motifIcons set 37`] = ` exports[`Icon should render all icons in motifIcons set 38`] = `
@@ -471,7 +471,7 @@ exports[`Icon should render all icons in motifIcons set 38`] = ` exports[`Icon should render all icons in motifIcons set 39`] = `
@@ -483,7 +483,7 @@ exports[`Icon should render all icons in motifIcons set 39`] = ` exports[`Icon should render all icons in motifIcons set 40`] = `
@@ -495,7 +495,7 @@ exports[`Icon should render all icons in motifIcons set 40`] = ` exports[`Icon should render all icons in motifIcons set 41`] = `
@@ -507,7 +507,7 @@ exports[`Icon should render all icons in motifIcons set 41`] = ` exports[`Icon should render all icons in motifIcons set 42`] = `
@@ -519,7 +519,7 @@ exports[`Icon should render all icons in motifIcons set 42`] = ` exports[`Icon should render all icons in motifIcons set 43`] = `
@@ -531,7 +531,7 @@ exports[`Icon should render all icons in motifIcons set 43`] = ` exports[`Icon should render all icons in motifIcons set 44`] = `
@@ -543,7 +543,7 @@ exports[`Icon should render all icons in motifIcons set 44`] = ` exports[`Icon should render all icons in motifIcons set 45`] = `
@@ -555,7 +555,7 @@ exports[`Icon should render all icons in motifIcons set 45`] = ` exports[`Icon should render all icons in motifIcons set 46`] = `
@@ -567,7 +567,7 @@ exports[`Icon should render all icons in motifIcons set 46`] = ` exports[`Icon should render all icons in motifIcons set 47`] = `
@@ -579,7 +579,7 @@ exports[`Icon should render all icons in motifIcons set 47`] = ` exports[`Icon should render all icons in motifIcons set 48`] = `
@@ -591,7 +591,7 @@ exports[`Icon should render all icons in motifIcons set 48`] = ` exports[`Icon should render all icons in motifIcons set 49`] = `
@@ -603,7 +603,7 @@ exports[`Icon should render all icons in motifIcons set 49`] = ` exports[`Icon should render all icons in motifIcons set 50`] = `
@@ -615,7 +615,7 @@ exports[`Icon should render all icons in motifIcons set 50`] = ` exports[`Icon should render all icons in motifIcons set 51`] = `
@@ -627,7 +627,7 @@ exports[`Icon should render all icons in motifIcons set 51`] = ` exports[`Icon should render all icons in motifIcons set 52`] = `
@@ -639,7 +639,7 @@ exports[`Icon should render all icons in motifIcons set 52`] = ` exports[`Icon should render all icons in motifIcons set 53`] = `
@@ -651,7 +651,7 @@ exports[`Icon should render all icons in motifIcons set 53`] = ` exports[`Icon should render all icons in motifIcons set 54`] = `
@@ -663,7 +663,7 @@ exports[`Icon should render all icons in motifIcons set 54`] = ` exports[`Icon should render all icons in motifIcons set 55`] = `
@@ -675,7 +675,7 @@ exports[`Icon should render all icons in motifIcons set 55`] = ` exports[`Icon should render all icons in motifIcons set 56`] = `
@@ -687,7 +687,7 @@ exports[`Icon should render all icons in motifIcons set 56`] = ` exports[`Icon should render all icons in motifIcons set 57`] = `
@@ -699,7 +699,7 @@ exports[`Icon should render all icons in motifIcons set 57`] = ` exports[`Icon should render all icons in motifIcons set 58`] = `
@@ -711,7 +711,7 @@ exports[`Icon should render all icons in motifIcons set 58`] = ` exports[`Icon should render all icons in motifIcons set 59`] = `
@@ -723,7 +723,7 @@ exports[`Icon should render all icons in motifIcons set 59`] = ` exports[`Icon should render all icons in motifIcons set 60`] = `
@@ -735,7 +735,7 @@ exports[`Icon should render all icons in motifIcons set 60`] = ` exports[`Icon should render all icons in motifIcons set 61`] = `
@@ -747,7 +747,7 @@ exports[`Icon should render all icons in motifIcons set 61`] = ` exports[`Icon should render all icons in motifIcons set 62`] = `
@@ -759,7 +759,7 @@ exports[`Icon should render all icons in motifIcons set 62`] = ` exports[`Icon should render all icons in motifIcons set 63`] = `
@@ -771,7 +771,7 @@ exports[`Icon should render all icons in motifIcons set 63`] = ` exports[`Icon should render all icons in motifIcons set 64`] = `
@@ -783,7 +783,7 @@ exports[`Icon should render all icons in motifIcons set 64`] = ` exports[`Icon should render all icons in motifIcons set 65`] = `
@@ -795,7 +795,7 @@ exports[`Icon should render all icons in motifIcons set 65`] = ` exports[`Icon should render all icons in motifIcons set 66`] = `
@@ -807,7 +807,7 @@ exports[`Icon should render all icons in motifIcons set 66`] = ` exports[`Icon should render all icons in motifIcons set 67`] = `
@@ -819,7 +819,7 @@ exports[`Icon should render all icons in motifIcons set 67`] = ` exports[`Icon should render all icons in motifIcons set 68`] = `
@@ -831,7 +831,7 @@ exports[`Icon should render all icons in motifIcons set 68`] = ` exports[`Icon should render all icons in motifIcons set 69`] = `
@@ -843,7 +843,7 @@ exports[`Icon should render all icons in motifIcons set 69`] = ` exports[`Icon should render all icons in motifIcons set 70`] = `
@@ -855,7 +855,7 @@ exports[`Icon should render all icons in motifIcons set 70`] = ` exports[`Icon should render all icons in motifIcons set 71`] = `
@@ -867,7 +867,7 @@ exports[`Icon should render all icons in motifIcons set 71`] = ` exports[`Icon should render all icons in motifIcons set 72`] = `
@@ -879,7 +879,7 @@ exports[`Icon should render all icons in motifIcons set 72`] = ` exports[`Icon should render all icons in motifIcons set 73`] = `
@@ -891,7 +891,7 @@ exports[`Icon should render all icons in motifIcons set 73`] = ` exports[`Icon should render all icons in motifIcons set 74`] = `
@@ -903,7 +903,7 @@ exports[`Icon should render all icons in motifIcons set 74`] = ` exports[`Icon should render all icons in motifIcons set 75`] = `
@@ -915,7 +915,7 @@ exports[`Icon should render all icons in motifIcons set 75`] = ` exports[`Icon should render all icons in motifIcons set 76`] = `
@@ -927,7 +927,7 @@ exports[`Icon should render all icons in motifIcons set 76`] = ` exports[`Icon should render all icons in motifIcons set 77`] = `
@@ -939,7 +939,7 @@ exports[`Icon should render all icons in motifIcons set 77`] = ` exports[`Icon should render all icons in motifIcons set 78`] = `
@@ -951,7 +951,7 @@ exports[`Icon should render all icons in motifIcons set 78`] = ` exports[`Icon should render all icons in motifIcons set 79`] = `
@@ -963,7 +963,7 @@ exports[`Icon should render all icons in motifIcons set 79`] = ` exports[`Icon should render all icons in motifIcons set 80`] = `
@@ -975,7 +975,7 @@ exports[`Icon should render all icons in motifIcons set 80`] = ` exports[`Icon should render all icons in motifIcons set 81`] = `
@@ -987,7 +987,7 @@ exports[`Icon should render all icons in motifIcons set 81`] = ` exports[`Icon should render all icons in motifIcons set 82`] = `
@@ -999,7 +999,7 @@ exports[`Icon should render all icons in motifIcons set 82`] = ` exports[`Icon should render all icons in motifIcons set 83`] = `
@@ -1011,7 +1011,7 @@ exports[`Icon should render all icons in motifIcons set 83`] = ` exports[`Icon should render all icons in motifIcons set 84`] = `
@@ -1023,7 +1023,7 @@ exports[`Icon should render all icons in motifIcons set 84`] = ` exports[`Icon should render all icons in motifIcons set 85`] = `
@@ -1035,7 +1035,7 @@ exports[`Icon should render all icons in motifIcons set 85`] = ` exports[`Icon should render all icons in motifIcons set 86`] = `
@@ -1047,7 +1047,7 @@ exports[`Icon should render all icons in motifIcons set 86`] = ` exports[`Icon should render all icons in motifIcons set 87`] = `
@@ -1059,7 +1059,7 @@ exports[`Icon should render all icons in motifIcons set 87`] = ` exports[`Icon should render all icons in motifIcons set 88`] = `
@@ -1071,7 +1071,7 @@ exports[`Icon should render all icons in motifIcons set 88`] = ` exports[`Icon should render all icons in motifIcons set 89`] = `
@@ -1083,7 +1083,7 @@ exports[`Icon should render all icons in motifIcons set 89`] = ` exports[`Icon should render all icons in motifIcons set 90`] = `
@@ -1095,7 +1095,7 @@ exports[`Icon should render all icons in motifIcons set 90`] = ` exports[`Icon should render all icons in motifIcons set 91`] = `
@@ -1107,7 +1107,7 @@ exports[`Icon should render all icons in motifIcons set 91`] = ` exports[`Icon should render all icons in motifIcons set 92`] = `
@@ -1119,7 +1119,7 @@ exports[`Icon should render all icons in motifIcons set 92`] = ` exports[`Icon should render all icons in motifIcons set 93`] = `
@@ -1131,7 +1131,7 @@ exports[`Icon should render all icons in motifIcons set 93`] = ` exports[`Icon should render all icons in motifIcons set 94`] = `
@@ -1143,7 +1143,7 @@ exports[`Icon should render all icons in motifIcons set 94`] = ` exports[`Icon should render all icons in motifIcons set 95`] = `
@@ -1155,7 +1155,7 @@ exports[`Icon should render all icons in motifIcons set 95`] = ` exports[`Icon should render all icons in motifIcons set 96`] = `
@@ -1167,7 +1167,7 @@ exports[`Icon should render all icons in motifIcons set 96`] = ` exports[`Icon should render all icons in motifIcons set 97`] = `
@@ -1179,7 +1179,7 @@ exports[`Icon should render all icons in motifIcons set 97`] = ` exports[`Icon should render all icons in motifIcons set 98`] = `
@@ -1191,7 +1191,7 @@ exports[`Icon should render all icons in motifIcons set 98`] = ` exports[`Icon should render all icons in motifIcons set 99`] = `
@@ -1203,7 +1203,7 @@ exports[`Icon should render all icons in motifIcons set 99`] = ` exports[`Icon should render all icons in motifIcons set 100`] = `
@@ -1215,7 +1215,7 @@ exports[`Icon should render all icons in motifIcons set 100`] = ` exports[`Icon should render all icons in motifIcons set 101`] = `
@@ -1227,7 +1227,7 @@ exports[`Icon should render all icons in motifIcons set 101`] = ` exports[`Icon should render all icons in motifIcons set 102`] = `
@@ -1239,7 +1239,7 @@ exports[`Icon should render all icons in motifIcons set 102`] = ` exports[`Icon should render all icons in motifIcons set 103`] = `
@@ -1251,7 +1251,7 @@ exports[`Icon should render all icons in motifIcons set 103`] = ` exports[`Icon should render all icons in motifIcons set 104`] = `
@@ -1263,7 +1263,7 @@ exports[`Icon should render all icons in motifIcons set 104`] = ` exports[`Icon should render all icons in motifIcons set 105`] = `
@@ -1275,7 +1275,7 @@ exports[`Icon should render all icons in motifIcons set 105`] = ` exports[`Icon should render all icons in motifIcons set 106`] = `
@@ -1287,7 +1287,7 @@ exports[`Icon should render all icons in motifIcons set 106`] = ` exports[`Icon should render all icons in motifIcons set 107`] = `
@@ -1299,7 +1299,7 @@ exports[`Icon should render all icons in motifIcons set 107`] = ` exports[`Icon should render all icons in motifIcons set 108`] = `
@@ -1311,7 +1311,7 @@ exports[`Icon should render all icons in motifIcons set 108`] = ` exports[`Icon should render all icons in motifIcons set 109`] = `
@@ -1323,7 +1323,7 @@ exports[`Icon should render all icons in motifIcons set 109`] = ` exports[`Icon should render all icons in motifIcons set 110`] = `
@@ -1335,7 +1335,7 @@ exports[`Icon should render all icons in motifIcons set 110`] = ` exports[`Icon should render all icons in motifIcons set 111`] = `
@@ -1347,7 +1347,7 @@ exports[`Icon should render all icons in motifIcons set 111`] = ` exports[`Icon should render all icons in motifIcons set 112`] = `
@@ -1359,7 +1359,7 @@ exports[`Icon should render all icons in motifIcons set 112`] = ` exports[`Icon should render all icons in motifIcons set 113`] = `
@@ -1371,7 +1371,7 @@ exports[`Icon should render all icons in motifIcons set 113`] = ` exports[`Icon should render all icons in motifIcons set 114`] = `
@@ -1383,7 +1383,7 @@ exports[`Icon should render all icons in motifIcons set 114`] = ` exports[`Icon should render all icons in motifIcons set 115`] = `
@@ -1395,7 +1395,7 @@ exports[`Icon should render all icons in motifIcons set 115`] = ` exports[`Icon should render all icons in motifIcons set 116`] = `
@@ -1407,7 +1407,7 @@ exports[`Icon should render all icons in motifIcons set 116`] = ` exports[`Icon should render all icons in motifIcons set 117`] = `
@@ -1419,7 +1419,7 @@ exports[`Icon should render all icons in motifIcons set 117`] = ` exports[`Icon should render all icons in motifIcons set 118`] = `
@@ -1431,7 +1431,7 @@ exports[`Icon should render all icons in motifIcons set 118`] = ` exports[`Icon should render all icons in motifIcons set 119`] = `
@@ -1443,7 +1443,7 @@ exports[`Icon should render all icons in motifIcons set 119`] = ` exports[`Icon should render all icons in motifIcons set 120`] = `
@@ -1455,7 +1455,7 @@ exports[`Icon should render all icons in motifIcons set 120`] = ` exports[`Icon should render all icons in motifIcons set 121`] = `
@@ -1467,7 +1467,7 @@ exports[`Icon should render all icons in motifIcons set 121`] = ` exports[`Icon should render all icons in motifIcons set 122`] = `
@@ -1479,7 +1479,7 @@ exports[`Icon should render all icons in motifIcons set 122`] = ` exports[`Icon should render all icons in motifIcons set 123`] = `
@@ -1491,7 +1491,7 @@ exports[`Icon should render all icons in motifIcons set 123`] = ` exports[`Icon should render all icons in motifIcons set 124`] = `
@@ -1503,7 +1503,7 @@ exports[`Icon should render all icons in motifIcons set 124`] = ` exports[`Icon should render all icons in motifIcons set 125`] = `
@@ -1515,7 +1515,7 @@ exports[`Icon should render all icons in motifIcons set 125`] = ` exports[`Icon should render all icons in motifIcons set 126`] = `
@@ -1527,7 +1527,7 @@ exports[`Icon should render all icons in motifIcons set 126`] = ` exports[`Icon should render all icons in motifIcons set 127`] = `
@@ -1539,7 +1539,7 @@ exports[`Icon should render all icons in motifIcons set 127`] = ` exports[`Icon should render all icons in motifIcons set 128`] = `
@@ -1551,7 +1551,7 @@ exports[`Icon should render all icons in motifIcons set 128`] = ` exports[`Icon should render all icons in motifIcons set 129`] = `
@@ -1563,7 +1563,7 @@ exports[`Icon should render all icons in motifIcons set 129`] = ` exports[`Icon should render all icons in motifIcons set 130`] = `
@@ -1575,7 +1575,7 @@ exports[`Icon should render all icons in motifIcons set 130`] = ` exports[`Icon should render all icons in motifIcons set 131`] = `
@@ -1587,7 +1587,7 @@ exports[`Icon should render all icons in motifIcons set 131`] = ` exports[`Icon should render all icons in motifIcons set 132`] = `
@@ -1599,7 +1599,7 @@ exports[`Icon should render all icons in motifIcons set 132`] = ` exports[`Icon should render all icons in motifIcons set 133`] = `
@@ -1611,7 +1611,7 @@ exports[`Icon should render all icons in motifIcons set 133`] = ` exports[`Icon should render all icons in motifIcons set 134`] = `
@@ -1623,7 +1623,7 @@ exports[`Icon should render all icons in motifIcons set 134`] = ` exports[`Icon should render all icons in motifIcons set 135`] = `
@@ -1635,7 +1635,7 @@ exports[`Icon should render all icons in motifIcons set 135`] = ` exports[`Icon should render all icons in motifIcons set 136`] = `
@@ -1647,7 +1647,7 @@ exports[`Icon should render all icons in motifIcons set 136`] = ` exports[`Icon should render all icons in motifIcons set 137`] = `
@@ -1659,7 +1659,7 @@ exports[`Icon should render all icons in motifIcons set 137`] = ` exports[`Icon should render all icons in motifIcons set 138`] = `
@@ -1671,7 +1671,7 @@ exports[`Icon should render all icons in motifIcons set 138`] = ` exports[`Icon should render all icons in motifIcons set 139`] = `
@@ -1683,7 +1683,7 @@ exports[`Icon should render all icons in motifIcons set 139`] = ` exports[`Icon should render all icons in motifIcons set 140`] = `
@@ -1695,7 +1695,7 @@ exports[`Icon should render all icons in motifIcons set 140`] = ` exports[`Icon should render all icons in motifIcons set 141`] = `
@@ -1707,7 +1707,7 @@ exports[`Icon should render all icons in motifIcons set 141`] = ` exports[`Icon should render all icons in motifIcons set 142`] = `
@@ -1719,7 +1719,7 @@ exports[`Icon should render all icons in motifIcons set 142`] = ` exports[`Icon should render all icons in motifIcons set 143`] = `
@@ -1731,7 +1731,7 @@ exports[`Icon should render all icons in motifIcons set 143`] = ` exports[`Icon should render all icons in motifIcons set 144`] = `
@@ -1743,7 +1743,7 @@ exports[`Icon should render all icons in motifIcons set 144`] = ` exports[`Icon should render all icons in motifIcons set 145`] = `
@@ -1755,7 +1755,7 @@ exports[`Icon should render all icons in motifIcons set 145`] = ` exports[`Icon should render all icons in motifIcons set 146`] = `
@@ -1767,7 +1767,7 @@ exports[`Icon should render all icons in motifIcons set 146`] = ` exports[`Icon should render all icons in motifIcons set 147`] = `
@@ -1779,7 +1779,7 @@ exports[`Icon should render all icons in motifIcons set 147`] = ` exports[`Icon should render all icons in motifIcons set 148`] = `
@@ -1791,7 +1791,7 @@ exports[`Icon should render all icons in motifIcons set 148`] = ` exports[`Icon should render all icons in motifIcons set 149`] = `
@@ -1803,7 +1803,7 @@ exports[`Icon should render all icons in motifIcons set 149`] = ` exports[`Icon should render all icons in motifIcons set 150`] = `
@@ -1815,7 +1815,7 @@ exports[`Icon should render all icons in motifIcons set 150`] = ` exports[`Icon should render all icons in motifIcons set 151`] = `
@@ -1827,7 +1827,7 @@ exports[`Icon should render all icons in motifIcons set 151`] = ` exports[`Icon should render all icons in motifIcons set 152`] = `
@@ -1839,7 +1839,7 @@ exports[`Icon should render all icons in motifIcons set 152`] = ` exports[`Icon should render all icons in motifIcons set 153`] = `
@@ -1851,7 +1851,7 @@ exports[`Icon should render all icons in motifIcons set 153`] = ` exports[`Icon should render all icons in motifIcons set 154`] = `
@@ -1863,7 +1863,7 @@ exports[`Icon should render all icons in motifIcons set 154`] = ` exports[`Icon should render all icons in motifIcons set 155`] = `
@@ -1875,7 +1875,7 @@ exports[`Icon should render all icons in motifIcons set 155`] = ` exports[`Icon should render all icons in motifIcons set 156`] = `
@@ -1887,7 +1887,7 @@ exports[`Icon should render all icons in motifIcons set 156`] = ` exports[`Icon should render all icons in motifIcons set 157`] = `
@@ -1899,7 +1899,7 @@ exports[`Icon should render all icons in motifIcons set 157`] = ` exports[`Icon should render all icons in motifIcons set 158`] = `
@@ -1911,7 +1911,7 @@ exports[`Icon should render all icons in motifIcons set 158`] = ` exports[`Icon should render all icons in motifIcons set 159`] = `
@@ -1923,7 +1923,7 @@ exports[`Icon should render all icons in motifIcons set 159`] = ` exports[`Icon should render all icons in motifIcons set 160`] = `
@@ -1935,7 +1935,7 @@ exports[`Icon should render all icons in motifIcons set 160`] = ` exports[`Icon should render all icons in motifIcons set 161`] = `
@@ -1947,7 +1947,7 @@ exports[`Icon should render all icons in motifIcons set 161`] = ` exports[`Icon should render all icons in motifIcons set 162`] = `
@@ -1959,7 +1959,7 @@ exports[`Icon should render all icons in motifIcons set 162`] = ` exports[`Icon should render all icons in motifIcons set 163`] = `
@@ -1971,7 +1971,7 @@ exports[`Icon should render all icons in motifIcons set 163`] = ` exports[`Icon should render all icons in motifIcons set 164`] = `
@@ -1983,7 +1983,7 @@ exports[`Icon should render all icons in motifIcons set 164`] = ` exports[`Icon should render all icons in motifIcons set 165`] = `
@@ -1995,7 +1995,7 @@ exports[`Icon should render all icons in motifIcons set 165`] = ` exports[`Icon should render all icons in motifIcons set 166`] = `
@@ -2007,7 +2007,7 @@ exports[`Icon should render all icons in motifIcons set 166`] = ` exports[`Icon should render all icons in motifIcons set 167`] = `
@@ -2019,7 +2019,7 @@ exports[`Icon should render all icons in motifIcons set 167`] = ` exports[`Icon should render all icons in motifIcons set 168`] = `
@@ -2031,7 +2031,7 @@ exports[`Icon should render all icons in motifIcons set 168`] = ` exports[`Icon should render all icons in motifIcons set 169`] = `
@@ -2043,7 +2043,7 @@ exports[`Icon should render all icons in motifIcons set 169`] = ` exports[`Icon should render all icons in motifIcons set 170`] = `
@@ -2055,7 +2055,7 @@ exports[`Icon should render all icons in motifIcons set 170`] = ` exports[`Icon should render all icons in motifIcons set 171`] = `
@@ -2067,7 +2067,7 @@ exports[`Icon should render all icons in motifIcons set 171`] = ` exports[`Icon should render all icons in motifIcons set 172`] = `
@@ -2079,7 +2079,7 @@ exports[`Icon should render all icons in motifIcons set 172`] = ` exports[`Icon should render all icons in motifIcons set 173`] = `
@@ -2091,7 +2091,7 @@ exports[`Icon should render all icons in motifIcons set 173`] = ` exports[`Icon should render all icons in motifIcons set 174`] = `
@@ -2103,7 +2103,7 @@ exports[`Icon should render all icons in motifIcons set 174`] = ` exports[`Icon should render all icons in motifIcons set 175`] = `
@@ -2115,7 +2115,7 @@ exports[`Icon should render all icons in motifIcons set 175`] = ` exports[`Icon should render all icons in motifIcons set 176`] = `
@@ -2127,7 +2127,7 @@ exports[`Icon should render all icons in motifIcons set 176`] = ` exports[`Icon should render all icons in motifIcons set 177`] = `
@@ -2139,7 +2139,7 @@ exports[`Icon should render all icons in motifIcons set 177`] = ` exports[`Icon should render all icons in motifIcons set 178`] = `
@@ -2151,7 +2151,7 @@ exports[`Icon should render all icons in motifIcons set 178`] = ` exports[`Icon should render all icons in motifIcons set 179`] = `
@@ -2163,7 +2163,7 @@ exports[`Icon should render all icons in motifIcons set 179`] = ` exports[`Icon should render all icons in motifIcons set 180`] = `
@@ -2175,7 +2175,7 @@ exports[`Icon should render all icons in motifIcons set 180`] = ` exports[`Icon should render all icons in motifIcons set 181`] = `
@@ -2187,7 +2187,7 @@ exports[`Icon should render all icons in motifIcons set 181`] = ` exports[`Icon should render all icons in motifIcons set 182`] = `
@@ -2199,7 +2199,7 @@ exports[`Icon should render all icons in motifIcons set 182`] = ` exports[`Icon should render all icons in motifIcons set 183`] = `
@@ -2211,7 +2211,7 @@ exports[`Icon should render all icons in motifIcons set 183`] = ` exports[`Icon should render all icons in motifIcons set 184`] = `
@@ -2223,7 +2223,7 @@ exports[`Icon should render all icons in motifIcons set 184`] = ` exports[`Icon should render all icons in motifIcons set 185`] = `
@@ -2235,7 +2235,7 @@ exports[`Icon should render all icons in motifIcons set 185`] = ` exports[`Icon should render all icons in motifIcons set 186`] = `
@@ -2247,7 +2247,7 @@ exports[`Icon should render all icons in motifIcons set 186`] = ` exports[`Icon should render all icons in motifIcons set 187`] = `
@@ -2259,7 +2259,7 @@ exports[`Icon should render all icons in motifIcons set 187`] = ` exports[`Icon should render all icons in motifIcons set 188`] = `
@@ -2271,7 +2271,7 @@ exports[`Icon should render all icons in motifIcons set 188`] = ` exports[`Icon should render all icons in motifIcons set 189`] = `
@@ -2283,7 +2283,7 @@ exports[`Icon should render all icons in motifIcons set 189`] = ` exports[`Icon should render all icons in motifIcons set 190`] = `
@@ -2295,7 +2295,7 @@ exports[`Icon should render all icons in motifIcons set 190`] = ` exports[`Icon should render all icons in motifIcons set 191`] = `
@@ -2307,7 +2307,7 @@ exports[`Icon should render all icons in motifIcons set 191`] = ` exports[`Icon should render all icons in motifIcons set 192`] = `
@@ -2319,7 +2319,7 @@ exports[`Icon should render all icons in motifIcons set 192`] = ` exports[`Icon should render all icons in motifIcons set 193`] = `
@@ -2331,7 +2331,7 @@ exports[`Icon should render all icons in motifIcons set 193`] = ` exports[`Icon should render all icons in motifIcons set 194`] = `
@@ -2343,7 +2343,7 @@ exports[`Icon should render all icons in motifIcons set 194`] = ` exports[`Icon should render all icons in motifIcons set 195`] = `
@@ -2355,7 +2355,7 @@ exports[`Icon should render all icons in motifIcons set 195`] = ` exports[`Icon should render all icons in motifIcons set 196`] = `
@@ -2367,7 +2367,7 @@ exports[`Icon should render all icons in motifIcons set 196`] = ` exports[`Icon should render all icons in motifIcons set 197`] = `
@@ -2379,7 +2379,7 @@ exports[`Icon should render all icons in motifIcons set 197`] = ` exports[`Icon should render all icons in motifIcons set 198`] = `
@@ -2391,7 +2391,7 @@ exports[`Icon should render all icons in motifIcons set 198`] = ` exports[`Icon should render all icons in motifIcons set 199`] = `
@@ -2403,7 +2403,7 @@ exports[`Icon should render all icons in motifIcons set 199`] = ` exports[`Icon should render all icons in motifIcons set 200`] = `
@@ -2415,7 +2415,7 @@ exports[`Icon should render all icons in motifIcons set 200`] = ` exports[`Icon should render all icons in motifIcons set 201`] = `
@@ -2427,7 +2427,7 @@ exports[`Icon should render all icons in motifIcons set 201`] = ` exports[`Icon should render all icons in motifIcons set 202`] = `
@@ -2439,7 +2439,7 @@ exports[`Icon should render all icons in motifIcons set 202`] = ` exports[`Icon should render all icons in motifIcons set 203`] = `
@@ -2451,7 +2451,7 @@ exports[`Icon should render all icons in motifIcons set 203`] = ` exports[`Icon should render all icons in motifIcons set 204`] = `
@@ -2463,7 +2463,7 @@ exports[`Icon should render all icons in motifIcons set 204`] = ` exports[`Icon should render all icons in motifIcons set 205`] = `
@@ -2475,7 +2475,7 @@ exports[`Icon should render all icons in motifIcons set 205`] = ` exports[`Icon should render all icons in motifIcons set 206`] = `
@@ -2487,7 +2487,7 @@ exports[`Icon should render all icons in motifIcons set 206`] = ` exports[`Icon should render all icons in motifIcons set 207`] = `
@@ -2499,7 +2499,7 @@ exports[`Icon should render all icons in motifIcons set 207`] = ` exports[`Icon should render all icons in motifIcons set 208`] = `
@@ -2511,7 +2511,7 @@ exports[`Icon should render all icons in motifIcons set 208`] = ` exports[`Icon should render all icons in motifIcons set 209`] = `
@@ -2523,7 +2523,7 @@ exports[`Icon should render all icons in motifIcons set 209`] = ` exports[`Icon should render all icons in motifIcons set 210`] = `
@@ -2535,7 +2535,7 @@ exports[`Icon should render all icons in motifIcons set 210`] = ` exports[`Icon should render all icons in motifIcons set 211`] = `
@@ -2547,7 +2547,7 @@ exports[`Icon should render all icons in motifIcons set 211`] = ` exports[`Icon should render all icons in motifIcons set 212`] = `
@@ -2559,7 +2559,7 @@ exports[`Icon should render all icons in motifIcons set 212`] = ` exports[`Icon should render all icons in motifIcons set 213`] = `
@@ -2571,7 +2571,7 @@ exports[`Icon should render all icons in motifIcons set 213`] = ` exports[`Icon should render all icons in motifIcons set 214`] = `
@@ -2583,7 +2583,7 @@ exports[`Icon should render all icons in motifIcons set 214`] = ` exports[`Icon should render all icons in motifIcons set 215`] = `
@@ -2595,7 +2595,7 @@ exports[`Icon should render all icons in motifIcons set 215`] = ` exports[`Icon should render all icons in motifIcons set 216`] = `
@@ -2607,7 +2607,7 @@ exports[`Icon should render all icons in motifIcons set 216`] = ` exports[`Icon should render all icons in motifIcons set 217`] = `
@@ -2619,7 +2619,7 @@ exports[`Icon should render all icons in motifIcons set 217`] = ` exports[`Icon should render all icons in motifIcons set 218`] = `
@@ -2631,7 +2631,7 @@ exports[`Icon should render all icons in motifIcons set 218`] = ` exports[`Icon should render all icons in motifIcons set 219`] = `
@@ -2643,7 +2643,7 @@ exports[`Icon should render all icons in motifIcons set 219`] = ` exports[`Icon should render all icons in motifIcons set 220`] = `
@@ -2655,7 +2655,7 @@ exports[`Icon should render all icons in motifIcons set 220`] = ` exports[`Icon should render all icons in motifIcons set 221`] = `
@@ -2667,7 +2667,7 @@ exports[`Icon should render all icons in motifIcons set 221`] = ` exports[`Icon should render all icons in motifIcons set 222`] = `
@@ -2679,7 +2679,7 @@ exports[`Icon should render all icons in motifIcons set 222`] = ` exports[`Icon should render all icons in motifIcons set 223`] = `
@@ -2691,7 +2691,7 @@ exports[`Icon should render all icons in motifIcons set 223`] = ` exports[`Icon should render all icons in motifIcons set 224`] = `
@@ -2703,7 +2703,7 @@ exports[`Icon should render all icons in motifIcons set 224`] = ` exports[`Icon should render all icons in motifIcons set 225`] = `
@@ -2715,7 +2715,7 @@ exports[`Icon should render all icons in motifIcons set 225`] = ` exports[`Icon should render all icons in motifIcons set 226`] = `
@@ -2727,7 +2727,7 @@ exports[`Icon should render all icons in motifIcons set 226`] = ` exports[`Icon should render all icons in motifIcons set 227`] = `
@@ -2739,7 +2739,7 @@ exports[`Icon should render all icons in motifIcons set 227`] = ` exports[`Icon should render all icons in motifIcons set 228`] = `
@@ -2751,7 +2751,7 @@ exports[`Icon should render all icons in motifIcons set 228`] = ` exports[`Icon should render all icons in motifIcons set 229`] = `
@@ -2763,7 +2763,7 @@ exports[`Icon should render all icons in motifIcons set 229`] = ` exports[`Icon should render all icons in motifIcons set 230`] = `
@@ -2775,7 +2775,7 @@ exports[`Icon should render all icons in motifIcons set 230`] = ` exports[`Icon should render all icons in motifIcons set 231`] = `
@@ -2787,7 +2787,7 @@ exports[`Icon should render all icons in motifIcons set 231`] = ` exports[`Icon should render all icons in motifIcons set 232`] = `
@@ -2799,7 +2799,7 @@ exports[`Icon should render all icons in motifIcons set 232`] = ` exports[`Icon should render all icons in motifIcons set 233`] = `
@@ -2811,7 +2811,7 @@ exports[`Icon should render all icons in motifIcons set 233`] = ` exports[`Icon should render all icons in motifIcons set 234`] = `
@@ -2823,7 +2823,7 @@ exports[`Icon should render all icons in motifIcons set 234`] = ` exports[`Icon should render all icons in motifIcons set 235`] = `
@@ -2835,7 +2835,7 @@ exports[`Icon should render all icons in motifIcons set 235`] = ` exports[`Icon should render all icons in motifIcons set 236`] = `
@@ -2847,7 +2847,7 @@ exports[`Icon should render all icons in motifIcons set 236`] = ` exports[`Icon should render all icons in motifIcons set 237`] = `
@@ -2859,7 +2859,7 @@ exports[`Icon should render all icons in motifIcons set 237`] = ` exports[`Icon should render all icons in motifIcons set 238`] = `
@@ -2871,7 +2871,7 @@ exports[`Icon should render all icons in motifIcons set 238`] = ` exports[`Icon should render all icons in motifIcons set 239`] = `
@@ -2883,7 +2883,7 @@ exports[`Icon should render all icons in motifIcons set 239`] = ` exports[`Icon should render all icons in motifIcons set 240`] = `
@@ -2895,7 +2895,7 @@ exports[`Icon should render all icons in motifIcons set 240`] = ` exports[`Icon should render all icons in motifIcons set 241`] = `
@@ -2907,7 +2907,7 @@ exports[`Icon should render all icons in motifIcons set 241`] = ` exports[`Icon should render all icons in motifIcons set 242`] = `
@@ -2919,7 +2919,7 @@ exports[`Icon should render all icons in motifIcons set 242`] = ` exports[`Icon should render all icons in motifIcons set 243`] = `
@@ -2931,7 +2931,7 @@ exports[`Icon should render all icons in motifIcons set 243`] = ` exports[`Icon should render all icons in motifIcons set 244`] = `
@@ -2943,7 +2943,7 @@ exports[`Icon should render all icons in motifIcons set 244`] = ` exports[`Icon should render all icons in motifIcons set 245`] = `
@@ -2955,7 +2955,7 @@ exports[`Icon should render all icons in motifIcons set 245`] = ` exports[`Icon should render all icons in motifIcons set 246`] = `
@@ -2967,7 +2967,7 @@ exports[`Icon should render all icons in motifIcons set 246`] = ` exports[`Icon should render all icons in motifIcons set 247`] = `
@@ -2979,7 +2979,7 @@ exports[`Icon should render all icons in motifIcons set 247`] = ` exports[`Icon should render all icons in motifIcons set 248`] = `
@@ -2991,7 +2991,7 @@ exports[`Icon should render all icons in motifIcons set 248`] = ` exports[`Icon should render all icons in motifIcons set 249`] = `
@@ -3003,7 +3003,7 @@ exports[`Icon should render all icons in motifIcons set 249`] = ` exports[`Icon should render all icons in motifIcons set 250`] = `
@@ -3015,7 +3015,7 @@ exports[`Icon should render all icons in motifIcons set 250`] = ` exports[`Icon should render all icons in motifIcons set 251`] = `
@@ -3027,7 +3027,7 @@ exports[`Icon should render all icons in motifIcons set 251`] = ` exports[`Icon should render all icons in motifIcons set 252`] = `
@@ -3039,7 +3039,7 @@ exports[`Icon should render all icons in motifIcons set 252`] = ` exports[`Icon should render all icons in motifIcons set 253`] = `
@@ -3051,7 +3051,7 @@ exports[`Icon should render all icons in motifIcons set 253`] = ` exports[`Icon should render all icons in motifIcons set 254`] = `
@@ -3063,7 +3063,7 @@ exports[`Icon should render all icons in motifIcons set 254`] = ` exports[`Icon should render all icons in motifIcons set 255`] = `
@@ -3075,7 +3075,7 @@ exports[`Icon should render all icons in motifIcons set 255`] = ` exports[`Icon should render all icons in motifIcons set 256`] = `
@@ -3087,7 +3087,7 @@ exports[`Icon should render all icons in motifIcons set 256`] = ` exports[`Icon should render all icons in motifIcons set 257`] = `
@@ -3099,7 +3099,7 @@ exports[`Icon should render all icons in motifIcons set 257`] = ` exports[`Icon should render all icons in motifIcons set 258`] = `
@@ -3111,7 +3111,7 @@ exports[`Icon should render all icons in motifIcons set 258`] = ` exports[`Icon should render all icons in motifIcons set 259`] = `
@@ -3123,7 +3123,7 @@ exports[`Icon should render all icons in motifIcons set 259`] = ` exports[`Icon should render all icons in motifIcons set 260`] = `
@@ -3135,7 +3135,7 @@ exports[`Icon should render all icons in motifIcons set 260`] = ` exports[`Icon should render all icons in motifIcons set 261`] = `
@@ -3147,7 +3147,7 @@ exports[`Icon should render all icons in motifIcons set 261`] = ` exports[`Icon should render all icons in motifIcons set 262`] = `
@@ -3159,7 +3159,7 @@ exports[`Icon should render all icons in motifIcons set 262`] = ` exports[`Icon should render all icons in motifIcons set 263`] = `
@@ -3171,7 +3171,7 @@ exports[`Icon should render all icons in motifIcons set 263`] = ` exports[`Icon should render all icons in motifIcons set 264`] = `
@@ -3183,7 +3183,7 @@ exports[`Icon should render all icons in motifIcons set 264`] = ` exports[`Icon should render all icons in motifIcons set 265`] = `
@@ -3195,7 +3195,7 @@ exports[`Icon should render all icons in motifIcons set 265`] = ` exports[`Icon should render all icons in motifIcons set 266`] = `
@@ -3207,7 +3207,7 @@ exports[`Icon should render all icons in motifIcons set 266`] = ` exports[`Icon should render all icons in motifIcons set 267`] = `
@@ -3219,7 +3219,7 @@ exports[`Icon should render all icons in motifIcons set 267`] = ` exports[`Icon should render all icons in motifIcons set 268`] = `
@@ -3231,7 +3231,7 @@ exports[`Icon should render all icons in motifIcons set 268`] = ` exports[`Icon should render all icons in motifIcons set 269`] = `
@@ -3243,7 +3243,7 @@ exports[`Icon should render all icons in motifIcons set 269`] = ` exports[`Icon should render all icons in motifIcons set 270`] = `
@@ -3255,7 +3255,7 @@ exports[`Icon should render all icons in motifIcons set 270`] = ` exports[`Icon should render all icons in motifIcons set 271`] = `
@@ -3267,7 +3267,7 @@ exports[`Icon should render all icons in motifIcons set 271`] = ` exports[`Icon should render all icons in motifIcons set 272`] = `
diff --git a/src/lib/components/IconButton/__snapshots__/IconButton.test.tsx.snap b/src/lib/components/IconButton/__snapshots__/IconButton.test.tsx.snap index 5eacb20..f066531 100644 --- a/src/lib/components/IconButton/__snapshots__/IconButton.test.tsx.snap +++ b/src/lib/components/IconButton/__snapshots__/IconButton.test.tsx.snap @@ -8,7 +8,7 @@ exports[`IconButton should be rendered with only required props 1`] = ` type="button" > @@ -26,7 +26,7 @@ exports[`IconButton should render all icons in motifIcons set 1`] = ` type="button" > @@ -44,7 +44,7 @@ exports[`IconButton should render all icons in motifIcons set 2`] = ` type="button" > @@ -62,7 +62,7 @@ exports[`IconButton should render all icons in motifIcons set 3`] = ` type="button" > @@ -80,7 +80,7 @@ exports[`IconButton should render all icons in motifIcons set 4`] = ` type="button" > @@ -98,7 +98,7 @@ exports[`IconButton should render all icons in motifIcons set 5`] = ` type="button" > @@ -116,7 +116,7 @@ exports[`IconButton should render all icons in motifIcons set 6`] = ` type="button" > @@ -134,7 +134,7 @@ exports[`IconButton should render all icons in motifIcons set 7`] = ` type="button" > @@ -152,7 +152,7 @@ exports[`IconButton should render all icons in motifIcons set 8`] = ` type="button" > @@ -170,7 +170,7 @@ exports[`IconButton should render all icons in motifIcons set 9`] = ` type="button" > @@ -188,7 +188,7 @@ exports[`IconButton should render all icons in motifIcons set 10`] = ` type="button" > @@ -206,7 +206,7 @@ exports[`IconButton should render all icons in motifIcons set 11`] = ` type="button" > @@ -224,7 +224,7 @@ exports[`IconButton should render all icons in motifIcons set 12`] = ` type="button" > @@ -242,7 +242,7 @@ exports[`IconButton should render all icons in motifIcons set 13`] = ` type="button" > @@ -260,7 +260,7 @@ exports[`IconButton should render all icons in motifIcons set 14`] = ` type="button" > @@ -278,7 +278,7 @@ exports[`IconButton should render all icons in motifIcons set 15`] = ` type="button" > @@ -296,7 +296,7 @@ exports[`IconButton should render all icons in motifIcons set 16`] = ` type="button" > @@ -314,7 +314,7 @@ exports[`IconButton should render all icons in motifIcons set 17`] = ` type="button" > @@ -332,7 +332,7 @@ exports[`IconButton should render all icons in motifIcons set 18`] = ` type="button" > @@ -350,7 +350,7 @@ exports[`IconButton should render all icons in motifIcons set 19`] = ` type="button" > @@ -368,7 +368,7 @@ exports[`IconButton should render all icons in motifIcons set 20`] = ` type="button" > @@ -386,7 +386,7 @@ exports[`IconButton should render all icons in motifIcons set 21`] = ` type="button" > @@ -404,7 +404,7 @@ exports[`IconButton should render all icons in motifIcons set 22`] = ` type="button" > @@ -422,7 +422,7 @@ exports[`IconButton should render all icons in motifIcons set 23`] = ` type="button" > @@ -440,7 +440,7 @@ exports[`IconButton should render all icons in motifIcons set 24`] = ` type="button" > @@ -458,7 +458,7 @@ exports[`IconButton should render all icons in motifIcons set 25`] = ` type="button" > @@ -476,7 +476,7 @@ exports[`IconButton should render all icons in motifIcons set 26`] = ` type="button" > @@ -494,7 +494,7 @@ exports[`IconButton should render all icons in motifIcons set 27`] = ` type="button" > @@ -512,7 +512,7 @@ exports[`IconButton should render all icons in motifIcons set 28`] = ` type="button" > @@ -530,7 +530,7 @@ exports[`IconButton should render all icons in motifIcons set 29`] = ` type="button" > @@ -548,7 +548,7 @@ exports[`IconButton should render all icons in motifIcons set 30`] = ` type="button" > @@ -566,7 +566,7 @@ exports[`IconButton should render all icons in motifIcons set 31`] = ` type="button" > @@ -584,7 +584,7 @@ exports[`IconButton should render all icons in motifIcons set 32`] = ` type="button" > @@ -602,7 +602,7 @@ exports[`IconButton should render all icons in motifIcons set 33`] = ` type="button" > @@ -620,7 +620,7 @@ exports[`IconButton should render all icons in motifIcons set 34`] = ` type="button" > @@ -638,7 +638,7 @@ exports[`IconButton should render all icons in motifIcons set 35`] = ` type="button" > @@ -656,7 +656,7 @@ exports[`IconButton should render all icons in motifIcons set 36`] = ` type="button" > @@ -674,7 +674,7 @@ exports[`IconButton should render all icons in motifIcons set 37`] = ` type="button" > @@ -692,7 +692,7 @@ exports[`IconButton should render all icons in motifIcons set 38`] = ` type="button" > @@ -710,7 +710,7 @@ exports[`IconButton should render all icons in motifIcons set 39`] = ` type="button" > @@ -728,7 +728,7 @@ exports[`IconButton should render all icons in motifIcons set 40`] = ` type="button" > @@ -746,7 +746,7 @@ exports[`IconButton should render all icons in motifIcons set 41`] = ` type="button" > @@ -764,7 +764,7 @@ exports[`IconButton should render all icons in motifIcons set 42`] = ` type="button" > @@ -782,7 +782,7 @@ exports[`IconButton should render all icons in motifIcons set 43`] = ` type="button" > @@ -800,7 +800,7 @@ exports[`IconButton should render all icons in motifIcons set 44`] = ` type="button" > @@ -818,7 +818,7 @@ exports[`IconButton should render all icons in motifIcons set 45`] = ` type="button" > @@ -836,7 +836,7 @@ exports[`IconButton should render all icons in motifIcons set 46`] = ` type="button" > @@ -854,7 +854,7 @@ exports[`IconButton should render all icons in motifIcons set 47`] = ` type="button" > @@ -872,7 +872,7 @@ exports[`IconButton should render all icons in motifIcons set 48`] = ` type="button" > @@ -890,7 +890,7 @@ exports[`IconButton should render all icons in motifIcons set 49`] = ` type="button" > @@ -908,7 +908,7 @@ exports[`IconButton should render all icons in motifIcons set 50`] = ` type="button" > @@ -926,7 +926,7 @@ exports[`IconButton should render all icons in motifIcons set 51`] = ` type="button" > @@ -944,7 +944,7 @@ exports[`IconButton should render all icons in motifIcons set 52`] = ` type="button" > @@ -962,7 +962,7 @@ exports[`IconButton should render all icons in motifIcons set 53`] = ` type="button" > @@ -980,7 +980,7 @@ exports[`IconButton should render all icons in motifIcons set 54`] = ` type="button" > @@ -998,7 +998,7 @@ exports[`IconButton should render all icons in motifIcons set 55`] = ` type="button" > @@ -1016,7 +1016,7 @@ exports[`IconButton should render all icons in motifIcons set 56`] = ` type="button" > @@ -1034,7 +1034,7 @@ exports[`IconButton should render all icons in motifIcons set 57`] = ` type="button" > @@ -1052,7 +1052,7 @@ exports[`IconButton should render all icons in motifIcons set 58`] = ` type="button" > @@ -1070,7 +1070,7 @@ exports[`IconButton should render all icons in motifIcons set 59`] = ` type="button" > @@ -1088,7 +1088,7 @@ exports[`IconButton should render all icons in motifIcons set 60`] = ` type="button" > @@ -1106,7 +1106,7 @@ exports[`IconButton should render all icons in motifIcons set 61`] = ` type="button" > @@ -1124,7 +1124,7 @@ exports[`IconButton should render all icons in motifIcons set 62`] = ` type="button" > @@ -1142,7 +1142,7 @@ exports[`IconButton should render all icons in motifIcons set 63`] = ` type="button" > @@ -1160,7 +1160,7 @@ exports[`IconButton should render all icons in motifIcons set 64`] = ` type="button" > @@ -1178,7 +1178,7 @@ exports[`IconButton should render all icons in motifIcons set 65`] = ` type="button" > @@ -1196,7 +1196,7 @@ exports[`IconButton should render all icons in motifIcons set 66`] = ` type="button" > @@ -1214,7 +1214,7 @@ exports[`IconButton should render all icons in motifIcons set 67`] = ` type="button" > @@ -1232,7 +1232,7 @@ exports[`IconButton should render all icons in motifIcons set 68`] = ` type="button" > @@ -1250,7 +1250,7 @@ exports[`IconButton should render all icons in motifIcons set 69`] = ` type="button" > @@ -1268,7 +1268,7 @@ exports[`IconButton should render all icons in motifIcons set 70`] = ` type="button" > @@ -1286,7 +1286,7 @@ exports[`IconButton should render all icons in motifIcons set 71`] = ` type="button" > @@ -1304,7 +1304,7 @@ exports[`IconButton should render all icons in motifIcons set 72`] = ` type="button" > @@ -1322,7 +1322,7 @@ exports[`IconButton should render all icons in motifIcons set 73`] = ` type="button" > @@ -1340,7 +1340,7 @@ exports[`IconButton should render all icons in motifIcons set 74`] = ` type="button" > @@ -1358,7 +1358,7 @@ exports[`IconButton should render all icons in motifIcons set 75`] = ` type="button" > @@ -1376,7 +1376,7 @@ exports[`IconButton should render all icons in motifIcons set 76`] = ` type="button" > @@ -1394,7 +1394,7 @@ exports[`IconButton should render all icons in motifIcons set 77`] = ` type="button" > @@ -1412,7 +1412,7 @@ exports[`IconButton should render all icons in motifIcons set 78`] = ` type="button" > @@ -1430,7 +1430,7 @@ exports[`IconButton should render all icons in motifIcons set 79`] = ` type="button" > @@ -1448,7 +1448,7 @@ exports[`IconButton should render all icons in motifIcons set 80`] = ` type="button" > @@ -1466,7 +1466,7 @@ exports[`IconButton should render all icons in motifIcons set 81`] = ` type="button" > @@ -1484,7 +1484,7 @@ exports[`IconButton should render all icons in motifIcons set 82`] = ` type="button" > @@ -1502,7 +1502,7 @@ exports[`IconButton should render all icons in motifIcons set 83`] = ` type="button" > @@ -1520,7 +1520,7 @@ exports[`IconButton should render all icons in motifIcons set 84`] = ` type="button" > @@ -1538,7 +1538,7 @@ exports[`IconButton should render all icons in motifIcons set 85`] = ` type="button" > @@ -1556,7 +1556,7 @@ exports[`IconButton should render all icons in motifIcons set 86`] = ` type="button" > @@ -1574,7 +1574,7 @@ exports[`IconButton should render all icons in motifIcons set 87`] = ` type="button" > @@ -1592,7 +1592,7 @@ exports[`IconButton should render all icons in motifIcons set 88`] = ` type="button" > @@ -1610,7 +1610,7 @@ exports[`IconButton should render all icons in motifIcons set 89`] = ` type="button" > @@ -1628,7 +1628,7 @@ exports[`IconButton should render all icons in motifIcons set 90`] = ` type="button" > @@ -1646,7 +1646,7 @@ exports[`IconButton should render all icons in motifIcons set 91`] = ` type="button" > @@ -1664,7 +1664,7 @@ exports[`IconButton should render all icons in motifIcons set 92`] = ` type="button" > @@ -1682,7 +1682,7 @@ exports[`IconButton should render all icons in motifIcons set 93`] = ` type="button" > @@ -1700,7 +1700,7 @@ exports[`IconButton should render all icons in motifIcons set 94`] = ` type="button" > @@ -1718,7 +1718,7 @@ exports[`IconButton should render all icons in motifIcons set 95`] = ` type="button" > @@ -1736,7 +1736,7 @@ exports[`IconButton should render all icons in motifIcons set 96`] = ` type="button" > @@ -1754,7 +1754,7 @@ exports[`IconButton should render all icons in motifIcons set 97`] = ` type="button" > @@ -1772,7 +1772,7 @@ exports[`IconButton should render all icons in motifIcons set 98`] = ` type="button" > @@ -1790,7 +1790,7 @@ exports[`IconButton should render all icons in motifIcons set 99`] = ` type="button" > @@ -1808,7 +1808,7 @@ exports[`IconButton should render all icons in motifIcons set 100`] = ` type="button" > @@ -1826,7 +1826,7 @@ exports[`IconButton should render all icons in motifIcons set 101`] = ` type="button" > @@ -1844,7 +1844,7 @@ exports[`IconButton should render all icons in motifIcons set 102`] = ` type="button" > @@ -1862,7 +1862,7 @@ exports[`IconButton should render all icons in motifIcons set 103`] = ` type="button" > @@ -1880,7 +1880,7 @@ exports[`IconButton should render all icons in motifIcons set 104`] = ` type="button" > @@ -1898,7 +1898,7 @@ exports[`IconButton should render all icons in motifIcons set 105`] = ` type="button" > @@ -1916,7 +1916,7 @@ exports[`IconButton should render all icons in motifIcons set 106`] = ` type="button" > @@ -1934,7 +1934,7 @@ exports[`IconButton should render all icons in motifIcons set 107`] = ` type="button" > @@ -1952,7 +1952,7 @@ exports[`IconButton should render all icons in motifIcons set 108`] = ` type="button" > @@ -1970,7 +1970,7 @@ exports[`IconButton should render all icons in motifIcons set 109`] = ` type="button" > @@ -1988,7 +1988,7 @@ exports[`IconButton should render all icons in motifIcons set 110`] = ` type="button" > @@ -2006,7 +2006,7 @@ exports[`IconButton should render all icons in motifIcons set 111`] = ` type="button" > @@ -2024,7 +2024,7 @@ exports[`IconButton should render all icons in motifIcons set 112`] = ` type="button" > @@ -2042,7 +2042,7 @@ exports[`IconButton should render all icons in motifIcons set 113`] = ` type="button" > @@ -2060,7 +2060,7 @@ exports[`IconButton should render all icons in motifIcons set 114`] = ` type="button" > @@ -2078,7 +2078,7 @@ exports[`IconButton should render all icons in motifIcons set 115`] = ` type="button" > @@ -2096,7 +2096,7 @@ exports[`IconButton should render all icons in motifIcons set 116`] = ` type="button" > @@ -2114,7 +2114,7 @@ exports[`IconButton should render all icons in motifIcons set 117`] = ` type="button" > @@ -2132,7 +2132,7 @@ exports[`IconButton should render all icons in motifIcons set 118`] = ` type="button" > @@ -2150,7 +2150,7 @@ exports[`IconButton should render all icons in motifIcons set 119`] = ` type="button" > @@ -2168,7 +2168,7 @@ exports[`IconButton should render all icons in motifIcons set 120`] = ` type="button" > @@ -2186,7 +2186,7 @@ exports[`IconButton should render all icons in motifIcons set 121`] = ` type="button" > @@ -2204,7 +2204,7 @@ exports[`IconButton should render all icons in motifIcons set 122`] = ` type="button" > @@ -2222,7 +2222,7 @@ exports[`IconButton should render all icons in motifIcons set 123`] = ` type="button" > @@ -2240,7 +2240,7 @@ exports[`IconButton should render all icons in motifIcons set 124`] = ` type="button" > @@ -2258,7 +2258,7 @@ exports[`IconButton should render all icons in motifIcons set 125`] = ` type="button" > @@ -2276,7 +2276,7 @@ exports[`IconButton should render all icons in motifIcons set 126`] = ` type="button" > @@ -2294,7 +2294,7 @@ exports[`IconButton should render all icons in motifIcons set 127`] = ` type="button" > @@ -2312,7 +2312,7 @@ exports[`IconButton should render all icons in motifIcons set 128`] = ` type="button" > @@ -2330,7 +2330,7 @@ exports[`IconButton should render all icons in motifIcons set 129`] = ` type="button" > @@ -2348,7 +2348,7 @@ exports[`IconButton should render all icons in motifIcons set 130`] = ` type="button" > @@ -2366,7 +2366,7 @@ exports[`IconButton should render all icons in motifIcons set 131`] = ` type="button" > @@ -2384,7 +2384,7 @@ exports[`IconButton should render all icons in motifIcons set 132`] = ` type="button" > @@ -2402,7 +2402,7 @@ exports[`IconButton should render all icons in motifIcons set 133`] = ` type="button" > @@ -2420,7 +2420,7 @@ exports[`IconButton should render all icons in motifIcons set 134`] = ` type="button" > @@ -2438,7 +2438,7 @@ exports[`IconButton should render all icons in motifIcons set 135`] = ` type="button" > @@ -2456,7 +2456,7 @@ exports[`IconButton should render all icons in motifIcons set 136`] = ` type="button" > @@ -2474,7 +2474,7 @@ exports[`IconButton should render all icons in motifIcons set 137`] = ` type="button" > @@ -2492,7 +2492,7 @@ exports[`IconButton should render all icons in motifIcons set 138`] = ` type="button" > @@ -2510,7 +2510,7 @@ exports[`IconButton should render all icons in motifIcons set 139`] = ` type="button" > @@ -2528,7 +2528,7 @@ exports[`IconButton should render all icons in motifIcons set 140`] = ` type="button" > @@ -2546,7 +2546,7 @@ exports[`IconButton should render all icons in motifIcons set 141`] = ` type="button" > @@ -2564,7 +2564,7 @@ exports[`IconButton should render all icons in motifIcons set 142`] = ` type="button" > @@ -2582,7 +2582,7 @@ exports[`IconButton should render all icons in motifIcons set 143`] = ` type="button" > @@ -2600,7 +2600,7 @@ exports[`IconButton should render all icons in motifIcons set 144`] = ` type="button" > @@ -2618,7 +2618,7 @@ exports[`IconButton should render all icons in motifIcons set 145`] = ` type="button" > @@ -2636,7 +2636,7 @@ exports[`IconButton should render all icons in motifIcons set 146`] = ` type="button" > @@ -2654,7 +2654,7 @@ exports[`IconButton should render all icons in motifIcons set 147`] = ` type="button" > @@ -2672,7 +2672,7 @@ exports[`IconButton should render all icons in motifIcons set 148`] = ` type="button" > @@ -2690,7 +2690,7 @@ exports[`IconButton should render all icons in motifIcons set 149`] = ` type="button" > @@ -2708,7 +2708,7 @@ exports[`IconButton should render all icons in motifIcons set 150`] = ` type="button" > @@ -2726,7 +2726,7 @@ exports[`IconButton should render all icons in motifIcons set 151`] = ` type="button" > @@ -2744,7 +2744,7 @@ exports[`IconButton should render all icons in motifIcons set 152`] = ` type="button" > @@ -2762,7 +2762,7 @@ exports[`IconButton should render all icons in motifIcons set 153`] = ` type="button" > @@ -2780,7 +2780,7 @@ exports[`IconButton should render all icons in motifIcons set 154`] = ` type="button" > @@ -2798,7 +2798,7 @@ exports[`IconButton should render all icons in motifIcons set 155`] = ` type="button" > @@ -2816,7 +2816,7 @@ exports[`IconButton should render all icons in motifIcons set 156`] = ` type="button" > @@ -2834,7 +2834,7 @@ exports[`IconButton should render all icons in motifIcons set 157`] = ` type="button" > @@ -2852,7 +2852,7 @@ exports[`IconButton should render all icons in motifIcons set 158`] = ` type="button" > @@ -2870,7 +2870,7 @@ exports[`IconButton should render all icons in motifIcons set 159`] = ` type="button" > @@ -2888,7 +2888,7 @@ exports[`IconButton should render all icons in motifIcons set 160`] = ` type="button" > @@ -2906,7 +2906,7 @@ exports[`IconButton should render all icons in motifIcons set 161`] = ` type="button" > @@ -2924,7 +2924,7 @@ exports[`IconButton should render all icons in motifIcons set 162`] = ` type="button" > @@ -2942,7 +2942,7 @@ exports[`IconButton should render all icons in motifIcons set 163`] = ` type="button" > @@ -2960,7 +2960,7 @@ exports[`IconButton should render all icons in motifIcons set 164`] = ` type="button" > @@ -2978,7 +2978,7 @@ exports[`IconButton should render all icons in motifIcons set 165`] = ` type="button" > @@ -2996,7 +2996,7 @@ exports[`IconButton should render all icons in motifIcons set 166`] = ` type="button" > @@ -3014,7 +3014,7 @@ exports[`IconButton should render all icons in motifIcons set 167`] = ` type="button" > @@ -3032,7 +3032,7 @@ exports[`IconButton should render all icons in motifIcons set 168`] = ` type="button" > @@ -3050,7 +3050,7 @@ exports[`IconButton should render all icons in motifIcons set 169`] = ` type="button" > @@ -3068,7 +3068,7 @@ exports[`IconButton should render all icons in motifIcons set 170`] = ` type="button" > @@ -3086,7 +3086,7 @@ exports[`IconButton should render all icons in motifIcons set 171`] = ` type="button" > @@ -3104,7 +3104,7 @@ exports[`IconButton should render all icons in motifIcons set 172`] = ` type="button" > @@ -3122,7 +3122,7 @@ exports[`IconButton should render all icons in motifIcons set 173`] = ` type="button" > @@ -3140,7 +3140,7 @@ exports[`IconButton should render all icons in motifIcons set 174`] = ` type="button" > @@ -3158,7 +3158,7 @@ exports[`IconButton should render all icons in motifIcons set 175`] = ` type="button" > @@ -3176,7 +3176,7 @@ exports[`IconButton should render all icons in motifIcons set 176`] = ` type="button" > @@ -3194,7 +3194,7 @@ exports[`IconButton should render all icons in motifIcons set 177`] = ` type="button" > @@ -3212,7 +3212,7 @@ exports[`IconButton should render all icons in motifIcons set 178`] = ` type="button" > @@ -3230,7 +3230,7 @@ exports[`IconButton should render all icons in motifIcons set 179`] = ` type="button" > @@ -3248,7 +3248,7 @@ exports[`IconButton should render all icons in motifIcons set 180`] = ` type="button" > @@ -3266,7 +3266,7 @@ exports[`IconButton should render all icons in motifIcons set 181`] = ` type="button" > @@ -3284,7 +3284,7 @@ exports[`IconButton should render all icons in motifIcons set 182`] = ` type="button" > @@ -3302,7 +3302,7 @@ exports[`IconButton should render all icons in motifIcons set 183`] = ` type="button" > @@ -3320,7 +3320,7 @@ exports[`IconButton should render all icons in motifIcons set 184`] = ` type="button" > @@ -3338,7 +3338,7 @@ exports[`IconButton should render all icons in motifIcons set 185`] = ` type="button" > @@ -3356,7 +3356,7 @@ exports[`IconButton should render all icons in motifIcons set 186`] = ` type="button" > @@ -3374,7 +3374,7 @@ exports[`IconButton should render all icons in motifIcons set 187`] = ` type="button" > @@ -3392,7 +3392,7 @@ exports[`IconButton should render all icons in motifIcons set 188`] = ` type="button" > @@ -3410,7 +3410,7 @@ exports[`IconButton should render all icons in motifIcons set 189`] = ` type="button" > @@ -3428,7 +3428,7 @@ exports[`IconButton should render all icons in motifIcons set 190`] = ` type="button" > @@ -3446,7 +3446,7 @@ exports[`IconButton should render all icons in motifIcons set 191`] = ` type="button" > @@ -3464,7 +3464,7 @@ exports[`IconButton should render all icons in motifIcons set 192`] = ` type="button" > @@ -3482,7 +3482,7 @@ exports[`IconButton should render all icons in motifIcons set 193`] = ` type="button" > @@ -3500,7 +3500,7 @@ exports[`IconButton should render all icons in motifIcons set 194`] = ` type="button" > @@ -3518,7 +3518,7 @@ exports[`IconButton should render all icons in motifIcons set 195`] = ` type="button" > @@ -3536,7 +3536,7 @@ exports[`IconButton should render all icons in motifIcons set 196`] = ` type="button" > @@ -3554,7 +3554,7 @@ exports[`IconButton should render all icons in motifIcons set 197`] = ` type="button" > @@ -3572,7 +3572,7 @@ exports[`IconButton should render all icons in motifIcons set 198`] = ` type="button" > @@ -3590,7 +3590,7 @@ exports[`IconButton should render all icons in motifIcons set 199`] = ` type="button" > @@ -3608,7 +3608,7 @@ exports[`IconButton should render all icons in motifIcons set 200`] = ` type="button" > @@ -3626,7 +3626,7 @@ exports[`IconButton should render all icons in motifIcons set 201`] = ` type="button" > @@ -3644,7 +3644,7 @@ exports[`IconButton should render all icons in motifIcons set 202`] = ` type="button" > @@ -3662,7 +3662,7 @@ exports[`IconButton should render all icons in motifIcons set 203`] = ` type="button" > @@ -3680,7 +3680,7 @@ exports[`IconButton should render all icons in motifIcons set 204`] = ` type="button" > @@ -3698,7 +3698,7 @@ exports[`IconButton should render all icons in motifIcons set 205`] = ` type="button" > @@ -3716,7 +3716,7 @@ exports[`IconButton should render all icons in motifIcons set 206`] = ` type="button" > @@ -3734,7 +3734,7 @@ exports[`IconButton should render all icons in motifIcons set 207`] = ` type="button" > @@ -3752,7 +3752,7 @@ exports[`IconButton should render all icons in motifIcons set 208`] = ` type="button" > @@ -3770,7 +3770,7 @@ exports[`IconButton should render all icons in motifIcons set 209`] = ` type="button" > @@ -3788,7 +3788,7 @@ exports[`IconButton should render all icons in motifIcons set 210`] = ` type="button" > @@ -3806,7 +3806,7 @@ exports[`IconButton should render all icons in motifIcons set 211`] = ` type="button" > @@ -3824,7 +3824,7 @@ exports[`IconButton should render all icons in motifIcons set 212`] = ` type="button" > @@ -3842,7 +3842,7 @@ exports[`IconButton should render all icons in motifIcons set 213`] = ` type="button" > @@ -3860,7 +3860,7 @@ exports[`IconButton should render all icons in motifIcons set 214`] = ` type="button" > @@ -3878,7 +3878,7 @@ exports[`IconButton should render all icons in motifIcons set 215`] = ` type="button" > @@ -3896,7 +3896,7 @@ exports[`IconButton should render all icons in motifIcons set 216`] = ` type="button" > @@ -3914,7 +3914,7 @@ exports[`IconButton should render all icons in motifIcons set 217`] = ` type="button" > @@ -3932,7 +3932,7 @@ exports[`IconButton should render all icons in motifIcons set 218`] = ` type="button" > @@ -3950,7 +3950,7 @@ exports[`IconButton should render all icons in motifIcons set 219`] = ` type="button" > @@ -3968,7 +3968,7 @@ exports[`IconButton should render all icons in motifIcons set 220`] = ` type="button" > @@ -3986,7 +3986,7 @@ exports[`IconButton should render all icons in motifIcons set 221`] = ` type="button" > @@ -4004,7 +4004,7 @@ exports[`IconButton should render all icons in motifIcons set 222`] = ` type="button" > @@ -4022,7 +4022,7 @@ exports[`IconButton should render all icons in motifIcons set 223`] = ` type="button" > @@ -4040,7 +4040,7 @@ exports[`IconButton should render all icons in motifIcons set 224`] = ` type="button" > @@ -4058,7 +4058,7 @@ exports[`IconButton should render all icons in motifIcons set 225`] = ` type="button" > @@ -4076,7 +4076,7 @@ exports[`IconButton should render all icons in motifIcons set 226`] = ` type="button" > @@ -4094,7 +4094,7 @@ exports[`IconButton should render all icons in motifIcons set 227`] = ` type="button" > @@ -4112,7 +4112,7 @@ exports[`IconButton should render all icons in motifIcons set 228`] = ` type="button" > @@ -4130,7 +4130,7 @@ exports[`IconButton should render all icons in motifIcons set 229`] = ` type="button" > @@ -4148,7 +4148,7 @@ exports[`IconButton should render all icons in motifIcons set 230`] = ` type="button" > @@ -4166,7 +4166,7 @@ exports[`IconButton should render all icons in motifIcons set 231`] = ` type="button" > @@ -4184,7 +4184,7 @@ exports[`IconButton should render all icons in motifIcons set 232`] = ` type="button" > @@ -4202,7 +4202,7 @@ exports[`IconButton should render all icons in motifIcons set 233`] = ` type="button" > @@ -4220,7 +4220,7 @@ exports[`IconButton should render all icons in motifIcons set 234`] = ` type="button" > @@ -4238,7 +4238,7 @@ exports[`IconButton should render all icons in motifIcons set 235`] = ` type="button" > @@ -4256,7 +4256,7 @@ exports[`IconButton should render all icons in motifIcons set 236`] = ` type="button" > @@ -4274,7 +4274,7 @@ exports[`IconButton should render all icons in motifIcons set 237`] = ` type="button" > @@ -4292,7 +4292,7 @@ exports[`IconButton should render all icons in motifIcons set 238`] = ` type="button" > @@ -4310,7 +4310,7 @@ exports[`IconButton should render all icons in motifIcons set 239`] = ` type="button" > @@ -4328,7 +4328,7 @@ exports[`IconButton should render all icons in motifIcons set 240`] = ` type="button" > @@ -4346,7 +4346,7 @@ exports[`IconButton should render all icons in motifIcons set 241`] = ` type="button" > @@ -4364,7 +4364,7 @@ exports[`IconButton should render all icons in motifIcons set 242`] = ` type="button" > @@ -4382,7 +4382,7 @@ exports[`IconButton should render all icons in motifIcons set 243`] = ` type="button" > @@ -4400,7 +4400,7 @@ exports[`IconButton should render all icons in motifIcons set 244`] = ` type="button" > @@ -4418,7 +4418,7 @@ exports[`IconButton should render all icons in motifIcons set 245`] = ` type="button" > @@ -4436,7 +4436,7 @@ exports[`IconButton should render all icons in motifIcons set 246`] = ` type="button" > @@ -4454,7 +4454,7 @@ exports[`IconButton should render all icons in motifIcons set 247`] = ` type="button" > @@ -4472,7 +4472,7 @@ exports[`IconButton should render all icons in motifIcons set 248`] = ` type="button" > @@ -4490,7 +4490,7 @@ exports[`IconButton should render all icons in motifIcons set 249`] = ` type="button" > @@ -4508,7 +4508,7 @@ exports[`IconButton should render all icons in motifIcons set 250`] = ` type="button" > @@ -4526,7 +4526,7 @@ exports[`IconButton should render all icons in motifIcons set 251`] = ` type="button" > @@ -4544,7 +4544,7 @@ exports[`IconButton should render all icons in motifIcons set 252`] = ` type="button" > @@ -4562,7 +4562,7 @@ exports[`IconButton should render all icons in motifIcons set 253`] = ` type="button" > @@ -4580,7 +4580,7 @@ exports[`IconButton should render all icons in motifIcons set 254`] = ` type="button" > @@ -4598,7 +4598,7 @@ exports[`IconButton should render all icons in motifIcons set 255`] = ` type="button" > @@ -4616,7 +4616,7 @@ exports[`IconButton should render all icons in motifIcons set 256`] = ` type="button" > @@ -4634,7 +4634,7 @@ exports[`IconButton should render all icons in motifIcons set 257`] = ` type="button" > @@ -4652,7 +4652,7 @@ exports[`IconButton should render all icons in motifIcons set 258`] = ` type="button" > @@ -4670,7 +4670,7 @@ exports[`IconButton should render all icons in motifIcons set 259`] = ` type="button" > @@ -4688,7 +4688,7 @@ exports[`IconButton should render all icons in motifIcons set 260`] = ` type="button" > @@ -4706,7 +4706,7 @@ exports[`IconButton should render all icons in motifIcons set 261`] = ` type="button" > @@ -4724,7 +4724,7 @@ exports[`IconButton should render all icons in motifIcons set 262`] = ` type="button" > @@ -4742,7 +4742,7 @@ exports[`IconButton should render all icons in motifIcons set 263`] = ` type="button" > @@ -4760,7 +4760,7 @@ exports[`IconButton should render all icons in motifIcons set 264`] = ` type="button" > @@ -4778,7 +4778,7 @@ exports[`IconButton should render all icons in motifIcons set 265`] = ` type="button" > @@ -4796,7 +4796,7 @@ exports[`IconButton should render all icons in motifIcons set 266`] = ` type="button" > @@ -4814,7 +4814,7 @@ exports[`IconButton should render all icons in motifIcons set 267`] = ` type="button" > @@ -4832,7 +4832,7 @@ exports[`IconButton should render all icons in motifIcons set 268`] = ` type="button" > @@ -4850,7 +4850,7 @@ exports[`IconButton should render all icons in motifIcons set 269`] = ` type="button" > @@ -4868,7 +4868,7 @@ exports[`IconButton should render all icons in motifIcons set 270`] = ` type="button" > @@ -4886,7 +4886,7 @@ exports[`IconButton should render all icons in motifIcons set 271`] = ` type="button" > @@ -4904,7 +4904,7 @@ exports[`IconButton should render all icons in motifIcons set 272`] = ` type="button" > diff --git a/src/lib/components/InputPassword/__snapshots__/InputPassword.test.tsx.snap b/src/lib/components/InputPassword/__snapshots__/InputPassword.test.tsx.snap index 226835a..7e64d16 100644 --- a/src/lib/components/InputPassword/__snapshots__/InputPassword.test.tsx.snap +++ b/src/lib/components/InputPassword/__snapshots__/InputPassword.test.tsx.snap @@ -7,7 +7,7 @@ exports[`InputPassword should be rendered with only required props 1`] = ` data-testid="inputPassword" > diff --git a/src/lib/components/Motif/Icon/__snapshots__/MotifIcon.test.tsx.snap b/src/lib/components/Motif/Icon/__snapshots__/MotifIcon.test.tsx.snap index 481b34f..29418af 100644 --- a/src/lib/components/Motif/Icon/__snapshots__/MotifIcon.test.tsx.snap +++ b/src/lib/components/Motif/Icon/__snapshots__/MotifIcon.test.tsx.snap @@ -3,7 +3,7 @@ exports[`MotifIcon should render with only required props 1`] = `
diff --git a/src/lib/components/Motif/Icon/__snapshots__/MotifIconButton.test.tsx.snap b/src/lib/components/Motif/Icon/__snapshots__/MotifIconButton.test.tsx.snap index 399b601..8b5b976 100644 --- a/src/lib/components/Motif/Icon/__snapshots__/MotifIconButton.test.tsx.snap +++ b/src/lib/components/Motif/Icon/__snapshots__/MotifIconButton.test.tsx.snap @@ -8,7 +8,7 @@ exports[`MotifIconButton should render with only required props 1`] = ` type="button" > diff --git a/src/lib/components/Table/__snapshots__/Table.test.tsx.snap b/src/lib/components/Table/__snapshots__/Table.test.tsx.snap index e9fc542..8b78dde 100644 --- a/src/lib/components/Table/__snapshots__/Table.test.tsx.snap +++ b/src/lib/components/Table/__snapshots__/Table.test.tsx.snap @@ -24,7 +24,7 @@ exports[`Table should render with only required props 1`] = ` type="button" > diff --git a/src/lib/components/Upload/ImageUpload/__snapshots__/ImageUpload.test.tsx.snap b/src/lib/components/Upload/ImageUpload/__snapshots__/ImageUpload.test.tsx.snap index ce8dfa1..e8ce893 100644 --- a/src/lib/components/Upload/ImageUpload/__snapshots__/ImageUpload.test.tsx.snap +++ b/src/lib/components/Upload/ImageUpload/__snapshots__/ImageUpload.test.tsx.snap @@ -9,7 +9,7 @@ exports[`ImageUpload should be rendered with only required props 1`] = ` class="dragArea dragReady" > diff --git a/src/lib/components/Upload/UploadDragger/__snapshots__/UploadDragger.test.tsx.snap b/src/lib/components/Upload/UploadDragger/__snapshots__/UploadDragger.test.tsx.snap index 231640c..6909769 100644 --- a/src/lib/components/Upload/UploadDragger/__snapshots__/UploadDragger.test.tsx.snap +++ b/src/lib/components/Upload/UploadDragger/__snapshots__/UploadDragger.test.tsx.snap @@ -10,7 +10,7 @@ exports[`UploadDragger should be rendered with only required props 1`] = ` class="dragArea" > From cb8dff7768ca2c1b839033b4a50a3aa16f855960 Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Fri, 22 May 2026 10:58:42 +0300 Subject: [PATCH 13/17] misused font-sizes are given inside component css files --- src/lib/components/DataView/DataView.module.scss | 1 + src/lib/components/Icon/Icon.module.scss | 1 + src/lib/components/Panel/Panel.module.scss | 1 + src/lib/components/PinCode/PinCode.module.scss | 2 +- 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/components/DataView/DataView.module.scss b/src/lib/components/DataView/DataView.module.scss index 21f367e..d67b1aa 100644 --- a/src/lib/components/DataView/DataView.module.scss +++ b/src/lib/components/DataView/DataView.module.scss @@ -80,6 +80,7 @@ $data-view-sizes: ("xs", "sm", "md", "lg", "xl"); } .icon { color: var(--theme-color-text-base-caption); + font-size: var(--base-sizing-22x); } } diff --git a/src/lib/components/Icon/Icon.module.scss b/src/lib/components/Icon/Icon.module.scss index 3e10c41..d7c9071 100644 --- a/src/lib/components/Icon/Icon.module.scss +++ b/src/lib/components/Icon/Icon.module.scss @@ -5,6 +5,7 @@ $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24 .Root { display: inline-flex !important; + line-height: initial !important; vertical-align: top; user-select: none; diff --git a/src/lib/components/Panel/Panel.module.scss b/src/lib/components/Panel/Panel.module.scss index 5d02ac9..eeaf241 100644 --- a/src/lib/components/Panel/Panel.module.scss +++ b/src/lib/components/Panel/Panel.module.scss @@ -65,6 +65,7 @@ $title-sizes: (("sm", "md"), ("md", "lg"), ("lg", "xl")); margin-right: var(--base-sizing-8x); color: var(--theme-color-text-base-caption); vertical-align: text-top; + font-size: var(--base-sizing-22x); } @each $size, $title-size in $title-sizes { diff --git a/src/lib/components/PinCode/PinCode.module.scss b/src/lib/components/PinCode/PinCode.module.scss index af21142..7ba855c 100644 --- a/src/lib/components/PinCode/PinCode.module.scss +++ b/src/lib/components/PinCode/PinCode.module.scss @@ -50,7 +50,7 @@ $sizes: ( text-align: center; background-color: var(--theme-color-surface-base-bg-light); border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - box-sizing: content-box; + box-sizing: content-box !important; border-radius: var(--theme-sizing-radius-default); color: var(--theme-color-text-base-title); @include focus-ring; From 2d586485e7451492452358aa54a80fec4b932260 Mon Sep 17 00:00:00 2001 From: Atakan Bayrak Date: Fri, 22 May 2026 11:02:57 +0300 Subject: [PATCH 14/17] line-height unset deleted --- src/lib/components/Icon/Icon.module.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/components/Icon/Icon.module.scss b/src/lib/components/Icon/Icon.module.scss index d7c9071..3e10c41 100644 --- a/src/lib/components/Icon/Icon.module.scss +++ b/src/lib/components/Icon/Icon.module.scss @@ -5,7 +5,6 @@ $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24 .Root { display: inline-flex !important; - line-height: initial !important; vertical-align: top; user-select: none; From e63cb55c90c04b928a15cb32ca938578e007b1ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Akta=C5=9F?= Date: Fri, 22 May 2026 16:29:32 +0300 Subject: [PATCH 15/17] font size css variable refactor --- package-lock.json | 24186 +++++++--------- package.json | 1 - postcss.config.mjs | 2 +- rollup.config.mjs | 4 +- .../Accordion/Accordion.module.scss | 2 +- src/lib/components/Avatar/Avatar.module.scss | 2 +- src/lib/components/Badge/Badge.module.scss | 2 +- .../Breadcrumb/Breadcrumb.module.scss | 4 +- .../BusinessCard/BusinessCard.module.scss | 2 +- src/lib/components/Button/Button.module.scss | 2 +- .../ButtonGroup/ButtonGroup.module.scss | 2 +- src/lib/components/Chip/Chip.module.scss | 3 +- .../components/DataView/DataView.module.scss | 2 +- .../components/Dropdown/Dropdown.module.scss | 2 +- src/lib/components/Icon/Icon.module.scss | 5 +- .../IconButton/IconButton.module.scss | 2 +- src/lib/components/Link/Link.module.scss | 2 +- .../components/ListView/ListView.module.scss | 4 +- .../GlobalIconWrapper.stories.tsx | 1 - src/lib/components/Panel/Panel.module.scss | 2 +- .../components/PinCode/PinCode.module.scss | 6 +- src/lib/components/Select/Select.module.scss | 2 +- .../components/Stepper/Stepper.module.scss | 5 +- .../components/Timeline/Timeline.module.scss | 9 +- src/lib/components/Timeline/TimelineItem.tsx | 4 +- .../ImageUpload/ImageUpload.module.scss | 10 +- .../Upload/ImageUpload/components/Image.tsx | 15 +- .../UploadDragger/UploadDragger.module.scss | 2 +- src/scripts/nextjsPostcssWrapLayer.cjs | 24 - .../{wrapLayer.mjs => postcssWrapLayer.cjs} | 15 +- stylelint.config.mjs | 1 + 31 files changed, 9814 insertions(+), 14511 deletions(-) delete mode 100644 src/scripts/nextjsPostcssWrapLayer.cjs rename src/scripts/{wrapLayer.mjs => postcssWrapLayer.cjs} (64%) diff --git a/package-lock.json b/package-lock.json index 1db6b94..1a03157 100644 --- a/package-lock.json +++ b/package-lock.json @@ -45,7 +45,6 @@ "jest-environment-jsdom": "^30.4.1", "lint-staged": "16.4.0", "next": "^16.2.4", - "postcss-preset-env": "11.3.0", "postcss-url": "10.1.3", "prettier": "3.8.3", "rollup": "^4.60.2", @@ -70,9 +69,9 @@ } }, "node_modules/@adobe/css-tools": { - "version": "4.4.4", - "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.4.tgz", - "integrity": "sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.5.0.tgz", + "integrity": "sha512-6OzddxPio9UiWTCemp4N8cYLV2ZN1ncRnV1cVGtve7dhPOtRkleRyx32GQCYSwDYgaHU3USMm84tNsvKzRCa1Q==", "dev": true, "license": "MIT" }, @@ -2477,10 +2476,10 @@ "node": ">=18" } }, - "node_modules/@csstools/postcss-alpha-function": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@csstools/postcss-alpha-function/-/postcss-alpha-function-2.0.5.tgz", - "integrity": "sha512-i2lNJ6b4GdMoybHlpUM07TIk8KQRXTTe7Qf8LfctQhjDRTIgaodWTQqzWU4fpWO/nxBWNkSloDM22Lw/30NBcg==", + "node_modules/@csstools/selector-resolve-nested": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-4.0.0.tgz", + "integrity": "sha512-9vAPxmp+Dx3wQBIUwc1v7Mdisw1kbbaGqXUM8QLTgWg7SoPGYtXBsMXvsFs/0Bn5yoFhcktzxNZGNaUt0VjgjA==", "dev": true, "funding": [ { @@ -2493,24 +2492,17 @@ } ], "license": "MIT-0", - "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, "engines": { "node": ">=20.19.0" }, "peerDependencies": { - "postcss": "^8.4" + "postcss-selector-parser": "^7.1.1" } }, - "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@csstools/selector-specificity": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-6.0.0.tgz", + "integrity": "sha512-4sSgl78OtOXEX/2d++8A83zHNTgwCJMaR24FvsYL7Uf/VS8HZk9PTwR51elTbGqMuwH3szLvvOXEaVnqn0Z3zA==", "dev": true, "funding": [ { @@ -2523,3424 +2515,2376 @@ } ], "license": "MIT-0", - "engines": { - "node": ">=20.19.0" - } - }, - "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", "engines": { "node": ">=20.19.0" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "postcss-selector-parser": "^7.1.1" } }, - "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "node_modules/@emnapi/core": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz", + "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "optional": true, "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "@emnapi/wasi-threads": "1.2.1", + "tslib": "^2.4.0" } }, - "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@emnapi/runtime": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", + "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "optional": true, + "dependencies": { + "tslib": "^2.4.0" } }, - "node_modules/@csstools/postcss-alpha-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@emnapi/wasi-threads": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", + "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" + "optional": true, + "dependencies": { + "tslib": "^2.4.0" } }, - "node_modules/@csstools/postcss-cascade-layers": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-6.0.0.tgz", - "integrity": "sha512-WhsECqmrEZQGqaPlBA7JkmF/CJ2/+wetL4fkL9sOPccKd32PQ1qToFM6gqSI5rkpmYqubvbxjEJhyMTHYK0vZQ==", + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", + "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "cpu": [ + "ppc64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "MIT", + "optional": true, + "os": [ + "aix" ], - "license": "MIT-0", - "dependencies": { - "@csstools/selector-specificity": "^6.0.0", - "postcss-selector-parser": "^7.1.1" - }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-5.0.4.tgz", - "integrity": "sha512-PhUu86ppxKcNHHqrJ43ZL1mYa2uHKGRoY0KPbZA9k8iOaanL3I+1zYqbgVumxj1UgNTDw5BE3BUQ1Dono6bD6g==", + "node_modules/@esbuild/android-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", + "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "cpu": [ + "arm" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "MIT", + "optional": true, + "os": [ + "android" ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function-display-p3-linear": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function-display-p3-linear/-/postcss-color-function-display-p3-linear-2.0.4.tgz", - "integrity": "sha512-xrGqSFj9pu6XbJYD4NNCxYK9WFbf0KMfXFaisnJezkIRDZCwefUB2azkU4Zr0dFmLtIb9LlshrSZ0be1/QVthQ==", + "node_modules/@esbuild/android-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", + "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "MIT", + "optional": true, + "os": [ + "android" ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@esbuild/android-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", + "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "MIT", + "optional": true, + "os": [ + "android" ], - "license": "MIT-0", "engines": { - "node": ">=20.19.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", + "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "cpu": [ + "arm64" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", + "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "cpu": [ + "x64" ], + "dev": true, "license": "MIT", - "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", + "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "cpu": [ + "arm64" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function-display-p3-linear/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", + "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "cpu": [ + "x64" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=20.19.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@esbuild/linux-arm": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", + "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", + "cpu": [ + "arm" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "MIT", + "optional": true, + "os": [ + "linux" ], - "license": "MIT-0", "engines": { - "node": ">=20.19.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", + "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", + "cpu": [ + "arm64" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", + "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", + "cpu": [ + "ia32" ], + "dev": true, "license": "MIT", - "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", + "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", + "cpu": [ + "loong64" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", + "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", + "cpu": [ + "mips64el" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=20.19.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-function": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-4.0.4.tgz", - "integrity": "sha512-zYS78MHBuih9f9qtPFcSvVXMKg9q/lNPeFJUjyw7+/W1VHRjubvs5MlzuC363UUeahAhrOvYdo2ZZhmlxZbj6w==", + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", + "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "cpu": [ + "ppc64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "MIT", + "optional": true, + "os": [ + "linux" ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", + "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" ], - "license": "MIT-0", "engines": { - "node": ">=20.19.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", + "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "cpu": [ + "s390x" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/linux-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", + "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "cpu": [ + "x64" ], + "dev": true, "license": "MIT", - "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", + "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "cpu": [ + "arm64" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", + "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "cpu": [ + "x64" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">=20.19.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-variadic-function-arguments": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-variadic-function-arguments/-/postcss-color-mix-variadic-function-arguments-2.0.4.tgz", - "integrity": "sha512-qlrABMEFPUqbCxX0aOsHcxQZo/8XgMqnEtqqtVUbdizcuTUtJyLdHike7hkoemwDspMSEotdIfRlUY4jhZaD+A==", + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", + "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "MIT", + "optional": true, + "os": [ + "openbsd" ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", + "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "MIT", + "optional": true, + "os": [ + "openbsd" ], - "license": "MIT-0", "engines": { - "node": ">=20.19.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", + "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "cpu": [ + "arm64" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", + "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "cpu": [ + "x64" ], + "dev": true, "license": "MIT", - "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, + "optional": true, + "os": [ + "sunos" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", + "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "cpu": [ + "arm64" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-color-mix-variadic-function-arguments/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", + "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "cpu": [ + "ia32" ], + "dev": true, "license": "MIT", + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=20.19.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-container-rule-prelude-list": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-container-rule-prelude-list/-/postcss-container-rule-prelude-list-1.0.1.tgz", - "integrity": "sha512-c5qlevVGKHU+zDbVoUGSZl1Mw7Vl1gVRKv6cdIYnaoyM+9Ou23Ian0H5Gr2ZF+lsDWovPK03hOSAbkw6HS8aTg==", + "node_modules/@esbuild/win32-x64": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", + "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "MIT", + "optional": true, + "os": [ + "win32" ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" - }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=18" } }, - "node_modules/@csstools/postcss-container-rule-prelude-list/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, "engines": { - "node": ">=20.19.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" }, "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, - "node_modules/@csstools/postcss-container-rule-prelude-list/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, - "node_modules/@csstools/postcss-content-alt-text": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-3.0.1.tgz", - "integrity": "sha512-mK5lCgzgV/ZC+LgnFy4rAQVMcXR6HsnX3D1+4Q5gshSQsst5TtcvHbxTdzKy1XTv09sNZHJX8CO4CEQF9zA4ug==", + "node_modules/@eslint/config-array": { + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", + "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.5" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "node_modules/@csstools/postcss-content-alt-text/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@eslint/config-array/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@eslint/config-array/node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/@csstools/postcss-content-alt-text/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@eslint/config-array/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=20.19.0" + "node": "*" } }, - "node_modules/@csstools/postcss-contrast-color-function": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-contrast-color-function/-/postcss-contrast-color-function-3.0.4.tgz", - "integrity": "sha512-EiTZzUICztGqEuYg8AVCUWH9vH2jDzO6RryxMja+PWluZHP6n3/iG6i1leTt5LiDQjDUQlCRbQtMNj7V7S+b4Q==", + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" + "@eslint/core": "^0.17.0" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, "engines": { - "node": ">=20.19.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" - } - }, - "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "node_modules/@eslint/eslintrc": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", + "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" + "ajv": "^6.14.0", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.5", + "strip-json-comments": "^3.1.1" }, "engines": { - "node": ">=20.19.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@eslint/eslintrc/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/@csstools/postcss-contrast-color-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@eslint/eslintrc/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": ">= 4" } }, - "node_modules/@csstools/postcss-exponential-functions": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-3.0.3.tgz", - "integrity": "sha512-mB/NoeHLBHh0LZiVSrFdRDA/NxSfmg4tSN9117IJH9bdC2BzSTVgc82h3Gu/sdBXay6kDH2sA7fbkTigMiEi2A==", + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "ISC", "dependencies": { - "@csstools/css-calc": "^3.2.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "*" } }, - "node_modules/@csstools/postcss-exponential-functions/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@eslint/js": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", + "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://eslint.org/donate" } }, - "node_modules/@csstools/postcss-exponential-functions/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "node_modules/@csstools/postcss-exponential-functions/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, "engines": { - "node": ">=20.19.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } }, - "node_modules/@csstools/postcss-font-format-keywords": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-5.0.0.tgz", - "integrity": "sha512-M1EjCe/J3u8fFhOZgRci74cQhJ7R0UFBX6T+WqoEvjrr8hVfMiV+HTYrzxLY5OW8YllvXYr5Q5t5OvJbsUSeDg==", + "node_modules/@humanfs/core": { + "version": "0.19.2", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", + "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "@csstools/utilities": "^3.0.0", - "postcss-value-parser": "^4.2.0" + "@humanfs/types": "^0.15.0" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=18.18.0" } }, - "node_modules/@csstools/postcss-font-width-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-font-width-property/-/postcss-font-width-property-1.0.0.tgz", - "integrity": "sha512-AvmySApdijbjYQuXXh95tb7iVnqZBbJrv3oajO927ksE/mDmJBiszm+psW8orL2lRGR8j6ZU5Uv9/ou2Z5KRKA==", + "node_modules/@humanfs/node": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz", + "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "@csstools/utilities": "^3.0.0" + "@humanfs/core": "^0.19.2", + "@humanfs/types": "^0.15.0", + "@humanwhocodes/retry": "^0.4.0" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=18.18.0" } }, - "node_modules/@csstools/postcss-gamut-mapping": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-3.0.4.tgz", - "integrity": "sha512-2dWGsxtxypKU9Ra862F2335W8xegRwl9ohQ6hk808PiQlEahSaFtt5fqsGmKDaSiaFUx+2X8GZxVo970Ajr2vQ==", + "node_modules/@humanfs/types": { + "version": "0.15.0", + "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz", + "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" - }, + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=18.18.0" } }, - "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" } }, - "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=18.18" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" } }, - "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, + "optional": true, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=18" } }, - "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" ], - "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" } }, - "node_modules/@csstools/postcss-gamut-mapping/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" ], - "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" } }, - "node_modules/@csstools/postcss-gradients-interpolation-method": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-6.0.4.tgz", - "integrity": "sha512-sC/7dqVTtQTniLjPp/NagzeUn4sGinnMTicNBLDzirKq/GNXuJaApBOnvBmgNXjV6XPizfMhNRYCk5stn3q2nQ==", + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", - "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-gradients-interpolation-method/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", - "engines": { - "node": ">=20.19.0" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-hwb-function": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-5.0.4.tgz", - "integrity": "sha512-cl0KPaaeYyAXNHO3pqK8adbpbAGmIU1cT1thyaEkmP8yvbJvmyztkpdGADGqziUUoh4dZQ0IhHxOxnKQ296T+A==", + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", - "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" } }, - "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" } }, - "node_modules/@csstools/postcss-hwb-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" } }, - "node_modules/@csstools/postcss-ic-unit": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-5.0.1.tgz", - "integrity": "sha512-jmsVLXPdMBTlaJAhiEijhIR3qL0j75MrlRfhJEs91DF1Wlt2kpJTDsbpXQpYFzn1nPFHZC/WEf+Mw0I/HXkHzQ==", + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" ], - "license": "MIT-0", - "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0", - "postcss-value-parser": "^4.2.0" - }, "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" } }, - "node_modules/@csstools/postcss-image-function": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-image-function/-/postcss-image-function-1.0.0.tgz", - "integrity": "sha512-iuQztV6Cfeuc7NczazfickrzEhALOpxUS0yWgGkmRY1zZ0CKjBBFc/7WWSN9qupfpNAzHY7cPNcJCqUhtr+YMw==", + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" } }, - "node_modules/@csstools/postcss-image-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" } }, - "node_modules/@csstools/postcss-image-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" ], - "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" } }, - "node_modules/@csstools/postcss-initial": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-3.0.0.tgz", - "integrity": "sha512-UVUrFmrTQyLomVepnjWlbBg7GoscLmXLwYFyjbcEnmpeGW7wde6lNpx5eM3eVwZI2M+7hCE3ykYnAsEPLcLa+Q==", + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" ], - "license": "MIT-0", "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" } }, - "node_modules/@csstools/postcss-is-pseudo-class": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-6.0.0.tgz", - "integrity": "sha512-1Hdy/ykg9RDo8vU8RiM2o+RaXO39WpFPaIkHxlAEJFofle/lc33tdQMKhBk3jR/Fe+uZNLOs3HlowFafyFptVw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" ], - "license": "MIT-0", + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, "dependencies": { - "@csstools/selector-specificity": "^6.0.0", - "postcss-selector-parser": "^7.1.1" + "@emnapi/runtime": "^1.7.0" }, "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-light-dark-function": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-3.0.1.tgz", - "integrity": "sha512-tD2MMJmZ6XXCHgDythLHcXQDNi5z7KEEWPe7JeB3vPcw+YMuMabpW5ugRqndhIrui+vduhc0Md7f7yGPCmOErg==", + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-light-dark-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" ], - "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-light-dark-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" ], - "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" } }, - "node_modules/@csstools/postcss-logical-float-and-clear": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-4.0.0.tgz", - "integrity": "sha512-NGzdIRVj/VxOa/TjVdkHeyiJoDihONV0+uB0csUdgWbFFr8xndtfqK8iIGP9IKJzco+w0hvBF2SSk2sDSTAnOQ==", + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "engines": { + "node": ">=12" } }, - "node_modules/@csstools/postcss-logical-overflow": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-3.0.0.tgz", - "integrity": "sha512-5cRg93QXVskM0MNepHpPcL0WLSf5Hncky0DrFDQY/4ozbH5lH7SX5ejayVpNTGSX7IpOvu7ykQDLOdMMGYzwpA==", + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "engines": { + "node": ">=8" } }, - "node_modules/@csstools/postcss-logical-overscroll-behavior": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-3.0.0.tgz", - "integrity": "sha512-82Jnl/5Wi5jb19nQE1XlBHrZcNL3PzOgcj268cDkfwf+xi10HBqufGo1Unwf5n8bbbEFhEKgyQW+vFsc9iY1jw==", + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" } }, - "node_modules/@csstools/postcss-logical-resize": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-resize/-/postcss-logical-resize-4.0.0.tgz", - "integrity": "sha512-L0T3q0gei/tGetCGZU0c7VN77VTivRpz1YZRNxjXYmW+85PKeI6U9YnSvDqLU2vBT2uN4kLEzfgZ0ThIZpN18A==", + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.2.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=8" } }, - "node_modules/@csstools/postcss-logical-viewport-units": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-4.0.0.tgz", - "integrity": "sha512-TA3AqVN/1IH3dKRC2UUWvprvwyOs2IeD7FDZk5Hz20w4q33yIuSg0i0gjyTUkcn90g8A4n7QpyZ2AgBrnYPnnA==", + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", + "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/utilities": "^3.0.0" - }, - "engines": { - "node": ">=20.19.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/@csstools/postcss-logical-viewport-units/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">=8" } }, - "node_modules/@csstools/postcss-media-minmax": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-3.0.3.tgz", - "integrity": "sha512-ch1tNS+1QayiHTGsyc53zv3AzrSd0zigjbkfLxoeuzzJyn32+P3V7em3u5vLVnqLMzBbEZK//GI13EVTIPRdDA==", + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "dependencies": { - "@csstools/css-calc": "^3.2.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/media-query-list-parser": "^5.0.0" + "p-try": "^2.0.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=6" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@csstools/postcss-media-minmax/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" + "dependencies": { + "p-limit": "^2.2.0" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" - } + "engines": { + "node": ">=8" + } }, - "node_modules/@csstools/postcss-media-minmax/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=8" } }, - "node_modules/@csstools/postcss-media-minmax/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@istanbuljs/schema": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.6.tgz", + "integrity": "sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": ">=8" } }, - "node_modules/@csstools/postcss-media-minmax/node_modules/@csstools/media-query-list-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-5.0.0.tgz", - "integrity": "sha512-T9lXmZOfnam3eMERPsszjY5NK0jX8RmThmmm99FZ8b7z8yMaFZWKwLWGZuTwdO3ddRY5fy13GmmEYZXB4I98Eg==", + "node_modules/@jest/console": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-30.4.1.tgz", + "integrity": "sha512-v3bhyxUh9Hgmo5p6hAOXe14/R3ZxZDOsvHleh4B07z3m/x4/ngPUXEm9XwK4sF4u+f+P2ORb0Ge+MgpaqRMVDA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" + "dependencies": { + "@jest/types": "30.4.1", + "@types/node": "*", + "chalk": "^4.1.2", + "jest-message-util": "30.4.1", + "jest-util": "30.4.1", + "slash": "^3.0.0" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-4.0.0.tgz", - "integrity": "sha512-FDdC3lbrj8Vr0SkGIcSLTcRB7ApG6nlJFxOxkEF2C5hIZC1jtgjISFSGn/WjFdVkn8Dqe+Vx9QXI3axS2w1XHw==", + "node_modules/@jest/core": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-30.4.2.tgz", + "integrity": "sha512-TZJA6cPJUFxoWhxaLo8t0VX/MZX2wPWr0uIDvLSHIvN4gu9h02vSzqI2kBADG1ExqQlC+cY09xKMSreivvrChQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/media-query-list-parser": "^5.0.0" + "@jest/console": "30.4.1", + "@jest/pattern": "30.4.0", + "@jest/reporters": "30.4.1", + "@jest/test-result": "30.4.1", + "@jest/transform": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2", + "ci-info": "^4.2.0", + "exit-x": "^0.2.2", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.11", + "jest-changed-files": "30.4.1", + "jest-config": "30.4.2", + "jest-haste-map": "30.4.1", + "jest-message-util": "30.4.1", + "jest-regex-util": "30.4.0", + "jest-resolve": "30.4.1", + "jest-resolve-dependencies": "30.4.2", + "jest-runner": "30.4.2", + "jest-runtime": "30.4.2", + "jest-snapshot": "30.4.1", + "jest-util": "30.4.1", + "jest-validate": "30.4.1", + "jest-watcher": "30.4.1", + "pretty-format": "30.4.1", + "slash": "^3.0.0" }, "engines": { - "node": ">=20.19.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" }, "peerDependencies": { - "postcss": "^8.4" + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": ">=10" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" + }, "engines": { - "node": ">=20.19.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values/node_modules/@csstools/media-query-list-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-5.0.0.tgz", - "integrity": "sha512-T9lXmZOfnam3eMERPsszjY5NK0jX8RmThmmm99FZ8b7z8yMaFZWKwLWGZuTwdO3ddRY5fy13GmmEYZXB4I98Eg==", + "node_modules/@jest/diff-sequences": { + "version": "30.4.0", + "resolved": "https://registry.npmjs.org/@jest/diff-sequences/-/diff-sequences-30.4.0.tgz", + "integrity": "sha512-zOpzlfUs45l6u7jm39qr87JCHUDsaeCtvL+kQe/Vn9jSnRB4/5IPXISm0h9I1vZW/o00Kn4UTJ2MOlhnUGwv3g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-mixins": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-mixins/-/postcss-mixins-1.0.0.tgz", - "integrity": "sha512-rz6qjT2w9L3k65jGc2dX+3oGiSrYQ70EZPDrINSmSVoVys7lLBFH0tvEa8DW2sr9cbRVD/W+1sy8+7bfu0JUfg==", + "node_modules/@jest/environment": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-30.4.1.tgz", + "integrity": "sha512-AK9yNRqgKxiabqMoe4oW+3/TSSeV8vkdC7BGaxZdU0AFXfOpofTLqdru2GXKZghP3sdgwE9XXpnVwfZ8JnFV4w==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "@jest/fake-timers": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "jest-mock": "30.4.1" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-mixins/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jest/environment-jsdom-abstract": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/environment-jsdom-abstract/-/environment-jsdom-abstract-30.4.1.tgz", + "integrity": "sha512-dSlKrqug3siYNHVnjwIldShY12wAH3spwRltO/+8VOjg0X+xEq7vOs3DbBs4LRKsu7OH+NUb9kuZUNBF9Ho3TA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "@jest/environment": "30.4.1", + "@jest/fake-timers": "30.4.1", + "@jest/types": "30.4.1", + "@types/jsdom": "^21.1.7", + "@types/node": "*", + "jest-mock": "30.4.1", + "jest-util": "30.4.1" + }, "engines": { - "node": ">=20.19.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" }, "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" - } - }, - "node_modules/@csstools/postcss-mixins/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" + "canvas": "^3.0.0", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true } - ], - "license": "MIT", - "engines": { - "node": ">=20.19.0" } }, - "node_modules/@csstools/postcss-nested-calc": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-5.0.0.tgz", - "integrity": "sha512-aPSw8P60e/i9BEfugauhikBqgjiwXcw3I9o4vXs+hktl4NSTgZRI0QHimxk9mst8N01A2TKDBxOln3mssRxiHQ==", + "node_modules/@jest/expect": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-30.4.1.tgz", + "integrity": "sha512-ginrj6TMgh2GshLUGCjO94Ptx9HhdZA/I6A9iUfyeLKFtdAjnKzHDgzgP9HYQgbxM1lbXScQ2eUBz2lGeVDPWA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/utilities": "^3.0.0", - "postcss-value-parser": "^4.2.0" + "expect": "30.4.1", + "jest-snapshot": "30.4.1" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-normalize-display-values": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-5.0.1.tgz", - "integrity": "sha512-FcbEmoxDEGYvm2W3rQzVzcuo66+dDJjzzVDs+QwRmZLHYofGmMGwIKPqzF86/YW+euMDa7sh1xjWDvz/fzByZQ==", + "node_modules/@jest/expect-utils": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-30.4.1.tgz", + "integrity": "sha512-ZBn5CglH8fBsQsvs4VWNzD4aWfUYks+IdOOQU3MEK71ol/BcVm+P+rtb1KpiFBpSWSCE27uOahyyf1vfqOVbcQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.2.0" + "@jest/get-type": "30.1.0" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-oklab-function": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-5.0.4.tgz", - "integrity": "sha512-vIgrKe5ffW99it5SUIXOBczGLSiTaHBhU6afVr9KPwoZ4uq9H0E3Ehvi+xsUjmvnAyMTxOUSszNo04kEhbvYjQ==", + "node_modules/@jest/fake-timers": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-30.4.1.tgz", + "integrity": "sha512-iW5umdmfPeWzehrVhugFQZqCchSCud5S1l2YT0O9ZhjRR0ExclANDZkiSBwzqtnlOn0J1JXvO+HZ6rkuyOVOgQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" + "@jest/types": "30.4.1", + "@sinonjs/fake-timers": "^15.4.0", + "@types/node": "*", + "jest-message-util": "30.4.1", + "jest-mock": "30.4.1", + "jest-util": "30.4.1" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@jest/get-type": { + "version": "30.1.0", + "resolved": "https://registry.npmjs.org/@jest/get-type/-/get-type-30.1.0.tgz", + "integrity": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@jest/globals": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-30.4.1.tgz", + "integrity": "sha512-ZbuY4cmXC8DkxYjfvT2DbcHWL2T6vmsMhXCDcmTB2T0y0gaezBI77ufq5ZAIdcRkYZ7NEQEDg1xFeKbxUJ5v5Q==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" + "dependencies": { + "@jest/environment": "30.4.1", + "@jest/expect": "30.4.1", + "@jest/types": "30.4.1", + "jest-mock": "30.4.1" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "node_modules/@jest/pattern": { + "version": "30.4.0", + "resolved": "https://registry.npmjs.org/@jest/pattern/-/pattern-30.4.0.tgz", + "integrity": "sha512-RAWn3+f9u8BsHijKJ71uHcFp6vmyEt6VvoWXkl6hKF3qVIuWNmudVjg12DlBPGup/frIl5UcUlH5HfEuvHpEXg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" + "@types/node": "*", + "jest-regex-util": "30.4.0" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jest/reporters": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-30.4.1.tgz", + "integrity": "sha512-/SnkPCzEQpUaBH81kjdEdDdo2WZl5hxw+BmLDGWjRkm8o7XlhjwsU36cqwe5PGBE5WYpBvDzRSdXx9rbGuJtNA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "30.4.1", + "@jest/test-result": "30.4.1", + "@jest/transform": "30.4.1", + "@jest/types": "30.4.1", + "@jridgewell/trace-mapping": "^0.3.25", + "@types/node": "*", + "chalk": "^4.1.2", + "collect-v8-coverage": "^1.0.2", + "exit-x": "^0.2.2", + "glob": "^10.5.0", + "graceful-fs": "^4.2.11", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^5.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "30.4.1", + "jest-util": "30.4.1", + "jest-worker": "30.4.1", + "slash": "^3.0.0", + "string-length": "^4.0.2", + "v8-to-istanbul": "^9.0.1" + }, "engines": { - "node": ">=20.19.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" }, "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/@csstools/postcss-oklab-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@jest/schemas": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.4.1.tgz", + "integrity": "sha512-i6b4qw5qnP8c5FEeBJg/uZQ4ddrkN6Ca8qISJh0pr7a5hfn3h3v5x60BEbOC7OYAGZNMs1LfFLwnW2CuK8F57Q==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "@sinclair/typebox": "^0.34.0" + }, "engines": { - "node": ">=20.19.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-position-area-property": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-position-area-property/-/postcss-position-area-property-2.0.0.tgz", - "integrity": "sha512-TeEfzsJGB23Syv7yCm8AHCD2XTFujdjr9YYu9ebH64vnfCEvY4BG319jXAYSlNlf3Yc9PNJ6WnkDkUF5XVgSKQ==", + "node_modules/@jest/snapshot-utils": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/snapshot-utils/-/snapshot-utils-30.4.1.tgz", + "integrity": "sha512-ObY4ljvQ95mt6iwKtVLetR/4yXiAgl3H4nJxhztr0MTjrN97TwDYrnCp/kF60Ec9HdhkWTHSu+Hg05aXfngpOA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" + "license": "MIT", + "dependencies": { + "@jest/types": "30.4.1", + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "natural-compare": "^1.4.0" }, - "peerDependencies": { - "postcss": "^8.4" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-progressive-custom-properties": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-5.1.0.tgz", - "integrity": "sha512-lt/4yHy2GdKcGVpK4OGhBdSIq+z2PXynSusSRggn/T4y7uFurYAhdHqo/aYM+xI37vNb8rJlEKchqKKvVCXROQ==", + "node_modules/@jest/source-map": { + "version": "30.0.1", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-30.0.1.tgz", + "integrity": "sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.2.0" + "@jridgewell/trace-mapping": "^0.3.25", + "callsites": "^3.1.0", + "graceful-fs": "^4.2.11" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-property-rule-prelude-list": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-property-rule-prelude-list/-/postcss-property-rule-prelude-list-2.0.0.tgz", - "integrity": "sha512-qcMAkc9AhpzHgmQCD8hoJgGYifcOAxd1exXjjxilMM6euwRE619xDa4UsKBCv/v4g+sS63sd6c29LPM8s2ylSQ==", + "node_modules/@jest/test-result": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-30.4.1.tgz", + "integrity": "sha512-/ZG7pgEiOmmWkN9TplKbOu4id2N5lh7FHwRwlkgBVAzGdRH+OkkQ8wX/kIxg4zmd3ZQvAL1RwL2yWsvNYYECTw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "@jest/console": "30.4.1", + "@jest/types": "30.4.1", + "@types/istanbul-lib-coverage": "^2.0.6", + "collect-v8-coverage": "^1.0.2" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-property-rule-prelude-list/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jest/test-sequencer": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-30.4.1.tgz", + "integrity": "sha512-PeYE+4td5rKjoRPxztObrXU+H8hsjZfxKMXOcmrr34JerSyB/ROOxbbicz8B7A5j9R9VayDnVPvBmedqCsFCdw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" + "dependencies": { + "@jest/test-result": "30.4.1", + "graceful-fs": "^4.2.11", + "jest-haste-map": "30.4.1", + "slash": "^3.0.0" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-property-rule-prelude-list/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@jest/transform": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-30.4.1.tgz", + "integrity": "sha512-Wz0LyktlTvRefoymh+n64hQ84KNXsRGcwdoZ8CSa0Ea+fgYcHZlnk+hDP7v2MS7il2bQ5uTEIxf4/NNfhMN4KQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "@babel/core": "^7.27.4", + "@jest/types": "30.4.1", + "@jridgewell/trace-mapping": "^0.3.25", + "babel-plugin-istanbul": "^7.0.1", + "chalk": "^4.1.2", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.11", + "jest-haste-map": "30.4.1", + "jest-regex-util": "30.4.0", + "jest-util": "30.4.1", + "pirates": "^4.0.7", + "slash": "^3.0.0", + "write-file-atomic": "^5.0.1" + }, "engines": { - "node": ">=20.19.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-random-function": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-3.0.3.tgz", - "integrity": "sha512-0EScyKxscGonwpi30Hj9DEAr0X8D2eDhOqqayQXE91gIqGli9UT+deLYqoogZLOy5GT+ncqltMqztc/q+0UkhA==", + "node_modules/@jest/types": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-30.4.1.tgz", + "integrity": "sha512-f1x/vJXIfjOlEmejYpbkbgw1gOqpPECwMvMEtBqe47j7H2Hg8h8w3o3ikhSXq3MI15kg+oQ0exWO0uCtTNJLoQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/css-calc": "^3.2.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "@jest/pattern": "30.4.0", + "@jest/schemas": "30.4.1", + "@types/istanbul-lib-coverage": "^2.0.6", + "@types/istanbul-reports": "^3.0.4", + "@types/node": "*", + "@types/yargs": "^17.0.33", + "chalk": "^4.1.2" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@csstools/postcss-random-function/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" } }, - "node_modules/@csstools/postcss-random-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" } }, - "node_modules/@csstools/postcss-random-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": ">=6.0.0" } }, - "node_modules/@csstools/postcss-relative-color-syntax": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-4.0.4.tgz", - "integrity": "sha512-reFFKD9eS602We8621e5cAroKD7hH4104duLNBBhzwawGN7dhbnL1+c/DRHqwyq6eGK35HaKMMiifEZhAztlOA==", + "node_modules/@jridgewell/source-map": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } }, - "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" - } + "license": "MIT" }, - "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "node_modules/@jsonjoy.com/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", - "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "tslib": "2" } }, - "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jsonjoy.com/buffers": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-17.67.0.tgz", + "integrity": "sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "tslib": "2" } }, - "node_modules/@csstools/postcss-relative-color-syntax/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@jsonjoy.com/codegen": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz", + "integrity": "sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@csstools/postcss-scope-pseudo-class": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-5.0.0.tgz", - "integrity": "sha512-kBrBFJcAji3MSHS4qQIihPvJfJC5xCabXLbejqDMiQi+86HD4eMBiTayAo46Urg7tlEmZZQFymFiJt+GH6nvXw==", + "node_modules/@jsonjoy.com/fs-core": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.57.2.tgz", + "integrity": "sha512-SVjwklkpIV5wrynpYtuYnfYH1QF4/nDuLBX7VXdb+3miglcAgBVZb/5y0cOsehRV/9Vb+3UqhkMq3/NR3ztdkQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "postcss-selector-parser": "^7.1.1" + "@jsonjoy.com/fs-node-builtins": "4.57.2", + "@jsonjoy.com/fs-node-utils": "4.57.2", + "thingies": "^2.5.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "postcss": "^8.4" + "tslib": "2" } }, - "node_modules/@csstools/postcss-sign-functions": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-2.0.3.tgz", - "integrity": "sha512-2BCPwlpeQweTC/8S8oQFYhYD5kxYkiroLf3AUJV2kVoKkSZ+4WM4rSwySXlKrqXL8HfCryAwVrJg7B0jr/RnOw==", + "node_modules/@jsonjoy.com/fs-fsa": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.57.2.tgz", + "integrity": "sha512-fhO8+iR2I+OCw668ISDJdn1aArc9zx033sWejIyzQ8RBeXa9bDSaUeA3ix0poYOfrj1KdOzytmYNv2/uLDfV6g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "@csstools/css-calc": "^3.2.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "@jsonjoy.com/fs-core": "4.57.2", + "@jsonjoy.com/fs-node-builtins": "4.57.2", + "@jsonjoy.com/fs-node-utils": "4.57.2", + "thingies": "^2.5.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "postcss": "^8.4" + "tslib": "2" } }, - "node_modules/@csstools/postcss-sign-functions/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@jsonjoy.com/fs-node": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.57.2.tgz", + "integrity": "sha512-nX2AdL6cOFwLdju9G4/nbRnYevmCJbh7N7hvR3gGm97Cs60uEjyd0rpR+YBS7cTg175zzl22pGKXR5USaQMvKg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-core": "4.57.2", + "@jsonjoy.com/fs-node-builtins": "4.57.2", + "@jsonjoy.com/fs-node-utils": "4.57.2", + "@jsonjoy.com/fs-print": "4.57.2", + "@jsonjoy.com/fs-snapshot": "4.57.2", + "glob-to-regex.js": "^1.0.0", + "thingies": "^2.5.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "tslib": "2" } }, - "node_modules/@csstools/postcss-sign-functions/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jsonjoy.com/fs-node-builtins": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.57.2.tgz", + "integrity": "sha512-xhiegylRmhw43Ki2HO1ZBL7DQ5ja/qpRsL29VtQ2xuUHiuDGbgf2uD4p9Qd8hJI5P6RCtGYD50IXHXVq/Ocjcg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "tslib": "2" } }, - "node_modules/@csstools/postcss-sign-functions/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@jsonjoy.com/fs-node-to-fsa": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.57.2.tgz", + "integrity": "sha512-18LmWTSONhoAPW+IWRuf8w/+zRolPFGPeGwMxlAhhfY11EKzX+5XHDBPAw67dBF5dxDErHJbl40U+3IXSDRXSQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-fsa": "4.57.2", + "@jsonjoy.com/fs-node-builtins": "4.57.2", + "@jsonjoy.com/fs-node-utils": "4.57.2" + }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@csstools/postcss-stepped-value-functions": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-5.0.3.tgz", - "integrity": "sha512-nXMFQBz5Pi2LLG02iqm2k+scrqwtqJT9ta/gN8S79oBZ23M0E7O3wDJ20//3z5Q6HU5e+K0n+SmmxN6iWtbm6w==", + "node_modules/@jsonjoy.com/fs-node-utils": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.57.2.tgz", + "integrity": "sha512-rsPSJgekz43IlNbLyAM/Ab+ouYLWGp5DDBfYBNNEqDaSpsbXfthBn29Q4muFA9L0F+Z3mKo+CWlgSCXrf+mOyQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "@csstools/css-calc": "^3.2.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "@jsonjoy.com/fs-node-builtins": "4.57.2" }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "postcss": "^8.4" + "tslib": "2" } }, - "node_modules/@csstools/postcss-stepped-value-functions/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@jsonjoy.com/fs-print": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.57.2.tgz", + "integrity": "sha512-wK9NSow48i4DbDl9F1CQE5TqnyZOJ04elU3WFG5aJ76p+YxO/ulyBBQvKsessPxdo381Bc2pcEoyPujMOhcRqQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/fs-node-utils": "4.57.2", + "tree-dump": "^1.1.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "tslib": "2" } }, - "node_modules/@csstools/postcss-stepped-value-functions/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jsonjoy.com/fs-snapshot": { + "version": "4.57.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.57.2.tgz", + "integrity": "sha512-GdduDZuoP5V/QCgJkx9+BZ6SC0EZ/smXAdTS7PfMqgMTGXLlt/bH/FqMYaqB9JmLf05sJPtO0XRbAwwkEEPbVw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/buffers": "^17.65.0", + "@jsonjoy.com/fs-node-utils": "4.57.2", + "@jsonjoy.com/json-pack": "^17.65.0", + "@jsonjoy.com/util": "^17.65.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "tslib": "2" } }, - "node_modules/@csstools/postcss-stepped-value-functions/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/base64": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-17.67.0.tgz", + "integrity": "sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@csstools/postcss-syntax-descriptor-syntax-production": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-syntax-descriptor-syntax-production/-/postcss-syntax-descriptor-syntax-production-2.0.0.tgz", - "integrity": "sha512-elYcbdiBXAkPqvojB9kIBRuHY6htUhjSITtFQ+XiXnt6SvZCbNGxQmaaw6uZ7SPHu/+i/XVjzIt09/1k3SIerQ==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/codegen": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-17.67.0.tgz", + "integrity": "sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-tokenizer": "^4.0.0" - }, + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "postcss": "^8.4" + "tslib": "2" } }, - "node_modules/@csstools/postcss-syntax-descriptor-syntax-production/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pack": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-17.67.0.tgz", + "integrity": "sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/base64": "17.67.0", + "@jsonjoy.com/buffers": "17.67.0", + "@jsonjoy.com/codegen": "17.67.0", + "@jsonjoy.com/json-pointer": "17.67.0", + "@jsonjoy.com/util": "17.67.0", + "hyperdyperid": "^1.2.0", + "thingies": "^2.5.0", + "tree-dump": "^1.1.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@csstools/postcss-system-ui-font-family": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-system-ui-font-family/-/postcss-system-ui-font-family-2.0.0.tgz", - "integrity": "sha512-FyGZCgchFImFyiHS2x3rD5trAqatf/x23veBLTIgbaqyFfna6RNBD+Qf8HRSjt6HGMXOLhAjxJ3OoZg0bbn7Qw==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pointer": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-17.67.0.tgz", + "integrity": "sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "@jsonjoy.com/util": "17.67.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "postcss": "^8.4" + "tslib": "2" } }, - "node_modules/@csstools/postcss-system-ui-font-family/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/util": { + "version": "17.67.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-17.67.0.tgz", + "integrity": "sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/buffers": "17.67.0", + "@jsonjoy.com/codegen": "17.67.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" - } - }, - "node_modules/@csstools/postcss-system-ui-font-family/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", - "engines": { - "node": ">=20.19.0" + "tslib": "2" } }, - "node_modules/@csstools/postcss-text-decoration-shorthand": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-5.0.3.tgz", - "integrity": "sha512-62fjggvIM1YYfDJPcErMUDkEZB6CByG8neTJqexnZe1hRBgCjD4dnXDLoCSSurjs1LzjBq6irFDpDaOvDZfrlw==", + "node_modules/@jsonjoy.com/json-pack": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.21.0.tgz", + "integrity": "sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "postcss-value-parser": "^4.2.0" + "@jsonjoy.com/base64": "^1.1.2", + "@jsonjoy.com/buffers": "^1.2.0", + "@jsonjoy.com/codegen": "^1.0.0", + "@jsonjoy.com/json-pointer": "^1.0.2", + "@jsonjoy.com/util": "^1.9.0", + "hyperdyperid": "^1.2.0", + "thingies": "^2.5.0", + "tree-dump": "^1.1.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "postcss": "^8.4" + "tslib": "2" } }, - "node_modules/@csstools/postcss-text-decoration-shorthand/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/@jsonjoy.com/json-pack/node_modules/@jsonjoy.com/buffers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz", + "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/@csstools/postcss-trigonometric-functions": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-5.0.3.tgz", - "integrity": "sha512-p9LTvLj+DFpl5RHbG/X9QGwg7BoMOBsRBZqsUAKKVvCw7MRCsk1P1llTUR/MW5nyZ4IsjFGDtDwTTj1reJjxvg==", + "node_modules/@jsonjoy.com/json-pointer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.2.tgz", + "integrity": "sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "Apache-2.0", "dependencies": { - "@csstools/css-calc": "^3.2.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "@jsonjoy.com/codegen": "^1.0.0", + "@jsonjoy.com/util": "^1.9.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "postcss": "^8.4" + "tslib": "2" } }, - "node_modules/@csstools/postcss-trigonometric-functions/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/@jsonjoy.com/util": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz", + "integrity": "sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", + "dependencies": { + "@jsonjoy.com/buffers": "^1.0.0", + "@jsonjoy.com/codegen": "^1.0.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "tslib": "2" } }, - "node_modules/@csstools/postcss-trigonometric-functions/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/@jsonjoy.com/util/node_modules/@jsonjoy.com/buffers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz", + "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">=20.19.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "tslib": "2" } }, - "node_modules/@csstools/postcss-trigonometric-functions/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/@keyv/serialize": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.1.1.tgz", + "integrity": "sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@mdn/browser-compat-data": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-6.1.5.tgz", + "integrity": "sha512-PzdZZzRhcXvKB0begee28n5lvwAcinGKYuLZOVxHAZm+n7y01ddEGfdS1ZXRuVcV+ndG6mSEAE8vgudom5UjYg==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/@mdx-js/react": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.1.tgz", + "integrity": "sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" + "dependencies": { + "@types/mdx": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=16", + "react": ">=16" } }, - "node_modules/@csstools/postcss-unset-value": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-5.0.0.tgz", - "integrity": "sha512-EoO54sS2KCIfesvHyFYAW99RtzwHdgaJzhl7cqKZSaMYKZv3fXSOehDjAQx8WZBKn1JrMd7xJJI1T1BxPF7/jA==", + "node_modules/@napi-rs/wasm-runtime": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz", + "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" + "license": "MIT", + "optional": true, + "dependencies": { + "@tybys/wasm-util": "^0.10.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/Brooooooklyn" }, "peerDependencies": { - "postcss": "^8.4" + "@emnapi/core": "^1.7.1", + "@emnapi/runtime": "^1.7.1" } }, - "node_modules/@csstools/selector-resolve-nested": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-4.0.0.tgz", - "integrity": "sha512-9vAPxmp+Dx3wQBIUwc1v7Mdisw1kbbaGqXUM8QLTgWg7SoPGYtXBsMXvsFs/0Bn5yoFhcktzxNZGNaUt0VjgjA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss-selector-parser": "^7.1.1" - } - }, - "node_modules/@csstools/selector-specificity": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-6.0.0.tgz", - "integrity": "sha512-4sSgl78OtOXEX/2d++8A83zHNTgwCJMaR24FvsYL7Uf/VS8HZk9PTwR51elTbGqMuwH3szLvvOXEaVnqn0Z3zA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss-selector-parser": "^7.1.1" - } - }, - "node_modules/@csstools/utilities": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/utilities/-/utilities-3.0.0.tgz", - "integrity": "sha512-etDqA/4jYvOGBM6yfKCOsEXfH96BKztZdgGmGqKi2xHnDe0ILIBraRspwgYatJH9JsCZ5HCGoCst8w18EKOAdg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@emnapi/core": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz", - "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@emnapi/wasi-threads": "1.2.1", - "tslib": "^2.4.0" - } - }, - "node_modules/@emnapi/runtime": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", - "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "node_modules/@neoconfetti/react": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@neoconfetti/react/-/react-1.0.0.tgz", + "integrity": "sha512-klcSooChXXOzIm+SE5IISIAn3bYzYfPjbX7D7HoqZL84oAfgREeSg5vSIaSFH+DaGzzvImTyWe1OyrJ67vik4A==", "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } + "license": "MIT" }, - "node_modules/@emnapi/wasi-threads": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", - "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", + "node_modules/@next/env": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.6.tgz", + "integrity": "sha512-gd8HoHN4ufj73WmR3JmVolrpJR47ILK6LouP5xElPglaVxir6e1a7VzvTvDWkOoPXT9rkkTzyCxBu4yeZfZwcw==", "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } + "license": "MIT" }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.7.tgz", - "integrity": "sha512-EKX3Qwmhz1eMdEJokhALr0YiD0lhQNwDqkPYyPhiSwKrh7/4KRjQc04sZ8db+5DVVnZ1LmbNDI1uAMPEUBnQPg==", + "node_modules/@next/swc-darwin-arm64": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.6.tgz", + "integrity": "sha512-ZJGkkcNfYgrrMkqOdZ7zoLa1TOy0qpcMfk/z4Mh/FKUz40gVO+HNQWqmLxf67Z5WB64DRp0dhEbyHfel+6sJUg==", "cpu": [ - "ppc64" + "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "aix" + "darwin" ], "engines": { - "node": ">=18" + "node": ">= 10" } }, - "node_modules/@esbuild/android-arm": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.7.tgz", - "integrity": "sha512-jbPXvB4Yj2yBV7HUfE2KHe4GJX51QplCN1pGbYjvsyCZbQmies29EoJbkEc+vYuU5o45AfQn37vZlyXy4YJ8RQ==", + "node_modules/@next/swc-darwin-x64": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.6.tgz", + "integrity": "sha512-v/YLBHIY132Ced3puBJ7YJKw1lqsCrgcNo2aRJlCEyQrrCeRJlvGlnmxhPxNQI3KE3N1DN5r9TPNPvka3nq5RQ==", "cpu": [ - "arm" + "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "android" + "darwin" ], "engines": { - "node": ">=18" + "node": ">= 10" } }, - "node_modules/@esbuild/android-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.7.tgz", - "integrity": "sha512-62dPZHpIXzvChfvfLJow3q5dDtiNMkwiRzPylSCfriLvZeq0a1bWChrGx/BbUbPwOrsWKMn8idSllklzBy+dgQ==", + "node_modules/@next/swc-linux-arm64-gnu": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.6.tgz", + "integrity": "sha512-RPOvqlYBbcQjkz9VQQDZ2T2bARIjXZV1KFlt+V2Mr6SW/e4I9fcKsaA0hdyf2FHoTlsV2xnBd5Y912rP/1Ce6w==", "cpu": [ "arm64" ], @@ -5948,50 +4892,50 @@ "license": "MIT", "optional": true, "os": [ - "android" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10" } }, - "node_modules/@esbuild/android-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.7.tgz", - "integrity": "sha512-x5VpMODneVDb70PYV2VQOmIUUiBtY3D3mPBG8NxVk5CogneYhkR7MmM3yR/uMdITLrC1ml/NV1rj4bMJuy9MCg==", + "node_modules/@next/swc-linux-arm64-musl": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.6.tgz", + "integrity": "sha512-URUTu1+dMkxJsPFgm+OeEvq9wf5sujw0EvgYy80TDGHTSLTnIHeqb0Eu8A3sC95IRgjejQL+kC4mw+4yPxiAXA==", "cpu": [ - "x64" + "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "android" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10" } }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.7.tgz", - "integrity": "sha512-5lckdqeuBPlKUwvoCXIgI2D9/ABmPq3Rdp7IfL70393YgaASt7tbju3Ac+ePVi3KDH6N2RqePfHnXkaDtY9fkw==", + "node_modules/@next/swc-linux-x64-gnu": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.6.tgz", + "integrity": "sha512-DOj182mPV8G3UkrayLoREM5YEYI+Dk5wv7Ox9xl1fFibAELEsFD0lDPfHIeILlutMMfdyhlzYPELG3peuKaurw==", "cpu": [ - "arm64" + "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "darwin" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10" } }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.7.tgz", - "integrity": "sha512-rYnXrKcXuT7Z+WL5K980jVFdvVKhCHhUwid+dDYQpH+qu+TefcomiMAJpIiC2EM3Rjtq0sO3StMV/+3w3MyyqQ==", + "node_modules/@next/swc-linux-x64-musl": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.6.tgz", + "integrity": "sha512-HKQ5SP/V/ub73UvF7n/zeJlxk2kLmtL7Wzrg4WfmkjmNos5onJ2tKu7yZOPdL18A6Svfn3max29ym+ry7NkK4g==", "cpu": [ "x64" ], @@ -5999,16 +4943,16 @@ "license": "MIT", "optional": true, "os": [ - "darwin" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10" } }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.7.tgz", - "integrity": "sha512-B48PqeCsEgOtzME2GbNM2roU29AMTuOIN91dsMO30t+Ydis3z/3Ngoj5hhnsOSSwNzS+6JppqWsuhTp6E82l2w==", + "node_modules/@next/swc-win32-arm64-msvc": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.6.tgz", + "integrity": "sha512-LZXpTlPyS5v7HhSmnvsLGP3iIYgYOBnc8r8ArlT55sGHV89bR2HlDdBjWQ+PY6SJMmk8TuVGFuxalnP3k/0Dwg==", "cpu": [ "arm64" ], @@ -6016,16 +4960,16 @@ "license": "MIT", "optional": true, "os": [ - "freebsd" + "win32" ], "engines": { - "node": ">=18" + "node": ">= 10" } }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.7.tgz", - "integrity": "sha512-jOBDK5XEjA4m5IJK3bpAQF9/Lelu/Z9ZcdhTRLf4cajlB+8VEhFFRjWgfy3M1O4rO2GQ/b2dLwCUGpiF/eATNQ==", + "node_modules/@next/swc-win32-x64-msvc": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.6.tgz", + "integrity": "sha512-F0+4i0h9J6C4eE3EAPWsoCk7UW/dbzOjyzxY0qnDUOYFu6FFmdZ6l97/XdV3/Nz3VYyO7UWjyEJUXkGqcoXfMA==", "cpu": [ "x64" ], @@ -6033,152 +4977,188 @@ "license": "MIT", "optional": true, "os": [ - "freebsd" + "win32" ], "engines": { - "node": ">=18" + "node": ">= 10" } }, - "node_modules/@esbuild/linux-arm": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.7.tgz", - "integrity": "sha512-RkT/YXYBTSULo3+af8Ib0ykH8u2MBh57o7q/DAs3lTJlyVQkgQvlrPTnjIzzRPQyavxtPtfg0EopvDyIt0j1rA==", - "cpu": [ - "arm" - ], + "node_modules/@niceties/ansi": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@niceties/ansi/-/ansi-1.1.2.tgz", + "integrity": "sha512-4SZgmseZqfGAIrcXmfVes+Uj51KMUQNZ3X31faRB8g2tyebDzW+zlkeg1qmhilrgJOi3nm6EOMlkfJVrgiBzZg==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">=18" + "node": ">=15" } }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.7.tgz", - "integrity": "sha512-RZPHBoxXuNnPQO9rvjh5jdkRmVizktkT7TCDkDmQ0W2SwHInKCAV95GRuvdSvA7w4VMwfCjUiPwDi0ZO6Nfe9A==", - "cpu": [ - "arm64" - ], + "node_modules/@niceties/logger": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@niceties/logger/-/logger-2.1.1.tgz", + "integrity": "sha512-taqDVn4TRCh3j5QJQNlWKE9MSHxGh7nr9zE8SkdHMvsijp6Vx6qd3XYSV7bF7nnYYC/JYjJILxfqDeEUeEjtfQ==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@niceties/ansi": "^1.1.2" + }, "engines": { - "node": ">=18" + "node": ">=15" } }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.7.tgz", - "integrity": "sha512-GA48aKNkyQDbd3KtkplYWT102C5sn/EZTY4XROkxONgruHPU72l+gW+FfF8tf2cFjeHaRbWpOYa/uRBz/Xq1Pg==", - "cpu": [ - "ia32" - ], + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, "engines": { - "node": ">=18" + "node": ">= 8" } }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.7.tgz", - "integrity": "sha512-a4POruNM2oWsD4WKvBSEKGIiWQF8fZOAsycHOt6JBpZ+JN2n2JH9WAv56SOyu9X5IqAjqSIPTaJkqN8F7XOQ5Q==", - "cpu": [ - "loong64" - ], + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">=18" + "node": ">= 8" } }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.7.tgz", - "integrity": "sha512-KabT5I6StirGfIz0FMgl1I+R1H73Gp0ofL9A3nG3i/cYFJzKHhouBV5VWK1CSgKvVaG4q1RNpCTR2LuTVB3fIw==", - "cpu": [ - "mips64el" - ], + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@oxc-project/types": { + "version": "0.132.0", + "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.132.0.tgz", + "integrity": "sha512-FESMOxil5Se014ui/Eq8fT5uHJo6nIRwH0PfJrZJXs6Gek3ZVFOrpUv3YIZT20m+extU98Hg1Ym72U58rlsxUQ==", "dev": true, "license": "MIT", + "peer": true, + "funding": { + "url": "https://github.com/sponsors/Boshen" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz", + "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "detect-libc": "^2.0.3", + "is-glob": "^4.0.3", + "node-addon-api": "^7.0.0", + "picomatch": "^4.0.3" + }, "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.6", + "@parcel/watcher-darwin-arm64": "2.5.6", + "@parcel/watcher-darwin-x64": "2.5.6", + "@parcel/watcher-freebsd-x64": "2.5.6", + "@parcel/watcher-linux-arm-glibc": "2.5.6", + "@parcel/watcher-linux-arm-musl": "2.5.6", + "@parcel/watcher-linux-arm64-glibc": "2.5.6", + "@parcel/watcher-linux-arm64-musl": "2.5.6", + "@parcel/watcher-linux-x64-glibc": "2.5.6", + "@parcel/watcher-linux-x64-musl": "2.5.6", + "@parcel/watcher-win32-arm64": "2.5.6", + "@parcel/watcher-win32-ia32": "2.5.6", + "@parcel/watcher-win32-x64": "2.5.6" } }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.7.tgz", - "integrity": "sha512-gRsL4x6wsGHGRqhtI+ifpN/vpOFTQtnbsupUF5R5YTAg+y/lKelYR1hXbnBdzDjGbMYjVJLJTd2OFmMewAgwlQ==", + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz", + "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==", "cpu": [ - "ppc64" + "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "linux" + "android" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.7.tgz", - "integrity": "sha512-hL25LbxO1QOngGzu2U5xeXtxXcW+/GvMN3ejANqXkxZ/opySAZMrc+9LY/WyjAan41unrR3YrmtTsUpwT66InQ==", + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz", + "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==", "cpu": [ - "riscv64" + "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "linux" + "darwin" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.7.tgz", - "integrity": "sha512-2k8go8Ycu1Kb46vEelhu1vqEP+UeRVj2zY1pSuPdgvbd5ykAw82Lrro28vXUrRmzEsUV0NzCf54yARIK8r0fdw==", + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz", + "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==", "cpu": [ - "s390x" + "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "linux" + "darwin" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/linux-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.7.tgz", - "integrity": "sha512-hzznmADPt+OmsYzw1EE33ccA+HPdIqiCRq7cQeL1Jlq2gb1+OyWBkMCrYGBJ+sxVzve2ZJEVeePbLM2iEIZSxA==", + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz", + "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==", "cpu": [ "x64" ], @@ -6186,50 +5166,62 @@ "license": "MIT", "optional": true, "os": [ - "linux" + "freebsd" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/netbsd-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.7.tgz", - "integrity": "sha512-b6pqtrQdigZBwZxAn1UpazEisvwaIDvdbMbmrly7cDTMFnw/+3lVxxCTGOrkPVnsYIosJJXAsILG9XcQS+Yu6w==", + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz", + "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==", "cpu": [ - "arm64" + "arm" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "netbsd" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.7.tgz", - "integrity": "sha512-OfatkLojr6U+WN5EDYuoQhtM+1xco+/6FSzJJnuWiUw5eVcicbyK3dq5EeV/QHT1uy6GoDhGbFpprUiHUYggrw==", + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz", + "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==", "cpu": [ - "x64" + "arm" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "netbsd" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/openbsd-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.7.tgz", - "integrity": "sha512-AFuojMQTxAz75Fo8idVcqoQWEHIXFRbOc1TrVcFSgCZtQfSdc1RXgB3tjOn/krRHENUB4j00bfGjyl2mJrU37A==", + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz", + "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==", "cpu": [ "arm64" ], @@ -6237,50 +5229,62 @@ "license": "MIT", "optional": true, "os": [ - "openbsd" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.7.tgz", - "integrity": "sha512-+A1NJmfM8WNDv5CLVQYJ5PshuRm/4cI6WMZRg1by1GwPIQPCTs1GLEUHwiiQGT5zDdyLiRM/l1G0Pv54gvtKIg==", + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz", + "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==", "cpu": [ - "x64" + "arm64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "openbsd" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/openharmony-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.7.tgz", - "integrity": "sha512-+KrvYb/C8zA9CU/g0sR6w2RBw7IGc5J2BPnc3dYc5VJxHCSF1yNMxTV5LQ7GuKteQXZtspjFbiuW5/dOj7H4Yw==", + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz", + "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==", "cpu": [ - "arm64" + "x64" ], "dev": true, "license": "MIT", "optional": true, "os": [ - "openharmony" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.7.tgz", - "integrity": "sha512-ikktIhFBzQNt/QDyOL580ti9+5mL/YZeUPKU2ivGtGjdTYoqz6jObj6nOMfhASpS4GU4Q/Clh1QtxWAvcYKamA==", + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz", + "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==", "cpu": [ "x64" ], @@ -6288,16 +5292,20 @@ "license": "MIT", "optional": true, "os": [ - "sunos" + "linux" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.7.tgz", - "integrity": "sha512-7yRhbHvPqSpRUV7Q20VuDwbjW5kIMwTHpptuUzV+AA46kiPze5Z7qgt6CLCK3pWFrHeNfDd1VKgyP4O+ng17CA==", + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz", + "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==", "cpu": [ "arm64" ], @@ -6308,13 +5316,17 @@ "win32" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.7.tgz", - "integrity": "sha512-SmwKXe6VHIyZYbBLJrhOoCJRB/Z1tckzmgTLfFYOfpMAx63BJEaL9ExI8x7v0oAO3Zh6D/Oi1gVxEYr5oUCFhw==", + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz", + "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==", "cpu": [ "ia32" ], @@ -6325,13 +5337,17 @@ "win32" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@esbuild/win32-x64": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.7.tgz", - "integrity": "sha512-56hiAJPhwQ1R4i+21FVF7V8kSD5zZTdHcVuRFMW0hn753vVfQN8xlx4uOPT4xoGH0Z/oVATuR82AiqSTDIpaHg==", + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.6", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz", + "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==", "cpu": [ "x64" ], @@ -6342,6207 +5358,2943 @@ "win32" ], "engines": { - "node": ">=18" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", - "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^3.4.3" - }, + "optional": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + "node": ">=14" } }, - "node_modules/@eslint-community/regexpp": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", - "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "node_modules/@pkgr/core": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.9.tgz", + "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==", "dev": true, "license": "MIT", "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/pkgr" } }, - "node_modules/@eslint/config-array": { - "version": "0.21.2", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz", - "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==", + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.5.17", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.17.tgz", + "integrity": "sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "@eslint/object-schema": "^2.1.7", - "debug": "^4.3.1", - "minimatch": "^3.1.5" + "ansi-html": "^0.0.9", + "core-js-pure": "^3.23.3", + "error-stack-parser": "^2.0.6", + "html-entities": "^2.1.0", + "loader-utils": "^2.0.4", + "schema-utils": "^4.2.0", + "source-map": "^0.7.3" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">= 10.13" + }, + "peerDependencies": { + "@types/webpack": "4.x || 5.x", + "react-refresh": ">=0.10.0 <1.0.0", + "sockjs-client": "^1.4.0", + "type-fest": ">=0.17.0 <5.0.0", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x || 4.x || 5.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } } }, - "node_modules/@eslint/config-array/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@eslint/config-array/node_modules/brace-expansion": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", - "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@eslint/config-array/node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": "*" + "node": ">=8.9.0" } }, - "node_modules/@eslint/config-helpers": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", - "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "node_modules/@rolldown/binding-android-arm64": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.2.tgz", + "integrity": "sha512-ZS4D1JPGn/MYQN/SYDWftIE/nVsM8j/AFOYEzAoOE2O3NktQOZru+/vYXGbR/qtdLdIfGCP0lcoJiYVzsEz+iQ==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@eslint/core": "^0.17.0" - }, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "peer": true, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@eslint/core": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz", - "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "node_modules/@rolldown/binding-darwin-arm64": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.2.tgz", + "integrity": "sha512-vdFA9+C/rekyGce7WqHs/xoT0ioZEWaOFyZLIV1mEeNFaFDUQrPIo8Vs2GvJ6eetb3rzDUtUBgzto3ExpXJB3w==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@types/json-schema": "^7.0.15" - }, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@eslint/eslintrc": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.5.tgz", - "integrity": "sha512-4IlJx0X0qftVsN5E+/vGujTRIFtwuLbNsVUe7TO6zYPDR1O6nFwvwhIKEKSrl6dZchmYBITazxKoUYOjdtjlRg==", + "node_modules/@rolldown/binding-darwin-x64": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.2.tgz", + "integrity": "sha512-BewSOwTHazv77DTYiAZXSqqKZ4KP/KonFisDMVU7PImxoWfB2aepnPhd2E4SWz3zDzYgDNbs6jBmTdgNnF02GA==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "ajv": "^6.14.0", - "debug": "^4.3.2", - "espree": "^10.0.1", - "globals": "^14.0.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.1", - "minimatch": "^3.1.5", - "strip-json-comments": "^3.1.1" - }, + "optional": true, + "os": [ + "darwin" + ], + "peer": true, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@eslint/eslintrc/node_modules/balanced-match": { + "node_modules/@rolldown/binding-freebsd-x64": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", - "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.2.tgz", + "integrity": "sha512-m41o7M0YWtUdqk61Tb+jnKb2rN++iRdIASlExkUoKfIAH30DOHCB8fVLzSUpbWHHU8esmEioY62PxzexE8MBuA==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@eslint/eslintrc/node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/@eslint/eslintrc/node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, + "optional": true, + "os": [ + "freebsd" + ], + "peer": true, "engines": { - "node": "*" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@eslint/js": { - "version": "9.39.4", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.4.tgz", - "integrity": "sha512-nE7DEIchvtiFTwBw4Lfbu59PG+kCofhjsKaCWzxTpt4lfRjRMqG6uMBzKXuEcyXhOHoUp9riAm7/aWYGhXZ9cw==", + "node_modules/@rolldown/binding-linux-arm-gnueabihf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.2.tgz", + "integrity": "sha512-jcojB9H7W/jS29pMKWAK1N+fU99vXodHDTatS3b3y/XSOCiHo0kkA74pL3jJmkoQtYpOCxDvaKs1fo2Ij/1X5w==", + "cpu": [ + "arm" + ], "dev": true, "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "peer": true, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://eslint.org/donate" - } - }, - "node_modules/@eslint/object-schema": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz", - "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/plugin-kit": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", - "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@eslint/core": "^0.17.0", - "levn": "^0.4.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@humanfs/core": { - "version": "0.19.2", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz", - "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@humanfs/types": "^0.15.0" - }, - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanfs/node": { - "version": "0.16.8", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz", - "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@humanfs/core": "^0.19.2", - "@humanfs/types": "^0.15.0", - "@humanwhocodes/retry": "^0.4.0" - }, - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanfs/types": { - "version": "0.15.0", - "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz", - "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/retry": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", - "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/colour": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", - "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "node_modules/@rolldown/binding-linux-arm64-gnu": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.2.tgz", + "integrity": "sha512-1jn6qDU5iiOgFgygDzKUuKP0maTi0/f1+sBLgvij/76C77Nm3ts6ufz9Bjg5q5dduxiUIxtq86JIoBvo1xQ4Ig==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", "optional": true, + "os": [ + "linux" + ], + "peer": true, "engines": { - "node": ">=18" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-darwin-arm64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", - "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "node_modules/@rolldown/binding-linux-arm64-musl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.2.tgz", + "integrity": "sha512-QVLO/czFMdoMFSqlX3bcswcJNm/23r+qoa/jgtmFc/qEp6/jXmIkDjF/XIo8dPfGaiwy1xfQn8o77L79GeXFgw==", "cpu": [ "arm64" ], "dev": true, - "license": "Apache-2.0", + "license": "MIT", "optional": true, "os": [ - "darwin" + "linux" ], + "peer": true, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-arm64": "1.2.4" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-darwin-x64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", - "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "node_modules/@rolldown/binding-linux-ppc64-gnu": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.2.tgz", + "integrity": "sha512-hgO5Abm0w5UL6FEa2iFnZqo2KlK7TQ5QhV5x09hujBf7t5KzHQ1VmfPuTpqRy/rNlSxua3eWH374xxiVrP+lcA==", "cpu": [ - "x64" + "ppc64" ], "dev": true, - "license": "Apache-2.0", + "license": "MIT", "optional": true, "os": [ - "darwin" + "linux" ], + "peer": true, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - }, - "optionalDependencies": { - "@img/sharp-libvips-darwin-x64": "1.2.4" + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-libvips-darwin-arm64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", - "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "node_modules/@rolldown/binding-linux-s390x-gnu": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.2.tgz", + "integrity": "sha512-fy8rXxuYEu602abC8MUNaPjYLIFzReOaEIEMKMUa0rFEUxNpVXhs15KSSQ4qlqSaM7B6rcj9rDZgADh/IGDzLQ==", "cpu": [ - "arm64" + "s390x" ], "dev": true, - "license": "LGPL-3.0-or-later", + "license": "MIT", "optional": true, "os": [ - "darwin" + "linux" ], - "funding": { - "url": "https://opencollective.com/libvips" + "peer": true, + "engines": { + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-libvips-darwin-x64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", - "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "node_modules/@rolldown/binding-linux-x64-gnu": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.2.tgz", + "integrity": "sha512-0+bOkiQ779+r1WpoHOWHqncvyySci0vKph+myNDYb+im6meJAzHQXay6oEgnkHuUGouM1LKTZwqKpBow6Kj7CQ==", "cpu": [ "x64" ], "dev": true, - "license": "LGPL-3.0-or-later", + "license": "MIT", "optional": true, "os": [ - "darwin" + "linux" ], - "funding": { - "url": "https://opencollective.com/libvips" + "peer": true, + "engines": { + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-libvips-linux-arm": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", - "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "node_modules/@rolldown/binding-linux-x64-musl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.2.tgz", + "integrity": "sha512-mjSkrzZK5Qsl0a9d1JgILOiuZOSDTVdKENcSXBoqbzSrspLR/4/IRVDo5wd2GgZjNss/viBFJdeq+j7qH2nypw==", "cpu": [ - "arm" + "x64" ], "dev": true, - "license": "LGPL-3.0-or-later", + "license": "MIT", "optional": true, "os": [ "linux" ], - "funding": { - "url": "https://opencollective.com/libvips" + "peer": true, + "engines": { + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-libvips-linux-arm64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", - "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "node_modules/@rolldown/binding-openharmony-arm64": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.2.tgz", + "integrity": "sha512-1v5vHasdfQAZoEHakBV72LIFAC9JjnymsiKxp+GEr/ma3+NJCPSaYK+qavInOovJkgwFrs7GccX2d6IgDA3Z5w==", "cpu": [ "arm64" ], "dev": true, - "license": "LGPL-3.0-or-later", + "license": "MIT", "optional": true, "os": [ - "linux" + "openharmony" ], - "funding": { - "url": "https://opencollective.com/libvips" + "peer": true, + "engines": { + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-libvips-linux-ppc64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", - "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linux-riscv64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", - "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "node_modules/@rolldown/binding-wasm32-wasi": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.2.tgz", + "integrity": "sha512-mb1VobWn6NheziTk5/WEaR6AKVbrwT5sOi6C7zk3gy/pD1qtJfU1j4PgTo2NJnOtbL9Dl3Aeei8w9jJ7qC2jZQ==", "cpu": [ - "riscv64" + "wasm32" ], "dev": true, - "license": "LGPL-3.0-or-later", + "license": "MIT", "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" + "peer": true, + "dependencies": { + "@emnapi/core": "1.10.0", + "@emnapi/runtime": "1.10.0", + "@napi-rs/wasm-runtime": "^1.1.4" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-libvips-linux-s390x": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", - "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "node_modules/@rolldown/binding-win32-arm64-msvc": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.2.tgz", + "integrity": "sha512-SqKonF56vA/L2yHwHYcEp2P34URpOZ7d1fS635cTkpDnUtEGdUbhI6NzsPdqeSWvAAeGDrxjWjNmibDIdFf9/A==", "cpu": [ - "s390x" + "arm64" ], "dev": true, - "license": "LGPL-3.0-or-later", + "license": "MIT", "optional": true, "os": [ - "linux" + "win32" ], - "funding": { - "url": "https://opencollective.com/libvips" + "peer": true, + "engines": { + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-libvips-linux-x64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", - "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "node_modules/@rolldown/binding-win32-x64-msvc": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.2.tgz", + "integrity": "sha512-v7qRI7gXLRINcOGXt+7YmAZ6iFuyZVMIoXAxhd8oP+DR9dLfL9GfNIx7PLMxmhZdvq8waUJBQiWN9EKNy+TRBQ==", "cpu": [ "x64" ], "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } - }, - "node_modules/@img/sharp-libvips-linuxmusl-arm64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", - "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "LGPL-3.0-or-later", + "license": "MIT", "optional": true, "os": [ - "linux" + "win32" ], - "funding": { - "url": "https://opencollective.com/libvips" + "peer": true, + "engines": { + "node": "^20.19.0 || >=22.12.0" } }, - "node_modules/@img/sharp-libvips-linuxmusl-x64": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", - "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", - "cpu": [ - "x64" - ], + "node_modules/@rolldown/pluginutils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz", + "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==", "dev": true, - "license": "LGPL-3.0-or-later", - "optional": true, - "os": [ - "linux" - ], - "funding": { - "url": "https://opencollective.com/libvips" - } + "license": "MIT", + "peer": true }, - "node_modules/@img/sharp-linux-arm": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", - "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", - "cpu": [ - "arm" - ], + "node_modules/@rollup-extras/plugin-copy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@rollup-extras/plugin-copy/-/plugin-copy-2.1.0.tgz", + "integrity": "sha512-PR53b1TBheVEKH3PTu1aOYritCLdYYi/PwWVe6PlQYVgdRXZ7pRDvSG/s4xmyR5sh7LwYa6N0OcIkOh3IAc5VA==", "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "@niceties/logger": "^2.1.0", + "@rollup-extras/utils": "^2.0.0", + "glob-parent": "^6.0.2" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=22.14" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "rollup": "^4.0.0" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm": "1.2.4" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/@img/sharp-linux-arm64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", - "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", - "cpu": [ - "arm64" - ], + "node_modules/@rollup-extras/utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@rollup-extras/utils/-/utils-2.0.0.tgz", + "integrity": "sha512-20/JAVzvQPvuTNIYnvSDq+BIH28iks1VnjT5RPJuI4SXcfSZtruV57Asw3++mjmJbhOihx8UdfFC3QVzuux3rw==", "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "@niceties/logger": "^2.1.0" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=15" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "rollup": "^4.0.0" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-arm64": "1.2.4" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/@img/sharp-linux-ppc64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", - "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", - "cpu": [ - "ppc64" - ], + "node_modules/@rollup/plugin-alias": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-6.0.0.tgz", + "integrity": "sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g==", "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.19.0" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "rollup": ">=4.0.0" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-ppc64": "1.2.4" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/@img/sharp-linux-riscv64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", - "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", - "cpu": [ - "riscv64" - ], + "node_modules/@rollup/plugin-commonjs": { + "version": "29.0.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-29.0.2.tgz", + "integrity": "sha512-S/ggWH1LU7jTyi9DxZOKyxpVd4hF/OZ0JrEbeLjXk/DFXwRny0tjD2c992zOUYQobLrVkRVMDdmHP16HKP7GRg==", "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "commondir": "^1.0.1", + "estree-walker": "^2.0.2", + "fdir": "^6.2.0", + "is-reference": "1.2.1", + "magic-string": "^0.30.3", + "picomatch": "^4.0.2" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=16.0.0 || 14 >= 14.17" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "rollup": "^2.68.0||^3.0.0||^4.0.0" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-riscv64": "1.2.4" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/@img/sharp-linux-s390x": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", - "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", - "cpu": [ - "s390x" - ], + "node_modules/@rollup/plugin-commonjs/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], + "license": "MIT" + }, + "node_modules/@rollup/plugin-json": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", + "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^5.1.0" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=14.0.0" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-s390x": "1.2.4" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/@img/sharp-linux-x64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", - "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", - "cpu": [ - "x64" - ], + "node_modules/@rollup/plugin-node-resolve": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-16.0.3.tgz", + "integrity": "sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==", "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "@types/resolve": "1.20.2", + "deepmerge": "^4.2.2", + "is-module": "^1.0.0", + "resolve": "^1.22.1" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=14.0.0" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "rollup": "^2.78.0||^3.0.0||^4.0.0" }, - "optionalDependencies": { - "@img/sharp-libvips-linux-x64": "1.2.4" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/@img/sharp-linuxmusl-arm64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", - "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", - "cpu": [ - "arm64" - ], + "node_modules/@rollup/plugin-terser": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-1.0.0.tgz", + "integrity": "sha512-FnCxhTBx6bMOYQrar6C8h3scPt8/JwIzw3+AJ2K++6guogH5fYaIFia+zZuhqv0eo1RN7W1Pz630SyvLbDjhtQ==", "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "serialize-javascript": "^7.0.3", + "smob": "^1.0.0", + "terser": "^5.17.4" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=20.0.0" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "rollup": "^2.0.0||^3.0.0||^4.0.0" }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/@img/sharp-linuxmusl-x64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", - "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", - "cpu": [ - "x64" - ], + "node_modules/@rollup/plugin-typescript": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-12.3.0.tgz", + "integrity": "sha512-7DP0/p7y3t67+NabT9f8oTBFE6gGkto4SA6Np2oudYmZE/m1dt8RB0SjL1msMxFpLo631qjRCcBlAbq1ml/Big==", "dev": true, - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^5.1.0", + "resolve": "^1.22.1" + }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=14.0.0" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "rollup": "^2.14.0||^3.0.0||^4.0.0", + "tslib": "*", + "typescript": ">=3.7.0" }, - "optionalDependencies": { - "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + "peerDependenciesMeta": { + "rollup": { + "optional": true + }, + "tslib": { + "optional": true + } } }, - "node_modules/@img/sharp-wasm32": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", - "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", - "cpu": [ - "wasm32" - ], + "node_modules/@rollup/pluginutils": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", "dev": true, - "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", - "optional": true, + "license": "MIT", "dependencies": { - "@emnapi/runtime": "^1.7.0" + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" }, "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + "node": ">=14.0.0" }, - "funding": { - "url": "https://opencollective.com/libvips" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/@img/sharp-win32-arm64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", - "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.4.tgz", + "integrity": "sha512-F5QXMSiFebS9hKZj02XhWLLnRpJ3B3AROP0tWbFBSj+6kCbg5m9j5JoHKd4mmSVy5mS/IMQloYgYxCuJC0fxEQ==", "cpu": [ - "arm64" + "arm" ], "dev": true, - "license": "Apache-2.0 AND LGPL-3.0-or-later", + "license": "MIT", "optional": true, "os": [ - "win32" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } + "android" + ] }, - "node_modules/@img/sharp-win32-ia32": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", - "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.4.tgz", + "integrity": "sha512-GxxTKApUpzRhof7poWvCJHRF51C67u1R7D6DiluBE8wKU1u5GWE8t+v81JvJYtbawoBFX1hLv5Ei4eVjkWokaw==", "cpu": [ - "ia32" + "arm64" ], "dev": true, - "license": "Apache-2.0 AND LGPL-3.0-or-later", + "license": "MIT", "optional": true, "os": [ - "win32" + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.4.tgz", + "integrity": "sha512-tua0TaJxMOB1R0V0RS1jFZ/RpURFDJIOR2A6jWwQeawuFyS4gBW+rntLRaQd0EQ4bd6Vp44Z2rXW+YYDBsj6IA==", + "cpu": [ + "arm64" ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] }, - "node_modules/@img/sharp-win32-x64": { - "version": "0.34.5", - "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", - "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.4.tgz", + "integrity": "sha512-CSKq7MsP+5PFIcydhAiR1K0UhEI1A2jWXVKHPCBZ151yOutENwvnPocgVHkivu2kviURtCEB6zUQw0vs8RrhMg==", "cpu": [ "x64" ], "dev": true, - "license": "Apache-2.0 AND LGPL-3.0-or-later", + "license": "MIT", "optional": true, "os": [ - "win32" - ], - "engines": { - "node": "^18.17.0 || ^20.3.0 || >=21.0.0" - }, - "funding": { - "url": "https://opencollective.com/libvips" - } + "darwin" + ] }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.4.tgz", + "integrity": "sha512-+O8OkVdyvXMtJEciu2wS/pzm1IxntEEQx3z5TAVy4l32G0etZn+RsA48ARRrFm6Ri8fvqPQfgrvNxSjKAbnd3g==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.4.tgz", + "integrity": "sha512-Iw3oMskH3AfNuhU0MSN7vNbdi4me/NiYo2azqPz/Le16zHSa+3RRmliCMWWQmh4lcndccU40xcJuTYJZxNo/lw==", + "cpu": [ + "x64" + ], "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.4.tgz", + "integrity": "sha512-EIPRXTVQpHyF8WOo219AD2yEltPehLTcTMz2fn6JsatLYSzQf00hj3rulF+yauOlF9/FtM2WpkT/hJh/KJFGhA==", + "cpu": [ + "arm" + ], "dev": true, "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.4.tgz", + "integrity": "sha512-J3Yh9PzzF1Ovah2At+lHiGQdsYgArxBbXv/zHfSyaiFQEqvNv7DcW98pCrmdjCZBrqBiKrKKe2V+aaSGWuBe/w==", + "cpu": [ + "arm" + ], "dev": true, "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", - "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.4.tgz", + "integrity": "sha512-BFDEZMYfUvLn37ONE1yMBojPxnMlTFsdyNoqncT0qFq1mAfllL+ATMMJd8TeuVMiX84s1KbcxcZbXInmcO2mRg==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.4.tgz", + "integrity": "sha512-pc9EYOSlOgdQ2uPl1o9PF6/kLSgaUosia7gOuS8mB69IxJvlclko1MECXysjs5ryez1/5zjYqx3+xYU0TU6R1A==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.4.tgz", + "integrity": "sha512-NxnomyxYerDh5n4iLrNa+sH+Z+U4BMEE46V2PgQ/hoB909i8gV1M5wPojWg9fk1jWpO3IQnOs20K4wyZuFLEFQ==", + "cpu": [ + "loong64" + ], "dev": true, "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.4.tgz", + "integrity": "sha512-nbJnQ8a3z1mtmrwImCYhc6BGpThAyYVRQxw9uKSKG4wR6aAYno9sVjJ0zaZcW9BPJX1GbrDPf+SvdWjgTuDmnw==", + "cpu": [ + "loong64" + ], "dev": true, "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.4.tgz", + "integrity": "sha512-2EU6acNrQLd8tYvo/LXW535wupT3m6fo7HKo6lr7ktQoItxTyOL1ZCR/GfGCuXl2vR+zmfI6eRXkSemafv+iVg==", + "cpu": [ + "ppc64" + ], "dev": true, "license": "MIT", - "engines": { - "node": ">=8" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.6.tgz", - "integrity": "sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==", + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.4.tgz", + "integrity": "sha512-WeBtoMuaMxiiIrO2IYP3xs6GMWkJP2C0EoT8beTLkUPmzV1i/UcOSVw1d5r9KBODtHKilG5yFxsGRnBbK3wJ4A==", + "cpu": [ + "ppc64" + ], "dev": true, "license": "MIT", - "engines": { - "node": ">=8" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@jest/console": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-30.4.1.tgz", - "integrity": "sha512-v3bhyxUh9Hgmo5p6hAOXe14/R3ZxZDOsvHleh4B07z3m/x4/ngPUXEm9XwK4sF4u+f+P2ORb0Ge+MgpaqRMVDA==", + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.4.tgz", + "integrity": "sha512-FJHFfqpKUI3A10WrWKiFbBZ7yVbGT4q4B5o1qKFFojqpaYoh9LrQgqWCmmcxQzVSXYtyB5bzkXrYzlHTs21MYA==", + "cpu": [ + "riscv64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@jest/types": "30.4.1", - "@types/node": "*", - "chalk": "^4.1.2", - "jest-message-util": "30.4.1", - "jest-util": "30.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@jest/core": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-30.4.2.tgz", - "integrity": "sha512-TZJA6cPJUFxoWhxaLo8t0VX/MZX2wPWr0uIDvLSHIvN4gu9h02vSzqI2kBADG1ExqQlC+cY09xKMSreivvrChQ==", + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.4.tgz", + "integrity": "sha512-mcEl6CUT5IAUmQf1m9FYSmVqCJlpQ8r8eyftFUHG8i9OhY7BkBXSUdnLH5DOf0wCOjcP9v/QO93zpmF1SptCCw==", + "cpu": [ + "riscv64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@jest/console": "30.4.1", - "@jest/pattern": "30.4.0", - "@jest/reporters": "30.4.1", - "@jest/test-result": "30.4.1", - "@jest/transform": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "ansi-escapes": "^4.3.2", - "chalk": "^4.1.2", - "ci-info": "^4.2.0", - "exit-x": "^0.2.2", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.11", - "jest-changed-files": "30.4.1", - "jest-config": "30.4.2", - "jest-haste-map": "30.4.1", - "jest-message-util": "30.4.1", - "jest-regex-util": "30.4.0", - "jest-resolve": "30.4.1", - "jest-resolve-dependencies": "30.4.2", - "jest-runner": "30.4.2", - "jest-runtime": "30.4.2", - "jest-snapshot": "30.4.1", - "jest-util": "30.4.1", - "jest-validate": "30.4.1", - "jest-watcher": "30.4.1", - "pretty-format": "30.4.1", - "slash": "^3.0.0" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@jest/core/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.4.tgz", + "integrity": "sha512-ynt3JxVd2w2buzoKDWIyiV1pJW93xlQic1THVLXilz429oijRpSHivZAgp65KBu+cMcgf1eVVjdnTLvPxgCuoQ==", + "cpu": [ + "s390x" + ], "dev": true, "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@jest/core/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.4.tgz", + "integrity": "sha512-Boiz5+MsaROEWDf+GGEwF8VMHGhlUoQMtIPjOgA5fv4osupqTVnJteQNKJwUcnUog2G55jYXH7KZFFiJe0TEzQ==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@jest/diff-sequences": { - "version": "30.4.0", - "resolved": "https://registry.npmjs.org/@jest/diff-sequences/-/diff-sequences-30.4.0.tgz", - "integrity": "sha512-zOpzlfUs45l6u7jm39qr87JCHUDsaeCtvL+kQe/Vn9jSnRB4/5IPXISm0h9I1vZW/o00Kn4UTJ2MOlhnUGwv3g==", + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.4.tgz", + "integrity": "sha512-+qfSY27qIrFfI/Hom04KYFw3GKZSGU4lXus51wsb5EuySfFlWRwjkKWoE9emgRw/ukoT4Udsj4W/+xxG8VbPKg==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/@jest/environment": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-30.4.1.tgz", - "integrity": "sha512-AK9yNRqgKxiabqMoe4oW+3/TSSeV8vkdC7BGaxZdU0AFXfOpofTLqdru2GXKZghP3sdgwE9XXpnVwfZ8JnFV4w==", + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.4.tgz", + "integrity": "sha512-VpTfOPHgVXEBeeR8hZ2O0F3aSso+JDWqTWmTmzcQKted54IAdUVbxE+j/MVxUsKa8L20HJhv3vUezVPoquqWjA==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@jest/fake-timers": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "jest-mock": "30.4.1" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } + "optional": true, + "os": [ + "openbsd" + ] }, - "node_modules/@jest/environment-jsdom-abstract": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/environment-jsdom-abstract/-/environment-jsdom-abstract-30.4.1.tgz", - "integrity": "sha512-dSlKrqug3siYNHVnjwIldShY12wAH3spwRltO/+8VOjg0X+xEq7vOs3DbBs4LRKsu7OH+NUb9kuZUNBF9Ho3TA==", + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.4.tgz", + "integrity": "sha512-IPOsh5aRYuLv/nkU51X10Bf75Bsf6+gZdx1X+QP5QM6lIJFHHqbHLG0uJn/hWthzo13UAc2umiUorqZy3axoZg==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@jest/environment": "30.4.1", - "@jest/fake-timers": "30.4.1", - "@jest/types": "30.4.1", - "@types/jsdom": "^21.1.7", - "@types/node": "*", - "jest-mock": "30.4.1", - "jest-util": "30.4.1" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - }, - "peerDependencies": { - "canvas": "^3.0.0", - "jsdom": "*" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } + "optional": true, + "os": [ + "openharmony" + ] }, - "node_modules/@jest/expect": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-30.4.1.tgz", - "integrity": "sha512-ginrj6TMgh2GshLUGCjO94Ptx9HhdZA/I6A9iUfyeLKFtdAjnKzHDgzgP9HYQgbxM1lbXScQ2eUBz2lGeVDPWA==", + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.4.tgz", + "integrity": "sha512-4QzE9E81OohJ/HKzHhsqU+zcYYojVOXlFMs1DdyMT6qXl/niOH7AVElmmEdUNHHS/oRkc++d5k6Vy85zFs0DEw==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "expect": "30.4.1", - "jest-snapshot": "30.4.1" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/@jest/expect-utils": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-30.4.1.tgz", - "integrity": "sha512-ZBn5CglH8fBsQsvs4VWNzD4aWfUYks+IdOOQU3MEK71ol/BcVm+P+rtb1KpiFBpSWSCE27uOahyyf1vfqOVbcQ==", + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.4.tgz", + "integrity": "sha512-zTPgT1YuHHcd+Tmx7h8aml0FWFVelV5N54oHow9SLj+GfoDy/huQ+UV396N/C7KpMDMiPspRktzM1/0r1usYEA==", + "cpu": [ + "ia32" + ], "dev": true, "license": "MIT", - "dependencies": { - "@jest/get-type": "30.1.0" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/@jest/fake-timers": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-30.4.1.tgz", - "integrity": "sha512-iW5umdmfPeWzehrVhugFQZqCchSCud5S1l2YT0O9ZhjRR0ExclANDZkiSBwzqtnlOn0J1JXvO+HZ6rkuyOVOgQ==", + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.4.tgz", + "integrity": "sha512-DRS4G7mi9lJxqEDezIkKCaUIKCrLUUDCUaCsTPCi/rtqaC6D/jjwslMQyiDU50Ka0JKpeXeRBFBAXwArY52vBw==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "@jest/types": "30.4.1", - "@sinonjs/fake-timers": "^15.4.0", - "@types/node": "*", - "jest-message-util": "30.4.1", - "jest-mock": "30.4.1", - "jest-util": "30.4.1" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/@jest/get-type": { - "version": "30.1.0", - "resolved": "https://registry.npmjs.org/@jest/get-type/-/get-type-30.1.0.tgz", - "integrity": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==", + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.4.tgz", + "integrity": "sha512-QVTUovf40zgTqlFVrKA1uXMVvU2QWEFWfAH8Wdc48IxLvrJMQVMBRjuQyUpzZCDkakImib9eVazbWlC6ksWtJw==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/@jest/globals": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-30.4.1.tgz", - "integrity": "sha512-ZbuY4cmXC8DkxYjfvT2DbcHWL2T6vmsMhXCDcmTB2T0y0gaezBI77ufq5ZAIdcRkYZ7NEQEDg1xFeKbxUJ5v5Q==", + "node_modules/@sinclair/typebox": { + "version": "0.34.49", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.49.tgz", + "integrity": "sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A==", "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "30.4.1", - "@jest/expect": "30.4.1", - "@jest/types": "30.4.1", - "jest-mock": "30.4.1" - }, + "license": "MIT" + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "license": "MIT", "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@jest/pattern": { - "version": "30.4.0", - "resolved": "https://registry.npmjs.org/@jest/pattern/-/pattern-30.4.0.tgz", - "integrity": "sha512-RAWn3+f9u8BsHijKJ71uHcFp6vmyEt6VvoWXkl6hKF3qVIuWNmudVjg12DlBPGup/frIl5UcUlH5HfEuvHpEXg==", + "node_modules/@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "15.4.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-15.4.0.tgz", + "integrity": "sha512-DsG+8/LscQIQg68J6Ef3dv10u6nVyetYn923s3/sus5eaGfTo1of5WMZSLf0UJc9KDuKPilPH0UDJCjvNbDNCA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^3.0.1" + } + }, + "node_modules/@storybook/addon-docs": { + "version": "10.2.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-10.2.17.tgz", + "integrity": "sha512-c414xi7rxlaHn92qWOxtEkcOMm0/+cvBui0gUsgiWOZOM8dHChGZ/RjMuf1pPDyOrSsybLsPjZhP0WthsMDkdQ==", "dev": true, "license": "MIT", "dependencies": { - "@types/node": "*", - "jest-regex-util": "30.4.0" + "@mdx-js/react": "^3.0.0", + "@storybook/csf-plugin": "10.2.17", + "@storybook/icons": "^2.0.1", + "@storybook/react-dom-shim": "10.2.17", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "ts-dedent": "^2.0.0" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "storybook": "^10.2.17" } }, - "node_modules/@jest/reporters": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-30.4.1.tgz", - "integrity": "sha512-/SnkPCzEQpUaBH81kjdEdDdo2WZl5hxw+BmLDGWjRkm8o7XlhjwsU36cqwe5PGBE5WYpBvDzRSdXx9rbGuJtNA==", + "node_modules/@storybook/addon-links": { + "version": "10.2.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-10.2.17.tgz", + "integrity": "sha512-KY2usxhPpt9AAzD22uBEfdPj1NZyCNyaYXgKkr8r/UeCNt7E7OdVBLNA1QMYZZ5dtIWj9EtY8c55OPuBM7aUkQ==", "dev": true, "license": "MIT", "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "30.4.1", - "@jest/test-result": "30.4.1", - "@jest/transform": "30.4.1", - "@jest/types": "30.4.1", - "@jridgewell/trace-mapping": "^0.3.25", - "@types/node": "*", - "chalk": "^4.1.2", - "collect-v8-coverage": "^1.0.2", - "exit-x": "^0.2.2", - "glob": "^10.5.0", - "graceful-fs": "^4.2.11", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^6.0.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^5.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "30.4.1", - "jest-util": "30.4.1", - "jest-worker": "30.4.1", - "slash": "^3.0.0", - "string-length": "^4.0.2", - "v8-to-istanbul": "^9.0.1" + "@storybook/global": "^5.0.0" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "storybook": "^10.2.17" }, "peerDependenciesMeta": { - "node-notifier": { + "react": { "optional": true } } }, - "node_modules/@jest/schemas": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.4.1.tgz", - "integrity": "sha512-i6b4qw5qnP8c5FEeBJg/uZQ4ddrkN6Ca8qISJh0pr7a5hfn3h3v5x60BEbOC7OYAGZNMs1LfFLwnW2CuK8F57Q==", + "node_modules/@storybook/builder-webpack5": { + "version": "10.2.17", + "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-10.2.17.tgz", + "integrity": "sha512-Bvehx6GM1o0F6Fif45Lo8wlRGdgO4Kc/SDWarVy2Pzhs0JOEk4mHBtmRq6jBLp3J/ws4LLy2NZfNsrmy4by2LQ==", "dev": true, "license": "MIT", "dependencies": { - "@sinclair/typebox": "^0.34.0" + "@storybook/core-webpack": "10.2.17", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "cjs-module-lexer": "^1.2.3", + "css-loader": "^7.1.2", + "es-module-lexer": "^1.5.0", + "fork-ts-checker-webpack-plugin": "^9.1.0", + "html-webpack-plugin": "^5.5.0", + "magic-string": "^0.30.5", + "style-loader": "^4.0.0", + "terser-webpack-plugin": "^5.3.14", + "ts-dedent": "^2.0.0", + "webpack": "5", + "webpack-dev-middleware": "^6.1.2", + "webpack-hot-middleware": "^2.25.1", + "webpack-virtual-modules": "^0.6.0" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/@jest/snapshot-utils": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/snapshot-utils/-/snapshot-utils-30.4.1.tgz", - "integrity": "sha512-ObY4ljvQ95mt6iwKtVLetR/4yXiAgl3H4nJxhztr0MTjrN97TwDYrnCp/kF60Ec9HdhkWTHSu+Hg05aXfngpOA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "30.4.1", - "chalk": "^4.1.2", - "graceful-fs": "^4.2.11", - "natural-compare": "^1.4.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "peerDependencies": { + "storybook": "^10.2.17" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@jest/source-map": { - "version": "30.0.1", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-30.0.1.tgz", - "integrity": "sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==", + "node_modules/@storybook/builder-webpack5/node_modules/css-loader": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.4.tgz", + "integrity": "sha512-vv3J9tlOl04WjiMvHQI/9tmIrCxVrj6PFbHemBB1iihpeRbi/I4h033eoFIhwxBBqLhI0KYFS7yvynBFhIZfTw==", "dev": true, "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.25", - "callsites": "^3.1.0", - "graceful-fs": "^4.2.11" + "icss-utils": "^5.1.0", + "postcss": "^8.4.40", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.6.3" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || ^1.0.0 || ^2.0.0-0", + "webpack": "^5.27.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/@jest/test-result": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-30.4.1.tgz", - "integrity": "sha512-/ZG7pgEiOmmWkN9TplKbOu4id2N5lh7FHwRwlkgBVAzGdRH+OkkQ8wX/kIxg4zmd3ZQvAL1RwL2yWsvNYYECTw==", + "node_modules/@storybook/builder-webpack5/node_modules/style-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-4.0.0.tgz", + "integrity": "sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==", "dev": true, "license": "MIT", - "dependencies": { - "@jest/console": "30.4.1", - "@jest/types": "30.4.1", - "@types/istanbul-lib-coverage": "^2.0.6", - "collect-v8-coverage": "^1.0.2" - }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.27.0" } }, - "node_modules/@jest/test-sequencer": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-30.4.1.tgz", - "integrity": "sha512-PeYE+4td5rKjoRPxztObrXU+H8hsjZfxKMXOcmrr34JerSyB/ROOxbbicz8B7A5j9R9VayDnVPvBmedqCsFCdw==", + "node_modules/@storybook/core-webpack": { + "version": "10.2.17", + "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-10.2.17.tgz", + "integrity": "sha512-yr9MCgRXmwidMrOupo7BAzMtHYIWiT5W637Lj5VzldxjOYNRpv2/93N/JU7BVcjD8XaMuUdLs3a0MPxPAfAk1Q==", "dev": true, "license": "MIT", "dependencies": { - "@jest/test-result": "30.4.1", - "graceful-fs": "^4.2.11", - "jest-haste-map": "30.4.1", - "slash": "^3.0.0" + "ts-dedent": "^2.0.0" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "storybook": "^10.2.17" } }, - "node_modules/@jest/transform": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-30.4.1.tgz", - "integrity": "sha512-Wz0LyktlTvRefoymh+n64hQ84KNXsRGcwdoZ8CSa0Ea+fgYcHZlnk+hDP7v2MS7il2bQ5uTEIxf4/NNfhMN4KQ==", + "node_modules/@storybook/csf-plugin": { + "version": "10.2.17", + "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-10.2.17.tgz", + "integrity": "sha512-crHH8i/4mwzeXpWRPgwvwX2vjytW42zyzTRySUax5dTU8o9sjk4y+Z9hkGx3Nmu1TvqseS8v1Z20saZr/tQcWw==", "dev": true, "license": "MIT", "dependencies": { - "@babel/core": "^7.27.4", - "@jest/types": "30.4.1", - "@jridgewell/trace-mapping": "^0.3.25", - "babel-plugin-istanbul": "^7.0.1", - "chalk": "^4.1.2", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.11", - "jest-haste-map": "30.4.1", - "jest-regex-util": "30.4.0", - "jest-util": "30.4.1", - "pirates": "^4.0.7", - "slash": "^3.0.0", - "write-file-atomic": "^5.0.1" + "unplugin": "^2.3.5" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/@jest/types": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-30.4.1.tgz", - "integrity": "sha512-f1x/vJXIfjOlEmejYpbkbgw1gOqpPECwMvMEtBqe47j7H2Hg8h8w3o3ikhSXq3MI15kg+oQ0exWO0uCtTNJLoQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/pattern": "30.4.0", - "@jest/schemas": "30.4.1", - "@types/istanbul-lib-coverage": "^2.0.6", - "@types/istanbul-reports": "^3.0.4", - "@types/node": "*", - "@types/yargs": "^17.0.33", - "chalk": "^4.1.2" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.13", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", - "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.0", - "@jridgewell/trace-mapping": "^0.3.24" - } - }, - "node_modules/@jridgewell/remapping": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", - "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" + "peerDependencies": { + "esbuild": "*", + "rollup": "*", + "storybook": "^10.2.17", + "vite": "*", + "webpack": "*" + }, + "peerDependenciesMeta": { + "esbuild": { + "optional": true + }, + "rollup": { + "optional": true + }, + "vite": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "node_modules/@storybook/global": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", + "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } + "license": "MIT" }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.11", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", - "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", + "node_modules/@storybook/icons": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@storybook/icons/-/icons-2.0.2.tgz", + "integrity": "sha512-KZBCpXsshAIjczYNXR/rlxEtCUX/eAbpFNwKi8bcOomrLA4t/SyPz5RF+lVPO2oZBUE4sAkt43mfJUevQDSEEw==", "dev": true, "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.5", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", - "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.31", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", - "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "node_modules/@storybook/nextjs": { + "version": "10.2.17", + "resolved": "https://registry.npmjs.org/@storybook/nextjs/-/nextjs-10.2.17.tgz", + "integrity": "sha512-iC0QZFHHnR+aj+pzciEVWoJzGVgdp7Z12tsfeCXCWeZx37sQlTizfvkVjl+nG14qr/g6qW5QwgTL4nZbgc5qTw==", "dev": true, "license": "MIT", "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@jsonjoy.com/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.0" + "@babel/core": "^7.28.5", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.27.1", + "@babel/plugin-transform-class-properties": "^7.27.1", + "@babel/plugin-transform-export-namespace-from": "^7.27.1", + "@babel/plugin-transform-numeric-separator": "^7.27.1", + "@babel/plugin-transform-object-rest-spread": "^7.28.4", + "@babel/plugin-transform-runtime": "^7.28.5", + "@babel/preset-env": "^7.28.5", + "@babel/preset-react": "^7.28.5", + "@babel/preset-typescript": "^7.28.5", + "@babel/runtime": "^7.28.4", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", + "@storybook/builder-webpack5": "10.2.17", + "@storybook/preset-react-webpack": "10.2.17", + "@storybook/react": "10.2.17", + "@types/semver": "^7.7.1", + "babel-loader": "^9.1.3", + "css-loader": "^6.7.3", + "image-size": "^2.0.2", + "loader-utils": "^3.2.1", + "node-polyfill-webpack-plugin": "^2.0.1", + "postcss": "^8.4.38", + "postcss-loader": "^8.1.1", + "react-refresh": "^0.14.0", + "resolve-url-loader": "^5.0.0", + "sass-loader": "^16.0.5", + "semver": "^7.7.3", + "style-loader": "^3.3.1", + "styled-jsx": "^5.1.6", + "tsconfig-paths": "^4.0.0", + "tsconfig-paths-webpack-plugin": "^4.0.1" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" + "type": "opencollective", + "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "tslib": "2" + "next": "^14.1.0 || ^15.0.0 || ^16.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "storybook": "^10.2.17", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/@jsonjoy.com/buffers": { - "version": "17.67.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-17.67.0.tgz", - "integrity": "sha512-tfExRpYxBvi32vPs9ZHaTjSP4fHAfzSmcahOfNxtvGHcyJel+aibkPlGeBB+7AoC6hL7lXIE++8okecBxx7lcw==", + "node_modules/@storybook/preset-react-webpack": { + "version": "10.2.17", + "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-10.2.17.tgz", + "integrity": "sha512-k1nuS6BfGYd9qDTPaDmBz0K0QQs0pG8MQN7hZTPOb/BOh+F1liUlp21AEbwzOvv3rRHBMcD7b90ovhroZwYnEw==", "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.0" + "license": "MIT", + "dependencies": { + "@storybook/core-webpack": "10.2.17", + "@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.0c3f3b7.0", + "@types/semver": "^7.7.1", + "magic-string": "^0.30.5", + "react-docgen": "^7.1.1", + "resolve": "^1.22.8", + "semver": "^7.7.3", + "tsconfig-paths": "^4.2.0", + "webpack": "5" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" + "type": "opencollective", + "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "tslib": "2" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "storybook": "^10.2.17" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@jsonjoy.com/codegen": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz", - "integrity": "sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==", + "node_modules/@storybook/react": { + "version": "10.2.17", + "resolved": "https://registry.npmjs.org/@storybook/react/-/react-10.2.17.tgz", + "integrity": "sha512-875AVMYil2X9Civil6GFZ8koIzlKxcXbl2eJ7+/GPbhIonTNmwx0qbWPHttjZXUvFuQ4RRtb9KkBwy4TCb/LeA==", "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.0" + "license": "MIT", + "dependencies": { + "@storybook/global": "^5.0.0", + "@storybook/react-dom-shim": "10.2.17", + "react-docgen": "^8.0.2" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" + "type": "opencollective", + "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "tslib": "2" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "storybook": "^10.2.17", + "typescript": ">= 4.9.x" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@jsonjoy.com/fs-core": { - "version": "4.57.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-core/-/fs-core-4.57.2.tgz", - "integrity": "sha512-SVjwklkpIV5wrynpYtuYnfYH1QF4/nDuLBX7VXdb+3miglcAgBVZb/5y0cOsehRV/9Vb+3UqhkMq3/NR3ztdkQ==", + "node_modules/@storybook/react-docgen-typescript-plugin": { + "version": "1.0.6--canary.9.0c3f3b7.0", + "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.6--canary.9.0c3f3b7.0.tgz", + "integrity": "sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "@jsonjoy.com/fs-node-builtins": "4.57.2", - "@jsonjoy.com/fs-node-utils": "4.57.2", - "thingies": "^2.5.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-fsa": { - "version": "4.57.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-fsa/-/fs-fsa-4.57.2.tgz", - "integrity": "sha512-fhO8+iR2I+OCw668ISDJdn1aArc9zx033sWejIyzQ8RBeXa9bDSaUeA3ix0poYOfrj1KdOzytmYNv2/uLDfV6g==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/fs-core": "4.57.2", - "@jsonjoy.com/fs-node-builtins": "4.57.2", - "@jsonjoy.com/fs-node-utils": "4.57.2", - "thingies": "^2.5.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-node": { - "version": "4.57.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node/-/fs-node-4.57.2.tgz", - "integrity": "sha512-nX2AdL6cOFwLdju9G4/nbRnYevmCJbh7N7hvR3gGm97Cs60uEjyd0rpR+YBS7cTg175zzl22pGKXR5USaQMvKg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/fs-core": "4.57.2", - "@jsonjoy.com/fs-node-builtins": "4.57.2", - "@jsonjoy.com/fs-node-utils": "4.57.2", - "@jsonjoy.com/fs-print": "4.57.2", - "@jsonjoy.com/fs-snapshot": "4.57.2", - "glob-to-regex.js": "^1.0.0", - "thingies": "^2.5.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-node-builtins": { - "version": "4.57.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-builtins/-/fs-node-builtins-4.57.2.tgz", - "integrity": "sha512-xhiegylRmhw43Ki2HO1ZBL7DQ5ja/qpRsL29VtQ2xuUHiuDGbgf2uD4p9Qd8hJI5P6RCtGYD50IXHXVq/Ocjcg==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-node-to-fsa": { - "version": "4.57.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-to-fsa/-/fs-node-to-fsa-4.57.2.tgz", - "integrity": "sha512-18LmWTSONhoAPW+IWRuf8w/+zRolPFGPeGwMxlAhhfY11EKzX+5XHDBPAw67dBF5dxDErHJbl40U+3IXSDRXSQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/fs-fsa": "4.57.2", - "@jsonjoy.com/fs-node-builtins": "4.57.2", - "@jsonjoy.com/fs-node-utils": "4.57.2" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-node-utils": { - "version": "4.57.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-node-utils/-/fs-node-utils-4.57.2.tgz", - "integrity": "sha512-rsPSJgekz43IlNbLyAM/Ab+ouYLWGp5DDBfYBNNEqDaSpsbXfthBn29Q4muFA9L0F+Z3mKo+CWlgSCXrf+mOyQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/fs-node-builtins": "4.57.2" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-print": { - "version": "4.57.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-print/-/fs-print-4.57.2.tgz", - "integrity": "sha512-wK9NSow48i4DbDl9F1CQE5TqnyZOJ04elU3WFG5aJ76p+YxO/ulyBBQvKsessPxdo381Bc2pcEoyPujMOhcRqQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/fs-node-utils": "4.57.2", - "tree-dump": "^1.1.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-snapshot": { - "version": "4.57.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/fs-snapshot/-/fs-snapshot-4.57.2.tgz", - "integrity": "sha512-GdduDZuoP5V/QCgJkx9+BZ6SC0EZ/smXAdTS7PfMqgMTGXLlt/bH/FqMYaqB9JmLf05sJPtO0XRbAwwkEEPbVw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/buffers": "^17.65.0", - "@jsonjoy.com/fs-node-utils": "4.57.2", - "@jsonjoy.com/json-pack": "^17.65.0", - "@jsonjoy.com/util": "^17.65.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/base64": { - "version": "17.67.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-17.67.0.tgz", - "integrity": "sha512-5SEsJGsm15aP8TQGkDfJvz9axgPwAEm98S5DxOuYe8e1EbfajcDmgeXXzccEjh+mLnjqEKrkBdjHWS5vFNwDdw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/codegen": { - "version": "17.67.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-17.67.0.tgz", - "integrity": "sha512-idnkUplROpdBOV0HMcwhsCUS5TRUi9poagdGs70A6S4ux9+/aPuKbh8+UYRTLYQHtXvAdNfQWXDqZEx5k4Dj2Q==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pack": { - "version": "17.67.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-17.67.0.tgz", - "integrity": "sha512-t0ejURcGaZsn1ClbJ/3kFqSOjlryd92eQY465IYrezsXmPcfHPE/av4twRSxf6WE+TkZgLY+71vCZbiIiFKA/w==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/base64": "17.67.0", - "@jsonjoy.com/buffers": "17.67.0", - "@jsonjoy.com/codegen": "17.67.0", - "@jsonjoy.com/json-pointer": "17.67.0", - "@jsonjoy.com/util": "17.67.0", - "hyperdyperid": "^1.2.0", - "thingies": "^2.5.0", - "tree-dump": "^1.1.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/json-pointer": { - "version": "17.67.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-17.67.0.tgz", - "integrity": "sha512-+iqOFInH+QZGmSuaybBUNdh7yvNrXvqR+h3wjXm0N/3JK1EyyFAeGJvqnmQL61d1ARLlk/wJdFKSL+LHJ1eaUA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/util": "17.67.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/fs-snapshot/node_modules/@jsonjoy.com/util": { - "version": "17.67.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-17.67.0.tgz", - "integrity": "sha512-6+8xBaz1rLSohlGh68D1pdw3AwDi9xydm8QNlAFkvnavCJYSze+pxoW2VKP8p308jtlMRLs5NTHfPlZLd4w7ew==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/buffers": "17.67.0", - "@jsonjoy.com/codegen": "17.67.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/json-pack": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.21.0.tgz", - "integrity": "sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/base64": "^1.1.2", - "@jsonjoy.com/buffers": "^1.2.0", - "@jsonjoy.com/codegen": "^1.0.0", - "@jsonjoy.com/json-pointer": "^1.0.2", - "@jsonjoy.com/util": "^1.9.0", - "hyperdyperid": "^1.2.0", - "thingies": "^2.5.0", - "tree-dump": "^1.1.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/json-pack/node_modules/@jsonjoy.com/buffers": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz", - "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/json-pointer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.2.tgz", - "integrity": "sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/codegen": "^1.0.0", - "@jsonjoy.com/util": "^1.9.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/util": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz", - "integrity": "sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jsonjoy.com/buffers": "^1.0.0", - "@jsonjoy.com/codegen": "^1.0.0" - }, - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@jsonjoy.com/util/node_modules/@jsonjoy.com/buffers": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz", - "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } - }, - "node_modules/@keyv/serialize": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@keyv/serialize/-/serialize-1.1.1.tgz", - "integrity": "sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@mdn/browser-compat-data": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-6.1.5.tgz", - "integrity": "sha512-PzdZZzRhcXvKB0begee28n5lvwAcinGKYuLZOVxHAZm+n7y01ddEGfdS1ZXRuVcV+ndG6mSEAE8vgudom5UjYg==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/@mdx-js/react": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.1.tgz", - "integrity": "sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/mdx": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - }, - "peerDependencies": { - "@types/react": ">=16", - "react": ">=16" - } - }, - "node_modules/@napi-rs/wasm-runtime": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz", - "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@tybys/wasm-util": "^0.10.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/Brooooooklyn" - }, - "peerDependencies": { - "@emnapi/core": "^1.7.1", - "@emnapi/runtime": "^1.7.1" - } - }, - "node_modules/@neoconfetti/react": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@neoconfetti/react/-/react-1.0.0.tgz", - "integrity": "sha512-klcSooChXXOzIm+SE5IISIAn3bYzYfPjbX7D7HoqZL84oAfgREeSg5vSIaSFH+DaGzzvImTyWe1OyrJ67vik4A==", - "dev": true, - "license": "MIT" - }, - "node_modules/@next/env": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.6.tgz", - "integrity": "sha512-gd8HoHN4ufj73WmR3JmVolrpJR47ILK6LouP5xElPglaVxir6e1a7VzvTvDWkOoPXT9rkkTzyCxBu4yeZfZwcw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@next/swc-darwin-arm64": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.6.tgz", - "integrity": "sha512-ZJGkkcNfYgrrMkqOdZ7zoLa1TOy0qpcMfk/z4Mh/FKUz40gVO+HNQWqmLxf67Z5WB64DRp0dhEbyHfel+6sJUg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-darwin-x64": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.6.tgz", - "integrity": "sha512-v/YLBHIY132Ced3puBJ7YJKw1lqsCrgcNo2aRJlCEyQrrCeRJlvGlnmxhPxNQI3KE3N1DN5r9TPNPvka3nq5RQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-gnu": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.6.tgz", - "integrity": "sha512-RPOvqlYBbcQjkz9VQQDZ2T2bARIjXZV1KFlt+V2Mr6SW/e4I9fcKsaA0hdyf2FHoTlsV2xnBd5Y912rP/1Ce6w==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-arm64-musl": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.6.tgz", - "integrity": "sha512-URUTu1+dMkxJsPFgm+OeEvq9wf5sujw0EvgYy80TDGHTSLTnIHeqb0Eu8A3sC95IRgjejQL+kC4mw+4yPxiAXA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-gnu": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.6.tgz", - "integrity": "sha512-DOj182mPV8G3UkrayLoREM5YEYI+Dk5wv7Ox9xl1fFibAELEsFD0lDPfHIeILlutMMfdyhlzYPELG3peuKaurw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-linux-x64-musl": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.6.tgz", - "integrity": "sha512-HKQ5SP/V/ub73UvF7n/zeJlxk2kLmtL7Wzrg4WfmkjmNos5onJ2tKu7yZOPdL18A6Svfn3max29ym+ry7NkK4g==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-arm64-msvc": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.6.tgz", - "integrity": "sha512-LZXpTlPyS5v7HhSmnvsLGP3iIYgYOBnc8r8ArlT55sGHV89bR2HlDdBjWQ+PY6SJMmk8TuVGFuxalnP3k/0Dwg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@next/swc-win32-x64-msvc": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.6.tgz", - "integrity": "sha512-F0+4i0h9J6C4eE3EAPWsoCk7UW/dbzOjyzxY0qnDUOYFu6FFmdZ6l97/XdV3/Nz3VYyO7UWjyEJUXkGqcoXfMA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@niceties/ansi": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@niceties/ansi/-/ansi-1.1.2.tgz", - "integrity": "sha512-4SZgmseZqfGAIrcXmfVes+Uj51KMUQNZ3X31faRB8g2tyebDzW+zlkeg1qmhilrgJOi3nm6EOMlkfJVrgiBzZg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=15" - } - }, - "node_modules/@niceties/logger": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@niceties/logger/-/logger-2.1.1.tgz", - "integrity": "sha512-taqDVn4TRCh3j5QJQNlWKE9MSHxGh7nr9zE8SkdHMvsijp6Vx6qd3XYSV7bF7nnYYC/JYjJILxfqDeEUeEjtfQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@niceties/ansi": "^1.1.2" - }, - "engines": { - "node": ">=15" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@oxc-project/types": { - "version": "0.130.0", - "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.130.0.tgz", - "integrity": "sha512-ibD2usx9JRu7f5pu2tMKMI4cpA4NgXJQoYRP4pQ7Pxmn1l6k/53qWtQWZayhYy3X4QZkt90Ot+mJEaeXouio6Q==", - "dev": true, - "license": "MIT", - "peer": true, - "funding": { - "url": "https://github.com/sponsors/Boshen" - } - }, - "node_modules/@parcel/watcher": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz", - "integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "dependencies": { - "detect-libc": "^2.0.3", - "is-glob": "^4.0.3", - "node-addon-api": "^7.0.0", - "picomatch": "^4.0.3" - }, - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - }, - "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.5.6", - "@parcel/watcher-darwin-arm64": "2.5.6", - "@parcel/watcher-darwin-x64": "2.5.6", - "@parcel/watcher-freebsd-x64": "2.5.6", - "@parcel/watcher-linux-arm-glibc": "2.5.6", - "@parcel/watcher-linux-arm-musl": "2.5.6", - "@parcel/watcher-linux-arm64-glibc": "2.5.6", - "@parcel/watcher-linux-arm64-musl": "2.5.6", - "@parcel/watcher-linux-x64-glibc": "2.5.6", - "@parcel/watcher-linux-x64-musl": "2.5.6", - "@parcel/watcher-win32-arm64": "2.5.6", - "@parcel/watcher-win32-ia32": "2.5.6", - "@parcel/watcher-win32-x64": "2.5.6" - } - }, - "node_modules/@parcel/watcher-android-arm64": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz", - "integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz", - "integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz", - "integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz", - "integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz", - "integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm-musl": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz", - "integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz", - "integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz", - "integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-x64-glibc": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz", - "integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-linux-x64-musl": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz", - "integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz", - "integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz", - "integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@parcel/watcher-win32-x64": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz", - "integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@pkgr/core": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.9.tgz", - "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/pkgr" - } - }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.17", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.17.tgz", - "integrity": "sha512-tXDyE1/jzFsHXjhRZQ3hMl0IVhYe5qula43LDWIhVfjp9G/nT5OQY5AORVOrkEGAUltBJOfOWeETbmhm6kHhuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-html": "^0.0.9", - "core-js-pure": "^3.23.3", - "error-stack-parser": "^2.0.6", - "html-entities": "^2.1.0", - "loader-utils": "^2.0.4", - "schema-utils": "^4.2.0", - "source-map": "^0.7.3" - }, - "engines": { - "node": ">= 10.13" - }, - "peerDependencies": { - "@types/webpack": "4.x || 5.x", - "react-refresh": ">=0.10.0 <1.0.0", - "sockjs-client": "^1.4.0", - "type-fest": ">=0.17.0 <5.0.0", - "webpack": ">=4.43.0 <6.0.0", - "webpack-dev-server": "3.x || 4.x || 5.x", - "webpack-hot-middleware": "2.x", - "webpack-plugin-serve": "0.x || 1.x" - }, - "peerDependenciesMeta": { - "@types/webpack": { - "optional": true - }, - "sockjs-client": { - "optional": true - }, - "type-fest": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - }, - "webpack-hot-middleware": { - "optional": true - }, - "webpack-plugin-serve": { - "optional": true - } - } - }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "license": "MIT", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" - } - }, - "node_modules/@rolldown/binding-android-arm64": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.1.tgz", - "integrity": "sha512-fJI3I0r3C3Oj/zdBCpaCmBRZYf07xpaq4yCfDDoSFm+beWNzbIl26puW8RraUdugoJw/95zerNOn6jasAhzSmg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-darwin-arm64": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.1.tgz", - "integrity": "sha512-cKnAhWEsV7TPcA/5EAteDp6KcJZBQ2G+BqE7zayMMi7kMvwRsbv7WT9aOnn0WNl4SKEIf43vjS31iUPu80nzXg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-darwin-x64": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.1.tgz", - "integrity": "sha512-YKrVwQjIRBPo+5G/u03wGjbdy4q7pyzCe93DK9VJ7zkVmeg8LJ7GbgsiHWdR4xSoe4CAXRD7Bcjgbtr64bkXNg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-freebsd-x64": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.1.tgz", - "integrity": "sha512-z/oBsREo46SsFqBwYtFe0kpJeBijAT48O/WXLI4suiCLBkr03RTtTJMCzSdDd2znlh8VJizL09XVkQgk8IZonw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-linux-arm-gnueabihf": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.1.tgz", - "integrity": "sha512-ik8q7GM11zxvYxFc2PeDcT6TBvhCQMaUxfph/M5l9sKuTs/Sjg3L+Byw0F7w0ZVLBZmx30P+gG0ECzzN+MFcmQ==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-linux-arm64-gnu": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.1.tgz", - "integrity": "sha512-QoSx2EkyrrdZ6kcyE8stqZ62t0Yra8Fs5ia9lOxJrh6TMQJK7gQKmscdTHf7pOXKREKrVwOtJcQG3qVSfc866A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-linux-arm64-musl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.1.tgz", - "integrity": "sha512-uwNwFpwKeNiZawfAWBgg0VIztPTV3ihhh1vV334h9ivnNLorxnQMU6Fz8wG1Zb4Qh9LC1/MkcyT3YlDXG3Rsgg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-linux-ppc64-gnu": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.1.tgz", - "integrity": "sha512-zY1bul7OWr7DFBiJ++wofXvnr8B45ce3QsQUhKrIhXsygAh7bTkwyeM1bi1a2g5C/yC/N8TZyGDEoMfm/l9mpg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-linux-s390x-gnu": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.1.tgz", - "integrity": "sha512-0frlsT/f4Ft6I7SMESTKnF3cZsdicQn1dCMkF/jT9wDLE+gGoiQfv1nmT9e+s7s/fekvvy6tZM2jHvI2tkbJDQ==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-linux-x64-gnu": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.1.tgz", - "integrity": "sha512-XABVmGp9Tg0WspTVvwduTc4fpqy6JnAUrSQe6OuyqD/03nI7r0O9OWUkMIwFrjKAIqolvqoA4ZrJppgwE0Gxmw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-linux-x64-musl": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.1.tgz", - "integrity": "sha512-bV4fzswuzVcKD90o/VM6QqKxnxlDq0g2BISDLNVmxrnhpv1DDbyPhCIjYfvzYLV+MvkKKnQt2Q6AO86SEBULUQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-openharmony-arm64": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.1.tgz", - "integrity": "sha512-/Mh0Zhq3OP7fVs0kcQHZP6lZEthMGTaSf8UBQYSFEZDWGXXlEC+nJ6EqenaK2t4LBXMe3A+K/G2BVXXdtOr4PQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openharmony" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-wasm32-wasi": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.1.tgz", - "integrity": "sha512-+1xc9X45l8ufsBAm6Gjvx2qDRIY9lTVt0cgWNcJ+1gdhXvkbxePA60yRTwSTuXL09CMhyJmjpV7E3NoyxbqFQQ==", - "cpu": [ - "wasm32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "peer": true, - "dependencies": { - "@emnapi/core": "1.10.0", - "@emnapi/runtime": "1.10.0", - "@napi-rs/wasm-runtime": "^1.1.4" - }, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-win32-arm64-msvc": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.1.tgz", - "integrity": "sha512-1D+UqZdfnuR+Jy1GgMJwi85bD40H21uNmOPRWQhw4oRSuolZ/B5rixZ45DK2KXOTCvmVCecauWgEhbw8bI7tOw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/binding-win32-x64-msvc": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.1.tgz", - "integrity": "sha512-INAycaWuhlOK3wk4mRHGsdgwYWmd9cChdPdE9bwWmy6rn9VqVNYNFGhOdXrofXUxwHIncSiPNb8tNm8knDVIeQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": "^20.19.0 || >=22.12.0" - } - }, - "node_modules/@rolldown/pluginutils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.1.tgz", - "integrity": "sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==", - "dev": true, - "license": "MIT", - "peer": true - }, - "node_modules/@rollup-extras/plugin-copy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@rollup-extras/plugin-copy/-/plugin-copy-2.1.0.tgz", - "integrity": "sha512-PR53b1TBheVEKH3PTu1aOYritCLdYYi/PwWVe6PlQYVgdRXZ7pRDvSG/s4xmyR5sh7LwYa6N0OcIkOh3IAc5VA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@niceties/logger": "^2.1.0", - "@rollup-extras/utils": "^2.0.0", - "glob-parent": "^6.0.2" - }, - "engines": { - "node": ">=22.14" - }, - "peerDependencies": { - "rollup": "^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup-extras/utils": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@rollup-extras/utils/-/utils-2.0.0.tgz", - "integrity": "sha512-20/JAVzvQPvuTNIYnvSDq+BIH28iks1VnjT5RPJuI4SXcfSZtruV57Asw3++mjmJbhOihx8UdfFC3QVzuux3rw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@niceties/logger": "^2.1.0" - }, - "engines": { - "node": ">=15" - }, - "peerDependencies": { - "rollup": "^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-alias": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-6.0.0.tgz", - "integrity": "sha512-tPCzJOtS7uuVZd+xPhoy5W4vThe6KWXNmsFCNktaAh5RTqcLiSfT4huPQIXkgJ6YCOjJHvecOAzQxLFhPxKr+g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "rollup": ">=4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-commonjs": { - "version": "29.0.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-29.0.2.tgz", - "integrity": "sha512-S/ggWH1LU7jTyi9DxZOKyxpVd4hF/OZ0JrEbeLjXk/DFXwRny0tjD2c992zOUYQobLrVkRVMDdmHP16HKP7GRg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "commondir": "^1.0.1", - "estree-walker": "^2.0.2", - "fdir": "^6.2.0", - "is-reference": "1.2.1", - "magic-string": "^0.30.3", - "picomatch": "^4.0.2" - }, - "engines": { - "node": ">=16.0.0 || 14 >= 14.17" - }, - "peerDependencies": { - "rollup": "^2.68.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-commonjs/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true, - "license": "MIT" - }, - "node_modules/@rollup/plugin-json": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", - "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^5.1.0" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-node-resolve": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-16.0.3.tgz", - "integrity": "sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "@types/resolve": "1.20.2", - "deepmerge": "^4.2.2", - "is-module": "^1.0.0", - "resolve": "^1.22.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^2.78.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-terser": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-1.0.0.tgz", - "integrity": "sha512-FnCxhTBx6bMOYQrar6C8h3scPt8/JwIzw3+AJ2K++6guogH5fYaIFia+zZuhqv0eo1RN7W1Pz630SyvLbDjhtQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "serialize-javascript": "^7.0.3", - "smob": "^1.0.0", - "terser": "^5.17.4" - }, - "engines": { - "node": ">=20.0.0" - }, - "peerDependencies": { - "rollup": "^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/plugin-typescript": { - "version": "12.3.0", - "resolved": "https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-12.3.0.tgz", - "integrity": "sha512-7DP0/p7y3t67+NabT9f8oTBFE6gGkto4SA6Np2oudYmZE/m1dt8RB0SjL1msMxFpLo631qjRCcBlAbq1ml/Big==", - "dev": true, - "license": "MIT", - "dependencies": { - "@rollup/pluginutils": "^5.1.0", - "resolve": "^1.22.1" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^2.14.0||^3.0.0||^4.0.0", - "tslib": "*", - "typescript": ">=3.7.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - }, - "tslib": { - "optional": true - } - } - }, - "node_modules/@rollup/pluginutils": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", - "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^4.0.2" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/pluginutils/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true, - "license": "MIT" - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.4.tgz", - "integrity": "sha512-F5QXMSiFebS9hKZj02XhWLLnRpJ3B3AROP0tWbFBSj+6kCbg5m9j5JoHKd4mmSVy5mS/IMQloYgYxCuJC0fxEQ==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.4.tgz", - "integrity": "sha512-GxxTKApUpzRhof7poWvCJHRF51C67u1R7D6DiluBE8wKU1u5GWE8t+v81JvJYtbawoBFX1hLv5Ei4eVjkWokaw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.4.tgz", - "integrity": "sha512-tua0TaJxMOB1R0V0RS1jFZ/RpURFDJIOR2A6jWwQeawuFyS4gBW+rntLRaQd0EQ4bd6Vp44Z2rXW+YYDBsj6IA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.4.tgz", - "integrity": "sha512-CSKq7MsP+5PFIcydhAiR1K0UhEI1A2jWXVKHPCBZ151yOutENwvnPocgVHkivu2kviURtCEB6zUQw0vs8RrhMg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.4.tgz", - "integrity": "sha512-+O8OkVdyvXMtJEciu2wS/pzm1IxntEEQx3z5TAVy4l32G0etZn+RsA48ARRrFm6Ri8fvqPQfgrvNxSjKAbnd3g==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.4.tgz", - "integrity": "sha512-Iw3oMskH3AfNuhU0MSN7vNbdi4me/NiYo2azqPz/Le16zHSa+3RRmliCMWWQmh4lcndccU40xcJuTYJZxNo/lw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.4.tgz", - "integrity": "sha512-EIPRXTVQpHyF8WOo219AD2yEltPehLTcTMz2fn6JsatLYSzQf00hj3rulF+yauOlF9/FtM2WpkT/hJh/KJFGhA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.4.tgz", - "integrity": "sha512-J3Yh9PzzF1Ovah2At+lHiGQdsYgArxBbXv/zHfSyaiFQEqvNv7DcW98pCrmdjCZBrqBiKrKKe2V+aaSGWuBe/w==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.4.tgz", - "integrity": "sha512-BFDEZMYfUvLn37ONE1yMBojPxnMlTFsdyNoqncT0qFq1mAfllL+ATMMJd8TeuVMiX84s1KbcxcZbXInmcO2mRg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.4.tgz", - "integrity": "sha512-pc9EYOSlOgdQ2uPl1o9PF6/kLSgaUosia7gOuS8mB69IxJvlclko1MECXysjs5ryez1/5zjYqx3+xYU0TU6R1A==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loong64-gnu": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.4.tgz", - "integrity": "sha512-NxnomyxYerDh5n4iLrNa+sH+Z+U4BMEE46V2PgQ/hoB909i8gV1M5wPojWg9fk1jWpO3IQnOs20K4wyZuFLEFQ==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loong64-musl": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.4.tgz", - "integrity": "sha512-nbJnQ8a3z1mtmrwImCYhc6BGpThAyYVRQxw9uKSKG4wR6aAYno9sVjJ0zaZcW9BPJX1GbrDPf+SvdWjgTuDmnw==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.4.tgz", - "integrity": "sha512-2EU6acNrQLd8tYvo/LXW535wupT3m6fo7HKo6lr7ktQoItxTyOL1ZCR/GfGCuXl2vR+zmfI6eRXkSemafv+iVg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-ppc64-musl": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.4.tgz", - "integrity": "sha512-WeBtoMuaMxiiIrO2IYP3xs6GMWkJP2C0EoT8beTLkUPmzV1i/UcOSVw1d5r9KBODtHKilG5yFxsGRnBbK3wJ4A==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.4.tgz", - "integrity": "sha512-FJHFfqpKUI3A10WrWKiFbBZ7yVbGT4q4B5o1qKFFojqpaYoh9LrQgqWCmmcxQzVSXYtyB5bzkXrYzlHTs21MYA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.4.tgz", - "integrity": "sha512-mcEl6CUT5IAUmQf1m9FYSmVqCJlpQ8r8eyftFUHG8i9OhY7BkBXSUdnLH5DOf0wCOjcP9v/QO93zpmF1SptCCw==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.4.tgz", - "integrity": "sha512-ynt3JxVd2w2buzoKDWIyiV1pJW93xlQic1THVLXilz429oijRpSHivZAgp65KBu+cMcgf1eVVjdnTLvPxgCuoQ==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.4.tgz", - "integrity": "sha512-Boiz5+MsaROEWDf+GGEwF8VMHGhlUoQMtIPjOgA5fv4osupqTVnJteQNKJwUcnUog2G55jYXH7KZFFiJe0TEzQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.4.tgz", - "integrity": "sha512-+qfSY27qIrFfI/Hom04KYFw3GKZSGU4lXus51wsb5EuySfFlWRwjkKWoE9emgRw/ukoT4Udsj4W/+xxG8VbPKg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-openbsd-x64": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.4.tgz", - "integrity": "sha512-VpTfOPHgVXEBeeR8hZ2O0F3aSso+JDWqTWmTmzcQKted54IAdUVbxE+j/MVxUsKa8L20HJhv3vUezVPoquqWjA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ] - }, - "node_modules/@rollup/rollup-openharmony-arm64": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.4.tgz", - "integrity": "sha512-IPOsh5aRYuLv/nkU51X10Bf75Bsf6+gZdx1X+QP5QM6lIJFHHqbHLG0uJn/hWthzo13UAc2umiUorqZy3axoZg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openharmony" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.4.tgz", - "integrity": "sha512-4QzE9E81OohJ/HKzHhsqU+zcYYojVOXlFMs1DdyMT6qXl/niOH7AVElmmEdUNHHS/oRkc++d5k6Vy85zFs0DEw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.4.tgz", - "integrity": "sha512-zTPgT1YuHHcd+Tmx7h8aml0FWFVelV5N54oHow9SLj+GfoDy/huQ+UV396N/C7KpMDMiPspRktzM1/0r1usYEA==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-gnu": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.4.tgz", - "integrity": "sha512-DRS4G7mi9lJxqEDezIkKCaUIKCrLUUDCUaCsTPCi/rtqaC6D/jjwslMQyiDU50Ka0JKpeXeRBFBAXwArY52vBw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.60.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.4.tgz", - "integrity": "sha512-QVTUovf40zgTqlFVrKA1uXMVvU2QWEFWfAH8Wdc48IxLvrJMQVMBRjuQyUpzZCDkakImib9eVazbWlC6ksWtJw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@sinclair/typebox": { - "version": "0.34.49", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.49.tgz", - "integrity": "sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A==", - "dev": true, - "license": "MIT" - }, - "node_modules/@sindresorhus/merge-streams": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", - "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@sinonjs/commons": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", - "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "15.4.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-15.4.0.tgz", - "integrity": "sha512-DsG+8/LscQIQg68J6Ef3dv10u6nVyetYn923s3/sus5eaGfTo1of5WMZSLf0UJc9KDuKPilPH0UDJCjvNbDNCA==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@sinonjs/commons": "^3.0.1" - } - }, - "node_modules/@storybook/addon-docs": { - "version": "10.2.17", - "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-10.2.17.tgz", - "integrity": "sha512-c414xi7rxlaHn92qWOxtEkcOMm0/+cvBui0gUsgiWOZOM8dHChGZ/RjMuf1pPDyOrSsybLsPjZhP0WthsMDkdQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@mdx-js/react": "^3.0.0", - "@storybook/csf-plugin": "10.2.17", - "@storybook/icons": "^2.0.1", - "@storybook/react-dom-shim": "10.2.17", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "storybook": "^10.2.17" - } - }, - "node_modules/@storybook/addon-links": { - "version": "10.2.17", - "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-10.2.17.tgz", - "integrity": "sha512-KY2usxhPpt9AAzD22uBEfdPj1NZyCNyaYXgKkr8r/UeCNt7E7OdVBLNA1QMYZZ5dtIWj9EtY8c55OPuBM7aUkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "storybook": "^10.2.17" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - } - } - }, - "node_modules/@storybook/builder-webpack5": { - "version": "10.2.17", - "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-10.2.17.tgz", - "integrity": "sha512-Bvehx6GM1o0F6Fif45Lo8wlRGdgO4Kc/SDWarVy2Pzhs0JOEk4mHBtmRq6jBLp3J/ws4LLy2NZfNsrmy4by2LQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/core-webpack": "10.2.17", - "case-sensitive-paths-webpack-plugin": "^2.4.0", - "cjs-module-lexer": "^1.2.3", - "css-loader": "^7.1.2", - "es-module-lexer": "^1.5.0", - "fork-ts-checker-webpack-plugin": "^9.1.0", - "html-webpack-plugin": "^5.5.0", - "magic-string": "^0.30.5", - "style-loader": "^4.0.0", - "terser-webpack-plugin": "^5.3.14", - "ts-dedent": "^2.0.0", - "webpack": "5", - "webpack-dev-middleware": "^6.1.2", - "webpack-hot-middleware": "^2.25.1", - "webpack-virtual-modules": "^0.6.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "storybook": "^10.2.17" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@storybook/builder-webpack5/node_modules/css-loader": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-7.1.4.tgz", - "integrity": "sha512-vv3J9tlOl04WjiMvHQI/9tmIrCxVrj6PFbHemBB1iihpeRbi/I4h033eoFIhwxBBqLhI0KYFS7yvynBFhIZfTw==", - "dev": true, - "license": "MIT", - "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.40", - "postcss-modules-extract-imports": "^3.1.0", - "postcss-modules-local-by-default": "^4.0.5", - "postcss-modules-scope": "^3.2.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.6.3" - }, - "engines": { - "node": ">= 18.12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "@rspack/core": "0.x || ^1.0.0 || ^2.0.0-0", - "webpack": "^5.27.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "webpack": { - "optional": true - } - } - }, - "node_modules/@storybook/builder-webpack5/node_modules/style-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-4.0.0.tgz", - "integrity": "sha512-1V4WqhhZZgjVAVJyt7TdDPZoPBPNHbekX4fWnCJL1yQukhCeZhJySUL+gL9y6sNdN95uEOS83Y55SqHcP7MzLA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 18.12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.27.0" - } - }, - "node_modules/@storybook/core-webpack": { - "version": "10.2.17", - "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-10.2.17.tgz", - "integrity": "sha512-yr9MCgRXmwidMrOupo7BAzMtHYIWiT5W637Lj5VzldxjOYNRpv2/93N/JU7BVcjD8XaMuUdLs3a0MPxPAfAk1Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "storybook": "^10.2.17" - } - }, - "node_modules/@storybook/csf-plugin": { - "version": "10.2.17", - "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-10.2.17.tgz", - "integrity": "sha512-crHH8i/4mwzeXpWRPgwvwX2vjytW42zyzTRySUax5dTU8o9sjk4y+Z9hkGx3Nmu1TvqseS8v1Z20saZr/tQcWw==", - "dev": true, - "license": "MIT", - "dependencies": { - "unplugin": "^2.3.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "esbuild": "*", - "rollup": "*", - "storybook": "^10.2.17", - "vite": "*", - "webpack": "*" - }, - "peerDependenciesMeta": { - "esbuild": { - "optional": true - }, - "rollup": { - "optional": true - }, - "vite": { - "optional": true - }, - "webpack": { - "optional": true - } - } - }, - "node_modules/@storybook/global": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", - "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@storybook/icons": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@storybook/icons/-/icons-2.0.2.tgz", - "integrity": "sha512-KZBCpXsshAIjczYNXR/rlxEtCUX/eAbpFNwKi8bcOomrLA4t/SyPz5RF+lVPO2oZBUE4sAkt43mfJUevQDSEEw==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - } - }, - "node_modules/@storybook/nextjs": { - "version": "10.2.17", - "resolved": "https://registry.npmjs.org/@storybook/nextjs/-/nextjs-10.2.17.tgz", - "integrity": "sha512-iC0QZFHHnR+aj+pzciEVWoJzGVgdp7Z12tsfeCXCWeZx37sQlTizfvkVjl+nG14qr/g6qW5QwgTL4nZbgc5qTw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.28.5", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.27.1", - "@babel/plugin-transform-class-properties": "^7.27.1", - "@babel/plugin-transform-export-namespace-from": "^7.27.1", - "@babel/plugin-transform-numeric-separator": "^7.27.1", - "@babel/plugin-transform-object-rest-spread": "^7.28.4", - "@babel/plugin-transform-runtime": "^7.28.5", - "@babel/preset-env": "^7.28.5", - "@babel/preset-react": "^7.28.5", - "@babel/preset-typescript": "^7.28.5", - "@babel/runtime": "^7.28.4", - "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", - "@storybook/builder-webpack5": "10.2.17", - "@storybook/preset-react-webpack": "10.2.17", - "@storybook/react": "10.2.17", - "@types/semver": "^7.7.1", - "babel-loader": "^9.1.3", - "css-loader": "^6.7.3", - "image-size": "^2.0.2", - "loader-utils": "^3.2.1", - "node-polyfill-webpack-plugin": "^2.0.1", - "postcss": "^8.4.38", - "postcss-loader": "^8.1.1", - "react-refresh": "^0.14.0", - "resolve-url-loader": "^5.0.0", - "sass-loader": "^16.0.5", - "semver": "^7.7.3", - "style-loader": "^3.3.1", - "styled-jsx": "^5.1.6", - "tsconfig-paths": "^4.0.0", - "tsconfig-paths-webpack-plugin": "^4.0.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "next": "^14.1.0 || ^15.0.0 || ^16.0.0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "storybook": "^10.2.17", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - }, - "webpack": { - "optional": true - } - } - }, - "node_modules/@storybook/preset-react-webpack": { - "version": "10.2.17", - "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-10.2.17.tgz", - "integrity": "sha512-k1nuS6BfGYd9qDTPaDmBz0K0QQs0pG8MQN7hZTPOb/BOh+F1liUlp21AEbwzOvv3rRHBMcD7b90ovhroZwYnEw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/core-webpack": "10.2.17", - "@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.0c3f3b7.0", - "@types/semver": "^7.7.1", - "magic-string": "^0.30.5", - "react-docgen": "^7.1.1", - "resolve": "^1.22.8", - "semver": "^7.7.3", - "tsconfig-paths": "^4.2.0", - "webpack": "5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "storybook": "^10.2.17" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@storybook/react": { - "version": "10.2.17", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-10.2.17.tgz", - "integrity": "sha512-875AVMYil2X9Civil6GFZ8koIzlKxcXbl2eJ7+/GPbhIonTNmwx0qbWPHttjZXUvFuQ4RRtb9KkBwy4TCb/LeA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@storybook/global": "^5.0.0", - "@storybook/react-dom-shim": "10.2.17", - "react-docgen": "^8.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "storybook": "^10.2.17", - "typescript": ">= 4.9.x" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@storybook/react-docgen-typescript-plugin": { - "version": "1.0.6--canary.9.0c3f3b7.0", - "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.6--canary.9.0c3f3b7.0.tgz", - "integrity": "sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^4.1.1", - "endent": "^2.0.1", - "find-cache-dir": "^3.3.1", - "flat-cache": "^3.0.4", - "micromatch": "^4.0.2", - "react-docgen-typescript": "^2.2.2", - "tslib": "^2.0.0" - }, - "peerDependencies": { - "typescript": ">= 4.x", - "webpack": ">= 4" - } - }, - "node_modules/@storybook/react-dom-shim": { - "version": "10.2.17", - "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-10.2.17.tgz", - "integrity": "sha512-x9Kb7eUSZ1zGsEw/TtWrvs1LwWIdNp8qoOQCgPEjdB07reSJcE8R3+ASWHJThmd4eZf66ZALPJyerejake4Osw==", - "dev": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", - "storybook": "^10.2.17" - } - }, - "node_modules/@storybook/react/node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@storybook/react/node_modules/react-docgen": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-8.0.3.tgz", - "integrity": "sha512-aEZ9qP+/M+58x2qgfSFEWH1BxLyHe5+qkLNJOZQb5iGS017jpbRnoKhNRrXPeA6RfBrZO5wZrT9DMC1UqE1f1w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.28.0", - "@babel/traverse": "^7.28.0", - "@babel/types": "^7.28.2", - "@types/babel__core": "^7.20.5", - "@types/babel__traverse": "^7.20.7", - "@types/doctrine": "^0.0.9", - "@types/resolve": "^1.20.2", - "doctrine": "^3.0.0", - "resolve": "^1.22.1", - "strip-indent": "^4.0.0" - }, - "engines": { - "node": "^20.9.0 || >=22" - } - }, - "node_modules/@swc/helpers": { - "version": "0.5.15", - "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", - "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.8.0" - } - }, - "node_modules/@testing-library/dom": { - "version": "10.4.1", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz", - "integrity": "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.3.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "picocolors": "1.1.1", - "pretty-format": "^27.0.2" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/@testing-library/jest-dom": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz", - "integrity": "sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@adobe/css-tools": "^4.4.0", - "aria-query": "^5.0.0", - "css.escape": "^1.5.1", - "dom-accessibility-api": "^0.6.3", - "picocolors": "^1.1.1", - "redent": "^3.0.0" - }, - "engines": { - "node": ">=14", - "npm": ">=6", - "yarn": ">=1" - } - }, - "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", - "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", - "dev": true, - "license": "MIT" - }, - "node_modules/@testing-library/react": { - "version": "16.3.2", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.2.tgz", - "integrity": "sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "@testing-library/dom": "^10.0.0", - "@types/react": "^18.0.0 || ^19.0.0", - "@types/react-dom": "^18.0.0 || ^19.0.0", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - }, - "@types/react-dom": { - "optional": true - } - } - }, - "node_modules/@testing-library/user-event": { - "version": "14.6.1", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz", - "integrity": "sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12", - "npm": ">=6" - }, - "peerDependencies": { - "@testing-library/dom": ">=7.21.4" - } - }, - "node_modules/@tybys/wasm-util": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz", - "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "tslib": "^2.4.0" - } - }, - "node_modules/@types/aria-query": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", - "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", - "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.28.0", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", - "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.28.2" - } - }, - "node_modules/@types/chai": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", - "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/deep-eql": "*", - "assertion-error": "^2.0.1" - } - }, - "node_modules/@types/deep-eql": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", - "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/doctrine": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", - "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/eslint": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", - "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" - } - }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", - "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", - "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", - "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", - "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/jest": { - "version": "30.0.0", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-30.0.0.tgz", - "integrity": "sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==", - "dev": true, - "license": "MIT", - "dependencies": { - "expect": "^30.0.0", - "pretty-format": "^30.0.0" - } - }, - "node_modules/@types/jest/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/@types/jest/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/@types/jsdom": { - "version": "21.1.7", - "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-21.1.7.tgz", - "integrity": "sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/node": "*", - "@types/tough-cookie": "*", - "parse5": "^7.0.0" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/mdx": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", - "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/minimatch": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", - "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "25.9.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.1.tgz", - "integrity": "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==", - "dev": true, - "license": "MIT", - "dependencies": { - "undici-types": ">=7.24.0 <7.24.7" - } - }, - "node_modules/@types/react": { - "version": "19.2.14", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", - "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", - "dev": true, - "license": "MIT", - "dependencies": { - "csstype": "^3.2.2" - } - }, - "node_modules/@types/react-dom": { - "version": "19.2.3", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", - "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "@types/react": "^19.2.0" - } - }, - "node_modules/@types/resolve": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", - "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/semver": { - "version": "7.7.1", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.1.tgz", - "integrity": "sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/stack-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/tough-cookie": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", - "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/yargs": { - "version": "17.0.35", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz", - "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.3", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.4.tgz", - "integrity": "sha512-PegsU+XfyJJNjd4+u/k6f9yTyp0lEXXiPopUNobZcIAUJFGICFLN+sP0Rb3JehVmiij1Ph0dFGYqODoRo/2+6A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/regexpp": "^4.12.2", - "@typescript-eslint/scope-manager": "8.59.4", - "@typescript-eslint/type-utils": "8.59.4", - "@typescript-eslint/utils": "8.59.4", - "@typescript-eslint/visitor-keys": "8.59.4", - "ignore": "^7.0.5", - "natural-compare": "^1.4.0", - "ts-api-utils": "^2.5.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^8.59.4", - "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.1.0" - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.4.tgz", - "integrity": "sha512-zORHqO/tuhxY1zWuTvMUqddRxpiFJ72xVfcNoWpqdLjs6lfPbuQBJuW4pk+49/uBMy7Ssr4bzgjiKmmDB1UbZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/scope-manager": "8.59.4", - "@typescript-eslint/types": "8.59.4", - "@typescript-eslint/typescript-estree": "8.59.4", - "@typescript-eslint/visitor-keys": "8.59.4", - "debug": "^4.4.3" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.1.0" - } - }, - "node_modules/@typescript-eslint/project-service": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.4.tgz", - "integrity": "sha512-Ly00Vu4oAacfDeHp2Zg85ioNG6l8HG+tN1D7J+xTHSxu9y0awYKJ2zH1rFBn8ZSfuGK+7FxK3Cgl3uAz0aZZLg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/tsconfig-utils": "^8.59.4", - "@typescript-eslint/types": "^8.59.4", - "debug": "^4.4.3" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "typescript": ">=4.8.4 <6.1.0" - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.4.tgz", - "integrity": "sha512-mUeR/3H1WrTAddJrwut8OoPjfauaztMQmRwV5fQTUyNVJCLiUXXe4lGEyYIL2oFDpP7UtgbGJXCt72wT0z2S3Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "8.59.4", - "@typescript-eslint/visitor-keys": "8.59.4" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/tsconfig-utils": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.4.tgz", - "integrity": "sha512-DLCpnKgD4alVxTBSKulK+gU1KCqOgUXfDRDXh2mZgzokQKa/70ax93I2uVO3m/LLvIAtWZIFoiifudmIqAxpMA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "typescript": ">=4.8.4 <6.1.0" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.4.tgz", - "integrity": "sha512-uonTuPAAKr9XaBGqJ3LjYTh72zy5DyGesljO9gtmk/eFW0W1fRHjnwVYKB35Lm8d5Q5CluEW3gPHjTvZTmgrfA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "8.59.4", - "@typescript-eslint/typescript-estree": "8.59.4", - "@typescript-eslint/utils": "8.59.4", - "debug": "^4.4.3", - "ts-api-utils": "^2.5.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.1.0" - } - }, - "node_modules/@typescript-eslint/types": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.4.tgz", - "integrity": "sha512-F1o7WJcCq+bc8dwcO/YsSEOudAH8RDtaOhM6wcAQhcUsFhnWQl81JKy48q1hoxAU0qrzM89+31GYh1515Zde3Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.4.tgz", - "integrity": "sha512-F+RuOmcDXo4+TPdfd/TCLS3m2nw8gE9XXyZLrA3JBfaA5tz9TtdkyD3YJFmPxulyc2cKbEok/CvFE3MgSLWnag==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/project-service": "8.59.4", - "@typescript-eslint/tsconfig-utils": "8.59.4", - "@typescript-eslint/types": "8.59.4", - "@typescript-eslint/visitor-keys": "8.59.4", - "debug": "^4.4.3", - "minimatch": "^10.2.2", - "semver": "^7.7.3", - "tinyglobby": "^0.2.15", - "ts-api-utils": "^2.5.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "typescript": ">=4.8.4 <6.1.0" - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.4.tgz", - "integrity": "sha512-cYXeNAUsG4lJo5dbc1FcKm+JwIWrj1/UpTORsC6tGMjEZ81DYcvIr9/ueikhMa/Y/gDQYGp+YX9/xQrXje5BJw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.9.1", - "@typescript-eslint/scope-manager": "8.59.4", - "@typescript-eslint/types": "8.59.4", - "@typescript-eslint/typescript-estree": "8.59.4" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "debug": "^4.1.1", + "endent": "^2.0.1", + "find-cache-dir": "^3.3.1", + "flat-cache": "^3.0.4", + "micromatch": "^4.0.2", + "react-docgen-typescript": "^2.2.2", + "tslib": "^2.0.0" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.1.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.59.4", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.4.tgz", - "integrity": "sha512-U3gxVaDVnuZKhSspW/MzMxE1kq7zOdc072FcSNoqA1I9p8HyKbBFfEHoWckBAMgNMph4MamwS5iTVzFmrnt8TQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "8.59.4", - "eslint-visitor-keys": "^5.0.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", - "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^20.19.0 || ^22.13.0 || >=24" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "typescript": ">= 4.x", + "webpack": ">= 4" } }, - "node_modules/@ungap/structured-clone": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz", - "integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/@unrs/resolver-binding-android-arm-eabi": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.12.2.tgz", - "integrity": "sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@unrs/resolver-binding-android-arm64": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.12.2.tgz", - "integrity": "sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@unrs/resolver-binding-darwin-arm64": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.12.2.tgz", - "integrity": "sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@unrs/resolver-binding-darwin-x64": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.12.2.tgz", - "integrity": "sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@unrs/resolver-binding-freebsd-x64": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.12.2.tgz", - "integrity": "sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.12.2.tgz", - "integrity": "sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.12.2.tgz", - "integrity": "sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.12.2.tgz", - "integrity": "sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@unrs/resolver-binding-linux-arm64-musl": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.12.2.tgz", - "integrity": "sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@unrs/resolver-binding-linux-loong64-gnu": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-gnu/-/resolver-binding-linux-loong64-gnu-1.12.2.tgz", - "integrity": "sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@unrs/resolver-binding-linux-loong64-musl": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-musl/-/resolver-binding-linux-loong64-musl-1.12.2.tgz", - "integrity": "sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.12.2.tgz", - "integrity": "sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.12.2.tgz", - "integrity": "sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A==", - "cpu": [ - "riscv64" - ], + "node_modules/@storybook/react-dom-shim": { + "version": "10.2.17", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-10.2.17.tgz", + "integrity": "sha512-x9Kb7eUSZ1zGsEw/TtWrvs1LwWIdNp8qoOQCgPEjdB07reSJcE8R3+ASWHJThmd4eZf66ZALPJyerejake4Osw==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "storybook": "^10.2.17" + } }, - "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.12.2.tgz", - "integrity": "sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w==", - "cpu": [ - "riscv64" - ], + "node_modules/@storybook/react/node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } }, - "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.12.2.tgz", - "integrity": "sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw==", - "cpu": [ - "s390x" - ], + "node_modules/@storybook/react/node_modules/react-docgen": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-8.0.3.tgz", + "integrity": "sha512-aEZ9qP+/M+58x2qgfSFEWH1BxLyHe5+qkLNJOZQb5iGS017jpbRnoKhNRrXPeA6RfBrZO5wZrT9DMC1UqE1f1w==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "@babel/core": "^7.28.0", + "@babel/traverse": "^7.28.0", + "@babel/types": "^7.28.2", + "@types/babel__core": "^7.20.5", + "@types/babel__traverse": "^7.20.7", + "@types/doctrine": "^0.0.9", + "@types/resolve": "^1.20.2", + "doctrine": "^3.0.0", + "resolve": "^1.22.1", + "strip-indent": "^4.0.0" + }, + "engines": { + "node": "^20.9.0 || >=22" + } }, - "node_modules/@unrs/resolver-binding-linux-x64-gnu": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.12.2.tgz", - "integrity": "sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ==", - "cpu": [ - "x64" - ], + "node_modules/@swc/helpers": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz", + "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.8.0" + } }, - "node_modules/@unrs/resolver-binding-linux-x64-musl": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.12.2.tgz", - "integrity": "sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A==", - "cpu": [ - "x64" - ], + "node_modules/@testing-library/dom": { + "version": "10.4.1", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.4.1.tgz", + "integrity": "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "linux" - ] + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "picocolors": "1.1.1", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } }, - "node_modules/@unrs/resolver-binding-openharmony-arm64": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-openharmony-arm64/-/resolver-binding-openharmony-arm64-1.12.2.tgz", - "integrity": "sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ==", - "cpu": [ - "arm64" - ], + "node_modules/@testing-library/jest-dom": { + "version": "6.9.1", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz", + "integrity": "sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "openharmony" - ] + "dependencies": { + "@adobe/css-tools": "^4.4.0", + "aria-query": "^5.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.6.3", + "picocolors": "^1.1.1", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6", + "yarn": ">=1" + } }, - "node_modules/@unrs/resolver-binding-wasm32-wasi": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.12.2.tgz", - "integrity": "sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A==", - "cpu": [ - "wasm32" - ], + "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", + "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@testing-library/react": { + "version": "16.3.2", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.2.tgz", + "integrity": "sha512-XU5/SytQM+ykqMnAnvB2umaJNIOsLF3PVv//1Ew4CTcpz0/BRyy/af40qqrt7SjKpDdT1saBMc42CUok5gaw+g==", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "@emnapi/core": "1.10.0", - "@emnapi/runtime": "1.10.0", - "@napi-rs/wasm-runtime": "^1.1.4" + "@babel/runtime": "^7.12.5" }, "engines": { - "node": ">=14.0.0" + "node": ">=18" + }, + "peerDependencies": { + "@testing-library/dom": "^10.0.0", + "@types/react": "^18.0.0 || ^19.0.0", + "@types/react-dom": "^18.0.0 || ^19.0.0", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.12.2.tgz", - "integrity": "sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==", - "cpu": [ - "arm64" - ], + "node_modules/@testing-library/user-event": { + "version": "14.6.1", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.6.1.tgz", + "integrity": "sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==", "dev": true, "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } }, - "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.12.2.tgz", - "integrity": "sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g==", - "cpu": [ - "ia32" - ], + "node_modules/@tybys/wasm-util": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz", + "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==", "dev": true, "license": "MIT", "optional": true, - "os": [ - "win32" - ] + "dependencies": { + "tslib": "^2.4.0" + } }, - "node_modules/@unrs/resolver-binding-win32-x64-msvc": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.12.2.tgz", - "integrity": "sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA==", - "cpu": [ - "x64" - ], + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] + "license": "MIT" }, - "node_modules/@vitest/expect": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz", - "integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==", + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "license": "MIT", - "dependencies": { - "@types/chai": "^5.2.2", - "@vitest/spy": "3.2.4", - "@vitest/utils": "3.2.4", - "chai": "^5.2.0", - "tinyrainbow": "^2.0.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "node_modules/@vitest/pretty-format": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz", - "integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==", + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", "dev": true, "license": "MIT", "dependencies": { - "tinyrainbow": "^2.0.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" + "@babel/types": "^7.0.0" } }, - "node_modules/@vitest/spy": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz", - "integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==", + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "license": "MIT", "dependencies": { - "tinyspy": "^4.0.3" - }, - "funding": { - "url": "https://opencollective.com/vitest" + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "node_modules/@vitest/utils": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz", - "integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==", + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/pretty-format": "3.2.4", - "loupe": "^3.1.4", - "tinyrainbow": "^2.0.0" - }, - "funding": { - "url": "https://opencollective.com/vitest" + "@babel/types": "^7.28.2" } }, - "node_modules/@webassemblyjs/ast": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", - "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "node_modules/@types/chai": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", + "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", "dev": true, "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + "@types/deep-eql": "*", + "assertion-error": "^2.0.1" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", - "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "node_modules/@types/deep-eql": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", + "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", "dev": true, "license": "MIT" }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", - "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "node_modules/@types/doctrine": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", + "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", "dev": true, "license": "MIT" }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", - "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "node_modules/@types/estree": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", "dev": true, "license": "MIT" }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", - "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.13.2", - "@webassemblyjs/helper-api-error": "1.13.2", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", - "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", "dev": true, "license": "MIT" }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", - "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "dev": true, - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/wasm-gen": "1.14.1" - } + "license": "MIT" }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", - "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dev": true, "license": "MIT", "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", - "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@xtuc/long": "4.2.2" + "@types/istanbul-lib-coverage": "*" } }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", - "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", - "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dev": true, "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/helper-wasm-section": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-opt": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1", - "@webassemblyjs/wast-printer": "1.14.1" + "@types/istanbul-lib-report": "*" } }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", - "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "node_modules/@types/jest": { + "version": "30.0.0", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-30.0.0.tgz", + "integrity": "sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==", "dev": true, "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" + "expect": "^30.0.0", + "pretty-format": "^30.0.0" } }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", - "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "node_modules/@types/jest/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", - "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "node_modules/@types/jest/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", "dev": true, "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-api-error": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", - "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "node_modules/@types/jsdom": { + "version": "21.1.7", + "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-21.1.7.tgz", + "integrity": "sha512-yOriVnggzrnQ3a9OKOCxaVuSug3w3/SbOj5i7VwXWZEyUNl3bLF9V3MfxGbZKuwqJOQyRfqXyROBB1CoZLFWzA==", "dev": true, "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@xtuc/long": "4.2.2" + "@types/node": "*", + "@types/tough-cookie": "*", + "parse5": "^7.0.0" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true, - "license": "BSD-3-Clause" - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true, - "license": "Apache-2.0" + "license": "MIT" }, - "node_modules/@zip.js/zip.js": { - "version": "2.8.26", - "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.8.26.tgz", - "integrity": "sha512-RQ4h9F6DOiHxpdocUDrOl6xBM+yOtz+LkUol47AVWcfebGBDpZ7w7Xvz9PS24JgXvLGiXXzSAfdCdVy1tPlaFA==", + "node_modules/@types/mdx": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", "dev": true, - "license": "BSD-3-Clause", - "engines": { - "bun": ">=0.7.0", - "deno": ">=1.0.0", - "node": ">=18.0.0" - } + "license": "MIT" }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "node_modules/@types/minimatch": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz", + "integrity": "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "25.9.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.9.1.tgz", + "integrity": "sha512-xfrlY7UD5rMJk3ZVJP8BNzS28J36YJg+xp+LPXV1TdWxr8uMH5A860QNxYDGQe/ylDSgjxE52Q9VnO7p75tJxg==", "dev": true, "license": "MIT", "dependencies": { - "event-target-shim": "^5.0.0" - }, - "engines": { - "node": ">=6.5" + "undici-types": ">=7.24.0 <7.24.7" } }, - "node_modules/acorn": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", - "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", + "node_modules/@types/react": { + "version": "19.2.14", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz", + "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==", "dev": true, "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "dependencies": { + "csstype": "^3.2.2" } }, - "node_modules/acorn-import-phases": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", - "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", "dev": true, "license": "MIT", - "engines": { - "node": ">=10.13.0" - }, "peerDependencies": { - "acorn": "^8.14.0" + "@types/react": "^19.2.0" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/@types/resolve": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", + "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } + "license": "MIT" }, - "node_modules/adjust-sourcemap-loader": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", - "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", + "node_modules/@types/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==", "dev": true, - "license": "MIT", - "dependencies": { - "loader-utils": "^2.0.0", - "regex-parser": "^2.2.11" - }, - "engines": { - "node": ">=8.9" - } + "license": "MIT" }, - "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/tough-cookie": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", + "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "17.0.35", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz", + "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==", "dev": true, "license": "MIT", "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" + "@types/yargs-parser": "*" } }, - "node_modules/agent-base": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", - "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.59.4.tgz", + "integrity": "sha512-PegsU+XfyJJNjd4+u/k6f9yTyp0lEXXiPopUNobZcIAUJFGICFLN+sP0Rb3JehVmiij1Ph0dFGYqODoRo/2+6A==", "dev": true, "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.12.2", + "@typescript-eslint/scope-manager": "8.59.4", + "@typescript-eslint/type-utils": "8.59.4", + "@typescript-eslint/utils": "8.59.4", + "@typescript-eslint/visitor-keys": "8.59.4", + "ignore": "^7.0.5", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.5.0" + }, "engines": { - "node": ">= 14" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.59.4", + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, - "node_modules/ajv": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", - "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", + "node_modules/@typescript-eslint/parser": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.59.4.tgz", + "integrity": "sha512-zORHqO/tuhxY1zWuTvMUqddRxpiFJ72xVfcNoWpqdLjs6lfPbuQBJuW4pk+49/uBMy7Ssr4bzgjiKmmDB1UbZQ==", "dev": true, "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "@typescript-eslint/scope-manager": "8.59.4", + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/typescript-estree": "8.59.4", + "@typescript-eslint/visitor-keys": "8.59.4", + "debug": "^4.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "node_modules/@typescript-eslint/project-service": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.59.4.tgz", + "integrity": "sha512-Ly00Vu4oAacfDeHp2Zg85ioNG6l8HG+tN1D7J+xTHSxu9y0awYKJ2zH1rFBn8ZSfuGK+7FxK3Cgl3uAz0aZZLg==", "dev": true, "license": "MIT", "dependencies": { - "ajv": "^8.0.0" + "@typescript-eslint/tsconfig-utils": "^8.59.4", + "@typescript-eslint/types": "^8.59.4", + "debug": "^4.4.3" }, - "peerDependencies": { - "ajv": "^8.0.0" + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.20.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz", - "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==", + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.59.4.tgz", + "integrity": "sha512-mUeR/3H1WrTAddJrwut8OoPjfauaztMQmRwV5fQTUyNVJCLiUXXe4lGEyYIL2oFDpP7UtgbGJXCt72wT0z2S3Q==", "dev": true, "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.3", - "fast-uri": "^3.0.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2" + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/visitor-keys": "8.59.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true, - "license": "MIT" - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.59.4.tgz", + "integrity": "sha512-DLCpnKgD4alVxTBSKulK+gU1KCqOgUXfDRDXh2mZgzokQKa/70ax93I2uVO3m/LLvIAtWZIFoiifudmIqAxpMA==", "dev": true, "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, "peerDependencies": { - "ajv": "^6.9.1" + "typescript": ">=4.8.4 <6.1.0" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/@typescript-eslint/type-utils": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.59.4.tgz", + "integrity": "sha512-uonTuPAAKr9XaBGqJ3LjYTh72zy5DyGesljO9gtmk/eFW0W1fRHjnwVYKB35Lm8d5Q5CluEW3gPHjTvZTmgrfA==", "dev": true, "license": "MIT", "dependencies": { - "type-fest": "^0.21.3" + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/typescript-estree": "8.59.4", + "@typescript-eslint/utils": "8.59.4", + "debug": "^4.4.3", + "ts-api-utils": "^2.5.0" }, "engines": { - "node": ">=8" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-html": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", - "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", - "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "license": "Apache-2.0", - "bin": { - "ansi-html": "bin/ansi-html" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "node_modules/@typescript-eslint/types": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.59.4.tgz", + "integrity": "sha512-F1o7WJcCq+bc8dwcO/YsSEOudAH8RDtaOhM6wcAQhcUsFhnWQl81JKy48q1hoxAU0qrzM89+31GYh1515Zde3Q==", "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "license": "Apache-2.0", - "bin": { - "ansi-html": "bin/ansi-html" + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.59.4.tgz", + "integrity": "sha512-F+RuOmcDXo4+TPdfd/TCLS3m2nw8gE9XXyZLrA3JBfaA5tz9TtdkyD3YJFmPxulyc2cKbEok/CvFE3MgSLWnag==", "dev": true, "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.59.4", + "@typescript-eslint/tsconfig-utils": "8.59.4", + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/visitor-keys": "8.59.4", + "debug": "^4.4.3", + "minimatch": "^10.2.2", + "semver": "^7.7.3", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.5.0" + }, "engines": { - "node": ">=8" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.1.0" } }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@typescript-eslint/utils": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.59.4.tgz", + "integrity": "sha512-cYXeNAUsG4lJo5dbc1FcKm+JwIWrj1/UpTORsC6tGMjEZ81DYcvIr9/ueikhMa/Y/gDQYGp+YX9/xQrXje5BJw==", "dev": true, "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "@eslint-community/eslint-utils": "^4.9.1", + "@typescript-eslint/scope-manager": "8.59.4", + "@typescript-eslint/types": "8.59.4", + "@typescript-eslint/typescript-estree": "8.59.4" }, "engines": { - "node": ">=8" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", + "typescript": ">=4.8.4 <6.1.0" } }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.59.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.59.4.tgz", + "integrity": "sha512-U3gxVaDVnuZKhSspW/MzMxE1kq7zOdc072FcSNoqA1I9p8HyKbBFfEHoWckBAMgNMph4MamwS5iTVzFmrnt8TQ==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "@typescript-eslint/types": "8.59.4", + "eslint-visitor-keys": "^5.0.0" }, "engines": { - "node": ">= 8" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/anymatch/node_modules/picomatch": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", - "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">=8.6" + "node": "^20.19.0 || ^22.13.0 || >=24" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "url": "https://opencollective.com/eslint" } }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "node_modules/@ungap/structured-clone": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.1.tgz", + "integrity": "sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==", "dev": true, - "license": "Python-2.0" + "license": "ISC" }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "node_modules/@unrs/resolver-binding-android-arm-eabi": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.12.2.tgz", + "integrity": "sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==", + "cpu": [ + "arm" + ], "dev": true, - "license": "Apache-2.0", - "dependencies": { - "dequal": "^2.0.3" - } + "license": "MIT", + "optional": true, + "os": [ + "android" + ] }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", - "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", + "node_modules/@unrs/resolver-binding-android-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.12.2.tgz", + "integrity": "sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "call-bound": "^1.0.3", - "is-array-buffer": "^3.0.5" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "optional": true, + "os": [ + "android" + ] }, - "node_modules/array-differ": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", - "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", + "node_modules/@unrs/resolver-binding-darwin-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.12.2.tgz", + "integrity": "sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-darwin-x64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.12.2.tgz", + "integrity": "sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@unrs/resolver-binding-freebsd-x64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.12.2.tgz", + "integrity": "sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.12.2.tgz", + "integrity": "sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.12.2.tgz", + "integrity": "sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g==", + "cpu": [ + "arm" + ], "dev": true, "license": "MIT", - "engines": { - "node": ">=8" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/array-includes": { - "version": "3.1.9", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", - "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", + "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.12.2.tgz", + "integrity": "sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.8", - "call-bound": "^1.0.4", - "define-properties": "^1.2.1", - "es-abstract": "^1.24.0", - "es-object-atoms": "^1.1.1", - "get-intrinsic": "^1.3.0", - "is-string": "^1.1.1", - "math-intrinsics": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "node_modules/@unrs/resolver-binding-linux-arm64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.12.2.tgz", + "integrity": "sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "engines": { - "node": ">=8" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/array.prototype.findlast": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", - "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", + "node_modules/@unrs/resolver-binding-linux-loong64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-gnu/-/resolver-binding-linux-loong64-gnu-1.12.2.tgz", + "integrity": "sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q==", + "cpu": [ + "loong64" + ], "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/array.prototype.flat": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", - "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", + "node_modules/@unrs/resolver-binding-linux-loong64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-musl/-/resolver-binding-linux-loong64-musl-1.12.2.tgz", + "integrity": "sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew==", + "cpu": [ + "loong64" + ], "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.8", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.5", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", - "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", + "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.12.2.tgz", + "integrity": "sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg==", + "cpu": [ + "ppc64" + ], "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.8", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.5", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", - "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", + "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.12.2.tgz", + "integrity": "sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A==", + "cpu": [ + "riscv64" + ], "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.3", - "es-errors": "^1.3.0", - "es-shim-unscopables": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", - "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", + "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.12.2.tgz", + "integrity": "sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w==", + "cpu": [ + "riscv64" + ], "dev": true, "license": "MIT", - "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.8", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.6", - "is-array-buffer": "^3.0.4" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/arrify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.12.2.tgz", + "integrity": "sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw==", + "cpu": [ + "s390x" + ], "dev": true, "license": "MIT", - "engines": { - "node": ">=8" - } + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "node_modules/@unrs/resolver-binding-linux-x64-gnu": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.12.2.tgz", + "integrity": "sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.3", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", - "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", - "dev": true, - "license": "MIT" + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/assert": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", - "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", - "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.2", - "is-nan": "^1.3.2", - "object-is": "^1.1.5", - "object.assign": "^4.1.4", - "util": "^0.12.5" - } + "node_modules/@unrs/resolver-binding-linux-x64-musl": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.12.2.tgz", + "integrity": "sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/assertion-error": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", - "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "node_modules/@unrs/resolver-binding-openharmony-arm64": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-openharmony-arm64/-/resolver-binding-openharmony-arm64-1.12.2.tgz", + "integrity": "sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ==", + "cpu": [ + "arm64" + ], "dev": true, "license": "MIT", - "engines": { - "node": ">=12" - } + "optional": true, + "os": [ + "openharmony" + ] }, - "node_modules/ast-metadata-inferer": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/ast-metadata-inferer/-/ast-metadata-inferer-0.8.1.tgz", - "integrity": "sha512-ht3Dm6Zr7SXv6t1Ra6gFo0+kLDglHGrEbYihTkcycrbHw7WCcuhBzPlJYHEsIpycaUwzsJHje+vUcxXUX4ztTA==", + "node_modules/@unrs/resolver-binding-wasm32-wasi": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.12.2.tgz", + "integrity": "sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A==", + "cpu": [ + "wasm32" + ], "dev": true, "license": "MIT", + "optional": true, "dependencies": { - "@mdn/browser-compat-data": "^5.6.19" + "@emnapi/core": "1.10.0", + "@emnapi/runtime": "1.10.0", + "@napi-rs/wasm-runtime": "^1.1.4" + }, + "engines": { + "node": ">=14.0.0" } }, - "node_modules/ast-metadata-inferer/node_modules/@mdn/browser-compat-data": { - "version": "5.7.6", - "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-5.7.6.tgz", - "integrity": "sha512-7xdrMX0Wk7grrTZQwAoy1GkvPMFoizStUoL+VmtUkAxegbCCec+3FKwOM6yc/uGU5+BEczQHXAlWiqvM8JeENg==", + "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.12.2.tgz", + "integrity": "sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "CC0-1.0" + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/ast-types": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", - "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.12.2.tgz", + "integrity": "sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g==", + "cpu": [ + "ia32" + ], "dev": true, "license": "MIT", - "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "node_modules/@unrs/resolver-binding-win32-x64-msvc": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.12.2.tgz", + "integrity": "sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA==", + "cpu": [ + "x64" + ], "dev": true, "license": "MIT", - "engines": { - "node": ">=8" - } + "optional": true, + "os": [ + "win32" + ] }, - "node_modules/astring": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", - "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", + "node_modules/@vitest/expect": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz", + "integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==", "dev": true, "license": "MIT", - "peer": true, - "bin": { - "astring": "bin/astring" + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/spy": "3.2.4", + "@vitest/utils": "3.2.4", + "chai": "^5.2.0", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/async-function": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", - "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", + "node_modules/@vitest/pretty-format": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz", + "integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==", "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.4" + "dependencies": { + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/autoprefixer": { - "version": "10.5.0", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.5.0.tgz", - "integrity": "sha512-FMhOoZV4+qR6aTUALKX2rEqGG+oyATvwBt9IIzVR5rMa2HRWPkxf+P+PAJLD1I/H5/II+HuZcBJYEFBpq39ong==", + "node_modules/@vitest/spy": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz", + "integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "license": "MIT", "dependencies": { - "browserslist": "^4.28.2", - "caniuse-lite": "^1.0.30001787", - "fraction.js": "^5.3.4", - "picocolors": "^1.1.1", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" + "tinyspy": "^4.0.3" }, - "peerDependencies": { - "postcss": "^8.1.0" + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "node_modules/@vitest/utils": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz", + "integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==", "dev": true, "license": "MIT", "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "@vitest/pretty-format": "3.2.4", + "loupe": "^3.1.4", + "tinyrainbow": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/vitest" } }, - "node_modules/babel-jest": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-30.4.1.tgz", - "integrity": "sha512-fATAbM8piYxkiXQp3RBXmZHxZVNJZAVXXfyeyCN2Tida3+qJ8ea9UxhiJ2y4fLO90ZImKt6k9FlcH2+rLkJGhw==", + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/transform": "30.4.1", - "@types/babel__core": "^7.20.5", - "babel-plugin-istanbul": "^7.0.1", - "babel-preset-jest": "30.4.0", - "chalk": "^4.1.2", - "graceful-fs": "^4.2.11", - "slash": "^3.0.0" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.11.0 || ^8.0.0-0" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, - "node_modules/babel-loader": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", - "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "dev": true, "license": "MIT", "dependencies": { - "find-cache-dir": "^4.0.0", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0", - "webpack": ">=5" + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" } }, - "node_modules/babel-loader/node_modules/find-cache-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", - "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "dev": true, "license": "MIT", "dependencies": { - "common-path-prefix": "^3.0.0", - "pkg-dir": "^7.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, - "node_modules/babel-loader/node_modules/find-up": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", - "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "dev": true, "license": "MIT", "dependencies": { - "locate-path": "^7.1.0", - "path-exists": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/babel-loader/node_modules/locate-path": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", - "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "dependencies": { - "p-locate": "^6.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@xtuc/long": "4.2.2" } }, - "node_modules/babel-loader/node_modules/p-limit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", - "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "dev": true, "license": "MIT", "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, - "node_modules/babel-loader/node_modules/p-locate": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", - "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "dev": true, "license": "MIT", "dependencies": { - "p-limit": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, - "node_modules/babel-loader/node_modules/path-exists": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", - "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "dev": true, "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, - "node_modules/babel-loader/node_modules/pkg-dir": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", - "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "dev": true, "license": "MIT", "dependencies": { - "find-up": "^6.3.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, - "node_modules/babel-loader/node_modules/yocto-queue": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", - "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "dev": true, "license": "MIT", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" } }, - "node_modules/babel-plugin-istanbul": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.1.tgz", - "integrity": "sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==", + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/@zip.js/zip.js": { + "version": "2.8.26", + "resolved": "https://registry.npmjs.org/@zip.js/zip.js/-/zip.js-2.8.26.tgz", + "integrity": "sha512-RQ4h9F6DOiHxpdocUDrOl6xBM+yOtz+LkUol47AVWcfebGBDpZ7w7Xvz9PS24JgXvLGiXXzSAfdCdVy1tPlaFA==", "dev": true, "license": "BSD-3-Clause", - "workspaces": [ - "test/babel-8" - ], - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.3", - "istanbul-lib-instrument": "^6.0.2", - "test-exclude": "^6.0.0" - }, "engines": { - "node": ">=12" + "bun": ">=0.7.0", + "deno": ">=1.0.0", + "node": ">=18.0.0" } }, - "node_modules/babel-plugin-jest-hoist": { - "version": "30.4.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-30.4.0.tgz", - "integrity": "sha512-9EdtWM/sSfXLOGLwSn+GS6pIXyBnL07/8gyJlwFXjWy4DxMOyItqyUT29d4lQiS380EZwYlX7/At4PgBS+m2aA==", + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dev": true, "license": "MIT", "dependencies": { - "@types/babel__core": "^7.20.5" + "event-target-shim": "^5.0.0" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=6.5" } }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.17", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz", - "integrity": "sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==", + "node_modules/acorn": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", + "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", "dev": true, "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.28.6", - "@babel/helper-define-polyfill-provider": "^0.6.8", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", "bin": { - "semver": "bin/semver.js" + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", - "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", + "node_modules/acorn-import-phases": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/acorn-import-phases/-/acorn-import-phases-1.0.4.tgz", + "integrity": "sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==", "dev": true, "license": "MIT", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.5", - "core-js-compat": "^3.43.0" + "engines": { + "node": ">=10.13.0" }, "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + "acorn": "^8.14.0" } }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.8", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz", - "integrity": "sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "license": "MIT", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.8" - }, "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", - "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==", + "node_modules/adjust-sourcemap-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz", + "integrity": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==", "dev": true, "license": "MIT", "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-import-attributes": "^7.24.7", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5" + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" }, - "peerDependencies": { - "@babel/core": "^7.0.0 || ^8.0.0-0" + "engines": { + "node": ">=8.9" } }, - "node_modules/babel-preset-jest": { - "version": "30.4.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-30.4.0.tgz", - "integrity": "sha512-lBY4jxsNmCnSiu7kquw8ZC9F4+XLMOKypT3RnNHPvU2Kpd4W0xaPuLr5ZkRyOsvLYAY4yaW1ZwTW4xB7NIiZzg==", + "node_modules/adjust-sourcemap-loader/node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "license": "MIT", "dependencies": { - "babel-plugin-jest-hoist": "30.4.0", - "babel-preset-current-node-syntax": "^1.2.0" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.11.0 || ^8.0.0-beta.1" + "node": ">=8.9.0" } }, - "node_modules/balanced-match": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", - "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", + "node_modules/agent-base": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", "dev": true, "license": "MIT", "engines": { - "node": "18 || 20 || >=22" + "node": ">= 14" } }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/baseline-browser-mapping": { - "version": "2.10.31", - "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.31.tgz", - "integrity": "sha512-MujYO3eP72uvmSE0i4wltsodRfIpZATP3jvzRNRGGxgzId7aVocVJJV3nf01qnzzKFGxQVC9bpWxl5cjxTr/7Q==", + "node_modules/ajv": { + "version": "6.15.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz", + "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==", "dev": true, - "license": "Apache-2.0", - "bin": { - "baseline-browser-mapping": "dist/cli.cjs" + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, - "engines": { - "node": ">=6.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, "license": "MIT", - "engines": { - "node": "*" + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } } }, - "node_modules/bn.js": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.3.tgz", - "integrity": "sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==", + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.20.0.tgz", + "integrity": "sha512-Thbli+OlOj+iMPYFBVBfJ3OmCAnaSyNn4M1vz9T6Gka5Jt9ba/HIR56joy65tY6kx/FCF5VXNB819Y7/GUrBGA==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } }, - "node_modules/boolbase": { + "node_modules/ajv-formats/node_modules/json-schema-traverse": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true, - "license": "ISC" + "license": "MIT" }, - "node_modules/brace-expansion": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz", - "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==", + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, "license": "MIT", - "dependencies": { - "balanced-match": "^4.0.2" - }, - "engines": { - "node": "18 || 20 || >=22" + "peerDependencies": { + "ajv": "^6.9.1" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "license": "MIT", "dependencies": { - "fill-range": "^7.1.1" + "type-fest": "^0.21.3" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", - "dev": true, - "license": "MIT" - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "node_modules/ansi-html": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.9.tgz", + "integrity": "sha512-ozbS3LuenHVxNRh/wdnN16QapUHzauqSomAl1jwwJRRsGwFwtj644lIhxfWu0Fy0acCij2+AEgHvjscq3dlVXg==", "dev": true, - "license": "MIT", - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" } }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true, - "license": "MIT", - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" } }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "engines": { + "node": ">=8" } }, - "node_modules/browserify-rsa": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz", - "integrity": "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==", + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "license": "MIT", - "dependencies": { - "bn.js": "^5.2.1", - "randombytes": "^2.1.0", - "safe-buffer": "^5.2.1" + "dependencies": { + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 0.10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/browserify-sign": { - "version": "4.2.5", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.5.tgz", - "integrity": "sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==", + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "license": "ISC", "dependencies": { - "bn.js": "^5.2.2", - "browserify-rsa": "^4.1.1", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.6.1", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.9", - "readable-stream": "^2.3.8", - "safe-buffer": "^5.2.1" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" }, "engines": { - "node": ">= 0.10" + "node": ">= 8" } }, - "node_modules/browserify-sign/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/browserify-sign/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/browserify-sign/node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, - "license": "MIT" + "license": "Python-2.0" }, - "node_modules/browserify-sign/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "dependencies": { - "safe-buffer": "~5.1.0" + "dequal": "^2.0.3" } }, - "node_modules/browserify-sign/node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, - "license": "MIT" - }, - "node_modules/browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "node_modules/array-buffer-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz", + "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==", "dev": true, "license": "MIT", "dependencies": { - "pako": "~1.0.5" + "call-bound": "^1.0.3", + "is-array-buffer": "^3.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/browserslist": { - "version": "4.28.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", - "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", + "node_modules/array-differ": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "license": "MIT", - "dependencies": { - "baseline-browser-mapping": "^2.10.12", - "caniuse-lite": "^1.0.30001782", - "electron-to-chromium": "^1.5.328", - "node-releases": "^2.0.36", - "update-browserslist-db": "^1.2.3" - }, - "bin": { - "browserslist": "cli.js" - }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">=8" } }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "node_modules/array-includes": { + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz", + "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "node-int64": "^0.4.0" + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.0", + "es-object-atoms": "^1.1.1", + "get-intrinsic": "^1.3.0", + "is-string": "^1.1.1", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "engines": { + "node": ">=8" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/bundle-name": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", - "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "node_modules/array.prototype.findlast": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz", + "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==", "dev": true, "license": "MIT", "dependencies": { - "run-applescript": "^7.0.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" }, "engines": { - "node": ">=18" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cacheable": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-2.3.5.tgz", - "integrity": "sha512-EQfaKe09tl615iNvq/TBRWTFf1AKJNXYQSsMx0Z3EI0nA+pVsVPS8wJhnRlkbdacKPh1d0qVIhwTc2zsQNFEEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@cacheable/memory": "^2.0.8", - "@cacheable/utils": "^2.4.1", - "hookified": "^1.15.0", - "keyv": "^5.6.0", - "qified": "^0.10.1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacheable/node_modules/keyv": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.6.0.tgz", - "integrity": "sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==", + "node_modules/array.prototype.flat": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz", + "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==", "dev": true, "license": "MIT", "dependencies": { - "@keyv/serialize": "^1.1.1" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/call-bind": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz", - "integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==", + "node_modules/array.prototype.flatmap": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz", + "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==", "dev": true, "license": "MIT", "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "es-define-property": "^1.0.1", - "get-intrinsic": "^1.3.0", - "set-function-length": "^1.2.2" + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -12551,29 +8303,37 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/call-bind-apply-helpers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", - "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "node_modules/array.prototype.tosorted": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz", + "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==", "dev": true, "license": "MIT", "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.3", "es-errors": "^1.3.0", - "function-bind": "^1.1.2" + "es-shim-unscopables": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, - "node_modules/call-bound": { + "node_modules/arraybuffer.prototype.slice": { "version": "1.0.4", - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", - "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz", + "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "get-intrinsic": "^1.3.0" + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.8", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "is-array-buffer": "^3.0.4" }, "engines": { "node": ">= 0.4" @@ -12582,1249 +8342,1115 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", - "dev": true, - "license": "MIT", - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "node_modules/asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", "dev": true, "license": "MIT", "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001793", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001793.tgz", - "integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" - }, - "node_modules/case-sensitive-paths-webpack-plugin": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", - "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } + "license": "MIT" }, - "node_modules/chai": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz", - "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", + "node_modules/assert": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", + "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", "dev": true, "license": "MIT", "dependencies": { - "assertion-error": "^2.0.1", - "check-error": "^2.1.1", - "deep-eql": "^5.0.1", - "loupe": "^3.1.0", - "pathval": "^2.0.0" - }, - "engines": { - "node": ">=18" + "call-bind": "^1.0.2", + "is-nan": "^1.3.2", + "object-is": "^1.1.5", + "object.assign": "^4.1.4", + "util": "^0.12.5" } }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", "dev": true, "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=12" } }, - "node_modules/chalk/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/ast-metadata-inferer": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/ast-metadata-inferer/-/ast-metadata-inferer-0.8.1.tgz", + "integrity": "sha512-ht3Dm6Zr7SXv6t1Ra6gFo0+kLDglHGrEbYihTkcycrbHw7WCcuhBzPlJYHEsIpycaUwzsJHje+vUcxXUX4ztTA==", "dev": true, "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/change-case": { - "version": "5.4.4", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-5.4.4.tgz", - "integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" + "@mdn/browser-compat-data": "^5.6.19" } }, - "node_modules/check-error": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz", - "integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==", + "node_modules/ast-metadata-inferer/node_modules/@mdn/browser-compat-data": { + "version": "5.7.6", + "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-5.7.6.tgz", + "integrity": "sha512-7xdrMX0Wk7grrTZQwAoy1GkvPMFoizStUoL+VmtUkAxegbCCec+3FKwOM6yc/uGU5+BEczQHXAlWiqvM8JeENg==", "dev": true, - "license": "MIT", - "engines": { - "node": ">= 16" - } + "license": "CC0-1.0" }, - "node_modules/chokidar": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", - "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "node_modules/ast-types": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", "dev": true, "license": "MIT", "dependencies": { - "readdirp": "^4.0.1" + "tslib": "^2.0.1" }, "engines": { - "node": ">= 14.16.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" + "node": ">=4" } }, - "node_modules/chromatic": { - "version": "16.6.3", - "resolved": "https://registry.npmjs.org/chromatic/-/chromatic-16.6.3.tgz", - "integrity": "sha512-N9WCRuezqrxujRvgnAlE9XKxXcF6q2kowKH2Ba82FYkRc4xlY9g8r+ESEph9jLv500s43/9oDmB/kZ9r24BcgQ==", + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", "dev": true, "license": "MIT", - "dependencies": { - "semver": "^7.3.5" - }, - "bin": { - "chroma": "dist/bin.cjs", - "chromatic": "dist/bin.cjs", - "chromatic-cli": "dist/bin.cjs" - }, - "peerDependencies": { - "@chromatic-com/cypress": "^0.*.* || ^1.0.0", - "@chromatic-com/playwright": "^0.*.* || ^1.0.0", - "@chromatic-com/vitest": "^0.*.* || ^1.0.0" - }, - "peerDependenciesMeta": { - "@chromatic-com/cypress": { - "optional": true - }, - "@chromatic-com/playwright": { - "optional": true - }, - "@chromatic-com/vitest": { - "optional": true - } + "engines": { + "node": ">=8" } }, - "node_modules/chrome-trace-event": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", - "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "node_modules/astring": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", + "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", "dev": true, "license": "MIT", - "engines": { - "node": ">=6.0" + "peer": true, + "bin": { + "astring": "bin/astring" } }, - "node_modules/ci-info": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz", - "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==", + "node_modules/async-function": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz", + "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/cipher-base": { + "node_modules/available-typed-arrays": { "version": "1.0.7", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.7.tgz", - "integrity": "sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, "license": "MIT", "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1", - "to-buffer": "^1.2.2" + "possible-typed-array-names": "^1.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cjs-module-lexer": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", - "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/clean-css": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", - "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "node_modules/babel-jest": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-30.4.1.tgz", + "integrity": "sha512-fATAbM8piYxkiXQp3RBXmZHxZVNJZAVXXfyeyCN2Tida3+qJ8ea9UxhiJ2y4fLO90ZImKt6k9FlcH2+rLkJGhw==", "dev": true, "license": "MIT", "dependencies": { - "source-map": "~0.6.0" + "@jest/transform": "30.4.1", + "@types/babel__core": "^7.20.5", + "babel-plugin-istanbul": "^7.0.1", + "babel-preset-jest": "30.4.0", + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "slash": "^3.0.0" }, "engines": { - "node": ">= 10.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0 || ^8.0.0-0" } }, - "node_modules/clean-css/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/babel-loader": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", + "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", + "dependencies": { + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 14.15.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/cli-cursor": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", - "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", + "node_modules/babel-loader/node_modules/find-cache-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", "dev": true, "license": "MIT", "dependencies": { - "restore-cursor": "^5.0.0" + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" }, "engines": { - "node": ">=18" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-truncate": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-5.2.0.tgz", - "integrity": "sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==", + "node_modules/babel-loader/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "dev": true, "license": "MIT", "dependencies": { - "slice-ansi": "^8.0.0", - "string-width": "^8.2.0" + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" }, "engines": { - "node": ">=20" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "8.2.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-8.2.1.tgz", - "integrity": "sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==", + "node_modules/babel-loader/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "dev": true, "license": "MIT", "dependencies": { - "get-east-asian-width": "^1.5.0", - "strip-ansi": "^7.1.2" + "p-locate": "^6.0.0" }, "engines": { - "node": ">=20" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/client-only": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", - "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", - "dev": true, - "license": "MIT" - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "node_modules/babel-loader/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" + "yocto-queue": "^1.0.0" }, "engines": { - "node": ">=12" - } - }, - "node_modules/cliui/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/cliui/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cliui/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/babel-loader/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "dev": true, "license": "MIT", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "p-limit": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cliui/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/babel-loader/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", "dev": true, "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/cliui/node_modules/wrap-ansi": { + "node_modules/babel-loader/node_modules/pkg-dir": { "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "find-up": "^6.3.0" }, "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "node_modules/babel-loader/node_modules/yocto-queue": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.2.tgz", + "integrity": "sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==", "dev": true, "license": "MIT", "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz", - "integrity": "sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==", + "node_modules/babel-plugin-istanbul": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.1.tgz", + "integrity": "sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==", "dev": true, - "license": "MIT" + "license": "BSD-3-Clause", + "workspaces": [ + "test/babel-8" + ], + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-instrument": "^6.0.2", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=12" + } }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/babel-plugin-jest-hoist": { + "version": "30.4.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-30.4.0.tgz", + "integrity": "sha512-9EdtWM/sSfXLOGLwSn+GS6pIXyBnL07/8gyJlwFXjWy4DxMOyItqyUT29d4lQiS380EZwYlX7/At4PgBS+m2aA==", "dev": true, "license": "MIT", "dependencies": { - "color-name": "~1.1.4" + "@types/babel__core": "^7.20.5" }, "engines": { - "node": ">=7.0.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "dev": true, - "license": "MIT" - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/colorjs.io": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.5.2.tgz", - "integrity": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==", - "dev": true, - "license": "MIT" - }, - "node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.17", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.17.tgz", + "integrity": "sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==", "dev": true, "license": "MIT", - "engines": { - "node": ">= 12" + "dependencies": { + "@babel/compat-data": "^7.28.6", + "@babel/helper-define-polyfill-provider": "^0.6.8", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/common-path-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "license": "ISC" + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.13.0.tgz", + "integrity": "sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.5", + "core-js-compat": "^3.43.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } }, - "node_modules/component-emitter": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-2.0.0.tgz", - "integrity": "sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==", + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.8.tgz", + "integrity": "sha512-M762rNHfSF1EV3SLtnCJXFoQbbIIz0OyRwnCmV0KPC7qosSfCO0QLTSuJX3ayAebubhE6oYBAYPrBA5ljowaZg==", "dev": true, "license": "MIT", - "engines": { - "node": ">=18" + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.8" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "node_modules/babel-preset-current-node-syntax": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", + "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-import-attributes": "^7.24.7", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5" + }, + "peerDependencies": { + "@babel/core": "^7.0.0 || ^8.0.0-0" + } }, - "node_modules/concurrently": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.2.1.tgz", - "integrity": "sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==", + "node_modules/babel-preset-jest": { + "version": "30.4.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-30.4.0.tgz", + "integrity": "sha512-lBY4jxsNmCnSiu7kquw8ZC9F4+XLMOKypT3RnNHPvU2Kpd4W0xaPuLr5ZkRyOsvLYAY4yaW1ZwTW4xB7NIiZzg==", "dev": true, "license": "MIT", "dependencies": { - "chalk": "4.1.2", - "rxjs": "7.8.2", - "shell-quote": "1.8.3", - "supports-color": "8.1.1", - "tree-kill": "1.2.2", - "yargs": "17.7.2" - }, - "bin": { - "conc": "dist/bin/concurrently.js", - "concurrently": "dist/bin/concurrently.js" + "babel-plugin-jest-hoist": "30.4.0", + "babel-preset-current-node-syntax": "^1.2.0" }, "engines": { - "node": ">=18" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" }, - "funding": { - "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" + "peerDependencies": { + "@babel/core": "^7.11.0 || ^8.0.0-beta.1" } }, - "node_modules/console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", - "dev": true - }, - "node_modules/constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "node_modules/balanced-match": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", + "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": "18 || 20 || >=22" + } }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT" }, - "node_modules/core-js-compat": { - "version": "3.49.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.49.0.tgz", - "integrity": "sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==", + "node_modules/baseline-browser-mapping": { + "version": "2.10.31", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.31.tgz", + "integrity": "sha512-MujYO3eP72uvmSE0i4wltsodRfIpZATP3jvzRNRGGxgzId7aVocVJJV3nf01qnzzKFGxQVC9bpWxl5cjxTr/7Q==", "dev": true, - "license": "MIT", - "dependencies": { - "browserslist": "^4.28.1" + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.cjs" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "engines": { + "node": ">=6.0.0" } }, - "node_modules/core-js-pure": { - "version": "3.49.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.49.0.tgz", - "integrity": "sha512-XM4RFka59xATyJv/cS3O3Kml72hQXUeGRuuTmMYFxwzc9/7C8OYTaIR/Ji+Yt8DXzsFLNhat15cE/JP15HrCgw==", + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true, - "hasInstallScript": true, "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "engines": { + "node": "*" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "node_modules/bn.js": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.3.tgz", + "integrity": "sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==", "dev": true, "license": "MIT" }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true, + "license": "ISC" + }, + "node_modules/brace-expansion": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz", + "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==", "dev": true, "license": "MIT", "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" + "balanced-match": "^4.0.2" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": "18 || 20 || >=22" } }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "dev": true, "license": "MIT", "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.3", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", - "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", "dev": true, "license": "MIT" }, - "node_modules/create-hash": { + "node_modules/browserify-aes": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", "dev": true, "license": "MIT", "dependencies": { - "cipher-base": "^1.0.1", + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" + "safe-buffer": "^5.0.1" } }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", "dev": true, "license": "MIT", "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" } }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", "dev": true, "license": "MIT", "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/crypto-browserify": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz", - "integrity": "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==", + "node_modules/browserify-rsa": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz", + "integrity": "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==", "dev": true, "license": "MIT", "dependencies": { - "browserify-cipher": "^1.0.1", - "browserify-sign": "^4.2.3", - "create-ecdh": "^4.0.4", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "diffie-hellman": "^5.0.3", - "hash-base": "~3.0.4", - "inherits": "^2.0.4", - "pbkdf2": "^3.1.2", - "public-encrypt": "^4.0.3", + "bn.js": "^5.2.1", "randombytes": "^2.1.0", - "randomfill": "^1.0.4" + "safe-buffer": "^5.2.1" }, "engines": { "node": ">= 0.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/css-blank-pseudo": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-8.0.1.tgz", - "integrity": "sha512-C5B2e5hCM4llrQkUms+KnWEMVW8K1n2XvX9G7ppfMZJQ7KAS/4rNnkP1Cs+HhWriOz1mWWTMFD4j1J7s31Dgug==", + "node_modules/browserify-sign": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.5.tgz", + "integrity": "sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "ISC", "dependencies": { - "postcss-selector-parser": "^7.1.1" + "bn.js": "^5.2.2", + "browserify-rsa": "^4.1.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.6.1", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.9", + "readable-stream": "^2.3.8", + "safe-buffer": "^5.2.1" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">= 0.10" } }, - "node_modules/css-declaration-sorter": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.4.0.tgz", - "integrity": "sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw==", + "node_modules/browserify-sign/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true, - "license": "ISC", - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.0.9" - } + "license": "MIT" }, - "node_modules/css-functions-list": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.3.3.tgz", - "integrity": "sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==", + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, "license": "MIT", - "engines": { - "node": ">=12" + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/css-has-pseudo": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-8.0.0.tgz", - "integrity": "sha512-Uz/bsHRbOeir/5Oeuz85tq/yLJLxX+3dpoRdjNTshs6jjqwUg8XaEZGDd0ci3fw7l53Srw0EkJ8mYan0eW5uGQ==", + "node_modules/browserify-sign/node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "@csstools/selector-specificity": "^6.0.0", - "postcss-selector-parser": "^7.1.1", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } + "license": "MIT" }, - "node_modules/css-loader": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", - "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "node_modules/browserify-sign/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "license": "MIT", "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.33", - "postcss-modules-extract-imports": "^3.1.0", - "postcss-modules-local-by-default": "^4.0.5", - "postcss-modules-scope": "^3.2.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.5.4" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "webpack": { - "optional": true - } + "safe-buffer": "~5.1.0" + } + }, + "node_modules/browserify-sign/node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pako": "~1.0.5" } }, - "node_modules/css-prefers-color-scheme": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-11.0.0.tgz", - "integrity": "sha512-fv0mgtwUhh2m9iio3Kxc2CkrogjIaRdMFaaqyzSFdii17JF4cfPyMNX72B15ZW2Nrr/NZUpxI4dec1VMHYJvdw==", + "node_modules/browserslist": { + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/csstools" + "type": "opencollective", + "url": "https://opencollective.com/browserslist" }, { - "type": "opencollective", - "url": "https://opencollective.com/csstools" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.10.12", + "caniuse-lite": "^1.0.30001782", + "electron-to-chromium": "^1.5.328", + "node-releases": "^2.0.36", + "update-browserslist-db": "^1.2.3" }, - "peerDependencies": { - "postcss": "^8.4" + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, - "license": "BSD-2-Clause", + "license": "Apache-2.0", "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "node-int64": "^0.4.0" } }, - "node_modules/css-tokenize": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/css-tokenize/-/css-tokenize-1.0.1.tgz", - "integrity": "sha512-gLmmbJdwH9HLY4bcA17lnZ8GgPwEXRbvxBJGHnkiB6gLhRpTzjkjtMIvz7YORGW/Ptv2oMk8b5g+u7mRD6Dd7A==", + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "^1.0.33" + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/css-tokenize/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true, "license": "MIT" }, - "node_modules/css-tokenize/node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } + "license": "MIT" }, - "node_modules/css-tokenize/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", "dev": true, "license": "MIT" }, - "node_modules/css-tree": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz", - "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==", + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", "dev": true, "license": "MIT", "dependencies": { - "mdn-data": "2.27.1", - "source-map-js": "^1.2.1" + "run-applescript": "^7.0.0" }, "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" - } - }, - "node_modules/css-what": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", - "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", - "dev": true, - "license": "MIT" - }, - "node_modules/cssdb": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-8.9.0.tgz", - "integrity": "sha512-J8jOU/hLjaXcO1LldOLraJSQpfLXRKof0I7mtbRyOy2AAXgqst0x9rlgi2qXeD6d0ou3ZLqcPAMqYVbpCbrxEw==", + "node_modules/cacheable": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/cacheable/-/cacheable-2.3.5.tgz", + "integrity": "sha512-EQfaKe09tl615iNvq/TBRWTFf1AKJNXYQSsMx0Z3EI0nA+pVsVPS8wJhnRlkbdacKPh1d0qVIhwTc2zsQNFEEg==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - } - ], - "license": "MIT-0" + "license": "MIT", + "dependencies": { + "@cacheable/memory": "^2.0.8", + "@cacheable/utils": "^2.4.1", + "hookified": "^1.15.0", + "keyv": "^5.6.0", + "qified": "^0.10.1" + } }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "node_modules/cacheable/node_modules/keyv": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-5.6.0.tgz", + "integrity": "sha512-CYDD3SOtsHtyXeEORYRx2qBtpDJFjRTGXUtmNEMGyzYOKj1TE3tycdlho7kA1Ufx9OYWZzg52QFBGALTirzDSw==", "dev": true, "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" + "dependencies": { + "@keyv/serialize": "^1.1.1" } }, - "node_modules/cssnano": { - "version": "7.1.9", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-7.1.9.tgz", - "integrity": "sha512-uPR75+5Dk/WJ/YSPR1/YDHdwMM9c5FsaARljfKWgeCKLKOtJ0we21xy/RcCjn53fZnD/f6yYEIZ8pu18+GnbNQ==", + "node_modules/call-bind": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz", + "integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==", "dev": true, "license": "MIT", "dependencies": { - "cssnano-preset-default": "^7.0.17", - "lilconfig": "^3.1.3" + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "get-intrinsic": "^1.3.0", + "set-function-length": "^1.2.2" }, "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.5.13" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cssnano-preset-default": { - "version": "7.0.17", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.17.tgz", - "integrity": "sha512-11qO63A+czwguQFJCaTdICvbaxn0pJzz/XghLlv+OT7WyToDxAMR0Xb3/26/l0y0hQJywwNbj/SLSQlGBHE1OA==", + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", "dev": true, "license": "MIT", "dependencies": { - "browserslist": "^4.28.2", - "css-declaration-sorter": "^7.2.0", - "cssnano-utils": "^5.0.3", - "postcss-calc": "^10.1.1", - "postcss-colormin": "^7.0.10", - "postcss-convert-values": "^7.0.12", - "postcss-discard-comments": "^7.0.8", - "postcss-discard-duplicates": "^7.0.4", - "postcss-discard-empty": "^7.0.3", - "postcss-discard-overridden": "^7.0.3", - "postcss-merge-longhand": "^7.0.7", - "postcss-merge-rules": "^7.0.11", - "postcss-minify-font-values": "^7.0.3", - "postcss-minify-gradients": "^7.0.5", - "postcss-minify-params": "^7.0.9", - "postcss-minify-selectors": "^7.1.2", - "postcss-normalize-charset": "^7.0.3", - "postcss-normalize-display-values": "^7.0.3", - "postcss-normalize-positions": "^7.0.4", - "postcss-normalize-repeat-style": "^7.0.4", - "postcss-normalize-string": "^7.0.3", - "postcss-normalize-timing-functions": "^7.0.3", - "postcss-normalize-unicode": "^7.0.9", - "postcss-normalize-url": "^7.0.3", - "postcss-normalize-whitespace": "^7.0.3", - "postcss-ordered-values": "^7.0.4", - "postcss-reduce-initial": "^7.0.9", - "postcss-reduce-transforms": "^7.0.3", - "postcss-svgo": "^7.1.3", - "postcss-unique-selectors": "^7.0.7" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" }, "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" - }, - "peerDependencies": { - "postcss": "^8.5.13" + "node": ">= 0.4" } }, - "node_modules/cssnano-utils": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-5.0.3.tgz", - "integrity": "sha512-ynIREMICLxkxm7e9bCR9sh75s4Q5drICi0ua1yxo5jH2XPBqSKkl4dOh4EbFqtUmnTMhRffHgYL0EKKkMjtJTg==", + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", "dev": true, "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "node": ">= 0.4" }, - "peerDependencies": { - "postcss": "^8.5.13" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "license": "MIT", - "dependencies": { - "css-tree": "~2.2.0" - }, "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "node": ">=6" } }, - "node_modules/csso/node_modules/css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "license": "MIT", "dependencies": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" } }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, - "license": "CC0-1.0" + "license": "MIT", + "engines": { + "node": ">=6" + } }, - "node_modules/cssstyle": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.6.0.tgz", - "integrity": "sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==", + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "dev": true, "license": "MIT", "dependencies": { - "@asamuzakjp/css-color": "^3.2.0", - "rrweb-cssom": "^0.8.0" - }, - "engines": { - "node": ">=18" + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "node_modules/csstype": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", - "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "node_modules/caniuse-lite": { + "version": "1.0.30001793", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001793.tgz", + "integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==", "dev": true, - "license": "MIT" + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" }, - "node_modules/cuint": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", - "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=4" + } }, - "node_modules/data-urls": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", - "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", + "node_modules/chai": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz", + "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", "dev": true, "license": "MIT", "dependencies": { - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.0.0" + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" }, "engines": { "node": ">=18" } }, - "node_modules/data-view-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", - "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.3", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/data-view-byte-length": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", - "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.3", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.2" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/inspect-js" + "node": ">=8" } }, - "node_modules/data-view-byte-offset": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", - "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", + "node_modules/change-case": { + "version": "5.4.4", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-5.4.4.tgz", + "integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-error": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz", + "integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" + "readdirp": "^4.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">= 14.16.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://paulmillr.com/funding/" } }, - "node_modules/debug": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", - "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "node_modules/chromatic": { + "version": "16.6.3", + "resolved": "https://registry.npmjs.org/chromatic/-/chromatic-16.6.3.tgz", + "integrity": "sha512-N9WCRuezqrxujRvgnAlE9XKxXcF6q2kowKH2Ba82FYkRc4xlY9g8r+ESEph9jLv500s43/9oDmB/kZ9r24BcgQ==", "dev": true, "license": "MIT", "dependencies": { - "ms": "^2.1.3" + "semver": "^7.3.5" }, - "engines": { - "node": ">=6.0" + "bin": { + "chroma": "dist/bin.cjs", + "chromatic": "dist/bin.cjs", + "chromatic-cli": "dist/bin.cjs" + }, + "peerDependencies": { + "@chromatic-com/cypress": "^0.*.* || ^1.0.0", + "@chromatic-com/playwright": "^0.*.* || ^1.0.0", + "@chromatic-com/vitest": "^0.*.* || ^1.0.0" }, "peerDependenciesMeta": { - "supports-color": { + "@chromatic-com/cypress": { "optional": true + }, + "@chromatic-com/playwright": { + "optional": true + }, + "@chromatic-com/vitest": { + "optional": true + } + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz", + "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" } + ], + "license": "MIT", + "engines": { + "node": ">=8" } }, - "node_modules/decimal.js": { - "version": "10.6.0", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", - "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==", - "dev": true, - "license": "MIT" - }, - "node_modules/decode-uri-component": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.4.1.tgz", - "integrity": "sha512-+8VxcR21HhTy8nOt6jf20w0c9CADrw1O8d+VZ/YzzCt4bJ3uBjw+D1q2osAB8RnpwwaeYBxy0HyKQxD5JBMuuQ==", + "node_modules/cipher-base": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.7.tgz", + "integrity": "sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==", "dev": true, "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1", + "to-buffer": "^1.2.2" + }, "engines": { - "node": ">=14.16" + "node": ">= 0.10" } }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "node_modules/cjs-module-lexer": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", + "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", "dev": true, "license": "MIT" }, - "node_modules/deep-eql": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", - "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "dev": true, "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, "engines": { - "node": ">=6" + "node": ">= 10.0" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, - "node_modules/default-browser": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz", - "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==", + "node_modules/cli-cursor": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", "dev": true, "license": "MIT", "dependencies": { - "bundle-name": "^4.1.0", - "default-browser-id": "^5.0.0" + "restore-cursor": "^5.0.0" }, "engines": { "node": ">=18" @@ -13833,687 +9459,786 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/default-browser-id": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz", - "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==", + "node_modules/cli-truncate": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-5.2.0.tgz", + "integrity": "sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==", "dev": true, "license": "MIT", + "dependencies": { + "slice-ansi": "^8.0.0", + "string-width": "^8.2.0" + }, "engines": { - "node": ">=18" + "node": ">=20" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "node_modules/cli-truncate/node_modules/string-width": { + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-8.2.1.tgz", + "integrity": "sha512-IIaP0g3iy9Cyy18w3M9YcaDudujEAVHKt3a3QJg1+sr/oX96TbaGUubG0hJyCjCBThFH+tFpcIyoUHUn1ogaLA==", "dev": true, "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" + "get-east-asian-width": "^1.5.0", + "strip-ansi": "^7.1.2" }, "engines": { - "node": ">= 0.4" + "node": ">=20" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/define-lazy-prop": { + "node_modules/client-only": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", + "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==", + "dev": true, + "license": "MIT" + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/cliui/node_modules/is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "license": "MIT", "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/del": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/del/-/del-8.0.1.tgz", - "integrity": "sha512-gPqh0mKTPvaUZGAuHbrBUYKZWBNAeHG7TU3QH5EhVwPMyKvmfJaNXhcD2jTcXsJRRcffuho4vaYweu80dRrMGA==", + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", "dependencies": { - "globby": "^14.0.2", - "is-glob": "^4.0.3", - "is-path-cwd": "^3.0.0", - "is-path-inside": "^4.0.0", - "p-map": "^7.0.2", - "presentable-error": "^0.0.1", - "slash": "^5.1.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/del/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, "engines": { - "node": ">=14.16" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" } }, - "node_modules/des.js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", - "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "node_modules/collect-v8-coverage": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz", + "integrity": "sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==", + "dev": true, + "license": "MIT" + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "license": "MIT", "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/detect-libc": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", - "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true, + "license": "MIT" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/colorjs.io": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.5.2.tgz", + "integrity": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==", "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 12" } }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", "dev": true, - "license": "MIT", - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } + "license": "ISC" }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.3", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", - "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true, "license": "MIT" }, - "node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/component-emitter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-2.0.0.tgz", + "integrity": "sha512-4m5s3Me2xxlVKG9PkZpQqHQR7bgpnN7joDMJ4yvVkVXngjoITG76IaZmzmywSeRTeTpc6N6r3H3+KyUurV8OYw==", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "esutils": "^2.0.2" - }, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/doiuse": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/doiuse/-/doiuse-6.0.6.tgz", - "integrity": "sha512-XuPRslcWHhQJ+WjCjimRUcNfhZvOiC0610FsY6WeSlzXvoZYtm6iOpR9K0N4wRoM/lP4i7LatT+IhltAzouSOw==", + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/concurrently": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.2.1.tgz", + "integrity": "sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==", "dev": true, "license": "MIT", "dependencies": { - "browserslist": "^4.28.1", - "caniuse-lite": "^1.0.30001760", - "css-tokenize": "^1.0.1", - "duplexify": "^4.1.3", - "multimatch": "^5.0.0", - "postcss": "^8.5.6", - "source-map": "^0.7.6", - "yargs": "^17.7.2" + "chalk": "4.1.2", + "rxjs": "7.8.2", + "shell-quote": "1.8.3", + "supports-color": "8.1.1", + "tree-kill": "1.2.2", + "yargs": "17.7.2" }, "bin": { - "doiuse": "bin/cli.js" + "conc": "dist/bin/concurrently.js", + "concurrently": "dist/bin/concurrently.js" }, "engines": { - "node": ">=16" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" } }, - "node_modules/dom-accessibility-api": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", "dev": true, "license": "MIT" }, - "node_modules/dom-converter": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true, - "license": "MIT", - "dependencies": { - "utila": "~0.4" - } + "license": "MIT" }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "node_modules/core-js-compat": { + "version": "3.49.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.49.0.tgz", + "integrity": "sha512-VQXt1jr9cBz03b331DFDCCP90b3fanciLkgiOoy8SBHy06gNf+vQ1A3WFLqG7I8TipYIKeYK9wxd0tUrvHcOZA==", "dev": true, "license": "MIT", "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "browserslist": "^4.28.1" }, "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/dom-serializer/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "dev": true, - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/domain-browser": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-4.23.0.tgz", - "integrity": "sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA==", + "node_modules/core-js-pure": { + "version": "3.49.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.49.0.tgz", + "integrity": "sha512-XM4RFka59xATyJv/cS3O3Kml72hQXUeGRuuTmMYFxwzc9/7C8OYTaIR/Ji+Yt8DXzsFLNhat15cE/JP15HrCgw==", "dev": true, - "license": "Artistic-2.0", - "engines": { - "node": ">=10" - }, + "hasInstallScript": true, + "license": "MIT", "funding": { - "url": "https://bevry.me/fund" + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" + "license": "MIT" }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "domelementtype": "^2.2.0" + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" }, "engines": { - "node": ">= 4" + "node": ">=14" }, "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" } }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", + "dev": true, + "license": "MIT" + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", "dev": true, "license": "MIT", "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" } }, - "node_modules/dunder-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", - "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", "dependencies": { - "call-bind-apply-helpers": "^1.0.1", - "es-errors": "^1.3.0", - "gopd": "^1.2.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">= 0.4" - } - }, - "node_modules/duplexify": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.3.tgz", - "integrity": "sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==", - "dev": true, - "license": "MIT", - "dependencies": { - "end-of-stream": "^1.4.1", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1", - "stream-shift": "^1.0.2" + "node": ">= 8" } }, - "node_modules/duplexify/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/crypto-browserify": { + "version": "3.12.1", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz", + "integrity": "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==", "dev": true, "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "browserify-cipher": "^1.0.1", + "browserify-sign": "^4.2.3", + "create-ecdh": "^4.0.4", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "diffie-hellman": "^5.0.3", + "hash-base": "~3.0.4", + "inherits": "^2.0.4", + "pbkdf2": "^3.1.2", + "public-encrypt": "^4.0.3", + "randombytes": "^2.1.0", + "randomfill": "^1.0.4" }, "engines": { - "node": ">= 6" + "node": ">= 0.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true, - "license": "MIT" - }, - "node_modules/electron-to-chromium": { - "version": "1.5.360", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.360.tgz", - "integrity": "sha512-GkcBt6YYAw9SxFWn+xVar4cLVGlXVuswwtRLBozi2zp0GjXs4ZnOrqV4zbXzg35n7w81hCkyJNYicgXlVHAmBA==", + "node_modules/css-declaration-sorter": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.4.0.tgz", + "integrity": "sha512-LTuzjPoyA2vMGKKcaOqKSp7Ub2eGrNfKiZH4LpezxpNrsICGCSFvsQOI29psISxNZtaXibkC2CXzrQ5enMeGGw==", "dev": true, - "license": "ISC" + "license": "ISC", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } }, - "node_modules/elliptic": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz", - "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==", + "node_modules/css-functions-list": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.3.3.tgz", + "integrity": "sha512-8HFEBPKhOpJPEPu70wJJetjKta86Gw9+CCyCnB3sui2qQfOvRyqBy4IKLKKAwdMpWb2lHXWk9Wb4Z6AmaUT1Pg==", "dev": true, "license": "MIT", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" + "engines": { + "node": ">=12" } }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.3", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", - "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", - "dev": true, - "license": "MIT" - }, - "node_modules/emittery": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", - "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "node_modules/css-loader": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", "dev": true, "license": "MIT", + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + }, "engines": { - "node": ">=12" + "node": ">= 12.13.0" }, "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true, - "license": "MIT" - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/end-of-stream": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", - "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", + "node_modules/css-tokenize": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/css-tokenize/-/css-tokenize-1.0.1.tgz", + "integrity": "sha512-gLmmbJdwH9HLY4bcA17lnZ8GgPwEXRbvxBJGHnkiB6gLhRpTzjkjtMIvz7YORGW/Ptv2oMk8b5g+u7mRD6Dd7A==", "dev": true, "license": "MIT", "dependencies": { - "once": "^1.4.0" + "inherits": "^2.0.1", + "readable-stream": "^1.0.33" } }, - "node_modules/endent": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/endent/-/endent-2.1.0.tgz", - "integrity": "sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==", + "node_modules/css-tokenize/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/css-tokenize/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", "dev": true, "license": "MIT", "dependencies": { - "dedent": "^0.7.0", - "fast-json-parse": "^1.0.3", - "objectorarray": "^1.0.5" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" } }, - "node_modules/enhanced-resolve": { - "version": "5.21.5", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.5.tgz", - "integrity": "sha512-mLCNbrQli11K1ySUmuNt4ZUB3OpGIDq4q2vTBTf5cL2lpsRjI9QKqSD0ndjW8FyvcW/Jj46gMe9syyHAsvMa/A==", + "node_modules/css-tokenize/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/css-tree": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz", + "integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==", "dev": true, "license": "MIT", "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.3.3" + "mdn-data": "2.27.1", + "source-map-js": "^1.2.1" }, "engines": { - "node": ">=10.13.0" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/entities": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", - "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", "dev": true, "license": "BSD-2-Clause", "engines": { - "node": ">=0.12" + "node": ">= 6" }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/environment": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", - "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", + "node_modules/cssnano": { + "version": "7.1.9", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-7.1.9.tgz", + "integrity": "sha512-uPR75+5Dk/WJ/YSPR1/YDHdwMM9c5FsaARljfKWgeCKLKOtJ0we21xy/RcCjn53fZnD/f6yYEIZ8pu18+GnbNQ==", "dev": true, "license": "MIT", + "dependencies": { + "cssnano-preset-default": "^7.0.17", + "lilconfig": "^3.1.3" + }, "engines": { - "node": ">=18" + "node": "^18.12.0 || ^20.9.0 || >=22.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/error-ex": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", - "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", + "node_modules/cssnano-preset-default": { + "version": "7.0.17", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-7.0.17.tgz", + "integrity": "sha512-11qO63A+czwguQFJCaTdICvbaxn0pJzz/XghLlv+OT7WyToDxAMR0Xb3/26/l0y0hQJywwNbj/SLSQlGBHE1OA==", "dev": true, "license": "MIT", "dependencies": { - "is-arrayish": "^0.2.1" + "browserslist": "^4.28.2", + "css-declaration-sorter": "^7.2.0", + "cssnano-utils": "^5.0.3", + "postcss-calc": "^10.1.1", + "postcss-colormin": "^7.0.10", + "postcss-convert-values": "^7.0.12", + "postcss-discard-comments": "^7.0.8", + "postcss-discard-duplicates": "^7.0.4", + "postcss-discard-empty": "^7.0.3", + "postcss-discard-overridden": "^7.0.3", + "postcss-merge-longhand": "^7.0.7", + "postcss-merge-rules": "^7.0.11", + "postcss-minify-font-values": "^7.0.3", + "postcss-minify-gradients": "^7.0.5", + "postcss-minify-params": "^7.0.9", + "postcss-minify-selectors": "^7.1.2", + "postcss-normalize-charset": "^7.0.3", + "postcss-normalize-display-values": "^7.0.3", + "postcss-normalize-positions": "^7.0.4", + "postcss-normalize-repeat-style": "^7.0.4", + "postcss-normalize-string": "^7.0.3", + "postcss-normalize-timing-functions": "^7.0.3", + "postcss-normalize-unicode": "^7.0.9", + "postcss-normalize-url": "^7.0.3", + "postcss-normalize-whitespace": "^7.0.3", + "postcss-ordered-values": "^7.0.4", + "postcss-reduce-initial": "^7.0.9", + "postcss-reduce-transforms": "^7.0.3", + "postcss-svgo": "^7.1.3", + "postcss-unique-selectors": "^7.0.7" + }, + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "node_modules/cssnano-utils": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-5.0.3.tgz", + "integrity": "sha512-ynIREMICLxkxm7e9bCR9sh75s4Q5drICi0ua1yxo5jH2XPBqSKkl4dOh4EbFqtUmnTMhRffHgYL0EKKkMjtJTg==", "dev": true, "license": "MIT", - "dependencies": { - "stackframe": "^1.3.4" + "engines": { + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/es-abstract": { - "version": "1.24.2", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.2.tgz", - "integrity": "sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==", + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "dev": true, "license": "MIT", "dependencies": { - "array-buffer-byte-length": "^1.0.2", - "arraybuffer.prototype.slice": "^1.0.4", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.8", - "call-bound": "^1.0.4", - "data-view-buffer": "^1.0.2", - "data-view-byte-length": "^1.0.2", - "data-view-byte-offset": "^1.0.1", - "es-define-property": "^1.0.1", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.1.1", - "es-set-tostringtag": "^2.1.0", - "es-to-primitive": "^1.3.0", - "function.prototype.name": "^1.1.8", - "get-intrinsic": "^1.3.0", - "get-proto": "^1.0.1", - "get-symbol-description": "^1.1.0", - "globalthis": "^1.0.4", - "gopd": "^1.2.0", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.2.0", - "has-symbols": "^1.1.0", - "hasown": "^2.0.2", - "internal-slot": "^1.1.0", - "is-array-buffer": "^3.0.5", - "is-callable": "^1.2.7", - "is-data-view": "^1.0.2", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.2.1", - "is-set": "^2.0.3", - "is-shared-array-buffer": "^1.0.4", - "is-string": "^1.1.1", - "is-typed-array": "^1.1.15", - "is-weakref": "^1.1.1", - "math-intrinsics": "^1.1.0", - "object-inspect": "^1.13.4", - "object-keys": "^1.1.1", - "object.assign": "^4.1.7", - "own-keys": "^1.0.1", - "regexp.prototype.flags": "^1.5.4", - "safe-array-concat": "^1.1.3", - "safe-push-apply": "^1.0.0", - "safe-regex-test": "^1.1.0", - "set-proto": "^1.0.0", - "stop-iteration-iterator": "^1.1.0", - "string.prototype.trim": "^1.2.10", - "string.prototype.trimend": "^1.0.9", - "string.prototype.trimstart": "^1.0.8", - "typed-array-buffer": "^1.0.3", - "typed-array-byte-length": "^1.0.3", - "typed-array-byte-offset": "^1.0.4", - "typed-array-length": "^1.0.7", - "unbox-primitive": "^1.1.0", - "which-typed-array": "^1.1.19" + "css-tree": "~2.2.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/es-define-property": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", - "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "dev": true, "license": "MIT", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - } + "license": "CC0-1.0" }, - "node_modules/es-iterator-helpers": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.2.tgz", - "integrity": "sha512-HVLACW1TppGYjJ8H6/jqH/pqOtKRw6wMlrB23xfExmFWxFquAIWCmwoLsOyN96K4a5KbmOf5At9ZUO3GZbetAw==", + "node_modules/cssstyle": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.6.0.tgz", + "integrity": "sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.9", - "call-bound": "^1.0.4", - "define-properties": "^1.2.1", - "es-abstract": "^1.24.2", - "es-errors": "^1.3.0", - "es-set-tostringtag": "^2.1.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.3.0", - "globalthis": "^1.0.4", - "gopd": "^1.2.0", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.2.0", - "has-symbols": "^1.1.0", - "internal-slot": "^1.1.0", - "iterator.prototype": "^1.1.5", - "math-intrinsics": "^1.1.0" + "@asamuzakjp/css-color": "^3.2.0", + "rrweb-cssom": "^0.8.0" }, "engines": { - "node": ">= 0.4" + "node": ">=18" } }, - "node_modules/es-module-lexer": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", - "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", "dev": true, "license": "MIT" }, - "node_modules/es-object-atoms": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", - "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "node_modules/cuint": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", + "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==", + "dev": true, + "license": "MIT" + }, + "node_modules/data-urls": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", + "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", "dev": true, "license": "MIT", "dependencies": { - "es-errors": "^1.3.0" + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=18" } }, - "node_modules/es-set-tostringtag": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", - "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "node_modules/data-view-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz", + "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==", "dev": true, "license": "MIT", "dependencies": { + "call-bound": "^1.0.3", "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.6", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.2" + "is-data-view": "^1.0.2" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-shim-unscopables": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", - "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", + "node_modules/data-view-byte-length": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz", + "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==", "dev": true, "license": "MIT", "dependencies": { - "hasown": "^2.0.2" + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.2" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/inspect-js" } }, - "node_modules/es-to-primitive": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", - "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "node_modules/data-view-byte-offset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz", + "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==", "dev": true, "license": "MIT", "dependencies": { - "is-callable": "^1.2.7", - "is-date-object": "^1.0.5", - "is-symbol": "^1.0.4" + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { "node": ">= 0.4" @@ -14522,175 +10247,169 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/esbuild": { - "version": "0.27.7", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", - "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, - "hasInstallScript": true, "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "ms": "^2.1.3" }, "engines": { - "node": ">=18" + "node": ">=6.0" }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.27.7", - "@esbuild/android-arm": "0.27.7", - "@esbuild/android-arm64": "0.27.7", - "@esbuild/android-x64": "0.27.7", - "@esbuild/darwin-arm64": "0.27.7", - "@esbuild/darwin-x64": "0.27.7", - "@esbuild/freebsd-arm64": "0.27.7", - "@esbuild/freebsd-x64": "0.27.7", - "@esbuild/linux-arm": "0.27.7", - "@esbuild/linux-arm64": "0.27.7", - "@esbuild/linux-ia32": "0.27.7", - "@esbuild/linux-loong64": "0.27.7", - "@esbuild/linux-mips64el": "0.27.7", - "@esbuild/linux-ppc64": "0.27.7", - "@esbuild/linux-riscv64": "0.27.7", - "@esbuild/linux-s390x": "0.27.7", - "@esbuild/linux-x64": "0.27.7", - "@esbuild/netbsd-arm64": "0.27.7", - "@esbuild/netbsd-x64": "0.27.7", - "@esbuild/openbsd-arm64": "0.27.7", - "@esbuild/openbsd-x64": "0.27.7", - "@esbuild/openharmony-arm64": "0.27.7", - "@esbuild/sunos-x64": "0.27.7", - "@esbuild/win32-arm64": "0.27.7", - "@esbuild/win32-ia32": "0.27.7", - "@esbuild/win32-x64": "0.27.7" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "node_modules/decimal.js": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz", + "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==", + "dev": true, + "license": "MIT" + }, + "node_modules/decode-uri-component": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.4.1.tgz", + "integrity": "sha512-+8VxcR21HhTy8nOt6jf20w0c9CADrw1O8d+VZ/YzzCt4bJ3uBjw+D1q2osAB8RnpwwaeYBxy0HyKQxD5JBMuuQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true, + "license": "MIT" + }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/eslint": { - "version": "9.39.4", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz", - "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", + "node_modules/default-browser": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz", + "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==", "dev": true, "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.8.0", - "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.21.2", - "@eslint/config-helpers": "^0.4.2", - "@eslint/core": "^0.17.0", - "@eslint/eslintrc": "^3.3.5", - "@eslint/js": "9.39.4", - "@eslint/plugin-kit": "^0.4.1", - "@humanfs/node": "^0.16.6", - "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.2", - "@types/estree": "^1.0.6", - "ajv": "^6.14.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.6", - "debug": "^4.3.2", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.4.0", - "eslint-visitor-keys": "^4.2.1", - "espree": "^10.4.0", - "esquery": "^1.5.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^8.0.0", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.5", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3" + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" }, - "bin": { - "eslint": "bin/eslint.js" + "engines": { + "node": ">=18" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/default-browser-id": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz", + "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==", + "dev": true, + "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=18" }, "funding": { - "url": "https://eslint.org/donate" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, - "peerDependencies": { - "jiti": "*" + "engines": { + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "jiti": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-config-prettier": { - "version": "10.1.8", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz", - "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==", + "node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", "dev": true, "license": "MIT", - "bin": { - "eslint-config-prettier": "bin/cli.js" + "engines": { + "node": ">=12" }, "funding": { - "url": "https://opencollective.com/eslint-config-prettier" - }, - "peerDependencies": { - "eslint": ">=7.0.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-compat": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-compat/-/eslint-plugin-compat-7.0.2.tgz", - "integrity": "sha512-gN8hF+4NzMsHUbr4m/TYZK0FtW3DcV4g8rXpTsY2EV5xiRD8jsilUlB9lNSkGGX0veDCxMhKSWbSd+faJByQDA==", + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, "license": "MIT", "dependencies": { - "@mdn/browser-compat-data": "^6.1.1", - "ast-metadata-inferer": "^0.8.1", - "browserslist": "^4.25.2", - "find-up": "^5.0.0", - "globals": "^15.7.0", - "lodash.memoize": "^4.1.2", - "semver": "^7.6.2" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=22.x" + "node": ">= 0.4" }, - "peerDependencies": { - "eslint": "^9.0.0 || ^10.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-compat/node_modules/globals": { - "version": "15.15.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz", - "integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==", + "node_modules/del": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/del/-/del-8.0.1.tgz", + "integrity": "sha512-gPqh0mKTPvaUZGAuHbrBUYKZWBNAeHG7TU3QH5EhVwPMyKvmfJaNXhcD2jTcXsJRRcffuho4vaYweu80dRrMGA==", "dev": true, "license": "MIT", + "dependencies": { + "globby": "^14.0.2", + "is-glob": "^4.0.3", + "is-path-cwd": "^3.0.0", + "is-path-inside": "^4.0.0", + "p-map": "^7.0.2", + "presentable-error": "^0.0.1", + "slash": "^5.1.0" + }, "engines": { "node": ">=18" }, @@ -14698,693 +10417,918 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-prettier": { - "version": "5.5.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.5.5.tgz", - "integrity": "sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==", + "node_modules/del/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, "license": "MIT", - "dependencies": { - "prettier-linter-helpers": "^1.0.1", - "synckit": "^0.11.12" - }, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": ">=14.16" }, "funding": { - "url": "https://opencollective.com/eslint-plugin-prettier" - }, - "peerDependencies": { - "@types/eslint": ">=8.0.0", - "eslint": ">=8.0.0", - "eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0", - "prettier": ">=3.0.0" - }, - "peerDependenciesMeta": { - "@types/eslint": { - "optional": true - }, - "eslint-config-prettier": { - "optional": true - } + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-react": { - "version": "7.37.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", - "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "dev": true, "license": "MIT", - "dependencies": { - "array-includes": "^3.1.8", - "array.prototype.findlast": "^1.2.5", - "array.prototype.flatmap": "^1.3.3", - "array.prototype.tosorted": "^1.1.4", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.2.1", - "estraverse": "^5.3.0", - "hasown": "^2.0.2", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.9", - "object.fromentries": "^2.0.8", - "object.values": "^1.2.1", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.5", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.12", - "string.prototype.repeat": "^1.0.0" - }, "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" + "node": ">=6" } }, - "node_modules/eslint-plugin-react-hooks": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz", - "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==", + "node_modules/des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/core": "^7.24.4", - "@babel/parser": "^7.24.4", - "hermes-parser": "^0.25.1", - "zod": "^3.25.0 || ^4.0.0", - "zod-validation-error": "^3.5.0 || ^4.0.0" - }, + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true, + "license": "Apache-2.0", "engines": { - "node": ">=18" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0" + "node": ">=8" } }, - "node_modules/eslint-plugin-react/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "node_modules/eslint-plugin-react/node_modules/brace-expansion": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", - "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" } }, - "node_modules/eslint-plugin-react/node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", "dev": true, - "license": "ISC", + "license": "MIT" + }, + "node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "license": "Apache-2.0", "dependencies": { - "brace-expansion": "^1.1.7" + "esutils": "^2.0.2" }, "engines": { - "node": "*" + "node": ">=0.10.0" } }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.7", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.7.tgz", - "integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==", + "node_modules/doiuse": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/doiuse/-/doiuse-6.0.6.tgz", + "integrity": "sha512-XuPRslcWHhQJ+WjCjimRUcNfhZvOiC0610FsY6WeSlzXvoZYtm6iOpR9K0N4wRoM/lP4i7LatT+IhltAzouSOw==", "dev": true, "license": "MIT", "dependencies": { - "es-errors": "^1.3.0", - "is-core-module": "^2.16.2", - "node-exports-info": "^1.6.0", - "object-keys": "^1.1.1", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "browserslist": "^4.28.1", + "caniuse-lite": "^1.0.30001760", + "css-tokenize": "^1.0.1", + "duplexify": "^4.1.3", + "multimatch": "^5.0.0", + "postcss": "^8.5.6", + "source-map": "^0.7.6", + "yargs": "^17.7.2" }, "bin": { - "resolve": "bin/resolve" + "doiuse": "bin/cli.js" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=16" } }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "license": "MIT" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dev": true, + "license": "MIT", + "dependencies": { + "utila": "~0.4" } }, - "node_modules/eslint-scope": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", - "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domain-browser": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-4.23.0.tgz", + "integrity": "sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA==", + "dev": true, + "license": "Artistic-2.0", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=10" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://bevry.me/fund" } }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, - "license": "Apache-2.0", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 4" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/eslint/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, - "license": "MIT" + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } }, - "node_modules/eslint/node_modules/brace-expansion": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", - "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", - "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" }, - "funding": { - "url": "https://opencollective.com/eslint" + "engines": { + "node": ">= 0.4" } }, - "node_modules/eslint/node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "node_modules/duplexify": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-4.1.3.tgz", + "integrity": "sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==", "dev": true, "license": "MIT", - "engines": { - "node": ">= 4" + "dependencies": { + "end-of-stream": "^1.4.1", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1", + "stream-shift": "^1.0.2" } }, - "node_modules/eslint/node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "node_modules/duplexify/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": "*" + "node": ">= 6" } }, - "node_modules/espree": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", - "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.361", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.361.tgz", + "integrity": "sha512-Q6Hts7N9FnJc5LeGRINFvLhCI9xZmNtTDe5ZbcVezQz7cU4a8Aua3GH1b8J2XY8Al9PF+OCwYqhgsOOheMdvkA==", + "dev": true, + "license": "ISC" + }, + "node_modules/elliptic": { + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz", + "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==", + "dev": true, + "license": "MIT", "dependencies": { - "acorn": "^8.15.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.2.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" } }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", - "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", "dev": true, - "license": "Apache-2.0", + "license": "MIT" + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=12" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true, - "license": "BSD-2-Clause", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } + "license": "MIT" }, - "node_modules/esquery": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", - "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "estraverse": "^5.1.0" - }, + "license": "MIT", "engines": { - "node": ">=0.10" + "node": ">= 4" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/end-of-stream": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" + "once": "^1.4.0" } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/endent": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/endent/-/endent-2.1.0.tgz", + "integrity": "sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==", "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" + "license": "MIT", + "dependencies": { + "dedent": "^0.7.0", + "fast-json-parse": "^1.0.3", + "objectorarray": "^1.0.5" } }, - "node_modules/estree-walker": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", - "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "node_modules/enhanced-resolve": { + "version": "5.22.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.22.0.tgz", + "integrity": "sha512-xYcDWrpELkFzz9SpZ3PlI6Eu6eD93Yf0WLDRxikGhWJ3MAir2SNZTIVCVZqZ/NUyx8AdMc2gT9C0gPiw18kG+A==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { - "@types/estree": "^1.0.0" + "graceful-fs": "^4.2.4", + "tapable": "^2.3.3" + }, + "engines": { + "node": ">=10.13.0" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", "dev": true, "license": "BSD-2-Clause", "engines": { - "node": ">=0.10.0" + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, - "node_modules/eventemitter3": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz", - "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==", - "dev": true, - "license": "MIT" - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "node_modules/environment": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", + "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", "dev": true, "license": "MIT", "engines": { - "node": ">=0.8.x" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "node_modules/error-ex": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", + "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", "dev": true, "license": "MIT", "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "is-arrayish": "^0.2.1" } }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", "dev": true, "license": "MIT", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.24.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.2.tgz", + "integrity": "sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-buffer-byte-length": "^1.0.2", + "arraybuffer.prototype.slice": "^1.0.4", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "data-view-buffer": "^1.0.2", + "data-view-byte-length": "^1.0.2", + "data-view-byte-offset": "^1.0.1", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "es-set-tostringtag": "^2.1.0", + "es-to-primitive": "^1.3.0", + "function.prototype.name": "^1.1.8", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", + "get-symbol-description": "^1.1.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "internal-slot": "^1.1.0", + "is-array-buffer": "^3.0.5", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.2.1", + "is-set": "^2.0.3", + "is-shared-array-buffer": "^1.0.4", + "is-string": "^1.1.1", + "is-typed-array": "^1.1.15", + "is-weakref": "^1.1.1", + "math-intrinsics": "^1.1.0", + "object-inspect": "^1.13.4", + "object-keys": "^1.1.1", + "object.assign": "^4.1.7", + "own-keys": "^1.0.1", + "regexp.prototype.flags": "^1.5.4", + "safe-array-concat": "^1.1.3", + "safe-push-apply": "^1.0.0", + "safe-regex-test": "^1.1.0", + "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", + "string.prototype.trim": "^1.2.10", + "string.prototype.trimend": "^1.0.9", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.3", + "typed-array-byte-length": "^1.0.3", + "typed-array-byte-offset": "^1.0.4", + "typed-array-length": "^1.0.7", + "unbox-primitive": "^1.1.0", + "which-typed-array": "^1.1.19" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/execa/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "dev": true, - "license": "ISC" + "license": "MIT", + "engines": { + "node": ">= 0.4" + } }, - "node_modules/exit-x": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/exit-x/-/exit-x-0.2.2.tgz", - "integrity": "sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==", + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.8.0" + "node": ">= 0.4" } }, - "node_modules/expect": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-30.4.1.tgz", - "integrity": "sha512-PMARsyh/JtqC20HoGqlFcIlQAyqUtW4PlI1rup1uhYJtKuwAjbvWi3GQMAn+STdHum/dk8xrKfUM1+5SAwpolA==", + "node_modules/es-iterator-helpers": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.3.2.tgz", + "integrity": "sha512-HVLACW1TppGYjJ8H6/jqH/pqOtKRw6wMlrB23xfExmFWxFquAIWCmwoLsOyN96K4a5KbmOf5At9ZUO3GZbetAw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/expect-utils": "30.4.1", - "@jest/get-type": "30.1.0", - "jest-matcher-utils": "30.4.1", - "jest-message-util": "30.4.1", - "jest-mock": "30.4.1", - "jest-util": "30.4.1" + "call-bind": "^1.0.9", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-abstract": "^1.24.2", + "es-errors": "^1.3.0", + "es-set-tostringtag": "^2.1.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.3.0", + "globalthis": "^1.0.4", + "gopd": "^1.2.0", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.2.0", + "has-symbols": "^1.1.0", + "internal-slot": "^1.1.0", + "iterator.prototype": "^1.1.5", + "math-intrinsics": "^1.1.0" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.4" } }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", "dev": true, "license": "MIT" }, - "node_modules/fast-diff": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", - "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/fast-glob": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "dev": true, "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.8" + "es-errors": "^1.3.0" }, "engines": { - "node": ">=8.6.0" + "node": ">= 0.4" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "is-glob": "^4.0.1" + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { - "node": ">= 6" + "node": ">= 0.4" } }, - "node_modules/fast-json-parse": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz", - "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "node_modules/es-shim-unscopables": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } }, - "node_modules/fast-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz", - "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fastify" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fastify" - } - ], - "license": "BSD-3-Clause" + "node_modules/es-to-primitive": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz", + "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7", + "is-date-object": "^1.0.5", + "is-symbol": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/fastest-levenshtein": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", - "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "node_modules/esbuild": { + "version": "0.27.7", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.7.tgz", + "integrity": "sha512-IxpibTjyVnmrIQo5aqNpCgoACA/dTKLTlhMHihVHhdkxKyPO1uBBthumT0rdHmcsk9uMonIWS0m4FljWzILh3w==", "dev": true, + "hasInstallScript": true, "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, "engines": { - "node": ">= 4.9.1" + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.7", + "@esbuild/android-arm": "0.27.7", + "@esbuild/android-arm64": "0.27.7", + "@esbuild/android-x64": "0.27.7", + "@esbuild/darwin-arm64": "0.27.7", + "@esbuild/darwin-x64": "0.27.7", + "@esbuild/freebsd-arm64": "0.27.7", + "@esbuild/freebsd-x64": "0.27.7", + "@esbuild/linux-arm": "0.27.7", + "@esbuild/linux-arm64": "0.27.7", + "@esbuild/linux-ia32": "0.27.7", + "@esbuild/linux-loong64": "0.27.7", + "@esbuild/linux-mips64el": "0.27.7", + "@esbuild/linux-ppc64": "0.27.7", + "@esbuild/linux-riscv64": "0.27.7", + "@esbuild/linux-s390x": "0.27.7", + "@esbuild/linux-x64": "0.27.7", + "@esbuild/netbsd-arm64": "0.27.7", + "@esbuild/netbsd-x64": "0.27.7", + "@esbuild/openbsd-arm64": "0.27.7", + "@esbuild/openbsd-x64": "0.27.7", + "@esbuild/openharmony-arm64": "0.27.7", + "@esbuild/sunos-x64": "0.27.7", + "@esbuild/win32-arm64": "0.27.7", + "@esbuild/win32-ia32": "0.27.7", + "@esbuild/win32-x64": "0.27.7" } }, - "node_modules/fastq": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", - "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" + "license": "MIT", + "engines": { + "node": ">=6" } }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, - "license": "Apache-2.0", - "dependencies": { - "bser": "2.1.1" + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fdir": { - "version": "6.5.0", - "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", - "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "node_modules/eslint": { + "version": "9.39.4", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.4.tgz", + "integrity": "sha512-XoMjdBOwe/esVgEvLmNsD3IRHkm7fbKIUGvrleloJXUZgDHig2IPWNniv+GwjyJXzuNqVjlr5+4yVUZjycJwfQ==", "dev": true, "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.2", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.5", + "@eslint/js": "9.39.4", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.14.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.5", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, "engines": { - "node": ">=12.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" }, "peerDependencies": { - "picomatch": "^3 || ^4" + "jiti": "*" }, "peerDependenciesMeta": { - "picomatch": { + "jiti": { "optional": true } } }, - "node_modules/file-entry-cache": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "node_modules/eslint-config-prettier": { + "version": "10.1.8", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.8.tgz", + "integrity": "sha512-82GZUjRS0p/jganf6q1rEO25VSoHH0hKPCTrgillPjdI/3bgBhAE1QzHrHTizjpRvy6pGAvKjDJtk2pF9NDq8w==", "dev": true, "license": "MIT", - "dependencies": { - "flat-cache": "^4.0.0" + "bin": { + "eslint-config-prettier": "bin/cli.js" }, - "engines": { - "node": ">=16.0.0" + "funding": { + "url": "https://opencollective.com/eslint-config-prettier" + }, + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "node_modules/file-entry-cache/node_modules/flat-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "node_modules/eslint-plugin-compat": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-compat/-/eslint-plugin-compat-7.0.2.tgz", + "integrity": "sha512-gN8hF+4NzMsHUbr4m/TYZK0FtW3DcV4g8rXpTsY2EV5xiRD8jsilUlB9lNSkGGX0veDCxMhKSWbSd+faJByQDA==", "dev": true, "license": "MIT", "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.4" + "@mdn/browser-compat-data": "^6.1.1", + "ast-metadata-inferer": "^0.8.1", + "browserslist": "^4.25.2", + "find-up": "^5.0.0", + "globals": "^15.7.0", + "lodash.memoize": "^4.1.2", + "semver": "^7.6.2" }, "engines": { - "node": ">=16" + "node": ">=22.x" + }, + "peerDependencies": { + "eslint": "^9.0.0 || ^10.0.0" } }, - "node_modules/filesize": { - "version": "10.1.6", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-10.1.6.tgz", - "integrity": "sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==", + "node_modules/eslint-plugin-compat/node_modules/globals": { + "version": "15.15.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz", + "integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "engines": { - "node": ">= 10.4.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "node_modules/eslint-plugin-prettier": { + "version": "5.5.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.5.5.tgz", + "integrity": "sha512-hscXkbqUZ2sPithAuLm5MXL+Wph+U7wHngPBv9OMWwlP8iaflyxpjTYZkmdgB4/vPIhemRlBEoLrH7UC1n7aUw==", "dev": true, "license": "MIT", "dependencies": { - "to-regex-range": "^5.0.1" + "prettier-linter-helpers": "^1.0.1", + "synckit": "^0.11.12" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.37.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz", + "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.8", + "array.prototype.findlast": "^1.2.5", + "array.prototype.flatmap": "^1.3.3", + "array.prototype.tosorted": "^1.1.4", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.2.1", + "estraverse": "^5.3.0", + "hasown": "^2.0.2", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.9", + "object.fromentries": "^2.0.8", + "object.values": "^1.2.1", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.5", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.12", + "string.prototype.repeat": "^1.0.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/filter-obj": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.2.tgz", - "integrity": "sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7" } }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/eslint-plugin-react-hooks": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz", + "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==", "dev": true, "license": "MIT", "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "@babel/core": "^7.24.4", + "@babel/parser": "^7.24.4", + "hermes-parser": "^0.25.1", + "zod": "^3.25.0 || ^4.0.0", + "zod-validation-error": "^3.5.0 || ^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=18" }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0" } }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/eslint-plugin-react/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/eslint-plugin-react/node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", "dev": true, "license": "MIT", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/flat-cache": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", - "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "node_modules/eslint-plugin-react/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" + "brace-expansion": "^1.1.7" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": "*" } }, - "node_modules/flatted": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", - "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", - "dev": true, - "license": "ISC" - }, - "node_modules/for-each": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", - "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.7.tgz", + "integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==", "dev": true, "license": "MIT", "dependencies": { - "is-callable": "^1.2.7" + "es-errors": "^1.3.0", + "is-core-module": "^2.16.2", + "node-exports-info": "^1.6.0", + "object-keys": "^1.1.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "engines": { "node": ">= 0.4" @@ -15393,59 +11337,54 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/foreground-child": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", - "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "cross-spawn": "^7.0.6", - "signal-exit": "^4.0.1" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": ">=14" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://opencollective.com/eslint" } }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-9.1.0.tgz", - "integrity": "sha512-mpafl89VFPJmhnJ1ssH+8wmM2b50n+Rew5x42NeI2U78aRWgtkEtGmctp7iT16UjquJTjorEmIfESj3DxdW84Q==", + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^4.0.1", - "cosmiconfig": "^8.2.0", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" - }, + "license": "Apache-2.0", "engines": { - "node": ">=14.21.3" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "peerDependencies": { - "typescript": ">3.6.0", - "webpack": "^5.11.0" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/balanced-match": { + "node_modules/eslint/node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true, "license": "MIT" }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/brace-expansion": { + "node_modules/eslint/node_modules/brace-expansion": { "version": "1.1.14", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", @@ -15456,503 +11395,497 @@ "concat-map": "0.0.1" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", "dev": true, - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, + "license": "Apache-2.0", "engines": { - "node": ">= 10.13.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://opencollective.com/eslint" } }, - "node_modules/fraction.js": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-5.3.4.tgz", - "integrity": "sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==", + "node_modules/eslint/node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "license": "MIT", "engines": { - "node": "*" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/rawify" + "node": ">= 4" } }, - "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=12" + "node": "*" } }, - "node_modules/fs-monkey": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.1.0.tgz", - "integrity": "sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==", - "dev": true, - "license": "Unlicense" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true, - "license": "ISC" - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", "dev": true, - "license": "MIT", + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/function.prototype.name": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", - "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.8", - "call-bound": "^1.0.3", - "define-properties": "^1.2.1", - "functions-have-names": "^1.2.3", - "hasown": "^2.0.2", - "is-callable": "^1.2.7" + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": ">= 0.4" + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", + "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10" } }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" } }, - "node_modules/generator-function": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", - "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", "engines": { - "node": ">= 0.4" + "node": ">=4.0" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", "dev": true, "license": "MIT", - "engines": { - "node": ">=6.9.0" + "peer": true, + "dependencies": { + "@types/estree": "^1.0.0" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, - "license": "ISC", + "license": "BSD-2-Clause", "engines": { - "node": "6.* || 8.* || >= 10.*" + "node": ">=0.10.0" } }, - "node_modules/get-east-asian-width": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz", - "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==", + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/get-intrinsic": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", - "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "node_modules/eventemitter3": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz", + "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, "license": "MIT", - "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "es-define-property": "^1.0.1", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.1.1", - "function-bind": "^1.1.2", - "get-proto": "^1.0.1", - "gopd": "^1.2.0", - "has-symbols": "^1.1.0", - "hasown": "^2.0.2", - "math-intrinsics": "^1.1.0" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=0.8.x" } }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", "dev": true, "license": "MIT", - "engines": { - "node": ">=8.0.0" + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" } }, - "node_modules/get-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", - "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "license": "MIT", "dependencies": { - "dunder-proto": "^1.0.1", - "es-object-atoms": "^1.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/execa/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/exit-x": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/exit-x/-/exit-x-0.2.2.tgz", + "integrity": "sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8.0" } }, - "node_modules/get-symbol-description": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", - "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", + "node_modules/expect": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-30.4.1.tgz", + "integrity": "sha512-PMARsyh/JtqC20HoGqlFcIlQAyqUtW4PlI1rup1uhYJtKuwAjbvWi3GQMAn+STdHum/dk8xrKfUM1+5SAwpolA==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.3", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.6" + "@jest/expect-utils": "30.4.1", + "@jest/get-type": "30.1.0", + "jest-matcher-utils": "30.4.1", + "jest-message-util": "30.4.1", + "jest-mock": "30.4.1", + "jest-util": "30.4.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/glob": { - "version": "10.5.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", - "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", - "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": ">=8.6.0" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "license": "ISC", "dependencies": { - "is-glob": "^4.0.3" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=10.13.0" + "node": ">= 6" } }, - "node_modules/glob-to-regex.js": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/glob-to-regex.js/-/glob-to-regex.js-1.2.0.tgz", - "integrity": "sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==", + "node_modules/fast-json-parse": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz", + "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==", "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.0" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/streamich" - }, - "peerDependencies": { - "tslib": "2" - } + "license": "MIT" }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true, - "license": "BSD-2-Clause" + "license": "MIT" }, - "node_modules/glob/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true, "license": "MIT" }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz", - "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==", + "node_modules/fast-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz", + "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true, "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" + "engines": { + "node": ">= 4.9.1" } }, - "node_modules/glob/node_modules/minimatch": { - "version": "9.0.9", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", - "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", + "node_modules/fastq": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", "dev": true, "license": "ISC", "dependencies": { - "brace-expansion": "^2.0.2" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "reusify": "^1.0.4" } }, - "node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "dependencies": { - "global-prefix": "^3.0.0" - }, + "bser": "2.1.1" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=6" + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } } }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, "license": "MIT", "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" + "flat-cache": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=16.0.0" } }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "node_modules/file-entry-cache/node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "isexe": "^2.0.0" + "flatted": "^3.2.9", + "keyv": "^4.5.4" }, - "bin": { - "which": "bin/which" + "engines": { + "node": ">=16" } }, - "node_modules/globals": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", - "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "node_modules/filesize": { + "version": "10.1.6", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-10.1.6.tgz", + "integrity": "sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 10.4.0" } }, - "node_modules/globalthis": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", - "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "dev": true, "license": "MIT", "dependencies": { - "define-properties": "^1.2.1", - "gopd": "^1.0.1" + "to-regex-range": "^5.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/globby": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", - "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", + "node_modules/filter-obj": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.2.tgz", + "integrity": "sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg==", "dev": true, "license": "MIT", - "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.3", - "ignore": "^7.0.3", - "path-type": "^6.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.3.0" - }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/globby/node_modules/path-type": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", - "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, "engines": { - "node": ">=18" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, - "node_modules/globby/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, "engines": { - "node": ">=14.16" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globjoin": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", - "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", - "dev": true, - "license": "MIT" - }, - "node_modules/gopd": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", - "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.4" + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "node_modules/flatted": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", "dev": true, "license": "ISC" }, - "node_modules/has-bigints": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", - "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", + "node_modules/for-each": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", + "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", "dev": true, "license": "MIT", + "dependencies": { + "is-callable": "^1.2.7" + }, "engines": { "node": ">= 0.4" }, @@ -15960,573 +11893,532 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", "dev": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "es-define-property": "^1.0.0" + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/has-proto": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", - "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-9.1.0.tgz", + "integrity": "sha512-mpafl89VFPJmhnJ1ssH+8wmM2b50n+Rew5x42NeI2U78aRWgtkEtGmctp7iT16UjquJTjorEmIfESj3DxdW84Q==", "dev": true, "license": "MIT", "dependencies": { - "dunder-proto": "^1.0.0" + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^4.0.1", + "cosmiconfig": "^8.2.0", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" }, "engines": { - "node": ">= 0.4" + "node": ">=14.21.3" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "typescript": ">3.6.0", + "webpack": "^5.11.0" } }, - "node_modules/has-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", - "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.4" + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "*" } }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "license": "MIT", "dependencies": { - "has-symbols": "^1.0.3" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">= 0.4" + "node": ">= 10.13.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/hash-base": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.5.tgz", - "integrity": "sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==", + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, "license": "MIT", "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">= 0.10" + "node": ">=12" } }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "node_modules/fs-monkey": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.1.0.tgz", + "integrity": "sha512-QMUezzXWII9EV5aTFXW1UBVUO77wYPpjqIF8/AviUCThNeSYZykpoTixUeaNNBwmCev0AMDWMAni+f8Hxb1IFw==", + "dev": true, + "license": "Unlicense" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, + "hasInstallScript": true, "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/hashery": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/hashery/-/hashery-1.5.1.tgz", - "integrity": "sha512-iZyKG96/JwPz1N55vj2Ie2vXbhu440zfUfJvSwEqEbeLluk7NnapfGqa7LH0mOsnDxTF85Mx8/dyR6HfqcbmbQ==", + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, "license": "MIT", - "dependencies": { - "hookified": "^1.15.0" - }, - "engines": { - "node": ">=20" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hasown": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz", - "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==", + "node_modules/function.prototype.name": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz", + "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==", "dev": true, "license": "MIT", "dependencies": { - "function-bind": "^1.1.2" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "functions-have-names": "^1.2.3", + "hasown": "^2.0.2", + "is-callable": "^1.2.7" }, "engines": { "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, "license": "MIT", - "bin": { - "he": "bin/he" - } - }, - "node_modules/hermes-estree": { - "version": "0.25.1", - "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", - "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", - "dev": true, - "license": "MIT" + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/hermes-parser": { - "version": "0.25.1", - "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", - "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "node_modules/generator-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz", + "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==", "dev": true, "license": "MIT", - "dependencies": { - "hermes-estree": "0.25.1" + "engines": { + "node": ">= 0.4" } }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "license": "MIT", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/hookified": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.15.1.tgz", - "integrity": "sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, - "license": "MIT" + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } }, - "node_modules/html-encoding-sniffer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", - "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "node_modules/get-east-asian-width": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.6.0.tgz", + "integrity": "sha512-QRbvDIbx6YklUe6RxeTeleMR0yv3cYH6PsPZHcnVn7xv7zO1BHN8r0XETu8n6Ye3Q+ahtSarc3WgtNWmehIBfA==", "dev": true, "license": "MIT", - "dependencies": { - "whatwg-encoding": "^3.1.1" - }, "engines": { "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/html-entities": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz", - "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==", + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ], - "license": "MIT" + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } }, - "node_modules/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "dev": true, "license": "MIT", "dependencies": { - "camel-case": "^4.1.2", - "clean-css": "^5.2.2", - "commander": "^8.3.0", - "he": "^1.2.0", - "param-case": "^3.0.4", - "relateurl": "^0.2.7", - "terser": "^5.10.0" - }, - "bin": { - "html-minifier-terser": "cli.js" + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=12" + "node": ">= 0.4" } }, - "node_modules/html-tags": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-5.1.0.tgz", - "integrity": "sha512-n6l5uca7/y5joxZ3LUePhzmBFUJ+U2YWzhMa8XUTecSeSlQiZdF5XAd/Q3/WUl0VsXgUwWi8I7CNIwdI5WN1SQ==", + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "license": "MIT", "engines": { - "node": ">=20.10" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/html-webpack-plugin": { - "version": "5.6.7", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.7.tgz", - "integrity": "sha512-md+vXtdCAe60s1k6AU3dUyMJnDxUyQAwfwPKoLisvgUF1IXjtlLsk2se54+qfL9Mdm26bbwvjJybpNx48NKRLw==", + "node_modules/get-symbol-description": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz", + "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==", "dev": true, "license": "MIT", "dependencies": { - "@types/html-minifier-terser": "^6.0.0", - "html-minifier-terser": "^6.0.2", - "lodash": "^4.17.21", - "pretty-error": "^4.0.0", - "tapable": "^2.0.0" + "call-bound": "^1.0.3", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": ">=10.13.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/html-webpack-plugin" + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "webpack": "^5.20.0" + "bin": { + "glob": "dist/esm/bin.mjs" }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "webpack": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "MIT", + "license": "ISC", "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" } }, - "node_modules/htmlparser2/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "node_modules/glob-to-regex.js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/glob-to-regex.js/-/glob-to-regex.js-1.2.0.tgz", + "integrity": "sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==", "dev": true, - "license": "BSD-2-Clause", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" } }, - "node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } + "license": "BSD-2-Clause" }, - "node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "node_modules/glob/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true, "license": "MIT" }, - "node_modules/https-proxy-agent": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", - "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz", + "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==", "dev": true, "license": "MIT", "dependencies": { - "agent-base": "^7.1.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.17.0" + "balanced-match": "^1.0.0" } }, - "node_modules/husky": { - "version": "9.1.7", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", - "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.9", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", + "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", "dev": true, - "license": "MIT", - "bin": { - "husky": "bin.js" + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.2" }, "engines": { - "node": ">=18" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/typicode" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/hyperdyperid": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", - "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", "dev": true, "license": "MIT", + "dependencies": { + "global-prefix": "^3.0.0" + }, "engines": { - "node": ">=10.18" + "node": ">=6" } }, - "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", "dev": true, "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "license": "ISC", - "engines": { - "node": "^10 || ^12 || >= 14" + "dependencies": { + "isexe": "^2.0.0" }, - "peerDependencies": { - "postcss": "^8.1.0" + "bin": { + "which": "bin/which" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "BSD-3-Clause" - }, - "node_modules/ignore": { - "version": "7.0.5", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", - "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, "license": "MIT", "engines": { - "node": ">= 4" - } - }, - "node_modules/image-size": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-2.0.2.tgz", - "integrity": "sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==", - "dev": true, - "license": "MIT", - "bin": { - "image-size": "bin/image-size.js" + "node": ">=18" }, - "engines": { - "node": ">=16.x" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/immutable": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.5.tgz", - "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==", - "dev": true, - "license": "MIT" - }, - "node_modules/import-fresh": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", - "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", "dev": true, "license": "MIT", "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "define-properties": "^1.2.1", + "gopd": "^1.0.1" }, "engines": { - "node": ">=6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/import-local": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", - "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", + "node_modules/globby": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", + "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", "dev": true, "license": "MIT", "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.3", + "ignore": "^7.0.3", + "path-type": "^6.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.3.0" }, "engines": { - "node": ">=8" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-meta-resolve": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz", - "integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==", - "dev": true, - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "node_modules/globby/node_modules/path-type": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", + "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=0.8.19" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "node_modules/globby/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, "license": "MIT", "engines": { - "node": ">=8" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", - "dev": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true, - "license": "ISC" - }, - "node_modules/internal-slot": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", - "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", + "node_modules/globjoin": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", + "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", "dev": true, - "license": "MIT", - "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.2", - "side-channel": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" - } + "license": "MIT" }, - "node_modules/is-arguments": { + "node_modules/gopd": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", - "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, "license": "MIT", - "dependencies": { - "call-bound": "^1.0.2", - "has-tostringtag": "^1.0.2" - }, "engines": { "node": ">= 0.4" }, @@ -16534,17 +12426,19 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-array-buffer": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", - "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-bigints": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz", + "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==", "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.8", - "call-bound": "^1.0.3", - "get-intrinsic": "^1.2.6" - }, "engines": { "node": ">= 0.4" }, @@ -16552,41 +12446,37 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=8" + } }, - "node_modules/is-async-function": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", - "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, "license": "MIT", "dependencies": { - "async-function": "^1.0.0", - "call-bound": "^1.0.3", - "get-proto": "^1.0.1", - "has-tostringtag": "^1.0.2", - "safe-regex-test": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" + "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-bigint": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", - "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", + "node_modules/has-proto": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz", + "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==", "dev": true, "license": "MIT", "dependencies": { - "has-bigints": "^1.0.2" + "dunder-proto": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -16595,16 +12485,12 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-boolean-object": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", - "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, "license": "MIT", - "dependencies": { - "call-bound": "^1.0.3", - "has-tostringtag": "^1.0.2" - }, "engines": { "node": ">= 0.4" }, @@ -16612,12 +12498,15 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, "engines": { "node": ">= 0.4" }, @@ -16625,331 +12514,504 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-core-module": { - "version": "2.16.2", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz", - "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==", + "node_modules/hash-base": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.5.tgz", + "integrity": "sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==", "dev": true, "license": "MIT", "dependencies": { - "hasown": "^2.0.3" + "inherits": "^2.0.4", + "safe-buffer": "^5.2.1" }, "engines": { - "node": ">= 0.4" + "node": ">= 0.10" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hashery": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/hashery/-/hashery-1.5.1.tgz", + "integrity": "sha512-iZyKG96/JwPz1N55vj2Ie2vXbhu440zfUfJvSwEqEbeLluk7NnapfGqa7LH0mOsnDxTF85Mx8/dyR6HfqcbmbQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "hookified": "^1.15.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=20" } }, - "node_modules/is-data-view": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", - "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", + "node_modules/hasown": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.3.tgz", + "integrity": "sha512-ej4AhfhfL2Q2zpMmLo7U1Uv9+PyhIZpgQLGT1F9miIGmiCJIoCgSmczFdrc97mWT4kVY72KA+WnnhJ5pghSvSg==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.2", - "get-intrinsic": "^1.2.6", - "is-typed-array": "^1.1.13" + "function-bind": "^1.1.2" }, "engines": { "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hermes-estree": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz", + "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==", + "dev": true, + "license": "MIT" + }, + "node_modules/hermes-parser": { + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz", + "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "hermes-estree": "0.25.1" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dev": true, + "license": "MIT", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hookified": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/hookified/-/hookified-1.15.1.tgz", + "integrity": "sha512-MvG/clsADq1GPM2KGo2nyfaWVyn9naPiXrqIe4jYjXNZQt238kWyOGrsyc/DmRAQ+Re6yeo6yX/yoNCG5KAEVg==", + "dev": true, + "license": "MIT" + }, + "node_modules/html-encoding-sniffer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", + "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^3.1.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=18" } }, - "node_modules/is-date-object": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", - "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", + "node_modules/html-entities": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz", + "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ], + "license": "MIT" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true, + "license": "MIT" + }, + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.2", - "has-tostringtag": "^1.0.2" + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-tags": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-5.1.0.tgz", + "integrity": "sha512-n6l5uca7/y5joxZ3LUePhzmBFUJ+U2YWzhMa8XUTecSeSlQiZdF5XAd/Q3/WUl0VsXgUwWi8I7CNIwdI5WN1SQ==", + "dev": true, + "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">=20.10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "node_modules/html-webpack-plugin": { + "version": "5.6.7", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.7.tgz", + "integrity": "sha512-md+vXtdCAe60s1k6AU3dUyMJnDxUyQAwfwPKoLisvgUF1IXjtlLsk2se54+qfL9Mdm26bbwvjJybpNx48NKRLw==", "dev": true, "license": "MIT", - "bin": { - "is-docker": "cli.js" + "dependencies": { + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=10.13.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.20.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], "license": "MIT", - "engines": { - "node": ">=0.10.0" + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" } }, - "node_modules/is-finalizationregistry": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", - "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", + "node_modules/htmlparser2/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.3" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 14" } }, - "node_modules/is-fullwidth-code-point": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz", - "integrity": "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==", + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/https-proxy-agent": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "dev": true, "license": "MIT", "dependencies": { - "get-east-asian-width": "^1.3.1" + "agent-base": "^7.1.2", + "debug": "4" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 14" } }, - "node_modules/is-generator-fn": { + "node_modules/human-signals": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "license": "MIT", + "license": "Apache-2.0", "engines": { - "node": ">=6" + "node": ">=10.17.0" } }, - "node_modules/is-generator-function": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", - "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", + "node_modules/husky": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", + "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", "dev": true, "license": "MIT", - "dependencies": { - "call-bound": "^1.0.4", - "generator-function": "^2.0.0", - "get-proto": "^1.0.1", - "has-tostringtag": "^1.0.2", - "safe-regex-test": "^1.1.0" + "bin": { + "husky": "bin.js" }, "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/typicode" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/hyperdyperid": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", + "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", "dev": true, "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, "engines": { - "node": ">=0.10.0" + "node": ">=10.18" } }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, "license": "MIT", "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/is-map": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", - "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, - "license": "MIT", + "license": "ISC", "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || >= 14" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, - "license": "MIT" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" }, - "node_modules/is-nan": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", - "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 4" } }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "node_modules/image-size": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-2.0.2.tgz", + "integrity": "sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==", "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.4" + "bin": { + "image-size": "bin/image-size.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", "engines": { - "node": ">=0.12.0" + "node": ">=16.x" } }, - "node_modules/is-number-object": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", - "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "node_modules/immutable": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.5.tgz", + "integrity": "sha512-t7xcm2siw+hlUM68I+UEOK+z84RzmN59as9DZ7P1l0994DKUWV7UXBMQZVxaoMSRQ+PBZbHCOoBt7a2wxOMt+A==", + "dev": true, + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.3", - "has-tostringtag": "^1.0.2" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-path-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-3.0.0.tgz", - "integrity": "sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==", + "node_modules/import-local": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", + "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-path-inside": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", - "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", + "node_modules/import-meta-resolve": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.2.0.tgz", + "integrity": "sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==", "dev": true, "license": "MIT", - "engines": { - "node": ">=12" - }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.8.19" } }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, - "license": "MIT" + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } }, - "node_modules/is-reference": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", - "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "license": "ISC" + }, + "node_modules/internal-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz", + "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==", "dev": true, "license": "MIT", "dependencies": { - "@types/estree": "*" + "es-errors": "^1.3.0", + "hasown": "^2.0.2", + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/is-regex": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", - "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "node_modules/is-arguments": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", + "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", "dev": true, "license": "MIT", "dependencies": { "call-bound": "^1.0.2", - "gopd": "^1.2.0", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.2" + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -16958,12 +13020,17 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-set": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", - "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "node_modules/is-array-buffer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz", + "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==", "dev": true, "license": "MIT", + "dependencies": { + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" + }, "engines": { "node": ">= 0.4" }, @@ -16971,14 +13038,25 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", - "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-async-function": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz", + "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.3" + "async-function": "^1.0.0", + "call-bound": "^1.0.3", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" }, "engines": { "node": ">= 0.4" @@ -16987,23 +13065,26 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/is-bigint": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz", + "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==", "dev": true, "license": "MIT", + "dependencies": { + "has-bigints": "^1.0.2" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-string": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", - "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", + "node_modules/is-boolean-object": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz", + "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==", "dev": true, "license": "MIT", "dependencies": { @@ -17017,17 +13098,12 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-symbol": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", - "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, "license": "MIT", - "dependencies": { - "call-bound": "^1.0.2", - "has-symbols": "^1.1.0", - "safe-regex-test": "^1.1.0" - }, "engines": { "node": ">= 0.4" }, @@ -17035,14 +13111,14 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", - "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", + "node_modules/is-core-module": { + "version": "2.16.2", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz", + "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==", "dev": true, "license": "MIT", "dependencies": { - "which-typed-array": "^1.1.16" + "hasown": "^2.0.3" }, "engines": { "node": ">= 0.4" @@ -17051,12 +13127,17 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakmap": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", - "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", + "node_modules/is-data-view": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz", + "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==", "dev": true, "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "get-intrinsic": "^1.2.6", + "is-typed-array": "^1.1.13" + }, "engines": { "node": ">= 0.4" }, @@ -17064,14 +13145,15 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakref": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", - "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", + "node_modules/is-date-object": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz", + "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.3" + "call-bound": "^1.0.2", + "has-tostringtag": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -17080,15 +13162,40 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakset": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", - "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz", + "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==", "dev": true, "license": "MIT", "dependencies": { - "call-bound": "^1.0.3", - "get-intrinsic": "^1.2.6" + "call-bound": "^1.0.3" }, "engines": { "node": ">= 0.4" @@ -17097,675 +13204,616 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-wsl": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz", - "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", + "node_modules/is-fullwidth-code-point": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz", + "integrity": "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==", "dev": true, "license": "MIT", "dependencies": { - "is-inside-container": "^1.0.0" + "get-east-asian-width": "^1.3.1" }, "engines": { - "node": ">=16" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true, - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, - "license": "ISC" - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/istanbul-lib-instrument": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", - "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", + "node_modules/is-generator-function": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz", + "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "dependencies": { - "@babel/core": "^7.23.9", - "@babel/parser": "^7.23.9", - "@istanbuljs/schema": "^0.1.3", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^7.5.4" + "call-bound": "^1.0.4", + "generator-function": "^2.0.0", + "get-proto": "^1.0.1", + "has-tostringtag": "^1.0.2", + "safe-regex-test": "^1.1.0" }, "engines": { - "node": ">=10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/istanbul-lib-report/node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", "dev": true, "license": "MIT", "dependencies": { - "semver": "^7.5.3" + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" }, "engines": { - "node": ">=10" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/is-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz", + "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==", "dev": true, "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-source-maps": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", - "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.23", - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0" + "node": ">= 0.4" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/istanbul-reports": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz", - "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==", + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/iterator.prototype": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", - "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", + "node_modules/is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", "dev": true, "license": "MIT", "dependencies": { - "define-data-property": "^1.1.4", - "es-object-atoms": "^1.0.0", - "get-intrinsic": "^1.2.6", - "get-proto": "^1.0.0", - "has-symbols": "^1.1.0", - "set-function-name": "^2.0.2" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" }, "engines": { "node": ">= 0.4" - } - }, - "node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", - "dev": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest/-/jest-30.4.2.tgz", - "integrity": "sha512-Yi1jqNC/Oq0N4hBgNH/YvBpP1P57QqundgytzYqy3yqAa7NZPNjSoi4SGbRAXDMdBzNE6xBCi5U7RgfrvMEUVQ==", + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, "license": "MIT", - "dependencies": { - "@jest/core": "30.4.2", - "@jest/types": "30.4.1", - "import-local": "^3.2.0", - "jest-cli": "30.4.2" - }, - "bin": { - "jest": "bin/jest.js" - }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-changed-files": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-30.4.1.tgz", - "integrity": "sha512-IuctmYrxi21iOSOaIXpJWalHyPAsVv0GeBHKDn8C1CA4W5htHn7INL+wdnL4Bo0+olEndvAFkmb++tIQJG+vvg==", + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, "license": "MIT", - "dependencies": { - "execa": "^5.1.1", - "jest-util": "30.4.1", - "p-limit": "^3.1.0" - }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=0.12.0" } }, - "node_modules/jest-circus": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-30.4.2.tgz", - "integrity": "sha512-rvHH7VlY6LgbJXJTQ87GW62g1FntOtbhh0zT+v04kC+pgL6aBKyYINXxWukCpj3dcIBMw5/XUbtDS9dU9JTXeQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "30.4.1", - "@jest/expect": "30.4.1", - "@jest/test-result": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "chalk": "^4.1.2", - "co": "^4.6.0", - "dedent": "^1.6.0", - "is-generator-fn": "^2.1.0", - "jest-each": "30.4.1", - "jest-matcher-utils": "30.4.1", - "jest-message-util": "30.4.1", - "jest-runtime": "30.4.2", - "jest-snapshot": "30.4.1", - "jest-util": "30.4.1", - "p-limit": "^3.1.0", - "pretty-format": "30.4.1", - "pure-rand": "^7.0.0", - "slash": "^3.0.0", - "stack-utils": "^2.0.6" + "node_modules/is-number-object": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", + "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/is-path-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-3.0.0.tgz", + "integrity": "sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==", "dev": true, "license": "MIT", "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-circus/node_modules/dedent": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.2.tgz", - "integrity": "sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==", + "node_modules/is-path-inside": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", + "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", "dev": true, "license": "MIT", - "peerDependencies": { - "babel-plugin-macros": "^3.1.0" + "engines": { + "node": ">=12" }, - "peerDependenciesMeta": { - "babel-plugin-macros": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-circus/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "dev": true, "license": "MIT", - "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "license": "MIT", "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=0.10.0" } }, - "node_modules/jest-cli": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-30.4.2.tgz", - "integrity": "sha512-jfA2ocvVHMXS2QijrJ0d31ektP+d/W0T5RpcTX2Pq+3sVqHlsXVCM2+FmwpL+bdY8OfHpIg9xMxLF17Zg0U49Q==", + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-reference": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", + "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/core": "30.4.2", - "@jest/test-result": "30.4.1", - "@jest/types": "30.4.1", - "chalk": "^4.1.2", - "exit-x": "^0.2.2", - "import-local": "^3.2.0", - "jest-config": "30.4.2", - "jest-util": "30.4.1", - "jest-validate": "30.4.1", - "yargs": "^17.7.2" - }, - "bin": { - "jest": "bin/jest.js" + "@types/estree": "*" + } + }, + "node_modules/is-regex": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", + "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "gopd": "^1.2.0", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.4" }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz", + "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-30.4.2.tgz", - "integrity": "sha512-rNHAShJQqQwFNoL0hbf3BphSBOWnpOUAKvidLS/AjNVLPfoj5mSf4jQMfW3cYOs6hXeZC7nF7mDHaBnbxELOzg==", + "node_modules/is-shared-array-buffer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz", + "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==", "dev": true, "license": "MIT", "dependencies": { - "@babel/core": "^7.27.4", - "@jest/get-type": "30.1.0", - "@jest/pattern": "30.4.0", - "@jest/test-sequencer": "30.4.1", - "@jest/types": "30.4.1", - "babel-jest": "30.4.1", - "chalk": "^4.1.2", - "ci-info": "^4.2.0", - "deepmerge": "^4.3.1", - "glob": "^10.5.0", - "graceful-fs": "^4.2.11", - "jest-circus": "30.4.2", - "jest-docblock": "30.4.0", - "jest-environment-node": "30.4.1", - "jest-regex-util": "30.4.0", - "jest-resolve": "30.4.1", - "jest-runner": "30.4.2", - "jest-util": "30.4.1", - "jest-validate": "30.4.1", - "parse-json": "^5.2.0", - "pretty-format": "30.4.1", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" + "call-bound": "^1.0.3" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.4" }, - "peerDependencies": { - "@types/node": "*", - "esbuild-register": ">=3.4.0", - "ts-node": ">=9.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "esbuild-register": { - "optional": true - }, - "ts-node": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-config/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/is-string": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz", + "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==", "dev": true, "license": "MIT", + "dependencies": { + "call-bound": "^1.0.3", + "has-tostringtag": "^1.0.2" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-config/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "node_modules/is-symbol": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz", + "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==", "dev": true, "license": "MIT", "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" + "call-bound": "^1.0.2", + "has-symbols": "^1.1.0", + "safe-regex-test": "^1.1.0" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-diff": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-30.4.1.tgz", - "integrity": "sha512-CRpFK0RtLriVDGcPPAnR6HMVI8bSR2jnUIgralhauzYQZIb4RH9AtEInTuQr65LmmGggGcRT6HIASxwqsVsmlA==", + "node_modules/is-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", + "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/diff-sequences": "30.4.0", - "@jest/get-type": "30.1.0", - "chalk": "^4.1.2", - "pretty-format": "30.4.1" + "which-typed-array": "^1.1.16" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/is-weakmap": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz", + "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==", "dev": true, "license": "MIT", "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-diff/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "node_modules/is-weakref": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz", + "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==", "dev": true, "license": "MIT", "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" + "call-bound": "^1.0.3" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-docblock": { - "version": "30.4.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-30.4.0.tgz", - "integrity": "sha512-ZPMabUZCx5MpbZ2eBYSvZ0J8fvo3dR9oM+eeUpb3aKNQFuS2tu3Duw1TNlMoP8k3WQgKGJuhcMFvwcVuq6T7oA==", + "node_modules/is-weakset": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz", + "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==", "dev": true, "license": "MIT", "dependencies": { - "detect-newline": "^3.1.0" + "call-bound": "^1.0.3", + "get-intrinsic": "^1.2.6" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/jest-each": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-30.4.1.tgz", - "integrity": "sha512-/8MJbH6fuj48TstjrMf+u/pd06Qezz5xOXvZA6442heNOWr8bdeoGZX2d9fCn028CoMgYmroH9//zky5GfyYmA==", + "node_modules/is-wsl": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz", + "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/get-type": "30.1.0", - "@jest/types": "30.4.1", - "chalk": "^4.1.2", - "jest-util": "30.4.1", - "pretty-format": "30.4.1" + "is-inside-container": "^1.0.0" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-each/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true, - "license": "MIT", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "license": "BSD-3-Clause", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=8" } }, - "node_modules/jest-each/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "node_modules/istanbul-lib-instrument": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" + "@babel/core": "^7.23.9", + "@babel/parser": "^7.23.9", + "@istanbuljs/schema": "^0.1.3", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=10" } }, - "node_modules/jest-environment-jsdom": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-30.4.1.tgz", - "integrity": "sha512-o3nfaN4zej7qgk2X0j8Jhq/S9nAVKs2xK3QeQxeHVvpkEPxaA1yxDGydR+iVI7zPy7Cp62Aq2h3Ja46QvfWHGA==", + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "@jest/environment": "30.4.1", - "@jest/environment-jsdom-abstract": "30.4.1", - "jsdom": "^26.1.0" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - }, - "peerDependencies": { - "canvas": "^3.0.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "node": ">=10" } }, - "node_modules/jest-environment-node": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-30.4.1.tgz", - "integrity": "sha512-4FZYVOk85hz2AyT6BbarKy9u37g6DbrDyCdFhsnDdXqyrueYQvB+0zO4f/kqLCRD0BsPRXPMNJeQwihKZV8naw==", + "node_modules/istanbul-lib-report/node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/environment": "30.4.1", - "@jest/fake-timers": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "jest-mock": "30.4.1", - "jest-util": "30.4.1", - "jest-validate": "30.4.1" + "semver": "^7.5.3" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-haste-map": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-30.4.1.tgz", - "integrity": "sha512-rFrcONd8jeFsyw+Z9CrScJgglRf2+NFmNam8dKu7n+SoHqNYT47mn0DdEcVUZJpvh7Iz6/si7f7yUH7GJHVgnw==", + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.4.1", - "@types/node": "*", - "anymatch": "^3.1.3", - "fb-watchman": "^2.0.2", - "graceful-fs": "^4.2.11", - "jest-regex-util": "30.4.0", - "jest-util": "30.4.1", - "jest-worker": "30.4.1", - "picomatch": "^4.0.3", - "walker": "^1.0.8" + "has-flag": "^4.0.0" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.3" + "node": ">=8" } }, - "node_modules/jest-leak-detector": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-30.4.1.tgz", - "integrity": "sha512-IpmyiioeHxiWDhesHnUFmOxcTzwCwKpgACgWajtAP+nYQXiY7DakTxB6Bx9JFiRMljr0AX1PvnQdaU1KFoz6NQ==", + "node_modules/istanbul-lib-source-maps": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", + "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", "dev": true, - "license": "MIT", + "license": "BSD-3-Clause", "dependencies": { - "@jest/get-type": "30.1.0", - "pretty-format": "30.4.1" + "@jridgewell/trace-mapping": "^0.3.23", + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">=10" } }, - "node_modules/jest-leak-detector/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/istanbul-reports": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz", + "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "engines": { + "node": ">=8" } }, - "node_modules/jest-leak-detector/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "node_modules/iterator.prototype": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz", + "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==", "dev": true, "license": "MIT", "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" + "define-data-property": "^1.1.4", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.6", + "get-proto": "^1.0.0", + "has-symbols": "^1.1.0", + "set-function-name": "^2.0.2" }, "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "node": ">= 0.4" } }, - "node_modules/jest-matcher-utils": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.4.1.tgz", - "integrity": "sha512-zvYfX5CaeEkFrrLS9suWe9rvJrm9J1Iv3ua8kIBv9GEPzcnsfBf0bob37la7s67fs0nlBC3EuvkOLnXQKxtx4A==", + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, - "license": "MIT", + "license": "BlueOak-1.0.0", "dependencies": { - "@jest/get-type": "30.1.0", - "chalk": "^4.1.2", - "jest-diff": "30.4.1", - "pretty-format": "30.4.1" + "@isaacs/cliui": "^8.0.2" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/jest": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/jest/-/jest-30.4.2.tgz", + "integrity": "sha512-Yi1jqNC/Oq0N4hBgNH/YvBpP1P57QqundgytzYqy3yqAa7NZPNjSoi4SGbRAXDMdBzNE6xBCi5U7RgfrvMEUVQ==", "dev": true, "license": "MIT", + "dependencies": { + "@jest/core": "30.4.2", + "@jest/types": "30.4.1", + "import-local": "^3.2.0", + "jest-cli": "30.4.2" + }, + "bin": { + "jest": "bin/jest.js" + }, "engines": { - "node": ">=10" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "node_modules/jest-changed-files": { "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-30.4.1.tgz", + "integrity": "sha512-IuctmYrxi21iOSOaIXpJWalHyPAsVv0GeBHKDn8C1CA4W5htHn7INL+wdnL4Bo0+olEndvAFkmb++tIQJG+vvg==", "dev": true, "license": "MIT", "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" + "execa": "^5.1.1", + "jest-util": "30.4.1", + "p-limit": "^3.1.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-message-util": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.4.1.tgz", - "integrity": "sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ==", + "node_modules/jest-circus": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-30.4.2.tgz", + "integrity": "sha512-rvHH7VlY6LgbJXJTQ87GW62g1FntOtbhh0zT+v04kC+pgL6aBKyYINXxWukCpj3dcIBMw5/XUbtDS9dU9JTXeQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.27.1", + "@jest/environment": "30.4.1", + "@jest/expect": "30.4.1", + "@jest/test-result": "30.4.1", "@jest/types": "30.4.1", - "@types/stack-utils": "^2.0.3", + "@types/node": "*", "chalk": "^4.1.2", - "graceful-fs": "^4.2.11", + "co": "^4.6.0", + "dedent": "^1.6.0", + "is-generator-fn": "^2.1.0", + "jest-each": "30.4.1", + "jest-matcher-utils": "30.4.1", + "jest-message-util": "30.4.1", + "jest-runtime": "30.4.2", + "jest-snapshot": "30.4.1", "jest-util": "30.4.1", - "picomatch": "^4.0.3", + "p-limit": "^3.1.0", "pretty-format": "30.4.1", + "pure-rand": "^7.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.6" }, @@ -17773,7 +13821,7 @@ "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { + "node_modules/jest-circus/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", @@ -17786,208 +13834,122 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/pretty-format": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", - "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/schemas": "30.4.1", - "ansi-styles": "^5.2.0", - "react-is-18": "npm:react-is@^18.3.1", - "react-is-19": "npm:react-is@^19.2.5" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/jest-mock": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-30.4.1.tgz", - "integrity": "sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "30.4.1", - "@types/node": "*", - "jest-util": "30.4.1" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "node_modules/jest-circus/node_modules/dedent": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.2.tgz", + "integrity": "sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==", "dev": true, "license": "MIT", - "engines": { - "node": ">=6" - }, "peerDependencies": { - "jest-resolve": "*" + "babel-plugin-macros": "^3.1.0" }, "peerDependenciesMeta": { - "jest-resolve": { + "babel-plugin-macros": { "optional": true } } }, - "node_modules/jest-regex-util": { - "version": "30.4.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.4.0.tgz", - "integrity": "sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/jest-resolve": { + "node_modules/jest-circus/node_modules/pretty-format": { "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-30.4.1.tgz", - "integrity": "sha512-Zry8Yq/yJcNAZ7dJ5F2heic8AheXvbFZ7XI5V+h28nrYZ7Qoyy4dItq8OodjnYD270mvX+ZudmrNV9cysqhW5Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.2", - "graceful-fs": "^4.2.11", - "jest-haste-map": "30.4.1", - "jest-pnp-resolver": "^1.2.3", - "jest-util": "30.4.1", - "jest-validate": "30.4.1", - "slash": "^3.0.0", - "unrs-resolver": "^1.7.11" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/jest-resolve-dependencies": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-30.4.2.tgz", - "integrity": "sha512-gDiVh1I+GxYzz9oXlyw+1wv6VOYX1WYxMOfjsA3iGKePV2oxmbHhwxfkALxNxYy1ciw6APWwkW2zZONwP97aEQ==", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", "dev": true, "license": "MIT", "dependencies": { - "jest-regex-util": "30.4.0", - "jest-snapshot": "30.4.1" + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-runner": { + "node_modules/jest-cli": { "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-30.4.2.tgz", - "integrity": "sha512-2dw0PslVYXxffXGpLo+Ejad+KcI1Qkjn7f4X4619gf21oCUmL+SPfjqIa/losUem3yEOvfNZe/F1HWUcNpODcg==", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-30.4.2.tgz", + "integrity": "sha512-jfA2ocvVHMXS2QijrJ0d31ektP+d/W0T5RpcTX2Pq+3sVqHlsXVCM2+FmwpL+bdY8OfHpIg9xMxLF17Zg0U49Q==", "dev": true, "license": "MIT", "dependencies": { - "@jest/console": "30.4.1", - "@jest/environment": "30.4.1", + "@jest/core": "30.4.2", "@jest/test-result": "30.4.1", - "@jest/transform": "30.4.1", "@jest/types": "30.4.1", - "@types/node": "*", "chalk": "^4.1.2", - "emittery": "^0.13.1", "exit-x": "^0.2.2", - "graceful-fs": "^4.2.11", - "jest-docblock": "30.4.0", - "jest-environment-node": "30.4.1", - "jest-haste-map": "30.4.1", - "jest-leak-detector": "30.4.1", - "jest-message-util": "30.4.1", - "jest-resolve": "30.4.1", - "jest-runtime": "30.4.2", + "import-local": "^3.2.0", + "jest-config": "30.4.2", "jest-util": "30.4.1", - "jest-watcher": "30.4.1", - "jest-worker": "30.4.1", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" + "jest-validate": "30.4.1", + "yargs": "^17.7.2" }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/jest-runtime": { - "version": "30.4.2", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-30.4.2.tgz", - "integrity": "sha512-3/5e8iPz2k/VLqlr8DgTftYyLUv8Su3FkCAO2/Od81UsUTpSxOrS6O5x5KkoQwyUjmpYyDJKeyAvg2T2nvpNkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/environment": "30.4.1", - "@jest/fake-timers": "30.4.1", - "@jest/globals": "30.4.1", - "@jest/source-map": "30.0.1", - "@jest/test-result": "30.4.1", - "@jest/transform": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "chalk": "^4.1.2", - "cjs-module-lexer": "^2.1.0", - "collect-v8-coverage": "^1.0.2", - "glob": "^10.5.0", - "graceful-fs": "^4.2.11", - "jest-haste-map": "30.4.1", - "jest-message-util": "30.4.1", - "jest-mock": "30.4.1", - "jest-regex-util": "30.4.0", - "jest-resolve": "30.4.1", - "jest-snapshot": "30.4.1", - "jest-util": "30.4.1", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" + "bin": { + "jest": "bin/jest.js" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/jest-runtime/node_modules/cjs-module-lexer": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz", - "integrity": "sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/jest-snapshot": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-30.4.1.tgz", - "integrity": "sha512-tEOkkfOMppUyeiHwjZswOQ3lcnoTnws/q5FnGIaeIh/jmoU0ZlgMYRR8sTlTj+nNGCoJ0RDq6SfxGxCsyMTPmw==", + "node_modules/jest-config": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-30.4.2.tgz", + "integrity": "sha512-rNHAShJQqQwFNoL0hbf3BphSBOWnpOUAKvidLS/AjNVLPfoj5mSf4jQMfW3cYOs6hXeZC7nF7mDHaBnbxELOzg==", "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.27.4", - "@babel/generator": "^7.27.5", - "@babel/plugin-syntax-jsx": "^7.27.1", - "@babel/plugin-syntax-typescript": "^7.27.1", - "@babel/types": "^7.27.3", - "@jest/expect-utils": "30.4.1", "@jest/get-type": "30.1.0", - "@jest/snapshot-utils": "30.4.1", - "@jest/transform": "30.4.1", + "@jest/pattern": "30.4.0", + "@jest/test-sequencer": "30.4.1", "@jest/types": "30.4.1", - "babel-preset-current-node-syntax": "^1.2.0", + "babel-jest": "30.4.1", "chalk": "^4.1.2", - "expect": "30.4.1", + "ci-info": "^4.2.0", + "deepmerge": "^4.3.1", + "glob": "^10.5.0", "graceful-fs": "^4.2.11", - "jest-diff": "30.4.1", - "jest-matcher-utils": "30.4.1", - "jest-message-util": "30.4.1", + "jest-circus": "30.4.2", + "jest-docblock": "30.4.0", + "jest-environment-node": "30.4.1", + "jest-regex-util": "30.4.0", + "jest-resolve": "30.4.1", + "jest-runner": "30.4.2", "jest-util": "30.4.1", + "jest-validate": "30.4.1", + "parse-json": "^5.2.0", "pretty-format": "30.4.1", - "semver": "^7.7.2", - "synckit": "^0.11.8" + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "esbuild-register": ">=3.4.0", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "esbuild-register": { + "optional": true + }, + "ts-node": { + "optional": true + } } }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { + "node_modules/jest-config/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", @@ -18000,7 +13962,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-snapshot/node_modules/pretty-format": { + "node_modules/jest-config/node_modules/pretty-format": { "version": "30.4.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", @@ -18016,43 +13978,23 @@ "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-util": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-30.4.1.tgz", - "integrity": "sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jest/types": "30.4.1", - "@types/node": "*", - "chalk": "^4.1.2", - "ci-info": "^4.2.0", - "graceful-fs": "^4.2.11", - "picomatch": "^4.0.3" - }, - "engines": { - "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" - } - }, - "node_modules/jest-validate": { + "node_modules/jest-diff": { "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-30.4.1.tgz", - "integrity": "sha512-PDWi4SOwLnwqNDfHZjOcsEFyZ4fc/2W2gVL3DEoyqnB6jCQMLRtfBong8s6omIw3lI0HWOus12xfnFmQtjW3fw==", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-30.4.1.tgz", + "integrity": "sha512-CRpFK0RtLriVDGcPPAnR6HMVI8bSR2jnUIgralhauzYQZIb4RH9AtEInTuQr65LmmGggGcRT6HIASxwqsVsmlA==", "dev": true, "license": "MIT", "dependencies": { + "@jest/diff-sequences": "30.4.0", "@jest/get-type": "30.1.0", - "@jest/types": "30.4.1", - "camelcase": "^6.3.0", "chalk": "^4.1.2", - "leven": "^3.1.0", "pretty-format": "30.4.1" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { + "node_modules/jest-diff/node_modules/ansi-styles": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", @@ -18065,20 +14007,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-validate/node_modules/pretty-format": { + "node_modules/jest-diff/node_modules/pretty-format": { "version": "30.4.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", @@ -18094,681 +14023,540 @@ "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-watcher": { - "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-30.4.1.tgz", - "integrity": "sha512-/l9UonmvCwjHH7d2h3iAwIloLc1H0S8mJZ/LNK3i86hqwPAz8otUJjP9MfYtz9Tt77Su5FD2xGjZn8d31IZHlw==", + "node_modules/jest-docblock": { + "version": "30.4.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-30.4.0.tgz", + "integrity": "sha512-ZPMabUZCx5MpbZ2eBYSvZ0J8fvo3dR9oM+eeUpb3aKNQFuS2tu3Duw1TNlMoP8k3WQgKGJuhcMFvwcVuq6T7oA==", "dev": true, "license": "MIT", "dependencies": { - "@jest/test-result": "30.4.1", - "@jest/types": "30.4.1", - "@types/node": "*", - "ansi-escapes": "^4.3.2", - "chalk": "^4.1.2", - "emittery": "^0.13.1", - "jest-util": "30.4.1", - "string-length": "^4.0.2" + "detect-newline": "^3.1.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jest-worker": { + "node_modules/jest-each": { "version": "30.4.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-30.4.1.tgz", - "integrity": "sha512-SHynN/q/QD++iNyvMdy+WMmbCGk8jIsNcRxycXbWubSOhvo6T+j2afcfUSl+3hYsiBebOTo0cT7c2H7CXugu1g==", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-30.4.1.tgz", + "integrity": "sha512-/8MJbH6fuj48TstjrMf+u/pd06Qezz5xOXvZA6442heNOWr8bdeoGZX2d9fCn028CoMgYmroH9//zky5GfyYmA==", "dev": true, "license": "MIT", "dependencies": { - "@types/node": "*", - "@ungap/structured-clone": "^1.3.0", + "@jest/get-type": "30.1.0", + "@jest/types": "30.4.1", + "chalk": "^4.1.2", "jest-util": "30.4.1", - "merge-stream": "^2.0.0", - "supports-color": "^8.1.1" + "pretty-format": "30.4.1" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jiti": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz", - "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==", + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", - "bin": { - "jiti": "lib/jiti-cli.mjs" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", - "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "node_modules/jest-each/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", "dev": true, "license": "MIT", "dependencies": { - "argparse": "^2.0.1" + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/jsdom": { - "version": "26.1.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-26.1.0.tgz", - "integrity": "sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==", + "node_modules/jest-environment-jsdom": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-30.4.1.tgz", + "integrity": "sha512-o3nfaN4zej7qgk2X0j8Jhq/S9nAVKs2xK3QeQxeHVvpkEPxaA1yxDGydR+iVI7zPy7Cp62Aq2h3Ja46QvfWHGA==", "dev": true, "license": "MIT", "dependencies": { - "cssstyle": "^4.2.1", - "data-urls": "^5.0.0", - "decimal.js": "^10.5.0", - "html-encoding-sniffer": "^4.0.0", - "http-proxy-agent": "^7.0.2", - "https-proxy-agent": "^7.0.6", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.16", - "parse5": "^7.2.1", - "rrweb-cssom": "^0.8.0", - "saxes": "^6.0.0", - "symbol-tree": "^3.2.4", - "tough-cookie": "^5.1.1", - "w3c-xmlserializer": "^5.0.0", - "webidl-conversions": "^7.0.0", - "whatwg-encoding": "^3.1.1", - "whatwg-mimetype": "^4.0.0", - "whatwg-url": "^14.1.1", - "ws": "^8.18.0", - "xml-name-validator": "^5.0.0" + "@jest/environment": "30.4.1", + "@jest/environment-jsdom-abstract": "30.4.1", + "jsdom": "^26.1.0" }, "engines": { - "node": ">=18" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" }, "peerDependencies": { "canvas": "^3.0.0" }, "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/jsesc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", - "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", - "dev": true, - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonfile": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz", - "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "canvas": { + "optional": true + } } }, - "node_modules/jsx-ast-utils": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", - "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "node_modules/jest-environment-node": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-30.4.1.tgz", + "integrity": "sha512-4FZYVOk85hz2AyT6BbarKy9u37g6DbrDyCdFhsnDdXqyrueYQvB+0zO4f/kqLCRD0BsPRXPMNJeQwihKZV8naw==", "dev": true, "license": "MIT", "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "object.assign": "^4.1.4", - "object.values": "^1.1.6" + "@jest/environment": "30.4.1", + "@jest/fake-timers": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "jest-mock": "30.4.1", + "jest-util": "30.4.1", + "jest-validate": "30.4.1" }, "engines": { - "node": ">=4.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "node_modules/jest-haste-map": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-30.4.1.tgz", + "integrity": "sha512-rFrcONd8jeFsyw+Z9CrScJgglRf2+NFmNam8dKu7n+SoHqNYT47mn0DdEcVUZJpvh7Iz6/si7f7yUH7GJHVgnw==", "dev": true, "license": "MIT", "dependencies": { - "json-buffer": "3.0.1" + "@jest/types": "30.4.1", + "@types/node": "*", + "anymatch": "^3.1.3", + "fb-watchman": "^2.0.2", + "graceful-fs": "^4.2.11", + "jest-regex-util": "30.4.0", + "jest-util": "30.4.1", + "jest-worker": "30.4.1", + "picomatch": "^4.0.3", + "walker": "^1.0.8" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.3" } }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "node_modules/jest-leak-detector": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-30.4.1.tgz", + "integrity": "sha512-IpmyiioeHxiWDhesHnUFmOxcTzwCwKpgACgWajtAP+nYQXiY7DakTxB6Bx9JFiRMljr0AX1PvnQdaU1KFoz6NQ==", "dev": true, "license": "MIT", + "dependencies": { + "@jest/get-type": "30.1.0", + "pretty-format": "30.4.1" + }, "engines": { - "node": ">=0.10.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/known-css-properties": { - "version": "0.37.0", - "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.37.0.tgz", - "integrity": "sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", "dev": true, "license": "MIT", "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" }, "engines": { - "node": ">= 0.8.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lightningcss": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", - "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", + "node_modules/jest-matcher-utils": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.4.1.tgz", + "integrity": "sha512-zvYfX5CaeEkFrrLS9suWe9rvJrm9J1Iv3ua8kIBv9GEPzcnsfBf0bob37la7s67fs0nlBC3EuvkOLnXQKxtx4A==", "dev": true, - "license": "MPL-2.0", - "peer": true, + "license": "MIT", "dependencies": { - "detect-libc": "^2.0.3" - }, - "engines": { - "node": ">= 12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "@jest/get-type": "30.1.0", + "chalk": "^4.1.2", + "jest-diff": "30.4.1", + "pretty-format": "30.4.1" }, - "optionalDependencies": { - "lightningcss-android-arm64": "1.32.0", - "lightningcss-darwin-arm64": "1.32.0", - "lightningcss-darwin-x64": "1.32.0", - "lightningcss-freebsd-x64": "1.32.0", - "lightningcss-linux-arm-gnueabihf": "1.32.0", - "lightningcss-linux-arm64-gnu": "1.32.0", - "lightningcss-linux-arm64-musl": "1.32.0", - "lightningcss-linux-x64-gnu": "1.32.0", - "lightningcss-linux-x64-musl": "1.32.0", - "lightningcss-win32-arm64-msvc": "1.32.0", - "lightningcss-win32-x64-msvc": "1.32.0" - } - }, - "node_modules/lightningcss-android-arm64": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", - "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "android" - ], - "peer": true, "engines": { - "node": ">= 12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lightningcss-darwin-arm64": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", - "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", - "cpu": [ - "arm64" - ], + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "darwin" - ], - "peer": true, + "license": "MIT", "engines": { - "node": ">= 12.0.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/lightningcss-darwin-x64": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", - "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", - "cpu": [ - "x64" - ], + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "darwin" - ], - "peer": true, - "engines": { - "node": ">= 12.0.0" + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } - }, - "node_modules/lightningcss-freebsd-x64": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", - "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "freebsd" - ], - "peer": true, "engines": { - "node": ">= 12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lightningcss-linux-arm-gnueabihf": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", - "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", - "cpu": [ - "arm" - ], + "node_modules/jest-message-util": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.4.1.tgz", + "integrity": "sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">= 12.0.0" + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@jest/types": "30.4.1", + "@types/stack-utils": "^2.0.3", + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "jest-util": "30.4.1", + "picomatch": "^4.0.3", + "pretty-format": "30.4.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.6" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lightningcss-linux-arm64-gnu": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", - "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", - "cpu": [ - "arm64" - ], + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, + "license": "MIT", "engines": { - "node": ">= 12.0.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/lightningcss-linux-arm64-musl": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", - "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", - "cpu": [ - "arm64" - ], + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">= 12.0.0" + "license": "MIT", + "dependencies": { + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lightningcss-linux-x64-gnu": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", - "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", - "cpu": [ - "x64" - ], + "node_modules/jest-mock": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-30.4.1.tgz", + "integrity": "sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, - "engines": { - "node": ">= 12.0.0" + "license": "MIT", + "dependencies": { + "@jest/types": "30.4.1", + "@types/node": "*", + "jest-util": "30.4.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lightningcss-linux-x64-musl": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", - "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", - "cpu": [ - "x64" - ], + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "linux" - ], - "peer": true, + "license": "MIT", "engines": { - "node": ">= 12.0.0" + "node": ">=6" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } } }, - "node_modules/lightningcss-win32-arm64-msvc": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", - "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", - "cpu": [ - "arm64" - ], + "node_modules/jest-regex-util": { + "version": "30.4.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.4.0.tgz", + "integrity": "sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "win32" - ], - "peer": true, + "license": "MIT", "engines": { - "node": ">= 12.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lightningcss-win32-x64-msvc": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", - "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", - "cpu": [ - "x64" - ], + "node_modules/jest-resolve": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-30.4.1.tgz", + "integrity": "sha512-Zry8Yq/yJcNAZ7dJ5F2heic8AheXvbFZ7XI5V+h28nrYZ7Qoyy4dItq8OodjnYD270mvX+ZudmrNV9cysqhW5Q==", "dev": true, - "license": "MPL-2.0", - "optional": true, - "os": [ - "win32" - ], - "peer": true, - "engines": { - "node": ">= 12.0.0" + "license": "MIT", + "dependencies": { + "chalk": "^4.1.2", + "graceful-fs": "^4.2.11", + "jest-haste-map": "30.4.1", + "jest-pnp-resolver": "^1.2.3", + "jest-util": "30.4.1", + "jest-validate": "30.4.1", + "slash": "^3.0.0", + "unrs-resolver": "^1.7.11" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lilconfig": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", - "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "node_modules/jest-resolve-dependencies": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-30.4.2.tgz", + "integrity": "sha512-gDiVh1I+GxYzz9oXlyw+1wv6VOYX1WYxMOfjsA3iGKePV2oxmbHhwxfkALxNxYy1ciw6APWwkW2zZONwP97aEQ==", "dev": true, "license": "MIT", - "engines": { - "node": ">=14" + "dependencies": { + "jest-regex-util": "30.4.0", + "jest-snapshot": "30.4.1" }, - "funding": { - "url": "https://github.com/sponsors/antonk52" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "node_modules/jest-runner": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-30.4.2.tgz", + "integrity": "sha512-2dw0PslVYXxffXGpLo+Ejad+KcI1Qkjn7f4X4619gf21oCUmL+SPfjqIa/losUem3yEOvfNZe/F1HWUcNpODcg==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "@jest/console": "30.4.1", + "@jest/environment": "30.4.1", + "@jest/test-result": "30.4.1", + "@jest/transform": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "chalk": "^4.1.2", + "emittery": "^0.13.1", + "exit-x": "^0.2.2", + "graceful-fs": "^4.2.11", + "jest-docblock": "30.4.0", + "jest-environment-node": "30.4.1", + "jest-haste-map": "30.4.1", + "jest-leak-detector": "30.4.1", + "jest-message-util": "30.4.1", + "jest-resolve": "30.4.1", + "jest-runtime": "30.4.2", + "jest-util": "30.4.1", + "jest-watcher": "30.4.1", + "jest-worker": "30.4.1", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } }, - "node_modules/lint-staged": { - "version": "16.4.0", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-16.4.0.tgz", - "integrity": "sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw==", + "node_modules/jest-runtime": { + "version": "30.4.2", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-30.4.2.tgz", + "integrity": "sha512-3/5e8iPz2k/VLqlr8DgTftYyLUv8Su3FkCAO2/Od81UsUTpSxOrS6O5x5KkoQwyUjmpYyDJKeyAvg2T2nvpNkQ==", "dev": true, "license": "MIT", "dependencies": { - "commander": "^14.0.3", - "listr2": "^9.0.5", - "picomatch": "^4.0.3", - "string-argv": "^0.3.2", - "tinyexec": "^1.0.4", - "yaml": "^2.8.2" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" + "@jest/environment": "30.4.1", + "@jest/fake-timers": "30.4.1", + "@jest/globals": "30.4.1", + "@jest/source-map": "30.0.1", + "@jest/test-result": "30.4.1", + "@jest/transform": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "chalk": "^4.1.2", + "cjs-module-lexer": "^2.1.0", + "collect-v8-coverage": "^1.0.2", + "glob": "^10.5.0", + "graceful-fs": "^4.2.11", + "jest-haste-map": "30.4.1", + "jest-message-util": "30.4.1", + "jest-mock": "30.4.1", + "jest-regex-util": "30.4.0", + "jest-resolve": "30.4.1", + "jest-snapshot": "30.4.1", + "jest-util": "30.4.1", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "engines": { - "node": ">=20.17" - }, - "funding": { - "url": "https://opencollective.com/lint-staged" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/lint-staged/node_modules/commander": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.3.tgz", - "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==", + "node_modules/jest-runtime/node_modules/cjs-module-lexer": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz", + "integrity": "sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=20" - } + "license": "MIT" }, - "node_modules/listr2": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-9.0.5.tgz", - "integrity": "sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==", + "node_modules/jest-snapshot": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-30.4.1.tgz", + "integrity": "sha512-tEOkkfOMppUyeiHwjZswOQ3lcnoTnws/q5FnGIaeIh/jmoU0ZlgMYRR8sTlTj+nNGCoJ0RDq6SfxGxCsyMTPmw==", "dev": true, "license": "MIT", "dependencies": { - "cli-truncate": "^5.0.0", - "colorette": "^2.0.20", - "eventemitter3": "^5.0.1", - "log-update": "^6.1.0", - "rfdc": "^1.4.1", - "wrap-ansi": "^9.0.0" + "@babel/core": "^7.27.4", + "@babel/generator": "^7.27.5", + "@babel/plugin-syntax-jsx": "^7.27.1", + "@babel/plugin-syntax-typescript": "^7.27.1", + "@babel/types": "^7.27.3", + "@jest/expect-utils": "30.4.1", + "@jest/get-type": "30.1.0", + "@jest/snapshot-utils": "30.4.1", + "@jest/transform": "30.4.1", + "@jest/types": "30.4.1", + "babel-preset-current-node-syntax": "^1.2.0", + "chalk": "^4.1.2", + "expect": "30.4.1", + "graceful-fs": "^4.2.11", + "jest-diff": "30.4.1", + "jest-matcher-utils": "30.4.1", + "jest-message-util": "30.4.1", + "jest-util": "30.4.1", + "pretty-format": "30.4.1", + "semver": "^7.7.2", + "synckit": "^0.11.8" }, "engines": { - "node": ">=20.0.0" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/listr2/node_modules/ansi-styles": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", - "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/listr2/node_modules/emoji-regex": { - "version": "10.6.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", - "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", - "dev": true, - "license": "MIT" - }, - "node_modules/listr2/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", "dev": true, "license": "MIT", "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", - "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", + "node_modules/jest-util": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-30.4.1.tgz", + "integrity": "sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" + "@jest/types": "30.4.1", + "@types/node": "*", + "chalk": "^4.1.2", + "ci-info": "^4.2.0", + "graceful-fs": "^4.2.11", + "picomatch": "^4.0.3" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/loader-runner": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz", - "integrity": "sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==", + "node_modules/jest-validate": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-30.4.1.tgz", + "integrity": "sha512-PDWi4SOwLnwqNDfHZjOcsEFyZ4fc/2W2gVL3DEoyqnB6jCQMLRtfBong8s6omIw3lI0HWOus12xfnFmQtjW3fw==", "dev": true, "license": "MIT", - "engines": { - "node": ">=6.11.5" + "dependencies": { + "@jest/get-type": "30.1.0", + "@jest/types": "30.4.1", + "camelcase": "^6.3.0", + "chalk": "^4.1.2", + "leven": "^3.1.0", + "pretty-format": "30.4.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/loader-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", - "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", "engines": { - "node": ">= 12.13.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, "engines": { "node": ">=10" }, @@ -18776,1157 +14564,1134 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lodash": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz", - "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.truncate": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", - "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/log-update": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", - "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.4.1.tgz", + "integrity": "sha512-K6KiKMHTL4jjX4u3Kir2EW07nRfcqVTXIImx50wbjHQTcZPgg+gjVeNTIT3l3L1Rd4UefxfogquC9J37SoFyyw==", "dev": true, "license": "MIT", "dependencies": { - "ansi-escapes": "^7.0.0", - "cli-cursor": "^5.0.0", - "slice-ansi": "^7.1.0", - "strip-ansi": "^7.1.0", - "wrap-ansi": "^9.0.0" + "@jest/schemas": "30.4.1", + "ansi-styles": "^5.2.0", + "react-is-18": "npm:react-is@^18.3.1", + "react-is-19": "npm:react-is@^19.2.5" }, "engines": { - "node": ">=18" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" + } + }, + "node_modules/jest-watcher": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-30.4.1.tgz", + "integrity": "sha512-/l9UonmvCwjHH7d2h3iAwIloLc1H0S8mJZ/LNK3i86hqwPAz8otUJjP9MfYtz9Tt77Su5FD2xGjZn8d31IZHlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jest/test-result": "30.4.1", + "@jest/types": "30.4.1", + "@types/node": "*", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2", + "emittery": "^0.13.1", + "jest-util": "30.4.1", + "string-length": "^4.0.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/log-update/node_modules/ansi-escapes": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz", - "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==", + "node_modules/jest-worker": { + "version": "30.4.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-30.4.1.tgz", + "integrity": "sha512-SHynN/q/QD++iNyvMdy+WMmbCGk8jIsNcRxycXbWubSOhvo6T+j2afcfUSl+3hYsiBebOTo0cT7c2H7CXugu1g==", "dev": true, "license": "MIT", "dependencies": { - "environment": "^1.0.0" + "@types/node": "*", + "@ungap/structured-clone": "^1.3.0", + "jest-util": "30.4.1", + "merge-stream": "^2.0.0", + "supports-color": "^8.1.1" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, - "node_modules/log-update/node_modules/ansi-styles": { - "version": "6.2.3", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", - "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "node_modules/jiti": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz", + "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==", "dev": true, "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "bin": { + "jiti": "lib/jiti-cli.mjs" } }, - "node_modules/log-update/node_modules/emoji-regex": { - "version": "10.6.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", - "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true, "license": "MIT" }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.2.tgz", - "integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==", + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "dev": true, "license": "MIT", "dependencies": { - "ansi-styles": "^6.2.1", - "is-fullwidth-code-point": "^5.0.0" - }, - "engines": { - "node": ">=18" + "argparse": "^2.0.1" }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/log-update/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "node_modules/jsdom": { + "version": "26.1.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-26.1.0.tgz", + "integrity": "sha512-Cvc9WUhxSMEo4McES3P7oK3QaXldCfNWp7pl2NNeiIFlCoLr3kfq9kb1fxftiwk1FLV7CvpvDfonxtzUDeSOPg==", "dev": true, "license": "MIT", "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" + "cssstyle": "^4.2.1", + "data-urls": "^5.0.0", + "decimal.js": "^10.5.0", + "html-encoding-sniffer": "^4.0.0", + "http-proxy-agent": "^7.0.2", + "https-proxy-agent": "^7.0.6", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.16", + "parse5": "^7.2.1", + "rrweb-cssom": "^0.8.0", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^5.1.1", + "w3c-xmlserializer": "^5.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^3.1.1", + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.1.1", + "ws": "^8.18.0", + "xml-name-validator": "^5.0.0" }, "engines": { "node": ">=18" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "canvas": "^3.0.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", - "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, "license": "MIT", - "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "node": ">=6" } }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true, - "license": "MIT", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } + "license": "MIT" }, - "node_modules/loupe": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", - "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true, "license": "MIT" }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } + "license": "MIT" }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } + "license": "MIT" }, - "node_modules/lz-string": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", - "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "license": "MIT", "bin": { - "lz-string": "bin/bin.js" + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" } }, - "node_modules/magic-string": { - "version": "0.30.21", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", - "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "node_modules/jsonfile": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz", + "integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==", "dev": true, "license": "MIT", "dependencies": { - "@jridgewell/sourcemap-codec": "^1.5.5" + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dev": true, "license": "MIT", "dependencies": { - "semver": "^6.0.0" + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "node": ">=4.0" } }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, - "license": "BSD-3-Clause", + "license": "MIT", "dependencies": { - "tmpl": "1.0.5" + "json-buffer": "3.0.1" } }, - "node_modules/math-intrinsics": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", - "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, "license": "MIT", "engines": { - "node": ">= 0.4" + "node": ">=0.10.0" } }, - "node_modules/mathml-tag-names": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-4.0.0.tgz", - "integrity": "sha512-aa6AU2Pcx0VP/XWnh8IGL0SYSgQHDT6Ucror2j2mXeFAlN3ahaNs8EZtG1YiticMkSLj3Gt6VPFfZogt7G5iFQ==", + "node_modules/known-css-properties": { + "version": "0.37.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.37.0.tgz", + "integrity": "sha512-JCDrsP4Z1Sb9JwG0aJ8Eo2r7k4Ou5MwmThS/6lcIe1ICyb7UBJKGRIUUdqc2ASdE/42lgz6zFUnzAIhtXnBVrQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">=6" } }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "license": "MIT", "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/mdn-data": { - "version": "2.27.1", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", - "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "node_modules/lightningcss": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz", + "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==", "dev": true, - "license": "Unlicense", + "license": "MPL-2.0", + "peer": true, "dependencies": { - "fs-monkey": "^1.0.4" + "detect-libc": "^2.0.3" }, "engines": { - "node": ">= 4.0.0" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "lightningcss-android-arm64": "1.32.0", + "lightningcss-darwin-arm64": "1.32.0", + "lightningcss-darwin-x64": "1.32.0", + "lightningcss-freebsd-x64": "1.32.0", + "lightningcss-linux-arm-gnueabihf": "1.32.0", + "lightningcss-linux-arm64-gnu": "1.32.0", + "lightningcss-linux-arm64-musl": "1.32.0", + "lightningcss-linux-x64-gnu": "1.32.0", + "lightningcss-linux-x64-musl": "1.32.0", + "lightningcss-win32-arm64-msvc": "1.32.0", + "lightningcss-win32-x64-msvc": "1.32.0" } }, - "node_modules/meow": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-14.1.0.tgz", - "integrity": "sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw==", + "node_modules/lightningcss-android-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz", + "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "android" + ], + "peer": true, "engines": { - "node": ">=20" + "node": ">= 12.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true, - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/lightningcss-darwin-arm64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz", + "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, "engines": { - "node": ">= 8" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "node_modules/lightningcss-darwin-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz", + "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, + "license": "MPL-2.0", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, "engines": { - "node": ">=8.6" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/micromatch/node_modules/picomatch": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", - "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", + "node_modules/lightningcss-freebsd-x64": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz", + "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "freebsd" + ], + "peer": true, "engines": { - "node": ">=8.6" + "node": ">= 12.0.0" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "node_modules/lightningcss-linux-arm-gnueabihf": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz", + "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==", + "cpu": [ + "arm" + ], "dev": true, - "license": "MIT", - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">= 12.0.0" }, - "bin": { - "miller-rabin": "bin/miller-rabin" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.3", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", - "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", - "dev": true, - "license": "MIT" - }, - "node_modules/mime": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", - "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "node_modules/lightningcss-linux-arm64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz", + "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", - "bin": { - "mime": "cli.js" - }, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, "engines": { - "node": ">=4.0.0" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/lightningcss-linux-arm64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz", + "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, + "engines": { + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/lightningcss-linux-x64-gnu": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz", + "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, "engines": { - "node": ">= 0.6" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/lightningcss-linux-x64-musl": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz", + "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", - "dependencies": { - "mime-db": "1.52.0" - }, + "license": "MPL-2.0", + "optional": true, + "os": [ + "linux" + ], + "peer": true, "engines": { - "node": ">= 0.6" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/lightningcss-win32-arm64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz", + "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==", + "cpu": [ + "arm64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "peer": true, "engines": { - "node": ">=6" + "node": ">= 12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/mimic-function": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", - "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", + "node_modules/lightningcss-win32-x64-msvc": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz", + "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==", + "cpu": [ + "x64" + ], "dev": true, - "license": "MIT", + "license": "MPL-2.0", + "optional": true, + "os": [ + "win32" + ], + "peer": true, "engines": { - "node": ">=18" + "node": ">= 12.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "dev": true, "license": "MIT", "engines": { - "node": ">=4" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true, - "license": "ISC" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true, "license": "MIT" }, - "node_modules/minimatch": { - "version": "10.2.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", - "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", + "node_modules/lint-staged": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-16.4.0.tgz", + "integrity": "sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw==", "dev": true, - "license": "BlueOak-1.0.0", + "license": "MIT", "dependencies": { - "brace-expansion": "^5.0.5" + "commander": "^14.0.3", + "listr2": "^9.0.5", + "picomatch": "^4.0.3", + "string-argv": "^0.3.2", + "tinyexec": "^1.0.4", + "yaml": "^2.8.2" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": "18 || 20 || >=22" + "node": ">=20.17" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://opencollective.com/lint-staged" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "node_modules/lint-staged/node_modules/commander": { + "version": "14.0.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.3.tgz", + "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==", "dev": true, "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", - "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", - "dev": true, - "license": "BlueOak-1.0.0", "engines": { - "node": ">=16 || 14 >=14.17" + "node": ">=20" } }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, - "license": "MIT" - }, - "node_modules/multimatch": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", - "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", + "node_modules/listr2": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-9.0.5.tgz", + "integrity": "sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==", "dev": true, "license": "MIT", "dependencies": { - "@types/minimatch": "^3.0.3", - "array-differ": "^3.0.0", - "array-union": "^2.1.0", - "arrify": "^2.0.1", - "minimatch": "^3.0.4" + "cli-truncate": "^5.0.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^6.1.0", + "rfdc": "^1.4.1", + "wrap-ansi": "^9.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=20.0.0" } }, - "node_modules/multimatch/node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/multimatch/node_modules/brace-expansion": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", - "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", + "node_modules/listr2/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", "dev": true, "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/multimatch/node_modules/minimatch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", - "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "node_modules/listr2/node_modules/emoji-regex": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } + "license": "MIT" }, - "node_modules/nanoid": { - "version": "3.3.12", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", - "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "node_modules/listr2/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "bin": { - "nanoid": "bin/nanoid.cjs" + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/napi-postinstall": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", - "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", "dev": true, "license": "MIT", - "bin": { - "napi-postinstall": "lib/cli.js" + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + "node": ">=18" }, "funding": { - "url": "https://opencollective.com/napi-postinstall" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true, - "license": "MIT" - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true, - "license": "MIT" - }, - "node_modules/next": { - "version": "16.2.6", - "resolved": "https://registry.npmjs.org/next/-/next-16.2.6.tgz", - "integrity": "sha512-qOVgKJg1+At15NpeUP+eJgCHvTCgXsogweq87Ri/Ix7PkqQHg4sdaXmSFqKlgaIXE4kW0g25LE68W87UANlHtw==", + "node_modules/loader-runner": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.2.tgz", + "integrity": "sha512-DFEqQ3ihfS9blba08cLfYf1NRAIEm+dDjic073DRDc3/JspI/8wYmtDsHwd3+4hwvdxSK7PGaElfTmm0awWJ4w==", "dev": true, "license": "MIT", - "dependencies": { - "@next/env": "16.2.6", - "@swc/helpers": "0.5.15", - "baseline-browser-mapping": "^2.9.19", - "caniuse-lite": "^1.0.30001579", - "postcss": "8.4.31", - "styled-jsx": "5.1.6" - }, - "bin": { - "next": "dist/bin/next" - }, "engines": { - "node": ">=20.9.0" - }, - "optionalDependencies": { - "@next/swc-darwin-arm64": "16.2.6", - "@next/swc-darwin-x64": "16.2.6", - "@next/swc-linux-arm64-gnu": "16.2.6", - "@next/swc-linux-arm64-musl": "16.2.6", - "@next/swc-linux-x64-gnu": "16.2.6", - "@next/swc-linux-x64-musl": "16.2.6", - "@next/swc-win32-arm64-msvc": "16.2.6", - "@next/swc-win32-x64-msvc": "16.2.6", - "sharp": "^0.34.5" - }, - "peerDependencies": { - "@opentelemetry/api": "^1.1.0", - "@playwright/test": "^1.51.1", - "babel-plugin-react-compiler": "*", - "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", - "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", - "sass": "^1.3.0" + "node": ">=6.11.5" }, - "peerDependenciesMeta": { - "@opentelemetry/api": { - "optional": true - }, - "@playwright/test": { - "optional": true - }, - "babel-plugin-react-compiler": { - "optional": true - }, - "sass": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/next/node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "node_modules/loader-utils": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", + "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "license": "MIT", - "dependencies": { - "nanoid": "^3.3.6", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" - }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">= 12.13.0" } }, - "node_modules/next/node_modules/styled-jsx": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", - "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "license": "MIT", "dependencies": { - "client-only": "0.0.1" + "p-locate": "^5.0.0" }, "engines": { - "node": ">= 12.0.0" - }, - "peerDependencies": { - "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + "node": ">=10" }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "babel-plugin-macros": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "node_modules/lodash": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.18.1.tgz", + "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==", "dev": true, - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } + "license": "MIT" }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "dev": true, "license": "MIT" }, - "node_modules/node-addon-api": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", - "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.truncate": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", + "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-update": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", + "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", "dev": true, "license": "MIT", - "optional": true + "dependencies": { + "ansi-escapes": "^7.0.0", + "cli-cursor": "^5.0.0", + "slice-ansi": "^7.1.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/node-exports-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.0.tgz", - "integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==", + "node_modules/log-update/node_modules/ansi-escapes": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.3.0.tgz", + "integrity": "sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==", "dev": true, "license": "MIT", "dependencies": { - "array.prototype.flatmap": "^1.3.3", - "es-errors": "^1.3.0", - "object.entries": "^1.1.9", - "semver": "^6.3.1" + "environment": "^1.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/node-exports-info/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "node_modules/log-update/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "node_modules/log-update/node_modules/emoji-regex": { + "version": "10.6.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", "dev": true, "license": "MIT" }, - "node_modules/node-polyfill-webpack-plugin": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-2.0.1.tgz", - "integrity": "sha512-ZUMiCnZkP1LF0Th2caY6J/eKKoA0TefpoVa68m/LQU1I/mE8rGt4fNYGgNuCcK+aG8P8P43nbeJ2RqJMOL/Y1A==", + "node_modules/log-update/node_modules/slice-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.2.tgz", + "integrity": "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==", "dev": true, "license": "MIT", "dependencies": { - "assert": "^2.0.0", - "browserify-zlib": "^0.2.0", - "buffer": "^6.0.3", - "console-browserify": "^1.2.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.12.0", - "domain-browser": "^4.22.0", - "events": "^3.3.0", - "filter-obj": "^2.0.2", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "^1.0.1", - "process": "^0.11.10", - "punycode": "^2.1.1", - "querystring-es3": "^0.2.1", - "readable-stream": "^4.0.0", - "stream-browserify": "^3.0.0", - "stream-http": "^3.2.0", - "string_decoder": "^1.3.0", - "timers-browserify": "^2.0.12", - "tty-browserify": "^0.0.1", - "type-fest": "^2.14.0", - "url": "^0.11.0", - "util": "^0.12.4", - "vm-browserify": "^1.1.2" + "ansi-styles": "^6.2.1", + "is-fullwidth-code-point": "^5.0.0" }, "engines": { - "node": ">=12" + "node": ">=18" }, - "peerDependencies": { - "webpack": ">=5" + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/node-polyfill-webpack-plugin/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "node_modules/log-update/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", "dev": true, - "license": "(MIT OR CC0-1.0)", + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, "engines": { - "node": ">=12.20" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/node-releases": { - "version": "2.0.44", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.44.tgz", - "integrity": "sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz", + "integrity": "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==", "dev": true, "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, "license": "MIT", "dependencies": { - "path-key": "^3.0.0" + "js-tokens": "^3.0.0 || ^4.0.0" }, - "engines": { - "node": ">=8" + "bin": { + "loose-envify": "cli.js" } }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "node_modules/loupe": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", + "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", "dev": true, - "license": "BSD-2-Clause", + "license": "MIT" + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "license": "MIT", "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "tslib": "^2.0.3" } }, - "node_modules/nwsapi": { - "version": "2.2.23", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz", - "integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==", + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, - "license": "MIT" + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", "dev": true, "license": "MIT", - "engines": { - "node": ">=0.10.0" + "bin": { + "lz-string": "bin/bin.js" } }, - "node_modules/object-inspect": { - "version": "1.13.4", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", - "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", "dev": true, "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" } }, - "node_modules/object-is": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", - "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1" + "semver": "^6.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" } }, - "node_modules/object.assign": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", - "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", + "node_modules/mathml-tag-names": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-4.0.0.tgz", + "integrity": "sha512-aa6AU2Pcx0VP/XWnh8IGL0SYSgQHDT6Ucror2j2mXeFAlN3ahaNs8EZtG1YiticMkSLj3Gt6VPFfZogt7G5iFQ==", "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.8", - "call-bound": "^1.0.3", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0", - "has-symbols": "^1.1.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/object.entries": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", - "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", "dev": true, "license": "MIT", "dependencies": { - "call-bind": "^1.0.8", - "call-bound": "^1.0.4", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" } }, - "node_modules/object.fromentries": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", - "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "node_modules/mdn-data": { + "version": "2.27.1", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz", + "integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==", "dev": true, - "license": "MIT", + "license": "CC0-1.0" + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dev": true, + "license": "Unlicense", "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1", - "es-abstract": "^1.23.2", - "es-object-atoms": "^1.0.0" + "fs-monkey": "^1.0.4" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 4.0.0" } }, - "node_modules/object.values": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", - "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", + "node_modules/meow": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-14.1.0.tgz", + "integrity": "sha512-EDYo6VlmtnumlcBCbh1gLJ//9jvM/ndXHfVXIFrZVr6fGcwTUyCTFNTLCKuY3ffbK8L/+3Mzqnd58RojiZqHVw==", "dev": true, "license": "MIT", - "dependencies": { - "call-bind": "^1.0.8", - "call-bound": "^1.0.3", - "define-properties": "^1.2.1", - "es-object-atoms": "^1.0.0" - }, "engines": { - "node": ">= 0.4" + "node": ">=20" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/objectorarray": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz", - "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==", + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true, - "license": "ISC" + "license": "MIT" }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, - "license": "ISC", - "dependencies": { - "wrappy": "1" + "license": "MIT", + "engines": { + "node": ">= 8" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "license": "MIT", "dependencies": { - "mimic-fn": "^2.1.0" + "braces": "^3.0.3", + "picomatch": "^2.3.1" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8.6" } }, - "node_modules/open": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz", - "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", + "node_modules/micromatch/node_modules/picomatch": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "license": "MIT", - "dependencies": { - "default-browser": "^5.2.1", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "wsl-utils": "^0.1.0" - }, "engines": { - "node": ">=18" + "node": ">=8.6" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", "dev": true, "license": "MIT", "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.5" + "bn.js": "^4.0.0", + "brorand": "^1.0.1" }, - "engines": { - "node": ">= 0.8.0" + "bin": { + "miller-rabin": "bin/miller-rabin" } }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.3.tgz", + "integrity": "sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==", "dev": true, "license": "MIT" }, - "node_modules/own-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", - "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", + "node_modules/mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", "dev": true, "license": "MIT", - "dependencies": { - "get-intrinsic": "^1.2.6", - "object-keys": "^1.1.1", - "safe-push-apply": "^1.0.0" + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4.0.0" } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "dev": true, "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, "license": "MIT", "dependencies": { - "p-limit": "^3.0.2" + "mime-db": "1.52.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/p-map": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz", - "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==", + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "license": "MIT", "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/p-queue": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.1.tgz", - "integrity": "sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==", + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", "dev": true, "license": "MIT", - "dependencies": { - "eventemitter3": "^5.0.1", - "p-timeout": "^6.1.2" - }, "engines": { "node": ">=18" }, @@ -19934,1377 +15699,1236 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-timeout": { - "version": "6.1.4", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", - "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/package-json-from-dist": { + "node_modules/minimalistic-assert": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", - "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", - "dev": true, - "license": "BlueOak-1.0.0" - }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true, - "license": "(MIT AND Zlib)" + "license": "ISC" }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", "dev": true, - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } + "license": "MIT" }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "node_modules/minimatch": { + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, - "license": "MIT", + "license": "BlueOak-1.0.0", "dependencies": { - "callsites": "^3.0.0" + "brace-expansion": "^5.0.5" }, "engines": { - "node": ">=6" + "node": "18 || 20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/parse-asn1": { - "version": "5.1.9", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.9.tgz", - "integrity": "sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==", + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, - "license": "ISC", - "dependencies": { - "asn1.js": "^4.10.1", - "browserify-aes": "^1.2.0", - "evp_bytestokey": "^1.0.3", - "pbkdf2": "^3.1.5", - "safe-buffer": "^5.2.1" - }, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", + "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", + "dev": true, + "license": "BlueOak-1.0.0", "engines": { - "node": ">= 0.10" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/multimatch": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", + "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "@types/minimatch": "^3.0.3", + "array-differ": "^3.0.0", + "array-union": "^2.1.0", + "arrify": "^2.0.1", + "minimatch": "^3.0.4" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parse5": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", - "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "node_modules/multimatch/node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/multimatch/node_modules/brace-expansion": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", "dev": true, "license": "MIT", "dependencies": { - "entities": "^6.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/multimatch/node_modules/minimatch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", + "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" + "engines": { + "node": "*" } }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "node_modules/nanoid": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/path": { - "version": "0.12.7", - "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", - "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", + "node_modules/napi-postinstall": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", "dev": true, "license": "MIT", - "dependencies": { - "process": "^0.11.1", - "util": "^0.10.3" + "bin": { + "napi-postinstall": "lib/cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/napi-postinstall" } }, - "node_modules/path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true, "license": "MIT" }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } + "license": "MIT" }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "node_modules/next": { + "version": "16.2.6", + "resolved": "https://registry.npmjs.org/next/-/next-16.2.6.tgz", + "integrity": "sha512-qOVgKJg1+At15NpeUP+eJgCHvTCgXsogweq87Ri/Ix7PkqQHg4sdaXmSFqKlgaIXE4kW0g25LE68W87UANlHtw==", "dev": true, "license": "MIT", + "dependencies": { + "@next/env": "16.2.6", + "@swc/helpers": "0.5.15", + "baseline-browser-mapping": "^2.9.19", + "caniuse-lite": "^1.0.30001579", + "postcss": "8.4.31", + "styled-jsx": "5.1.6" + }, + "bin": { + "next": "dist/bin/next" + }, "engines": { - "node": ">=0.10.0" + "node": ">=20.9.0" + }, + "optionalDependencies": { + "@next/swc-darwin-arm64": "16.2.6", + "@next/swc-darwin-x64": "16.2.6", + "@next/swc-linux-arm64-gnu": "16.2.6", + "@next/swc-linux-arm64-musl": "16.2.6", + "@next/swc-linux-x64-gnu": "16.2.6", + "@next/swc-linux-x64-musl": "16.2.6", + "@next/swc-win32-arm64-msvc": "16.2.6", + "@next/swc-win32-x64-msvc": "16.2.6", + "sharp": "^0.34.5" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.1.0", + "@playwright/test": "^1.51.1", + "babel-plugin-react-compiler": "*", + "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0", + "sass": "^1.3.0" + }, + "peerDependenciesMeta": { + "@opentelemetry/api": { + "optional": true + }, + "@playwright/test": { + "optional": true + }, + "babel-plugin-react-compiler": { + "optional": true + }, + "sass": { + "optional": true + } } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/next/node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >=14" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" - }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "node_modules/next/node_modules/styled-jsx": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz", + "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==", "dev": true, - "license": "BlueOak-1.0.0", + "license": "MIT", "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + "client-only": "0.0.1" }, "engines": { - "node": ">=16 || 14 >=14.18" + "node": ">= 12.0.0" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependencies": { + "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "babel-plugin-macros": { + "optional": true + } } }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "node_modules/path-unified": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/path-unified/-/path-unified-0.2.0.tgz", - "integrity": "sha512-MNKqvrKbbbb5p7XHXV6ZAsf/1f/yJQa13S/fcX0uua8ew58Tgc6jXV+16JyAbnR/clgCH+euKDxrF2STxMHdrg==", + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", "dev": true, "license": "MIT" }, - "node_modules/path/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==", "dev": true, - "license": "ISC" + "license": "MIT", + "optional": true }, - "node_modules/path/node_modules/util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "node_modules/node-exports-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.0.tgz", + "integrity": "sha512-pyFS63ptit/P5WqUkt+UUfe+4oevH+bFeIiPPdfb0pFeYEu/1ELnJu5l+5EcTKYL5M7zaAa7S8ddywgXypqKCw==", "dev": true, "license": "MIT", "dependencies": { - "inherits": "2.0.3" + "array.prototype.flatmap": "^1.3.3", + "es-errors": "^1.3.0", + "object.entries": "^1.1.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/pathval": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", - "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", + "node_modules/node-exports-info/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "license": "MIT", - "engines": { - "node": ">= 14.16" + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/pbkdf2": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.5.tgz", - "integrity": "sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==", + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-polyfill-webpack-plugin": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-2.0.1.tgz", + "integrity": "sha512-ZUMiCnZkP1LF0Th2caY6J/eKKoA0TefpoVa68m/LQU1I/mE8rGt4fNYGgNuCcK+aG8P8P43nbeJ2RqJMOL/Y1A==", "dev": true, "license": "MIT", "dependencies": { - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "ripemd160": "^2.0.3", - "safe-buffer": "^5.2.1", - "sha.js": "^2.4.12", - "to-buffer": "^1.2.1" + "assert": "^2.0.0", + "browserify-zlib": "^0.2.0", + "buffer": "^6.0.3", + "console-browserify": "^1.2.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.12.0", + "domain-browser": "^4.22.0", + "events": "^3.3.0", + "filter-obj": "^2.0.2", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "^1.0.1", + "process": "^0.11.10", + "punycode": "^2.1.1", + "querystring-es3": "^0.2.1", + "readable-stream": "^4.0.0", + "stream-browserify": "^3.0.0", + "stream-http": "^3.2.0", + "string_decoder": "^1.3.0", + "timers-browserify": "^2.0.12", + "tty-browserify": "^0.0.1", + "type-fest": "^2.14.0", + "url": "^0.11.0", + "util": "^0.12.4", + "vm-browserify": "^1.1.2" }, "engines": { - "node": ">= 0.10" + "node": ">=12" + }, + "peerDependencies": { + "webpack": ">=5" } }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "dev": true, - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", - "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "node_modules/node-polyfill-webpack-plugin/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, - "license": "MIT", + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=12" + "node": ">=12.20" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pirates": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", - "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", + "node_modules/node-releases": { + "version": "2.0.46", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.46.tgz", + "integrity": "sha512-GYVXHE2KnrzAfsAjl4uP++evGFCrAU1jta4ubEjIG7YWt/64Gqv66a30yKwWczVjA6j3bM4nBwH7Pk1JmDHaxQ==", "dev": true, "license": "MIT", "engines": { - "node": ">= 6" + "node": ">=18" } }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "license": "MIT", - "dependencies": { - "find-up": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "license": "MIT", "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "path-key": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, - "license": "MIT", + "license": "BSD-2-Clause", "dependencies": { - "p-locate": "^4.1.0" + "boolbase": "^1.0.0" }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nwsapi": { + "version": "2.2.23", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.23.tgz", + "integrity": "sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", "dev": true, "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, "engines": { - "node": ">=6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/object-is": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", + "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", "dev": true, "license": "MIT", "dependencies": { - "p-limit": "^2.2.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/possible-typed-array-names": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", - "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" } }, - "node_modules/postcss": { - "version": "8.5.15", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz", - "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==", + "node_modules/object.assign": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz", + "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.12", - "picocolors": "^1.1.1", - "source-map-js": "^1.2.1" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0", + "has-symbols": "^1.1.0", + "object-keys": "^1.1.1" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/postcss-attribute-case-insensitive": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-8.0.0.tgz", - "integrity": "sha512-fovIPEV35c2JzVXdmP+sp2xirbBMt54J+upU8u6TSj410kUU5+axgEzvBBSAX8KCybze8CFCelzFAw/FfWg2TA==", + "node_modules/object.entries": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz", + "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "dependencies": { - "postcss-selector-parser": "^7.1.1" + "call-bind": "^1.0.8", + "call-bound": "^1.0.4", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.1.1" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">= 0.4" } }, - "node_modules/postcss-calc": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.1.tgz", - "integrity": "sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==", + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", "dev": true, "license": "MIT", "dependencies": { - "postcss-selector-parser": "^7.0.0", - "postcss-value-parser": "^4.2.0" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": "^18.12 || ^20.9 || >=22.0" + "node": ">= 0.4" }, - "peerDependencies": { - "postcss": "^8.4.38" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/postcss-clamp": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", - "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "node_modules/object.values": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz", + "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==", "dev": true, "license": "MIT", "dependencies": { - "postcss-value-parser": "^4.2.0" + "call-bind": "^1.0.8", + "call-bound": "^1.0.3", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" }, "engines": { - "node": ">=7.6.0" + "node": ">= 0.4" }, - "peerDependencies": { - "postcss": "^8.4.6" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/postcss-color-functional-notation": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-8.0.4.tgz", - "integrity": "sha512-Zn3yPgBFakVXthmA2n1NUMY7gdhuFUB/DrUJ0Eug/d0rl9wahMQZykp4NVTJLGzQrDUwZ2rzjiTeW5udxFNG8A==", + "node_modules/objectorarray": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz", + "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } + "license": "ISC" }, - "node_modules/postcss-color-functional-notation/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" + "license": "ISC", + "dependencies": { + "wrappy": "1" } }, - "node_modules/postcss-color-functional-notation/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">=6" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-color-functional-notation/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "node_modules/open": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz", + "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "wsl-utils": "^0.1.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=18" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-color-functional-notation/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/postcss-color-functional-notation/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", + "dev": true, + "license": "MIT" + }, + "node_modules/own-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz", + "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.6", + "object-keys": "^1.1.1", + "safe-push-apply": "^1.0.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/postcss-color-hex-alpha": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-11.0.0.tgz", - "integrity": "sha512-NCGa6vjIyrjosz9GqRxVKbONBklz5TeipYqTJp3IqbnBWlBq5e5EMtG6MaX4vqk9LzocPfMQkuRK9tfk+OQuKg==", + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "dependencies": { - "@csstools/utilities": "^3.0.0", - "postcss-value-parser": "^4.2.0" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-color-rebeccapurple": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-11.0.0.tgz", - "integrity": "sha512-g9561mx7cbdqx7XeO/L+lJzVlzu7bICyXr72efBVKZGxIhvBBJf9fGXn3Cb6U4Bwh3LbzQO2e9NWBLVYdX5Eag==", + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/utilities": "^3.0.0", - "postcss-value-parser": "^4.2.0" + "p-limit": "^3.0.2" }, "engines": { - "node": ">=20.19.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-colormin": { - "version": "7.0.10", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.10.tgz", - "integrity": "sha512-yFr6JezOolHLta/buLE71VKPh2mXursp4saVe98/ol8ZnEWhL+racShqPKlvd/DKWLre/39B6HhcMXf7RZ3hxg==", + "node_modules/p-map": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz", + "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==", "dev": true, "license": "MIT", - "dependencies": { - "@colordx/core": "^5.4.3", - "browserslist": "^4.28.2", - "caniuse-api": "^3.0.0", - "postcss-value-parser": "^4.2.0" - }, "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "node": ">=18" }, - "peerDependencies": { - "postcss": "^8.5.13" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-convert-values": { - "version": "7.0.12", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.12.tgz", - "integrity": "sha512-xurKu5qqk4viR3Cp3p4xBR4KfnZm4w4ys6+UBwBmeuBSNkH7+DtLnYOYnOffgtE4yx8sH9S1VZ6RAAvROXzP2Q==", + "node_modules/p-queue": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-8.1.1.tgz", + "integrity": "sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==", "dev": true, "license": "MIT", "dependencies": { - "browserslist": "^4.28.2", - "postcss-value-parser": "^4.2.0" + "eventemitter3": "^5.0.1", + "p-timeout": "^6.1.2" }, "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "node": ">=18" }, - "peerDependencies": { - "postcss": "^8.5.13" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-custom-media": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-12.0.1.tgz", - "integrity": "sha512-66syE14+VeqkUf0rRX0bvbTCbNRJF132jD+ceo8th1dap2YJEAqpdh5uG98CE3IbgHT7m9XM0GIlOazNWqQdeA==", + "node_modules/p-timeout": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-6.1.4.tgz", + "integrity": "sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "dependencies": { - "@csstools/cascade-layer-name-parser": "^3.0.0", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/media-query-list-parser": "^5.0.0" - }, "engines": { - "node": ">=20.19.0" + "node": ">=14.16" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-custom-media/node_modules/@csstools/cascade-layer-name-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-3.0.0.tgz", - "integrity": "sha512-/3iksyevwRfSJx5yH0RkcrcYXwuhMQx3Juqf40t97PeEy2/Mz2TItZ/z/216qpe4GgOyFBP8MKIwVvytzHmfIQ==", + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=6" } }, - "node_modules/postcss-custom-media/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true, + "license": "(MIT AND Zlib)" + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, "engines": { - "node": ">=20.19.0" + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.9", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.9.tgz", + "integrity": "sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "asn1.js": "^4.10.1", + "browserify-aes": "^1.2.0", + "evp_bytestokey": "^1.0.3", + "pbkdf2": "^3.1.5", + "safe-buffer": "^5.2.1" }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "engines": { + "node": ">= 0.10" } }, - "node_modules/postcss-custom-media/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, "engines": { - "node": ">=20.19.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-custom-media/node_modules/@csstools/media-query-list-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-5.0.0.tgz", - "integrity": "sha512-T9lXmZOfnam3eMERPsszjY5NK0jX8RmThmmm99FZ8b7z8yMaFZWKwLWGZuTwdO3ddRY5fy13GmmEYZXB4I98Eg==", + "node_modules/parse5": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" + "dependencies": { + "entities": "^6.0.0" }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/postcss-custom-properties": { - "version": "15.0.1", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-15.0.1.tgz", - "integrity": "sha512-cuyq8sd8dLY0GLbelz1KB8IMIoDECo6RVXMeHeXY2Uw3Q05k/d1GVITdaKLsheqrHbnxlwxzSRZQQ5u+rNtbMg==", + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "dependencies": { - "@csstools/cascade-layer-name-parser": "^3.0.0", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/utilities": "^3.0.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/postcss-custom-properties/node_modules/@csstools/cascade-layer-name-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-3.0.0.tgz", - "integrity": "sha512-/3iksyevwRfSJx5yH0RkcrcYXwuhMQx3Juqf40t97PeEy2/Mz2TItZ/z/216qpe4GgOyFBP8MKIwVvytzHmfIQ==", + "node_modules/path": { + "version": "0.12.7", + "resolved": "https://registry.npmjs.org/path/-/path-0.12.7.tgz", + "integrity": "sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "dependencies": { + "process": "^0.11.1", + "util": "^0.10.3" } }, - "node_modules/postcss-custom-properties/node_modules/@csstools/css-parser-algorithms": { + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-exists": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=8" } }, - "node_modules/postcss-custom-properties/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": ">=0.10.0" } }, - "node_modules/postcss-custom-selectors": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-9.0.1.tgz", - "integrity": "sha512-2XBELy4DmdVKimChfaZ2id9u9CSGYQhiJ53SvlfBvMTzLMW2VxuMb9rHsMSQw9kRq/zSbhT5x13EaK8JSmK8KQ==", + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", "dependencies": { - "@csstools/cascade-layer-name-parser": "^3.0.0", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "postcss-selector-parser": "^7.1.1" + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=16 || 14 >=14.18" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/postcss-custom-selectors/node_modules/@csstools/cascade-layer-name-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-3.0.0.tgz", - "integrity": "sha512-/3iksyevwRfSJx5yH0RkcrcYXwuhMQx3Juqf40t97PeEy2/Mz2TItZ/z/216qpe4GgOyFBP8MKIwVvytzHmfIQ==", + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "node": ">=8" } }, - "node_modules/postcss-custom-selectors/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/path-unified": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/path-unified/-/path-unified-0.2.0.tgz", + "integrity": "sha512-MNKqvrKbbbb5p7XHXV6ZAsf/1f/yJQa13S/fcX0uua8ew58Tgc6jXV+16JyAbnR/clgCH+euKDxrF2STxMHdrg==", + "dev": true, + "license": "MIT" + }, + "node_modules/path/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true, + "license": "ISC" + }, + "node_modules/path/node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "dependencies": { + "inherits": "2.0.3" } }, - "node_modules/postcss-custom-selectors/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/pathval": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", + "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": ">= 14.16" } }, - "node_modules/postcss-dir-pseudo-class": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-10.0.0.tgz", - "integrity": "sha512-DmtIzULpyC8XaH4b5AaUgt4Jic4QmrECqidNCdR7u7naQFdnxX80YI06u238a+ZVRXwURDxVzy0s/UQnWmpVeg==", + "node_modules/pbkdf2": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.5.tgz", + "integrity": "sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^7.1.1" + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "ripemd160": "^2.0.3", + "safe-buffer": "^5.2.1", + "sha.js": "^2.4.12", + "to-buffer": "^1.2.1" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">= 0.10" } }, - "node_modules/postcss-discard-comments": { - "version": "7.0.8", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.8.tgz", - "integrity": "sha512-CvvS5S9WrXblFXCEJ9nVo+4z+eA7zSC7Z88V1HEJuwlQhlFnYTIjg1xJY+BCUiG2bvICap2tXii4mP22BD108Q==", + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^7.1.1" - }, "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.5.13" + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/postcss-discard-duplicates": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.4.tgz", - "integrity": "sha512-VBNn1+EuMZkeGVVtz0gRfbNGtx9IFgAsAV+E2pHtXPrp4qfGBkhTIiAuE/wrb+Y6Pakg9NewAlfTpYIFAWODtw==", + "node_modules/pirates": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", + "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", "dev": true, "license": "MIT", "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" - }, - "peerDependencies": { - "postcss": "^8.5.13" + "node": ">= 6" } }, - "node_modules/postcss-discard-empty": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.3.tgz", - "integrity": "sha512-M2pyjQCU+/7cMHVtL6bKTHjv0lZnPLMpicgr67Dlth7AbuV9gjVTtUqaRwn6Pp6BwSDspUzhz8SaUrRykJU5Dw==", + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "license": "MIT", - "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "dependencies": { + "find-up": "^4.0.0" }, - "peerDependencies": { - "postcss": "^8.5.13" + "engines": { + "node": ">=8" } }, - "node_modules/postcss-discard-overridden": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.3.tgz", - "integrity": "sha512-aNovXo9UsZuRNLzHJtp13lHIvinDPfiXBPePpXkSjCbgp++iU2FqE+YxvjIsg6EdyPZsASFbfu+JcBFVsErXIQ==", + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "license": "MIT", - "engines": { - "node": "^18.12.0 || ^20.9.0 || >=22.0" + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, - "peerDependencies": { - "postcss": "^8.5.13" + "engines": { + "node": ">=8" } }, - "node_modules/postcss-double-position-gradients": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-7.0.1.tgz", - "integrity": "sha512-M69I4EolEGwiYa0KmxKWg4zZp2DxhlNM0Bz12OvHCj930GXDVCvFhdWNGsRscz6BIijN6tFryzSFsy8kMLyD5Q==", + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0", - "postcss-value-parser": "^4.2.0" + "p-locate": "^4.1.0" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=8" } }, - "node_modules/postcss-focus-visible": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-11.0.0.tgz", - "integrity": "sha512-VG1a9kBKizUBWS66t5xyB4uLONBnvZLCmZXxT40FALu8EF0QgVZBYy5ApC0KhmpHsv+pvHMJHB3agKHwmocWjw==", + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^7.1.1" + "p-try": "^2.0.0" }, "engines": { - "node": ">=20.19.0" + "node": ">=6" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-focus-within": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-10.0.0.tgz", - "integrity": "sha512-dvql0fzUTG+gcJYp+KTbag5vAjuo94LDYZHkqDV1rnf5gPGer1v/SrmIZBdvKU8moep3HbcbujqGjzSb3DL53Q==", + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^7.1.1" + "p-limit": "^2.2.0" }, "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=8" } }, - "node_modules/postcss-font-variant": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", - "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "node_modules/possible-typed-array-names": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", + "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", "dev": true, "license": "MIT", - "peerDependencies": { - "postcss": "^8.1.0" + "engines": { + "node": ">= 0.4" } }, - "node_modules/postcss-gap-properties": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-7.0.0.tgz", - "integrity": "sha512-PSDF2QoZMRUbsINvXObQgxx4HExRP85QTT8qS/YN9fBsCPWCqUuwqAD6E6PNp0BqL/jU1eyWUBORaOK/J/9LDA==", + "node_modules/postcss": { + "version": "8.5.15", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz", + "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==", "dev": true, "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/csstools" + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, { - "type": "opencollective", - "url": "https://opencollective.com/csstools" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], - "license": "MIT-0", - "engines": { - "node": ">=20.19.0" + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.12", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" }, - "peerDependencies": { - "postcss": "^8.4" + "engines": { + "node": "^10 || ^12 || >=14" } }, - "node_modules/postcss-image-set-function": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-8.0.0.tgz", - "integrity": "sha512-rEGNkOkNusf4+IuMmfEoIdLuVmvbExGbmG+MIsyV6jR5UaWSoyPcAYHV/PxzVDCmudyF+2Nh/o6Ub2saqUdnuA==", + "node_modules/postcss-calc": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-10.1.1.tgz", + "integrity": "sha512-NYEsLHh8DgG/PRH2+G9BTuUdtf9ViS+vdoQ0YA5OQdGsfN4ztiwtDWNtBl9EKeqNMFnIu8IKZ0cLxEQ5r5KVMw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/utilities": "^3.0.0", + "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=20.19.0" + "node": "^18.12 || ^20.9 || >=22.0" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.4.38" } }, - "node_modules/postcss-lab-function": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-8.0.4.tgz", - "integrity": "sha512-dqcJSzVasdELD9xqJ1wfP95uzP57J6zFd80c7S3AWK127H9zwqR9Kbk5ZgyIfN2DiMStI7Vq8E7ablXNeTvpew==", + "node_modules/postcss-colormin": { + "version": "7.0.10", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-7.0.10.tgz", + "integrity": "sha512-yFr6JezOolHLta/buLE71VKPh2mXursp4saVe98/ol8ZnEWhL+racShqPKlvd/DKWLre/39B6HhcMXf7RZ3hxg==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", "dependencies": { - "@csstools/css-color-parser": "^4.1.1", - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/utilities": "^3.0.0" + "@colordx/core": "^5.4.3", + "browserslist": "^4.28.2", + "caniuse-api": "^3.0.0", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=20.19.0" + "node": "^18.12.0 || ^20.9.0 || >=22.0" }, "peerDependencies": { - "postcss": "^8.4" + "postcss": "^8.5.13" } }, - "node_modules/postcss-lab-function/node_modules/@csstools/color-helpers": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz", - "integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==", + "node_modules/postcss-convert-values": { + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-7.0.12.tgz", + "integrity": "sha512-xurKu5qqk4viR3Cp3p4xBR4KfnZm4w4ys6+UBwBmeuBSNkH7+DtLnYOYnOffgtE4yx8sH9S1VZ6RAAvROXzP2Q==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "license": "MIT", + "dependencies": { + "browserslist": "^4.28.2", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=20.19.0" + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, - "node_modules/postcss-lab-function/node_modules/@csstools/css-calc": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz", - "integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/postcss-discard-comments": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-7.0.8.tgz", + "integrity": "sha512-CvvS5S9WrXblFXCEJ9nVo+4z+eA7zSC7Z88V1HEJuwlQhlFnYTIjg1xJY+BCUiG2bvICap2tXii4mP22BD108Q==", + "dev": true, "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^7.1.1" + }, "engines": { - "node": ">=20.19.0" + "node": "^18.12.0 || ^20.9.0 || >=22.0" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "postcss": "^8.5.13" } }, - "node_modules/postcss-lab-function/node_modules/@csstools/css-color-parser": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz", - "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==", + "node_modules/postcss-discard-duplicates": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-7.0.4.tgz", + "integrity": "sha512-VBNn1+EuMZkeGVVtz0gRfbNGtx9IFgAsAV+E2pHtXPrp4qfGBkhTIiAuE/wrb+Y6Pakg9NewAlfTpYIFAWODtw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", - "dependencies": { - "@csstools/color-helpers": "^6.0.2", - "@csstools/css-calc": "^3.2.1" - }, "engines": { - "node": ">=20.19.0" + "node": "^18.12.0 || ^20.9.0 || >=22.0" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^4.0.0", - "@csstools/css-tokenizer": "^4.0.0" + "postcss": "^8.5.13" } }, - "node_modules/postcss-lab-function/node_modules/@csstools/css-parser-algorithms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz", - "integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==", + "node_modules/postcss-discard-empty": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-7.0.3.tgz", + "integrity": "sha512-M2pyjQCU+/7cMHVtL6bKTHjv0lZnPLMpicgr67Dlth7AbuV9gjVTtUqaRwn6Pp6BwSDspUzhz8SaUrRykJU5Dw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.12.0 || ^20.9.0 || >=22.0" }, "peerDependencies": { - "@csstools/css-tokenizer": "^4.0.0" + "postcss": "^8.5.13" } }, - "node_modules/postcss-lab-function/node_modules/@csstools/css-tokenizer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz", - "integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==", + "node_modules/postcss-discard-overridden": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-7.0.3.tgz", + "integrity": "sha512-aNovXo9UsZuRNLzHJtp13lHIvinDPfiXBPePpXkSjCbgp++iU2FqE+YxvjIsg6EdyPZsASFbfu+JcBFVsErXIQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], "license": "MIT", "engines": { - "node": ">=20.19.0" + "node": "^18.12.0 || ^20.9.0 || >=22.0" + }, + "peerDependencies": { + "postcss": "^8.5.13" } }, "node_modules/postcss-loader": { @@ -21366,32 +16990,6 @@ } } }, - "node_modules/postcss-logical": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-9.0.0.tgz", - "integrity": "sha512-A4LNd9dk3q/juEUA9Gd8ALhBO3TeOeYurnyHLlf2aAToD94VHR8c5Uv7KNmf8YVRhTxvWsyug4c5fKtARzyIRQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", @@ -21569,34 +17167,6 @@ "postcss": "^8.1.0" } }, - "node_modules/postcss-nesting": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-14.0.0.tgz", - "integrity": "sha512-YGFOfVrjxYfeGTS5XctP1WCI5hu8Lr9SmntjfRC+iX5hCihEO+QZl9Ra+pkjqkgoVdDKvb2JccpElcowhZtzpw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "@csstools/selector-resolve-nested": "^4.0.0", - "@csstools/selector-specificity": "^6.0.0", - "postcss-selector-parser": "^7.1.1" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, "node_modules/postcss-normalize-charset": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-7.0.3.tgz", @@ -21739,29 +17309,6 @@ "postcss": "^8.5.13" } }, - "node_modules/postcss-opacity-percentage": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-3.0.0.tgz", - "integrity": "sha512-K6HGVzyxUxd/VgZdX04DCtdwWJ4NGLG212US4/LA1TLAbHgmAsTWVR86o+gGIbFtnTkfOpb9sCRBx8K7HO66qQ==", - "dev": true, - "funding": [ - { - "type": "kofi", - "url": "https://ko-fi.com/mrcgrtz" - }, - { - "type": "liberapay", - "url": "https://liberapay.com/mrcgrtz" - } - ], - "license": "MIT", - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, "node_modules/postcss-ordered-values": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-7.0.4.tgz", @@ -21779,194 +17326,6 @@ "postcss": "^8.5.13" } }, - "node_modules/postcss-overflow-shorthand": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-7.0.0.tgz", - "integrity": "sha512-9SLpjoUdGRoRrzoOdX66HbUs0+uDwfIAiXsRa7piKGOqPd6F4ZlON9oaDSP5r1Qpgmzw5L9Ht0undIK6igJPMA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-page-break": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", - "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "postcss": "^8" - } - }, - "node_modules/postcss-place": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-11.0.0.tgz", - "integrity": "sha512-fAifpyjQ+fuDRp2nmF95WbotqbpjdazebedahXdfBxy5sHembOLpBQ1cHveZD9ZmjK26tYM8tikeNaUlp/KfHA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-preset-env": { - "version": "11.3.0", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-11.3.0.tgz", - "integrity": "sha512-PpijTuY+NT35vvk7us0pw9lJVrsZZWukjONZsza2Kq1Gag8nrUXRkgdKdxyyhZPJ6R43L3/nLpspUK99TmU9xg==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "@csstools/postcss-alpha-function": "^2.0.5", - "@csstools/postcss-cascade-layers": "^6.0.0", - "@csstools/postcss-color-function": "^5.0.4", - "@csstools/postcss-color-function-display-p3-linear": "^2.0.4", - "@csstools/postcss-color-mix-function": "^4.0.4", - "@csstools/postcss-color-mix-variadic-function-arguments": "^2.0.4", - "@csstools/postcss-container-rule-prelude-list": "^1.0.1", - "@csstools/postcss-content-alt-text": "^3.0.1", - "@csstools/postcss-contrast-color-function": "^3.0.4", - "@csstools/postcss-exponential-functions": "^3.0.3", - "@csstools/postcss-font-format-keywords": "^5.0.0", - "@csstools/postcss-font-width-property": "^1.0.0", - "@csstools/postcss-gamut-mapping": "^3.0.4", - "@csstools/postcss-gradients-interpolation-method": "^6.0.4", - "@csstools/postcss-hwb-function": "^5.0.4", - "@csstools/postcss-ic-unit": "^5.0.1", - "@csstools/postcss-image-function": "^1.0.0", - "@csstools/postcss-initial": "^3.0.0", - "@csstools/postcss-is-pseudo-class": "^6.0.0", - "@csstools/postcss-light-dark-function": "^3.0.1", - "@csstools/postcss-logical-float-and-clear": "^4.0.0", - "@csstools/postcss-logical-overflow": "^3.0.0", - "@csstools/postcss-logical-overscroll-behavior": "^3.0.0", - "@csstools/postcss-logical-resize": "^4.0.0", - "@csstools/postcss-logical-viewport-units": "^4.0.0", - "@csstools/postcss-media-minmax": "^3.0.3", - "@csstools/postcss-media-queries-aspect-ratio-number-values": "^4.0.0", - "@csstools/postcss-mixins": "^1.0.0", - "@csstools/postcss-nested-calc": "^5.0.0", - "@csstools/postcss-normalize-display-values": "^5.0.1", - "@csstools/postcss-oklab-function": "^5.0.4", - "@csstools/postcss-position-area-property": "^2.0.0", - "@csstools/postcss-progressive-custom-properties": "^5.1.0", - "@csstools/postcss-property-rule-prelude-list": "^2.0.0", - "@csstools/postcss-random-function": "^3.0.3", - "@csstools/postcss-relative-color-syntax": "^4.0.4", - "@csstools/postcss-scope-pseudo-class": "^5.0.0", - "@csstools/postcss-sign-functions": "^2.0.3", - "@csstools/postcss-stepped-value-functions": "^5.0.3", - "@csstools/postcss-syntax-descriptor-syntax-production": "^2.0.0", - "@csstools/postcss-system-ui-font-family": "^2.0.0", - "@csstools/postcss-text-decoration-shorthand": "^5.0.3", - "@csstools/postcss-trigonometric-functions": "^5.0.3", - "@csstools/postcss-unset-value": "^5.0.0", - "autoprefixer": "^10.5.0", - "browserslist": "^4.28.1", - "css-blank-pseudo": "^8.0.1", - "css-has-pseudo": "^8.0.0", - "css-prefers-color-scheme": "^11.0.0", - "cssdb": "^8.9.0", - "postcss-attribute-case-insensitive": "^8.0.0", - "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^8.0.4", - "postcss-color-hex-alpha": "^11.0.0", - "postcss-color-rebeccapurple": "^11.0.0", - "postcss-custom-media": "^12.0.1", - "postcss-custom-properties": "^15.0.1", - "postcss-custom-selectors": "^9.0.1", - "postcss-dir-pseudo-class": "^10.0.0", - "postcss-double-position-gradients": "^7.0.1", - "postcss-focus-visible": "^11.0.0", - "postcss-focus-within": "^10.0.0", - "postcss-font-variant": "^5.0.0", - "postcss-gap-properties": "^7.0.0", - "postcss-image-set-function": "^8.0.0", - "postcss-lab-function": "^8.0.4", - "postcss-logical": "^9.0.0", - "postcss-nesting": "^14.0.0", - "postcss-opacity-percentage": "^3.0.0", - "postcss-overflow-shorthand": "^7.0.0", - "postcss-page-break": "^3.0.4", - "postcss-place": "^11.0.0", - "postcss-pseudo-class-any-link": "^11.0.0", - "postcss-replace-overflow-wrap": "^4.0.0", - "postcss-selector-not": "^9.0.0" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-pseudo-class-any-link": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-11.0.0.tgz", - "integrity": "sha512-DNFZ4GMa3C3pU5dM+UCTG1CEeLtS1ZqV5DKSqCTJQMn1G5jnd/30fS8+A7H4o5bSD3MOcnx+VgI+xPE9Z5Wvig==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "dependencies": { - "postcss-selector-parser": "^7.1.1" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, "node_modules/postcss-reduce-initial": { "version": "7.0.9", "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-7.0.9.tgz", @@ -22000,16 +17359,6 @@ "postcss": "^8.5.13" } }, - "node_modules/postcss-replace-overflow-wrap": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", - "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "postcss": "^8.0.3" - } - }, "node_modules/postcss-resolve-nested-selector": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.6.tgz", @@ -22071,32 +17420,6 @@ "postcss": "^8.4.29" } }, - "node_modules/postcss-selector-not": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-9.0.0.tgz", - "integrity": "sha512-xhAtTdHnVU2M/CrpYOPyRUvg3njhVlKmn2GNYXDaRJV9Ygx4d5OkSkc7NINzjUqnbDFtaKXlISOBeyMXU/zyFQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT", - "dependencies": { - "postcss-selector-parser": "^7.1.1" - }, - "engines": { - "node": ">=20.19.0" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, "node_modules/postcss-selector-parser": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz", @@ -23168,14 +18491,14 @@ "license": "MIT" }, "node_modules/rolldown": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.1.tgz", - "integrity": "sha512-X0KQHljNnEkWNqqiz9zJrGunh1B0HgOxLXvnFpCOcadzcy5qohZ3tqMEUg00vncoRovXuK3ZqCT9KnnKzoInFQ==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.2.tgz", + "integrity": "sha512-oZx5zVDtVB44AW3eaifgDml1gWRDZGvjcfdxonE4swNPG98PrrXjaO/KrnUjzlMnztCCRVlUueA1kCXhARGk6g==", "dev": true, "license": "MIT", "peer": true, "dependencies": { - "@oxc-project/types": "=0.130.0", + "@oxc-project/types": "=0.132.0", "@rolldown/pluginutils": "^1.0.0" }, "bin": { @@ -23185,21 +18508,21 @@ "node": "^20.19.0 || >=22.12.0" }, "optionalDependencies": { - "@rolldown/binding-android-arm64": "1.0.1", - "@rolldown/binding-darwin-arm64": "1.0.1", - "@rolldown/binding-darwin-x64": "1.0.1", - "@rolldown/binding-freebsd-x64": "1.0.1", - "@rolldown/binding-linux-arm-gnueabihf": "1.0.1", - "@rolldown/binding-linux-arm64-gnu": "1.0.1", - "@rolldown/binding-linux-arm64-musl": "1.0.1", - "@rolldown/binding-linux-ppc64-gnu": "1.0.1", - "@rolldown/binding-linux-s390x-gnu": "1.0.1", - "@rolldown/binding-linux-x64-gnu": "1.0.1", - "@rolldown/binding-linux-x64-musl": "1.0.1", - "@rolldown/binding-openharmony-arm64": "1.0.1", - "@rolldown/binding-wasm32-wasi": "1.0.1", - "@rolldown/binding-win32-arm64-msvc": "1.0.1", - "@rolldown/binding-win32-x64-msvc": "1.0.1" + "@rolldown/binding-android-arm64": "1.0.2", + "@rolldown/binding-darwin-arm64": "1.0.2", + "@rolldown/binding-darwin-x64": "1.0.2", + "@rolldown/binding-freebsd-x64": "1.0.2", + "@rolldown/binding-linux-arm-gnueabihf": "1.0.2", + "@rolldown/binding-linux-arm64-gnu": "1.0.2", + "@rolldown/binding-linux-arm64-musl": "1.0.2", + "@rolldown/binding-linux-ppc64-gnu": "1.0.2", + "@rolldown/binding-linux-s390x-gnu": "1.0.2", + "@rolldown/binding-linux-x64-gnu": "1.0.2", + "@rolldown/binding-linux-x64-musl": "1.0.2", + "@rolldown/binding-openharmony-arm64": "1.0.2", + "@rolldown/binding-wasm32-wasi": "1.0.2", + "@rolldown/binding-win32-arm64-msvc": "1.0.2", + "@rolldown/binding-win32-x64-msvc": "1.0.2" } }, "node_modules/rollup": { @@ -23669,9 +18992,9 @@ "license": "MIT" }, "node_modules/semver": { - "version": "7.8.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz", - "integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==", + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.1.tgz", + "integrity": "sha512-rkVq3IXh+4FDGch+KwzX3aV9W3kO54GyEgpvBzSyctDA6Xtd7RJQV1xmXbeQp5v7+VzLOfVqiutSE6GICgPFvg==", "dev": true, "license": "ISC", "bin": { @@ -24609,9 +19932,9 @@ } }, "node_modules/stylelint": { - "version": "17.11.1", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-17.11.1.tgz", - "integrity": "sha512-+smN/HqVTggUx3iuAzOi9fPh8SrH+cJWlZrYVldXoJ06orWBhZ4Ue/QEp64oei6pVrAh4w3tG+Y12Vw7MbCFRQ==", + "version": "17.12.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-17.12.0.tgz", + "integrity": "sha512-KIlzWXMHUvgfPUR0R7TK3H80yCIi0uoivUwf+6Az4yrHJD1Q3c1qIkh/H5Z0i/K3QXgtq/UMEkWyBUSUwnpnOg==", "dev": true, "funding": [ { @@ -24639,7 +19962,7 @@ "debug": "^4.4.3", "fast-glob": "^3.3.3", "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^11.1.2", + "file-entry-cache": "^11.1.3", "global-modules": "^2.0.0", "globby": "^16.2.0", "globjoin": "^0.1.4", @@ -25437,9 +20760,9 @@ } }, "node_modules/terser": { - "version": "5.47.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.47.1.tgz", - "integrity": "sha512-tPbLXTI6ohPASb/1YViL428oEHu6/qv1OxqYnfaonVCFHqx4+wCd95pHrQWsL5X4pl90CTyW9piSAsS2L0VoMw==", + "version": "5.48.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.48.0.tgz", + "integrity": "sha512-J/9An6vs9Us6wKRriSFXBWdRZapREHqFzdNUKk0pmu804EMR6dr6winwo7e5JDxN4xahxQsuysyYFwlwj4XN/Q==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -26337,17 +21660,17 @@ } }, "node_modules/vite": { - "version": "8.0.13", - "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.13.tgz", - "integrity": "sha512-MFtjBYgzmSxmgA4RAfjIyXWpGe1oALnjgUTzzV7QLx/TKxCzjtMH6Fd9/eVK+5Fg1qNoz5VAwsmMs/NofrmJvw==", + "version": "8.0.14", + "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.14.tgz", + "integrity": "sha512-s4BJJ+5y1pYL6Otw51FHhVJQhPnuRinKig64g/1+EUNaJsd3gCKdD31IPFvswUgW9/60QT9oFHbZHbQK5imcxw==", "dev": true, "license": "MIT", "peer": true, "dependencies": { "lightningcss": "^1.32.0", "picomatch": "^4.0.4", - "postcss": "^8.5.14", - "rolldown": "1.0.1", + "postcss": "^8.5.15", + "rolldown": "1.0.2", "tinyglobby": "^0.2.16" }, "bin": { @@ -26470,13 +21793,12 @@ } }, "node_modules/webpack": { - "version": "5.106.2", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.106.2.tgz", - "integrity": "sha512-wGN3qcrBQIFmQ/c0AiOAQBvrZ5lmY8vbbMv4Mxfgzqd/B6+9pXtLo73WuS1dSGXM5QYY3hZnIbvx+K1xxe6FyA==", + "version": "5.107.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.107.1.tgz", + "integrity": "sha512-mvdIWxj/H6QsfgDdH9djne3a5dYcmEmtsXGESkypaGN5jXjF/b+9KDlmTDQ2TKlFUeA2fI9Y65kihD30JOdB+Q==", "dev": true, "license": "MIT", "dependencies": { - "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.8", "@types/json-schema": "^7.0.15", "@webassemblyjs/ast": "^1.14.1", @@ -26486,20 +21808,20 @@ "acorn-import-phases": "^1.0.3", "browserslist": "^4.28.1", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.20.0", - "es-module-lexer": "^2.0.0", + "enhanced-resolve": "^5.21.4", + "es-module-lexer": "^2.1.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", - "loader-runner": "^4.3.1", + "loader-runner": "^4.3.2", "mime-db": "^1.54.0", "neo-async": "^2.6.2", "schema-utils": "^4.3.3", "tapable": "^2.3.0", - "terser-webpack-plugin": "^5.3.17", + "terser-webpack-plugin": "^5.5.0", "watchpack": "^2.5.1", - "webpack-sources": "^3.3.4" + "webpack-sources": "^3.4.1" }, "bin": { "webpack": "bin/webpack.js" @@ -26572,9 +21894,9 @@ } }, "node_modules/webpack-sources": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.4.1.tgz", - "integrity": "sha512-eACpxRN02yaawnt+uUNIF7Qje6A9zArxBbcAJjK1PK3S9Ycg5jIuJ8pW4q8EMnwNZCEGltcjkRx1QzOxOkKD8A==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.5.0.tgz", + "integrity": "sha512-HPuy+uuoTCaaoEoI1LQ3JN9+vrPBvEesnnX1jADHy728cHSMlq4wUc4afYqahq2B1mhQVZxCXOkNTnXltr+2vQ==", "dev": true, "license": "MIT", "engines": { diff --git a/package.json b/package.json index 21b488d..e18414f 100644 --- a/package.json +++ b/package.json @@ -72,7 +72,6 @@ "jest-environment-jsdom": "^30.4.1", "lint-staged": "16.4.0", "next": "^16.2.4", - "postcss-preset-env": "11.3.0", "postcss-url": "10.1.3", "prettier": "3.8.3", "rollup": "^4.60.2", diff --git a/postcss.config.mjs b/postcss.config.mjs index f5ec3aa..91b5aa6 100644 --- a/postcss.config.mjs +++ b/postcss.config.mjs @@ -3,5 +3,5 @@ import { createRequire } from "module"; const require = createRequire(import.meta.url); export default { - plugins: [require.resolve("./src/scripts/nextjsPostcssWrapLayer.cjs")], + plugins: [require.resolve("./src/scripts/postcssWrapLayer.cjs")], }; diff --git a/rollup.config.mjs b/rollup.config.mjs index 7f7880c..c31428c 100644 --- a/rollup.config.mjs +++ b/rollup.config.mjs @@ -14,7 +14,9 @@ import path from "path"; import process from "node:process"; import { fileURLToPath } from "url"; import json from "@rollup/plugin-json"; -import wrapLayerPlugin from "./src/scripts/wrapLayer.mjs"; +import { createRequire } from "module"; +const require = createRequire(import.meta.url); +const wrapLayerPlugin = require("./src/scripts/postcssWrapLayer.cjs"); process.env.NODE_ENV = process.env.NODE_ENV || "production"; diff --git a/src/lib/components/Accordion/Accordion.module.scss b/src/lib/components/Accordion/Accordion.module.scss index 0c63ab5..469f7a3 100644 --- a/src/lib/components/Accordion/Accordion.module.scss +++ b/src/lib/components/Accordion/Accordion.module.scss @@ -54,7 +54,7 @@ } .icon { - font-size: var(--base-sizing-24x); + --mtf-icon-size: var(--base-sizing-24x); } .collapseIcon { diff --git a/src/lib/components/Avatar/Avatar.module.scss b/src/lib/components/Avatar/Avatar.module.scss index f547ac6..ed6dbb7 100644 --- a/src/lib/components/Avatar/Avatar.module.scss +++ b/src/lib/components/Avatar/Avatar.module.scss @@ -44,7 +44,7 @@ $variants: ("primary", "secondary", "info", "success", "warning", "danger"); @include font($fontType, $fontSize, $fontWeight); } &.icon span { - font-size: var(--base-sizing-#{$iconSize}); + --mtf-icon-size: var(--base-sizing-#{$iconSize}); } } } diff --git a/src/lib/components/Badge/Badge.module.scss b/src/lib/components/Badge/Badge.module.scss index 2fd9182..9efe051 100644 --- a/src/lib/components/Badge/Badge.module.scss +++ b/src/lib/components/Badge/Badge.module.scss @@ -23,7 +23,7 @@ $positions: ("top-left", "top-right", "bottom-left", "bottom-right"); } .icon { - font-size: var(--base-sizing-16x); + --mtf-icon-size: var(--base-sizing-16x); } .badge { diff --git a/src/lib/components/Breadcrumb/Breadcrumb.module.scss b/src/lib/components/Breadcrumb/Breadcrumb.module.scss index 298f1df..580fac7 100644 --- a/src/lib/components/Breadcrumb/Breadcrumb.module.scss +++ b/src/lib/components/Breadcrumb/Breadcrumb.module.scss @@ -34,13 +34,13 @@ .right-icon { margin-left: var(--base-sizing-8x); color: var(--theme-color-text-base-caption-light); - font-size: var(--base-sizing-14x); + --mtf-icon-size: var(--base-sizing-14x); } } .homepage-icon { color: var(--theme-color-text-primary-default); margin-right: var(--base-sizing-8x); - font-size: var(--base-sizing-22x); + --mtf-icon-size: var(--base-sizing-22x); } } diff --git a/src/lib/components/BusinessCard/BusinessCard.module.scss b/src/lib/components/BusinessCard/BusinessCard.module.scss index 221f405..c82444c 100644 --- a/src/lib/components/BusinessCard/BusinessCard.module.scss +++ b/src/lib/components/BusinessCard/BusinessCard.module.scss @@ -11,7 +11,7 @@ $variants: (("neutral", "light"), ("primary", "primary"), ("secondary", "seconda background: var(--theme-color-surface-base-bg-light); .icon { - font-size: var(--base-sizing-40x); + --mtf-icon-size: var(--base-sizing-40x); } .title { @include font("base", "lg", "700"); diff --git a/src/lib/components/Button/Button.module.scss b/src/lib/components/Button/Button.module.scss index 8a891ed..2809297 100644 --- a/src/lib/components/Button/Button.module.scss +++ b/src/lib/components/Button/Button.module.scss @@ -72,7 +72,7 @@ $variants: ( gap: var(--base-sizing-#{$pv}); @include font("base", $fontSize, "600"); .icon { - font-size: var(--base-sizing-#{$iconSize}); + --mtf-icon-size: var(--base-sizing-#{$iconSize}); } } } diff --git a/src/lib/components/ButtonGroup/ButtonGroup.module.scss b/src/lib/components/ButtonGroup/ButtonGroup.module.scss index 23920b3..cf94671 100644 --- a/src/lib/components/ButtonGroup/ButtonGroup.module.scss +++ b/src/lib/components/ButtonGroup/ButtonGroup.module.scss @@ -208,7 +208,7 @@ $sizes: (("xs", "8x", "4x", "4x", "18x"), ("sm", "12x", "6x", "6x", "20x"), ("md } .icon { - font-size: var(--base-sizing-#{$iconSize}); + --mtf-icon-size: var(--base-sizing-#{$iconSize}); } .button__dropdownItem .button { diff --git a/src/lib/components/Chip/Chip.module.scss b/src/lib/components/Chip/Chip.module.scss index 18e5ad1..f5335d2 100644 --- a/src/lib/components/Chip/Chip.module.scss +++ b/src/lib/components/Chip/Chip.module.scss @@ -33,10 +33,11 @@ $variants: ( margin: 0 var(--base-sizing-#{$padding}); } .icon-left { - font-size: var(--base-sizing-#{$iconLeftSize}); + --mtf-icon-size: var(--base-sizing-#{$iconLeftSize}); margin-right: var(--base-sizing-2x); } .icon-close { + --mtf-icon-size: var(--base-sizing-22x); margin-left: var(--base-sizing-2x); } } diff --git a/src/lib/components/DataView/DataView.module.scss b/src/lib/components/DataView/DataView.module.scss index d67b1aa..1bf9e2b 100644 --- a/src/lib/components/DataView/DataView.module.scss +++ b/src/lib/components/DataView/DataView.module.scss @@ -80,7 +80,7 @@ $data-view-sizes: ("xs", "sm", "md", "lg", "xl"); } .icon { color: var(--theme-color-text-base-caption); - font-size: var(--base-sizing-22x); + --mtf-icon-size: var(--base-sizing-22x); } } diff --git a/src/lib/components/Dropdown/Dropdown.module.scss b/src/lib/components/Dropdown/Dropdown.module.scss index 8037cd5..d760260 100644 --- a/src/lib/components/Dropdown/Dropdown.module.scss +++ b/src/lib/components/Dropdown/Dropdown.module.scss @@ -211,7 +211,7 @@ $variants: ("primary", "secondary", "info", "success", "warning", "danger"); } } .icon { - font-size: var(--base-sizing-#{$iconFontSize}); + --mtf-icon-size: var(--base-sizing-#{$iconFontSize}); } } } diff --git a/src/lib/components/Icon/Icon.module.scss b/src/lib/components/Icon/Icon.module.scss index 3e10c41..7ad103d 100644 --- a/src/lib/components/Icon/Icon.module.scss +++ b/src/lib/components/Icon/Icon.module.scss @@ -7,6 +7,9 @@ $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24 display: inline-flex !important; vertical-align: top; user-select: none; + font-size: var(--mtf-icon-size, var(--base-sizing-22x)); + width: var(--mtf-icon-size, var(--base-sizing-22x)); + height: var(--mtf-icon-size, var(--base-sizing-22x)); span, i { @@ -30,7 +33,7 @@ $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24 @each $size, $fontSize in $sizes { .#{$size} { - font-size: var(--base-sizing-#{$fontSize}); + --mtf-icon-size: var(--base-sizing-#{$fontSize}); } } diff --git a/src/lib/components/IconButton/IconButton.module.scss b/src/lib/components/IconButton/IconButton.module.scss index 484dfdb..604adac 100644 --- a/src/lib/components/IconButton/IconButton.module.scss +++ b/src/lib/components/IconButton/IconButton.module.scss @@ -45,7 +45,7 @@ $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24 @each $name, $fontSize in $sizes { .#{$name} { - font-size: var(--base-sizing-#{$fontSize}); + --mtf-icon-size: var(--base-sizing-#{$fontSize}); } } diff --git a/src/lib/components/Link/Link.module.scss b/src/lib/components/Link/Link.module.scss index 5a1afa7..baffbe0 100644 --- a/src/lib/components/Link/Link.module.scss +++ b/src/lib/components/Link/Link.module.scss @@ -7,7 +7,7 @@ $state: ("default", "disabled", "active", "hover"); gap: var(--base-sizing-#{$gap}); @include font("base", $name, "500"); .icon { - font-size: var(--base-sizing-#{$iconFontSize}); + --mtf-icon-size: var(--base-sizing-#{$iconFontSize}); } } } diff --git a/src/lib/components/ListView/ListView.module.scss b/src/lib/components/ListView/ListView.module.scss index 5c9596d..fdcfe45 100644 --- a/src/lib/components/ListView/ListView.module.scss +++ b/src/lib/components/ListView/ListView.module.scss @@ -28,10 +28,10 @@ $list-item-sizes: (("sm", "xs", "2x", "16x", "8x", "24x", "20x", "22x"), ("md", @include font("body", $size); } .icon { - font-size: var(--base-sizing-#{$iconFontSize}); + --mtf-icon-size: var(--base-sizing-#{$iconFontSize}); } .iconRight { - font-size: var(--base-sizing-#{$iconRightFontSize}); + --mtf-icon-size: var(--base-sizing-#{$iconRightFontSize}); } } } diff --git a/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.stories.tsx b/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.stories.tsx index 02ef5c1..9f618ba 100644 --- a/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.stories.tsx +++ b/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.stories.tsx @@ -18,7 +18,6 @@ import { iconObjects } from "../../../../../.storybook/utils.tsx"; const meta: Meta = { title: "Chromatic/GlobalIconWrapper", - tags: ["!autodocs", "!dev"], parameters: { layout: "padded" }, decorators: [ Story => ( diff --git a/src/lib/components/Panel/Panel.module.scss b/src/lib/components/Panel/Panel.module.scss index eeaf241..b53f6a2 100644 --- a/src/lib/components/Panel/Panel.module.scss +++ b/src/lib/components/Panel/Panel.module.scss @@ -65,7 +65,7 @@ $title-sizes: (("sm", "md"), ("md", "lg"), ("lg", "xl")); margin-right: var(--base-sizing-8x); color: var(--theme-color-text-base-caption); vertical-align: text-top; - font-size: var(--base-sizing-22x); + --mtf-icon-size: var(--base-sizing-22x); } @each $size, $title-size in $title-sizes { diff --git a/src/lib/components/PinCode/PinCode.module.scss b/src/lib/components/PinCode/PinCode.module.scss index 7ba855c..699967c 100644 --- a/src/lib/components/PinCode/PinCode.module.scss +++ b/src/lib/components/PinCode/PinCode.module.scss @@ -13,8 +13,8 @@ $sizes: ( gap: var(--base-sizing-#{$gap}); .input { @include font("body", $size); - width: var(--base-sizing-#{$inputSize}); - height: var(--base-sizing-#{$inputSize}); + width: calc(var(--base-sizing-#{$inputSize}) + 2 * var(--base-sizing-#{$padding}) + var(--base-sizing-2x)); + height: calc(var(--base-sizing-#{$inputSize}) + 2 * var(--base-sizing-#{$padding}) + var(--base-sizing-2x)); padding: var(--base-sizing-#{$padding}); } } @@ -50,7 +50,7 @@ $sizes: ( text-align: center; background-color: var(--theme-color-surface-base-bg-light); border: solid var(--base-sizing-1x) var(--theme-color-border-light-default); - box-sizing: content-box !important; + box-sizing: border-box; border-radius: var(--theme-sizing-radius-default); color: var(--theme-color-text-base-title); @include focus-ring; diff --git a/src/lib/components/Select/Select.module.scss b/src/lib/components/Select/Select.module.scss index 1201d4e..c28ac1a 100644 --- a/src/lib/components/Select/Select.module.scss +++ b/src/lib/components/Select/Select.module.scss @@ -197,7 +197,7 @@ $sizes: ( } .closeIcon { - font-size: var(--base-sizing-#{$selectedIconSize}); + --mtf-icon-size: var(--base-sizing-#{$selectedIconSize}); } .dropdown { diff --git a/src/lib/components/Stepper/Stepper.module.scss b/src/lib/components/Stepper/Stepper.module.scss index 2270348..edfc4a4 100644 --- a/src/lib/components/Stepper/Stepper.module.scss +++ b/src/lib/components/Stepper/Stepper.module.scss @@ -46,16 +46,15 @@ $types: (("dot", var(--base-sizing-12x)), ("number", var(--base-sizing-24x)), (" .stepIcon { .icon & { - font-size: var(--base-sizing-28x); + --mtf-icon-size: var(--base-sizing-28x); } .number & { - font-size: var(--base-sizing-16x); + --mtf-icon-size: var(--base-sizing-16x); } } .dotStatusIcon { pointer-events: none; - font-size: var(--base-sizing-22x); width: var(--base-sizing-12x); height: var(--base-sizing-12x); @include flex-center; diff --git a/src/lib/components/Timeline/Timeline.module.scss b/src/lib/components/Timeline/Timeline.module.scss index 8f4ba36..a0401b8 100644 --- a/src/lib/components/Timeline/Timeline.module.scss +++ b/src/lib/components/Timeline/Timeline.module.scss @@ -88,7 +88,7 @@ $variants: ( border-radius: var(--theme-sizing-radius-round); } - .outlined & span { + .outlined & > span { border-width: var(--base-sizing-2x); border-style: solid; } @@ -103,11 +103,14 @@ $variants: ( @include font("base", "xxs", "700"); @include flex-center; } - .markerIcon { + .markerIconWrapper { width: var(--base-sizing-40x); height: var(--base-sizing-40x); - font-size: var(--base-sizing-24x); @include flex-center; + + .markerIcon { + --mtf-icon-size: var(--base-sizing-24x); + } } } diff --git a/src/lib/components/Timeline/TimelineItem.tsx b/src/lib/components/Timeline/TimelineItem.tsx index 8c7a785..af0ec4c 100644 --- a/src/lib/components/Timeline/TimelineItem.tsx +++ b/src/lib/components/Timeline/TimelineItem.tsx @@ -18,7 +18,9 @@ const TimelineItem = memo((props: Props) => {
{markerType === "icon" ? ( - + + + ) : markerType === "number" ? ( {order} ) : ( diff --git a/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss b/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss index c82b86e..c453e71 100644 --- a/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss +++ b/src/lib/components/Upload/ImageUpload/ImageUpload.module.scss @@ -1,8 +1,8 @@ @use "@styles" as *; -$sizes: (("xs", 160x, 6x, 36x, 24x), ("sm", 190x, 8x, 40x, 28x), ("md", 256x, 10x, 44x, 32x), ("lg", 320x, 12x, 48x, 36x)); +$sizes: (("xs", 160x, 6x, 36x, 16x), ("sm", 190x, 8x, 40x, 18x), ("md", 256x, 10x, 44x, 20x), ("lg", 320x, 12x, 48x, 22x)); -@each $name, $box, $padding, $fontSize, $iconSize in $sizes { +@each $name, $box, $padding, $addIconSize, $iconSize in $sizes { .#{$name} { width: var(--base-sizing-#{$box}); @@ -17,13 +17,11 @@ $sizes: (("xs", 160x, 6x, 36x, 24x), ("sm", 190x, 8x, 40x, 28x), ("md", 256x, 10 } .icon { - width: var(--base-sizing-#{$fontSize}); - height: var(--base-sizing-#{$fontSize}); - font-size: var(--base-sizing-#{$iconSize}); + --mtf-icon-size: var(--base-sizing-#{$iconSize}); } .addIcon { - font-size: var(--base-sizing-#{$fontSize}); + --mtf-icon-size: var(--base-sizing-#{$addIconSize}); } .dragMessage { diff --git a/src/lib/components/Upload/ImageUpload/components/Image.tsx b/src/lib/components/Upload/ImageUpload/components/Image.tsx index e5404de..3daf1f8 100644 --- a/src/lib/components/Upload/ImageUpload/components/Image.tsx +++ b/src/lib/components/Upload/ImageUpload/components/Image.tsx @@ -4,7 +4,7 @@ import { useContext } from "react"; import { FileType } from "@/components/Upload/types"; import { UploadContext } from "@/components/Upload/UploadProvider"; import MotifIcon from "@/components/Motif/Icon/MotifIcon"; -import { shortenText } from "../../../../../utils/utils"; +import { shortenText } from "src/utils/utils.ts"; import { MotifIconButton } from "@/components/Motif/Icon"; import Preview from "@/components/Upload/ImageUpload/components/Preview"; import useToggle from "../../../../hooks/useToggle"; @@ -15,22 +15,15 @@ type Props = { }; export const Image = ({ file: { status, progress, file } }: Props) => { - const { size, selectedFiles, removeFiles } = useContext(UploadContext); + const { selectedFiles, removeFiles } = useContext(UploadContext); const image = URL.createObjectURL(file); - const iconSize = size === "sm" ? "xs" : size === "lg" ? "md" : "sm"; const { visible, show, hide } = useToggle(false); const failed = status === STATUS.CHECK_FAIL || status === STATUS.UPLOAD_FAIL; const deleteFailed = status === STATUS.DELETE_FAIL; const succeeded = !failed && !deleteFailed && status !== STATUS.UPLOADING; const deleteIcon = ( - removeFiles([selectedFiles[0]])} - /> + removeFiles([selectedFiles[0]])} /> ); return ( @@ -48,7 +41,7 @@ export const Image = ({ file: { status, progress, file } }: Props) => {
{!visible && (
- + {deleteIcon}
)} diff --git a/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss b/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss index 7e8618e..a4e8be4 100644 --- a/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss +++ b/src/lib/components/Upload/UploadDragger/UploadDragger.module.scss @@ -89,7 +89,7 @@ $sizes: (("xs", "2x", "20x", "xxs", "32x"), ("sm", "4x", "24x", "xs", "40x"), (" padding: var(--base-sizing-#{$padding}); .dragIcon { - font-size: var(--base-sizing-#{$iconSize}); + --mtf-icon-size: var(--base-sizing-#{$iconSize}); } .dragTextGroup { diff --git a/src/scripts/nextjsPostcssWrapLayer.cjs b/src/scripts/nextjsPostcssWrapLayer.cjs deleted file mode 100644 index 8765b12..0000000 --- a/src/scripts/nextjsPostcssWrapLayer.cjs +++ /dev/null @@ -1,24 +0,0 @@ -const plugin = () => ({ - postcssPlugin: "postcss-wrap-layer", - - Once(root, { atRule }) { - let alreadyLayered = false; - - root.walkAtRules("layer", () => { - alreadyLayered = true; - }); - - if (!alreadyLayered) { - const nodes = [...root.nodes]; - root.removeAll(); - - const layerRule = atRule({ name: "layer", params: "motif-ui" }); - nodes.forEach(node => layerRule.append(node)); - root.append(layerRule); - } - }, -}); - -plugin.postcss = true; - -module.exports = plugin; diff --git a/src/scripts/wrapLayer.mjs b/src/scripts/postcssWrapLayer.cjs similarity index 64% rename from src/scripts/wrapLayer.mjs rename to src/scripts/postcssWrapLayer.cjs index b8eee8c..96cb9ed 100644 --- a/src/scripts/wrapLayer.mjs +++ b/src/scripts/postcssWrapLayer.cjs @@ -1,17 +1,22 @@ const LAYER_NAME = "motif-ui"; -const wrapLayerPlugin = () => ({ +const plugin = () => ({ postcssPlugin: "postcss-wrap-layer", Once(root, { atRule }) { let alreadyLayered = false; - root.walkAtRules("layer", () => { - alreadyLayered = true; + + root.walkAtRules("layer", rule => { + if (rule.params === LAYER_NAME) { + alreadyLayered = true; + return false; + } }); if (!alreadyLayered) { const nodes = [...root.nodes]; root.removeAll(); + const layerRule = atRule({ name: "layer", params: LAYER_NAME }); nodes.forEach(node => layerRule.append(node)); root.append(layerRule); @@ -19,6 +24,6 @@ const wrapLayerPlugin = () => ({ }, }); -wrapLayerPlugin.postcss = true; +plugin.postcss = true; -export default wrapLayerPlugin; +module.exports = plugin; diff --git a/stylelint.config.mjs b/stylelint.config.mjs index 0add761..172a875 100644 --- a/stylelint.config.mjs +++ b/stylelint.config.mjs @@ -18,5 +18,6 @@ export default { "value-keyword-case": null, "scss/dollar-variable-empty-line-before": null, "color-hex-length": "long", + "custom-property-empty-line-before": null, }, }; From c2e5b3a56a54e5cb16b62185c0f570aa705c6963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Akta=C5=9F?= Date: Mon, 1 Jun 2026 10:00:04 +0300 Subject: [PATCH 16/17] external icon usage fix and refactor --- .storybook/utils.tsx | 4 +-- src/docs/v1/icons/icons.mdx | 4 +-- src/lib/components/Icon/Icon.mdx | 2 +- src/lib/components/Icon/Icon.module.scss | 6 ++--- src/lib/components/Icon/Icon.stories.tsx | 26 ++++++------------- .../GlobalIconWrapper.stories.tsx | 3 +-- 6 files changed, 17 insertions(+), 28 deletions(-) diff --git a/.storybook/utils.tsx b/.storybook/utils.tsx index d63725f..b5c0c50 100644 --- a/.storybook/utils.tsx +++ b/.storybook/utils.tsx @@ -33,7 +33,7 @@ export const themeChangeDecorator = (Story: FC, context: { globals: { theme?: st export const iconObjects = { string: "folder", "": , - "": mood, + "": mood, "": ( @@ -49,7 +49,7 @@ export const iconOptions = { export const iconDecorator = (StoryComponent: FC): JSX.Element => ( <> - + ); diff --git a/src/docs/v1/icons/icons.mdx b/src/docs/v1/icons/icons.mdx index 0b61f4a..e617770 100644 --- a/src/docs/v1/icons/icons.mdx +++ b/src/docs/v1/icons/icons.mdx @@ -41,9 +41,9 @@ In order to use a custom font icon library, you should include the desired icon ```jsx // ...your root layout file - + - + {/* your app's children */ } ``` diff --git a/src/lib/components/Icon/Icon.mdx b/src/lib/components/Icon/Icon.mdx index c3954e1..4cf909f 100644 --- a/src/lib/components/Icon/Icon.mdx +++ b/src/lib/components/Icon/Icon.mdx @@ -36,7 +36,7 @@ to each `` but only **name** or **iconClass** props. **⚠️ Warning**: _Since the base icon class changes, you will no longer be able to use the default icon set of Motif UI._ ```tsx - + {/* your app */} ``` diff --git a/src/lib/components/Icon/Icon.module.scss b/src/lib/components/Icon/Icon.module.scss index 7ad103d..398c5ea 100644 --- a/src/lib/components/Icon/Icon.module.scss +++ b/src/lib/components/Icon/Icon.module.scss @@ -7,9 +7,9 @@ $sizes: (("xxs", "16x"), ("xs", "18x"), ("sm", "20x"), ("md", "22x"), ("lg", "24 display: inline-flex !important; vertical-align: top; user-select: none; - font-size: var(--mtf-icon-size, var(--base-sizing-22x)); - width: var(--mtf-icon-size, var(--base-sizing-22x)); - height: var(--mtf-icon-size, var(--base-sizing-22x)); + font-size: var(--mtf-icon-size, var(--base-sizing-22x)) !important; + width: var(--mtf-icon-size, var(--base-sizing-22x)) !important; + height: var(--mtf-icon-size, var(--base-sizing-22x)) !important; span, i { diff --git a/src/lib/components/Icon/Icon.stories.tsx b/src/lib/components/Icon/Icon.stories.tsx index 9d73efb..7494f36 100644 --- a/src/lib/components/Icon/Icon.stories.tsx +++ b/src/lib/components/Icon/Icon.stories.tsx @@ -67,23 +67,18 @@ export const ExternalFontIcons: Story = { source: { type: "code", code: ` - + //... - + `, }, }, }, args: { - iconClass: "material-icons", + iconClass: "material-symbols", name: "android", }, - render: args => ( - <> - - - - ), + render: args => , }; export const SvgUsage: Story = { @@ -119,23 +114,18 @@ export const AnyExternalIcon: Story = { source: { type: "code", code: ` - + //... - android + android `, }, }, }, args: { - children: android, + children: android, color: "green", }, - render: args => ( - <> - - - - ), + render: args => , }; diff --git a/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.stories.tsx b/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.stories.tsx index 9f618ba..d102d26 100644 --- a/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.stories.tsx +++ b/src/lib/components/Motif/GlobalIconWrapper/GlobalIconWrapper.stories.tsx @@ -18,12 +18,11 @@ import { iconObjects } from "../../../../../.storybook/utils.tsx"; const meta: Meta = { title: "Chromatic/GlobalIconWrapper", + tags: ["!autodocs", "!dev"], parameters: { layout: "padded" }, decorators: [ Story => (
- -
), From d780997a0cb6a08b0a4748a9831603d443f4256d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Akta=C5=9F?= Date: Mon, 1 Jun 2026 10:38:47 +0300 Subject: [PATCH 17/17] date time input icon fixes --- src/lib/components/InputDateRange/InputDateRange.tsx | 5 ++--- src/lib/components/InputTime/InputTime.tsx | 9 ++------- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/src/lib/components/InputDateRange/InputDateRange.tsx b/src/lib/components/InputDateRange/InputDateRange.tsx index 4fef749..486ad6d 100644 --- a/src/lib/components/InputDateRange/InputDateRange.tsx +++ b/src/lib/components/InputDateRange/InputDateRange.tsx @@ -13,9 +13,8 @@ import { areRangesEquals, sanitizeRange, validateRange } from "@/components/Inpu import { orderDatesAndPutTimes } from "@/components/DateRangePicker/helper"; import usePropsWithThemeDefaults from "../../motif/hooks/usePropsWithThemeDefaults"; import { InputDateRangeProps } from "./types"; -import { sanitizeModuleRootClasses } from "../../../utils/cssUtils"; +import { sanitizeModuleRootClasses } from "src/utils/cssUtils.ts"; import MotifIcon from "../Motif/Icon/MotifIcon"; -import MotifIconButton from "../Motif/Icon/MotifIconButton"; import InputText from "@/components/Motif/InputText/InputText"; import { LOCALE_DATE_RANGE_TR_TR } from "@/components/DateRangePicker/locale/tr_TR"; @@ -136,7 +135,7 @@ const InputDateRange = (p: PropsWithRef) => onClick={pickerShowHandler} onFocus={pickerShowHandler} iconLeft={} - iconRight={itemValue && !disabled ? : undefined} + buttonRight={itemValue && !disabled ? { name: "cancel_outline", onClick: onClearClickInInput } : undefined} /> {visible && ( ) => {
} - iconRight={ - itemValue && !disabled && !readOnly ? ( - clearClickHandler(true)} /> - ) : undefined - } + buttonRight={itemValue && !disabled && !readOnly ? { name: "cancel_outline", onClick: () => clearClickHandler(true) } : undefined} name={name} size={size} pill={pill}