From b23dcc2bafdef2dfa83dd88f9bd83dcbec1ed5b0 Mon Sep 17 00:00:00 2001 From: Junior Garcia Date: Fri, 10 Nov 2023 09:39:20 -0300 Subject: [PATCH] chore(root): pkg upgraded --- packages/components/accordion/package.json | 15 +- .../accordion/src/use-accordion-item.ts | 3 +- packages/components/autocomplete/package.json | 20 +- packages/components/avatar/package.json | 6 +- packages/components/breadcrumbs/package.json | 10 +- packages/components/button/package.json | 12 +- packages/components/card/package.json | 10 +- packages/components/checkbox/package.json | 19 +- .../components/checkbox/src/use-checkbox.ts | 3 +- packages/components/chip/package.json | 9 +- packages/components/chip/src/use-chip.ts | 2 +- packages/components/divider/package.json | 2 +- packages/components/dropdown/package.json | 10 +- packages/components/input/package.json | 14 +- packages/components/input/src/textarea.tsx | 6 + packages/components/input/src/use-input.ts | 10 +- packages/components/kbd/package.json | 2 +- packages/components/link/package.json | 8 +- packages/components/listbox/package.json | 15 +- .../listbox/src/use-listbox-item.ts | 3 +- packages/components/menu/package.json | 17 +- packages/components/menu/src/use-menu-item.ts | 3 +- packages/components/modal/package.json | 14 +- packages/components/navbar/package.json | 12 +- packages/components/pagination/package.json | 7 +- .../pagination/src/use-pagination-item.ts | 3 +- packages/components/popover/package.json | 16 +- packages/components/progress/package.json | 8 +- packages/components/radio/package.json | 17 +- packages/components/radio/src/use-radio.ts | 3 +- packages/components/select/package.json | 14 +- packages/components/slider/package.json | 15 +- .../components/slider/src/use-slider-thumb.ts | 3 +- packages/components/snippet/package.json | 4 +- packages/components/switch/package.json | 15 +- packages/components/switch/src/use-switch.ts | 3 +- packages/components/table/package.json | 20 +- packages/components/tabs/package.json | 14 +- packages/components/tooltip/package.json | 14 +- packages/components/user/package.json | 4 +- packages/core/react/package.json | 2 +- packages/core/system/package.json | 8 +- .../use-aria-accordion-item/package.json | 8 +- .../hooks/use-aria-accordion/package.json | 14 +- packages/hooks/use-aria-button/package.json | 11 +- packages/hooks/use-aria-button/src/index.ts | 2 +- packages/hooks/use-aria-link/package.json | 11 +- packages/hooks/use-aria-link/src/index.ts | 2 +- .../hooks/use-aria-modal-overlay/package.json | 8 +- .../hooks/use-aria-multiselect/package.json | 26 +- .../src/use-multiselect-state.ts | 2 +- packages/hooks/use-aria-press/CHANGELOG.md | 7 - packages/hooks/use-aria-press/README.md | 24 - packages/hooks/use-aria-press/package.json | 58 - packages/hooks/use-aria-press/src/context.ts | 13 - .../hooks/use-aria-press/src/dom-helpers.ts | 8 - packages/hooks/use-aria-press/src/events.ts | 32 - packages/hooks/use-aria-press/src/index.ts | 907 ----- .../use-aria-press/src/text-selection.ts | 89 - packages/hooks/use-aria-press/src/types.ts | 54 - packages/hooks/use-aria-press/tsconfig.json | 4 - .../hooks/use-aria-toggle-button/package.json | 8 +- packages/hooks/use-disclosure/package.json | 4 +- packages/hooks/use-is-mobile/package.json | 2 +- packages/utilities/aria-utils/package.json | 8 +- pnpm-lock.yaml | 3550 +++++++++-------- 66 files changed, 2028 insertions(+), 3219 deletions(-) delete mode 100644 packages/hooks/use-aria-press/CHANGELOG.md delete mode 100644 packages/hooks/use-aria-press/README.md delete mode 100644 packages/hooks/use-aria-press/package.json delete mode 100644 packages/hooks/use-aria-press/src/context.ts delete mode 100644 packages/hooks/use-aria-press/src/dom-helpers.ts delete mode 100644 packages/hooks/use-aria-press/src/events.ts delete mode 100644 packages/hooks/use-aria-press/src/index.ts delete mode 100644 packages/hooks/use-aria-press/src/text-selection.ts delete mode 100644 packages/hooks/use-aria-press/src/types.ts delete mode 100644 packages/hooks/use-aria-press/tsconfig.json diff --git a/packages/components/accordion/package.json b/packages/components/accordion/package.json index 428e03aa89..1315eab715 100644 --- a/packages/components/accordion/package.json +++ b/packages/components/accordion/package.json @@ -54,14 +54,13 @@ "@nextui-org/framer-transitions": "workspace:*", "@nextui-org/divider": "workspace:*", "@nextui-org/use-aria-accordion": "workspace:*", - "@nextui-org/use-aria-press": "workspace:*", - "@react-aria/interactions": "^3.19.1", - "@react-aria/focus": "^3.14.3", - "@react-aria/utils": "^3.21.1", - "@react-stately/tree": "^3.7.3", - "@react-aria/button": "^3.8.4", - "@react-types/accordion": "3.0.0-alpha.17", - "@react-types/shared": "^3.21.0" + "@react-aria/interactions": "^3.20.0", + "@react-aria/focus": "^3.15.0", + "@react-aria/utils": "^3.22.0", + "@react-stately/tree": "^3.7.4", + "@react-aria/button": "^3.9.0", + "@react-types/accordion": "3.0.0-alpha.18", + "@react-types/shared": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/accordion/src/use-accordion-item.ts b/packages/components/accordion/src/use-accordion-item.ts index 2f0d9f1648..d87c068ca8 100644 --- a/packages/components/accordion/src/use-accordion-item.ts +++ b/packages/components/accordion/src/use-accordion-item.ts @@ -7,8 +7,7 @@ import {NodeWithProps} from "@nextui-org/aria-utils"; import {useReactAriaAccordionItem} from "@nextui-org/use-aria-accordion"; import {useCallback, useMemo} from "react"; import {chain, mergeProps} from "@react-aria/utils"; -import {useHover} from "@react-aria/interactions"; -import {usePress} from "@nextui-org/use-aria-press"; +import {useHover, usePress} from "@react-aria/interactions"; import {TreeState} from "@react-stately/tree"; import {AccordionItemBaseProps} from "./base/accordion-item-base"; diff --git a/packages/components/autocomplete/package.json b/packages/components/autocomplete/package.json index a81269ab50..dacee38c09 100644 --- a/packages/components/autocomplete/package.json +++ b/packages/components/autocomplete/package.json @@ -52,15 +52,15 @@ "@nextui-org/button": "workspace:*", "@nextui-org/use-aria-button": "workspace:*", "@nextui-org/shared-icons": "workspace:*", - "@react-aria/combobox": "^3.7.1", - "@react-aria/focus": "^3.14.3", - "@react-aria/i18n": "^3.8.4", - "@react-aria/interactions": "^3.19.1", - "@react-aria/utils": "^3.21.1", - "@react-aria/visually-hidden": "^3.8.6", - "@react-stately/combobox": "^3.7.1", - "@react-types/combobox": "^3.8.1", - "@react-types/shared": "^3.21.0" + "@react-aria/combobox": "^3.8.0", + "@react-aria/focus": "^3.15.0", + "@react-aria/i18n": "^3.9.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/utils": "^3.22.0", + "@react-aria/visually-hidden": "^3.8.7", + "@react-stately/combobox": "^3.8.0", + "@react-types/combobox": "^3.9.0", + "@react-types/shared": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", @@ -69,7 +69,7 @@ "@nextui-org/chip": "workspace:*", "@nextui-org/stories-utils": "workspace:*", "@nextui-org/use-infinite-scroll": "workspace:*", - "@react-stately/data": "^3.10.3", + "@react-stately/data": "^3.11.0", "framer-motion": "^10.16.4", "clean-package": "2.2.0", "react": "^18.0.0", diff --git a/packages/components/avatar/package.json b/packages/components/avatar/package.json index 91afe19637..8a98c1c98b 100644 --- a/packages/components/avatar/package.json +++ b/packages/components/avatar/package.json @@ -43,9 +43,9 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/use-image": "workspace:*", - "@react-aria/interactions": "^3.19.1", - "@react-aria/focus": "^3.14.3", - "@react-aria/utils": "^3.21.1" + "@react-aria/interactions": "^3.20.0", + "@react-aria/focus": "^3.15.0", + "@react-aria/utils": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/breadcrumbs/package.json b/packages/components/breadcrumbs/package.json index 36042bb910..f33f63181a 100644 --- a/packages/components/breadcrumbs/package.json +++ b/packages/components/breadcrumbs/package.json @@ -43,11 +43,11 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/shared-icons": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/breadcrumbs": "^3.5.7", - "@react-aria/utils": "^3.21.1", - "@react-types/breadcrumbs": "^3.7.1", - "@react-types/shared": "^3.21.0" + "@react-aria/focus": "^3.15.0", + "@react-aria/breadcrumbs": "^3.5.8", + "@react-aria/utils": "^3.22.0", + "@react-types/breadcrumbs": "^3.7.2", + "@react-types/shared": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/button/package.json b/packages/components/button/package.json index 3b1165994c..c0403577da 100644 --- a/packages/components/button/package.json +++ b/packages/components/button/package.json @@ -46,12 +46,12 @@ "@nextui-org/use-aria-button": "workspace:*", "@nextui-org/ripple": "workspace:*", "@nextui-org/spinner": "workspace:*", - "@react-aria/button": "^3.8.4", - "@react-aria/interactions": "^3.19.1", - "@react-aria/utils": "^3.21.1", - "@react-aria/focus": "^3.14.3", - "@react-types/shared": "^3.21.0", - "@react-types/button": "^3.9.0" + "@react-aria/button": "^3.9.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/utils": "^3.22.0", + "@react-aria/focus": "^3.15.0", + "@react-types/shared": "^3.22.0", + "@react-types/button": "^3.9.1" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/card/package.json b/packages/components/card/package.json index 29da4a066f..dfa48616a4 100644 --- a/packages/components/card/package.json +++ b/packages/components/card/package.json @@ -45,11 +45,11 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/use-aria-button": "workspace:*", "@nextui-org/ripple": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/utils": "^3.21.1", - "@react-aria/interactions": "^3.19.1", - "@react-aria/button": "^3.8.4", - "@react-types/shared": "^3.21.0" + "@react-aria/focus": "^3.15.0", + "@react-aria/utils": "^3.22.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/button": "^3.9.0", + "@react-types/shared": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/checkbox/package.json b/packages/components/checkbox/package.json index a6c5d9f178..7de178a295 100644 --- a/packages/components/checkbox/package.json +++ b/packages/components/checkbox/package.json @@ -42,16 +42,15 @@ "dependencies": { "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@nextui-org/use-aria-press": "workspace:*", - "@react-aria/checkbox": "^3.11.2", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/visually-hidden": "^3.8.6", - "@react-stately/checkbox": "^3.5.1", - "@react-stately/toggle": "^3.6.3", - "@react-aria/utils": "^3.21.1", - "@react-types/checkbox": "^3.5.2", - "@react-types/shared": "^3.21.0" + "@react-aria/checkbox": "^3.12.0", + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/visually-hidden": "^3.8.7", + "@react-stately/checkbox": "^3.6.0", + "@react-stately/toggle": "^3.7.0", + "@react-aria/utils": "^3.22.0", + "@react-types/checkbox": "^3.6.0", + "@react-types/shared": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/checkbox/src/use-checkbox.ts b/packages/components/checkbox/src/use-checkbox.ts index 77b7697611..f027380ded 100644 --- a/packages/components/checkbox/src/use-checkbox.ts +++ b/packages/components/checkbox/src/use-checkbox.ts @@ -6,8 +6,7 @@ import {ReactNode, Ref, useCallback, useId, useState} from "react"; import {useMemo, useRef} from "react"; import {useToggleState} from "@react-stately/toggle"; import {checkbox} from "@nextui-org/theme"; -import {useHover} from "@react-aria/interactions"; -import {usePress} from "@nextui-org/use-aria-press"; +import {useHover, usePress} from "@react-aria/interactions"; import {useFocusRing} from "@react-aria/focus"; import {chain, mergeProps} from "@react-aria/utils"; import {useFocusableRef} from "@nextui-org/react-utils"; diff --git a/packages/components/chip/package.json b/packages/components/chip/package.json index 176e8145af..01306cfcee 100644 --- a/packages/components/chip/package.json +++ b/packages/components/chip/package.json @@ -43,11 +43,10 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@nextui-org/use-aria-press": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/utils": "^3.21.1", - "@react-types/checkbox": "^3.5.2" + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/utils": "^3.22.0", + "@react-types/checkbox": "^3.6.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/chip/src/use-chip.ts b/packages/components/chip/src/use-chip.ts index 2a7e2d11d2..63d34f4848 100644 --- a/packages/components/chip/src/use-chip.ts +++ b/packages/components/chip/src/use-chip.ts @@ -3,7 +3,7 @@ import type {ReactNode} from "react"; import {HTMLNextUIProps, mapPropsVariants, PropGetter} from "@nextui-org/system"; import {mergeProps} from "@react-aria/utils"; -import {usePress} from "@nextui-org/use-aria-press"; +import {usePress} from "@react-aria/interactions"; import {useFocusRing} from "@react-aria/focus"; import {chip} from "@nextui-org/theme"; import {useDOMRef} from "@nextui-org/react-utils"; diff --git a/packages/components/divider/package.json b/packages/components/divider/package.json index f10cb3bc2c..5de1330fdc 100644 --- a/packages/components/divider/package.json +++ b/packages/components/divider/package.json @@ -42,7 +42,7 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-rsc-utils": "workspace:*", "@nextui-org/system-rsc": "workspace:*", - "@react-types/shared": "^3.21.0" + "@react-types/shared": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/dropdown/package.json b/packages/components/dropdown/package.json index 529d6d5053..be691f9d04 100644 --- a/packages/components/dropdown/package.json +++ b/packages/components/dropdown/package.json @@ -45,11 +45,11 @@ "@nextui-org/popover": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@react-aria/menu": "^3.11.1", - "@react-aria/utils": "^3.21.1", - "@react-stately/menu": "^3.5.6", - "@react-aria/focus": "^3.14.3", - "@react-types/menu": "^3.9.5" + "@react-aria/menu": "^3.11.2", + "@react-aria/utils": "^3.22.0", + "@react-stately/menu": "^3.5.7", + "@react-aria/focus": "^3.15.0", + "@react-types/menu": "^3.9.6" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/input/package.json b/packages/components/input/package.json index 05e9eba87f..82cff74d26 100644 --- a/packages/components/input/package.json +++ b/packages/components/input/package.json @@ -43,13 +43,13 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-icons": "workspace:*", "@nextui-org/shared-utils": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/textfield": "^3.12.2", - "@react-aria/utils": "^3.21.1", - "@react-stately/utils": "^3.8.0", - "@react-types/shared": "^3.21.0", - "@react-types/textfield": "^3.8.1", + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/textfield": "^3.13.0", + "@react-aria/utils": "^3.22.0", + "@react-stately/utils": "^3.9.0", + "@react-types/shared": "^3.22.0", + "@react-types/textfield": "^3.9.0", "react-textarea-autosize": "^8.5.2" }, "devDependencies": { diff --git a/packages/components/input/src/textarea.tsx b/packages/components/input/src/textarea.tsx index 60ad2d0b74..f89c8a5330 100644 --- a/packages/components/input/src/textarea.tsx +++ b/packages/components/input/src/textarea.tsx @@ -135,6 +135,12 @@ const Textarea = forwardRef<"textarea", TextAreaProps>( return
{content}
; }, [startContent, inputProps, endContent, getInnerWrapperProps]); + const errorMessageContent = useMemo(() => { + if (typeof errorMessage === "string") { + return errorMessage; + } + }, [errorMessage]); + return ( {shouldLabelBeOutside ? labelContent : null} diff --git a/packages/components/input/src/use-input.ts b/packages/components/input/src/use-input.ts index 8f3f84ea5e..a0476b64e6 100644 --- a/packages/components/input/src/use-input.ts +++ b/packages/components/input/src/use-input.ts @@ -142,7 +142,15 @@ export function useInput extends MenuItemBaseProps { diff --git a/packages/components/modal/package.json b/packages/components/modal/package.json index fbbdf05fe1..7bbd4ee841 100644 --- a/packages/components/modal/package.json +++ b/packages/components/modal/package.json @@ -48,13 +48,13 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-icons": "workspace:*", "@nextui-org/use-aria-modal-overlay": "workspace:*", - "@react-aria/dialog": "^3.5.7", - "@react-aria/interactions": "^3.19.1", - "@react-aria/overlays": "^3.18.1", - "@react-aria/utils": "^3.21.1", - "@react-stately/overlays": "^3.6.3", - "@react-aria/focus": "^3.14.3", - "@react-types/overlays": "^3.8.3", + "@react-aria/dialog": "^3.5.8", + "@react-aria/interactions": "^3.20.0", + "@react-aria/overlays": "^3.19.0", + "@react-aria/utils": "^3.22.0", + "@react-stately/overlays": "^3.6.4", + "@react-aria/focus": "^3.15.0", + "@react-types/overlays": "^3.8.4", "react-remove-scroll": "^2.5.6" }, "devDependencies": { diff --git a/packages/components/navbar/package.json b/packages/components/navbar/package.json index fd8aa0b972..fc12a56bf5 100644 --- a/packages/components/navbar/package.json +++ b/packages/components/navbar/package.json @@ -46,12 +46,12 @@ "@nextui-org/framer-transitions": "workspace:*", "@nextui-org/use-aria-toggle-button": "workspace:*", "@nextui-org/use-scroll-position": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/utils": "^3.21.1", - "@react-stately/toggle": "^3.6.3", - "@react-stately/utils": "^3.8.0", - "@react-aria/overlays": "^3.18.1", + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/utils": "^3.22.0", + "@react-stately/toggle": "^3.7.0", + "@react-stately/utils": "^3.9.0", + "@react-aria/overlays": "^3.19.0", "react-remove-scroll": "^2.5.6" }, "devDependencies": { diff --git a/packages/components/pagination/package.json b/packages/components/pagination/package.json index dedddc2c49..86a023e767 100644 --- a/packages/components/pagination/package.json +++ b/packages/components/pagination/package.json @@ -44,10 +44,9 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-icons": "workspace:*", "@nextui-org/use-pagination": "workspace:*", - "@nextui-org/use-aria-press": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/utils": "^3.21.1", + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/utils": "^3.22.0", "scroll-into-view-if-needed": "3.0.10" }, "devDependencies": { diff --git a/packages/components/pagination/src/use-pagination-item.ts b/packages/components/pagination/src/use-pagination-item.ts index 4bb856fe0a..1eff4db342 100644 --- a/packages/components/pagination/src/use-pagination-item.ts +++ b/packages/components/pagination/src/use-pagination-item.ts @@ -6,9 +6,8 @@ import {useMemo} from "react"; import {PaginationItemValue} from "@nextui-org/use-pagination"; import {clsx, dataAttr} from "@nextui-org/shared-utils"; import {chain, mergeProps, shouldClientNavigate, useRouter} from "@react-aria/utils"; -import {usePress} from "@nextui-org/use-aria-press"; import {filterDOMProps, useDOMRef} from "@nextui-org/react-utils"; -import {useHover} from "@react-aria/interactions"; +import {useHover, usePress} from "@react-aria/interactions"; import {useFocusRing} from "@react-aria/focus"; interface Props extends Omit, "onClick"> { diff --git a/packages/components/popover/package.json b/packages/components/popover/package.json index 1418dc7131..035d9c9758 100644 --- a/packages/components/popover/package.json +++ b/packages/components/popover/package.json @@ -47,14 +47,14 @@ "@nextui-org/button": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@react-aria/dialog": "^3.5.7", - "@react-aria/interactions": "^3.19.1", - "@react-aria/overlays": "^3.18.1", - "@react-aria/utils": "^3.21.1", - "@react-stately/overlays": "^3.6.3", - "@react-aria/focus": "^3.14.3", - "@react-types/overlays": "^3.8.3", - "@react-types/button": "^3.9.0", + "@react-aria/dialog": "^3.5.8", + "@react-aria/interactions": "^3.20.0", + "@react-aria/overlays": "^3.19.0", + "@react-aria/utils": "^3.22.0", + "@react-stately/overlays": "^3.6.4", + "@react-aria/focus": "^3.15.0", + "@react-types/overlays": "^3.8.4", + "@react-types/button": "^3.9.1", "react-remove-scroll": "^2.5.6" }, "devDependencies": { diff --git a/packages/components/progress/package.json b/packages/components/progress/package.json index 7ed2571f0d..f301748de2 100644 --- a/packages/components/progress/package.json +++ b/packages/components/progress/package.json @@ -43,10 +43,10 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/use-is-mounted": "workspace:*", - "@react-aria/i18n": "^3.8.4", - "@react-aria/progress": "^3.4.7", - "@react-aria/utils": "^3.21.1", - "@react-types/progress": "^3.5.0" + "@react-aria/i18n": "^3.9.0", + "@react-aria/progress": "^3.4.8", + "@react-aria/utils": "^3.22.0", + "@react-types/progress": "^3.5.1" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/radio/package.json b/packages/components/radio/package.json index db8f35177c..db006b839f 100644 --- a/packages/components/radio/package.json +++ b/packages/components/radio/package.json @@ -42,15 +42,14 @@ "dependencies": { "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@nextui-org/use-aria-press": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/radio": "^3.8.2", - "@react-aria/utils": "^3.21.1", - "@react-aria/visually-hidden": "^3.8.6", - "@react-stately/radio": "^3.9.1", - "@react-types/radio": "^3.5.2", - "@react-types/shared": "^3.21.0" + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/radio": "^3.9.0", + "@react-aria/utils": "^3.22.0", + "@react-aria/visually-hidden": "^3.8.7", + "@react-stately/radio": "^3.10.0", + "@react-types/radio": "^3.6.0", + "@react-types/shared": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/radio/src/use-radio.ts b/packages/components/radio/src/use-radio.ts index 973e6135bb..7d1d0e46c6 100644 --- a/packages/components/radio/src/use-radio.ts +++ b/packages/components/radio/src/use-radio.ts @@ -4,8 +4,7 @@ import type {RadioVariantProps, RadioSlots, SlotsToClasses} from "@nextui-org/th import {Ref, ReactNode, useCallback, useId, useState} from "react"; import {useMemo, useRef} from "react"; import {useFocusRing} from "@react-aria/focus"; -import {useHover} from "@react-aria/interactions"; -import {usePress} from "@nextui-org/use-aria-press"; +import {useHover, usePress} from "@react-aria/interactions"; import {radio} from "@nextui-org/theme"; import {useRadio as useReactAriaRadio} from "@react-aria/radio"; import {HTMLNextUIProps, PropGetter} from "@nextui-org/system"; diff --git a/packages/components/select/package.json b/packages/components/select/package.json index 91a55993c2..44d53fa3fe 100644 --- a/packages/components/select/package.json +++ b/packages/components/select/package.json @@ -51,11 +51,11 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/use-aria-button": "workspace:*", "@nextui-org/use-aria-multiselect": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/utils": "^3.21.1", - "@react-aria/visually-hidden": "^3.8.6", - "@react-types/shared": "^3.21.0" + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/utils": "^3.22.0", + "@react-aria/visually-hidden": "^3.8.7", + "@react-types/shared": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", @@ -67,8 +67,8 @@ "@nextui-org/stories-utils": "workspace:*", "@nextui-org/use-infinite-scroll": "workspace:*", "framer-motion": "^10.16.4", - "@react-stately/data": "^3.10.3", - "@react-aria/i18n": "^3.8.4", + "@react-stately/data": "^3.11.0", + "@react-aria/i18n": "^3.9.0", "clean-package": "2.2.0", "react": "^18.0.0", "react-dom": "^18.0.0" diff --git a/packages/components/slider/package.json b/packages/components/slider/package.json index eaedb60934..1f814e7c34 100644 --- a/packages/components/slider/package.json +++ b/packages/components/slider/package.json @@ -43,14 +43,13 @@ "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", "@nextui-org/tooltip": "workspace:*", - "@nextui-org/use-aria-press": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/i18n": "^3.8.4", - "@react-aria/interactions": "^3.19.1", - "@react-aria/slider": "^3.7.2", - "@react-aria/utils": "^3.21.1", - "@react-aria/visually-hidden": "^3.8.6", - "@react-stately/slider": "^3.4.4" + "@react-aria/focus": "^3.15.0", + "@react-aria/i18n": "^3.9.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/slider": "^3.7.3", + "@react-aria/utils": "^3.22.0", + "@react-aria/visually-hidden": "^3.8.7", + "@react-stately/slider": "^3.4.5" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/slider/src/use-slider-thumb.ts b/packages/components/slider/src/use-slider-thumb.ts index f1caf7b73f..1390f6d49f 100644 --- a/packages/components/slider/src/use-slider-thumb.ts +++ b/packages/components/slider/src/use-slider-thumb.ts @@ -6,8 +6,7 @@ import {ReactRef, useDOMRef} from "@nextui-org/react-utils"; import {RefObject, useRef} from "react"; import {AriaSliderThumbProps} from "@react-aria/slider"; import {SliderState} from "@react-stately/slider"; -import {useHover} from "@react-aria/interactions"; -import {usePress} from "@nextui-org/use-aria-press"; +import {useHover, usePress} from "@react-aria/interactions"; import {useFocusRing} from "@react-aria/focus"; import {mergeProps} from "@react-aria/utils"; import {dataAttr} from "@nextui-org/shared-utils"; diff --git a/packages/components/snippet/package.json b/packages/components/snippet/package.json index a136af473d..0f49c9dcf2 100644 --- a/packages/components/snippet/package.json +++ b/packages/components/snippet/package.json @@ -47,8 +47,8 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/use-clipboard": "workspace:*", "@nextui-org/tooltip": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/utils": "^3.21.1" + "@react-aria/focus": "^3.15.0", + "@react-aria/utils": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/switch/package.json b/packages/components/switch/package.json index b09582d55b..e5e4947e4e 100644 --- a/packages/components/switch/package.json +++ b/packages/components/switch/package.json @@ -42,14 +42,13 @@ "dependencies": { "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@nextui-org/use-aria-press": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/switch": "^3.5.6", - "@react-aria/utils": "^3.21.1", - "@react-aria/visually-hidden": "^3.8.6", - "@react-stately/toggle": "^3.6.3", - "@react-types/shared": "^3.21.0" + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/switch": "^3.5.7", + "@react-aria/utils": "^3.22.0", + "@react-aria/visually-hidden": "^3.8.7", + "@react-stately/toggle": "^3.7.0", + "@react-types/shared": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/switch/src/use-switch.ts b/packages/components/switch/src/use-switch.ts index 431733ac97..f37831afa1 100644 --- a/packages/components/switch/src/use-switch.ts +++ b/packages/components/switch/src/use-switch.ts @@ -5,8 +5,7 @@ import type {HTMLNextUIProps, PropGetter} from "@nextui-org/system"; import {ReactNode, Ref, useCallback, useId, useRef, useState} from "react"; import {mapPropsVariants} from "@nextui-org/system"; -import {useHover} from "@react-aria/interactions"; -import {usePress} from "@nextui-org/use-aria-press"; +import {useHover, usePress} from "@react-aria/interactions"; import {toggle} from "@nextui-org/theme"; import {chain, mergeProps} from "@react-aria/utils"; import {clsx, dataAttr} from "@nextui-org/shared-utils"; diff --git a/packages/components/table/package.json b/packages/components/table/package.json index 63d4dfb997..cbc76024f1 100644 --- a/packages/components/table/package.json +++ b/packages/components/table/package.json @@ -45,15 +45,15 @@ "@nextui-org/shared-icons": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/spacer": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/table": "^3.13.1", - "@react-aria/utils": "^3.21.1", - "@react-aria/visually-hidden": "^3.8.6", - "@react-stately/table": "^3.11.2", - "@react-stately/virtualizer": "^3.6.4", - "@react-types/grid": "^3.2.2", - "@react-types/table": "^3.9.0" + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/table": "^3.13.2", + "@react-aria/utils": "^3.22.0", + "@react-aria/visually-hidden": "^3.8.7", + "@react-stately/table": "^3.11.3", + "@react-stately/virtualizer": "^3.6.5", + "@react-types/grid": "^3.2.3", + "@react-types/table": "^3.9.1" }, "devDependencies": { "@nextui-org/theme": "workspace:*", @@ -65,7 +65,7 @@ "@nextui-org/tooltip": "workspace:*", "@nextui-org/use-infinite-scroll": "workspace:*", "@nextui-org/user": "workspace:*", - "@react-stately/data": "^3.10.3", + "@react-stately/data": "^3.11.0", "clean-package": "2.2.0", "react": "^18.0.0", "react-dom": "^18.0.0", diff --git a/packages/components/tabs/package.json b/packages/components/tabs/package.json index 4039fe2720..c96624af94 100644 --- a/packages/components/tabs/package.json +++ b/packages/components/tabs/package.json @@ -47,13 +47,13 @@ "@nextui-org/framer-transitions": "workspace:*", "@nextui-org/use-is-mounted": "workspace:*", "@nextui-org/use-update-effect": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-aria/tabs": "^3.8.1", - "@react-aria/utils": "^3.21.1", - "@react-stately/tabs": "^3.6.1", - "@react-types/shared": "^3.21.0", - "@react-types/tabs": "^3.3.3", + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/tabs": "^3.8.2", + "@react-aria/utils": "^3.22.0", + "@react-stately/tabs": "^3.6.2", + "@react-types/shared": "^3.22.0", + "@react-types/tabs": "^3.3.4", "scroll-into-view-if-needed": "3.0.10" }, "devDependencies": { diff --git a/packages/components/tooltip/package.json b/packages/components/tooltip/package.json index 66d079d5f3..0fb1c0595b 100644 --- a/packages/components/tooltip/package.json +++ b/packages/components/tooltip/package.json @@ -45,13 +45,13 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/aria-utils": "workspace:*", "@nextui-org/framer-transitions": "workspace:*", - "@react-aria/overlays": "^3.18.1", - "@react-aria/tooltip": "^3.6.4", - "@react-stately/tooltip": "^3.4.5", - "@react-aria/interactions": "^3.19.1", - "@react-aria/utils": "^3.21.1", - "@react-types/tooltip": "^3.4.5", - "@react-types/overlays": "^3.8.3" + "@react-aria/overlays": "^3.19.0", + "@react-aria/tooltip": "^3.6.5", + "@react-stately/tooltip": "^3.4.6", + "@react-aria/interactions": "^3.20.0", + "@react-aria/utils": "^3.22.0", + "@react-types/tooltip": "^3.4.6", + "@react-types/overlays": "^3.8.4" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/components/user/package.json b/packages/components/user/package.json index 69188348f0..8c819c0a71 100644 --- a/packages/components/user/package.json +++ b/packages/components/user/package.json @@ -43,8 +43,8 @@ "@nextui-org/avatar": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-utils": "workspace:*", - "@react-aria/focus": "^3.14.3", - "@react-aria/utils": "^3.21.1" + "@react-aria/focus": "^3.15.0", + "@react-aria/utils": "^3.22.0" }, "devDependencies": { "@nextui-org/theme": "workspace:*", diff --git a/packages/core/react/package.json b/packages/core/react/package.json index 9bd91e9d07..454a9d5c6b 100644 --- a/packages/core/react/package.json +++ b/packages/core/react/package.json @@ -80,7 +80,7 @@ "@nextui-org/ripple": "workspace:*", "@nextui-org/slider": "workspace:*", "@nextui-org/breadcrumbs": "workspace:*", - "@react-aria/visually-hidden": "^3.8.6" + "@react-aria/visually-hidden": "^3.8.7" }, "peerDependencies": { "react": ">=18", diff --git a/packages/core/system/package.json b/packages/core/system/package.json index 30ebf502d8..c1cbb822c9 100644 --- a/packages/core/system/package.json +++ b/packages/core/system/package.json @@ -53,9 +53,9 @@ }, "dependencies": { "@nextui-org/system-rsc": "workspace:*", - "@react-aria/i18n": "^3.8.4", - "@react-aria/overlays": "^3.18.1", - "@react-aria/utils": "^3.21.1", - "@react-stately/utils": "^3.8.0" + "@react-aria/i18n": "^3.9.0", + "@react-aria/overlays": "^3.19.0", + "@react-aria/utils": "^3.22.0", + "@react-stately/utils": "^3.9.0" } } diff --git a/packages/hooks/use-aria-accordion-item/package.json b/packages/hooks/use-aria-accordion-item/package.json index 6b7fd241de..6754fd9d10 100644 --- a/packages/hooks/use-aria-accordion-item/package.json +++ b/packages/hooks/use-aria-accordion-item/package.json @@ -34,10 +34,10 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/focus": "^3.14.3", - "@react-stately/tree": "^3.7.3", - "@react-aria/button": "^3.8.4", - "@react-types/shared": "^3.21.0" + "@react-aria/focus": "^3.15.0", + "@react-stately/tree": "^3.7.4", + "@react-aria/button": "^3.9.0", + "@react-types/shared": "^3.22.0" }, "peerDependencies": { "react": ">=18" diff --git a/packages/hooks/use-aria-accordion/package.json b/packages/hooks/use-aria-accordion/package.json index 2eb0e78382..ec0ed0474c 100644 --- a/packages/hooks/use-aria-accordion/package.json +++ b/packages/hooks/use-aria-accordion/package.json @@ -34,13 +34,13 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/focus": "^3.14.3", - "@react-stately/tree": "^3.7.3", - "@react-aria/button": "^3.8.4", - "@react-types/shared": "^3.21.0", - "@react-aria/utils": "^3.21.1", - "@react-aria/selection": "^3.17.1", - "@react-types/accordion": "3.0.0-alpha.17" + "@react-aria/focus": "^3.15.0", + "@react-stately/tree": "^3.7.4", + "@react-aria/button": "^3.9.0", + "@react-types/shared": "^3.22.0", + "@react-aria/utils": "^3.22.0", + "@react-aria/selection": "^3.17.2", + "@react-types/accordion": "3.0.0-alpha.18" }, "peerDependencies": { "react": ">=18" diff --git a/packages/hooks/use-aria-button/package.json b/packages/hooks/use-aria-button/package.json index b667a967c5..73c1b514ec 100644 --- a/packages/hooks/use-aria-button/package.json +++ b/packages/hooks/use-aria-button/package.json @@ -37,12 +37,11 @@ "react": ">=18" }, "dependencies": { - "@nextui-org/use-aria-press": "workspace:*", - "@react-aria/utils": "^3.21.1", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1", - "@react-types/button": "^3.9.0", - "@react-types/shared": "^3.21.0" + "@react-aria/utils": "^3.22.0", + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0", + "@react-types/button": "^3.9.1", + "@react-types/shared": "^3.22.0" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/hooks/use-aria-button/src/index.ts b/packages/hooks/use-aria-button/src/index.ts index 6857a6e348..21b9cac6c1 100644 --- a/packages/hooks/use-aria-button/src/index.ts +++ b/packages/hooks/use-aria-button/src/index.ts @@ -13,7 +13,7 @@ import {AriaButtonProps as BaseAriaButtonProps} from "@react-types/button"; import {DOMAttributes} from "@react-types/shared"; import {filterDOMProps, mergeProps} from "@react-aria/utils"; import {useFocusable} from "@react-aria/focus"; -import {usePress} from "@nextui-org/use-aria-press"; +import {usePress} from "@react-aria/interactions"; export type AriaButtonProps = BaseAriaButtonProps & { /** Whether text selection should be enabled on the pressable element. */ diff --git a/packages/hooks/use-aria-link/package.json b/packages/hooks/use-aria-link/package.json index 8830d24859..cff097da4d 100644 --- a/packages/hooks/use-aria-link/package.json +++ b/packages/hooks/use-aria-link/package.json @@ -37,12 +37,11 @@ "react": ">=18" }, "dependencies": { - "@nextui-org/use-aria-press": "workspace:*", - "@react-types/link": "^3.5.1", - "@react-types/shared": "^3.21.0", - "@react-aria/utils": "^3.21.1", - "@react-aria/focus": "^3.14.3", - "@react-aria/interactions": "^3.19.1" + "@react-types/link": "^3.5.2", + "@react-types/shared": "^3.22.0", + "@react-aria/utils": "^3.22.0", + "@react-aria/focus": "^3.15.0", + "@react-aria/interactions": "^3.20.0" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/hooks/use-aria-link/src/index.ts b/packages/hooks/use-aria-link/src/index.ts index 098eedd4d4..97cbd0b644 100644 --- a/packages/hooks/use-aria-link/src/index.ts +++ b/packages/hooks/use-aria-link/src/index.ts @@ -3,7 +3,7 @@ import {DOMAttributes, FocusableElement} from "@react-types/shared"; import {filterDOMProps, mergeProps, useRouter, shouldClientNavigate} from "@react-aria/utils"; import {RefObject} from "react"; import {useFocusable} from "@react-aria/focus"; -import {usePress} from "@nextui-org/use-aria-press"; +import {usePress} from "@react-aria/interactions"; export interface AriaLinkOptions extends AriaLinkProps { /** Indicates the element that represents the current item within a container or set of related elements. */ diff --git a/packages/hooks/use-aria-modal-overlay/package.json b/packages/hooks/use-aria-modal-overlay/package.json index df1ed033af..e6a2979135 100644 --- a/packages/hooks/use-aria-modal-overlay/package.json +++ b/packages/hooks/use-aria-modal-overlay/package.json @@ -34,10 +34,10 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/overlays": "^3.18.1", - "@react-stately/overlays": "^3.6.3", - "@react-types/shared": "^3.21.0", - "@react-aria/utils": "^3.21.1" + "@react-aria/overlays": "^3.19.0", + "@react-stately/overlays": "^3.6.4", + "@react-types/shared": "^3.22.0", + "@react-aria/utils": "^3.22.0" }, "peerDependencies": { "react": ">=18", diff --git a/packages/hooks/use-aria-multiselect/package.json b/packages/hooks/use-aria-multiselect/package.json index 174ac95df9..b33edc5a1a 100644 --- a/packages/hooks/use-aria-multiselect/package.json +++ b/packages/hooks/use-aria-multiselect/package.json @@ -34,19 +34,19 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/i18n": "^3.8.4", - "@react-aria/interactions": "^3.19.1", - "@react-aria/label": "^3.7.2", - "@react-aria/listbox": "^3.11.1", - "@react-aria/menu": "^3.11.1", - "@react-aria/selection": "^3.17.1", - "@react-stately/list": "^3.10.0", - "@react-stately/menu": "^3.5.6", - "@react-types/button": "^3.9.0", - "@react-types/overlays": "^3.8.3", - "@react-types/select": "^3.8.4", - "@react-types/shared": "^3.21.0", - "@react-aria/utils": "^3.21.1" + "@react-aria/i18n": "^3.9.0", + "@react-aria/interactions": "^3.20.0", + "@react-aria/label": "^3.7.3", + "@react-aria/listbox": "^3.11.2", + "@react-aria/menu": "^3.11.2", + "@react-aria/selection": "^3.17.2", + "@react-stately/list": "^3.10.1", + "@react-stately/menu": "^3.5.7", + "@react-types/button": "^3.9.1", + "@react-types/overlays": "^3.8.4", + "@react-types/select": "^3.9.0", + "@react-types/shared": "^3.22.0", + "@react-aria/utils": "^3.22.0" }, "peerDependencies": { "react": ">=18", diff --git a/packages/hooks/use-aria-multiselect/src/use-multiselect-state.ts b/packages/hooks/use-aria-multiselect/src/use-multiselect-state.ts index 9d86fc4d6b..cffe62c2f4 100644 --- a/packages/hooks/use-aria-multiselect/src/use-multiselect-state.ts +++ b/packages/hooks/use-aria-multiselect/src/use-multiselect-state.ts @@ -23,7 +23,7 @@ export interface MultiSelectProps Omit, DOMProps, HelpTextProps, - Validation, + Validation, LabelableProps, TextInputBase, Omit, diff --git a/packages/hooks/use-aria-press/CHANGELOG.md b/packages/hooks/use-aria-press/CHANGELOG.md deleted file mode 100644 index c93e24f95c..0000000000 --- a/packages/hooks/use-aria-press/CHANGELOG.md +++ /dev/null @@ -1,7 +0,0 @@ -# @nextui-org/use-aria-press - -## 2.0.1 - -### Patch Changes - -- [`25e86fb41`](https://github.com/nextui-org/nextui/commit/25e86fb41770d3cdae6dfdb79306b78fa02d8187) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - New version v2.2.0 diff --git a/packages/hooks/use-aria-press/README.md b/packages/hooks/use-aria-press/README.md deleted file mode 100644 index e5923fcdab..0000000000 --- a/packages/hooks/use-aria-press/README.md +++ /dev/null @@ -1,24 +0,0 @@ -# @nextui-org/use-aria-press - -A Quick description of the component - -> This is an internal utility, not intended for public usage. - -## Installation - -```sh -yarn add @nextui-org/use-aria-press -# or -npm i @nextui-org/use-aria-press -``` - -## Contribution - -Yes please! See the -[contributing guidelines](https://github.com/nextui-org/nextui/blob/master/CONTRIBUTING.md) -for details. - -## Licence - -This project is licensed under the terms of the -[MIT license](https://github.com/nextui-org/nextui/blob/master/LICENSE). diff --git a/packages/hooks/use-aria-press/package.json b/packages/hooks/use-aria-press/package.json deleted file mode 100644 index 022784f857..0000000000 --- a/packages/hooks/use-aria-press/package.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "name": "@nextui-org/use-aria-press", - "version": "2.0.1", - "description": "Handles press interactions across mouse, touch, keyboard, and screen readers.", - "keywords": [ - "use-aria-press" - ], - "author": "Junior Garcia ", - "homepage": "https://nextui.org", - "license": "MIT", - "main": "src/index.ts", - "sideEffects": false, - "files": [ - "dist" - ], - "publishConfig": { - "access": "public" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/nextui-org/nextui.git", - "directory": "packages/hooks/use-aria-press" - }, - "bugs": { - "url": "https://github.com/nextui-org/nextui/issues" - }, - "scripts": { - "build": "tsup src --dts", - "build:fast": "tsup src", - "dev": "yarn build:fast -- --watch", - "clean": "rimraf dist .turbo", - "typecheck": "tsc --noEmit", - "prepack": "clean-package", - "postpack": "clean-package restore" - }, - "dependencies": { - "@react-aria/utils": "^3.21.1", - "@react-aria/ssr": "^3.8.0", - "@react-types/shared": "^3.21.0", - "@react-aria/interactions": "^3.19.1" - }, - "peerDependencies": { - "react": ">=18" - }, - "devDependencies": { - "clean-package": "2.2.0", - "react": "^18.0.0" - }, - "clean-package": "../../../clean-package.config.json", - "tsup": { - "clean": true, - "target": "es2019", - "format": [ - "cjs", - "esm" - ] - } -} diff --git a/packages/hooks/use-aria-press/src/context.ts b/packages/hooks/use-aria-press/src/context.ts deleted file mode 100644 index a5085bb1db..0000000000 --- a/packages/hooks/use-aria-press/src/context.ts +++ /dev/null @@ -1,13 +0,0 @@ -import {FocusableElement} from "@react-types/shared"; -import React, {MutableRefObject} from "react"; - -import {PressProps} from "./types"; - -interface IPressResponderContext extends PressProps { - register(): void; - ref?: MutableRefObject | undefined; -} - -// @ts-ignore -export const PressResponderContext = React.createContext(null); -PressResponderContext.displayName = "PressResponderContext"; diff --git a/packages/hooks/use-aria-press/src/dom-helpers.ts b/packages/hooks/use-aria-press/src/dom-helpers.ts deleted file mode 100644 index a628562e04..0000000000 --- a/packages/hooks/use-aria-press/src/dom-helpers.ts +++ /dev/null @@ -1,8 +0,0 @@ -export const getOwnerDocument = (el: Element | null | undefined): Document => { - return el?.ownerDocument ?? document; -}; - -export const getOwnerWindow = (el: Element | null | undefined): Window & typeof global => { - // @ts-ignore - return el?.ownerDocument?.defaultView ?? window; -}; diff --git a/packages/hooks/use-aria-press/src/events.ts b/packages/hooks/use-aria-press/src/events.ts deleted file mode 100644 index 460ae2d012..0000000000 --- a/packages/hooks/use-aria-press/src/events.ts +++ /dev/null @@ -1,32 +0,0 @@ -import {PressEvent as IPressEvent, PointerType} from "@react-types/shared"; - -import {EventBase} from "./types"; - -export class PressEvent implements IPressEvent { - type: IPressEvent["type"]; - pointerType: PointerType; - target: Element; - shiftKey: boolean; - ctrlKey: boolean; - metaKey: boolean; - altKey: boolean; - #shouldStopPropagation = true; - - constructor(type: IPressEvent["type"], pointerType: PointerType, originalEvent: EventBase) { - this.type = type; - this.pointerType = pointerType; - this.target = originalEvent.currentTarget as Element; - this.shiftKey = originalEvent.shiftKey; - this.metaKey = originalEvent.metaKey; - this.ctrlKey = originalEvent.ctrlKey; - this.altKey = originalEvent.altKey; - } - - continuePropagation() { - this.#shouldStopPropagation = false; - } - - get shouldStopPropagation() { - return this.#shouldStopPropagation; - } -} diff --git a/packages/hooks/use-aria-press/src/index.ts b/packages/hooks/use-aria-press/src/index.ts deleted file mode 100644 index 4fccd31f14..0000000000 --- a/packages/hooks/use-aria-press/src/index.ts +++ /dev/null @@ -1,907 +0,0 @@ -/** - * TODO: Remove this package once the react-aria team publishes a new version - * with the fix https://github.com/adobe/react-spectrum/pull/5291 - */ -// Portions of the code in this file are based on code from react. -// Original licensing for the following can be found in the -// NOTICE file in the root directory of this source tree. -// See https://github.com/facebook/react/tree/cc7c1aece46a6b69b41958d731e0fd27c94bfc6c/packages/react-interactions - -import {DOMAttributes, FocusableElement, PointerType} from "@react-types/shared"; -import { - focusWithoutScrolling, - isMac, - isVirtualClick, - isVirtualPointerEvent, - mergeProps, - openLink, - useEffectEvent, - useGlobalListeners, - useSyncRef, -} from "@react-aria/utils"; -import {RefObject, useContext, useEffect, useMemo, useRef, useState} from "react"; - -import {getOwnerDocument, getOwnerWindow} from "./dom-helpers"; -import {PressHookProps, PressResult, PressState, EventBase} from "./types"; -import {disableTextSelection, restoreTextSelection} from "./text-selection"; -import {PressEvent} from "./events"; -import {PressResponderContext} from "./context"; - -function usePressResponderContext(props: PressHookProps): PressHookProps { - // Consume context from and merge with props. - let context = useContext(PressResponderContext); - - if (context) { - let {register, ...contextProps} = context; - - props = mergeProps(contextProps, props) as PressHookProps; - register(); - } - - useSyncRef(context, props.ref as RefObject); - - return props; -} - -const LINK_CLICKED = Symbol("linkClicked"); - -/** - * Handles press interactions across mouse, touch, keyboard, and screen readers. - * It normalizes behavior across browsers and platforms, and handles many nuances - * of dealing with pointer and keyboard events. - */ -export function usePress(props: PressHookProps): PressResult { - let { - onPress, - onPressChange, - onPressStart, - onPressEnd, - onPressUp, - isDisabled, - isPressed: isPressedProp, - preventFocusOnPress, - shouldCancelOnPointerExit, - allowTextSelectionOnPress, - // eslint-disable-next-line @typescript-eslint/no-unused-vars - ref: _, // Removing `ref` from `domProps` because TypeScript is dumb - ...domProps - } = usePressResponderContext(props); - - let [isPressed, setPressed] = useState(false); - let ref = useRef({ - isPressed: false, - ignoreEmulatedMouseEvents: false, - ignoreClickAfterPress: false, - didFirePressStart: false, - isTriggeringEvent: false, - activePointerId: null, - target: null, - isOverTarget: false, - pointerType: null, - }); - - let {addGlobalListener, removeAllGlobalListeners} = useGlobalListeners(); - - let triggerPressStart = useEffectEvent((originalEvent: EventBase, pointerType: PointerType) => { - let state = ref.current; - - if (isDisabled || state.didFirePressStart) { - return; - } - - let shouldStopPropagation = true; - - state.isTriggeringEvent = true; - if (onPressStart) { - let event = new PressEvent("pressstart", pointerType, originalEvent); - - onPressStart(event); - shouldStopPropagation = event.shouldStopPropagation; - } - - if (onPressChange) { - onPressChange(true); - } - - state.isTriggeringEvent = false; - state.didFirePressStart = true; - setPressed(true); - - return shouldStopPropagation; - }); - - let triggerPressEnd = useEffectEvent( - (originalEvent: EventBase, pointerType: PointerType, wasPressed = true) => { - let state = ref.current; - - if (!state.didFirePressStart) { - return; - } - - state.ignoreClickAfterPress = true; - state.didFirePressStart = false; - state.isTriggeringEvent = true; - - let shouldStopPropagation = true; - - if (onPressEnd) { - let event = new PressEvent("pressend", pointerType, originalEvent); - - onPressEnd(event); - shouldStopPropagation = event.shouldStopPropagation; - } - - if (onPressChange) { - onPressChange(false); - } - - setPressed(false); - - if (onPress && wasPressed && !isDisabled) { - let event = new PressEvent("press", pointerType, originalEvent); - - onPress(event); - shouldStopPropagation &&= event.shouldStopPropagation; - } - - state.isTriggeringEvent = false; - - return shouldStopPropagation; - }, - ); - - let triggerPressUp = useEffectEvent((originalEvent: EventBase, pointerType: PointerType) => { - let state = ref.current; - - if (isDisabled) { - return; - } - - if (onPressUp) { - state.isTriggeringEvent = true; - let event = new PressEvent("pressup", pointerType, originalEvent); - - onPressUp(event); - state.isTriggeringEvent = false; - - return event.shouldStopPropagation; - } - - return true; - }); - - let cancel = useEffectEvent((e: EventBase) => { - let state = ref.current; - - if (state.isPressed) { - if (state.isOverTarget && state.target) { - triggerPressEnd(createEvent(state.target, e), state.pointerType, false); - } - state.isPressed = false; - state.isOverTarget = false; - state.activePointerId = null; - state.pointerType = null; - removeAllGlobalListeners(); - if (!allowTextSelectionOnPress && state.target) { - restoreTextSelection(state.target); - } - } - }); - - let cancelOnPointerExit = useEffectEvent((e: EventBase) => { - if (shouldCancelOnPointerExit) { - cancel(e); - } - }); - - let pressProps = useMemo(() => { - let state = ref.current; - let pressProps: DOMAttributes = { - onKeyDown(e) { - if ( - isValidKeyboardEvent(e.nativeEvent, e.currentTarget) && - e.currentTarget.contains(e.target as Element) - ) { - if (shouldPreventDefaultKeyboard(e.target as Element, e.key)) { - e.preventDefault(); - } - - // If the event is repeating, it may have started on a different element - // after which focus moved to the current element. Ignore these events and - // only handle the first key down event. - let shouldStopPropagation = true; - - if (!state.isPressed && !e.repeat) { - state.target = e.currentTarget; - state.isPressed = true; - shouldStopPropagation = triggerPressStart(e, "keyboard"); - - // Focus may move before the key up event, so register the event on the document - // instead of the same element where the key down event occurred. - addGlobalListener(getOwnerDocument(e.currentTarget), "keyup", onKeyUp, false); - } - - if (shouldStopPropagation) { - e.stopPropagation(); - } - - // Keep track of the keydown events that occur while the Meta (e.g. Command) key is held. - // macOS has a bug where keyup events are not fired while the Meta key is down. - // When the Meta key itself is released we will get an event for that, and we'll act as if - // all of these other keys were released as well. - // https://bugs.chromium.org/p/chromium/issues/detail?id=1393524 - // https://bugs.webkit.org/show_bug.cgi?id=55291 - // https://bugzilla.mozilla.org/show_bug.cgi?id=1299553 - if (e.metaKey && isMac()) { - state.metaKeyEvents?.set(e.key, e.nativeEvent); - } - } else if (e.key === "Meta") { - state.metaKeyEvents = new Map(); - } - }, - onKeyUp(e) { - if ( - state.target && - isValidKeyboardEvent(e.nativeEvent, e.currentTarget) && - !e.repeat && - e.currentTarget.contains(e.target as Element) - ) { - triggerPressUp(createEvent(state.target, e), "keyboard"); - } - }, - onClick(e) { - if (e && !e.currentTarget.contains(e.target as Element)) { - return; - } - // @ts-ignore - if (e && e.button === 0 && !state.isTriggeringEvent && !openLink.isOpening) { - let shouldStopPropagation = true; - - if (isDisabled) { - e.preventDefault(); - } - - // If triggered from a screen reader or by using element.click(), - // trigger as if it were a keyboard click. - if ( - !state.ignoreClickAfterPress && - !state.ignoreEmulatedMouseEvents && - !state.isPressed && - (state.pointerType === "virtual" || isVirtualClick(e.nativeEvent)) - ) { - // Ensure the element receives focus (VoiceOver on iOS does not do this) - if (!isDisabled && !preventFocusOnPress) { - focusWithoutScrolling(e.currentTarget); - } - - let stopPressStart = triggerPressStart(e, "virtual"); - let stopPressUp = triggerPressUp(e, "virtual"); - let stopPressEnd = triggerPressEnd(e, "virtual"); - - shouldStopPropagation = stopPressStart && stopPressUp && stopPressEnd; - } - - state.ignoreEmulatedMouseEvents = false; - state.ignoreClickAfterPress = false; - if (shouldStopPropagation) { - e.stopPropagation(); - } - } - }, - }; - - let onKeyUp = (e: KeyboardEvent) => { - if (state.isPressed && state.target && isValidKeyboardEvent(e, state.target)) { - if (shouldPreventDefaultKeyboard(e.target as Element, e.key)) { - e.preventDefault(); - } - - let target = e.target as Element; - let shouldStopPropagation = triggerPressEnd( - createEvent(state.target, e as EventBase), - "keyboard", - state.target.contains(target), - ); - - removeAllGlobalListeners(); - - if (shouldStopPropagation) { - e.stopPropagation(); - } - - // If a link was triggered with a key other than Enter, open the URL ourselves. - // This means the link has a role override, and the default browser behavior - // only applies when using the Enter key. - if ( - e.key !== "Enter" && - isHTMLAnchorLink(state.target) && - state.target.contains(target) && - // @ts-ignore - !e[LINK_CLICKED] - ) { - // Store a hidden property on the event so we only trigger link click once, - // even if there are multiple usePress instances attached to the element. - // @ts-ignore - e[LINK_CLICKED] = true; - openLink(state.target, e, false); - } - - state.isPressed = false; - state.metaKeyEvents?.delete(e.key); - } else if (e.key === "Meta" && state.metaKeyEvents?.size) { - // If we recorded keydown events that occurred while the Meta key was pressed, - // and those haven't received keyup events already, fire keyup events ourselves. - // See comment above for more info about the macOS bug causing this. - let events = state.metaKeyEvents; - - state.metaKeyEvents = null; - for (let event of events.values()) { - state.target && state.target.dispatchEvent(new KeyboardEvent("keyup", event)); - } - } - }; - - if (typeof PointerEvent !== "undefined") { - pressProps.onPointerDown = (e) => { - // Only handle left clicks, and ignore events that bubbled through portals. - if (e.button !== 0 || !e.currentTarget.contains(e.target as Element)) { - return; - } - - // iOS safari fires pointer events from VoiceOver with incorrect coordinates/target. - // Ignore and let the onClick handler take care of it instead. - // https://bugs.webkit.org/show_bug.cgi?id=222627 - // https://bugs.webkit.org/show_bug.cgi?id=223202 - if (isVirtualPointerEvent(e.nativeEvent)) { - state.pointerType = "virtual"; - - return; - } - - // Due to browser inconsistencies, especially on mobile browsers, we prevent - // default on pointer down and handle focusing the pressable element ourselves. - if (shouldPreventDefault(e.currentTarget as Element)) { - e.preventDefault(); - } - - state.pointerType = e.pointerType; - - let shouldStopPropagation = true; - - if (!state.isPressed) { - state.isPressed = true; - state.isOverTarget = true; - state.activePointerId = e.pointerId; - state.target = e.currentTarget; - - if (!isDisabled && !preventFocusOnPress) { - focusWithoutScrolling(e.currentTarget); - } - - if (!allowTextSelectionOnPress) { - disableTextSelection(state.target); - } - - shouldStopPropagation = triggerPressStart(e, state.pointerType); - - addGlobalListener(getOwnerDocument(e.currentTarget), "pointermove", onPointerMove, false); - addGlobalListener(getOwnerDocument(e.currentTarget), "pointerup", onPointerUp, false); - addGlobalListener( - getOwnerDocument(e.currentTarget), - "pointercancel", - onPointerCancel, - false, - ); - } - - if (shouldStopPropagation) { - e.stopPropagation(); - } - }; - - pressProps.onMouseDown = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - if (e.button === 0) { - // Chrome and Firefox on touch Windows devices require mouse down events - // to be canceled in addition to pointer events, or an extra asynchronous - // focus event will be fired. - if (shouldPreventDefault(e.currentTarget as Element)) { - e.preventDefault(); - } - - e.stopPropagation(); - } - }; - - pressProps.onPointerUp = (e) => { - // iOS fires pointerup with zero width and height, so check the pointerType recorded during pointerdown. - if (!e.currentTarget.contains(e.target as Element) || state.pointerType === "virtual") { - return; - } - - // Only handle left clicks - // Safari on iOS sometimes fires pointerup events, even - // when the touch isn't over the target, so double check. - if (e.button === 0 && isOverTarget(e, e.currentTarget)) { - triggerPressUp(e, state.pointerType || e.pointerType); - } - }; - - // Safari on iOS < 13.2 does not implement pointerenter/pointerleave events correctly. - // Use pointer move events instead to implement our own hit testing. - // See https://bugs.webkit.org/show_bug.cgi?id=199803 - let onPointerMove = (e: PointerEvent) => { - if (e.pointerId !== state.activePointerId || !state.target) { - return; - } - - if (isOverTarget(e, state.target)) { - if (!state.isOverTarget) { - state.isOverTarget = true; - triggerPressStart(createEvent(state.target, e as EventBase), state.pointerType); - } - } else if (state.isOverTarget) { - state.isOverTarget = false; - triggerPressEnd(createEvent(state.target, e as EventBase), state.pointerType, false); - cancelOnPointerExit(e); - } - }; - - let onPointerUp = (e: PointerEvent) => { - if ( - e.pointerId === state.activePointerId && - state.isPressed && - e.button === 0 && - state.target - ) { - if (isOverTarget(e, state.target)) { - triggerPressEnd(createEvent(state.target, e as EventBase), state.pointerType); - } else if (state.isOverTarget) { - triggerPressEnd(createEvent(state.target, e as EventBase), state.pointerType); - } - - state.isPressed = false; - state.isOverTarget = false; - state.activePointerId = null; - state.pointerType = null; - removeAllGlobalListeners(); - if (!allowTextSelectionOnPress) { - restoreTextSelection(state.target); - } - } - }; - - let onPointerCancel = (e: PointerEvent) => { - cancel(e); - }; - - pressProps.onDragStart = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - // Safari does not call onPointerCancel when a drag starts, whereas Chrome and Firefox do. - cancel(e); - }; - } else { - pressProps.onMouseDown = (e) => { - // Only handle left clicks - if (e.button !== 0 || !e.currentTarget.contains(e.target as Element)) { - return; - } - - // Due to browser inconsistencies, especially on mobile browsers, we prevent - // default on mouse down and handle focusing the pressable element ourselves. - if (shouldPreventDefault(e.currentTarget)) { - e.preventDefault(); - } - - if (state.ignoreEmulatedMouseEvents) { - e.stopPropagation(); - - return; - } - - state.isPressed = true; - state.isOverTarget = true; - state.target = e.currentTarget; - state.pointerType = isVirtualClick(e.nativeEvent) ? "virtual" : "mouse"; - - if (!isDisabled && !preventFocusOnPress) { - focusWithoutScrolling(e.currentTarget); - } - - let shouldStopPropagation = triggerPressStart(e, state.pointerType); - - if (shouldStopPropagation) { - e.stopPropagation(); - } - - addGlobalListener(getOwnerDocument(e.currentTarget), "mouseup", onMouseUp, false); - }; - - pressProps.onMouseEnter = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - let shouldStopPropagation = true; - - if (state.isPressed && !state.ignoreEmulatedMouseEvents) { - state.isOverTarget = true; - shouldStopPropagation = triggerPressStart(e, state.pointerType); - } - - if (shouldStopPropagation) { - e.stopPropagation(); - } - }; - - pressProps.onMouseLeave = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - let shouldStopPropagation = true; - - if (state.isPressed && !state.ignoreEmulatedMouseEvents) { - state.isOverTarget = false; - shouldStopPropagation = triggerPressEnd(e, state.pointerType, false); - cancelOnPointerExit(e); - } - - if (shouldStopPropagation) { - e.stopPropagation(); - } - }; - - pressProps.onMouseUp = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - if (!state.ignoreEmulatedMouseEvents && e.button === 0) { - triggerPressUp(e, state.pointerType || "mouse"); - } - }; - - let onMouseUp = (e: MouseEvent) => { - // Only handle left clicks - if (e.button !== 0) { - return; - } - - state.isPressed = false; - removeAllGlobalListeners(); - - if (state.ignoreEmulatedMouseEvents) { - state.ignoreEmulatedMouseEvents = false; - - return; - } - - if (!state.target) { - return; - } - - if (isOverTarget(e, state.target)) { - triggerPressEnd(createEvent(state.target, e as EventBase), state.pointerType); - } else if (state.isOverTarget) { - triggerPressEnd(createEvent(state.target, e as EventBase), state.pointerType, false); - } - - state.isOverTarget = false; - }; - - pressProps.onTouchStart = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - let touch = getTouchFromEvent(e.nativeEvent); - - if (!touch) { - return; - } - state.activePointerId = touch.identifier; - state.ignoreEmulatedMouseEvents = true; - state.isOverTarget = true; - state.isPressed = true; - state.target = e.currentTarget; - state.pointerType = "touch"; - - // Due to browser inconsistencies, especially on mobile browsers, we prevent default - // on the emulated mouse event and handle focusing the pressable element ourselves. - if (!isDisabled && !preventFocusOnPress) { - focusWithoutScrolling(e.currentTarget); - } - - if (!allowTextSelectionOnPress) { - disableTextSelection(state.target); - } - - let shouldStopPropagation = triggerPressStart(e, state.pointerType); - - if (shouldStopPropagation) { - e.stopPropagation(); - } - - addGlobalListener(getOwnerWindow(e.currentTarget), "scroll", onScroll, true); - }; - - pressProps.onTouchMove = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - if (!state.isPressed) { - e.stopPropagation(); - - return; - } - - let touch = getTouchById(e.nativeEvent, state.activePointerId); - let shouldStopPropagation = true; - - if (touch && isOverTarget(touch, e.currentTarget)) { - if (!state.isOverTarget) { - state.isOverTarget = true; - shouldStopPropagation = triggerPressStart(e, state.pointerType); - } - } else if (state.isOverTarget) { - state.isOverTarget = false; - shouldStopPropagation = triggerPressEnd(e, state.pointerType, false); - cancelOnPointerExit(e); - } - - if (shouldStopPropagation) { - e.stopPropagation(); - } - }; - - pressProps.onTouchEnd = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - if (!state.isPressed) { - e.stopPropagation(); - - return; - } - - let touch = getTouchById(e.nativeEvent, state.activePointerId); - let shouldStopPropagation = true; - - if (touch && isOverTarget(touch, e.currentTarget)) { - triggerPressUp(e, state.pointerType); - shouldStopPropagation = triggerPressEnd(e, state.pointerType); - } else if (state.isOverTarget) { - shouldStopPropagation = triggerPressEnd(e, state.pointerType, false); - } - - if (shouldStopPropagation) { - e.stopPropagation(); - } - - state.isPressed = false; - state.activePointerId = null; - state.isOverTarget = false; - state.ignoreEmulatedMouseEvents = true; - if (!allowTextSelectionOnPress && state.target) { - restoreTextSelection(state.target); - } - removeAllGlobalListeners(); - }; - - pressProps.onTouchCancel = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - e.stopPropagation(); - if (state.isPressed) { - cancel(e); - } - }; - - let onScroll = (e: Event) => { - if (state.isPressed && (e.target as Element).contains(state.target)) { - cancel({ - currentTarget: state.target, - shiftKey: false, - ctrlKey: false, - metaKey: false, - altKey: false, - }); - } - }; - - pressProps.onDragStart = (e) => { - if (!e.currentTarget.contains(e.target as Element)) { - return; - } - - cancel(e); - }; - } - - return pressProps; - }, [ - addGlobalListener, - isDisabled, - preventFocusOnPress, - removeAllGlobalListeners, - allowTextSelectionOnPress, - cancel, - cancelOnPointerExit, - triggerPressEnd, - triggerPressStart, - triggerPressUp, - ]); - - // Remove user-select: none in case component unmounts immediately after pressStart - // eslint-disable-next-line arrow-body-style - useEffect(() => { - return () => { - if (!allowTextSelectionOnPress && ref.current.target) { - // eslint-disable-next-line react-hooks/exhaustive-deps - restoreTextSelection(ref.current.target); - } - }; - }, [allowTextSelectionOnPress]); - - return { - isPressed: isPressedProp || isPressed, - pressProps: mergeProps(domProps, pressProps), - }; -} - -function isHTMLAnchorLink(target: Element): target is HTMLAnchorElement { - return target.tagName === "A" && target.hasAttribute("href"); -} - -function isValidKeyboardEvent(event: KeyboardEvent, currentTarget: Element): boolean { - const {key, code} = event; - const element = currentTarget as HTMLElement; - const role = element.getAttribute("role"); - - // Accessibility for keyboards. Space and Enter only. - // "Spacebar" is for IE 11 - return ( - (key === "Enter" || key === " " || key === "Spacebar" || code === "Space") && - !( - (element instanceof getOwnerWindow(element).HTMLInputElement && - !isValidInputKey(element as HTMLInputElement, key)) || - element instanceof getOwnerWindow(element).HTMLTextAreaElement || - element.isContentEditable - ) && - // Links should only trigger with Enter key - !((role === "link" || (!role && isHTMLAnchorLink(element))) && key !== "Enter") - ); -} - -function getTouchFromEvent(event: TouchEvent): Touch | null { - const {targetTouches} = event; - - if (targetTouches.length > 0) { - return targetTouches[0]; - } - - return null; -} - -function getTouchById(event: TouchEvent, pointerId: null | number): null | Touch { - const changedTouches = event.changedTouches; - - for (let i = 0; i < changedTouches.length; i++) { - const touch = changedTouches[i]; - - if (touch.identifier === pointerId) { - return touch; - } - } - - return null; -} - -function createEvent(target: FocusableElement, e: EventBase): EventBase { - return { - currentTarget: target, - shiftKey: e.shiftKey, - ctrlKey: e.ctrlKey, - metaKey: e.metaKey, - altKey: e.altKey, - }; -} - -interface Rect { - top: number; - right: number; - bottom: number; - left: number; -} - -interface EventPoint { - clientX: number; - clientY: number; - width?: number; - height?: number; - radiusX?: number; - radiusY?: number; -} - -function getPointClientRect(point: EventPoint): Rect { - let offsetX = !!point.width ? point.width / 2 : point.radiusX || 0; - let offsetY = !!point.height ? point.height / 2 : point.radiusY || 0; - - return { - top: point.clientY - offsetY, - right: point.clientX + offsetX, - bottom: point.clientY + offsetY, - left: point.clientX - offsetX, - }; -} - -function areRectanglesOverlapping(a: Rect, b: Rect) { - // check if they cannot overlap on x axis - if (a.left > b.right || b.left > a.right) { - return false; - } - // check if they cannot overlap on y axis - if (a.top > b.bottom || b.top > a.bottom) { - return false; - } - - return true; -} - -function isOverTarget(point: EventPoint, target: Element) { - let rect = target.getBoundingClientRect(); - let pointRect = getPointClientRect(point); - - return areRectanglesOverlapping(rect, pointRect); -} - -function shouldPreventDefault(target: Element) { - // We cannot prevent default if the target is a draggable element. - return !(target instanceof HTMLElement) || !target.hasAttribute("draggable"); -} - -function shouldPreventDefaultKeyboard(target: Element, key: string) { - if (target instanceof HTMLInputElement) { - return !isValidInputKey(target, key); - } - - if (target instanceof HTMLButtonElement) { - return target.type !== "submit" && target.type !== "reset"; - } - - if (isHTMLAnchorLink(target)) { - return false; - } - - return true; -} - -const nonTextInputTypes = new Set([ - "checkbox", - "radio", - "range", - "color", - "file", - "image", - "button", - "submit", - "reset", -]); - -function isValidInputKey(target: HTMLInputElement, key: string) { - // Only space should toggle checkboxes and radios, not enter. - return target.type === "checkbox" || target.type === "radio" - ? key === " " - : nonTextInputTypes.has(target.type); -} diff --git a/packages/hooks/use-aria-press/src/text-selection.ts b/packages/hooks/use-aria-press/src/text-selection.ts deleted file mode 100644 index eda019fa5f..0000000000 --- a/packages/hooks/use-aria-press/src/text-selection.ts +++ /dev/null @@ -1,89 +0,0 @@ -import {isIOS, runAfterTransition} from "@react-aria/utils"; - -import {getOwnerDocument} from "./dom-helpers"; - -// Safari on iOS starts selecting text on long press. The only way to avoid this, it seems, -// is to add user-select: none to the entire page. Adding it to the pressable element prevents -// that element from being selected, but nearby elements may still receive selection. We add -// user-select: none on touch start, and remove it again on touch end to prevent this. -// This must be implemented using global state to avoid race conditions between multiple elements. - -// There are three possible states due to the delay before removing user-select: none after -// pointer up. The 'default' state always transitions to the 'disabled' state, which transitions -// to 'restoring'. The 'restoring' state can either transition back to 'disabled' or 'default'. - -// For non-iOS devices, we apply user-select: none to the pressed element instead to avoid possible -// performance issues that arise from applying and removing user-select: none to the entire page -// (see https://github.com/adobe/react-spectrum/issues/1609). -type State = "default" | "disabled" | "restoring"; - -// Note that state only matters here for iOS. Non-iOS gets user-select: none applied to the target element -// rather than at the document level so we just need to apply/remove user-select: none for each pressed element individually -let state: State = "default"; -let savedUserSelect = ""; -let modifiedElementMap = new WeakMap(); - -export function disableTextSelection(target?: Element) { - if (isIOS()) { - if (state === "default") { - const documentObject = getOwnerDocument(target); - - savedUserSelect = documentObject.documentElement.style.webkitUserSelect; - documentObject.documentElement.style.webkitUserSelect = "none"; - } - - state = "disabled"; - } else if (target instanceof HTMLElement || target instanceof SVGElement) { - // If not iOS, store the target's original user-select and change to user-select: none - // Ignore state since it doesn't apply for non iOS - modifiedElementMap.set(target, target.style.userSelect); - target.style.userSelect = "none"; - } -} - -export function restoreTextSelection(target?: Element) { - if (isIOS()) { - // If the state is already default, there's nothing to do. - // If it is restoring, then there's no need to queue a second restore. - if (state !== "disabled") { - return; - } - - state = "restoring"; - - // There appears to be a delay on iOS where selection still might occur - // after pointer up, so wait a bit before removing user-select. - setTimeout(() => { - // Wait for any CSS transitions to complete so we don't recompute style - // for the whole page in the middle of the animation and cause jank. - runAfterTransition(() => { - // Avoid race conditions - if (state === "restoring") { - const documentObject = getOwnerDocument(target); - - if (documentObject.documentElement.style.webkitUserSelect === "none") { - documentObject.documentElement.style.webkitUserSelect = savedUserSelect || ""; - } - - savedUserSelect = ""; - state = "default"; - } - }); - }, 300); - } else if (target instanceof HTMLElement || target instanceof SVGElement) { - // If not iOS, restore the target's original user-select if any - // Ignore state since it doesn't apply for non iOS - if (target && modifiedElementMap.has(target)) { - let targetOldUserSelect = modifiedElementMap.get(target); - - if (target.style.userSelect === "none" && targetOldUserSelect) { - target.style.userSelect = targetOldUserSelect; - } - - if (target.getAttribute("style") === "") { - target.removeAttribute("style"); - } - modifiedElementMap.delete(target); - } - } -} diff --git a/packages/hooks/use-aria-press/src/types.ts b/packages/hooks/use-aria-press/src/types.ts deleted file mode 100644 index 5c36f7757f..0000000000 --- a/packages/hooks/use-aria-press/src/types.ts +++ /dev/null @@ -1,54 +0,0 @@ -import {DOMAttributes, FocusableElement, PointerType, PressEvents} from "@react-types/shared"; -import {RefObject} from "react"; - -export interface PressProps extends PressEvents { - /** Whether the target is in a controlled press state (e.g. an overlay it triggers is open). */ - isPressed?: boolean; - /** Whether the press events should be disabled. */ - isDisabled?: boolean; - /** Whether the target should not receive focus on press. */ - preventFocusOnPress?: boolean; - /** - * Whether press events should be canceled when the pointer leaves the target while pressed. - * By default, this is `false`, which means if the pointer returns back over the target while - * still pressed, onPressStart will be fired again. If set to `true`, the press is canceled - * when the pointer leaves the target and onPressStart will not be fired if the pointer returns. - */ - shouldCancelOnPointerExit?: boolean; - /** Whether text selection should be enabled on the pressable element. */ - allowTextSelectionOnPress?: boolean; -} - -export interface PressHookProps extends PressProps { - /** A ref to the target element. */ - ref?: RefObject; -} - -export interface PressState { - isPressed: boolean; - ignoreEmulatedMouseEvents: boolean; - ignoreClickAfterPress: boolean; - didFirePressStart: boolean; - isTriggeringEvent: boolean; - activePointerId: any; - target: FocusableElement | null; - isOverTarget: boolean; - pointerType: PointerType | null; - userSelect?: string; - metaKeyEvents?: Map | null; -} - -export interface EventBase { - currentTarget: EventTarget; - shiftKey: boolean; - ctrlKey: boolean; - metaKey: boolean; - altKey: boolean; -} - -export interface PressResult { - /** Whether the target is currently pressed. */ - isPressed: boolean; - /** Props to spread on the target element. */ - pressProps: DOMAttributes; -} diff --git a/packages/hooks/use-aria-press/tsconfig.json b/packages/hooks/use-aria-press/tsconfig.json deleted file mode 100644 index 46e3b466c2..0000000000 --- a/packages/hooks/use-aria-press/tsconfig.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": "../../../tsconfig.json", - "include": ["src", "index.ts"] -} diff --git a/packages/hooks/use-aria-toggle-button/package.json b/packages/hooks/use-aria-toggle-button/package.json index f7625e8ca9..4990037f1e 100644 --- a/packages/hooks/use-aria-toggle-button/package.json +++ b/packages/hooks/use-aria-toggle-button/package.json @@ -38,10 +38,10 @@ }, "dependencies": { "@nextui-org/use-aria-button": "workspace:*", - "@react-stately/toggle": "^3.6.3", - "@react-aria/utils": "^3.21.1", - "@react-types/shared": "^3.21.0", - "@react-types/button": "^3.9.0" + "@react-stately/toggle": "^3.7.0", + "@react-aria/utils": "^3.22.0", + "@react-types/shared": "^3.22.0", + "@react-types/button": "^3.9.1" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/hooks/use-disclosure/package.json b/packages/hooks/use-disclosure/package.json index 8ba8c0e914..715097cf8c 100644 --- a/packages/hooks/use-disclosure/package.json +++ b/packages/hooks/use-disclosure/package.json @@ -38,8 +38,8 @@ }, "dependencies": { "@nextui-org/use-callback-ref": "workspace:*", - "@react-stately/utils": "^3.8.0", - "@react-aria/utils": "^3.21.1" + "@react-stately/utils": "^3.9.0", + "@react-aria/utils": "^3.22.0" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/packages/hooks/use-is-mobile/package.json b/packages/hooks/use-is-mobile/package.json index 3e3c9fe0b9..a61097e4d9 100644 --- a/packages/hooks/use-is-mobile/package.json +++ b/packages/hooks/use-is-mobile/package.json @@ -34,7 +34,7 @@ "postpack": "clean-package restore" }, "dependencies": { - "@react-aria/ssr": "^3.8.0" + "@react-aria/ssr": "^3.9.0" }, "peerDependencies": { "react": ">=18" diff --git a/packages/utilities/aria-utils/package.json b/packages/utilities/aria-utils/package.json index 77945a0594..5cda7ac133 100644 --- a/packages/utilities/aria-utils/package.json +++ b/packages/utilities/aria-utils/package.json @@ -41,10 +41,10 @@ "@nextui-org/system": "workspace:*", "@nextui-org/shared-utils": "workspace:*", "@nextui-org/react-rsc-utils": "workspace:*", - "@react-aria/utils": "^3.21.1", - "@react-stately/collections": "^3.10.2", - "@react-types/shared": "^3.21.0", - "@react-types/overlays": "^3.8.3" + "@react-aria/utils": "^3.22.0", + "@react-stately/collections": "^3.10.3", + "@react-types/shared": "^3.22.0", + "@react-types/overlays": "^3.8.4" }, "devDependencies": { "clean-package": "2.2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ed13625b22..c494a9a1e0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -14,25 +14,25 @@ importers: devDependencies: '@babel/cli': specifier: ^7.14.5 - version: 7.23.0(@babel/core@7.23.2) + version: 7.23.0(@babel/core@7.23.3) '@babel/core': specifier: ^7.16.7 - version: 7.23.2 + version: 7.23.3 '@babel/plugin-proposal-object-rest-spread': specifier: ^7.15.6 - version: 7.20.7(@babel/core@7.23.2) + version: 7.20.7(@babel/core@7.23.3) '@babel/plugin-transform-runtime': specifier: ^7.14.5 - version: 7.23.2(@babel/core@7.23.2) + version: 7.23.3(@babel/core@7.23.3) '@babel/preset-env': specifier: ^7.14.5 - version: 7.23.2(@babel/core@7.23.2) + version: 7.23.3(@babel/core@7.23.3) '@babel/preset-react': specifier: ^7.14.5 - version: 7.22.15(@babel/core@7.23.2) + version: 7.23.3(@babel/core@7.23.3) '@babel/preset-typescript': specifier: ^7.14.5 - version: 7.23.2(@babel/core@7.23.2) + version: 7.23.3(@babel/core@7.23.3) '@changesets/changelog-github': specifier: 0.4.6 version: 0.4.6 @@ -56,10 +56,10 @@ importers: version: 2.2.0 '@react-types/link': specifier: ^3.4.4 - version: 3.5.1(react@18.2.0) + version: 3.5.2(react@18.2.0) '@react-types/shared': specifier: ^3.19.0 - version: 3.21.0(react@18.2.0) + version: 3.22.0(react@18.2.0) '@storybook/react': specifier: ^7.4.6 version: 7.5.3(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.5) @@ -80,7 +80,7 @@ importers: version: 5.17.0 '@testing-library/react': specifier: ^14.0.0 - version: 14.0.0(react-dom@18.2.0)(react@18.2.0) + version: 14.1.0(react-dom@18.2.0)(react@18.2.0) '@testing-library/react-hooks': specifier: ^8.0.1 version: 8.0.1(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0) @@ -101,7 +101,7 @@ importers: version: 18.2.4 '@types/shelljs': specifier: ^0.8.9 - version: 0.8.14 + version: 0.8.15 '@types/testing-library__jest-dom': specifier: 5.14.5 version: 5.14.5 @@ -272,7 +272,7 @@ importers: dependencies: '@codesandbox/sandpack-react': specifier: ^2.6.4 - version: 2.9.0(@lezer/common@1.1.0)(react-dom@18.2.0)(react@18.2.0) + version: 2.9.0(@lezer/common@1.1.1)(react-dom@18.2.0)(react@18.2.0) '@mapbox/rehype-prism': specifier: ^0.6.0 version: 0.6.0 @@ -329,37 +329,37 @@ importers: version: 1.0.5(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0) '@react-aria/focus': specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + version: 3.15.0(react@18.2.0) '@react-aria/i18n': specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + version: 3.9.0(react@18.2.0) '@react-aria/interactions': specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + version: 3.20.0(react@18.2.0) '@react-aria/selection': specifier: ^3.17.1 - version: 3.17.1(react-dom@18.2.0)(react@18.2.0) + version: 3.17.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/ssr': specifier: ^3.8.0 - version: 3.8.0(react@18.2.0) + version: 3.9.0(react@18.2.0) '@react-aria/utils': specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + version: 3.22.0(react@18.2.0) '@react-aria/virtualizer': specifier: ^3.9.4 - version: 3.9.4(react-dom@18.2.0)(react@18.2.0) + version: 3.9.5(react-dom@18.2.0)(react@18.2.0) '@react-aria/visually-hidden': specifier: ^3.8.6 - version: 3.8.6(react@18.2.0) + version: 3.8.7(react@18.2.0) '@react-stately/data': specifier: ^3.10.3 - version: 3.10.3(react@18.2.0) + version: 3.11.0(react@18.2.0) '@react-stately/layout': specifier: ^3.13.3 - version: 3.13.3(react@18.2.0) + version: 3.13.4(react@18.2.0) '@react-stately/tree': specifier: ^3.7.3 - version: 3.7.3(react@18.2.0) + version: 3.7.4(react@18.2.0) '@rehooks/local-storage': specifier: ^2.4.5 version: 2.4.5(react@18.2.0) @@ -410,7 +410,7 @@ importers: version: 3.0.0 next: specifier: 13.5.1 - version: 13.5.1(@babel/core@7.23.2)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0) + version: 13.5.1(@babel/core@7.23.3)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0) next-contentlayer: specifier: ^0.3.4 version: 0.3.4(contentlayer@0.3.4)(esbuild@0.19.5)(next@13.5.1)(react-dom@18.2.0)(react@18.2.0) @@ -516,7 +516,7 @@ importers: version: 13.5.6 '@react-types/shared': specifier: ^3.19.0 - version: 3.21.0(react@18.2.0) + version: 3.22.0(react@18.2.0) '@tailwindcss/typography': specifier: ^0.5.9 version: 0.5.10(tailwindcss@3.3.5) @@ -525,7 +525,7 @@ importers: version: 1.6.3 '@types/lodash': specifier: ^4.14.194 - version: 4.14.200 + version: 4.14.201 '@types/marked': specifier: ^5.0.0 version: 5.0.2 @@ -549,13 +549,13 @@ importers: version: 18.2.4 '@types/refractor': specifier: ^3.0.2 - version: 3.0.5 + version: 3.0.6 '@types/rss': specifier: ^0.0.30 version: 0.0.30 '@types/shelljs': specifier: ^0.8.9 - version: 0.8.14 + version: 0.8.15 '@types/uuid': specifier: ^8.3.1 version: 8.3.4 @@ -626,26 +626,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-press '@react-aria/button': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/tree': - specifier: ^3.7.3 - version: 3.7.3(react@18.2.0) + specifier: ^3.7.4 + version: 3.7.4(react@18.2.0) '@react-types/accordion': - specifier: 3.0.0-alpha.17 - version: 3.0.0-alpha.17(react@18.2.0) + specifier: 3.0.0-alpha.18 + version: 3.0.0-alpha.18(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -714,32 +714,32 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-button '@react-aria/combobox': - specifier: ^3.7.1 - version: 3.7.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.8.0 + version: 3.8.0(react-dom@18.2.0)(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/i18n': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: ^3.8.6 - version: 3.8.6(react@18.2.0) + specifier: ^3.8.7 + version: 3.8.7(react@18.2.0) '@react-stately/combobox': - specifier: ^3.7.1 - version: 3.7.1(react@18.2.0) + specifier: ^3.8.0 + version: 3.8.0(react@18.2.0) '@react-types/combobox': - specifier: ^3.8.1 - version: 3.8.1(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -760,8 +760,8 @@ importers: specifier: workspace:* version: link:../../hooks/use-infinite-scroll '@react-stately/data': - specifier: ^3.10.3 - version: 3.10.3(react@18.2.0) + specifier: ^3.11.0 + version: 3.11.0(react@18.2.0) clean-package: specifier: 2.2.0 version: 2.2.0 @@ -787,14 +787,14 @@ importers: specifier: workspace:* version: link:../../hooks/use-image '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -864,20 +864,20 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/breadcrumbs': - specifier: ^3.5.7 - version: 3.5.7(react@18.2.0) + specifier: ^3.5.8 + version: 3.5.8(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/breadcrumbs': - specifier: ^3.7.1 - version: 3.7.1(react@18.2.0) + specifier: ^3.7.2 + version: 3.7.2(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/button': specifier: workspace:* @@ -922,23 +922,23 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-button '@react-aria/button': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/button': - specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + specifier: ^3.9.1 + version: 3.9.1(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) framer-motion: specifier: '>=4.0.0' version: 10.16.4(react-dom@18.2.0)(react@18.2.0) @@ -977,20 +977,20 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-button '@react-aria/button': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) framer-motion: specifier: '>=4.0.0' version: 10.16.4(react-dom@18.2.0)(react@18.2.0) @@ -1038,32 +1038,32 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-press '@react-aria/checkbox': - specifier: ^3.11.2 - version: 3.11.2(react@18.2.0) + specifier: ^3.12.0 + version: 3.12.0(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: ^3.8.6 - version: 3.8.6(react@18.2.0) + specifier: ^3.8.7 + version: 3.8.7(react@18.2.0) '@react-stately/checkbox': - specifier: ^3.5.1 - version: 3.5.1(react@18.2.0) + specifier: ^3.6.0 + version: 3.6.0(react@18.2.0) '@react-stately/toggle': - specifier: ^3.6.3 - version: 3.6.3(react@18.2.0) + specifier: ^3.7.0 + version: 3.7.0(react@18.2.0) '@react-types/checkbox': - specifier: ^3.5.2 - version: 3.5.2(react@18.2.0) + specifier: ^3.6.0 + version: 3.6.0(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/chip': specifier: workspace:* @@ -1108,17 +1108,17 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-press '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/checkbox': - specifier: ^3.5.2 - version: 3.5.2(react@18.2.0) + specifier: ^3.6.0 + version: 3.6.0(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -1176,8 +1176,8 @@ importers: specifier: workspace:* version: link:../../core/system-rsc '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/theme': specifier: workspace:* @@ -1207,20 +1207,20 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/menu': - specifier: ^3.11.1 - version: 3.11.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.11.2 + version: 3.11.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/menu': - specifier: ^3.5.6 - version: 3.5.6(react@18.2.0) + specifier: ^3.5.7 + version: 3.5.7(react@18.2.0) '@react-types/menu': - specifier: ^3.9.5 - version: 3.9.5(react@18.2.0) + specifier: ^3.9.6 + version: 3.9.6(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -1293,26 +1293,26 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/textfield': - specifier: ^3.12.2 - version: 3.12.2(react@18.2.0) + specifier: ^3.13.0 + version: 3.13.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/utils': - specifier: ^3.8.0 - version: 3.8.0(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/textfield': - specifier: ^3.8.1 - version: 3.8.1(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) react-textarea-autosize: specifier: ^8.5.2 version: 8.5.3(@types/react@18.2.8)(react@18.2.0) @@ -1345,8 +1345,8 @@ importers: specifier: workspace:* version: link:../../core/system-rsc '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/theme': specifier: workspace:* @@ -1376,17 +1376,17 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-link '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/link': - specifier: ^3.6.1 - version: 3.6.1(react@18.2.0) + specifier: ^3.6.2 + version: 3.6.2(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/link': - specifier: ^3.5.1 - version: 3.5.1(react@18.2.0) + specifier: ^3.5.2 + version: 3.5.2(react@18.2.0) devDependencies: '@nextui-org/system': specifier: workspace:* @@ -1425,26 +1425,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-is-mobile '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/listbox': - specifier: ^3.11.1 - version: 3.11.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.11.2 + version: 3.11.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/list': - specifier: ^3.10.0 - version: 3.10.0(react@18.2.0) + specifier: ^3.10.1 + version: 3.10.1(react@18.2.0) '@react-types/menu': - specifier: ^3.9.5 - version: 3.9.5(react@18.2.0) + specifier: ^3.9.6 + version: 3.9.6(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -1498,29 +1498,29 @@ importers: specifier: workspace:* version: link:../../hooks/use-is-mobile '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/menu': - specifier: ^3.11.1 - version: 3.11.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.11.2 + version: 3.11.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/menu': - specifier: ^3.5.6 - version: 3.5.6(react@18.2.0) + specifier: ^3.5.7 + version: 3.5.7(react@18.2.0) '@react-stately/tree': - specifier: ^3.7.3 - version: 3.7.3(react@18.2.0) + specifier: ^3.7.4 + version: 3.7.4(react@18.2.0) '@react-types/menu': - specifier: ^3.9.5 - version: 3.9.5(react@18.2.0) + specifier: ^3.9.6 + version: 3.9.6(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -1565,26 +1565,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-disclosure '@react-aria/dialog': - specifier: ^3.5.7 - version: 3.5.7(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.5.8 + version: 3.5.8(react-dom@18.2.0)(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/overlays': - specifier: ^3.18.1 - version: 3.18.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.19.0 + version: 3.19.0(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/overlays': - specifier: ^3.6.3 - version: 3.6.3(react@18.2.0) + specifier: ^3.6.4 + version: 3.6.4(react@18.2.0) '@react-types/overlays': - specifier: ^3.8.3 - version: 3.8.3(react@18.2.0) + specifier: ^3.8.4 + version: 3.8.4(react@18.2.0) react-remove-scroll: specifier: ^2.5.6 version: 2.5.7(@types/react@18.2.8)(react@18.2.0) @@ -1641,23 +1641,23 @@ importers: specifier: workspace:* version: link:../../hooks/use-scroll-position '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/overlays': - specifier: ^3.18.1 - version: 3.18.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.19.0 + version: 3.19.0(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/toggle': - specifier: ^3.6.3 - version: 3.6.3(react@18.2.0) + specifier: ^3.7.0 + version: 3.7.0(react@18.2.0) '@react-stately/utils': - specifier: ^3.8.0 - version: 3.8.0(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) framer-motion: specifier: '>=4.0.0' version: 10.16.4(react-dom@18.2.0)(react@18.2.0) @@ -1720,14 +1720,14 @@ importers: specifier: workspace:* version: link:../../hooks/use-pagination '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) scroll-into-view-if-needed: specifier: 3.0.10 version: 3.0.10 @@ -1769,29 +1769,29 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-button '@react-aria/dialog': - specifier: ^3.5.7 - version: 3.5.7(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.5.8 + version: 3.5.8(react-dom@18.2.0)(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/overlays': - specifier: ^3.18.1 - version: 3.18.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.19.0 + version: 3.19.0(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/overlays': - specifier: ^3.6.3 - version: 3.6.3(react@18.2.0) + specifier: ^3.6.4 + version: 3.6.4(react@18.2.0) '@react-types/button': - specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + specifier: ^3.9.1 + version: 3.9.1(react@18.2.0) '@react-types/overlays': - specifier: ^3.8.3 - version: 3.8.3(react@18.2.0) + specifier: ^3.8.4 + version: 3.8.4(react@18.2.0) react-remove-scroll: specifier: ^2.5.6 version: 2.5.7(@types/react@18.2.8)(react@18.2.0) @@ -1833,17 +1833,17 @@ importers: specifier: workspace:* version: link:../../hooks/use-is-mounted '@react-aria/i18n': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/progress': - specifier: ^3.4.7 - version: 3.4.7(react@18.2.0) + specifier: ^3.4.8 + version: 3.4.8(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/progress': - specifier: ^3.5.0 - version: 3.5.0(react@18.2.0) + specifier: ^3.5.1 + version: 3.5.1(react@18.2.0) devDependencies: '@nextui-org/card': specifier: workspace:* @@ -1879,29 +1879,29 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-press '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/radio': - specifier: ^3.8.2 - version: 3.8.2(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: ^3.8.6 - version: 3.8.6(react@18.2.0) + specifier: ^3.8.7 + version: 3.8.7(react@18.2.0) '@react-stately/radio': - specifier: ^3.9.1 - version: 3.9.1(react@18.2.0) + specifier: ^3.10.0 + version: 3.10.0(react@18.2.0) '@react-types/radio': - specifier: ^3.5.2 - version: 3.5.2(react@18.2.0) + specifier: ^3.6.0 + version: 3.6.0(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/button': specifier: workspace:* @@ -2014,20 +2014,20 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-multiselect '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: ^3.8.6 - version: 3.8.6(react@18.2.0) + specifier: ^3.8.7 + version: 3.8.7(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -2054,11 +2054,11 @@ importers: specifier: workspace:* version: link:../../hooks/use-infinite-scroll '@react-aria/i18n': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-stately/data': - specifier: ^3.10.3 - version: 3.10.3(react@18.2.0) + specifier: ^3.11.0 + version: 3.11.0(react@18.2.0) clean-package: specifier: 2.2.0 version: 2.2.0 @@ -2118,26 +2118,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-press '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/i18n': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/slider': - specifier: ^3.7.2 - version: 3.7.2(react@18.2.0) + specifier: ^3.7.3 + version: 3.7.3(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: ^3.8.6 - version: 3.8.6(react@18.2.0) + specifier: ^3.8.7 + version: 3.8.7(react@18.2.0) '@react-stately/slider': - specifier: ^3.4.4 - version: 3.4.4(react@18.2.0) + specifier: ^3.4.5 + version: 3.4.5(react@18.2.0) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -2182,11 +2182,11 @@ importers: specifier: workspace:* version: link:../../hooks/use-clipboard '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) framer-motion: specifier: '>=4.0.0' version: 10.16.4(react-dom@18.2.0)(react@18.2.0) @@ -2269,26 +2269,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-aria-press '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/switch': - specifier: ^3.5.6 - version: 3.5.6(react@18.2.0) + specifier: ^3.5.7 + version: 3.5.7(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: ^3.8.6 - version: 3.8.6(react@18.2.0) + specifier: ^3.8.7 + version: 3.8.7(react@18.2.0) '@react-stately/toggle': - specifier: ^3.6.3 - version: 3.6.3(react@18.2.0) + specifier: ^3.7.0 + version: 3.7.0(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -2327,32 +2327,32 @@ importers: specifier: workspace:* version: link:../spacer '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/table': - specifier: ^3.13.1 - version: 3.13.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.13.2 + version: 3.13.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-aria/visually-hidden': - specifier: ^3.8.6 - version: 3.8.6(react@18.2.0) + specifier: ^3.8.7 + version: 3.8.7(react@18.2.0) '@react-stately/table': - specifier: ^3.11.2 - version: 3.11.2(react@18.2.0) + specifier: ^3.11.3 + version: 3.11.3(react@18.2.0) '@react-stately/virtualizer': - specifier: ^3.6.4 - version: 3.6.4(react@18.2.0) + specifier: ^3.6.5 + version: 3.6.5(react@18.2.0) '@react-types/grid': - specifier: ^3.2.2 - version: 3.2.2(react@18.2.0) + specifier: ^3.2.3 + version: 3.2.3(react@18.2.0) '@react-types/table': - specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + specifier: ^3.9.1 + version: 3.9.1(react@18.2.0) devDependencies: '@nextui-org/button': specifier: workspace:* @@ -2382,8 +2382,8 @@ importers: specifier: workspace:* version: link:../user '@react-stately/data': - specifier: ^3.10.3 - version: 3.10.3(react@18.2.0) + specifier: ^3.11.0 + version: 3.11.0(react@18.2.0) clean-package: specifier: 2.2.0 version: 2.2.0 @@ -2418,26 +2418,26 @@ importers: specifier: workspace:* version: link:../../hooks/use-update-effect '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/tabs': - specifier: ^3.8.1 - version: 3.8.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.8.2 + version: 3.8.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/tabs': - specifier: ^3.6.1 - version: 3.6.1(react@18.2.0) + specifier: ^3.6.2 + version: 3.6.2(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/tabs': - specifier: ^3.3.3 - version: 3.3.3(react@18.2.0) + specifier: ^3.3.4 + version: 3.3.4(react@18.2.0) scroll-into-view-if-needed: specifier: 3.0.10 version: 3.0.10 @@ -2494,26 +2494,26 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/overlays': - specifier: ^3.18.1 - version: 3.18.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.19.0 + version: 3.19.0(react-dom@18.2.0)(react@18.2.0) '@react-aria/tooltip': - specifier: ^3.6.4 - version: 3.6.4(react@18.2.0) + specifier: ^3.6.5 + version: 3.6.5(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/tooltip': - specifier: ^3.4.5 - version: 3.4.5(react@18.2.0) + specifier: ^3.4.6 + version: 3.4.6(react@18.2.0) '@react-types/overlays': - specifier: ^3.8.3 - version: 3.8.3(react@18.2.0) + specifier: ^3.8.4 + version: 3.8.4(react@18.2.0) '@react-types/tooltip': - specifier: ^3.4.5 - version: 3.4.5(react@18.2.0) + specifier: ^3.4.6 + version: 3.4.6(react@18.2.0) devDependencies: '@nextui-org/button': specifier: workspace:* @@ -2549,11 +2549,11 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: '@nextui-org/link': specifier: workspace:* @@ -2694,8 +2694,8 @@ importers: specifier: workspace:* version: link:../../components/user '@react-aria/visually-hidden': - specifier: ^3.8.6 - version: 3.8.6(react@18.2.0) + specifier: ^3.8.7 + version: 3.8.7(react@18.2.0) framer-motion: specifier: '>=4.0.0' version: 10.16.4(react-dom@18.2.0)(react@18.2.0) @@ -2716,17 +2716,17 @@ importers: specifier: workspace:* version: link:../system-rsc '@react-aria/i18n': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/overlays': - specifier: ^3.18.1 - version: 3.18.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.19.0 + version: 3.19.0(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/utils': - specifier: ^3.8.0 - version: 3.8.0(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -2795,7 +2795,7 @@ importers: devDependencies: '@types/color': specifier: ^3.0.3 - version: 3.0.5 + version: 3.0.6 '@types/flat': specifier: ^5.0.2 version: 5.0.5 @@ -2824,26 +2824,26 @@ importers: packages/hooks/use-aria-accordion: dependencies: '@react-aria/button': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/selection': - specifier: ^3.17.1 - version: 3.17.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.17.2 + version: 3.17.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/tree': - specifier: ^3.7.3 - version: 3.7.3(react@18.2.0) + specifier: ^3.7.4 + version: 3.7.4(react@18.2.0) '@react-types/accordion': - specifier: 3.0.0-alpha.17 - version: 3.0.0-alpha.17(react@18.2.0) + specifier: 3.0.0-alpha.18 + version: 3.0.0-alpha.18(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -2855,17 +2855,17 @@ importers: packages/hooks/use-aria-accordion-item: dependencies: '@react-aria/button': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-stately/tree': - specifier: ^3.7.3 - version: 3.7.3(react@18.2.0) + specifier: ^3.7.4 + version: 3.7.4(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -2880,20 +2880,20 @@ importers: specifier: workspace:* version: link:../use-aria-press '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/button': - specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + specifier: ^3.9.1 + version: 3.9.1(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -2908,20 +2908,20 @@ importers: specifier: workspace:* version: link:../use-aria-press '@react-aria/focus': - specifier: ^3.14.3 - version: 3.14.3(react@18.2.0) + specifier: ^3.15.0 + version: 3.15.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/link': - specifier: ^3.5.1 - version: 3.5.1(react@18.2.0) + specifier: ^3.5.2 + version: 3.5.2(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -2933,17 +2933,17 @@ importers: packages/hooks/use-aria-modal-overlay: dependencies: '@react-aria/overlays': - specifier: ^3.18.1 - version: 3.18.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.19.0 + version: 3.19.0(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/overlays': - specifier: ^3.6.3 - version: 3.6.3(react@18.2.0) + specifier: ^3.6.4 + version: 3.6.4(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -2958,44 +2958,44 @@ importers: packages/hooks/use-aria-multiselect: dependencies: '@react-aria/i18n': - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/label': - specifier: ^3.7.2 - version: 3.7.2(react@18.2.0) + specifier: ^3.7.3 + version: 3.7.3(react@18.2.0) '@react-aria/listbox': - specifier: ^3.11.1 - version: 3.11.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.11.2 + version: 3.11.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/menu': - specifier: ^3.11.1 - version: 3.11.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.11.2 + version: 3.11.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/selection': - specifier: ^3.17.1 - version: 3.17.1(react-dom@18.2.0)(react@18.2.0) + specifier: ^3.17.2 + version: 3.17.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/list': - specifier: ^3.10.0 - version: 3.10.0(react@18.2.0) + specifier: ^3.10.1 + version: 3.10.1(react@18.2.0) '@react-stately/menu': - specifier: ^3.5.6 - version: 3.5.6(react@18.2.0) + specifier: ^3.5.7 + version: 3.5.7(react@18.2.0) '@react-types/button': - specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + specifier: ^3.9.1 + version: 3.9.1(react@18.2.0) '@react-types/overlays': - specifier: ^3.8.3 - version: 3.8.3(react@18.2.0) - '@react-types/select': specifier: ^3.8.4 version: 3.8.4(react@18.2.0) + '@react-types/select': + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3010,17 +3010,17 @@ importers: packages/hooks/use-aria-press: dependencies: '@react-aria/interactions': - specifier: ^3.19.1 - version: 3.19.1(react@18.2.0) + specifier: ^3.20.0 + version: 3.20.0(react@18.2.0) '@react-aria/ssr': - specifier: ^3.8.0 - version: 3.8.0(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3035,17 +3035,17 @@ importers: specifier: workspace:* version: link:../use-aria-button '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/toggle': - specifier: ^3.6.3 - version: 3.6.3(react@18.2.0) + specifier: ^3.7.0 + version: 3.7.0(react@18.2.0) '@react-types/button': - specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + specifier: ^3.9.1 + version: 3.9.1(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3095,11 +3095,11 @@ importers: specifier: workspace:* version: link:../use-callback-ref '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/utils': - specifier: ^3.8.0 - version: 3.8.0(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3140,8 +3140,8 @@ importers: packages/hooks/use-is-mobile: dependencies: '@react-aria/ssr': - specifier: ^3.8.0 - version: 3.8.0(react@18.2.0) + specifier: ^3.9.0 + version: 3.9.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3315,17 +3315,17 @@ importers: specifier: workspace:* version: link:../../core/system '@react-aria/utils': - specifier: ^3.21.1 - version: 3.21.1(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) '@react-stately/collections': - specifier: ^3.10.2 - version: 3.10.2(react@18.2.0) + specifier: ^3.10.3 + version: 3.10.3(react@18.2.0) '@react-types/overlays': - specifier: ^3.8.3 - version: 3.8.3(react@18.2.0) + specifier: ^3.8.4 + version: 3.8.4(react@18.2.0) '@react-types/shared': - specifier: ^3.21.0 - version: 3.21.0(react@18.2.0) + specifier: ^3.22.0 + version: 3.22.0(react@18.2.0) devDependencies: clean-package: specifier: 2.2.0 @@ -3530,14 +3530,14 @@ packages: default-browser-id: 3.0.0 dev: true - /@babel/cli@7.23.0(@babel/core@7.23.2): + /@babel/cli@7.23.0(@babel/core@7.23.3): resolution: {integrity: sha512-17E1oSkGk2IwNILM4jtfAvgjt+ohmpfBky8aLerUfYZhiPNg7ca+CRCxZn8QDxwNhV/upsc2VHBCqGFIR+iBfA==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@jridgewell/trace-mapping': 0.3.20 commander: 4.1.1 convert-source-map: 2.0.0 @@ -3563,24 +3563,24 @@ packages: '@babel/highlight': 7.22.20 chalk: 2.4.2 - /@babel/compat-data@7.23.2: - resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==} + /@babel/compat-data@7.23.3: + resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==} engines: {node: '>=6.9.0'} - /@babel/core@7.23.2: - resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==} + /@babel/core@7.23.3: + resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 '@babel/code-frame': 7.22.13 - '@babel/generator': 7.23.0 + '@babel/generator': 7.23.3 '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) '@babel/helpers': 7.23.2 - '@babel/parser': 7.23.0 + '@babel/parser': 7.23.3 '@babel/template': 7.22.15 - '@babel/traverse': 7.23.2 - '@babel/types': 7.23.0 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -3589,11 +3589,11 @@ packages: transitivePeerDependencies: - supports-color - /@babel/generator@7.23.0: - resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} + /@babel/generator@7.23.3: + resolution: {integrity: sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 '@jridgewell/gen-mapping': 0.3.3 '@jridgewell/trace-mapping': 0.3.20 jsesc: 2.5.2 @@ -3602,66 +3602,66 @@ packages: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 dev: true /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 dev: true /@babel/helper-compilation-targets@7.22.15: resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/compat-data': 7.23.2 + '@babel/compat-data': 7.23.3 '@babel/helper-validator-option': 7.22.15 browserslist: 4.22.1 lru-cache: 5.1.1 semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2): + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.3): resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2): + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.3): resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.23.2): + /@babel/helper-define-polyfill-provider@0.1.5(@babel/core@7.23.3): resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/traverse': 7.23.2 + '@babel/traverse': 7.23.3 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.8 @@ -3670,12 +3670,12 @@ packages: - supports-color dev: true - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2): + /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.3): resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4 @@ -3694,34 +3694,34 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 /@babel/helper-member-expression-to-functions@7.23.0: resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 dev: true /@babel/helper-module-imports@7.22.15: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 - /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2): - resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 @@ -3732,7 +3732,7 @@ packages: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 dev: true /@babel/helper-plugin-utils@7.22.5: @@ -3740,25 +3740,25 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2): + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.3): resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2): + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.3): resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 @@ -3768,20 +3768,20 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 /@babel/helper-skip-transparent-expression-wrappers@7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 dev: true /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 /@babel/helper-string-parser@7.22.5: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} @@ -3801,7 +3801,7 @@ packages: dependencies: '@babel/helper-function-name': 7.23.0 '@babel/template': 7.22.15 - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 dev: true /@babel/helpers@7.23.2: @@ -3809,8 +3809,8 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.22.15 - '@babel/traverse': 7.23.2 - '@babel/types': 7.23.0 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 transitivePeerDependencies: - supports-color @@ -3822,1125 +3822,1136 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser@7.23.0: - resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} + /@babel/parser@7.23.3: + resolution: {integrity: sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3) + dev: true + + /@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2): + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.3): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-export-default-from@7.22.17(@babel/core@7.23.2): - resolution: {integrity: sha512-cop/3quQBVvdz6X5SJC6AhUv3C9DrVTM06LUEXimEdWAhCSyOJIr9NiZDU9leHZ0/aiG0Sh7Zmvaku5TWYNgbA==} + /@babel/plugin-proposal-export-default-from@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-Q23MpLZfSGZL1kU7fWqV262q65svLSCIP5kZ/JCW/rKTCm/FrLjpvEd2kfUYMVeHh4QhV/xzyoRAHWrAZJrE3Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-export-default-from': 7.23.3(@babel/core@7.23.3) dev: true - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.2): + /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.23.3): resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.2): + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.3): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) dev: true - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.2): + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.3): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.23.2 - '@babel/core': 7.23.2 + '@babel/compat-data': 7.23.3 + '@babel/core': 7.23.3 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3) dev: true - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.2): + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.3): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2): + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.3): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.3): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.3): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.3): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.3): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==} + /@babel/plugin-syntax-export-default-from@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-KeENO5ck1IeZ/l2lFZNy+mpobV3D2Zy5C1YFnWm+YuY5mQiAWc4yAp13dqgguwsBsFVLh4LPCEqCa5qW13N+hw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.3): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} + /@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} + /@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} + /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.3): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.3): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} + /@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.3): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.3): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.3): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.3): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.2): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.3): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.3): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.3): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.3): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} + /@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.3): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} + /@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.2): - resolution: {integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==} + /@babel/plugin-transform-async-generator-functions@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} + /@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} + /@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.2): - resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} + /@babel/plugin-transform-block-scoping@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} + /@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.2): - resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} + /@babel/plugin-transform-class-static-block@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} + /@babel/plugin-transform-classes@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} + /@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.2): - resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} + /@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} + /@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} + /@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.2): - resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} + /@babel/plugin-transform-dynamic-import@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} + /@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.2): - resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} + /@babel/plugin-transform-export-namespace-from@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} + /@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} + /@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} + /@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.2): - resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} + /@babel/plugin-transform-json-strings@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} + /@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.2): - resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} + /@babel/plugin-transform-logical-assignment-operators@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} + /@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.2): - resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} + /@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.2): - resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} + /@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.2): - resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} + /@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} + /@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.3): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} + /@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.2): - resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} + /@babel/plugin-transform-nullish-coalescing-operator@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.2): - resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} + /@babel/plugin-transform-numeric-separator@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} + /@babel/plugin-transform-object-rest-spread@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.23.2 - '@babel/core': 7.23.2 + '@babel/compat-data': 7.23.3 + '@babel/core': 7.23.3 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} + /@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.2): - resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} + /@babel/plugin-transform-optional-catch-binding@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.2): - resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==} + /@babel/plugin-transform-optional-chaining@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} + /@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} + /@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.2): - resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} + /@babel/plugin-transform-private-property-in-object@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} + /@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} + /@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.2): + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.3): resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} + /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} + /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.2): + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.3): resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) - '@babel/types': 7.23.0 + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3) + '@babel/types': 7.23.3 dev: true - /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} + /@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.2): - resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} + /@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} + /@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-runtime@7.23.2(@babel/core@7.23.2): - resolution: {integrity: sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==} + /@babel/plugin-transform-runtime@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-XcQ3X58CKBdBnnZpPaQjgVMePsXtSZzHoku70q9tUAQp02ggPQNM04BF3RvlW1GSM/McbSOQAzEK4MXbS7/JFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.3) + babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.3) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.3) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} + /@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} + /@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} + /@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} + /@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} + /@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} + /@babel/plugin-transform-typescript@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3) dev: true - /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.2): - resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} + /@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} + /@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} + /@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.2): - resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} + /@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/preset-env@7.23.2(@babel/core@7.23.2): - resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==} + /@babel/preset-env@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.23.2 - '@babel/core': 7.23.2 + '@babel/compat-data': 7.23.3 + '@babel/core': 7.23.3 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2) - '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2) - '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2) - '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.2) - '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) - '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.2) - '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2) - '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.2) - '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.2) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.2) - '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2) - '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) - '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.2) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.2) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.2) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2) - '@babel/types': 7.23.0 - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.3) + '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-async-generator-functions': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-class-static-block': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-dynamic-import': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-export-namespace-from': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-json-strings': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-logical-assignment-operators': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.3) + '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-numeric-separator': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-object-rest-spread': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-optional-catch-binding': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.3) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.3) + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.3) + babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.3) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.3) core-js-compat: 3.33.2 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-flow@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==} + /@babel/preset-flow@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.3) dev: true - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.3): resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 esutils: 2.0.3 dev: true - /@babel/preset-react@7.22.15(@babel/core@7.23.2): - resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} + /@babel/preset-react@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.3) + '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.3) dev: true - /@babel/preset-typescript@7.23.2(@babel/core@7.23.2): - resolution: {integrity: sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==} + /@babel/preset-typescript@7.23.3(@babel/core@7.23.3): + resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-validator-option': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) - '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3) dev: true - /@babel/register@7.22.15(@babel/core@7.23.2): + /@babel/register@7.22.15(@babel/core@7.23.3): resolution: {integrity: sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -4963,28 +4974,28 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.13 - '@babel/parser': 7.23.0 - '@babel/types': 7.23.0 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 - /@babel/traverse@7.23.2: - resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} + /@babel/traverse@7.23.3: + resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.22.13 - '@babel/generator': 7.23.0 + '@babel/generator': 7.23.3 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.0 - '@babel/types': 7.23.0 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types@7.23.0: - resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} + /@babel/types@7.23.3: + resolution: {integrity: sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 @@ -5064,7 +5075,7 @@ packages: '@changesets/write': 0.1.9 '@manypkg/get-packages': 1.1.3 '@types/is-ci': 3.0.4 - '@types/semver': 6.2.5 + '@types/semver': 6.2.6 ansi-colors: 4.1.3 chalk: 2.4.2 enquirer: 2.4.1 @@ -5217,8 +5228,8 @@ packages: prettier: 1.19.1 dev: true - /@codemirror/autocomplete@6.10.2(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.0): - resolution: {integrity: sha512-3dCL7b0j2GdtZzWN5j7HDpRAJ26ip07R4NGYz7QYthIYMiX8I4E4TNrYcdTayPJGeVQtd/xe7lWU4XL7THFb/w==} + /@codemirror/autocomplete@6.11.0(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.1): + resolution: {integrity: sha512-LCPH3W+hl5vcO7OzEQgX6NpKuKVyiKFLGAy7FXROF6nUpsWUdQEgUb3fe/g7B0E1KZCRFfgzdKASt6Wly2UOBg==} peerDependencies: '@codemirror/language': ^6.0.0 '@codemirror/state': ^6.0.0 @@ -5228,7 +5239,7 @@ packages: '@codemirror/language': 6.9.2 '@codemirror/state': 6.3.1 '@codemirror/view': 6.22.0 - '@lezer/common': 1.1.0 + '@lezer/common': 1.1.1 dev: false /@codemirror/commands@6.3.0: @@ -5237,17 +5248,17 @@ packages: '@codemirror/language': 6.9.2 '@codemirror/state': 6.3.1 '@codemirror/view': 6.22.0 - '@lezer/common': 1.1.0 + '@lezer/common': 1.1.1 dev: false /@codemirror/lang-css@6.2.1(@codemirror/view@6.22.0): resolution: {integrity: sha512-/UNWDNV5Viwi/1lpr/dIXJNWiwDxpw13I4pTUAsNxZdg6E0mI2kTQb0P2iHczg1Tu+H4EBgJR+hYhKiHKko7qg==} dependencies: - '@codemirror/autocomplete': 6.10.2(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.0) + '@codemirror/autocomplete': 6.11.0(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.1) '@codemirror/language': 6.9.2 '@codemirror/state': 6.3.1 - '@lezer/common': 1.1.0 - '@lezer/css': 1.1.3 + '@lezer/common': 1.1.1 + '@lezer/css': 1.1.4 transitivePeerDependencies: - '@codemirror/view' dev: false @@ -5255,26 +5266,26 @@ packages: /@codemirror/lang-html@6.4.6: resolution: {integrity: sha512-E4C8CVupBksXvgLSme/zv31x91g06eZHSph7NczVxZW+/K+3XgJGWNT//2WLzaKSBoxpAjaOi5ZnPU1SHhjh3A==} dependencies: - '@codemirror/autocomplete': 6.10.2(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.0) + '@codemirror/autocomplete': 6.11.0(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.1) '@codemirror/lang-css': 6.2.1(@codemirror/view@6.22.0) '@codemirror/lang-javascript': 6.2.1 '@codemirror/language': 6.9.2 '@codemirror/state': 6.3.1 '@codemirror/view': 6.22.0 - '@lezer/common': 1.1.0 - '@lezer/css': 1.1.3 + '@lezer/common': 1.1.1 + '@lezer/css': 1.1.4 '@lezer/html': 1.3.6 dev: false /@codemirror/lang-javascript@6.2.1: resolution: {integrity: sha512-jlFOXTejVyiQCW3EQwvKH0m99bUYIw40oPmFjSX2VS78yzfe0HELZ+NEo9Yfo1MkGRpGlj3Gnu4rdxV1EnAs5A==} dependencies: - '@codemirror/autocomplete': 6.10.2(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.0) + '@codemirror/autocomplete': 6.11.0(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.1) '@codemirror/language': 6.9.2 '@codemirror/lint': 6.4.2 '@codemirror/state': 6.3.1 '@codemirror/view': 6.22.0 - '@lezer/common': 1.1.0 + '@lezer/common': 1.1.1 '@lezer/javascript': 1.4.9 dev: false @@ -5283,7 +5294,7 @@ packages: dependencies: '@codemirror/state': 6.3.1 '@codemirror/view': 6.22.0 - '@lezer/common': 1.1.0 + '@lezer/common': 1.1.1 '@lezer/highlight': 1.1.6 '@lezer/lr': 1.3.14 style-mod: 4.1.0 @@ -5326,13 +5337,13 @@ packages: static-browser-server: 1.0.3 dev: false - /@codesandbox/sandpack-react@2.9.0(@lezer/common@1.1.0)(react-dom@18.2.0)(react@18.2.0): + /@codesandbox/sandpack-react@2.9.0(@lezer/common@1.1.1)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-A0quGugVyWbRktpdq2Nc6W1+XV0QnHq1lbqDCHAs2ijfWxvhhNaqMr6lWDaG/NTUGRNLUNETbipcNaBeC0dxhw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@codemirror/autocomplete': 6.10.2(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.0) + '@codemirror/autocomplete': 6.11.0(@codemirror/language@6.9.2)(@codemirror/state@6.3.1)(@codemirror/view@6.22.0)(@lezer/common@1.1.1) '@codemirror/commands': 6.3.0 '@codemirror/lang-css': 6.2.1(@codemirror/view@6.22.0) '@codemirror/lang-html': 6.4.6 @@ -5634,17 +5645,17 @@ packages: optional: true dependencies: '@effect-ts/core': 0.60.5 - '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.0)(@opentelemetry/sdk-trace-base@1.18.0) - '@effect-ts/otel-exporter-trace-otlp-grpc': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.0)(@opentelemetry/exporter-trace-otlp-grpc@0.39.1)(@opentelemetry/sdk-trace-base@1.18.0) - '@effect-ts/otel-sdk-trace-node': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.0)(@opentelemetry/sdk-trace-base@1.18.0)(@opentelemetry/sdk-trace-node@1.18.0) + '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.1)(@opentelemetry/sdk-trace-base@1.18.1) + '@effect-ts/otel-exporter-trace-otlp-grpc': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.1)(@opentelemetry/exporter-trace-otlp-grpc@0.39.1)(@opentelemetry/sdk-trace-base@1.18.1) + '@effect-ts/otel-sdk-trace-node': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.1)(@opentelemetry/sdk-trace-base@1.18.1)(@opentelemetry/sdk-trace-node@1.18.1) '@js-temporal/polyfill': 0.4.4 '@opentelemetry/api': 1.7.0 - '@opentelemetry/core': 1.18.0(@opentelemetry/api@1.7.0) + '@opentelemetry/core': 1.18.1(@opentelemetry/api@1.7.0) '@opentelemetry/exporter-trace-otlp-grpc': 0.39.1(@opentelemetry/api@1.7.0) - '@opentelemetry/resources': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/sdk-trace-base': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/sdk-trace-node': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/semantic-conventions': 1.18.0 + '@opentelemetry/resources': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/sdk-trace-base': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/sdk-trace-node': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/semantic-conventions': 1.18.1 chokidar: 3.5.3 hash-wasm: 4.10.0 inflection: 2.0.1 @@ -5710,7 +5721,7 @@ packages: '@effect-ts/system': 0.57.5 dev: false - /@effect-ts/otel-exporter-trace-otlp-grpc@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.0)(@opentelemetry/exporter-trace-otlp-grpc@0.39.1)(@opentelemetry/sdk-trace-base@1.18.0): + /@effect-ts/otel-exporter-trace-otlp-grpc@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.1)(@opentelemetry/exporter-trace-otlp-grpc@0.39.1)(@opentelemetry/sdk-trace-base@1.18.1): resolution: {integrity: sha512-47gAg0O2pW5Jlo86jfzjdkwL5a7Bzb+Kj5WTmdu4CxYRfWn9ytKjuuYIfsNDW8neuhdKzn+P5wCddgEh0glYyQ==} peerDependencies: '@effect-ts/core': ^0.60.2 @@ -5720,14 +5731,14 @@ packages: '@opentelemetry/sdk-trace-base': ^1.13.0 dependencies: '@effect-ts/core': 0.60.5 - '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.0)(@opentelemetry/sdk-trace-base@1.18.0) + '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.1)(@opentelemetry/sdk-trace-base@1.18.1) '@opentelemetry/api': 1.7.0 - '@opentelemetry/core': 1.18.0(@opentelemetry/api@1.7.0) + '@opentelemetry/core': 1.18.1(@opentelemetry/api@1.7.0) '@opentelemetry/exporter-trace-otlp-grpc': 0.39.1(@opentelemetry/api@1.7.0) - '@opentelemetry/sdk-trace-base': 1.18.0(@opentelemetry/api@1.7.0) + '@opentelemetry/sdk-trace-base': 1.18.1(@opentelemetry/api@1.7.0) dev: false - /@effect-ts/otel-sdk-trace-node@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.0)(@opentelemetry/sdk-trace-base@1.18.0)(@opentelemetry/sdk-trace-node@1.18.0): + /@effect-ts/otel-sdk-trace-node@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.1)(@opentelemetry/sdk-trace-base@1.18.1)(@opentelemetry/sdk-trace-node@1.18.1): resolution: {integrity: sha512-a2sF0ylmn8xOJs8fNeT/spJ1gUcsksAJCALxo9WOfuTCMtTwMVtVhCKEPEeQoL7wFqU+JgPkVdP91+FJ/Rkeow==} peerDependencies: '@effect-ts/core': ^0.60.2 @@ -5737,14 +5748,14 @@ packages: '@opentelemetry/sdk-trace-node': ^1.13.0 dependencies: '@effect-ts/core': 0.60.5 - '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.0)(@opentelemetry/sdk-trace-base@1.18.0) + '@effect-ts/otel': 0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.1)(@opentelemetry/sdk-trace-base@1.18.1) '@opentelemetry/api': 1.7.0 - '@opentelemetry/core': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/sdk-trace-base': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/sdk-trace-node': 1.18.0(@opentelemetry/api@1.7.0) + '@opentelemetry/core': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/sdk-trace-base': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/sdk-trace-node': 1.18.1(@opentelemetry/api@1.7.0) dev: false - /@effect-ts/otel@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.0)(@opentelemetry/sdk-trace-base@1.18.0): + /@effect-ts/otel@0.15.1(@effect-ts/core@0.60.5)(@opentelemetry/api@1.7.0)(@opentelemetry/core@1.18.1)(@opentelemetry/sdk-trace-base@1.18.1): resolution: {integrity: sha512-AmZJHl7t0+Peh7Yb2+hqn6r9+rd9/UfeA4AMV9h0YGTdOyouyFfD3wzWlxnAUzAQ4Lrod4kC7Noruret4EpqpA==} peerDependencies: '@effect-ts/core': ^0.60.2 @@ -5754,8 +5765,8 @@ packages: dependencies: '@effect-ts/core': 0.60.5 '@opentelemetry/api': 1.7.0 - '@opentelemetry/core': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/sdk-trace-base': 1.18.0(@opentelemetry/api@1.7.0) + '@opentelemetry/core': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/sdk-trace-base': 1.18.1(@opentelemetry/api@1.7.0) dev: false /@effect-ts/system@0.57.5: @@ -5787,7 +5798,7 @@ packages: peerDependencies: esbuild: '*' dependencies: - '@types/resolve': 1.20.4 + '@types/resolve': 1.20.5 debug: 4.3.4 esbuild: 0.19.5 escape-string-regexp: 4.0.0 @@ -6236,8 +6247,8 @@ packages: '@floating-ui/utils': 0.1.6 dev: true - /@floating-ui/react-dom@2.0.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==} + /@floating-ui/react-dom@2.0.4(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 @@ -6339,8 +6350,8 @@ packages: '@swc/helpers': 0.5.3 intl-messageformat: 10.5.5 - /@internationalized/number@3.3.0: - resolution: {integrity: sha512-PuxgnKE5NJMOGKUcX1QROo8jq7sW7UWLrL5B6Rfe8BdWgU/be04cVvLyCeALD46vvbAv3d1mUvyHav/Q9a237g==} + /@internationalized/number@3.4.0: + resolution: {integrity: sha512-8TvotW3qVDHC4uv/BVoN6Qx0Dm8clHY1/vpH+dh+XRiPW/9NVpKn1P8d1A+WLphWrMwyqyWXI7uWehJPviaeIw==} dependencies: '@swc/helpers': 0.5.3 @@ -6510,7 +6521,7 @@ packages: exit: 0.1.2 glob: 7.2.3 graceful-fs: 4.2.11 - istanbul-lib-coverage: 3.2.1 + istanbul-lib-coverage: 3.2.2 istanbul-lib-instrument: 5.2.1 istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 4.0.1 @@ -6574,7 +6585,7 @@ packages: resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.20 babel-plugin-istanbul: 6.1.1 @@ -6597,7 +6608,7 @@ packages: resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.20 babel-plugin-istanbul: 6.1.1 @@ -6623,7 +6634,7 @@ packages: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 '@types/node': 15.14.9 - '@types/yargs': 16.0.7 + '@types/yargs': 16.0.8 chalk: 4.1.2 dev: true @@ -6635,7 +6646,7 @@ packages: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 '@types/node': 15.14.9 - '@types/yargs': 17.0.30 + '@types/yargs': 17.0.31 chalk: 4.1.2 dev: true @@ -6647,7 +6658,7 @@ packages: '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 '@types/node': 20.2.5 - '@types/yargs': 17.0.30 + '@types/yargs': 17.0.31 chalk: 4.1.2 dev: true @@ -6718,11 +6729,11 @@ packages: resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} dev: true - /@lezer/common@1.1.0: - resolution: {integrity: sha512-XPIN3cYDXsoJI/oDWoR2tD++juVrhgIago9xyKhZ7IhGlzdDM9QgC8D8saKNCz5pindGcznFr2HBSsEQSWnSjw==} + /@lezer/common@1.1.1: + resolution: {integrity: sha512-aAPB9YbvZHqAW+bIwiuuTDGB4DG0sYNRObGLxud8cW7osw1ZQxfDuTZ8KQiqfZ0QJGcR34CvpTMDXEyo/+Htgg==} - /@lezer/css@1.1.3: - resolution: {integrity: sha512-SjSM4pkQnQdJDVc80LYzEaMiNy9txsFbI7HsMgeVF28NdLaAdHNtQ+kB/QqDUzRBV/75NTXjJ/R5IdC8QQGxMg==} + /@lezer/css@1.1.4: + resolution: {integrity: sha512-CuUwjidrU7FOBokqASRJc72SmJ9g1PsHXDOWMoKg4md6+2u/Zxzwx5YsYrAFxRDsLrjLlsIyEF1rZHK3gFEJbw==} dependencies: '@lezer/highlight': 1.1.6 '@lezer/lr': 1.3.14 @@ -6731,13 +6742,13 @@ packages: /@lezer/highlight@1.1.6: resolution: {integrity: sha512-cmSJYa2us+r3SePpRCjN5ymCqCPv+zyXmDl0ciWtVaNiORT/MxM7ZgOMQZADD0o51qOaOg24qc/zBViOIwAjJg==} dependencies: - '@lezer/common': 1.1.0 + '@lezer/common': 1.1.1 dev: false /@lezer/html@1.3.6: resolution: {integrity: sha512-Kk9HJARZTc0bAnMQUqbtuhFVsB4AnteR2BFUWfZV7L/x1H0aAKz6YabrfJ2gk/BEgjh9L3hg5O4y2IDZRBdzuQ==} dependencies: - '@lezer/common': 1.1.0 + '@lezer/common': 1.1.1 '@lezer/highlight': 1.1.6 '@lezer/lr': 1.3.14 dev: false @@ -6752,7 +6763,7 @@ packages: /@lezer/lr@1.3.14: resolution: {integrity: sha512-z5mY4LStlA3yL7aHT/rqgG614cfcvklS+8oFRFBYrs4YaWLJyKKM4+nN6KopToX0o9Hj6zmH6M5kinOYuy06ug==} dependencies: - '@lezer/common': 1.1.0 + '@lezer/common': 1.1.1 /@lmdb/lmdb-darwin-arm64@2.8.5: resolution: {integrity: sha512-KPDeVScZgA1oq0CiPBcOa3kHIqU+pTOwRFDIhxvmf8CTNvqdZQYp5cCKW0bUk69VygB2PuTiINFWbY78aR2pQw==} @@ -6882,7 +6893,7 @@ packages: resolution: {integrity: sha512-iA7+tyVqfrATAIsIRWQG+a7ZLLD0VaOCKV2Wd/v4mqIU3J9c4jx9p7S0nw1XH3gJCKNBOOwACOPYYSUu9pgT+w==} engines: {node: '>=12.0.0'} dependencies: - '@lezer/common': 1.1.0 + '@lezer/common': 1.1.1 '@lezer/lr': 1.3.14 json5: 2.2.3 dev: true @@ -7287,8 +7298,8 @@ packages: resolution: {integrity: sha512-AdY5wvN0P2vXBi3b29hxZgSFvdhdxPB9+f0B6s//P9Q8nibRWeA3cHm8UmLpio9ABigkVHJ5NMPk+Mz8VCCyrw==} engines: {node: '>=8.0.0'} - /@opentelemetry/context-async-hooks@1.18.0(@opentelemetry/api@1.7.0): - resolution: {integrity: sha512-pWAtTz5a2KQvTsezH/K+6sCxk7O/pOmGUq61I0m65FRRQW5Ahszo+OZHyKfIrEz3blm/WGQLCgpmWme5liCMLw==} + /@opentelemetry/context-async-hooks@1.18.1(@opentelemetry/api@1.7.0): + resolution: {integrity: sha512-HHfJR32NH2x0b69CACCwH8m1dpNALoCTtpgmIWMNkeMGNUeKT48d4AX4xsF4uIRuUoRTbTgtSBRvS+cF97qwCQ==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' @@ -7306,14 +7317,14 @@ packages: '@opentelemetry/semantic-conventions': 1.13.0 dev: false - /@opentelemetry/core@1.18.0(@opentelemetry/api@1.7.0): - resolution: {integrity: sha512-PCW0UCIazJRw4Q8m3Z1A20kJqKTCB4Ob02bFjov3sHozspHGnY21O7T8Q20XKe168N4Px+n7Mt4dkcay3fy92Q==} + /@opentelemetry/core@1.18.1(@opentelemetry/api@1.7.0): + resolution: {integrity: sha512-kvnUqezHMhsQvdsnhnqTNfAJs3ox/isB0SVrM1dhVFw7SsB7TstuVa6fgWnN2GdPyilIFLUvvbTZoVRmx6eiRg==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' dependencies: '@opentelemetry/api': 1.7.0 - '@opentelemetry/semantic-conventions': 1.18.0 + '@opentelemetry/semantic-conventions': 1.18.1 dev: false /@opentelemetry/exporter-trace-otlp-grpc@0.39.1(@opentelemetry/api@1.7.0): @@ -7369,24 +7380,24 @@ packages: '@opentelemetry/sdk-trace-base': 1.13.0(@opentelemetry/api@1.7.0) dev: false - /@opentelemetry/propagator-b3@1.18.0(@opentelemetry/api@1.7.0): - resolution: {integrity: sha512-Ebja96k7n0ll4XJZ51oEYPMqLf1pvJwfeEpUEpMcEwKt0F/tx/JfHBpisNke5/fCpTYgWWN22jviI53HJ4HyDg==} + /@opentelemetry/propagator-b3@1.18.1(@opentelemetry/api@1.7.0): + resolution: {integrity: sha512-oSTUOsnt31JDx5SoEy27B5jE1/tiPvvE46w7CDKj0R5oZhCCfYH2bbSGa7NOOyDXDNqQDkgqU1DIV/xOd3f8pw==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' dependencies: '@opentelemetry/api': 1.7.0 - '@opentelemetry/core': 1.18.0(@opentelemetry/api@1.7.0) + '@opentelemetry/core': 1.18.1(@opentelemetry/api@1.7.0) dev: false - /@opentelemetry/propagator-jaeger@1.18.0(@opentelemetry/api@1.7.0): - resolution: {integrity: sha512-9Zsx9KSNH/D07RgI9H/drr96r2+w6rdAejSPh7ZOjL7qNsMfoYuchqLL6avBk2aSuwKCfKOithsbA05aZRR2xQ==} + /@opentelemetry/propagator-jaeger@1.18.1(@opentelemetry/api@1.7.0): + resolution: {integrity: sha512-Kh4M1Qewv0Tbmts6D8LgNzx99IjdE18LCmY/utMkgVyU7Bg31Yuj+X6ZyoIRKPcD2EV4rVkuRI16WVMRuGbhWA==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' dependencies: '@opentelemetry/api': 1.7.0 - '@opentelemetry/core': 1.18.0(@opentelemetry/api@1.7.0) + '@opentelemetry/core': 1.18.1(@opentelemetry/api@1.7.0) dev: false /@opentelemetry/resources@1.13.0(@opentelemetry/api@1.7.0): @@ -7400,15 +7411,15 @@ packages: '@opentelemetry/semantic-conventions': 1.13.0 dev: false - /@opentelemetry/resources@1.18.0(@opentelemetry/api@1.7.0): - resolution: {integrity: sha512-QXdqtTQRl3fVAMu5PSxIev73iaukww/7fW4656pF607ZMAXueRHfdxOBIpGrTvfnv9mcKC3ZwGsIb366JZ2LSQ==} + /@opentelemetry/resources@1.18.1(@opentelemetry/api@1.7.0): + resolution: {integrity: sha512-JjbcQLYMttXcIabflLRuaw5oof5gToYV9fuXbcsoOeQ0BlbwUn6DAZi++PNsSz2jjPeASfDls10iaO/8BRIPRA==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' dependencies: '@opentelemetry/api': 1.7.0 - '@opentelemetry/core': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/semantic-conventions': 1.18.0 + '@opentelemetry/core': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/semantic-conventions': 1.18.1 dev: false /@opentelemetry/sdk-logs@0.39.1(@opentelemetry/api-logs@0.39.1)(@opentelemetry/api@1.7.0): @@ -7448,30 +7459,30 @@ packages: '@opentelemetry/semantic-conventions': 1.13.0 dev: false - /@opentelemetry/sdk-trace-base@1.18.0(@opentelemetry/api@1.7.0): - resolution: {integrity: sha512-OThpwn8JeU4q7exo0e8kQqs5BZGKQ9NNkes66RCs7yhUKShHEKQIYl/A3+xnGzMrbrtgogcf84brH8XD4ahjMg==} + /@opentelemetry/sdk-trace-base@1.18.1(@opentelemetry/api@1.7.0): + resolution: {integrity: sha512-tRHfDxN5dO+nop78EWJpzZwHsN1ewrZRVVwo03VJa3JQZxToRDH29/+MB24+yoa+IArerdr7INFJiX/iN4gjqg==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' dependencies: '@opentelemetry/api': 1.7.0 - '@opentelemetry/core': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/resources': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/semantic-conventions': 1.18.0 + '@opentelemetry/core': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/resources': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/semantic-conventions': 1.18.1 dev: false - /@opentelemetry/sdk-trace-node@1.18.0(@opentelemetry/api@1.7.0): - resolution: {integrity: sha512-ekjeNAALNQrtcg25AhjKirhY+5SYywmybJlmLIz9PS7O68x2XqQS4yIMEM2V4d+Flz44KRMupcnB5GAHR3m9Ig==} + /@opentelemetry/sdk-trace-node@1.18.1(@opentelemetry/api@1.7.0): + resolution: {integrity: sha512-ML0l9TNlfLoplLF1F8lb95NGKgdm6OezDS3Ymqav9sYxMd5bnH2LZVzd4xEF+ov5vpZJOGdWxJMs2nC9no7+xA==} engines: {node: '>=14'} peerDependencies: '@opentelemetry/api': '>=1.0.0 <1.8.0' dependencies: '@opentelemetry/api': 1.7.0 - '@opentelemetry/context-async-hooks': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/core': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/propagator-b3': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/propagator-jaeger': 1.18.0(@opentelemetry/api@1.7.0) - '@opentelemetry/sdk-trace-base': 1.18.0(@opentelemetry/api@1.7.0) + '@opentelemetry/context-async-hooks': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/core': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/propagator-b3': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/propagator-jaeger': 1.18.1(@opentelemetry/api@1.7.0) + '@opentelemetry/sdk-trace-base': 1.18.1(@opentelemetry/api@1.7.0) semver: 7.5.4 dev: false @@ -7480,8 +7491,8 @@ packages: engines: {node: '>=14'} dev: false - /@opentelemetry/semantic-conventions@1.18.0: - resolution: {integrity: sha512-Bxtd+h2+rBv3XBHZaoXq133/hzgAQvbl2Kg5a9cG4ozfiUJHC9Xkblt7PrLc9CbzwWQpSxUxWoZJHXT3lUlkOw==} + /@opentelemetry/semantic-conventions@1.18.1: + resolution: {integrity: sha512-+NLGHr6VZwcgE/2lw8zDIufOCGnzsA5CbQIMleXZTrgkBd0TanCX+MiDYJ1TOS4KL/Tqk0nFRxawnaYr6pkZkA==} engines: {node: '>=14'} dev: false @@ -7692,7 +7703,7 @@ packages: '@parcel/source-map': 2.1.1 '@parcel/utils': 2.10.2 browserslist: 4.22.1 - lightningcss: 1.22.0 + lightningcss: 1.22.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' @@ -7994,7 +8005,7 @@ packages: '@parcel/source-map': 2.1.1 '@parcel/utils': 2.10.2 browserslist: 4.22.1 - lightningcss: 1.22.0 + lightningcss: 1.22.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' @@ -8661,7 +8672,7 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0) + '@floating-ui/react-dom': 2.0.4(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.4)(@types/react@18.2.8)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.8)(react@18.2.0) '@radix-ui/react-context': 1.0.1(@types/react@18.2.8)(react@18.2.0) @@ -9163,199 +9174,210 @@ packages: '@babel/runtime': 7.23.2 dev: true - /@react-aria/breadcrumbs@3.5.7(react@18.2.0): - resolution: {integrity: sha512-z+L1gNyWrjZ4Fs0Vo4AkwJicPpEGIestww6r8CiTlt07eo0vCReNmB3oofI6nMJOSu51yef+qqBtFyr0tqBgiw==} + /@react-aria/breadcrumbs@3.5.8(react@18.2.0): + resolution: {integrity: sha512-jeek23igeqXct7S3ShW2jtFUc5g3fS9ZEBZkF64FWBrwfCiaZwb8TcKkK/xFw36/q5mxEt+seNiqnNzvsICJuQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/link': 3.6.1(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/breadcrumbs': 3.7.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/link': 3.6.2(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/breadcrumbs': 3.7.2(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/button@3.8.4(react@18.2.0): - resolution: {integrity: sha512-rTGZk5zu+lQNjfij2fwnw2PAgBgzNLi3zbMw1FL5/XwVx+lEH2toeqKLoqULtd7nSxskYuQz56VhmjUok6Qkmg==} + /@react-aria/button@3.9.0(react@18.2.0): + resolution: {integrity: sha512-Jri4OCN+4YmpJDPNQvk1DJoskKD9sdTxZaWWWJdAwoSIunZk3IEBXVvRfKzsEAVtI+UJN25zC2kyjXbVPS2XAA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/toggle': 3.6.3(react@18.2.0) - '@react-types/button': 3.9.0(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/toggle': 3.7.0(react@18.2.0) + '@react-types/button': 3.9.1(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/checkbox@3.11.2(react@18.2.0): - resolution: {integrity: sha512-8cgXxpc7IMJ9buw+Rbhr1xc66zNp2ePuFpjw3uWyH7S3IJEd2f5kXUDNWLXQRADJso95UlajRlJQiG4QIObEnA==} + /@react-aria/checkbox@3.12.0(react@18.2.0): + resolution: {integrity: sha512-CyFZoI+z9hhyB3wb7IBsZxE30vXfYO2vSyET16zlkJ4qiFMqMiVLE4ekq034MHltCdpAczgP5yfKgNnJOmj7vQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/label': 3.7.2(react@18.2.0) - '@react-aria/toggle': 3.8.2(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/checkbox': 3.5.1(react@18.2.0) - '@react-stately/toggle': 3.6.3(react@18.2.0) - '@react-types/checkbox': 3.5.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/form': 3.0.0(react@18.2.0) + '@react-aria/label': 3.7.3(react@18.2.0) + '@react-aria/toggle': 3.9.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/checkbox': 3.6.0(react@18.2.0) + '@react-stately/form': 3.0.0(react@18.2.0) + '@react-stately/toggle': 3.7.0(react@18.2.0) + '@react-types/checkbox': 3.6.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/combobox@3.7.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-37no1b3sRI9mDh3MpMPWNt0Q8QdoRipnx12Vx5Uvtb0PA23hwOWDquICzs157SoJpXP49/+eH6LiA0uTsqwVuQ==} + /@react-aria/combobox@3.8.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-lInzzZrH4vFlxmvDpXgQRkkREm7YIx258IRpQqll8Bny2vKMmZoF06zWMbcHP0CjFqYxExQeTjSYx0OTRRxkCQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/listbox': 3.11.1(react-dom@18.2.0)(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/listbox': 3.11.2(react-dom@18.2.0)(react@18.2.0) '@react-aria/live-announcer': 3.3.1 - '@react-aria/menu': 3.11.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/overlays': 3.18.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/selection': 3.17.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/textfield': 3.12.2(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/combobox': 3.7.1(react@18.2.0) - '@react-stately/layout': 3.13.3(react@18.2.0) - '@react-types/button': 3.9.0(react@18.2.0) - '@react-types/combobox': 3.8.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/menu': 3.11.2(react-dom@18.2.0)(react@18.2.0) + '@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0) + '@react-aria/selection': 3.17.2(react-dom@18.2.0)(react@18.2.0) + '@react-aria/textfield': 3.13.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/combobox': 3.8.0(react@18.2.0) + '@react-stately/form': 3.0.0(react@18.2.0) + '@react-types/button': 3.9.1(react@18.2.0) + '@react-types/combobox': 3.9.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/dialog@3.5.7(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-IKeBaIQBl+WYkhytyE0eISW4ApOEvCJZuw9Xq7gjlKFBlF4X6ffo8souv12KpaznK6/fp1vtEXMmy1AfejiT8Q==} + /@react-aria/dialog@3.5.8(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-KIc1FORdHhZ3bWom4qHO0hmlL4e5Hup6N25EY8HP5I7Ftv9EBBGaO5grtxZ2fX8kiCJNI4y+k67ZZ71wKJvMiA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/overlays': 3.18.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/overlays': 3.6.3(react@18.2.0) - '@react-types/dialog': 3.5.6(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/dialog': 3.5.7(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/focus@3.14.3(react@18.2.0): - resolution: {integrity: sha512-gvO/frZ7SxyfyHJYC+kRsUXnXct8hGHKlG1TwbkzCCXim9XIPKDgRzfNGuFfj0i8ZpR9xmsjOBUkHZny0uekFA==} + /@react-aria/focus@3.15.0(react@18.2.0): + resolution: {integrity: sha512-nnxRyfqHuAjRwdQ4BpQyZPtGFKZmRU6cnaIb3pqWFCqEyJQensV7MA3TJ4Jhadq67cy1Ji5SYSlr1duBwjoYvw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 clsx: 1.2.1 react: 18.2.0 dev: false - /@react-aria/grid@3.8.4(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-UxEz98Z6yxVAOq7QSZ9OmSsvMwxJDVl7dVRwUHeqWxNprk9o5GGCLjhMv948XBUEnOvLV2qgtI7UoGzSdliUJA==} + /@react-aria/form@3.0.0(react@18.2.0): + resolution: {integrity: sha512-APeGph9oTO8nro4ZObuy1hk+0hpF/ji9O3odPGhLkzP/HvW2J7NI9pjKJOINfgtYr2yvVUZf/MbTMxPwtAxhaQ==} + peerDependencies: + react: ^18.2.0 + dependencies: + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/form': 3.0.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@swc/helpers': 0.5.3 + react: 18.2.0 + dev: false + + /@react-aria/grid@3.8.5(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-0p+Bbs9rpQeOy8b75DamlzVPKylBoe/z0XwkeeTChHP2TK3TwPXh6J5EmisQx6K8zsb3iZULQRcP4QibvnMbrg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) '@react-aria/live-announcer': 3.3.1 - '@react-aria/selection': 3.17.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/grid': 3.8.2(react@18.2.0) - '@react-stately/selection': 3.14.0(react@18.2.0) - '@react-stately/virtualizer': 3.6.4(react@18.2.0) - '@react-types/checkbox': 3.5.2(react@18.2.0) - '@react-types/grid': 3.2.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/selection': 3.17.2(react-dom@18.2.0)(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/grid': 3.8.3(react@18.2.0) + '@react-stately/selection': 3.14.1(react@18.2.0) + '@react-stately/virtualizer': 3.6.5(react@18.2.0) + '@react-types/checkbox': 3.6.0(react@18.2.0) + '@react-types/grid': 3.2.3(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/i18n@3.8.4(react@18.2.0): - resolution: {integrity: sha512-YlTJn7YJlUxds/T5dNtme551qc118NoDQhK+IgGpzcmPQ3xSnwBAQP4Zwc7wCpAU+xEwnNcsGw+L1wJd49He/A==} + /@react-aria/i18n@3.9.0(react@18.2.0): + resolution: {integrity: sha512-ebGP/sVG0ZtNF4RNFzs/W01tl7waYpBManh1kKWgA4roDPFt/odkgkDBzKGl+ggBb7TQRHsfUFHuqKsrsMy9TA==} peerDependencies: react: ^18.2.0 dependencies: '@internationalized/date': 3.5.0 '@internationalized/message': 3.1.1 - '@internationalized/number': 3.3.0 + '@internationalized/number': 3.4.0 '@internationalized/string': 3.1.1 - '@react-aria/ssr': 3.8.0(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/ssr': 3.9.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 - /@react-aria/interactions@3.19.1(react@18.2.0): - resolution: {integrity: sha512-2QFOvq/rJfMGEezmtYcGcJmfaD16kHKcSTLFrZ8aeBK6hYFddGVZJZk+dXf+G7iNaffa8rMt6uwzVe/malJPBA==} + /@react-aria/interactions@3.20.0(react@18.2.0): + resolution: {integrity: sha512-JCCEyK2Nb4mEHucrgmqhTHTNAEqhsiM07jJmmY22eikxnCQnsEfdwXyg9cgZLG79D5V7jyqVRqOp2OsG7Qx7kQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/ssr': 3.8.0(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/ssr': 3.9.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 + dev: false - /@react-aria/label@3.7.2(react@18.2.0): - resolution: {integrity: sha512-rS0xQy+4RH1+JLESzLZd9H285McjNNf2kKwBhzU0CW3akjlu7gqaMKEJhX9MlpPDIVOUc2oEObGdU3UMmqa8ew==} + /@react-aria/label@3.7.3(react@18.2.0): + resolution: {integrity: sha512-v1zuqbpYyYaPjrBWpceGjMpwP4ne6fLoOXdoIZoKLux2jkAcyIF2kIJFiyYoPQYQJWGRNo7q1oSwamxmng4xJw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/label': 3.8.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/link@3.6.1(react@18.2.0): - resolution: {integrity: sha512-uVkuNHabxE11Eqeo0d1RA86EckOlfJ2Ld8uN8HnTxiLetXLZYUMBwlZfBJvT3RdwPtTG7jC3OK3BvwiyIJrtZw==} + /@react-aria/link@3.6.2(react@18.2.0): + resolution: {integrity: sha512-v9gXgQ3Gev0JOlg2MAXcubDMgX+0BlJ+hTyFYFMuN/4jVBlAe426WKbjg+6MMzxwukWg9C3Q08JzqdFTi4cBng==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/link': 3.5.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/link': 3.5.2(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/listbox@3.11.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-AkguQaIkqpP5oe++EZqYHowD7FfeQs+yY0QZVSsVPpNExcBug8/GcXvhSclcOxdh6ekZg4Wwcq7K0zhuTSOPzg==} + /@react-aria/listbox@3.11.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-FXdoqYLUTJn16OxodyS518PIcwzFkCfW5bxQepoy88NDMGtqp6u8fvEPpAoZbomvw/pV9MuEaMAw9qLyfkD4DA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/label': 3.7.2(react@18.2.0) - '@react-aria/selection': 3.17.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/list': 3.10.0(react@18.2.0) - '@react-types/listbox': 3.4.5(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/label': 3.7.3(react@18.2.0) + '@react-aria/selection': 3.17.2(react-dom@18.2.0)(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/list': 3.10.1(react@18.2.0) + '@react-types/listbox': 3.4.6(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -9367,120 +9389,118 @@ packages: '@swc/helpers': 0.5.3 dev: false - /@react-aria/menu@3.11.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-1eVVDrGnSExaL7e8IiaM9ndWTjT23rsnQGUK3p66R1Ojs8Q5rPBuJpP74rsmIpYiKOCr8WyZunjm5Fjv5KfA5Q==} + /@react-aria/menu@3.11.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-I4R5FOvRtwIQW+0naXav5giZBp935X2tXB2xBg/cSAYDXgfLmFPLHkyPbO77hR6FwazfFfJoKdn0pVcRox3lrQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/overlays': 3.18.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/selection': 3.17.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/menu': 3.5.6(react@18.2.0) - '@react-stately/tree': 3.7.3(react@18.2.0) - '@react-types/button': 3.9.0(react@18.2.0) - '@react-types/menu': 3.9.5(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/overlays': 3.19.0(react-dom@18.2.0)(react@18.2.0) + '@react-aria/selection': 3.17.2(react-dom@18.2.0)(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/menu': 3.5.7(react@18.2.0) + '@react-stately/tree': 3.7.4(react@18.2.0) + '@react-types/button': 3.9.1(react@18.2.0) + '@react-types/menu': 3.9.6(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/overlays@3.18.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-C74eZbTp3OA/gXy9/+4iPrZiz7g27Zy6Q1+plbg5QTLpsFLBt2Ypy9jTTANNRZfW7a5NW/Bnw9WIRjCdtTBRXw==} + /@react-aria/overlays@3.19.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-VN5GkB8+uZ2cfXljBtkqmrsAhBdGoj4un/agH0Qyihi2dazsMeafczSNnqzbpVgB4Zt2UHPJUkKwihgzXRxJJA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/ssr': 3.8.0(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-aria/visually-hidden': 3.8.6(react@18.2.0) - '@react-stately/overlays': 3.6.3(react@18.2.0) - '@react-types/button': 3.9.0(react@18.2.0) - '@react-types/overlays': 3.8.3(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/ssr': 3.9.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-aria/visually-hidden': 3.8.7(react@18.2.0) + '@react-stately/overlays': 3.6.4(react@18.2.0) + '@react-types/button': 3.9.1(react@18.2.0) + '@react-types/overlays': 3.8.4(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/progress@3.4.7(react@18.2.0): - resolution: {integrity: sha512-wQ+xnzt5bBdbyQ2Qx80HxaFrPZRFKge57tmJWg4qelo7tzmgb3a22tf0Ug4C3gEz/uAv0JQWOtqLKTxjsiVP7g==} + /@react-aria/progress@3.4.8(react@18.2.0): + resolution: {integrity: sha512-Nah3aj5BNRa0+urQZimzb0vuKQK7lsc8BrUwJuHTwGRBSWUjCADExrJYdhDIR/nLUV2TCmAQl+GJtTgbEEj0DQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/label': 3.7.2(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/progress': 3.5.0(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/label': 3.7.3(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/progress': 3.5.1(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/radio@3.8.2(react@18.2.0): - resolution: {integrity: sha512-j8yyGjboTgoBEQWlnJbQVvegKiUeQEUvU/kZ7ZAdj+eAL3BqfO6FO7yt6WzK7ZIBzjGS9YbesaUa3hwIjDi3LA==} + /@react-aria/radio@3.9.0(react@18.2.0): + resolution: {integrity: sha512-kr3+OQ1YU/3mURZfCsYaQmJ/c15qOm8uScaDRC39qz97bLNASakQqMImIaS+GluPKx1PEW3y2ErAgLplH28zZw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/label': 3.7.2(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/radio': 3.9.1(react@18.2.0) - '@react-types/radio': 3.5.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/form': 3.0.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/label': 3.7.3(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/radio': 3.10.0(react@18.2.0) + '@react-types/radio': 3.6.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/selection@3.17.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-g5gkSc/M+zJiVgWbUpKN095ea0D4fxdluH9ZcXxN4AAvcrVfEJyAnMmWOIKRebN8xR0KPfNRnKB7E6jld2tbuQ==} + /@react-aria/selection@3.17.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-AXXY3eOIWnITabMn6c0bpLPXkSX7040LOZU+7pQgtZJwDdZorLuKw4i7WS5i71LcV71ywG4mtqc9mOb/GfhUbg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/selection': 3.14.0(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/selection': 3.14.1(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/slider@3.7.2(react@18.2.0): - resolution: {integrity: sha512-io7yJm2jS0gK1ILE9kjClh9zylKsOLbRy748CyD66LDV0ZIjj2D/uZF6BtfKq7Zhc2OsMvDB9+e2IkrszKe8uw==} + /@react-aria/slider@3.7.3(react@18.2.0): + resolution: {integrity: sha512-AbrTD9UzMn0CwxFjOhJHz2ms2zdJlBL3XnbvqkpsmpXUl0u8WT1QAEaMnS5+792gnSGZs/ARDmse53o+IO8wTA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/label': 3.7.2(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/radio': 3.9.1(react@18.2.0) - '@react-stately/slider': 3.4.4(react@18.2.0) - '@react-types/radio': 3.5.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/slider': 3.6.2(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/label': 3.7.3(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/slider': 3.4.5(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/slider': 3.7.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/ssr@3.8.0(react@18.2.0): - resolution: {integrity: sha512-Y54xs483rglN5DxbwfCPHxnkvZ+gZ0LbSYmR72LyWPGft8hN/lrl1VRS1EW2SMjnkEWlj+Km2mwvA3kEHDUA0A==} + /@react-aria/ssr@3.9.0(react@18.2.0): + resolution: {integrity: sha512-Bz6BqP6ZorCme9tSWHZVmmY+s7AU8l6Vl2NUYmBzezD//fVHHfFo4lFBn5tBuAaJEm3AuCLaJQ6H2qhxNSb7zg==} engines: {node: '>= 12'} peerDependencies: react: ^18.2.0 @@ -9488,166 +9508,162 @@ packages: '@swc/helpers': 0.5.3 react: 18.2.0 - /@react-aria/switch@3.5.6(react@18.2.0): - resolution: {integrity: sha512-W6H/0TFa72MJY02AatUERt5HKgaDTF8lOaTjNNmS6U6U20+//uvrVCqcBof8OMe4M60mQpkp7Bd6756CJAMX1w==} + /@react-aria/switch@3.5.7(react@18.2.0): + resolution: {integrity: sha512-zBEsB071zzhQ82RwAA42pFLXHgrpya0OoRAsTO6jHZwiaYMsyqJI2eiXd7F6rqklpgyO6k7jOQklGUuoSJW4pA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/toggle': 3.8.2(react@18.2.0) - '@react-stately/toggle': 3.6.3(react@18.2.0) - '@react-types/switch': 3.4.2(react@18.2.0) + '@react-aria/toggle': 3.9.0(react@18.2.0) + '@react-stately/toggle': 3.7.0(react@18.2.0) + '@react-types/switch': 3.5.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/table@3.13.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-TBtCmJsKl3rJW/dCzA0ZxPGb8mN7ndbryLh3u+iV/+GVAVsytvAenOGrq9sLHHWXwQo5RJoO1bkUudvrZrJ5/g==} + /@react-aria/table@3.13.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-bJgMx2SZ8SFmTosbv6k1lZ1a0Yw3f8tzWhpIQodCaMHhtI7izA6YqDNx47NeBNYpVm9DFfAoWbb79HFJ+OKIJA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/grid': 3.8.4(react-dom@18.2.0)(react@18.2.0) - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/grid': 3.8.5(react-dom@18.2.0)(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) '@react-aria/live-announcer': 3.3.1 - '@react-aria/selection': 3.17.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-aria/visually-hidden': 3.8.6(react@18.2.0) - '@react-stately/collections': 3.10.2(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-aria/visually-hidden': 3.8.7(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) '@react-stately/flags': 3.0.0 - '@react-stately/table': 3.11.2(react@18.2.0) - '@react-stately/virtualizer': 3.6.4(react@18.2.0) - '@react-types/checkbox': 3.5.2(react@18.2.0) - '@react-types/grid': 3.2.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/table': 3.9.0(react@18.2.0) + '@react-stately/table': 3.11.3(react@18.2.0) + '@react-stately/virtualizer': 3.6.5(react@18.2.0) + '@react-types/checkbox': 3.6.0(react@18.2.0) + '@react-types/grid': 3.2.3(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/table': 3.9.1(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/tabs@3.8.1(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-3kRd5rYKclmW9lllcANq0oun2d1pZq7Onma95laYfrWtPBZ3YDVKOkujGSqdfSQAFVshWBjl2Q03yyvcRiwzbQ==} + /@react-aria/tabs@3.8.2(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-zDfeEEyJmcnH9TFvJECWIrJpxX4SmREFV1/P8hN6ZUJPYoeiGMXYYFvjcRb1r3LN8XKlbwR37AQ3Cn1/yhrUwQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/selection': 3.17.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/list': 3.10.0(react@18.2.0) - '@react-stately/tabs': 3.6.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/tabs': 3.3.3(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/selection': 3.17.2(react-dom@18.2.0)(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/tabs': 3.6.2(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/tabs': 3.3.4(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/textfield@3.12.2(react@18.2.0): - resolution: {integrity: sha512-wRg8LJjZV6o4S/LRFqxs5waGDTiuIa/CRN+/X37Fu7GeZFeK0IBvWjKPlXLe7gMswaFqRmTKnQCU42mzUdDK1g==} + /@react-aria/textfield@3.13.0(react@18.2.0): + resolution: {integrity: sha512-sUlinDE+k/WhbskyqVOkuffuhiQpjgvp+iGRoralStVgb8Tcb+POxgAlw5jS4tNjdivCb3IjVJemUNJM7xsxxA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/label': 3.7.2(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/textfield': 3.8.1(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/form': 3.0.0(react@18.2.0) + '@react-aria/label': 3.7.3(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/form': 3.0.0(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/textfield': 3.9.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/toggle@3.8.2(react@18.2.0): - resolution: {integrity: sha512-0+RmlOQtyRmU+Dd9qM9od4DPpITC7jqA+n3aZn732XtCsosz5gPGbhFuLbSdWRZ42FQgqo7pZQWaDRZpJPkipA==} + /@react-aria/toggle@3.9.0(react@18.2.0): + resolution: {integrity: sha512-2YMWYQUEmcoAXtrAE86QXBS9XlmJyV6IFRlMTBNaeLTdH3AmACExgsyU66Tt0sKl6LMDMI376ItMFqAz27BBdQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/toggle': 3.6.3(react@18.2.0) - '@react-types/checkbox': 3.5.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/switch': 3.4.2(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/toggle': 3.7.0(react@18.2.0) + '@react-types/checkbox': 3.6.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/tooltip@3.6.4(react@18.2.0): - resolution: {integrity: sha512-5WCOiRSugzbfEOH+Bjpuf6EsNyynqq5S1uDh/P6J8qiYDjc0xLRJ5dyLdytX7c8MK9Y0pIHi6xb0xR9jDqJXTw==} + /@react-aria/tooltip@3.6.5(react@18.2.0): + resolution: {integrity: sha512-hXw4Z8nYLOWz3QOQ807wWZdvDwR3gofsmZhAehg2HPRwdRfCQK+1cjVKeUd9cKCAxs0Cay7dV0oUdilLbCQ2Gg==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/tooltip': 3.4.5(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/tooltip': 3.4.5(react@18.2.0) + '@react-aria/focus': 3.15.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/tooltip': 3.4.6(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/tooltip': 3.4.6(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-aria/utils@3.21.1(react@18.2.0): - resolution: {integrity: sha512-tySfyWHXOhd/b6JSrSOl7krngEXN3N6pi1hCAXObRu3+MZlaZOMDf/j18aoteaIF2Jpv8HMWUJUJtQKGmBJGRA==} + /@react-aria/utils@3.22.0(react@18.2.0): + resolution: {integrity: sha512-Qi/m65GFFljXA/ayj1m5g3KZdgbZY3jacSSqD5vNUOEGiKsn4OQcsw8RfC2c0SgtLV1hLzsfvFI1OiryPlGCcw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/ssr': 3.8.0(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/ssr': 3.9.0(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 clsx: 1.2.1 react: 18.2.0 - /@react-aria/virtualizer@3.9.4(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-KgFi5DhCncZDrNV3tEhlIKYgcXKP8QiwPkzutt1vAzZwwWRPHZiLZxb2p+XGjwzvwxn2Hnz1JaC770nsNPO6pQ==} + /@react-aria/virtualizer@3.9.5(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-+lmPMlRlqk/vWHtL5BGYVGlvkwzrFZCp3n9J2dqOEqITrIFiBFKj7tDbEeV455E7i0ypwIKPdeYLDvIsxCqxgg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@react-aria/focus': 3.14.3(react@18.2.0) - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/virtualizer': 3.6.4(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/i18n': 3.9.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-stately/virtualizer': 3.6.5(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@react-aria/visually-hidden@3.8.6(react@18.2.0): - resolution: {integrity: sha512-6DmS/JLbK9KgU/ClK1WjwOyvpn8HtwYn+uisMLdP7HlCm692peYOkXDR1jqYbHL4GlyLCD0JLI+/xGdVh5aR/w==} + /@react-aria/visually-hidden@3.8.7(react@18.2.0): + resolution: {integrity: sha512-OuIGMVQIt7GC43h4x35BgkZid8lhoPu7Xz4TQRP8nvOJWb1lH7ehrRRuGdUsK3y90nwpxTdNdg4DILblg+VaLw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/interactions': 3.20.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 - clsx: 1.2.1 react: 18.2.0 dev: false /@react-bootstrap/babel-preset@2.2.0: resolution: {integrity: sha512-lJNNow6APKf1pH5/R60i7c/QGYbx/VCKdqzWWIMDyyXvNDGFwcM2T0DNOBqe9Rjz8rEROS/mKGLN3C1Im6+adQ==} dependencies: - '@babel/core': 7.23.2 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) - '@babel/plugin-proposal-export-default-from': 7.22.17(@babel/core@7.23.2) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.2) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2) - '@babel/preset-env': 7.23.2(@babel/core@7.23.2) - '@babel/preset-react': 7.22.15(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.3) + '@babel/plugin-proposal-export-default-from': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.23.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.23.3) + '@babel/preset-env': 7.23.3(@babel/core@7.23.3) + '@babel/preset-react': 7.23.3(@babel/core@7.23.3) babel-plugin-add-module-exports: 1.0.4 - babel-plugin-dev-expression: 0.2.3(@babel/core@7.23.2) - babel-plugin-transform-next-use-client: 1.1.1(@babel/core@7.23.2) + babel-plugin-dev-expression: 0.2.3(@babel/core@7.23.3) + babel-plugin-transform-next-use-client: 1.1.1(@babel/core@7.23.3) babel-plugin-transform-react-remove-prop-types: 0.4.24 babel-preset-env-modules: 1.0.1 transitivePeerDependencies: @@ -9672,51 +9688,52 @@ packages: react: 18.2.0 dev: false - /@react-stately/checkbox@3.5.1(react@18.2.0): - resolution: {integrity: sha512-j+EbHpZgS8J2LbysbVDK3vQAJc7YZHOjHRX20auEzVmulAFKwkRpevo/R5gEL4EpOz4bRyu+BH/jbssHXG+Ezw==} + /@react-stately/checkbox@3.6.0(react@18.2.0): + resolution: {integrity: sha512-e1ChMwGovcOEDcdizqXDT6eDZixIMiPQOzNV5wPQ91SlGaIry9b0lQnK18tHg3yv2iiS6Ipj96cGBUKLJqQ+cQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/toggle': 3.6.3(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/checkbox': 3.5.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-stately/form': 3.0.0(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/checkbox': 3.6.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/collections@3.10.2(react@18.2.0): - resolution: {integrity: sha512-h+LzCa1gWhVRWVH8uR+ZxsKmFSx7kW3RIlcjWjhfyc59BzXCuojsOJKTTAyPVFP/3kOdJeltw8g/reV1Cw/x6Q==} + /@react-stately/collections@3.10.3(react@18.2.0): + resolution: {integrity: sha512-fA28HIApAIz9sNGeOVXZJPgV5Kig6M72KI1t9sUbnRUr9Xq9OMJTR6ElDMXNe0iTeZffRFDOPYyqnX9zkxof6Q==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/combobox@3.7.1(react@18.2.0): - resolution: {integrity: sha512-JMKsbhCgP8HpwRjHLBmJILzyU9WzWykjXyP4QF/ifmkzGRjC/s46+Ieq+WonjVaLNGCoi6XqhYn2x2RyACSbsQ==} + /@react-stately/combobox@3.8.0(react@18.2.0): + resolution: {integrity: sha512-F74Avf7+8ruRqEB+3Lh6/C5jXc3ESJbRf9ovUxhmNAzBGeFKesPn5HpEpo87C+3OukGb+/Buvi3Rhib9+HVBKA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/list': 3.10.0(react@18.2.0) - '@react-stately/menu': 3.5.6(react@18.2.0) - '@react-stately/select': 3.5.5(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/combobox': 3.8.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/form': 3.0.0(react@18.2.0) + '@react-stately/list': 3.10.1(react@18.2.0) + '@react-stately/menu': 3.5.7(react@18.2.0) + '@react-stately/select': 3.6.0(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/combobox': 3.9.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/data@3.10.3(react@18.2.0): - resolution: {integrity: sha512-cC9mxCZU4N9GbdOB4g2/J8+W+860GvBd874to0ObSc/XOR4VbuIsxAFIabW5UwmJV+XaqqK4TUBG0C6YScXeWQ==} + /@react-stately/data@3.11.0(react@18.2.0): + resolution: {integrity: sha512-0BlPT58WrAtUvpiEfUuyvIsGFTzp/9vA5y+pk53kGJhOdc5tqBGHi9cg40pYE/i1vdHJGMpyHGRD9nkQb8wN3Q==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 @@ -9726,410 +9743,402 @@ packages: '@swc/helpers': 0.4.36 dev: false - /@react-stately/grid@3.8.2(react@18.2.0): - resolution: {integrity: sha512-CB5QpYjXFatuXZodj3r0vIiqTysUe6DURZdJu6RKG2Elx19n2k49fKyx7P7CTKD2sPBOMSSX4edWuTzpL8Tl+A==} + /@react-stately/form@3.0.0(react@18.2.0): + resolution: {integrity: sha512-C8wkfFmtx1escizibhdka5JvTy9/Vp173CS9cakjvWTmnjYYC1nOlzwp7BsYWTgerCFbRY/BU/Cf/bJDxPiUKQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/selection': 3.14.0(react@18.2.0) - '@react-types/grid': 3.2.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/layout@3.13.3(react@18.2.0): - resolution: {integrity: sha512-AZ2Sm7iSRcRsNATXg7bjbPpZIjV3z7bHAJtICWA1wHieVVSV1FFoyDyiXdDTIOxyuGeytNPaxtGfPpFZia9Wsg==} + /@react-stately/grid@3.8.3(react@18.2.0): + resolution: {integrity: sha512-JceGSJcuO6Zv+Aq5s2NZvmbMjdPjTtGNQR9kTgXKC/pOfM6FJ58bJiOmEllyN6oawqh4Ey8Xdqk9NuW4l2ctuw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/table': 3.11.2(react@18.2.0) - '@react-stately/virtualizer': 3.6.4(react@18.2.0) - '@react-types/grid': 3.2.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/table': 3.9.0(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/selection': 3.14.1(react@18.2.0) + '@react-types/grid': 3.2.3(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/list@3.10.0(react@18.2.0): - resolution: {integrity: sha512-Yspumiln2fvzoO8AND8jNAIfBu1XPaYioeeDmsB5Vrya2EvOkzEGsauQSNBJ6Vhee1fQqpnmzH1HB0jfIKUfzg==} + /@react-stately/layout@3.13.4(react@18.2.0): + resolution: {integrity: sha512-gmtkB+EISfB1Ne/56cd4djJXUwCtcrjzA7BHzBBXcjJNmTc/NQh5+qh66JHkXTKF3PT5FdVtmO2MODqGaWkUeg==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/selection': 3.14.0(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/table': 3.11.3(react@18.2.0) + '@react-stately/virtualizer': 3.6.5(react@18.2.0) + '@react-types/grid': 3.2.3(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/table': 3.9.1(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/menu@3.5.6(react@18.2.0): - resolution: {integrity: sha512-Cm82SVda1qP71Fcz8ohIn3JYKmKCuSUIFr1WsEo/YwDPkX0x9+ev6rmphHTsxDdkCLcYHSTQL6e2KL0wAg50zA==} + /@react-stately/list@3.10.1(react@18.2.0): + resolution: {integrity: sha512-iVarLMd7FmMT0H20dRWsFOHHX5+c4gK51AXP2BSr1VtDSfbL4dgaGgu7IaAMVc/rO0au1e1tPM2hutiIFvPcnA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/overlays': 3.6.3(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/menu': 3.9.5(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/selection': 3.14.1(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/overlays@3.6.3(react@18.2.0): - resolution: {integrity: sha512-K3eIiYAdAGTepYqNf2pVb+lPqLoVudXwmxPhyOSZXzjgpynD6tR3E9QfWQtkMazBuU73PnNX7zkH4l87r2AmTg==} + /@react-stately/menu@3.5.7(react@18.2.0): + resolution: {integrity: sha512-bzTmAqzcMNatvyruWlvOdZSmMhz3+mkdxtqaZzYHq+DpR6ka57lIRj8dBnZWQGwV3RypMZfz+X6aIX4kruGVbw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/overlays': 3.8.3(react@18.2.0) + '@react-stately/overlays': 3.6.4(react@18.2.0) + '@react-types/menu': 3.9.6(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/radio@3.9.1(react@18.2.0): - resolution: {integrity: sha512-DrQPHiP9pz1uQbBP/NDFdO8uOZigPbvuAWPUNK7Gq6kye5lW+RsS97IUnYJePNTSMvhiAVz/aleBt05Gr/PZmg==} + /@react-stately/overlays@3.6.4(react@18.2.0): + resolution: {integrity: sha512-tHEaoAGpE9dSnsskqLPVKum59yGteoSqsniTopodM+miQozbpPlSjdiQnzGLroy5Afx5OZYClE616muNHUILXA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/radio': 3.5.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/overlays': 3.8.4(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/select@3.5.5(react@18.2.0): - resolution: {integrity: sha512-nDkvFeAZbN7dK/Ty+mk1h4LZYYaoPpkwrG49wa67DTHkCc8Zk2+UEjhKPwOK20th4vfJKHzKjVa0Dtq4DIj0rw==} + /@react-stately/radio@3.10.0(react@18.2.0): + resolution: {integrity: sha512-d8IgZtUq/4vhE7YhyBVg1QdVoFS0caIcvPumXqtp/5vlDgpUsVy9jSeWtbk0H4FyUcmJlQhRcTylKB9THXY1YQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/list': 3.10.0(react@18.2.0) - '@react-stately/menu': 3.5.6(react@18.2.0) - '@react-stately/selection': 3.14.0(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/select': 3.8.4(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-stately/form': 3.0.0(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/radio': 3.6.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/selection@3.14.0(react@18.2.0): - resolution: {integrity: sha512-E5rNH+gVGDJQDSnPO30ynu6jZ0Z0++VPUbM5Bu3P/bZ3+TgoTtDDvlONba3fspgSBDfdnHpsuG9eqYnDtEAyYA==} + /@react-stately/select@3.6.0(react@18.2.0): + resolution: {integrity: sha512-GvSE4DXmcvdRNUc+ciPU7gedt7LfRO8FFFIzhB/bCQhUlK6/xihUPrGXayzqxLeTQKttMH323LuYFKfwpJRhsA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-stately/form': 3.0.0(react@18.2.0) + '@react-stately/list': 3.10.1(react@18.2.0) + '@react-stately/menu': 3.5.7(react@18.2.0) + '@react-types/select': 3.9.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/slider@3.4.4(react@18.2.0): - resolution: {integrity: sha512-tFexbtN50zSo6e1Gi8K9MBfqgOo1eemF/VvFbde3PP9nG+ODcxEIajaYDPlMUuFw5cemJuoKo3+G5NBBn2/AjQ==} + /@react-stately/selection@3.14.1(react@18.2.0): + resolution: {integrity: sha512-96/CerrB6yH4Ad9FkzBzyVerSPjcIj1NBTWTFHo1N+oHECvyGsDxZl7Y4LQR++teFK66FhX5KjCJQGae4IZd6A==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/i18n': 3.8.4(react@18.2.0) - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/slider': 3.6.2(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/table@3.11.2(react@18.2.0): - resolution: {integrity: sha512-EVgksPAsnEoqeT+5ej4aGJdu9kAu3LCDqQfnmif2P/R1BP5eDU1Kv0N/mV/90Xp546g7kuZ1wS2if/hWDXEA5g==} + /@react-stately/slider@3.4.5(react@18.2.0): + resolution: {integrity: sha512-lJPZC8seYbnZDqAlZm3/QC95I5iluG8ouwkPMmvtWCz1baayV/jJtfxA/74zR7Vcob9Fe7O57g8Edhz/hv9xOQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/flags': 3.0.0 - '@react-stately/grid': 3.8.2(react@18.2.0) - '@react-stately/selection': 3.14.0(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/grid': 3.2.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/table': 3.9.0(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/slider': 3.7.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/tabs@3.6.1(react@18.2.0): - resolution: {integrity: sha512-akGmejEaXg2RMZuWbRZ0W1MLr515e0uV0iVZefKBlcHtD/mK9K9Bo2XxBScf0TIhaPJ6Qa2w2k2+V7RmT7r8Ag==} + /@react-stately/table@3.11.3(react@18.2.0): + resolution: {integrity: sha512-r0rzSKbtMG4tjFpCGtXb8p6hOuek03c6rheJE88z4I/ujZ5EmEO6Ps8q0JMNEDCY2qigvKM+ODisMBeZCEkIJg==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/list': 3.10.0(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) - '@react-types/tabs': 3.3.3(react@18.2.0) + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/flags': 3.0.0 + '@react-stately/grid': 3.8.3(react@18.2.0) + '@react-stately/selection': 3.14.1(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/grid': 3.2.3(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/table': 3.9.1(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/toggle@3.6.3(react@18.2.0): - resolution: {integrity: sha512-4kIMTjRjtaapFk4NVmBoFDUYfkmyqDaYAmHpRyEIHTDpBYn0xpxZL/MHv9WuLYa4MjJLRp0MeicuWiZ4ai7f6Q==} + /@react-stately/tabs@3.6.2(react@18.2.0): + resolution: {integrity: sha512-f+U4D1FAVfVVcNRbtKIv4GrO37CLFClYQlXx9zIuSXjHsviapVD2IQSyAmpKo/CbgXhYRMdGwENZdOsmF/Ns7g==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/checkbox': 3.5.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-stately/list': 3.10.1(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@react-types/tabs': 3.3.4(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/tooltip@3.4.5(react@18.2.0): - resolution: {integrity: sha512-VrwQcjnrNddSulh+Zql8P8cORRnWqSPkHPqQwD/Ly91Rva3gUIy+VwnYeThbGDxRzlUv1wfN+UQraEcrgwSZ/Q==} + /@react-stately/toggle@3.7.0(react@18.2.0): + resolution: {integrity: sha512-TRksHkCJk/Xogq4181g3CYgJf+EfsJCqX5UZDSw1Z1Kgpvonjmdf6FAfQfCh9QR2OuXUL6hOLUDVLte5OPI+5g==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/overlays': 3.6.3(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/tooltip': 3.4.5(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/checkbox': 3.6.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/tree@3.7.3(react@18.2.0): - resolution: {integrity: sha512-wB/68qetgCYTe7OMqbTFmtWRrEqVdIH2VlACPCsMlECr3lW9TrrbrOwlHIJfLhkxWvY3kSCoKcOJ5KTiJC9LGA==} + /@react-stately/tooltip@3.4.6(react@18.2.0): + resolution: {integrity: sha512-uL93bmsXf+OOgpKLPEKfpDH4z+MK2CuqlqVxx7rshN0vjWOSoezE5nzwgee90+RpDrLNNNWTNa7n+NkDRpI1jA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-stately/collections': 3.10.2(react@18.2.0) - '@react-stately/selection': 3.14.0(react@18.2.0) - '@react-stately/utils': 3.8.0(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-stately/overlays': 3.6.4(react@18.2.0) + '@react-types/tooltip': 3.4.6(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-stately/utils@3.8.0(react@18.2.0): - resolution: {integrity: sha512-wCIoFDbt/uwNkWIBF+xV+21k8Z8Sj5qGO3uptTcVmjYcZngOaGGyB4NkiuZhmhG70Pkv+yVrRwoC1+4oav9cCg==} + /@react-stately/tree@3.7.4(react@18.2.0): + resolution: {integrity: sha512-0yvVODBS8WnSivLFX5ccEjCl2NA/8lbEt1E48wVcY1xcXgISNpw5MSGK5jC6YrtJPIqVolQIkNSbMreXGBktIg==} peerDependencies: react: ^18.2.0 dependencies: + '@react-stately/collections': 3.10.3(react@18.2.0) + '@react-stately/selection': 3.14.1(react@18.2.0) + '@react-stately/utils': 3.9.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 + dev: false - /@react-stately/virtualizer@3.6.4(react@18.2.0): - resolution: {integrity: sha512-lf3+FDRnyLyY1IhLfwA6GuE/9F3nIEc5p245NkUSN1ngKlXI5PvLHNatiVbONC3wt90abkpMK+WMhu2S/B+4lA==} + /@react-stately/utils@3.9.0(react@18.2.0): + resolution: {integrity: sha512-yPKFY1F88HxuZ15BG2qwAYxtpE4HnIU0Ofi4CuBE0xC6I8mwo4OQjDzi+DZjxQngM9D6AeTTD6F1V8gkozA0Gw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/utils': 3.21.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) '@swc/helpers': 0.5.3 react: 18.2.0 - dev: false - /@react-types/accordion@3.0.0-alpha.17(react@18.2.0): - resolution: {integrity: sha512-Wsp31bYRu9wy4zAAV2W8FLvVGFF3Vk/JKn2MxqhzaSHwHBw/dfgJTvRRUW+OmBgnqVN97ur893TP9A3odpoZEg==} + /@react-stately/virtualizer@3.6.5(react@18.2.0): + resolution: {integrity: sha512-v0cZeNCGPMeo3LP4UrGuDo3Xpq7ufNaZyGObgSvdrIW49qK5F02kczcKy6NKg+QfOgC/+Nc9Tof/2S8dcxDrCA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-aria/utils': 3.22.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) + '@swc/helpers': 0.5.3 react: 18.2.0 dev: false - /@react-types/breadcrumbs@3.7.1(react@18.2.0): - resolution: {integrity: sha512-WWC5pQdWkAzJ2hkx4w7f+waDLLvuD9vowKey+bdLoEmKvdaHNLLVUQPEyFm6SQ5+E3pNBWkNx9a+0S9iW6wa+Q==} + /@react-types/accordion@3.0.0-alpha.18(react@18.2.0): + resolution: {integrity: sha512-j+RSTuFYeZdOAWqBsWYXXu/zJlkYfsRbxsrQFEkmPNFRGzwF/vhrCs4wtlYCjkz/A/qqfU66Uv/0o6bN4NOIDA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/link': 3.5.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/button@3.9.0(react@18.2.0): - resolution: {integrity: sha512-YhbchUDB7yL88ZFA0Zqod6qOMdzCLD5yVRmhWymk0yNLvB7EB1XX4c5sRANalfZSFP0RpCTlkjB05Hzp4+xOYg==} + /@react-types/breadcrumbs@3.7.2(react@18.2.0): + resolution: {integrity: sha512-esl6RucDW2CNMsApJxNYfMtDaUcfLlwKMPH/loYsOBbKxGl2HsgVLMcdpjEkTRs2HCTNCbBXWpeU8AY77t+bsw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/link': 3.5.2(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/checkbox@3.5.2(react@18.2.0): - resolution: {integrity: sha512-iRQrbY8vRRya3bt3i7sHAifhP/ozfkly1/TItkRK5MNPRNPRDKns55D8ZFkRMj4NSyKQpjVt1zzlBXrnSOxWdQ==} + /@react-types/button@3.9.1(react@18.2.0): + resolution: {integrity: sha512-bf9iTar3PtqnyV9rA+wyFyrskZKhwmOuOd/ifYIjPs56YNVXWH5Wfqj6Dx3xdFBgtKx8mEVQxVhoX+WkHX+rtw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/combobox@3.8.1(react@18.2.0): - resolution: {integrity: sha512-F910tk8K5qE0TksJ9LRGcJIpaPzpsCnFxT6E9oJH3ssK4N8qZL8QfT9tIKo2XWhK9Uxb/tIZOGQwA8Cn7TyZrA==} + /@react-types/checkbox@3.6.0(react@18.2.0): + resolution: {integrity: sha512-vgbuJzQpVCNT5AZWV0OozXCnihqrXxoZKfJFIw0xro47pT2sn3t5UC4RA9wfjDGMoK4frw1K/4HQLsQIOsPBkw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/dialog@3.5.6(react@18.2.0): - resolution: {integrity: sha512-lwwaAgoi4xe4eEJxBns+cBIRstIPTKWWddMkp51r7Teeh2uKs1Wki7N+Acb9CfT6JQTQDqtVJm6K76rcqNBVwg==} + /@react-types/combobox@3.9.0(react@18.2.0): + resolution: {integrity: sha512-VAQWM2jrIWROgcTKxj4k37WWpK/1zRjj1HfGeuenAQyOQwImqDwCHx5YxQR1GiUEFne4v1yXe2khT0T5Kt2vDg==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/overlays': 3.8.3(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/grid@3.2.2(react@18.2.0): - resolution: {integrity: sha512-R4USOpn1xfsWVGwZsakRlIdsBA10XNCnAUcRXQTn2JmzLjDCtcln6uYo9IFob080lQuvjkSw3j4zkw7Yo4Qepg==} + /@react-types/dialog@3.5.7(react@18.2.0): + resolution: {integrity: sha512-geYoqAyQaTLG43AaXdMUVqZXYgkSifrD9cF7lR2kPAT0uGFv0YREi6ieU+aui8XJ83EW0xcxP+EPWd2YkN4D4w==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/overlays': 3.8.4(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/label@3.8.1(react@18.2.0): - resolution: {integrity: sha512-fA6zMTF2TmfU7H8JBJi0pNd8t5Ak4gO+ZA3cZBysf8r3EmdAsgr3LLqFaGTnZzPH1Fux6c7ARI3qjVpyNiejZQ==} + /@react-types/grid@3.2.3(react@18.2.0): + resolution: {integrity: sha512-GQM4RDmYhstcYZ0Odjq+xUwh1fhLmRebG6qMM8OXHTPQ77nhl3wc1UTGRhZm6mzEionplSRx4GCpEMEHMJIU0w==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/link@3.5.1(react@18.2.0): - resolution: {integrity: sha512-hX2KpjB7wSuJw5Pia63+WEgEql53VfVG1Vu2cTUJDxfrgUtawwHtxB8B0K3cs3jBanq69amgAInEx0FfqYY0uQ==} + /@react-types/link@3.5.2(react@18.2.0): + resolution: {integrity: sha512-/s51/WejmpLiyxOgP89s4txgxYoGaPe8pVDItVo1h4+BhU1Puyvgv/Jx8t9dPvo6LUXbraaN+SgKk/QDxaiirw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-aria/interactions': 3.19.1(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 - /@react-types/listbox@3.4.5(react@18.2.0): - resolution: {integrity: sha512-nuRY3l8h/rBYQWTXWdZz5YJdl6QDDmXpHrnPuX7PxTwbXcwjhoMK+ZkJ0arA8Uv3MPs1OUcT6K6CInsPnG2ARQ==} + /@react-types/listbox@3.4.6(react@18.2.0): + resolution: {integrity: sha512-XOQvrTqNh5WIPDvKiWiep8T07RAsMfjAXTjDbnjxVlKACUXkcwpts9kFaLnJ9LJRFt6DwItfP+WMkzvmx63/NQ==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/menu@3.9.5(react@18.2.0): - resolution: {integrity: sha512-KB5lJM0p9PxwpVlHV9sRdpjh+sqINeHrJgGizy/cQI9bj26nupiEgamSD14dULNI6BFT9DkgKCsobBtE04DDKQ==} + /@react-types/menu@3.9.6(react@18.2.0): + resolution: {integrity: sha512-w/RbFInOf4nNayQDv5c2L8IMJbcFOkBhsT3xvvpTy+CHvJcQdjggwaV1sRiw7eF/PwB81k2CwigmidUzHJhKDg==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/overlays': 3.8.3(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/overlays': 3.8.4(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/overlays@3.8.3(react@18.2.0): - resolution: {integrity: sha512-TrCG2I2+V+TD0PGi3CqfnyU5jEzcelSGgYJQvVxsl5Vv3ri7naBLIsOjF9x66tPxhINLCPUtOze/WYRAexp8aw==} + /@react-types/overlays@3.8.4(react@18.2.0): + resolution: {integrity: sha512-pfgNlQnbF6RB/R2oSxyqAP3Uzz0xE/k5q4n5gUeCDNLjY5qxFHGE8xniZZ503nZYw6VBa9XMN1efDOKQyeiO0w==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/progress@3.5.0(react@18.2.0): - resolution: {integrity: sha512-c1KLQCfYjdUdkTcPy0ZW31dc2+D86ZiZRHPNOaSYFGJjk9ItbWWi8BQTwlrw6D2l/+0d/YDdUFGaZhHMrY9mBQ==} + /@react-types/progress@3.5.1(react@18.2.0): + resolution: {integrity: sha512-CqsUjczUK/SfuFzDcajBBaXRTW0D3G9S/yqLDj9e8E0ii+lGDLt1PHj24t1J7E88U2rVYqmM9VL4NHTt8o3IYA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/radio@3.5.2(react@18.2.0): - resolution: {integrity: sha512-crYQ+97abd5v0Iw9X+Tt+E7KWdm5ckr4g0+Iy8byV1g6MyiBOsNtq9QT99TOzyWJPqqD8T9qZfAOk49wK7KEDg==} + /@react-types/radio@3.6.0(react@18.2.0): + resolution: {integrity: sha512-VOZzegxxZS55gHRVyWu278Q4y/rEQGiAVQCUqi25GmpbMe4MlHrzg16c76RiZMUK9PPoyv+XNUgAaPmxebkn7g==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/select@3.8.4(react@18.2.0): - resolution: {integrity: sha512-jHBaLiAHTcYPz52kuJpypBbR0WAA+YCZHy2HH+W8711HuTqePZCEp6QAWHK9Fw0qwSZQ052jYaWvOsgEZZ6ojQ==} + /@react-types/select@3.9.0(react@18.2.0): + resolution: {integrity: sha512-0nalGmcoma4jreICLSJae/uKAuMiVyWgqWjGrGiUGGcdDchH4limKVEqNDaBwLvxVT6NB5LLsaipCTCAEEl4Rg==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/shared@3.21.0(react@18.2.0): - resolution: {integrity: sha512-wJA2cUF8dP4LkuNUt9Vh2kkfiQb2NLnV2pPXxVnKJZ7d4x2/7VPccN+LYPnH8m0X3+rt50cxWuPKQmjxSsCFOg==} + /@react-types/shared@3.22.0(react@18.2.0): + resolution: {integrity: sha512-yVOekZWbtSmmiThGEIARbBpnmUIuePFlLyctjvCbgJgGhz8JnEJOipLQ/a4anaWfzAgzSceQP8j/K+VOOePleA==} peerDependencies: react: ^18.2.0 dependencies: react: 18.2.0 - /@react-types/slider@3.6.2(react@18.2.0): - resolution: {integrity: sha512-LSvna1gpOvBxOBI5I/CYEtkAshWYwPlxE9F/jCaxCa9Q7E9xZp1hFFGY87iQ1A3vQM5SCa5PFStwOvXO7rA55w==} + /@react-types/slider@3.7.0(react@18.2.0): + resolution: {integrity: sha512-uyQXUVFfqc9SPUW0LZLMan2n232F/OflRafiHXz9viLFa9tVOupVa7GhASRAoHojwkjoJ1LjFlPih7g5dOZ0/Q==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/switch@3.4.2(react@18.2.0): - resolution: {integrity: sha512-OQWpawikWhF+ET1/kE0/JeJVr6gHjkR72p/idTsT7RUJySBcehhAscbIA8iWzVWJvdFCVF2hG7uzBAJTeDMr9A==} + /@react-types/switch@3.5.0(react@18.2.0): + resolution: {integrity: sha512-/wNmUGjk69bP6t5k2QkAdrNN5Eb9Rz4dOyp0pCPmoeE+5haW6sV5NmtkvWX1NSc4DQz1xL/a5b+A0vxPCP22Jw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/checkbox': 3.5.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/table@3.9.0(react@18.2.0): - resolution: {integrity: sha512-WOLxZ3tzLA4gxRxvnsZhnnQDbh4Qe/johpHNk4coSOFOP5W8PbunPacXnbvdPkSx6rqrOIzCnYcZCtgk4gDQmg==} + /@react-types/table@3.9.1(react@18.2.0): + resolution: {integrity: sha512-3e+Oouw9jGqNDg+JRg7v7fgPqDZd6DtST9S/UPp81f32ntnQ8Wsu7S/J4eyLHu5CVQDqcHkf4xPeeXBgPx4qmw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/grid': 3.2.2(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/grid': 3.2.3(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/tabs@3.3.3(react@18.2.0): - resolution: {integrity: sha512-Zc4g5TIwJpKS5fiT9m4dypbCr1xqtauL4wqM76fGERCAZy0FwXTH/yjzHJDYKyWFJrQNWtJ0KAhJR/ZqKDVnIw==} + /@react-types/tabs@3.3.4(react@18.2.0): + resolution: {integrity: sha512-4mCTtFrwMRypyGTZCvNYVT9CkknexO/UYvqwDm2jMYb8JgjRvxnomu776Yh7uyiYKWyql2upm20jqasEOm620w==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/textfield@3.8.1(react@18.2.0): - resolution: {integrity: sha512-p8Xmew9kzJd+tCM7h9LyebZHpv7SH1IE1Nu13hLCOV5cZ/tVVVCwjNGLMv4MtUpSn++H42YLJgAW9Uif+a+RHg==} + /@react-types/textfield@3.9.0(react@18.2.0): + resolution: {integrity: sha512-D/DiwzsfkwlAg3uv8hoIfwju+zhB/hWDEdTvxQbPkntDr0kmN/QfI17NMSzbOBCInC4ABX87ViXLGxr940ykGA==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false - /@react-types/tooltip@3.4.5(react@18.2.0): - resolution: {integrity: sha512-pv87Vlu+Pn1Titw199y5aiSuXF/GHX+fBCihi9BeePqtwYm505e/Si01BNh5ejCeXXOS4JIMuXwmGGzGVdGk6Q==} + /@react-types/tooltip@3.4.6(react@18.2.0): + resolution: {integrity: sha512-RaZewdER7ZcsNL99RhVHs8kSLyzIBkwc0W6eFZrxST2MD9J5GzkVWRhIiqtFOd5U1aYnxdJ6woq72Ef+le6Vfw==} peerDependencies: react: ^18.2.0 dependencies: - '@react-types/overlays': 3.8.3(react@18.2.0) - '@react-types/shared': 3.21.0(react@18.2.0) + '@react-types/overlays': 3.8.4(react@18.2.0) + '@react-types/shared': 3.22.0(react@18.2.0) react: 18.2.0 dev: false @@ -10616,7 +10625,7 @@ packages: '@storybook/preview-api': 7.5.3 '@storybook/theming': 7.5.3(react-dom@18.2.0)(react@18.2.0) '@storybook/types': 7.5.3 - '@types/lodash': 4.14.200 + '@types/lodash': 4.14.201 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 @@ -10714,9 +10723,9 @@ packages: resolution: {integrity: sha512-XysHSnknZTAcTbQ0bQsbfv5J8ifHpOBsmXjk1HCA05E9WGGrn9JrQRCfpDUQJ6O6UWq0bpMqzP8gFLWXFE7hug==} hasBin: true dependencies: - '@babel/core': 7.23.2 - '@babel/preset-env': 7.23.2(@babel/core@7.23.2) - '@babel/types': 7.23.0 + '@babel/core': 7.23.3 + '@babel/preset-env': 7.23.3(@babel/core@7.23.3) + '@babel/types': 7.23.3 '@ndelangen/get-tarball': 3.0.9 '@storybook/codemod': 7.5.3 '@storybook/core-common': 7.5.3 @@ -10726,7 +10735,7 @@ packages: '@storybook/node-logger': 7.5.3 '@storybook/telemetry': 7.5.3 '@storybook/types': 7.5.3 - '@types/semver': 7.5.4 + '@types/semver': 7.5.5 '@yarnpkg/fslib': 2.10.3 '@yarnpkg/libzip': 2.3.0 chalk: 4.1.2 @@ -10738,11 +10747,11 @@ packages: express: 4.18.2 find-up: 5.0.0 fs-extra: 11.1.1 - get-npm-tarball-url: 2.0.3 + get-npm-tarball-url: 2.1.0 get-port: 5.1.1 giget: 1.1.3 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.23.2) + jscodeshift: 0.14.0(@babel/preset-env@7.23.3) leven: 3.1.0 ora: 5.4.1 prettier: 2.8.8 @@ -10771,9 +10780,9 @@ packages: /@storybook/codemod@7.5.3: resolution: {integrity: sha512-gzycFdqnF4drUjfzMTrLNHqi2jkw1lDeACUzQdug5uWxynZKAvMTHAgU0q9wvoYRR9Xhq8PhfKtXtYCCj2Er4Q==} dependencies: - '@babel/core': 7.23.2 - '@babel/preset-env': 7.23.2(@babel/core@7.23.2) - '@babel/types': 7.23.0 + '@babel/core': 7.23.3 + '@babel/preset-env': 7.23.3(@babel/core@7.23.3) + '@babel/types': 7.23.3 '@storybook/csf': 0.1.1 '@storybook/csf-tools': 7.5.3 '@storybook/node-logger': 7.5.3 @@ -10781,7 +10790,7 @@ packages: '@types/cross-spawn': 6.0.5 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.23.2) + jscodeshift: 0.14.0(@babel/preset-env@7.23.3) lodash: 4.17.21 prettier: 2.8.8 recast: 0.23.4 @@ -10826,9 +10835,9 @@ packages: '@storybook/node-logger': 7.5.3 '@storybook/types': 7.5.3 '@types/find-cache-dir': 3.2.1 - '@types/node': 18.18.8 + '@types/node': 18.18.9 '@types/node-fetch': 2.6.9 - '@types/pretty-hrtime': 1.0.2 + '@types/pretty-hrtime': 1.0.3 chalk: 4.1.2 esbuild: 0.18.20 esbuild-register: 3.5.0(esbuild@0.18.20) @@ -10875,9 +10884,9 @@ packages: '@storybook/telemetry': 7.5.3 '@storybook/types': 7.5.3 '@types/detect-port': 1.3.5 - '@types/node': 18.18.8 - '@types/pretty-hrtime': 1.0.2 - '@types/semver': 7.5.4 + '@types/node': 18.18.9 + '@types/pretty-hrtime': 1.0.3 + '@types/semver': 7.5.5 better-opn: 3.0.2 chalk: 4.1.2 cli-table3: 0.6.3 @@ -10919,10 +10928,10 @@ packages: /@storybook/csf-tools@7.5.3: resolution: {integrity: sha512-676C3ISn7FQJKjb3DBWXhjGN2OQEv4s71dx+5D0TlmswDCOOGS8dYFjP8wVx51+mAIE8CROAw7vLHLtVKU7SwQ==} dependencies: - '@babel/generator': 7.23.0 - '@babel/parser': 7.23.0 - '@babel/traverse': 7.23.2 - '@babel/types': 7.23.0 + '@babel/generator': 7.23.3 + '@babel/parser': 7.23.3 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 '@storybook/csf': 0.1.1 '@storybook/types': 7.5.3 fs-extra: 11.1.1 @@ -11010,7 +11019,7 @@ packages: '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 '@storybook/types': 7.5.3 - '@types/qs': 6.9.9 + '@types/qs': 6.9.10 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -11081,7 +11090,7 @@ packages: '@storybook/types': 7.5.3 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 - '@types/node': 18.18.8 + '@types/node': 18.18.9 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -11431,8 +11440,8 @@ packages: react-error-boundary: 3.1.4(react@18.2.0) dev: true - /@testing-library/react@14.0.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==} + /@testing-library/react@14.1.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-hcvfZEEyO0xQoZeHmUbuMs7APJCGELpilL7bY+BaJaMP57aWc6q1etFwScnoZDheYjk4ESdlzPdQ33IbsKAK/A==} engines: {node: '>=14'} peerDependencies: react: ^18.2.0 @@ -11502,8 +11511,8 @@ packages: /@types/babel__core@7.20.4: resolution: {integrity: sha512-mLnSC22IC4vcWiuObSRjrLd9XcBTGf59vUSoq2jkQDJ/QQ8PMI9rSuzE+aEV8karUMbskw07bKYoUJCKTUaygg==} dependencies: - '@babel/parser': 7.23.0 - '@babel/types': 7.23.0 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 '@types/babel__generator': 7.6.7 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.4 @@ -11512,20 +11521,20 @@ packages: /@types/babel__generator@7.6.7: resolution: {integrity: sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 dev: true /@types/babel__template@7.4.4: resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} dependencies: - '@babel/parser': 7.23.0 - '@babel/types': 7.23.0 + '@babel/parser': 7.23.3 + '@babel/types': 7.23.3 dev: true /@types/babel__traverse@7.20.4: resolution: {integrity: sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==} dependencies: - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 dev: true /@types/body-parser@1.19.5: @@ -11555,8 +11564,8 @@ packages: resolution: {integrity: sha512-87W6MJCKZYDhLAx/J1ikW8niMvmGRyY+rpUxWpL1cO7F8Uu5CHuQoFv+R0/L5pgNdW4jTyda42kv60uwVIPjLw==} dev: true - /@types/color@3.0.5: - resolution: {integrity: sha512-T9yHCNtd8ap9L/r8KEESu5RDMLkoWXHo7dTureNoI1dbp25NsCN054vOu09iniIjR21MXUL+LU9bkIWrbyg8gg==} + /@types/color@3.0.6: + resolution: {integrity: sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==} dependencies: '@types/color-convert': 2.0.3 dev: true @@ -11573,8 +11582,8 @@ packages: '@types/node': 20.2.5 dev: true - /@types/debug@4.1.11: - resolution: {integrity: sha512-R2qflTjHDs4CL6D/6TkqBeIHr54WzZfIxN729xvCNlYIVp2LknlnCro5Yo3frNaX2E5gO9pZ3/QAPVdGmu+q9w==} + /@types/debug@4.1.12: + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} dependencies: '@types/ms': 0.7.34 @@ -11637,9 +11646,9 @@ packages: resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==} dependencies: '@types/node': 20.2.5 - '@types/qs': 6.9.9 - '@types/range-parser': 1.2.6 - '@types/send': 0.17.3 + '@types/qs': 6.9.10 + '@types/range-parser': 1.2.7 + '@types/send': 0.17.4 dev: true /@types/express@4.17.21: @@ -11647,8 +11656,8 @@ packages: dependencies: '@types/body-parser': 1.19.5 '@types/express-serve-static-core': 4.17.41 - '@types/qs': 6.9.9 - '@types/serve-static': 1.15.4 + '@types/qs': 6.9.10 + '@types/serve-static': 1.15.5 dev: true /@types/find-cache-dir@3.2.1: @@ -11680,10 +11689,10 @@ packages: '@types/node': 20.2.5 dev: true - /@types/hast@2.3.7: - resolution: {integrity: sha512-EVLigw5zInURhzfXUM65eixfadfsHKomGKUakToXo84t8gGIJuTcD2xooM2See7GyQ7DRtYjhCHnSUQez8JaLw==} + /@types/hast@2.3.8: + resolution: {integrity: sha512-aMIqAlFd2wTIDZuvLbhUT+TGvMxrNC8ECUIVtH6xxy0sQLs3iu6NO8Kp/VT5je7i5ufnebXzdV1dNDMnvaH6IQ==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 dev: false /@types/http-cache-semantics@4.0.4: @@ -11694,10 +11703,10 @@ packages: resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} dev: true - /@types/inquirer@8.2.9: - resolution: {integrity: sha512-5IEO2PwCy4NZDgj977dho4Qbdiw6dJZJzD4ZaB/9j7dfppf7z0xxFPKZz/FtTAUQbDjmWHJ6Jlz/gn0YzWHPsw==} + /@types/inquirer@8.2.10: + resolution: {integrity: sha512-IdD5NmHyVjWM8SHWo/kPBgtzXatwPkfwzyP3fN1jF2g9BWt5WO+8hL2F4o2GKIYsU40PpqeevuUWvkS/roXJkA==} dependencies: - '@types/through': 0.0.32 + '@types/through': 0.0.33 rxjs: 7.8.1 dev: true @@ -11735,7 +11744,7 @@ packages: dependencies: '@types/node': 15.14.9 '@types/parse5': 6.0.3 - '@types/tough-cookie': 4.0.4 + '@types/tough-cookie': 4.0.5 dev: true /@types/json-schema@7.0.15: @@ -11756,50 +11765,50 @@ packages: /@types/lodash.debounce@4.0.9: resolution: {integrity: sha512-Ma5JcgTREwpLRwMM+XwBR7DaWe96nC38uCBDFKZWbNKD+osjVzdpnUSwBcqCptrp16sSOLBAUb50Car5I0TCsQ==} dependencies: - '@types/lodash': 4.14.200 + '@types/lodash': 4.14.201 dev: false /@types/lodash.foreach@4.5.9: resolution: {integrity: sha512-vmq0p/FK66PsALXRmK/qsnlLlCpnudvozWYrxJImHujHhXMADdeoPEY10zwmu26437w85wCvdxUqpFi+ALtkiQ==} dependencies: - '@types/lodash': 4.14.200 + '@types/lodash': 4.14.201 dev: true /@types/lodash.get@4.4.9: resolution: {integrity: sha512-J5dvW98sxmGnamqf+/aLP87PYXyrha9xIgc2ZlHl6OHMFR2Ejdxep50QfU0abO1+CH6+ugx+8wEUN1toImAinA==} dependencies: - '@types/lodash': 4.14.200 + '@types/lodash': 4.14.201 dev: true /@types/lodash.kebabcase@4.1.9: resolution: {integrity: sha512-kPrrmcVOhSsjAVRovN0lRfrbuidfg0wYsrQa5IYuoQO1fpHHGSme66oyiYA/5eQPVl8Z95OA3HG0+d2SvYC85w==} dependencies: - '@types/lodash': 4.14.200 + '@types/lodash': 4.14.201 dev: true /@types/lodash.mapkeys@4.6.9: resolution: {integrity: sha512-6/ERBCabeDI656LsV+oopLjdnJ/x1PCAE6kkkssH8e4i0K7Pw307noxHCbUc6cAVfTo9vx0Z+k3QZwy1IrUZcA==} dependencies: - '@types/lodash': 4.14.200 + '@types/lodash': 4.14.201 dev: true /@types/lodash.omit@4.5.9: resolution: {integrity: sha512-zuAVFLUPJMOzsw6yawshsYGgq2hWUHtsZgeXHZmSFhaQQFC6EQ021uDKHkSjOpNhSvtNSU9165/o3o/Q51GpTw==} dependencies: - '@types/lodash': 4.14.200 + '@types/lodash': 4.14.201 dev: true - /@types/lodash@4.14.200: - resolution: {integrity: sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q==} + /@types/lodash@4.14.201: + resolution: {integrity: sha512-y9euML0cim1JrykNxADLfaG0FgD1g/yTHwUs/Jg9ZIU7WKj2/4IW9Lbb1WZbvck78W/lfGXFfe+u2EGfIJXdLQ==} /@types/marked@5.0.2: resolution: {integrity: sha512-OucS4KMHhFzhz27KxmWg7J+kIYqyqoW5kdIEI319hqARQQUTqhao3M/F+uFnDXD0Rg72iDDZxZNxq5gvctmLlg==} dev: true - /@types/mdast@3.0.14: - resolution: {integrity: sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==} + /@types/mdast@3.0.15: + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 /@types/mdx@2.0.10: resolution: {integrity: sha512-Rllzc5KHk0Al5/WANwgSPl1/CwjqCy+AZrGd78zuK+jO9aDM6ffblZ+zIjgPNAaEBmlO0RYDvLNh7wD0zKVgEg==} @@ -11808,12 +11817,12 @@ packages: resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} dev: true - /@types/mime@1.3.4: - resolution: {integrity: sha512-1Gjee59G25MrQGk8bsNvC6fxNiRgUlGn2wlhGf95a59DrprnnHk80FIMMFG9XHMdrfsuA119ht06QPDXA1Z7tw==} + /@types/mime@1.3.5: + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} dev: true - /@types/mime@3.0.3: - resolution: {integrity: sha512-i8MBln35l856k5iOhKk2XJ4SeAWg75mLIpZB4v6imOagKL6twsukBZGDMNhdOVk7yRFTMPpfILocMos59Q1otQ==} + /@types/mime@3.0.4: + resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} dev: true /@types/minimatch@5.1.2: @@ -11841,8 +11850,8 @@ packages: /@types/node@15.14.9: resolution: {integrity: sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==} - /@types/node@18.18.8: - resolution: {integrity: sha512-OLGBaaK5V3VRBS1bAkMVP2/W9B+H8meUfl866OrMNQqt7wDgdpWPp5o6gmIc9pB+lIQHSq4ZL8ypeH1vPxcPaQ==} + /@types/node@18.18.9: + resolution: {integrity: sha512-0f5klcuImLnG4Qreu9hPj/rEfFq6YRc5n2mAjSsH+ec/mJL+3voBH0+8T7o8RpFjH7ovc+TRsL/c7OYIQsPTfQ==} dependencies: undici-types: 5.26.5 dev: true @@ -11877,23 +11886,23 @@ packages: resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} dev: true - /@types/pretty-hrtime@1.0.2: - resolution: {integrity: sha512-vyv9knII8XeW8TnXDcGH7HqG6FeR56ESN6ExM34d/U8Zvs3xuG34euV6CVyB7KEYI7Ts4lQM8b4NL72e7UadnA==} + /@types/pretty-hrtime@1.0.3: + resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} dev: true - /@types/prismjs@1.26.2: - resolution: {integrity: sha512-/r7Cp7iUIk7gts26mHXD66geUC+2Fo26TZYjQK6Nr4LDfi6lmdRmMqM0oPwfiMhUwoBAOFe8GstKi2pf6hZvwA==} + /@types/prismjs@1.26.3: + resolution: {integrity: sha512-A0D0aTXvjlqJ5ZILMz3rNfDBOx9hHxLZYv2by47Sm/pqW35zzjusrZTryatjN/Rf8Us2gZrJD+KeHbUSTux1Cw==} dev: true - /@types/prop-types@15.7.9: - resolution: {integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==} + /@types/prop-types@15.7.10: + resolution: {integrity: sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==} - /@types/qs@6.9.9: - resolution: {integrity: sha512-wYLxw35euwqGvTDx6zfY1vokBFnsK0HNrzc6xNHchxfO2hpuRg74GbkEW7e3sSmPvj0TjCDT1VCa6OtHXnubsg==} + /@types/qs@6.9.10: + resolution: {integrity: sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==} dev: true - /@types/range-parser@1.2.6: - resolution: {integrity: sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA==} + /@types/range-parser@1.2.7: + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} dev: true /@types/react-dom@18.2.4: @@ -11904,58 +11913,58 @@ packages: /@types/react@18.2.8: resolution: {integrity: sha512-lTyWUNrd8ntVkqycEEplasWy2OxNlShj3zqS0LuB1ENUGis5HodmhM7DtCoUGbxj3VW/WsGA0DUhpG6XrM7gPA==} dependencies: - '@types/prop-types': 15.7.9 - '@types/scheduler': 0.16.5 + '@types/prop-types': 15.7.10 + '@types/scheduler': 0.16.6 csstype: 3.1.2 - /@types/refractor@3.0.5: - resolution: {integrity: sha512-+JwkwHx46EhFByX9YJBO1TKb7kWkZtJxjehk2+Qg8r0Wrb7+rWzn001z4JWd9AU2gYuF1oiJkFf0KIqSFdyjHA==} + /@types/refractor@3.0.6: + resolution: {integrity: sha512-VE76sFywRfJooRV1PH5LgcdiRY6AjhAfv02Bb7iZKajrs2vfadFZ/VpdV81zyFNmsdY3T/CO4NmDgOVBbrvj+g==} dependencies: - '@types/prismjs': 1.26.2 + '@types/prismjs': 1.26.3 dev: true - /@types/resolve@1.20.4: - resolution: {integrity: sha512-BKGK0T1VgB1zD+PwQR4RRf0ais3NyvH1qjLUrHI5SEiccYaJrhLstLuoXFWJ+2Op9whGizSPUMGPJY/Qtb/A2w==} + /@types/resolve@1.20.5: + resolution: {integrity: sha512-aten5YPFp8G+cMpkTK5MCcUW5GlwZUby+qlt0/3oFgOCooFgzqvZQ9/0tROY49sUYmhEybBBj3jwpkQ/R3rjjw==} /@types/rss@0.0.30: resolution: {integrity: sha512-RnWs98qajbcAZqie6EWYraJ2N+1Q1Wy9KN7HcVPJ//sYJGVjLjvkChZdeQPwf88xAcNUCcLXt6Zz3kiid7s/yw==} dev: true - /@types/scheduler@0.16.5: - resolution: {integrity: sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==} + /@types/scheduler@0.16.6: + resolution: {integrity: sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==} - /@types/semver@6.2.5: - resolution: {integrity: sha512-NAxro9/RqWXTqdSjccDZAjA4nXK+6zRun+HvibYJfGy8TQhpOC7Vv6v2rlHYKrT0Q8jGGoNRd/xVdHRIQRNlFQ==} + /@types/semver@6.2.6: + resolution: {integrity: sha512-6Xe+YAhzQKMxEytKnq01VdyhNwz+M/nJBnOcdIWxBHAl5MS6QOYzOX7PazFDUdtUhTSzvfLKZN9fq5ShKDaAvA==} dev: true - /@types/semver@7.5.4: - resolution: {integrity: sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==} + /@types/semver@7.5.5: + resolution: {integrity: sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg==} dev: true - /@types/send@0.17.3: - resolution: {integrity: sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==} + /@types/send@0.17.4: + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} dependencies: - '@types/mime': 1.3.4 + '@types/mime': 1.3.5 '@types/node': 20.2.5 dev: true - /@types/serve-static@1.15.4: - resolution: {integrity: sha512-aqqNfs1XTF0HDrFdlY//+SGUxmdSUbjeRXb5iaZc3x0/vMbYmdw9qvOgHWOyyLFxSSRnUuP5+724zBgfw8/WAw==} + /@types/serve-static@1.15.5: + resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} dependencies: '@types/http-errors': 2.0.4 - '@types/mime': 3.0.3 + '@types/mime': 3.0.4 '@types/node': 20.2.5 dev: true - /@types/shelljs@0.8.14: - resolution: {integrity: sha512-eqKaGPi60riuxI9pUVeCT02EGo94Y6HT119h7w5bXSELsis6+JqzdEy6H/w2xXl881wcN3VDnb/D0WlgSety5w==} + /@types/shelljs@0.8.15: + resolution: {integrity: sha512-vzmnCHl6hViPu9GNLQJ+DZFd6BQI2DBTUeOvYHqkWQLMfKAAQYMb/xAmZkTogZI/vqXHCWkqDRymDI5p0QTi5Q==} dependencies: '@types/glob': 7.2.0 '@types/node': 20.2.5 dev: true - /@types/stack-utils@2.0.2: - resolution: {integrity: sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==} + /@types/stack-utils@2.0.3: + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} dev: true /@types/testing-library__jest-dom@5.14.5: @@ -11964,37 +11973,37 @@ packages: '@types/jest': 28.1.8 dev: true - /@types/through@0.0.32: - resolution: {integrity: sha512-7XsfXIsjdfJM2wFDRAtEWp3zb2aVPk5QeyZxGlVK57q4u26DczMHhJmlhr0Jqv0THwxam/L8REXkj8M2I/lcvw==} + /@types/through@0.0.33: + resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} dependencies: '@types/node': 15.14.9 dev: true - /@types/tough-cookie@4.0.4: - resolution: {integrity: sha512-95Sfz4nvMAb0Nl9DTxN3j64adfwfbBPEYq14VN7zT5J5O2M9V6iZMIIQU1U+pJyl9agHYHNCqhCXgyEtIRRa5A==} + /@types/tough-cookie@4.0.5: + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} dev: true - /@types/unist@2.0.9: - resolution: {integrity: sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==} + /@types/unist@2.0.10: + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} /@types/uuid@8.3.4: resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} dev: true - /@types/yargs-parser@21.0.2: - resolution: {integrity: sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==} + /@types/yargs-parser@21.0.3: + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} dev: true - /@types/yargs@16.0.7: - resolution: {integrity: sha512-lQcYmxWuOfJq4IncK88/nwud9rwr1F04CFc5xzk0k4oKVyz/AI35TfsXmhjf6t8zp8mpCOi17BfvuNWx+zrYkg==} + /@types/yargs@16.0.8: + resolution: {integrity: sha512-1GwLEkmFafeb/HbE6pC7tFlgYSQ4Iqh2qlWCq8xN+Qfaiaxr2PcLfuhfRFRYqI6XJyeFoLYyKnhFbNsst9FMtQ==} dependencies: - '@types/yargs-parser': 21.0.2 + '@types/yargs-parser': 21.0.3 dev: true - /@types/yargs@17.0.30: - resolution: {integrity: sha512-3SJLzYk3yz3EgI9I8OLoH06B3PdXIoU2imrBZzaGqUtUXf5iUNDtmAfCGuQrny1bnmyjh/GM/YNts6WK5jR5Rw==} + /@types/yargs@17.0.31: + resolution: {integrity: sha512-bocYSx4DI8TmdlvxqGpVNXOgCNR1Jj0gNPhhAY+iz1rgKDAaYrAYdFYnhDV1IFuiuVc9HkOwyDcFxaTElF3/wg==} dependencies: - '@types/yargs-parser': 21.0.2 + '@types/yargs-parser': 21.0.3 dev: true /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@4.9.5): @@ -12277,7 +12286,7 @@ packages: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) '@types/json-schema': 7.0.15 - '@types/semver': 7.5.4 + '@types/semver': 7.5.5 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) @@ -12324,9 +12333,9 @@ packages: peerDependencies: vite: ^4.1.0-beta.0 dependencies: - '@babel/core': 7.23.2 - '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.2) - '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.3) magic-string: 0.27.0 react-refresh: 0.14.0 vite: 4.5.0(@types/node@15.14.9) @@ -12823,7 +12832,7 @@ packages: /aria-query@5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: - deep-equal: 2.2.2 + deep-equal: 2.2.3 dev: true /aria-query@5.3.0: @@ -13080,12 +13089,12 @@ packages: resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==} dev: false - /babel-core@7.0.0-bridge.0(@babel/core@7.23.2): + /babel-core@7.0.0-bridge.0(@babel/core@7.23.3): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 dev: true /babel-eslint@10.1.0(eslint@7.32.0): @@ -13096,9 +13105,9 @@ packages: eslint: '>= 4.12.1' dependencies: '@babel/code-frame': 7.22.13 - '@babel/parser': 7.23.0 - '@babel/traverse': 7.23.2 - '@babel/types': 7.23.0 + '@babel/parser': 7.23.3 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 eslint: 7.32.0 eslint-visitor-keys: 1.3.0 resolve: 1.22.8 @@ -13106,17 +13115,17 @@ packages: - supports-color dev: true - /babel-jest@28.1.3(@babel/core@7.23.2): + /babel-jest@28.1.3(@babel/core@7.23.3): resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@jest/transform': 28.1.3 '@types/babel__core': 7.20.4 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3(@babel/core@7.23.2) + babel-preset-jest: 28.1.3(@babel/core@7.23.3) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -13128,12 +13137,12 @@ packages: resolution: {integrity: sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg==} dev: true - /babel-plugin-dev-expression@0.2.3(@babel/core@7.23.2): + /babel-plugin-dev-expression@0.2.3(@babel/core@7.23.3): resolution: {integrity: sha512-rP5LK9QQTzCW61nVVzw88En1oK8t8gTsIeC6E61oelxNsU842yMjF0G1MxhvUpCkxCEIj7sE8/e5ieTheT//uw==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 dev: true /babel-plugin-istanbul@6.1.1: @@ -13154,113 +13163,113 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/template': 7.22.15 - '@babel/types': 7.23.0 + '@babel/types': 7.23.3 '@types/babel__core': 7.20.4 '@types/babel__traverse': 7.20.4 dev: true - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2): + /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.3): resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/compat-data': 7.23.2 - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) + '@babel/compat-data': 7.23.3 + '@babel/core': 7.23.3 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.23.2): + /babel-plugin-polyfill-corejs3@0.1.7(@babel/core@7.23.3): resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-define-polyfill-provider': 0.1.5(@babel/core@7.23.3) core-js-compat: 3.33.2 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.2): + /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.3): resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3) core-js-compat: 3.33.2 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2): + /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.3): resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.23.2 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3) transitivePeerDependencies: - supports-color dev: true - /babel-plugin-transform-next-use-client@1.1.1(@babel/core@7.23.2): + /babel-plugin-transform-next-use-client@1.1.1(@babel/core@7.23.3): resolution: {integrity: sha512-qqyurXN5ZWP7kqmgzzXaEgF0fCi8d72tE+wCQwSCrjfN+LC0fI1+ejhNE+DtVECY1EvYkUoO0tcr9izwC9xexg==} peerDependencies: '@babel/core': ^7.22.5 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 dev: true /babel-plugin-transform-react-remove-prop-types@0.4.24: resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.2): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.3): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3) dev: true /babel-preset-env-modules@1.0.1: resolution: {integrity: sha512-TxbnZHb7p38jDRJh9clzCBqenyHjTkX5GX6SWwbcsW6UTMd912lbXJz7q3demciDI/BdbhjhNEirlgI9ov/JAg==} engines: {node: '>= v12.0.0'} dependencies: - '@babel/core': 7.23.2 - '@babel/preset-env': 7.23.2(@babel/core@7.23.2) - babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/preset-env': 7.23.3(@babel/core@7.23.3) + babel-plugin-polyfill-corejs3: 0.1.7(@babel/core@7.23.3) browserslist: 4.22.1 lodash: 4.17.21 transitivePeerDependencies: - supports-color dev: true - /babel-preset-jest@28.1.3(@babel/core@7.23.2): + /babel-preset-jest@28.1.3(@babel/core@7.23.3): resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.3) dev: true /bail@1.0.5: @@ -13448,7 +13457,7 @@ packages: hasBin: true dependencies: caniuse-lite: 1.0.30001561 - electron-to-chromium: 1.4.577 + electron-to-chromium: 1.4.580 node-releases: 2.0.13 update-browserslist-db: 1.0.13(browserslist@4.22.1) @@ -14607,8 +14616,9 @@ packages: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: true - /deep-equal@2.2.2: - resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==} + /deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.5 @@ -14961,8 +14971,8 @@ packages: jake: 10.8.7 dev: true - /electron-to-chromium@1.4.577: - resolution: {integrity: sha512-/5xHPH6f00SxhHw6052r+5S1xO7gHNc89hV7tqlvnStvKbSrDqc/u6AlwPvVWWNj+s4/KL6T6y8ih+nOY0qYNA==} + /electron-to-chromium@1.4.580: + resolution: {integrity: sha512-T5q3pjQon853xxxHUq3ZP68ZpvJHuSMY2+BZaW3QzjS4HvNuvsMmZ/+lU+nCrftre1jFZ+OSlExynXWBihnXzw==} /emittery@0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} @@ -15147,8 +15157,8 @@ packages: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} dev: true - /es-module-lexer@1.3.1: - resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} + /es-module-lexer@1.4.0: + resolution: {integrity: sha512-lcCr3v3OLezdfFyx9r5NRYHOUTQNnFEQ9E87Mx8Kc+iqyJNkO7MJoB4GQRTlIMw9kLLTwGw0OAkm4BQQud/d9g==} dev: true /es-set-tostringtag@2.0.2: @@ -16251,7 +16261,7 @@ packages: resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} dependencies: '@types/estree-jsx': 1.0.3 - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 dev: false /estree-walker@2.0.2: @@ -16745,8 +16755,8 @@ packages: resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} dev: true - /flow-parser@0.220.1: - resolution: {integrity: sha512-RoM3ARqVYvxnwtkM36RjQFzo5Z9p22jUqtuMrN8gzA/8fU6iMLFE3cXkdSFPyfHRXLU8ILH8TCtSFADk1ACPCg==} + /flow-parser@0.221.0: + resolution: {integrity: sha512-i+GzdLcKYy5bxhx1N+FIcR1bTqssuVWTJcuytMhwqLAxifz46g4BSNicWXGrtzT0HibJUBIzZOYA3FveJucTPg==} engines: {node: '>=0.4.0'} dev: true @@ -16971,8 +16981,8 @@ packages: resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} engines: {node: '>=6'} - /get-npm-tarball-url@2.0.3: - resolution: {integrity: sha512-R/PW6RqyaBQNWYaSyfrh54/qtcnOp22FHCCiRhSSZj0FP3KQWCsxxt0DzIdVTbwTqe9CtQfvl/FPD4UIPt4pqw==} + /get-npm-tarball-url@2.1.0: + resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} engines: {node: '>=12.17'} dev: true @@ -17466,8 +17476,8 @@ packages: /hast-util-from-parse5@7.1.2: resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} dependencies: - '@types/hast': 2.3.7 - '@types/unist': 2.0.9 + '@types/hast': 2.3.8 + '@types/unist': 2.0.10 hastscript: 7.2.0 property-information: 6.4.0 vfile: 5.3.7 @@ -17482,7 +17492,7 @@ packages: /hast-util-heading-rank@2.1.1: resolution: {integrity: sha512-iAuRp+ESgJoRFJbSyaqsfvJDY6zzmFoEnL1gtz1+U8gKtGGj1p0CVlysuUAUjq95qlZESHINLThwJzNGmgGZxA==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 dev: false /hast-util-is-element@1.1.0: @@ -17496,13 +17506,13 @@ packages: /hast-util-parse-selector@3.1.1: resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 dev: false /hast-util-raw@7.2.3: resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 '@types/parse5': 6.0.3 hast-util-from-parse5: 7.1.2 hast-util-to-parse5: 7.1.0 @@ -17520,8 +17530,8 @@ packages: dependencies: '@types/estree': 1.0.5 '@types/estree-jsx': 1.0.3 - '@types/hast': 2.3.7 - '@types/unist': 2.0.9 + '@types/hast': 2.3.8 + '@types/unist': 2.0.10 comma-separated-tokens: 2.0.3 estree-util-attach-comments: 2.1.1 estree-util-is-identifier-name: 2.1.0 @@ -17555,8 +17565,8 @@ packages: /hast-util-to-html@8.0.4: resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} dependencies: - '@types/hast': 2.3.7 - '@types/unist': 2.0.9 + '@types/hast': 2.3.8 + '@types/unist': 2.0.10 ccount: 2.0.1 comma-separated-tokens: 2.0.3 hast-util-raw: 7.2.3 @@ -17571,7 +17581,7 @@ packages: /hast-util-to-parse5@7.1.0: resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 comma-separated-tokens: 2.0.3 property-information: 6.4.0 space-separated-tokens: 2.0.2 @@ -17586,7 +17596,7 @@ packages: /hast-util-to-string@2.0.0: resolution: {integrity: sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 dev: false /hast-util-whitespace@1.0.4: @@ -17600,7 +17610,7 @@ packages: /hastscript@6.0.0: resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 comma-separated-tokens: 1.0.8 hast-util-parse-selector: 2.2.5 property-information: 5.6.0 @@ -17610,7 +17620,7 @@ packages: /hastscript@7.2.0: resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 3.1.1 property-information: 6.4.0 @@ -18540,8 +18550,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /istanbul-lib-coverage@3.2.1: - resolution: {integrity: sha512-opCrKqbthmq3SKZ10mFMQG9dk3fTa3quaOLD35kJa5ejwZHd9xAr+kLuziiZz2cG32s4lMZxNdmdcEQnTDP4+g==} + /istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} engines: {node: '>=8'} dev: true @@ -18549,10 +18559,10 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.23.2 - '@babel/parser': 7.23.0 + '@babel/core': 7.23.3 + '@babel/parser': 7.23.3 '@istanbuljs/schema': 0.1.3 - istanbul-lib-coverage: 3.2.1 + istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -18562,7 +18572,7 @@ packages: resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} engines: {node: '>=10'} dependencies: - istanbul-lib-coverage: 3.2.1 + istanbul-lib-coverage: 3.2.2 make-dir: 4.0.0 supports-color: 7.2.0 dev: true @@ -18572,7 +18582,7 @@ packages: engines: {node: '>=10'} dependencies: debug: 4.3.4 - istanbul-lib-coverage: 3.2.1 + istanbul-lib-coverage: 3.2.2 source-map: 0.6.1 transitivePeerDependencies: - supports-color @@ -18691,11 +18701,11 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 '@types/node': 15.14.9 - babel-jest: 28.1.3(@babel/core@7.23.2) + babel-jest: 28.1.3(@babel/core@7.23.3) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -18845,7 +18855,7 @@ packages: dependencies: '@babel/code-frame': 7.22.13 '@jest/types': 28.1.3 - '@types/stack-utils': 2.0.2 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 @@ -18972,17 +18982,17 @@ packages: resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@babel/core': 7.23.2 - '@babel/generator': 7.23.0 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2) - '@babel/traverse': 7.23.2 - '@babel/types': 7.23.0 + '@babel/core': 7.23.3 + '@babel/generator': 7.23.3 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3) + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 '@types/babel__traverse': 7.20.4 '@types/prettier': 2.7.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.3) chalk: 4.1.2 expect: 28.1.3 graceful-fs: 4.2.11 @@ -19156,25 +19166,25 @@ packages: resolution: {integrity: sha512-SnZNcinB4RIcnEyZqFPdGPVgrg2AcnykiBy0sHVJQKHYeaLUvi3Exj+iaPpLnFVkDPZIV4U0yvgC9/R4uEAZ9g==} dev: false - /jscodeshift@0.14.0(@babel/preset-env@7.23.2): + /jscodeshift@0.14.0(@babel/preset-env@7.23.3): resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} hasBin: true peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.23.2 - '@babel/parser': 7.23.0 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2) - '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) - '@babel/preset-env': 7.23.2(@babel/core@7.23.2) - '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) - '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2) - '@babel/register': 7.22.15(@babel/core@7.23.2) - babel-core: 7.0.0-bridge.0(@babel/core@7.23.2) + '@babel/core': 7.23.3 + '@babel/parser': 7.23.3 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.3) + '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3) + '@babel/preset-env': 7.23.3(@babel/core@7.23.3) + '@babel/preset-flow': 7.23.3(@babel/core@7.23.3) + '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3) + '@babel/register': 7.22.15(@babel/core@7.23.3) + babel-core: 7.0.0-bridge.0(@babel/core@7.23.3) chalk: 4.1.2 - flow-parser: 0.220.1 + flow-parser: 0.221.0 graceful-fs: 4.2.11 micromatch: 4.0.5 neo-async: 2.6.2 @@ -19422,8 +19432,8 @@ packages: resolve: 1.22.8 dev: true - /lightningcss-darwin-arm64@1.22.0: - resolution: {integrity: sha512-aH2be3nNny+It5YEVm8tBSSdRlBVWQV8m2oJ7dESiYRzyY/E/bQUe2xlw5caaMuhlM9aoTMtOH25yzMhir0qPg==} + /lightningcss-darwin-arm64@1.22.1: + resolution: {integrity: sha512-ldvElu+R0QimNTjsKpaZkUv3zf+uefzLy/R1R19jtgOfSRM+zjUCUgDhfEDRmVqJtMwYsdhMI2aJtJChPC6Osg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] @@ -19431,8 +19441,8 @@ packages: dev: true optional: true - /lightningcss-darwin-x64@1.22.0: - resolution: {integrity: sha512-9KHRFA0Y6mNxRHeoQMp0YaI0R0O2kOgUlYPRjuasU4d+pI8NRhVn9bt0yX9VPs5ibWX1RbDViSPtGJvYYrfVAQ==} + /lightningcss-darwin-x64@1.22.1: + resolution: {integrity: sha512-5p2rnlVTv6Gpw4PlTLq925nTVh+HFh4MpegX8dPDYJae+NFVjQ67gY7O6iHIzQjLipDiYejFF0yHrhjU3XgLBQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] @@ -19440,8 +19450,8 @@ packages: dev: true optional: true - /lightningcss-freebsd-x64@1.22.0: - resolution: {integrity: sha512-xaYL3xperGwD85rQioDb52ozF3NAJb+9wrge3jD9lxGffplu0Mn35rXMptB8Uc2N9Mw1i3Bvl7+z1evlqVl7ww==} + /lightningcss-freebsd-x64@1.22.1: + resolution: {integrity: sha512-1FaBtcFrZqB2hkFbAxY//Pnp8koThvyB6AhjbdVqKD4/pu13Rl91fKt2N9qyeQPUt3xy7ORUvSO+dPk3J6EjXg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [freebsd] @@ -19449,8 +19459,8 @@ packages: dev: true optional: true - /lightningcss-linux-arm-gnueabihf@1.22.0: - resolution: {integrity: sha512-epQGvXIjOuxrZpMpMnRjK54ZqzhiHhCPLtHvw2fb6NeK2kK9YtF0wqmeTBiQ1AkbWfnnXGTstYaFNiadNK+StQ==} + /lightningcss-linux-arm-gnueabihf@1.22.1: + resolution: {integrity: sha512-6rub98tYGfE5I5j0BP8t/2d4BZyu1S7Iz9vUkm0H26snAFHYxLfj3RbQn0xHHIePSetjLnhcg3QlfwUAkD/FYg==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] @@ -19458,8 +19468,8 @@ packages: dev: true optional: true - /lightningcss-linux-arm64-gnu@1.22.0: - resolution: {integrity: sha512-AArGtKSY4DGTA8xP8SDyNyKtpsUl1Rzq6FW4JomeyUQ4nBrR71uPChksTpj3gmWuGhZeRKLeCUI1DBid/zhChg==} + /lightningcss-linux-arm64-gnu@1.22.1: + resolution: {integrity: sha512-nYO5qGtb/1kkTZu3FeTiM+2B2TAb7m2DkLCTgQIs2bk2o9aEs7I96fwySKcoHWQAiQDGR9sMux9vkV4KQXqPaQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] @@ -19467,8 +19477,8 @@ packages: dev: true optional: true - /lightningcss-linux-arm64-musl@1.22.0: - resolution: {integrity: sha512-RRraNgP8hnBPhInTTUdlFm+z16C/ghbxBG51Sw00hd7HUyKmEUKRozyc5od+/N6pOrX/bIh5vIbtMXIxsos0lg==} + /lightningcss-linux-arm64-musl@1.22.1: + resolution: {integrity: sha512-MCV6RuRpzXbunvzwY644iz8cw4oQxvW7oer9xPkdadYqlEyiJJ6wl7FyJOH7Q6ZYH4yjGAUCvxDBxPbnDu9ZVg==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] @@ -19476,8 +19486,8 @@ packages: dev: true optional: true - /lightningcss-linux-x64-gnu@1.22.0: - resolution: {integrity: sha512-grdrhYGRi2KrR+bsXJVI0myRADqyA7ekprGxiuK5QRNkv7kj3Yq1fERDNyzZvjisHwKUi29sYMClscbtl+/Zpw==} + /lightningcss-linux-x64-gnu@1.22.1: + resolution: {integrity: sha512-RjNgpdM20VUXgV7us/VmlO3Vn2ZRiDnc3/bUxCVvySZWPiVPprpqW/QDWuzkGa+NCUf6saAM5CLsZLSxncXJwg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] @@ -19485,8 +19495,8 @@ packages: dev: true optional: true - /lightningcss-linux-x64-musl@1.22.0: - resolution: {integrity: sha512-t5f90X+iQUtIyR56oXIHMBUyQFX/zwmPt72E6Dane3P8KNGlkijTg2I75XVQS860gNoEFzV7Mm5ArRRA7u5CAQ==} + /lightningcss-linux-x64-musl@1.22.1: + resolution: {integrity: sha512-ZgO4C7Rd6Hv/5MnyY2KxOYmIlzk4rplVolDt3NbkNR8DndnyX0Q5IR4acJWNTBICQ21j3zySzKbcJaiJpk/4YA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] @@ -19494,8 +19504,8 @@ packages: dev: true optional: true - /lightningcss-win32-x64-msvc@1.22.0: - resolution: {integrity: sha512-64HTDtOOZE9PUCZJiZZQpyqXBbdby1lnztBccnqh+NtbKxjnGzP92R2ngcgeuqMPecMNqNWxgoWgTGpC+yN5Sw==} + /lightningcss-win32-x64-msvc@1.22.1: + resolution: {integrity: sha512-4pozV4eyD0MDET41ZLHAeBo+H04Nm2UEYIk5w/ts40231dRFV7E0cjwbnZvSoc1DXFgecAhiC0L16ruv/ZDCpg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] @@ -19503,21 +19513,21 @@ packages: dev: true optional: true - /lightningcss@1.22.0: - resolution: {integrity: sha512-+z0qvwRVzs4XGRXelnWRNwqsXUx8k3bSkbP8vD42kYKSk3z9OM2P3e/gagT7ei/gwh8DTS80LZOFZV6lm8Z8Fg==} + /lightningcss@1.22.1: + resolution: {integrity: sha512-Fy45PhibiNXkm0cK5FJCbfO8Y6jUpD/YcHf/BtuI+jvYYqSXKF4muk61jjE8YxCR9y+hDYIWSzHTc+bwhDE6rQ==} engines: {node: '>= 12.0.0'} dependencies: detect-libc: 1.0.3 optionalDependencies: - lightningcss-darwin-arm64: 1.22.0 - lightningcss-darwin-x64: 1.22.0 - lightningcss-freebsd-x64: 1.22.0 - lightningcss-linux-arm-gnueabihf: 1.22.0 - lightningcss-linux-arm64-gnu: 1.22.0 - lightningcss-linux-arm64-musl: 1.22.0 - lightningcss-linux-x64-gnu: 1.22.0 - lightningcss-linux-x64-musl: 1.22.0 - lightningcss-win32-x64-msvc: 1.22.0 + lightningcss-darwin-arm64: 1.22.1 + lightningcss-darwin-x64: 1.22.1 + lightningcss-freebsd-x64: 1.22.1 + lightningcss-linux-arm-gnueabihf: 1.22.1 + lightningcss-linux-arm64-gnu: 1.22.1 + lightningcss-linux-arm64-musl: 1.22.1 + lightningcss-linux-x64-gnu: 1.22.1 + lightningcss-linux-x64-musl: 1.22.1 + lightningcss-win32-x64-msvc: 1.22.1 dev: true /lilconfig@2.1.0: @@ -20092,15 +20102,15 @@ packages: /mdast-util-definitions@5.1.2: resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} dependencies: - '@types/mdast': 3.0.14 - '@types/unist': 2.0.9 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 unist-util-visit: 4.1.2 dev: false /mdast-util-find-and-replace@2.2.2: resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 escape-string-regexp: 5.0.0 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 @@ -20108,8 +20118,8 @@ packages: /mdast-util-from-markdown@1.3.1: resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} dependencies: - '@types/mdast': 3.0.14 - '@types/unist': 2.0.9 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 decode-named-character-reference: 1.0.2 mdast-util-to-string: 3.2.0 micromark: 3.2.0 @@ -20126,7 +20136,7 @@ packages: /mdast-util-frontmatter@1.0.1: resolution: {integrity: sha512-JjA2OjxRqAa8wEG8hloD0uTU0kdn8kbtOWpPP94NBkfAlbxn4S8gCGf/9DwFtEeGPXrDcNXdiDjVaRdUFqYokw==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 micromark-extension-frontmatter: 1.1.1 dev: false @@ -20134,7 +20144,7 @@ packages: /mdast-util-gfm-autolink-literal@1.0.3: resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 ccount: 2.0.1 mdast-util-find-and-replace: 2.2.2 micromark-util-character: 1.2.0 @@ -20142,20 +20152,20 @@ packages: /mdast-util-gfm-footnote@1.0.2: resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 micromark-util-normalize-identifier: 1.1.0 /mdast-util-gfm-strikethrough@1.0.3: resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 /mdast-util-gfm-table@1.0.7: resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 markdown-table: 3.0.3 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -20165,7 +20175,7 @@ packages: /mdast-util-gfm-task-list-item@1.0.2: resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 /mdast-util-gfm@2.0.2: @@ -20185,8 +20195,8 @@ packages: resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} dependencies: '@types/estree-jsx': 1.0.3 - '@types/hast': 2.3.7 - '@types/mdast': 3.0.14 + '@types/hast': 2.3.8 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -20197,9 +20207,9 @@ packages: resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==} dependencies: '@types/estree-jsx': 1.0.3 - '@types/hast': 2.3.7 - '@types/mdast': 3.0.14 - '@types/unist': 2.0.9 + '@types/hast': 2.3.8 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 ccount: 2.0.1 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -20228,8 +20238,8 @@ packages: resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==} dependencies: '@types/estree-jsx': 1.0.3 - '@types/hast': 2.3.7 - '@types/mdast': 3.0.14 + '@types/hast': 2.3.8 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -20239,14 +20249,14 @@ packages: /mdast-util-phrasing@3.0.1: resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 unist-util-is: 5.2.1 /mdast-util-to-hast@12.3.0: resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} dependencies: - '@types/hast': 2.3.7 - '@types/mdast': 3.0.14 + '@types/hast': 2.3.8 + '@types/mdast': 3.0.15 mdast-util-definitions: 5.1.2 micromark-util-sanitize-uri: 1.2.0 trim-lines: 3.0.1 @@ -20258,8 +20268,8 @@ packages: /mdast-util-to-markdown@1.5.0: resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} dependencies: - '@types/mdast': 3.0.14 - '@types/unist': 2.0.9 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 longest-streak: 3.1.0 mdast-util-phrasing: 3.0.1 mdast-util-to-string: 3.2.0 @@ -20273,7 +20283,7 @@ packages: /mdast-util-to-string@3.2.0: resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 /mdn-data@2.0.14: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} @@ -20648,7 +20658,7 @@ packages: dependencies: '@types/acorn': 4.0.6 '@types/estree': 1.0.5 - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 estree-util-visit: 1.2.1 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 @@ -20693,7 +20703,7 @@ packages: /micromark@3.2.0: resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} dependencies: - '@types/debug': 4.1.11 + '@types/debug': 4.1.12 debug: 4.3.4 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 @@ -21069,7 +21079,7 @@ packages: '@contentlayer/core': 0.3.4(esbuild@0.19.5) '@contentlayer/utils': 0.3.4 contentlayer: 0.3.4(esbuild@0.19.5) - next: 13.5.1(@babel/core@7.23.2)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0) + next: 13.5.1(@babel/core@7.23.3)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: @@ -21090,7 +21100,7 @@ packages: '@next/env': 13.5.6 fast-glob: 3.3.2 minimist: 1.2.8 - next: 13.5.1(@babel/core@7.23.2)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0) + next: 13.5.1(@babel/core@7.23.3)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0) dev: true /next-themes@0.2.1(next@13.5.1)(react-dom@18.2.0)(react@18.2.0): @@ -21100,7 +21110,7 @@ packages: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - next: 13.5.1(@babel/core@7.23.2)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0) + next: 13.5.1(@babel/core@7.23.3)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -21109,7 +21119,7 @@ packages: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} dev: false - /next@13.5.1(@babel/core@7.23.2)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0): + /next@13.5.1(@babel/core@7.23.3)(@opentelemetry/api@1.7.0)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-GIudNR7ggGUZoIL79mSZcxbXK9f5pwAIPZxEM8+j2yLqv5RODg4TkmUlaKSYVqE1bPQueamXSqdC3j7axiTSEg==} engines: {node: '>=16.14.0'} hasBin: true @@ -21132,7 +21142,7 @@ packages: postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.23.2)(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.23.3)(react@18.2.0) watchpack: 2.4.0 zod: 3.21.4 optionalDependencies: @@ -21251,7 +21261,7 @@ packages: resolution: {integrity: sha512-qmXJJt3YETFt/e0dtMADVpvck6EvN01Jig086o+J3M6G++mWA7iJ3Pqz4m4kvlynh73Iz2/rcZzxq7xTiF+aIQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dependencies: - '@types/inquirer': 8.2.9 + '@types/inquirer': 8.2.10 change-case: 4.1.2 del: 6.1.1 globby: 13.2.2 @@ -21925,7 +21935,7 @@ packages: /parse-entities@4.0.1: resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 character-entities: 2.0.2 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 @@ -22787,13 +22797,13 @@ packages: resolution: {integrity: sha512-gF+p+1ZwC2eO66bt763Tepmh5q9kDiFIrqW3YjUV/a+L96h0m5+/wSFQoOHL2cffyrPMZMxP03IgbggJ11QbOw==} engines: {node: '>=14.18.0'} dependencies: - '@babel/core': 7.23.2 - '@babel/traverse': 7.23.2 - '@babel/types': 7.23.0 + '@babel/core': 7.23.3 + '@babel/traverse': 7.23.3 + '@babel/types': 7.23.3 '@types/babel__core': 7.20.4 '@types/babel__traverse': 7.20.4 '@types/doctrine': 0.0.6 - '@types/resolve': 1.20.4 + '@types/resolve': 1.20.5 doctrine: 3.0.0 resolve: 1.22.8 strip-indent: 4.0.0 @@ -23323,7 +23333,7 @@ packages: /rehype-parse@8.0.5: resolution: {integrity: sha512-Ds3RglaY/+clEX2U2mHflt7NlMA72KspZ0JLUJgBBLpRddBcEw3H8uYZQliQriku22NZpYMfjDdSgHcjxue24A==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 hast-util-from-parse5: 7.1.2 parse5: 6.0.1 unified: 10.1.2 @@ -23347,7 +23357,7 @@ packages: /rehype-slug@5.1.0: resolution: {integrity: sha512-Gf91dJoXneiorNEnn+Phx97CO7oRMrpi+6r155tTxzGuLtm+QrI4cTwCa9e1rtePdL4i9tSO58PeSS6HWfgsiw==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 github-slugger: 2.0.0 hast-util-has-property: 2.0.1 hast-util-heading-rank: 2.1.1 @@ -23365,7 +23375,7 @@ packages: /rehype-stringify@9.0.4: resolution: {integrity: sha512-Uk5xu1YKdqobe5XpSskwPvo1XeHUUucWEQSl8hTrXt5selvca1e8K1EZ37E6YoZ4BT8BCqCdVfQW7OfHfthtVQ==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 hast-util-to-html: 8.0.4 unified: 10.1.2 dev: false @@ -23381,7 +23391,7 @@ packages: /remark-autolink-headings@6.1.0: resolution: {integrity: sha512-oeMSIfjaNboWPDVKahQAjF8iJ8hsz5aI8KFzAmmBdznir7zBvkgUjYE/BrpWvd02DCf/mSQ1IklznLkl3dVvZQ==} dependencies: - '@types/hast': 2.3.7 + '@types/hast': 2.3.8 extend: 3.0.2 unified: 9.2.2 unist-util-visit: 2.0.3 @@ -23400,7 +23410,7 @@ packages: /remark-frontmatter@4.0.1: resolution: {integrity: sha512-38fJrB0KnmD3E33a5jZC/5+gGAC2WKNiPw1/fdXJvijBlhA7RCsvJklrYJakS0HedninvaCYW8lQGf9C918GfA==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-frontmatter: 1.0.1 micromark-extension-frontmatter: 1.1.1 unified: 10.1.2 @@ -23409,7 +23419,7 @@ packages: /remark-gfm@3.0.1: resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-gfm: 2.0.2 micromark-extension-gfm: 2.0.3 unified: 10.1.2 @@ -23438,7 +23448,7 @@ packages: /remark-parse@10.0.2: resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 unified: 10.1.2 transitivePeerDependencies: @@ -23448,8 +23458,8 @@ packages: /remark-rehype@10.1.0: resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} dependencies: - '@types/hast': 2.3.7 - '@types/mdast': 3.0.14 + '@types/hast': 2.3.8 + '@types/mdast': 3.0.15 mdast-util-to-hast: 12.3.0 unified: 10.1.2 dev: false @@ -23464,7 +23474,7 @@ packages: /remark-stringify@10.0.3: resolution: {integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 unified: 10.1.2 dev: false @@ -23472,7 +23482,7 @@ packages: /remark@14.0.3: resolution: {integrity: sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==} dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 remark-parse: 10.0.2 remark-stringify: 10.0.3 unified: 10.1.2 @@ -24463,8 +24473,8 @@ packages: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} engines: {node: '>=10.0.0'} - /streamx@2.15.2: - resolution: {integrity: sha512-b62pAV/aeMjUoRN2C/9F0n+G8AfcJjNC0zw/ZmOHeFsIe4m4GzjVW9m6VHXVjk536NbdU9JRwKMJRfkc+zUFTg==} + /streamx@2.15.3: + resolution: {integrity: sha512-8UmzFRA08VahBuaw6UxQAX+NAmMtPVkPDWUtLhyHRaU2uxiw3+keTuSJRJfAfpqo7M3TSAhYtdRzYqG/j02hzA==} dependencies: fast-fifo: 1.3.2 queue-tick: 1.0.1 @@ -24708,7 +24718,7 @@ packages: inline-style-parser: 0.1.1 dev: false - /styled-jsx@5.1.1(@babel/core@7.23.2)(react@18.2.0): + /styled-jsx@5.1.1(@babel/core@7.23.3)(react@18.2.0): resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -24721,7 +24731,7 @@ packages: babel-plugin-macros: optional: true dependencies: - '@babel/core': 7.23.2 + '@babel/core': 7.23.3 client-only: 0.0.1 react: 18.2.0 @@ -24917,7 +24927,7 @@ packages: dependencies: b4a: 1.6.4 fast-fifo: 1.3.2 - streamx: 2.15.2 + streamx: 2.15.3 dev: false /tar@6.2.0: @@ -25645,7 +25655,7 @@ packages: /unified@10.1.2: resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 bail: 2.0.2 extend: 3.0.2 is-buffer: 2.0.5 @@ -25656,7 +25666,7 @@ packages: /unified@9.2.2: resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -25727,61 +25737,61 @@ packages: /unist-util-is@5.2.1: resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 /unist-util-position-from-estree@1.1.2: resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 dev: false /unist-util-position@4.0.4: resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 dev: false /unist-util-remove-position@4.0.2: resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 unist-util-visit: 4.1.2 dev: false /unist-util-stringify-position@2.0.3: resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 dev: false /unist-util-stringify-position@3.0.3: resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 /unist-util-visit-parents@3.1.1: resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 unist-util-is: 4.1.0 /unist-util-visit-parents@5.1.3: resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 unist-util-is: 5.2.1 /unist-util-visit@2.0.3: resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 /unist-util-visit@4.1.2: resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 @@ -26074,27 +26084,27 @@ packages: /vfile-location@4.1.0: resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 vfile: 5.3.7 dev: false /vfile-message@2.0.4: resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 unist-util-stringify-position: 2.0.3 dev: false /vfile-message@3.1.4: resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 unist-util-stringify-position: 3.0.3 /vfile@4.2.1: resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 @@ -26103,7 +26113,7 @@ packages: /vfile@5.3.7: resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 @@ -26361,7 +26371,7 @@ packages: browserslist: 4.22.1 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.1 + es-module-lexer: 1.4.0 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -26402,7 +26412,7 @@ packages: browserslist: 4.22.1 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.1 + es-module-lexer: 1.4.0 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1