From b68355aa1392dce4e7b374cd9b4d6e9223613221 Mon Sep 17 00:00:00 2001 From: Casper Iversen <53900565+casperiv0@users.noreply.github.com> Date: Sun, 9 Jun 2024 18:14:58 +0200 Subject: [PATCH] chore: upgrade React.js (#1943) --- apps/client/package.json | 18 +- .../dispatch/map/units/player-marker.tsx | 1 + apps/client/src/components/editor/editor.tsx | 2 + .../editor/elements/checklist-item.tsx | 1 + packages/ui/package.json | 66 +- packages/ui/src/components/dnd/draggable.tsx | 1 + packages/ui/src/components/dnd/droppable.tsx | 1 + .../fields/async-list-search-field.tsx | 4 +- .../async-list-search-field/actions.tsx | 2 +- .../components/fields/date-picker-field.tsx | 2 +- .../ui/src/components/fields/select-field.tsx | 2 +- .../inputs/select/select-actions.tsx | 5 +- .../ui/src/hooks/select/useMultiSelect.ts | 12 +- pnpm-lock.yaml | 3169 +++++++++-------- 14 files changed, 1723 insertions(+), 1563 deletions(-) diff --git a/apps/client/package.json b/apps/client/package.json index 9c280f859..639d31a29 100644 --- a/apps/client/package.json +++ b/apps/client/package.json @@ -20,14 +20,14 @@ "dependencies": { "@casperiv/use-socket.io": "6.0.1", "@casperiv/useful": "^3.0.0", - "@headlessui/react": "^1.7.17", + "@headlessui/react": "^2.0.4", "@radix-ui/react-popover": "^1.0.7", "@radix-ui/react-tabs": "^1.0.4", "@radix-ui/react-toolbar": "^1.0.4", "@radix-ui/react-tooltip": "^1.0.7", "@react-aria/label": "^3.7.8", "@react-aria/ssr": "^3.9.4", - "@react-types/shared": "^3.22.0", + "@react-types/shared": "^3.23.1", "@sentry/browser": "^7.81.1", "@sentry/nextjs": "^7.81.1", "@sentry/tracing": "^7.81.1", @@ -46,8 +46,8 @@ "@types/is-hotkey": "^0.1.10", "@types/leaflet": "^1.9.12", "@types/nprogress": "^0.2.3", - "@types/react": "18.2.34", - "@types/react-dom": "18.2.14", + "@types/react": "18.3.3", + "@types/react-dom": "18.3.0", "@types/sortablejs": "^1.15.8", "@types/uuid": "^9.0.8", "autoprefixer": "^10.4.19", @@ -67,28 +67,28 @@ "nookies": "^2.5.2", "nprogress": "^0.2.0", "pretty-bytes": "^6.1.1", - "react": "18.2.0", + "react": "18.3.1", "react-bootstrap-icons": "^1.11.4", "react-colorful": "^5.6.1", "react-cool-onclickoutside": "^1.7.0", "react-cropper": "^2.3.3", "react-diff-viewer-continued": "^3.4.0", "react-digit-input": "^2.1.0", - "react-dom": "18.2.0", + "react-dom": "18.3.1", "react-google-recaptcha-v3": "^1.10.1", "react-hot-toast": "^2.4.1", "react-leaflet": "^4.2.1", "react-markdown": "^9.0.1", "react-select": "^5.8.0", "react-sortablejs": "^6.1.4", - "react-use": "^17.4.0", + "react-use": "^17.5.0", "remark-emoji": "^4.0.1", "remark-external-links": "^9.0.1", "remark-gfm": "^4.0.0", "remark-github": "^12.0.0", - "slate": "^0.100.0", + "slate": "^0.103.0", "slate-history": "^0.100.0", - "slate-react": "^0.101.0", + "slate-react": "^0.105.0", "socket.io-client": "^4.7.5", "sortablejs": "^1.15.2", "storage-factory": "^0.2.1", diff --git a/apps/client/src/components/dispatch/map/units/player-marker.tsx b/apps/client/src/components/dispatch/map/units/player-marker.tsx index 0251a8452..3c6809fe8 100644 --- a/apps/client/src/components/dispatch/map/units/player-marker.tsx +++ b/apps/client/src/components/dispatch/map/units/player-marker.tsx @@ -122,6 +122,7 @@ export function PlayerMarker({ player, handleToggle }: Props) { return ( (player.ref = ref)} icon={playerIcon} key={player.identifier} diff --git a/apps/client/src/components/editor/editor.tsx b/apps/client/src/components/editor/editor.tsx index 853871d60..02fee1208 100644 --- a/apps/client/src/components/editor/editor.tsx +++ b/apps/client/src/components/editor/editor.tsx @@ -71,6 +71,7 @@ export function Editor(props: EditorProps) { ); const renderLeaf = React.useCallback((props: RenderLeafProps) => , []); const editor = React.useMemo( + // @ts-expect-error - Missing types in Slate () => withChecklists(withShortcuts(withHistory(withReact(createEditor())))), [], ); @@ -131,6 +132,7 @@ export function Editor(props: EditorProps) { )} > { diff --git a/apps/client/src/components/editor/elements/checklist-item.tsx b/apps/client/src/components/editor/elements/checklist-item.tsx index 75d8d41a2..b09276ae4 100644 --- a/apps/client/src/components/editor/elements/checklist-item.tsx +++ b/apps/client/src/components/editor/elements/checklist-item.tsx @@ -11,6 +11,7 @@ export function CheckListItemElement({ attributes, children, element }: Props) { const readOnly = useReadOnly(); function handleSelectionChange(isSelected: boolean) { + // @ts-expect-error - Missing types in Slate const path = ReactEditor.findPath(editor, element); Transforms.setNodes(editor, { checked: isSelected }, { at: path }); diff --git a/packages/ui/package.json b/packages/ui/package.json index 3114c689b..e00db8294 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -30,15 +30,15 @@ "@storybook/react-vite": "^7.5.3", "@storybook/test-runner": "^0.15.2", "@storybook/testing-library": "^0.2.2", - "autoprefixer": "^10.4.16", + "autoprefixer": "^10.4.19", "monaco-editor": "^0.44.0", - "postcss": "^8.4.31", + "postcss": "^8.4.38", "prop-types": "^15.8.1", "storybook": "^7.5.3", - "tailwindcss": "^3.3.5", + "tailwindcss": "^3.4.4", "tsup": "6.6.2", "typescript": "^5.3.2", - "vite": "^5.0.2" + "vite": "^5.2.13" }, "tsup": { "entry": [ @@ -62,70 +62,70 @@ "next-intl": "2.22.1", "use-intl": "2.22.1", "@casperiv/useful": "^3.0.0", - "@internationalized/date": "^3.5.0", + "@internationalized/date": "^3.5.4", "@monaco-editor/react": "^4.6.0", "@radix-ui/react-accordion": "^1.1.2", "@radix-ui/react-context-menu": "^2.1.5", "@radix-ui/react-dropdown-menu": "^2.0.6", "@radix-ui/react-hover-card": "^1.0.7", "@radix-ui/react-tabs": "^1.0.4", - "@react-aria/breadcrumbs": "^3.5.8", - "@react-aria/button": "^3.9.0", - "@react-aria/calendar": "^3.5.3", + "@react-aria/breadcrumbs": "^3.5.13", + "@react-aria/button": "^3.9.5", + "@react-aria/calendar": "^3.5.8", "@react-aria/checkbox": "^3.12.0", "@react-aria/combobox": "^3.8.0", "@react-aria/datepicker": "^3.9.0", - "@react-aria/dialog": "^3.5.8", + "@react-aria/dialog": "^3.5.14", "@react-aria/focus": "^3.15.0", "@react-aria/i18n": "^3.9.0", "@react-aria/interactions": "^3.20.0", - "@react-aria/label": "^3.7.3", + "@react-aria/label": "^3.7.8", "@react-aria/listbox": "^3.11.2", "@react-aria/menu": "^3.11.2", "@react-aria/overlays": "^3.19.0", - "@react-aria/progress": "^3.4.8", + "@react-aria/progress": "^3.4.13", "@react-aria/radio": "^3.9.0", "@react-aria/switch": "^3.5.7", "@react-aria/textfield": "^3.13.0", "@react-aria/utils": "^3.22.0", - "@react-aria/visually-hidden": "^3.8.7", + "@react-aria/visually-hidden": "^3.8.12", "@react-stately/calendar": "^3.4.2", - "@react-stately/collections": "^3.10.3", - "@react-stately/combobox": "^3.8.0", - "@react-stately/data": "^3.11.0", - "@react-stately/datepicker": "^3.9.0", - "@react-stately/list": "^3.10.1", + "@react-stately/collections": "^3.10.7", + "@react-stately/combobox": "^3.8.4", + "@react-stately/data": "^3.11.4", + "@react-stately/datepicker": "^3.9.4", + "@react-stately/list": "^3.10.5", "@react-stately/menu": "^3.5.7", - "@react-stately/overlays": "^3.6.4", - "@react-stately/radio": "^3.10.0", - "@react-stately/select": "^3.6.0", - "@react-stately/toggle": "^3.7.0", + "@react-stately/overlays": "^3.6.7", + "@react-stately/radio": "^3.10.4", + "@react-stately/select": "^3.6.4", + "@react-stately/toggle": "^3.7.4", "@react-types/combobox": "^3.9.0", - "@react-types/overlays": "^3.8.4", - "@react-types/select": "^3.9.0", + "@react-types/overlays": "^3.8.7", + "@react-types/select": "^3.9.4", "@react-types/shared": "^3.22.0", "@snailycad/config": "workspace:*", "@snailycad/types": "workspace:*", "@snailycad/utils": "workspace:*", - "@types/react": "18.2.34", - "@types/react-dom": "18.2.14", + "@types/react": "18.3.3", + "@types/react-dom": "18.3.0", "class-variance-authority": "^0.7.0", - "formik": "^2.4.5", + "formik": "^2.4.6", "mxcn": "^2.0.0", - "react-bootstrap-icons": "^1.10.3", + "react-bootstrap-icons": "^1.11.4", "react-dnd": "16.0.1", "react-dnd-html5-backend": "16.0.1", - "react-use": "^17.4.0", - "rimraf": "^5.0.5", - "tailwind-merge": "^2.0.0", - "tslib": "^2.6.2" + "react-use": "^17.5.0", + "rimraf": "^5.0.7", + "tailwind-merge": "^2.3.0", + "tslib": "^2.6.3" }, "peerDependencies": { "date-fns": ">=2.30.0", "next": "*", "next-intl": "2.22.1", - "react": ">=18.2.0", - "react-dom": ">=18.2.0", + "react": ">=18.3.1", + "react-dom": ">=18.3.1", "use-intl": "2.22.1" }, "sideEffects": false diff --git a/packages/ui/src/components/dnd/draggable.tsx b/packages/ui/src/components/dnd/draggable.tsx index d2c181f73..48ff99415 100644 --- a/packages/ui/src/components/dnd/draggable.tsx +++ b/packages/ui/src/components/dnd/draggable.tsx @@ -28,6 +28,7 @@ export function Draggable(props: Props) { }, [isDragging]); // eslint-disable-line react-hooks/exhaustive-deps return ( + // @ts-expect-error - React versions are different
{props.children({ isDragging })}
diff --git a/packages/ui/src/components/dnd/droppable.tsx b/packages/ui/src/components/dnd/droppable.tsx index dcf148721..ccd42ba25 100644 --- a/packages/ui/src/components/dnd/droppable.tsx +++ b/packages/ui/src/components/dnd/droppable.tsx @@ -23,6 +23,7 @@ export function Droppable(props: Props) { const isActive = isOver && _canDrop; return ( + // @ts-expect-error - React versions are different
{props.children}
diff --git a/packages/ui/src/components/fields/async-list-search-field.tsx b/packages/ui/src/components/fields/async-list-search-field.tsx index 1d0bff8aa..febd6dc4f 100644 --- a/packages/ui/src/components/fields/async-list-search-field.tsx +++ b/packages/ui/src/components/fields/async-list-search-field.tsx @@ -106,7 +106,7 @@ function AsyncListSearchField(props: AsyncListFieldProps) { [props.localValue], ); - function handleSelectionChange(key?: Key, value?: string) { + function handleSelectionChange(key?: Key | null, value?: string) { try { if (props.isClearable && key === "cleared") { props.onSelectionChange(null); @@ -222,7 +222,7 @@ function AsyncListSearchField(props: AsyncListFieldProps) { ) : null} - {props.errorMessage && ( + {!!props.errorMessage && ( )} diff --git a/packages/ui/src/components/fields/async-list-search-field/actions.tsx b/packages/ui/src/components/fields/async-list-search-field/actions.tsx index 4e1bb0f82..5ad77e5ee 100644 --- a/packages/ui/src/components/fields/async-list-search-field/actions.tsx +++ b/packages/ui/src/components/fields/async-list-search-field/actions.tsx @@ -16,7 +16,7 @@ export function AsyncListSearchFieldActions(props: AsyncListSearchFieldAction ? "border-gray-800 dark:border-gray-500" : "border-gray-200 dark:border-quinary"; const errorMessageClassName = - props.errorMessage && "!border-red-500 focus:!border-red-700 dark:!focus:border-red-700"; + !!props.errorMessage && "!border-red-500 focus:!border-red-700 dark:!focus:border-red-700"; const enabledHoverClassName = !props.isDisabled && "group-hover:dark:!border-gray-500 group-hover:!border-gray-500"; diff --git a/packages/ui/src/components/fields/date-picker-field.tsx b/packages/ui/src/components/fields/date-picker-field.tsx index 9f05daf04..7b8676ea4 100644 --- a/packages/ui/src/components/fields/date-picker-field.tsx +++ b/packages/ui/src/components/fields/date-picker-field.tsx @@ -60,7 +60,7 @@ export function DatePickerField({ value: _value, ...rest }: Props) { } = useDatePicker({ ...rest }, state, triggerRef); const errorMessageClassName = - rest.errorMessage && "!border-red-500 focus:!border-red-700 dark:!focus:border-red-700"; + !!rest.errorMessage && "!border-red-500 focus:!border-red-700 dark:!focus:border-red-700"; return ( diff --git a/packages/ui/src/components/fields/select-field.tsx b/packages/ui/src/components/fields/select-field.tsx index db1925800..7897ec9bc 100644 --- a/packages/ui/src/components/fields/select-field.tsx +++ b/packages/ui/src/components/fields/select-field.tsx @@ -104,7 +104,7 @@ export function SelectField(props: SelectFieldProps) { size: "sm", className: cn( "px-2 cursor-default !rounded-r-none w-full min-h-[39px] h-auto flex items-center justify-between border !bg-white dark:!bg-secondary hover:dark:!bg-secondary hover:dark:!brightness-100 group-hover:dark:!border-gray-500 group-hover:!border-gray-500", - props.errorMessage && + !!props.errorMessage && "!border-red-500 focus:!border-red-700 dark:focus:!border-red-700", state.isOpen && "dark:!border-gray-500 !border-gray-500", props.isDisabled && "!cursor-not-allowed opacity-60", diff --git a/packages/ui/src/components/inputs/select/select-actions.tsx b/packages/ui/src/components/inputs/select/select-actions.tsx index 6d7f1868d..40e754861 100644 --- a/packages/ui/src/components/inputs/select/select-actions.tsx +++ b/packages/ui/src/components/inputs/select/select-actions.tsx @@ -44,7 +44,7 @@ export function SelectActions(props: Props) { "px-2 !rounded-none -mx-[1.5px]", "group-hover:dark:!border-gray-500 group-hover:!border-gray-500", props.state.isOpen && "!border-gray-800 dark:!border-gray-500", - props.errorMessage && + !!props.errorMessage && "!border-red-500 focus:!border-red-700 dark:!focus:border-red-700", )} type="button" @@ -63,7 +63,8 @@ export function SelectActions(props: Props) { !showClearableButton && "-ml-[1.5px]", "group-hover:dark:!border-gray-500 group-hover:!border-gray-500", props.state.isOpen && "!border-gray-800 dark:!border-gray-500", - props.errorMessage && "!border-red-500 focus:!border-red-700 dark:!focus:border-red-700", + !!props.errorMessage && + "!border-red-500 focus:!border-red-700 dark:!focus:border-red-700", )} > diff --git a/packages/ui/src/hooks/select/useMultiSelect.ts b/packages/ui/src/hooks/select/useMultiSelect.ts index 6bc8ef28f..3a49ba51e 100644 --- a/packages/ui/src/hooks/select/useMultiSelect.ts +++ b/packages/ui/src/hooks/select/useMultiSelect.ts @@ -9,17 +9,27 @@ import type { MultiSelectState, } from "./useMultiSelectState"; import type { AriaSelectProps } from "@react-types/select"; +import type { AriaButtonOptions } from "@react-aria/button"; +import type { DOMAttributes, FocusableElement } from "@react-types/shared"; interface MultiSelectProps extends Omit, "onSelectionChange"> { disallowEmptySelection?: boolean; onSelectionChange?: MultiSelectStateProps["onSelectionChange"]; } +interface UseMultiSelect { + triggerProps: AriaButtonOptions<"button">; + labelProps: Record; + errorMessageProps: DOMAttributes; + valueProps: Record; + menuProps: Record; +} + export function useMultiSelect( props: MultiSelectProps, state: MultiSelectState, ref: React.RefObject, -) { +): UseMultiSelect { const { disallowEmptySelection, isDisabled } = props; const { menuTriggerProps, menuProps } = useMenuTrigger( diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6766691a5..7c86929a3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -44,7 +44,7 @@ importers: version: 8.0.0(eslint@8.56.0)(prettier@3.3.1)(typescript@5.4.5) "@casperiv/eslint-config-next": specifier: 8.0.0 - version: 8.0.0(eslint@8.56.0)(next@14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4))(typescript@5.4.5) + version: 8.0.0(eslint@8.56.0)(next@14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4))(typescript@5.4.5) "@casperiv/eslint-config-react": specifier: 8.0.0 version: 8.0.0(eslint@8.56.0) @@ -224,7 +224,7 @@ importers: version: 6.18.2 use-intl: specifier: 2.22.1 - version: 2.22.1(react@18.2.0) + version: 2.22.1(react@18.3.1) zod: specifier: ^3.23.8 version: 3.23.8 @@ -306,40 +306,40 @@ importers: dependencies: "@casperiv/use-socket.io": specifier: 6.0.1 - version: 6.0.1(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/react@18.2.34)(immer@10.0.3)(postcss@8.4.38)(react@18.2.0)(socket.io-client@4.7.5)(socket.io@4.7.5)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))(typescript@5.3.2) + version: 6.0.1(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/react@18.3.3)(immer@10.0.3)(postcss@8.4.38)(react@18.3.1)(socket.io-client@4.7.5)(socket.io@4.7.5)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))(typescript@5.3.2) "@casperiv/useful": specifier: ^3.0.0 - version: 3.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@headlessui/react": - specifier: ^1.7.17 - version: 1.7.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: ^2.0.4 + version: 2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@radix-ui/react-popover": specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@radix-ui/react-tabs": specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@radix-ui/react-toolbar": specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@radix-ui/react-tooltip": specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/label": specifier: ^3.7.8 - version: 3.7.8(react@18.2.0) + version: 3.7.8(react@18.3.1) "@react-aria/ssr": specifier: ^3.9.4 - version: 3.9.4(react@18.2.0) + version: 3.9.4(react@18.3.1) "@react-types/shared": - specifier: ^3.22.0 - version: 3.22.0(react@18.2.0) + specifier: ^3.23.1 + version: 3.23.1(react@18.3.1) "@sentry/browser": specifier: ^7.81.1 version: 7.81.1 "@sentry/nextjs": specifier: ^7.81.1 - version: 7.81.1(encoding@0.1.13)(next@14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4))(react@18.2.0) + version: 7.81.1(encoding@0.1.13)(next@14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4))(react@18.3.1) "@sentry/tracing": specifier: ^7.81.1 version: 7.81.1 @@ -369,10 +369,10 @@ importers: version: 0.5.13(tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))) "@tanstack/react-query": specifier: ^5.40.1 - version: 5.40.1(react@18.2.0) + version: 5.40.1(react@18.3.1) "@tanstack/react-table": specifier: 8.17.3 - version: 8.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.17.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@types/color": specifier: ^3.0.6 version: 3.0.6 @@ -389,11 +389,11 @@ importers: specifier: ^0.2.3 version: 0.2.3 "@types/react": - specifier: 18.2.34 - version: 18.2.34 + specifier: 18.3.3 + version: 18.3.3 "@types/react-dom": - specifier: 18.2.14 - version: 18.2.14 + specifier: 18.3.0 + version: 18.3.0 "@types/sortablejs": specifier: ^1.15.8 version: 1.15.8 @@ -420,7 +420,7 @@ importers: version: 14.0.3(eslint@8.56.0)(typescript@5.3.2) formik: specifier: ^2.4.6 - version: 2.4.6(react@18.2.0) + version: 2.4.6(react@18.3.1) hex-color-regex: specifier: ^1.1.0 version: 1.1.0 @@ -438,10 +438,10 @@ importers: version: 2.0.0 next: specifier: 14.0.3 - version: 14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4) + version: 14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4) next-intl: specifier: 2.22.1 - version: 2.22.1(next@14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4))(react@18.2.0) + version: 2.22.1(next@14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4))(react@18.3.1) nookies: specifier: ^2.5.2 version: 2.5.2 @@ -452,50 +452,50 @@ importers: specifier: ^6.1.1 version: 6.1.1 react: - specifier: 18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-bootstrap-icons: specifier: ^1.11.4 - version: 1.11.4(react@18.2.0) + version: 1.11.4(react@18.3.1) react-colorful: specifier: ^5.6.1 - version: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-cool-onclickoutside: specifier: ^1.7.0 - version: 1.7.0(react@18.2.0) + version: 1.7.0(react@18.3.1) react-cropper: specifier: ^2.3.3 - version: 2.3.3(react@18.2.0) + version: 2.3.3(react@18.3.1) react-diff-viewer-continued: specifier: ^3.4.0 - version: 3.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-digit-input: specifier: ^2.1.0 version: 2.1.0 react-dom: - specifier: 18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) react-google-recaptcha-v3: specifier: ^1.10.1 - version: 1.10.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-hot-toast: specifier: ^2.4.1 - version: 2.4.1(csstype@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.4.1(csstype@3.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-leaflet: specifier: ^4.2.1 - version: 4.2.1(leaflet@1.9.4)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-markdown: specifier: ^9.0.1 - version: 9.0.1(@types/react@18.2.34)(react@18.2.0) + version: 9.0.1(@types/react@18.3.3)(react@18.3.1) react-select: specifier: ^5.8.0 - version: 5.8.0(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 5.8.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-sortablejs: specifier: ^6.1.4 - version: 6.1.4(@types/sortablejs@1.15.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sortablejs@1.15.2) + version: 6.1.4(@types/sortablejs@1.15.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sortablejs@1.15.2) react-use: - specifier: ^17.4.0 - version: 17.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: ^17.5.0 + version: 17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) remark-emoji: specifier: ^4.0.1 version: 4.0.1 @@ -509,14 +509,14 @@ importers: specifier: ^12.0.0 version: 12.0.0 slate: - specifier: ^0.100.0 - version: 0.100.0 + specifier: ^0.103.0 + version: 0.103.0 slate-history: specifier: ^0.100.0 - version: 0.100.0(slate@0.100.0) + version: 0.100.0(slate@0.103.0) slate-react: - specifier: ^0.101.0 - version: 0.101.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(slate@0.100.0) + specifier: ^0.105.0 + version: 0.105.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate@0.103.0) socket.io-client: specifier: ^4.7.5 version: 4.7.5 @@ -528,7 +528,7 @@ importers: version: 0.2.1 use-intl: specifier: 2.22.1 - version: 2.22.1(react@18.2.0) + version: 2.22.1(react@18.3.1) uuid: specifier: ^10.0.0 version: 10.0.0 @@ -537,7 +537,7 @@ importers: version: 3.23.8 zustand: specifier: ^4.5.2 - version: 4.5.2(@types/react@18.2.34)(immer@10.0.3)(react@18.2.0) + version: 4.5.2(@types/react@18.3.3)(immer@10.0.3)(react@18.3.1) devDependencies: dotenv: specifier: ^16.4.5 @@ -655,133 +655,133 @@ importers: dependencies: "@casperiv/useful": specifier: ^3.0.0 - version: 3.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@internationalized/date": - specifier: ^3.5.0 - version: 3.5.0 + specifier: ^3.5.4 + version: 3.5.4 "@monaco-editor/react": specifier: ^4.6.0 - version: 4.6.0(monaco-editor@0.44.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 4.6.0(monaco-editor@0.44.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@radix-ui/react-accordion": specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@radix-ui/react-context-menu": specifier: ^2.1.5 - version: 2.1.5(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@radix-ui/react-dropdown-menu": specifier: ^2.0.6 - version: 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@radix-ui/react-hover-card": specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@radix-ui/react-tabs": specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/breadcrumbs": - specifier: ^3.5.8 - version: 3.5.8(react@18.2.0) + specifier: ^3.5.13 + version: 3.5.13(react@18.3.1) "@react-aria/button": - specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + specifier: ^3.9.5 + version: 3.9.5(react@18.3.1) "@react-aria/calendar": - specifier: ^3.5.3 - version: 3.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: ^3.5.8 + version: 3.5.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/checkbox": specifier: ^3.12.0 - version: 3.12.0(react@18.2.0) + version: 3.12.0(react@18.3.1) "@react-aria/combobox": specifier: ^3.8.0 - version: 3.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.8.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/datepicker": specifier: ^3.9.0 - version: 3.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/dialog": - specifier: ^3.5.8 - version: 3.5.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: ^3.5.14 + version: 3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/focus": specifier: ^3.15.0 - version: 3.15.0(react@18.2.0) + version: 3.15.0(react@18.3.1) "@react-aria/i18n": specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + version: 3.9.0(react@18.3.1) "@react-aria/interactions": specifier: ^3.20.0 - version: 3.20.0(react@18.2.0) + version: 3.20.0(react@18.3.1) "@react-aria/label": - specifier: ^3.7.3 - version: 3.7.3(react@18.2.0) + specifier: ^3.7.8 + version: 3.7.8(react@18.3.1) "@react-aria/listbox": specifier: ^3.11.2 - version: 3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/menu": specifier: ^3.11.2 - version: 3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/overlays": specifier: ^3.19.0 - version: 3.19.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 3.19.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/progress": - specifier: ^3.4.8 - version: 3.4.8(react@18.2.0) + specifier: ^3.4.13 + version: 3.4.13(react@18.3.1) "@react-aria/radio": specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + version: 3.9.0(react@18.3.1) "@react-aria/switch": specifier: ^3.5.7 - version: 3.5.7(react@18.2.0) + version: 3.5.7(react@18.3.1) "@react-aria/textfield": specifier: ^3.13.0 - version: 3.13.0(react@18.2.0) + version: 3.13.0(react@18.3.1) "@react-aria/utils": specifier: ^3.22.0 - version: 3.22.0(react@18.2.0) + version: 3.22.0(react@18.3.1) "@react-aria/visually-hidden": - specifier: ^3.8.7 - version: 3.8.7(react@18.2.0) + specifier: ^3.8.12 + version: 3.8.12(react@18.3.1) "@react-stately/calendar": specifier: ^3.4.2 - version: 3.4.2(react@18.2.0) + version: 3.4.2(react@18.3.1) "@react-stately/collections": - specifier: ^3.10.3 - version: 3.10.3(react@18.2.0) + specifier: ^3.10.7 + version: 3.10.7(react@18.3.1) "@react-stately/combobox": - specifier: ^3.8.0 - version: 3.8.0(react@18.2.0) + specifier: ^3.8.4 + version: 3.8.4(react@18.3.1) "@react-stately/data": - specifier: ^3.11.0 - version: 3.11.0(react@18.2.0) + specifier: ^3.11.4 + version: 3.11.4(react@18.3.1) "@react-stately/datepicker": - specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + specifier: ^3.9.4 + version: 3.9.4(react@18.3.1) "@react-stately/list": - specifier: ^3.10.1 - version: 3.10.1(react@18.2.0) + specifier: ^3.10.5 + version: 3.10.5(react@18.3.1) "@react-stately/menu": specifier: ^3.5.7 - version: 3.5.7(react@18.2.0) + version: 3.5.7(react@18.3.1) "@react-stately/overlays": - specifier: ^3.6.4 - version: 3.6.4(react@18.2.0) + specifier: ^3.6.7 + version: 3.6.7(react@18.3.1) "@react-stately/radio": - specifier: ^3.10.0 - version: 3.10.0(react@18.2.0) + specifier: ^3.10.4 + version: 3.10.4(react@18.3.1) "@react-stately/select": - specifier: ^3.6.0 - version: 3.6.0(react@18.2.0) + specifier: ^3.6.4 + version: 3.6.4(react@18.3.1) "@react-stately/toggle": - specifier: ^3.7.0 - version: 3.7.0(react@18.2.0) + specifier: ^3.7.4 + version: 3.7.4(react@18.3.1) "@react-types/combobox": specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + version: 3.9.0(react@18.3.1) "@react-types/overlays": - specifier: ^3.8.4 - version: 3.8.4(react@18.2.0) + specifier: ^3.8.7 + version: 3.8.7(react@18.3.1) "@react-types/select": - specifier: ^3.9.0 - version: 3.9.0(react@18.2.0) + specifier: ^3.9.4 + version: 3.9.4(react@18.3.1) "@react-types/shared": specifier: ^3.22.0 - version: 3.22.0(react@18.2.0) + version: 3.22.0(react@18.3.1) "@snailycad/config": specifier: workspace:* version: link:../config @@ -792,11 +792,11 @@ importers: specifier: workspace:* version: link:../utils "@types/react": - specifier: 18.2.34 - version: 18.2.34 + specifier: 18.3.3 + version: 18.3.3 "@types/react-dom": - specifier: 18.2.14 - version: 18.2.14 + specifier: 18.3.0 + version: 18.3.0 class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -804,75 +804,75 @@ importers: specifier: ">=2.30.0" version: 2.30.0 formik: - specifier: ^2.4.5 - version: 2.4.5(react@18.2.0) + specifier: ^2.4.6 + version: 2.4.6(react@18.3.1) mxcn: specifier: ^2.0.0 version: 2.0.0 next: specifier: "*" - version: 13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.4.1)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4) + version: 13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4) next-intl: specifier: 2.22.1 - version: 2.22.1(next@13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.4.1)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4))(react@18.2.0) + version: 2.22.1(next@13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4))(react@18.3.1) react: - specifier: ">=18.2.0" - version: 18.2.0 + specifier: ">=18.3.1" + version: 18.3.1 react-bootstrap-icons: - specifier: ^1.10.3 - version: 1.10.3(react@18.2.0) + specifier: ^1.11.4 + version: 1.11.4(react@18.3.1) react-dnd: specifier: 16.0.1 - version: 16.0.1(@types/hoist-non-react-statics@3.3.2)(@types/node@20.14.2)(@types/react@18.2.34)(react@18.2.0) + version: 16.0.1(@types/hoist-non-react-statics@3.3.2)(@types/node@20.14.2)(@types/react@18.3.3)(react@18.3.1) react-dnd-html5-backend: specifier: 16.0.1 version: 16.0.1 react-dom: - specifier: ">=18.2.0" - version: 18.2.0(react@18.2.0) + specifier: ">=18.3.1" + version: 18.3.1(react@18.3.1) react-use: - specifier: ^17.4.0 - version: 17.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: ^17.5.0 + version: 17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) rimraf: - specifier: ^5.0.5 - version: 5.0.5 + specifier: ^5.0.7 + version: 5.0.7 tailwind-merge: - specifier: ^2.0.0 - version: 2.0.0 + specifier: ^2.3.0 + version: 2.3.0 tslib: - specifier: ^2.6.2 - version: 2.6.2 + specifier: ^2.6.3 + version: 2.6.3 use-intl: specifier: 2.22.1 - version: 2.22.1(react@18.2.0) + version: 2.22.1(react@18.3.1) devDependencies: "@storybook/addon-a11y": specifier: ^7.5.3 - version: 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/addon-essentials": specifier: ^7.5.3 - version: 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/addon-interactions": specifier: ^7.5.3 - version: 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/addon-links": specifier: ^7.5.3 - version: 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/addon-themes": specifier: ^7.5.3 - version: 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/blocks": specifier: ^7.5.3 - version: 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/jest": specifier: ^0.2.3 version: 0.2.3(@jest/globals@29.7.0)(jest@29.7.0(@types/node@20.14.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)))(vitest@0.34.6(playwright@1.39.0)(sass@1.77.4)) "@storybook/react": specifier: ^7.5.3 - version: 7.5.3(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.2) + version: 7.5.3(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.2) "@storybook/react-vite": specifier: ^7.5.3 - version: 7.5.3(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.18.0)(typescript@5.3.2)(vite@5.0.2(@types/node@20.14.2)(sass@1.77.4)) + version: 7.5.3(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.3.2)(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4)) "@storybook/test-runner": specifier: ^0.15.2 version: 0.15.2(@swc/helpers@0.5.3)(@types/node@20.14.2)(babel-plugin-macros@3.1.0)(encoding@0.1.13)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)) @@ -880,14 +880,14 @@ importers: specifier: ^0.2.2 version: 0.2.2 autoprefixer: - specifier: ^10.4.16 - version: 10.4.16(postcss@8.4.31) + specifier: ^10.4.19 + version: 10.4.19(postcss@8.4.38) monaco-editor: specifier: ^0.44.0 version: 0.44.0 postcss: - specifier: ^8.4.31 - version: 8.4.31 + specifier: ^8.4.38 + version: 8.4.38 prop-types: specifier: ^15.8.1 version: 15.8.1 @@ -895,17 +895,17 @@ importers: specifier: ^7.5.3 version: 7.5.3(encoding@0.1.13) tailwindcss: - specifier: ^3.3.5 - version: 3.3.5(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)) + specifier: ^3.4.4 + version: 3.4.4(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)) tsup: specifier: 6.6.2 - version: 6.6.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))(typescript@5.3.2) + version: 6.6.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))(typescript@5.3.2) typescript: specifier: ^5.3.2 version: 5.3.2 vite: - specifier: ^5.0.2 - version: 5.0.2(@types/node@20.14.2)(sass@1.77.4) + specifier: ^5.2.13 + version: 5.2.13(@types/node@20.14.2)(sass@1.77.4) packages/utils: dependencies: @@ -923,7 +923,7 @@ importers: version: 0.100.0(slate@0.100.0) slate-react: specifier: ^0.101.0 - version: 0.101.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(slate@0.100.0) + version: 0.101.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate@0.100.0) tslib: specifier: ^2.6.3 version: 2.6.3 @@ -2009,6 +2009,13 @@ packages: } engines: { node: ">=6.9.0" } + "@babel/runtime@7.24.7": + resolution: + { + integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==, + } + engines: { node: ">=6.9.0" } + "@babel/template@7.22.15": resolution: { @@ -3089,12 +3096,36 @@ packages: react: ">=16.8.0" react-dom: ">=16.8.0" + "@floating-ui/react-dom@2.1.0": + resolution: + { + integrity: sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==, + } + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + + "@floating-ui/react@0.26.16": + resolution: + { + integrity: sha512-HEf43zxZNAI/E781QIVpYSF3K2VH4TTYZpqecjdsFkjsaU1EbaWcM++kw0HXFffj7gDUcBFevX8s0rQGQpxkow==, + } + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + "@floating-ui/utils@0.1.1": resolution: { integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==, } + "@floating-ui/utils@0.2.2": + resolution: + { + integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==, + } + "@formatjs/ecma402-abstract@1.11.4": resolution: { @@ -3173,15 +3204,15 @@ packages: integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==, } - "@headlessui/react@1.7.17": + "@headlessui/react@2.0.4": resolution: { - integrity: sha512-4am+tzvkqDSSgiwrsEpGWqgGo9dz8qU5M3znCkC4PgkpY4HcCZzEDEvozltGGGHIKl9jbXbZPSH5TWn4sWJdow==, + integrity: sha512-16d/rOLeYsFsmPlRmXGu8DCBzrWD0zV1Ccx3n73wN87yFu8Y9+X04zflv8EJEt9TAYRyLKOmQXUnOnqQl6NgpA==, } engines: { node: ">=10" } peerDependencies: - react: ^16 || ^17 || ^18 - react-dom: ^16 || ^17 || ^18 + react: ^18 + react-dom: ^18 "@humanwhocodes/config-array@0.11.13": resolution: @@ -3439,10 +3470,10 @@ packages: cpu: [x64] os: [win32] - "@internationalized/date@3.5.0": + "@internationalized/date@3.5.4": resolution: { - integrity: sha512-nw0Q+oRkizBWMioseI8+2TeUPEyopJVz5YxoYVzR0W1v+2YytiYah7s/ot35F149q/xAg4F1gT/6eTd+tsUpFQ==, + integrity: sha512-qoVJVro+O0rBaw+8HPjUB1iH8Ihf8oziEnqMnvhJUSuVIrHOuZ6eNLHNvzXJKUvAtaDiqMnRlg8Z2mgh09BlUw==, } "@internationalized/message@3.1.1": @@ -3451,18 +3482,36 @@ packages: integrity: sha512-ZgHxf5HAPIaR0th+w0RUD62yF6vxitjlprSxmLJ1tam7FOekqRSDELMg4Cr/DdszG5YLsp5BG3FgHgqquQZbqw==, } + "@internationalized/message@3.1.4": + resolution: + { + integrity: sha512-Dygi9hH1s7V9nha07pggCkvmRfDd3q2lWnMGvrJyrOwYMe1yj4D2T9BoH9I6MGR7xz0biQrtLPsqUkqXzIrBOw==, + } + "@internationalized/number@3.4.0": resolution: { integrity: sha512-8TvotW3qVDHC4uv/BVoN6Qx0Dm8clHY1/vpH+dh+XRiPW/9NVpKn1P8d1A+WLphWrMwyqyWXI7uWehJPviaeIw==, } + "@internationalized/number@3.5.3": + resolution: + { + integrity: sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==, + } + "@internationalized/string@3.1.1": resolution: { integrity: sha512-fvSr6YRoVPgONiVIUhgCmIAlifMVCeej/snPZVzbzRPxGpHl3o1GRe+d/qh92D8KhgOciruDUH8I5mjdfdjzfA==, } + "@internationalized/string@3.2.3": + resolution: + { + integrity: sha512-9kpfLoA8HegiWTeCbR2livhdVeKobCnVv8tlJ6M2jF+4tcMqDo94ezwlnrUANBWPgd8U7OXIHCk2Ov2qhk4KXw==, + } + "@isaacs/cliui@8.0.2": resolution: { @@ -5229,26 +5278,26 @@ packages: integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==, } - "@react-aria/breadcrumbs@3.5.8": + "@react-aria/breadcrumbs@3.5.13": resolution: { - integrity: sha512-jeek23igeqXct7S3ShW2jtFUc5g3fS9ZEBZkF64FWBrwfCiaZwb8TcKkK/xFw36/q5mxEt+seNiqnNzvsICJuQ==, + integrity: sha512-G1Gqf/P6kVdfs94ovwP18fTWuIxadIQgHsXS08JEVcFVYMjb9YjqnEBaohUxD1tq2WldMbYw53ahQblT4NTG+g==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-aria/button@3.9.0": + "@react-aria/button@3.9.5": resolution: { - integrity: sha512-Jri4OCN+4YmpJDPNQvk1DJoskKD9sdTxZaWWWJdAwoSIunZk3IEBXVvRfKzsEAVtI+UJN25zC2kyjXbVPS2XAA==, + integrity: sha512-dgcYR6j8WDOMLKuVrtxzx4jIC05cVKDzc+HnPO8lNkBAOfjcuN5tkGRtIjLtqjMvpZHhQT5aDbgFpIaZzxgFIg==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-aria/calendar@3.5.3": + "@react-aria/calendar@3.5.8": resolution: { - integrity: sha512-jW48jk0TIe0HAJS+z8zqd8M86FEuqrk1qEIjMWnf8rFnA7hPPpjdjUrY9vSIeC95NcbyZbFnr1bHzQjAIzosQw==, + integrity: sha512-Whlp4CeAA5/ZkzrAHUv73kgIRYjw088eYGSc+cvSOCxfrc/2XkBm9rNrnSBv0DvhJ8AG0Fjz3vYakTmF3BgZBw==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5280,10 +5329,10 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-aria/dialog@3.5.8": + "@react-aria/dialog@3.5.14": resolution: { - integrity: sha512-KIc1FORdHhZ3bWom4qHO0hmlL4e5Hup6N25EY8HP5I7Ftv9EBBGaO5grtxZ2fX8kiCJNI4y+k67ZZ71wKJvMiA==, + integrity: sha512-oqDCjQ8hxe3GStf48XWBf2CliEnxlR9GgSYPHJPUc69WBj68D9rVcCW3kogJnLAnwIyf3FnzbX4wSjvUa88sAQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5297,6 +5346,14 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-aria/focus@3.17.1": + resolution: + { + integrity: sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-aria/form@3.0.0": resolution: { @@ -5305,6 +5362,14 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-aria/i18n@3.11.1": + resolution: + { + integrity: sha512-vuiBHw1kZruNMYeKkTGGnmPyMnM5T+gT8bz97H1FqIq1hQ6OPzmtBZ6W6l6OIMjeHI5oJo4utTwfZl495GALFQ==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-aria/i18n@3.9.0": resolution: { @@ -5321,10 +5386,10 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-aria/label@3.7.3": + "@react-aria/interactions@3.21.3": resolution: { - integrity: sha512-v1zuqbpYyYaPjrBWpceGjMpwP4ne6fLoOXdoIZoKLux2jkAcyIF2kIJFiyYoPQYQJWGRNo7q1oSwamxmng4xJw==, + integrity: sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5337,10 +5402,10 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-aria/link@3.6.2": + "@react-aria/link@3.7.1": resolution: { - integrity: sha512-v9gXgQ3Gev0JOlg2MAXcubDMgX+0BlJ+hTyFYFMuN/4jVBlAe426WKbjg+6MMzxwukWg9C3Q08JzqdFTi4cBng==, + integrity: sha512-a4IaV50P3fXc7DQvEIPYkJJv26JknFbRzFT5MJOMgtzuhyJoQdILEUK6XHYjcSSNCA7uLgzpojArVk5Hz3lCpw==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5360,6 +5425,12 @@ packages: integrity: sha512-hsc77U7S16trM86d+peqJCOCQ7/smO1cybgdpOuzXyiwcHQw8RQ4GrXrS37P4Ux/44E9nMZkOwATQRT2aK8+Ew==, } + "@react-aria/live-announcer@3.3.4": + resolution: + { + integrity: sha512-w8lxs35QrRrn6pBNzVfyGOeqWdxeVKf9U6bXIVwhq7rrTqRULL8jqy8RJIMfIs1s8G5FpwWYjyBOjl2g5Cu1iA==, + } + "@react-aria/menu@3.11.2": resolution: { @@ -5378,10 +5449,19 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-aria/progress@3.4.8": + "@react-aria/overlays@3.22.1": resolution: { - integrity: sha512-Nah3aj5BNRa0+urQZimzb0vuKQK7lsc8BrUwJuHTwGRBSWUjCADExrJYdhDIR/nLUV2TCmAQl+GJtTgbEEj0DQ==, + integrity: sha512-GHiFMWO4EQ6+j6b5QCnNoOYiyx1Gk8ZiwLzzglCI4q1NY5AG2EAmfU4Z1+Gtrf2S5Y0zHbumC7rs9GnPoGLUYg==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + + "@react-aria/progress@3.4.13": + resolution: + { + integrity: sha512-YBV9bOO5JzKvG8QCI0IAA00o6FczMgIDiK8Q9p5gKorFMatFUdRayxlbIPoYHMi+PguLil0jHgC7eOyaUcrZ0g==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5461,10 +5541,10 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-aria/visually-hidden@3.8.7": + "@react-aria/visually-hidden@3.8.12": resolution: { - integrity: sha512-OuIGMVQIt7GC43h4x35BgkZid8lhoPu7Xz4TQRP8nvOJWb1lH7ehrRRuGdUsK3y90nwpxTdNdg4DILblg+VaLw==, + integrity: sha512-Bawm+2Cmw3Xrlr7ARzl2RLtKh0lNUdJ0eNqzWcyx4c0VHUAWtThmH5l+HRqFUGzzutFZVo89SAy40BAbd0gjVw==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5505,6 +5585,14 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-stately/calendar@3.5.1": + resolution: + { + integrity: sha512-7l7QhqGUJ5AzWHfvZzbTe3J4t72Ht5BmhW4hlVI7flQXtfrmYkVtl3ZdytEZkkHmWGYZRW9b4IQTQGZxhtlElA==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-stately/checkbox@3.6.0": resolution: { @@ -5513,34 +5601,34 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-stately/collections@3.10.3": + "@react-stately/collections@3.10.7": resolution: { - integrity: sha512-fA28HIApAIz9sNGeOVXZJPgV5Kig6M72KI1t9sUbnRUr9Xq9OMJTR6ElDMXNe0iTeZffRFDOPYyqnX9zkxof6Q==, + integrity: sha512-KRo5O2MWVL8n3aiqb+XR3vP6akmHLhLWYZEmPKjIv0ghQaEebBTrN3wiEjtd6dzllv0QqcWvDLM1LntNfJ2TsA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-stately/combobox@3.8.0": + "@react-stately/combobox@3.8.4": resolution: { - integrity: sha512-F74Avf7+8ruRqEB+3Lh6/C5jXc3ESJbRf9ovUxhmNAzBGeFKesPn5HpEpo87C+3OukGb+/Buvi3Rhib9+HVBKA==, + integrity: sha512-iLVGvKRRz0TeJXZhZyK783hveHpYA6xovOSdzSD+WGYpiPXo1QrcrNoH3AE0Z2sHtorU+8nc0j58vh5PB+m2AA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-stately/data@3.11.0": + "@react-stately/data@3.11.4": resolution: { - integrity: sha512-0BlPT58WrAtUvpiEfUuyvIsGFTzp/9vA5y+pk53kGJhOdc5tqBGHi9cg40pYE/i1vdHJGMpyHGRD9nkQb8wN3Q==, + integrity: sha512-PbnUQxeE6AznSuEWYnRmrYQ9t5z1Asx98Jtrl96EeA6Iapt9kOjTN9ySqCxtPxMKleb1NIqG3+uHU3veIqmLsg==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-stately/datepicker@3.9.0": + "@react-stately/datepicker@3.9.4": resolution: { - integrity: sha512-p6BuxPbDxjIgBZmskdv2dR6XIdPEftCjS7kYe/+iLZxfz1vYiDqpJVb3ascLyBjl84bDDyr4z2vWcKhdDwyhEA==, + integrity: sha512-yBdX01jn6gq4NIVvHIqdjBUPo+WN8Bujc4OnPw+ZnfA4jI0eIgq04pfZ84cp1LVXW0IB0VaCu1AlQ/kvtZjfGA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5553,10 +5641,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-stately/list@3.10.1": + "@react-stately/form@3.0.3": + resolution: + { + integrity: sha512-92YYBvlHEWUGUpXgIaQ48J50jU9XrxfjYIN8BTvvhBHdD63oWgm8DzQnyT/NIAMzdLnhkg7vP+fjG8LjHeyIAg==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + + "@react-stately/list@3.10.5": resolution: { - integrity: sha512-iVarLMd7FmMT0H20dRWsFOHHX5+c4gK51AXP2BSr1VtDSfbL4dgaGgu7IaAMVc/rO0au1e1tPM2hutiIFvPcnA==, + integrity: sha512-fV9plO+6QDHiewsYIhboxcDhF17GO95xepC5ki0bKXo44gr14g/LSo/BMmsaMnV+1BuGdBunB05bO4QOIaigXA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5569,26 +5665,26 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-stately/overlays@3.6.4": + "@react-stately/overlays@3.6.7": resolution: { - integrity: sha512-tHEaoAGpE9dSnsskqLPVKum59yGteoSqsniTopodM+miQozbpPlSjdiQnzGLroy5Afx5OZYClE616muNHUILXA==, + integrity: sha512-6zp8v/iNUm6YQap0loaFx6PlvN8C0DgWHNlrlzMtMmNuvjhjR0wYXVaTfNoUZBWj25tlDM81ukXOjpRXg9rLrw==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-stately/radio@3.10.0": + "@react-stately/radio@3.10.4": resolution: { - integrity: sha512-d8IgZtUq/4vhE7YhyBVg1QdVoFS0caIcvPumXqtp/5vlDgpUsVy9jSeWtbk0H4FyUcmJlQhRcTylKB9THXY1YQ==, + integrity: sha512-kCIc7tAl4L7Hu4Wt9l2jaa+MzYmAJm0qmC8G8yPMbExpWbLRu6J8Un80GZu+JxvzgDlqDyrVvyv9zFifwH/NkQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-stately/select@3.6.0": + "@react-stately/select@3.6.4": resolution: { - integrity: sha512-GvSE4DXmcvdRNUc+ciPU7gedt7LfRO8FFFIzhB/bCQhUlK6/xihUPrGXayzqxLeTQKttMH323LuYFKfwpJRhsA==, + integrity: sha512-whZgF1N53D0/dS8tOFdrswB0alsk5Q5620HC3z+5f2Hpi8gwgAZ8TYa+2IcmMYRiT+bxVuvEc/NirU9yPmqGbA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5601,10 +5697,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-stately/toggle@3.7.0": + "@react-stately/selection@3.15.1": + resolution: + { + integrity: sha512-6TQnN9L0UY9w19B7xzb1P6mbUVBtW840Cw1SjgNXCB3NPaCf59SwqClYzoj8O2ZFzMe8F/nUJtfU1NS65/OLlw==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + + "@react-stately/toggle@3.7.4": resolution: { - integrity: sha512-TRksHkCJk/Xogq4181g3CYgJf+EfsJCqX5UZDSw1Z1Kgpvonjmdf6FAfQfCh9QR2OuXUL6hOLUDVLte5OPI+5g==, + integrity: sha512-CoYFe9WrhLkDP4HGDpJYQKwfiYCRBAeoBQHv+JWl5eyK61S8xSwoHsveYuEZ3bowx71zyCnNAqWRrmNOxJ4CKA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5633,10 +5737,10 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-types/breadcrumbs@3.7.2": + "@react-types/breadcrumbs@3.7.5": resolution: { - integrity: sha512-esl6RucDW2CNMsApJxNYfMtDaUcfLlwKMPH/loYsOBbKxGl2HsgVLMcdpjEkTRs2HCTNCbBXWpeU8AY77t+bsw==, + integrity: sha512-lV9IDYsMiu2TgdMIjEmsOE0YWwjb3jhUNK1DCZZfq6uWuiHLgyx2EncazJBUWSjHJ4ta32j7xTuXch+8Ai6u/A==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5649,6 +5753,14 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-types/button@3.9.4": + resolution: + { + integrity: sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-types/calendar@3.4.2": resolution: { @@ -5657,6 +5769,14 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-types/calendar@3.4.6": + resolution: + { + integrity: sha512-WSntZPwtvsIYWvBQRAPvuCn55UTJBZroTvX0vQvWykJRQnPAI20G1hMQ3dNsnAL+gLZUYxBXn66vphmjUuSYew==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-types/checkbox@3.6.0": resolution: { @@ -5665,6 +5785,22 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-types/checkbox@3.8.1": + resolution: + { + integrity: sha512-5/oVByPw4MbR/8QSdHCaalmyWC71H/QGgd4aduTJSaNi825o+v/hsN2/CH7Fq9atkLKsC8fvKD00Bj2VGaKriQ==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + + "@react-types/combobox@3.11.1": + resolution: + { + integrity: sha512-UNc3OHt5cUt5gCTHqhQIqhaWwKCpaNciD8R7eQazmHiA9fq8ROlV+7l3gdNgdhJbTf5Bu/V5ISnN7Y1xwL3zqQ==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-types/combobox@3.9.0": resolution: { @@ -5681,6 +5817,22 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-types/datepicker@3.7.4": + resolution: + { + integrity: sha512-ZfvgscvNzBJpYyVWg3nstJtA/VlWLwErwSkd1ivZYam859N30w8yH+4qoYLa6FzWLCFlrsRHyvtxlEM7lUAt5A==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + + "@react-types/dialog@3.5.10": + resolution: + { + integrity: sha512-S9ga+edOLNLZw7/zVOnZdT5T40etpzUYBXEKdFPbxyPYnERvRxJAsC1/ASuBU9fQAXMRgLZzADWV+wJoGS/X9g==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + "@react-types/dialog@3.5.7": resolution: { @@ -5689,10 +5841,10 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-types/link@3.5.2": + "@react-types/link@3.5.5": resolution: { - integrity: sha512-/s51/WejmpLiyxOgP89s4txgxYoGaPe8pVDItVo1h4+BhU1Puyvgv/Jx8t9dPvo6LUXbraaN+SgKk/QDxaiirw==, + integrity: sha512-G6P5WagHDR87npN7sEuC5IIgL1GsoY4WFWKO4734i2CXRYx24G9P0Su3AX4GA3qpspz8sK1AWkaCzBMmvnunfw==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5713,18 +5865,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-types/overlays@3.8.4": + "@react-types/overlays@3.8.7": resolution: { - integrity: sha512-pfgNlQnbF6RB/R2oSxyqAP3Uzz0xE/k5q4n5gUeCDNLjY5qxFHGE8xniZZ503nZYw6VBa9XMN1efDOKQyeiO0w==, + integrity: sha512-zCOYvI4at2DkhVpviIClJ7bRrLXYhSg3Z3v9xymuPH3mkiuuP/dm8mUCtkyY4UhVeUTHmrQh1bzaOP00A+SSQA==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-types/progress@3.5.1": + "@react-types/progress@3.5.4": resolution: { - integrity: sha512-CqsUjczUK/SfuFzDcajBBaXRTW0D3G9S/yqLDj9e8E0ii+lGDLt1PHj24t1J7E88U2rVYqmM9VL4NHTt8o3IYA==, + integrity: sha512-JNc246sTjasPyx5Dp7/s0rp3Bz4qlu4LrZTulZlxWyb53WgBNL7axc26CCi+I20rWL9+c7JjhrRxnLl/1cLN5g==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5737,10 +5889,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - "@react-types/select@3.9.0": + "@react-types/radio@3.8.1": resolution: { - integrity: sha512-0nalGmcoma4jreICLSJae/uKAuMiVyWgqWjGrGiUGGcdDchH4limKVEqNDaBwLvxVT6NB5LLsaipCTCAEEl4Rg==, + integrity: sha512-bK0gio/qj1+0Ldu/3k/s9BaOZvnnRgvFtL3u5ky479+aLG5qf1CmYed3SKz8ErZ70JkpuCSrSwSCFf0t1IHovw==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + + "@react-types/select@3.9.4": + resolution: + { + integrity: sha512-xI7dnOW2st91fPPcv6hdtrTdcfetYiqZuuVPZ5TRobY7Q10/Zqqe/KqtOw1zFKUj9xqNJe4Ov3xP5GSdcO60Eg==, } peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6986,6 +7146,15 @@ packages: react: ">=16.8" react-dom: ">=16.8" + "@tanstack/react-virtual@3.5.0": + resolution: + { + integrity: sha512-rtvo7KwuIvqK9zb0VZ5IL7fiJAEnG+0EiFZz8FUOs+2mhGqdGmjKIaT1XU7Zq0eFqL0jonLlhbayJI/J2SA/Bw==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + "@tanstack/table-core@8.17.3": resolution: { @@ -6993,6 +7162,12 @@ packages: } engines: { node: ">=12" } + "@tanstack/virtual-core@3.5.0": + resolution: + { + integrity: sha512-KnPRCkQTyqhanNC0K63GBG3wA8I+D1fQuVnAvcBF8f13akOKeQp1gSbu6f77zCxhEk727iV5oQnbHLYzHrECLg==, + } + "@testing-library/dom@9.3.1": resolution: { @@ -7874,10 +8049,10 @@ packages: integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==, } - "@types/react-dom@18.2.14": + "@types/react-dom@18.3.0": resolution: { - integrity: sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==, + integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==, } "@types/react-transition-group@4.4.6": @@ -7886,10 +8061,10 @@ packages: integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==, } - "@types/react@18.2.34": + "@types/react@18.3.3": resolution: { - integrity: sha512-U6eW/alrRk37FU/MS2RYMjx0Va2JGIVXELTODaTIYgvWGCV4Y4TfTUzG8DdmpDNIT0Xpj/R7GfyHOJJrDttcvg==, + integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==, } "@types/resolve@1.20.4": @@ -7910,12 +8085,6 @@ packages: integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==, } - "@types/scheduler@0.16.3": - resolution: - { - integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==, - } - "@types/semver@7.5.0": resolution: { @@ -8700,16 +8869,6 @@ packages: integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, } - autoprefixer@10.4.16: - resolution: - { - integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==, - } - engines: { node: ^10 || ^12 || >=14 } - hasBin: true - peerDependencies: - postcss: ">=8.4.31" - autoprefixer@10.4.19: resolution: { @@ -8994,14 +9153,6 @@ packages: integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==, } - browserslist@4.21.10: - resolution: - { - integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } - hasBin: true - browserslist@4.23.1: resolution: { @@ -10600,12 +10751,6 @@ packages: engines: { node: ">=0.10.0" } hasBin: true - electron-to-chromium@1.4.500: - resolution: - { - integrity: sha512-P38NO8eOuWOKY1sQk5yE0crNtrjgjJj6r3NrbIKtG18KzCHmHE2Bt+aQA7/y0w3uYsHWxDa6icOohzjLJ4vJ4A==, - } - electron-to-chromium@1.4.796: resolution: { @@ -11648,14 +11793,6 @@ packages: } engines: { node: ">= 6" } - formik@2.4.5: - resolution: - { - integrity: sha512-Gxlht0TD3vVdzMDHwkiNZqJ7Mvg77xQNfmBRrNtvzcHZs72TJppSTDKHpImCMJZwcWPBJ8jSQQ95GJzXFf1nAQ==, - } - peerDependencies: - react: ">=16.8.0" - formik@2.4.6: resolution: { @@ -11677,12 +11814,6 @@ packages: integrity: sha512-by7U5W8dkIzcvDofUcO42yl9JbnHTEDBrzu3pt5fKT+Z4Oy85I21K80EYJYdjQGC2qum4Vo55Ag57iiIK4FYuA==, } - fraction.js@4.3.6: - resolution: - { - integrity: sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==, - } - fraction.js@4.3.7: resolution: { @@ -12611,10 +12742,10 @@ packages: integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==, } - inline-style-prefixer@6.0.4: + inline-style-prefixer@7.0.0: resolution: { - integrity: sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==, + integrity: sha512-I7GEdScunP1dQ6IM2mQWh6v0mOYdYmH3Bp31UecKdrcUgcURTcctSe1IECdUznSHKSmsHtjrT3CwCPI1pyxfUQ==, } inquirer@8.2.6: @@ -13622,13 +13753,6 @@ packages: node-notifier: optional: true - jiti@1.19.3: - resolution: - { - integrity: sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==, - } - hasBin: true - jiti@1.21.3: resolution: { @@ -15038,10 +15162,10 @@ packages: integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, } - nano-css@5.3.5: + nano-css@5.6.1: resolution: { - integrity: sha512-vSB9X12bbNu4ALBu7nigJgRViZ6ja3OU7CeuiV1zMIbXOdmkLahgtPmh3GBOlDxbKY0CitqlPdOReGlBLSp+yg==, + integrity: sha512-T2Mhc//CepkTa3X4pUhKgbEheJHYAxD0VptuqFhDbGMUWVV2m+lkNiW/Ieuj35wrfC8Zm0l7HvssQh7zcEttSw==, } peerDependencies: react: "*" @@ -15236,12 +15360,6 @@ packages: } engines: { node: ">=8" } - node-releases@2.0.13: - resolution: - { - integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, - } - node-releases@2.0.14: resolution: { @@ -16627,14 +16745,6 @@ packages: } engines: { node: ">= 0.8" } - react-bootstrap-icons@1.10.3: - resolution: - { - integrity: sha512-j4hSby6gT9/enhl3ybB1tfr1slZNAYXDVntcRrmVjxB3//2WwqrzpESVqKhyayYVaWpEtnwf9wgUQ03cuziwrw==, - } - peerDependencies: - react: ">=16.8.6" - react-bootstrap-icons@1.11.4: resolution: { @@ -16723,13 +16833,13 @@ packages: } engines: { node: ">=14.18.0" } - react-dom@18.2.0: + react-dom@18.3.1: resolution: { - integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, + integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, } peerDependencies: - react: ^18.2.0 + react: ^18.3.1 react-element-to-jsx-string@15.0.0: resolution: @@ -16909,19 +17019,19 @@ packages: react: "*" tslib: "*" - react-use@17.4.0: + react-use@17.5.0: resolution: { - integrity: sha512-TgbNTCA33Wl7xzIJegn1HndB4qTS9u03QUwyNycUnXaweZkE4Kq2SB+Yoxx8qbshkZGYBDvUXbXWRUmQDcZZ/Q==, + integrity: sha512-PbfwSPMwp/hoL847rLnm/qkjg3sTRCvn6YhUZiHaUa3FA6/aNoFX79ul5Xt70O1rK+9GxSVqkY0eTwMdsR/bWg==, } peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: "*" + react-dom: "*" - react@18.2.0: + react@18.3.1: resolution: { - integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, + integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, } engines: { node: ">=0.10.0" } @@ -17377,14 +17487,6 @@ packages: engines: { node: ">=14" } hasBin: true - rimraf@5.0.5: - resolution: - { - integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==, - } - engines: { node: ">=14" } - hasBin: true - rimraf@5.0.7: resolution: { @@ -17503,10 +17605,10 @@ packages: engines: { node: ">=14.0.0" } hasBin: true - scheduler@0.23.0: + scheduler@0.23.2: resolution: { - integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, + integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, } screenfull@5.2.0: @@ -17778,12 +17880,28 @@ packages: react-dom: ">=18.2.0" slate: ">=0.99.0" + slate-react@0.105.0: + resolution: + { + integrity: sha512-sRe08qX650pu2yOl4Y7kP8mzqZVVDkuayovATy4D+AQESgdXEYJcFc2WGa84WJvSTDO63qOsySsqKqxPuqBJCg==, + } + peerDependencies: + react: ">=18.2.0" + react-dom: ">=18.2.0" + slate: ">=0.99.0" + slate@0.100.0: resolution: { integrity: sha512-cK+xwLBrbQof4rEfTzgC8loBWsDFEXq8nOBY7QahwY59Zq4bsBNcwiMw2VIzTv+WGNsmyHp4eAk/HJbz2aAUkQ==, } + slate@0.103.0: + resolution: + { + integrity: sha512-eCUOVqUpADYMZ59O37QQvUdnFG+8rin0OGQAXNHvHbQeVJ67Bu0spQbcy621vtf8GQUXTEQBlk6OP9atwwob4w==, + } + slice-ansi@3.0.0: resolution: { @@ -17893,13 +18011,6 @@ packages: integrity: sha512-FJF5jgdfvoKn1MAKSdGs33bIqLi3LmsgVTliuX6iITj834F+JRQZN90Z93yql8h0K2t0RwDPBmxwlbZfDcxNZA==, } - source-map-js@1.0.2: - resolution: - { - integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==, - } - engines: { node: ">=0.10.0" } - source-map-js@1.2.0: resolution: { @@ -17954,13 +18065,6 @@ packages: } engines: { node: ">= 8" } - sourcemap-codec@1.4.8: - resolution: - { - integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==, - } - deprecated: Please use @jridgewell/sourcemap-codec instead - space-separated-tokens@1.1.5: resolution: { @@ -18464,25 +18568,23 @@ packages: } engines: { node: ^14.18.0 || >=16.0.0 } - tailwind-merge@1.14.0: + tabbable@6.2.0: resolution: { - integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==, + integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==, } - tailwind-merge@2.0.0: + tailwind-merge@1.14.0: resolution: { - integrity: sha512-WO8qghn9yhsldLSg80au+3/gY9E4hFxIvQ3qOmlpXnqpDKoMruKfi/56BbbMg6fHTQJ9QD3cc79PoWqlaQE4rw==, + integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==, } - tailwindcss@3.3.5: + tailwind-merge@2.3.0: resolution: { - integrity: sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==, + integrity: sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==, } - engines: { node: ">=14.0.0" } - hasBin: true tailwindcss@3.4.4: resolution: @@ -19429,15 +19531,6 @@ packages: } engines: { node: ">=4" } - update-browserslist-db@1.0.11: - resolution: - { - integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, - } - hasBin: true - peerDependencies: - browserslist: ">= 4.21.0" - update-browserslist-db@1.0.16: resolution: { @@ -19722,37 +19815,6 @@ packages: terser: optional: true - vite@5.0.2: - resolution: - { - integrity: sha512-6CCq1CAJCNM1ya2ZZA7+jS2KgnhbzvxakmlIjN24cF/PXhRMzpM/z8QgsVJA/Dm5fWUWnVEsmtBoMhmerPxT0g==, - } - engines: { node: ^18.0.0 || >=20.0.0 } - hasBin: true - peerDependencies: - "@types/node": ^18.0.0 || >=20.0.0 - less: "*" - lightningcss: ^1.21.0 - sass: "*" - stylus: "*" - sugarss: "*" - terser: ^5.4.0 - peerDependenciesMeta: - "@types/node": - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - vite@5.2.13: resolution: { @@ -20354,7 +20416,7 @@ snapshots: dependencies: "@babel/compat-data": 7.22.9 "@babel/helper-validator-option": 7.22.5 - browserslist: 4.21.10 + browserslist: 4.23.1 lru-cache: 5.1.1 semver: 6.3.1 @@ -21077,6 +21139,10 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 + "@babel/runtime@7.24.7": + dependencies: + regenerator-runtime: 0.14.1 + "@babel/template@7.22.15": dependencies: "@babel/code-frame": 7.22.13 @@ -21114,11 +21180,11 @@ snapshots: "@bcoe/v8-coverage@0.2.3": {} - "@casperiv/eslint-config-next@8.0.0(eslint@8.56.0)(next@14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4))(typescript@5.4.5)": + "@casperiv/eslint-config-next@8.0.0(eslint@8.56.0)(next@14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4))(typescript@5.4.5)": dependencies: eslint: 8.56.0 eslint-config-next: 13.5.6(eslint@8.56.0)(typescript@5.4.5) - next: 14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4) + next: 14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4) transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color @@ -21147,13 +21213,13 @@ snapshots: - supports-color - typescript - "@casperiv/use-socket.io@6.0.1(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/react@18.2.34)(immer@10.0.3)(postcss@8.4.38)(react@18.2.0)(socket.io-client@4.7.5)(socket.io@4.7.5)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))(typescript@5.3.2)": + "@casperiv/use-socket.io@6.0.1(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/react@18.3.3)(immer@10.0.3)(postcss@8.4.38)(react@18.3.1)(socket.io-client@4.7.5)(socket.io@4.7.5)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))(typescript@5.3.2)": dependencies: - react: 18.2.0 + react: 18.3.1 socket.io: 4.7.5 socket.io-client: 4.7.5 tsup: 7.2.0(@swc/core@1.3.99(@swc/helpers@0.5.3))(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))(typescript@5.3.2) - zustand: 4.5.2(@types/react@18.2.34)(immer@10.0.3)(react@18.2.0) + zustand: 4.5.2(@types/react@18.3.3)(immer@10.0.3)(react@18.3.1) transitivePeerDependencies: - "@swc/core" - "@types/react" @@ -21163,10 +21229,10 @@ snapshots: - ts-node - typescript - "@casperiv/useful@3.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@casperiv/useful@3.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) "@colors/colors@1.5.0": optional: true @@ -21232,19 +21298,19 @@ snapshots: "@emotion/memoize@0.8.1": {} - "@emotion/react@11.11.1(@types/react@18.2.34)(react@18.2.0)": + "@emotion/react@11.11.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.23.2 "@emotion/babel-plugin": 11.11.0 "@emotion/cache": 11.11.0 "@emotion/serialize": 1.1.2 - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) + "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.3.1) "@emotion/utils": 1.2.1 "@emotion/weak-memoize": 0.3.1 hoist-non-react-statics: 3.3.2 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 "@emotion/serialize@1.1.2": dependencies: @@ -21258,9 +21324,9 @@ snapshots: "@emotion/unitless@0.8.1": {} - "@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)": + "@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)": dependencies: - react: 18.2.0 + react: 18.3.1 "@emotion/utils@1.2.1": {} @@ -21569,14 +21635,30 @@ snapshots: "@floating-ui/core": 1.4.1 "@floating-ui/utils": 0.1.1 - "@floating-ui/react-dom@2.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@floating-ui/react-dom@2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@floating-ui/dom": 1.5.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + "@floating-ui/react-dom@2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@floating-ui/dom": 1.5.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + "@floating-ui/react@0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@floating-ui/react-dom": 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@floating-ui/utils": 0.2.2 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tabbable: 6.2.0 "@floating-ui/utils@0.1.1": {} + "@floating-ui/utils@0.2.2": {} + "@formatjs/ecma402-abstract@1.11.4": dependencies: "@formatjs/intl-localematcher": 0.2.25 @@ -21635,11 +21717,14 @@ snapshots: dependencies: "@hapi/hoek": 9.3.0 - "@headlessui/react@1.7.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@headlessui/react@2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - client-only: 0.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@floating-ui/react": 0.26.16(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/focus": 3.17.1(react@18.3.1) + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@tanstack/react-virtual": 3.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) "@humanwhocodes/config-array@0.11.13": dependencies: @@ -21730,7 +21815,7 @@ snapshots: "@img/sharp-win32-x64@0.33.4": optional: true - "@internationalized/date@3.5.0": + "@internationalized/date@3.5.4": dependencies: "@swc/helpers": 0.5.3 @@ -21739,14 +21824,27 @@ snapshots: "@swc/helpers": 0.5.3 intl-messageformat: 10.5.0 + "@internationalized/message@3.1.4": + dependencies: + "@swc/helpers": 0.5.3 + intl-messageformat: 10.5.0 + "@internationalized/number@3.4.0": dependencies: "@swc/helpers": 0.5.3 + "@internationalized/number@3.5.3": + dependencies: + "@swc/helpers": 0.5.3 + "@internationalized/string@3.1.1": dependencies: "@swc/helpers": 0.5.3 + "@internationalized/string@3.2.3": + dependencies: + "@swc/helpers": 0.5.3 + "@isaacs/cliui@8.0.2": dependencies: string-width: 5.1.2 @@ -21964,13 +22062,13 @@ snapshots: "@types/yargs": 17.0.24 chalk: 4.1.2 - "@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.3.2)(vite@5.0.2(@types/node@20.14.2)(sass@1.77.4))": + "@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.3.2)(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4))": dependencies: glob: 7.2.3 glob-promise: 4.2.2(glob@7.2.3) magic-string: 0.27.0 react-docgen-typescript: 2.2.2(typescript@5.3.2) - vite: 5.0.2(@types/node@20.14.2)(sass@1.77.4) + vite: 5.2.13(@types/node@20.14.2)(sass@1.77.4) optionalDependencies: typescript: 5.3.2 @@ -22088,11 +22186,11 @@ snapshots: - encoding - supports-color - "@mdx-js/react@2.3.0(react@18.2.0)": + "@mdx-js/react@2.3.0(react@18.3.1)": dependencies: "@types/mdx": 2.0.7 - "@types/react": 18.2.34 - react: 18.2.0 + "@types/react": 18.3.3 + react: 18.3.1 "@mole-inc/bin-wrapper@8.0.1": dependencies: @@ -22110,12 +22208,12 @@ snapshots: monaco-editor: 0.44.0 state-local: 1.0.7 - "@monaco-editor/react@4.6.0(monaco-editor@0.44.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@monaco-editor/react@4.6.0(monaco-editor@0.44.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@monaco-editor/loader": 1.4.0(monaco-editor@0.44.0) monaco-editor: 0.44.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) "@ndelangen/get-tarball@3.0.9": dependencies: @@ -22641,7 +22739,7 @@ snapshots: fast-glob: 3.3.1 is-glob: 4.0.3 open: 9.1.0 - picocolors: 1.0.0 + picocolors: 1.0.1 tslib: 2.6.3 "@prisma/client@5.15.0(prisma@5.15.0)": @@ -22804,872 +22902,914 @@ snapshots: dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collapsible": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-collapsible": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-direction": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.0.2(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-context@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-direction@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-direction@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.23.2 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.23.2 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-id@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-menu@2.0.6(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-direction": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.0.2(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) aria-hidden: 1.2.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.34)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.0.2(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) aria-hidden: 1.2.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.34)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-popper@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.23.2 - "@floating-ui/react-dom": 2.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.34)(react@18.2.0) + "@floating-ui/react-dom": 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-rect": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-size": 1.0.1(@types/react@18.3.3)(react@18.3.1) "@radix-ui/rect": 1.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@floating-ui/react-dom": 2.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.34)(react@18.2.0) + "@floating-ui/react-dom": 2.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-rect": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-size": 1.0.1(@types/react@18.3.3)(react@18.3.1) "@radix-ui/rect": 1.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.23.2 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-direction": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-select@1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-select@1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.23.2 "@radix-ui/number": 1.0.1 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-popper": 1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-portal": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-direction": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-focus-scope": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-popper": 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-portal": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.0.2(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-previous": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) aria-hidden: 1.2.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.34)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-slot@1.0.2(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-direction": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toggle": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-direction": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-toggle": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-toggle@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-separator": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toggle-group": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-direction": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-separator": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-toggle-group": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.34)(react@18.2.0) - "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-context": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-id": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-slot": 1.0.2(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.3.3)(react@18.3.1) + "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 - "@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-use-previous@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.23.2 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-use-rect@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 "@radix-ui/rect": 1.0.1 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-use-size@1.0.1(@types/react@18.2.34)(react@18.2.0)": + "@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.34)(react@18.2.0) - react: 18.2.0 + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 - "@types/react-dom": 18.2.14 + "@types/react": 18.3.3 + "@types/react-dom": 18.3.0 "@radix-ui/rect@1.0.1": dependencies: "@babel/runtime": 7.22.11 - "@react-aria/breadcrumbs@3.5.8(react@18.2.0)": + "@react-aria/breadcrumbs@3.5.13(react@18.3.1)": dependencies: - "@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) + "@react-aria/i18n": 3.11.1(react@18.3.1) + "@react-aria/link": 3.7.1(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/breadcrumbs": 3.7.5(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/button@3.9.0(react@18.2.0)": + "@react-aria/button@3.9.5(react@18.3.1)": dependencies: - "@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) + "@react-aria/focus": 3.17.1(react@18.3.1) + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-stately/toggle": 3.7.4(react@18.3.1) + "@react-types/button": 3.9.4(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - - "@react-aria/calendar@3.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@internationalized/date": 3.5.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/utils": 3.22.0(react@18.2.0) - "@react-stately/calendar": 3.4.2(react@18.2.0) - "@react-types/button": 3.9.1(react@18.2.0) - "@react-types/calendar": 3.4.2(react@18.2.0) - "@react-types/shared": 3.22.0(react@18.2.0) + react: 18.3.1 + + "@react-aria/calendar@3.5.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@internationalized/date": 3.5.4 + "@react-aria/i18n": 3.11.1(react@18.3.1) + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@react-aria/live-announcer": 3.3.4 + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-stately/calendar": 3.5.1(react@18.3.1) + "@react-types/button": 3.9.4(react@18.3.1) + "@react-types/calendar": 3.4.6(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - "@react-aria/checkbox@3.12.0(react@18.2.0)": - dependencies: - "@react-aria/form": 3.0.0(react@18.2.0) - "@react-aria/label": 3.7.8(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) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + "@react-aria/checkbox@3.12.0(react@18.3.1)": + dependencies: + "@react-aria/form": 3.0.0(react@18.3.1) + "@react-aria/label": 3.7.8(react@18.3.1) + "@react-aria/toggle": 3.9.0(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-stately/checkbox": 3.6.0(react@18.3.1) + "@react-stately/form": 3.0.0(react@18.3.1) + "@react-stately/toggle": 3.7.4(react@18.3.1) + "@react-types/checkbox": 3.6.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/combobox@3.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@react-aria/combobox@3.8.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@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@18.2.0) + "@react-aria/i18n": 3.9.0(react@18.3.1) + "@react-aria/listbox": 3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@react-aria/live-announcer": 3.3.1 - "@react-aria/menu": 3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@react-aria/overlays": 3.19.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@react-aria/selection": 3.17.2(react-dom@18.2.0(react@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) + "@react-aria/menu": 3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/overlays": 3.19.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/selection": 3.17.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/textfield": 3.13.0(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-stately/collections": 3.10.7(react@18.3.1) + "@react-stately/combobox": 3.8.4(react@18.3.1) + "@react-stately/form": 3.0.0(react@18.3.1) + "@react-types/button": 3.9.1(react@18.3.1) + "@react-types/combobox": 3.9.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - "@react-aria/datepicker@3.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@react-aria/datepicker@3.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@internationalized/date": 3.5.0 + "@internationalized/date": 3.5.4 "@internationalized/number": 3.4.0 "@internationalized/string": 3.1.1 - "@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.8(react@18.2.0) - "@react-aria/spinbutton": 3.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@react-aria/utils": 3.22.0(react@18.2.0) - "@react-stately/datepicker": 3.9.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/calendar": 3.4.2(react@18.2.0) - "@react-types/datepicker": 3.7.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) + "@react-aria/focus": 3.15.0(react@18.3.1) + "@react-aria/form": 3.0.0(react@18.3.1) + "@react-aria/i18n": 3.9.0(react@18.3.1) + "@react-aria/interactions": 3.20.0(react@18.3.1) + "@react-aria/label": 3.7.8(react@18.3.1) + "@react-aria/spinbutton": 3.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-stately/datepicker": 3.9.4(react@18.3.1) + "@react-stately/form": 3.0.0(react@18.3.1) + "@react-types/button": 3.9.1(react@18.3.1) + "@react-types/calendar": 3.4.2(react@18.3.1) + "@react-types/datepicker": 3.7.0(react@18.3.1) + "@react-types/dialog": 3.5.7(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - "@react-aria/dialog@3.5.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@react-aria/dialog@3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@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@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) + "@react-aria/focus": 3.17.1(react@18.3.1) + "@react-aria/overlays": 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/dialog": 3.5.10(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - "@react-aria/focus@3.15.0(react@18.2.0)": + "@react-aria/focus@3.15.0(react@18.3.1)": dependencies: - "@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) + "@react-aria/interactions": 3.20.0(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 clsx: 1.2.1 - react: 18.2.0 + react: 18.3.1 + + "@react-aria/focus@3.17.1(react@18.3.1)": + dependencies: + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + "@swc/helpers": 0.5.3 + clsx: 2.0.0 + react: 18.3.1 + + "@react-aria/form@3.0.0(react@18.3.1)": + dependencies: + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-stately/form": 3.0.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + "@swc/helpers": 0.5.3 + react: 18.3.1 - "@react-aria/form@3.0.0(react@18.2.0)": + "@react-aria/i18n@3.11.1(react@18.3.1)": 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) + "@internationalized/date": 3.5.4 + "@internationalized/message": 3.1.4 + "@internationalized/number": 3.5.3 + "@internationalized/string": 3.2.3 + "@react-aria/ssr": 3.9.4(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/i18n@3.9.0(react@18.2.0)": + "@react-aria/i18n@3.9.0(react@18.3.1)": dependencies: - "@internationalized/date": 3.5.0 + "@internationalized/date": 3.5.4 "@internationalized/message": 3.1.1 "@internationalized/number": 3.4.0 "@internationalized/string": 3.1.1 - "@react-aria/ssr": 3.9.4(react@18.2.0) - "@react-aria/utils": 3.22.0(react@18.2.0) - "@react-types/shared": 3.22.0(react@18.2.0) + "@react-aria/ssr": 3.9.4(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/interactions@3.20.0(react@18.2.0)": + "@react-aria/interactions@3.20.0(react@18.3.1)": dependencies: - "@react-aria/ssr": 3.9.4(react@18.2.0) - "@react-aria/utils": 3.22.0(react@18.2.0) - "@react-types/shared": 3.22.0(react@18.2.0) + "@react-aria/ssr": 3.9.4(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/label@3.7.3(react@18.2.0)": + "@react-aria/interactions@3.21.3(react@18.3.1)": dependencies: - "@react-aria/utils": 3.22.0(react@18.2.0) - "@react-types/shared": 3.22.0(react@18.2.0) + "@react-aria/ssr": 3.9.4(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/label@3.7.8(react@18.2.0)": + "@react-aria/label@3.7.8(react@18.3.1)": dependencies: - "@react-aria/utils": 3.24.1(react@18.2.0) - "@react-types/shared": 3.23.1(react@18.2.0) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/link@3.6.2(react@18.2.0)": + "@react-aria/link@3.7.1(react@18.3.1)": dependencies: - "@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) + "@react-aria/focus": 3.17.1(react@18.3.1) + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/link": 3.5.5(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - - "@react-aria/listbox@3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@react-aria/interactions": 3.20.0(react@18.2.0) - "@react-aria/label": 3.7.8(react@18.2.0) - "@react-aria/selection": 3.17.2(react-dom@18.2.0(react@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) + react: 18.3.1 + + "@react-aria/listbox@3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@react-aria/interactions": 3.20.0(react@18.3.1) + "@react-aria/label": 3.7.8(react@18.3.1) + "@react-aria/selection": 3.17.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-stately/collections": 3.10.7(react@18.3.1) + "@react-stately/list": 3.10.5(react@18.3.1) + "@react-types/listbox": 3.4.6(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) "@react-aria/live-announcer@3.3.1": dependencies: "@swc/helpers": 0.5.3 - "@react-aria/menu@3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@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@18.2.0) - "@react-aria/selection": 3.17.2(react-dom@18.2.0(react@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) + "@react-aria/live-announcer@3.3.4": + dependencies: + "@swc/helpers": 0.5.3 + + "@react-aria/menu@3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@react-aria/focus": 3.15.0(react@18.3.1) + "@react-aria/i18n": 3.9.0(react@18.3.1) + "@react-aria/interactions": 3.20.0(react@18.3.1) + "@react-aria/overlays": 3.19.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/selection": 3.17.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-stately/collections": 3.10.7(react@18.3.1) + "@react-stately/menu": 3.5.7(react@18.3.1) + "@react-stately/tree": 3.7.4(react@18.3.1) + "@react-types/button": 3.9.1(react@18.3.1) + "@react-types/menu": 3.9.6(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + "@swc/helpers": 0.5.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + "@react-aria/overlays@3.19.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@react-aria/focus": 3.15.0(react@18.3.1) + "@react-aria/i18n": 3.9.0(react@18.3.1) + "@react-aria/interactions": 3.20.0(react@18.3.1) + "@react-aria/ssr": 3.9.4(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-aria/visually-hidden": 3.8.12(react@18.3.1) + "@react-stately/overlays": 3.6.7(react@18.3.1) + "@react-types/button": 3.9.1(react@18.3.1) + "@react-types/overlays": 3.8.7(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - 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@18.2.0)": - dependencies: - "@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.4(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) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + "@react-aria/overlays@3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@react-aria/focus": 3.17.1(react@18.3.1) + "@react-aria/i18n": 3.11.1(react@18.3.1) + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@react-aria/ssr": 3.9.4(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-aria/visually-hidden": 3.8.12(react@18.3.1) + "@react-stately/overlays": 3.6.7(react@18.3.1) + "@react-types/button": 3.9.4(react@18.3.1) + "@react-types/overlays": 3.8.7(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - "@react-aria/progress@3.4.8(react@18.2.0)": + "@react-aria/progress@3.4.13(react@18.3.1)": dependencies: - "@react-aria/i18n": 3.9.0(react@18.2.0) - "@react-aria/label": 3.7.8(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) + "@react-aria/i18n": 3.11.1(react@18.3.1) + "@react-aria/label": 3.7.8(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/progress": 3.5.4(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - - "@react-aria/radio@3.9.0(react@18.2.0)": - dependencies: - "@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.8(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) + react: 18.3.1 + + "@react-aria/radio@3.9.0(react@18.3.1)": + dependencies: + "@react-aria/focus": 3.15.0(react@18.3.1) + "@react-aria/form": 3.0.0(react@18.3.1) + "@react-aria/i18n": 3.9.0(react@18.3.1) + "@react-aria/interactions": 3.20.0(react@18.3.1) + "@react-aria/label": 3.7.8(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-stately/radio": 3.10.4(react@18.3.1) + "@react-types/radio": 3.6.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/selection@3.17.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@react-aria/selection@3.17.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@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) + "@react-aria/focus": 3.17.1(react@18.3.1) + "@react-aria/i18n": 3.9.0(react@18.3.1) + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-stately/selection": 3.14.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - "@react-aria/spinbutton@3.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@react-aria/spinbutton@3.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@react-aria/i18n": 3.9.0(react@18.2.0) + "@react-aria/i18n": 3.9.0(react@18.3.1) "@react-aria/live-announcer": 3.3.1 - "@react-aria/utils": 3.22.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) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/button": 3.9.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - "@react-aria/ssr@3.9.4(react@18.2.0)": + "@react-aria/ssr@3.9.4(react@18.3.1)": dependencies: "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/switch@3.5.7(react@18.2.0)": + "@react-aria/switch@3.5.7(react@18.3.1)": dependencies: - "@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) + "@react-aria/toggle": 3.9.0(react@18.3.1) + "@react-stately/toggle": 3.7.4(react@18.3.1) + "@react-types/switch": 3.5.0(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - - "@react-aria/textfield@3.13.0(react@18.2.0)": - dependencies: - "@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.8(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) + react: 18.3.1 + + "@react-aria/textfield@3.13.0(react@18.3.1)": + dependencies: + "@react-aria/focus": 3.15.0(react@18.3.1) + "@react-aria/form": 3.0.0(react@18.3.1) + "@react-aria/label": 3.7.8(react@18.3.1) + "@react-aria/utils": 3.22.0(react@18.3.1) + "@react-stately/form": 3.0.0(react@18.3.1) + "@react-stately/utils": 3.9.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + "@react-types/textfield": 3.9.0(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/toggle@3.9.0(react@18.2.0)": + "@react-aria/toggle@3.9.0(react@18.3.1)": dependencies: - "@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) + "@react-aria/focus": 3.17.1(react@18.3.1) + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-stately/toggle": 3.7.4(react@18.3.1) + "@react-types/checkbox": 3.6.0(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-aria/utils@3.22.0(react@18.2.0)": + "@react-aria/utils@3.22.0(react@18.3.1)": dependencies: - "@react-aria/ssr": 3.9.4(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-aria/ssr": 3.9.4(react@18.3.1) + "@react-stately/utils": 3.9.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 clsx: 1.2.1 - react: 18.2.0 + react: 18.3.1 - "@react-aria/utils@3.24.1(react@18.2.0)": + "@react-aria/utils@3.24.1(react@18.3.1)": dependencies: - "@react-aria/ssr": 3.9.4(react@18.2.0) - "@react-stately/utils": 3.10.1(react@18.2.0) - "@react-types/shared": 3.23.1(react@18.2.0) + "@react-aria/ssr": 3.9.4(react@18.3.1) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 clsx: 2.0.0 - react: 18.2.0 + react: 18.3.1 - "@react-aria/visually-hidden@3.8.7(react@18.2.0)": + "@react-aria/visually-hidden@3.8.12(react@18.3.1)": dependencies: - "@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) + "@react-aria/interactions": 3.21.3(react@18.3.1) + "@react-aria/utils": 3.24.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 "@react-dnd/asap@5.0.2": {} @@ -23677,244 +23817,307 @@ snapshots: "@react-dnd/shallowequal@4.0.2": {} - "@react-leaflet/core@2.1.0(leaflet@1.9.4)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@react-leaflet/core@2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: leaflet: 1.9.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - "@react-stately/calendar@3.4.2(react@18.2.0)": + "@react-stately/calendar@3.4.2(react@18.3.1)": dependencies: - "@internationalized/date": 3.5.0 - "@react-stately/utils": 3.9.0(react@18.2.0) - "@react-types/calendar": 3.4.2(react@18.2.0) - "@react-types/shared": 3.22.0(react@18.2.0) + "@internationalized/date": 3.5.4 + "@react-stately/utils": 3.9.0(react@18.3.1) + "@react-types/calendar": 3.4.2(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/checkbox@3.6.0(react@18.2.0)": + "@react-stately/calendar@3.5.1(react@18.3.1)": dependencies: - "@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) + "@internationalized/date": 3.5.4 + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/calendar": 3.4.6(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/collections@3.10.3(react@18.2.0)": + "@react-stately/checkbox@3.6.0(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) + "@react-stately/form": 3.0.0(react@18.3.1) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/checkbox": 3.6.0(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 - - "@react-stately/combobox@3.8.0(react@18.2.0)": - dependencies: - "@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) + react: 18.3.1 + + "@react-stately/collections@3.10.7(react@18.3.1)": + dependencies: + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 + + "@react-stately/combobox@3.8.4(react@18.3.1)": + dependencies: + "@react-stately/collections": 3.10.7(react@18.3.1) + "@react-stately/form": 3.0.3(react@18.3.1) + "@react-stately/list": 3.10.5(react@18.3.1) + "@react-stately/overlays": 3.6.7(react@18.3.1) + "@react-stately/select": 3.6.4(react@18.3.1) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/combobox": 3.11.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + "@swc/helpers": 0.5.3 + react: 18.3.1 - "@react-stately/data@3.11.0(react@18.2.0)": + "@react-stately/data@3.11.4(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/datepicker@3.9.0(react@18.2.0)": + "@react-stately/datepicker@3.9.4(react@18.3.1)": dependencies: - "@internationalized/date": 3.5.0 - "@internationalized/string": 3.1.1 - "@react-stately/form": 3.0.0(react@18.2.0) - "@react-stately/overlays": 3.6.4(react@18.2.0) - "@react-stately/utils": 3.9.0(react@18.2.0) - "@react-types/datepicker": 3.7.0(react@18.2.0) - "@react-types/shared": 3.22.0(react@18.2.0) + "@internationalized/date": 3.5.4 + "@internationalized/string": 3.2.3 + "@react-stately/form": 3.0.3(react@18.3.1) + "@react-stately/overlays": 3.6.7(react@18.3.1) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/datepicker": 3.7.4(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/form@3.0.0(react@18.2.0)": + "@react-stately/form@3.0.0(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/list@3.10.1(react@18.2.0)": + "@react-stately/form@3.0.3(react@18.3.1)": 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) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/menu@3.5.7(react@18.2.0)": + "@react-stately/list@3.10.5(react@18.3.1)": dependencies: - "@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) + "@react-stately/collections": 3.10.7(react@18.3.1) + "@react-stately/selection": 3.15.1(react@18.3.1) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/overlays@3.6.4(react@18.2.0)": + "@react-stately/menu@3.5.7(react@18.3.1)": dependencies: - "@react-stately/utils": 3.9.0(react@18.2.0) - "@react-types/overlays": 3.8.4(react@18.2.0) + "@react-stately/overlays": 3.6.7(react@18.3.1) + "@react-types/menu": 3.9.6(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/radio@3.10.0(react@18.2.0)": + "@react-stately/overlays@3.6.7(react@18.3.1)": dependencies: - "@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) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/overlays": 3.8.7(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/select@3.6.0(react@18.2.0)": + "@react-stately/radio@3.10.4(react@18.3.1)": dependencies: - "@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) + "@react-stately/form": 3.0.3(react@18.3.1) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/radio": 3.8.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/selection@3.14.1(react@18.2.0)": + "@react-stately/select@3.6.4(react@18.3.1)": dependencies: - "@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) + "@react-stately/form": 3.0.3(react@18.3.1) + "@react-stately/list": 3.10.5(react@18.3.1) + "@react-stately/overlays": 3.6.7(react@18.3.1) + "@react-types/select": 3.9.4(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/toggle@3.7.0(react@18.2.0)": + "@react-stately/selection@3.14.1(react@18.3.1)": dependencies: - "@react-stately/utils": 3.9.0(react@18.2.0) - "@react-types/checkbox": 3.6.0(react@18.2.0) + "@react-stately/collections": 3.10.7(react@18.3.1) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/tree@3.7.4(react@18.2.0)": + "@react-stately/selection@3.15.1(react@18.3.1)": 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) + "@react-stately/collections": 3.10.7(react@18.3.1) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/utils@3.10.1(react@18.2.0)": + "@react-stately/toggle@3.7.4(react@18.3.1)": dependencies: + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/checkbox": 3.8.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-stately/utils@3.9.0(react@18.2.0)": + "@react-stately/tree@3.7.4(react@18.3.1)": dependencies: + "@react-stately/collections": 3.10.7(react@18.3.1) + "@react-stately/selection": 3.14.1(react@18.3.1) + "@react-stately/utils": 3.10.1(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) "@swc/helpers": 0.5.3 - react: 18.2.0 + react: 18.3.1 - "@react-types/breadcrumbs@3.7.2(react@18.2.0)": + "@react-stately/utils@3.10.1(react@18.3.1)": dependencies: - "@react-types/link": 3.5.2(react@18.2.0) - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@swc/helpers": 0.5.3 + react: 18.3.1 - "@react-types/button@3.9.1(react@18.2.0)": + "@react-stately/utils@3.9.0(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@swc/helpers": 0.5.3 + react: 18.3.1 - "@react-types/calendar@3.4.2(react@18.2.0)": + "@react-types/breadcrumbs@3.7.5(react@18.3.1)": dependencies: - "@internationalized/date": 3.5.0 - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/link": 3.5.5(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/checkbox@3.6.0(react@18.2.0)": + "@react-types/button@3.9.1(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/combobox@3.9.0(react@18.2.0)": + "@react-types/button@3.9.4(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/datepicker@3.7.0(react@18.2.0)": + "@react-types/calendar@3.4.2(react@18.3.1)": dependencies: - "@internationalized/date": 3.5.0 - "@react-types/calendar": 3.4.2(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 + "@internationalized/date": 3.5.4 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/dialog@3.5.7(react@18.2.0)": + "@react-types/calendar@3.4.6(react@18.3.1)": dependencies: - "@react-types/overlays": 3.8.4(react@18.2.0) - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@internationalized/date": 3.5.4 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/link@3.5.2(react@18.2.0)": + "@react-types/checkbox@3.6.0(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/listbox@3.4.6(react@18.2.0)": + "@react-types/checkbox@3.8.1(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/menu@3.9.6(react@18.2.0)": + "@react-types/combobox@3.11.1(react@18.3.1)": dependencies: - "@react-types/overlays": 3.8.4(react@18.2.0) - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/overlays@3.8.4(react@18.2.0)": + "@react-types/combobox@3.9.0(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/progress@3.5.1(react@18.2.0)": + "@react-types/datepicker@3.7.0(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@internationalized/date": 3.5.4 + "@react-types/calendar": 3.4.2(react@18.3.1) + "@react-types/overlays": 3.8.7(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/radio@3.6.0(react@18.2.0)": + "@react-types/datepicker@3.7.4(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@internationalized/date": 3.5.4 + "@react-types/calendar": 3.4.6(react@18.3.1) + "@react-types/overlays": 3.8.7(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/select@3.9.0(react@18.2.0)": + "@react-types/dialog@3.5.10(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/overlays": 3.8.7(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/shared@3.22.0(react@18.2.0)": + "@react-types/dialog@3.5.7(react@18.3.1)": dependencies: - react: 18.2.0 + "@react-types/overlays": 3.8.7(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/shared@3.23.1(react@18.2.0)": + "@react-types/link@3.5.5(react@18.3.1)": dependencies: - react: 18.2.0 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/switch@3.5.0(react@18.2.0)": + "@react-types/listbox@3.4.6(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 - "@react-types/textfield@3.9.0(react@18.2.0)": + "@react-types/menu@3.9.6(react@18.3.1)": dependencies: - "@react-types/shared": 3.22.0(react@18.2.0) - react: 18.2.0 + "@react-types/overlays": 3.8.7(react@18.3.1) + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 + + "@react-types/overlays@3.8.7(react@18.3.1)": + dependencies: + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 + + "@react-types/progress@3.5.4(react@18.3.1)": + dependencies: + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 + + "@react-types/radio@3.6.0(react@18.3.1)": + dependencies: + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 + + "@react-types/radio@3.8.1(react@18.3.1)": + dependencies: + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 + + "@react-types/select@3.9.4(react@18.3.1)": + dependencies: + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 + + "@react-types/shared@3.22.0(react@18.3.1)": + dependencies: + react: 18.3.1 + + "@react-types/shared@3.23.1(react@18.3.1)": + dependencies: + react: 18.3.1 + + "@react-types/switch@3.5.0(react@18.3.1)": + dependencies: + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 + + "@react-types/textfield@3.9.0(react@18.3.1)": + dependencies: + "@react-types/shared": 3.23.1(react@18.3.1) + react: 18.3.1 "@rollup/plugin-commonjs@24.0.0(rollup@2.78.0)": dependencies: @@ -24089,20 +24292,20 @@ snapshots: "@sentry/utils": 7.81.1 localforage: 1.10.0 - "@sentry/nextjs@7.81.1(encoding@0.1.13)(next@14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4))(react@18.2.0)": + "@sentry/nextjs@7.81.1(encoding@0.1.13)(next@14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4))(react@18.3.1)": dependencies: "@rollup/plugin-commonjs": 24.0.0(rollup@2.78.0) "@sentry/core": 7.81.1 "@sentry/integrations": 7.81.1 "@sentry/node": 7.81.1 - "@sentry/react": 7.81.1(react@18.2.0) + "@sentry/react": 7.81.1(react@18.3.1) "@sentry/types": 7.81.1 "@sentry/utils": 7.81.1 "@sentry/vercel-edge": 7.81.1 "@sentry/webpack-plugin": 1.21.0(encoding@0.1.13) chalk: 3.0.0 - next: 14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4) - react: 18.2.0 + next: 14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4) + react: 18.3.1 resolve: 1.22.8 rollup: 2.78.0 stacktrace-parser: 0.1.10 @@ -24177,13 +24380,13 @@ snapshots: "@sentry/types": 8.8.0 "@sentry/utils": 8.8.0 - "@sentry/react@7.81.1(react@18.2.0)": + "@sentry/react@7.81.1(react@18.3.1)": dependencies: "@sentry/browser": 7.81.1 "@sentry/types": 7.81.1 "@sentry/utils": 7.81.1 hoist-non-react-statics: 3.3.2 - react: 18.2.0 + react: 18.3.1 "@sentry/replay@7.81.1": dependencies: @@ -24310,102 +24513,102 @@ snapshots: "@socket.io/component-emitter@3.1.0": {} - "@storybook/addon-a11y@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-a11y@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/addon-highlight": 7.5.3 "@storybook/channels": 7.5.3 "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-events": 7.5.3 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 axe-core: 4.7.2 lodash: 4.17.21 - react-resize-detector: 7.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-resize-detector: 7.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - "@storybook/addon-actions@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-actions@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-events": 7.5.3 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 dequal: 2.0.3 lodash: 4.17.21 polished: 4.2.2 prop-types: 15.8.1 - react-inspector: 6.0.2(react@18.2.0) + react-inspector: 6.0.2(react@18.3.1) telejson: 7.2.0 ts-dedent: 2.2.0 uuid: 9.0.1 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - "@storybook/addon-backgrounds@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-backgrounds@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-events": 7.5.3 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 memoizerific: 1.11.3 ts-dedent: 2.2.0 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - "@storybook/addon-controls@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-controls@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@storybook/blocks": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/blocks": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-common": 7.5.3(encoding@0.1.13) "@storybook/core-events": 7.5.3 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/node-logger": 7.5.3 "@storybook/preview-api": 7.5.3 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 lodash: 4.17.21 ts-dedent: 2.2.0 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - encoding - supports-color - "@storybook/addon-docs@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-docs@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@jest/transform": 29.6.4 - "@mdx-js/react": 2.3.0(react@18.2.0) - "@storybook/blocks": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@mdx-js/react": 2.3.0(react@18.3.1) + "@storybook/blocks": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/csf-plugin": 7.5.3 "@storybook/csf-tools": 7.5.3 "@storybook/global": 5.0.0 @@ -24413,12 +24616,12 @@ snapshots: "@storybook/node-logger": 7.5.3 "@storybook/postinstall": 7.5.3 "@storybook/preview-api": 7.5.3 - "@storybook/react-dom-shim": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/react-dom-shim": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 fs-extra: 11.1.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 @@ -24428,23 +24631,23 @@ snapshots: - encoding - supports-color - "@storybook/addon-essentials@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-essentials@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@storybook/addon-actions": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-backgrounds": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-controls": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-docs": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addon-actions": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/addon-backgrounds": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/addon-controls": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/addon-docs": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/addon-highlight": 7.5.3 - "@storybook/addon-measure": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-outline": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-toolbars": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-viewport": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addon-measure": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/addon-outline": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/addon-toolbars": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/addon-viewport": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-common": 7.5.3(encoding@0.1.13) - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/node-logger": 7.5.3 "@storybook/preview-api": 7.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) ts-dedent: 2.2.0 transitivePeerDependencies: - "@types/react" @@ -24458,152 +24661,152 @@ snapshots: "@storybook/global": 5.0.0 "@storybook/preview-api": 7.5.3 - "@storybook/addon-interactions@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-interactions@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-common": 7.5.3(encoding@0.1.13) "@storybook/core-events": 7.5.3 "@storybook/global": 5.0.0 "@storybook/instrumenter": 7.5.3 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 jest-mock: 27.5.1 polished: 4.2.2 ts-dedent: 2.2.0 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - encoding - supports-color - "@storybook/addon-links@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-links@7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 "@storybook/core-events": 7.5.3 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 - "@storybook/router": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/router": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 prop-types: 15.8.1 ts-dedent: 2.2.0 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - "@storybook/addon-measure@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-measure@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-events": 7.5.3 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 "@storybook/types": 7.5.3 tiny-invariant: 1.3.1 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - "@storybook/addon-outline@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-outline@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-events": 7.5.3 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 "@storybook/types": 7.5.3 ts-dedent: 2.2.0 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - "@storybook/addon-themes@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-themes@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-events": 7.5.3 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 ts-dedent: 2.2.0 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - "@storybook/addon-toolbars@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-toolbars@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - "@storybook/addon-viewport@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/addon-viewport@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-events": 7.5.3 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) memoizerific: 1.11.3 prop-types: 15.8.1 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - "@types/react" - "@types/react-dom" - "@storybook/blocks@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/blocks@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/channels": 7.5.3 "@storybook/client-logger": 7.5.3 - "@storybook/components": 7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/core-events": 7.5.3 "@storybook/csf": 0.1.1 "@storybook/docs-tools": 7.5.3(encoding@0.1.13) "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/manager-api": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/preview-api": 7.5.3 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 "@types/lodash": 4.14.200 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 - markdown-to-jsx: 7.3.2(react@18.2.0) + markdown-to-jsx: 7.3.2(react@18.3.1) memoizerific: 1.11.3 polished: 4.2.2 - react: 18.2.0 - react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) telejson: 7.2.0 tocbot: 4.21.1 ts-dedent: 2.2.0 @@ -24636,7 +24839,7 @@ snapshots: - encoding - supports-color - "@storybook/builder-vite@7.5.3(encoding@0.1.13)(typescript@5.3.2)(vite@5.0.2(@types/node@20.14.2)(sass@1.77.4))": + "@storybook/builder-vite@7.5.3(encoding@0.1.13)(typescript@5.3.2)(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4))": dependencies: "@storybook/channels": 7.5.3 "@storybook/client-logger": 7.5.3 @@ -24654,7 +24857,7 @@ snapshots: fs-extra: 11.1.1 magic-string: 0.30.3 rollup: 3.28.1 - vite: 5.0.2(@types/node@20.14.2)(sass@1.77.4) + vite: 5.2.13(@types/node@20.14.2)(sass@1.77.4) optionalDependencies: typescript: 5.3.2 transitivePeerDependencies: @@ -24742,19 +24945,19 @@ snapshots: transitivePeerDependencies: - supports-color - "@storybook/components@7.5.3(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/components@7.5.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-select": 1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/client-logger": 7.5.3 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + use-resize-observer: 9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) util-deprecate: 1.0.2 transitivePeerDependencies: - "@types/react" @@ -24911,21 +25114,21 @@ snapshots: - jest - vitest - "@storybook/manager-api@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/manager-api@7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/channels": 7.5.3 "@storybook/client-logger": 7.5.3 "@storybook/core-events": 7.5.3 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 - "@storybook/router": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/router": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + "@storybook/theming": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) semver: 7.5.4 store2: 2.14.2 telejson: 7.2.0 @@ -24958,23 +25161,23 @@ snapshots: "@storybook/preview@7.5.3": {} - "@storybook/react-dom-shim@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/react-dom-shim@7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - "@storybook/react-vite@7.5.3(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.18.0)(typescript@5.3.2)(vite@5.0.2(@types/node@20.14.2)(sass@1.77.4))": + "@storybook/react-vite@7.5.3(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.18.0)(typescript@5.3.2)(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4))": dependencies: - "@joshwooding/vite-plugin-react-docgen-typescript": 0.3.0(typescript@5.3.2)(vite@5.0.2(@types/node@20.14.2)(sass@1.77.4)) + "@joshwooding/vite-plugin-react-docgen-typescript": 0.3.0(typescript@5.3.2)(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4)) "@rollup/pluginutils": 5.0.3(rollup@4.18.0) - "@storybook/builder-vite": 7.5.3(encoding@0.1.13)(typescript@5.3.2)(vite@5.0.2(@types/node@20.14.2)(sass@1.77.4)) - "@storybook/react": 7.5.3(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.2) - "@vitejs/plugin-react": 3.1.0(vite@5.0.2(@types/node@20.14.2)(sass@1.77.4)) + "@storybook/builder-vite": 7.5.3(encoding@0.1.13)(typescript@5.3.2)(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4)) + "@storybook/react": 7.5.3(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.2) + "@vitejs/plugin-react": 3.1.0(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4)) magic-string: 0.30.3 - react: 18.2.0 + react: 18.3.1 react-docgen: 6.0.4 - react-dom: 18.2.0(react@18.2.0) - vite: 5.0.2(@types/node@20.14.2)(sass@1.77.4) + react-dom: 18.3.1(react@18.3.1) + vite: 5.2.13(@types/node@20.14.2)(sass@1.77.4) transitivePeerDependencies: - "@preact/preset-vite" - encoding @@ -24983,14 +25186,14 @@ snapshots: - typescript - vite-plugin-glimmerx - "@storybook/react@7.5.3(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.3.2)": + "@storybook/react@7.5.3(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.3.2)": dependencies: "@storybook/client-logger": 7.5.3 "@storybook/core-client": 7.5.3 "@storybook/docs-tools": 7.5.3(encoding@0.1.13) "@storybook/global": 5.0.0 "@storybook/preview-api": 7.5.3 - "@storybook/react-dom-shim": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/react-dom-shim": 7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) "@storybook/types": 7.5.3 "@types/escodegen": 0.0.6 "@types/estree": 0.0.51 @@ -25002,9 +25205,9 @@ snapshots: html-tags: 3.3.1 lodash: 4.17.21 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-element-to-jsx-string: 15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ts-dedent: 2.2.0 type-fest: 2.19.0 util-deprecate: 1.0.2 @@ -25014,13 +25217,13 @@ snapshots: - encoding - supports-color - "@storybook/router@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/router@7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@storybook/client-logger": 7.5.3 memoizerific: 1.11.3 qs: 6.11.2 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) "@storybook/telemetry@7.5.3(encoding@0.1.13)": dependencies: @@ -25081,14 +25284,14 @@ snapshots: "@testing-library/user-event": 14.4.3(@testing-library/dom@9.3.1) ts-dedent: 2.2.0 - "@storybook/theming@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@storybook/theming@7.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) + "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.3.1) "@storybook/client-logger": 7.5.3 "@storybook/global": 5.0.0 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) "@storybook/types@7.5.3": dependencies: @@ -25188,19 +25391,27 @@ snapshots: "@tanstack/query-core@5.40.0": {} - "@tanstack/react-query@5.40.1(react@18.2.0)": + "@tanstack/react-query@5.40.1(react@18.3.1)": dependencies: "@tanstack/query-core": 5.40.0 - react: 18.2.0 + react: 18.3.1 - "@tanstack/react-table@8.17.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + "@tanstack/react-table@8.17.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: "@tanstack/table-core": 8.17.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + "@tanstack/react-virtual@3.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + dependencies: + "@tanstack/virtual-core": 3.5.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) "@tanstack/table-core@8.17.3": {} + "@tanstack/virtual-core@3.5.0": {} + "@testing-library/dom@9.3.1": dependencies: "@babel/code-frame": 7.22.10 @@ -25618,7 +25829,7 @@ snapshots: "@types/hoist-non-react-statics@3.3.2": dependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 hoist-non-react-statics: 3.3.2 "@types/http-assert@1.5.5": {} @@ -25766,18 +25977,17 @@ snapshots: "@types/range-parser@1.2.4": {} - "@types/react-dom@18.2.14": + "@types/react-dom@18.3.0": dependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 "@types/react-transition-group@4.4.6": dependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - "@types/react@18.2.34": + "@types/react@18.3.3": dependencies: "@types/prop-types": 15.7.5 - "@types/scheduler": 0.16.3 csstype: 3.1.2 "@types/resolve@1.20.4": {} @@ -25788,8 +25998,6 @@ snapshots: "@types/retry@0.12.0": {} - "@types/scheduler@0.16.3": {} - "@types/semver@7.5.0": {} "@types/send@0.17.1": @@ -25952,14 +26160,14 @@ snapshots: "@ungap/structured-clone@1.2.0": {} - "@vitejs/plugin-react@3.1.0(vite@5.0.2(@types/node@20.14.2)(sass@1.77.4))": + "@vitejs/plugin-react@3.1.0(vite@5.2.13(@types/node@20.14.2)(sass@1.77.4))": dependencies: "@babel/core": 7.22.11 "@babel/plugin-transform-react-jsx-self": 7.22.5(@babel/core@7.22.11) "@babel/plugin-transform-react-jsx-source": 7.22.5(@babel/core@7.22.11) magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 5.0.2(@types/node@20.14.2)(sass@1.77.4) + vite: 5.2.13(@types/node@20.14.2)(sass@1.77.4) transitivePeerDependencies: - supports-color @@ -26307,16 +26515,6 @@ snapshots: asynckit@0.4.0: {} - autoprefixer@10.4.16(postcss@8.4.31): - dependencies: - browserslist: 4.21.10 - caniuse-lite: 1.0.30001538 - fraction.js: 4.3.6 - normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.31 - postcss-value-parser: 4.2.0 - autoprefixer@10.4.19(postcss@8.4.38): dependencies: browserslist: 4.23.1 @@ -26535,13 +26733,6 @@ snapshots: dependencies: pako: 0.2.9 - browserslist@4.21.10: - dependencies: - caniuse-lite: 1.0.30001538 - electron-to-chromium: 1.4.500 - node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.10) - browserslist@4.23.1: dependencies: caniuse-lite: 1.0.30001629 @@ -27114,7 +27305,7 @@ snapshots: core-js-compat@3.32.1: dependencies: - browserslist: 4.21.10 + browserslist: 4.23.1 core-util-is@1.0.3: {} @@ -27501,8 +27692,6 @@ snapshots: dependencies: jake: 10.8.7 - electron-to-chromium@1.4.500: {} - electron-to-chromium@1.4.796: {} emittery@0.13.1: {} @@ -28496,26 +28685,14 @@ snapshots: combined-stream: 1.0.8 mime-types: 2.1.35 - formik@2.4.5(react@18.2.0): - dependencies: - "@types/hoist-non-react-statics": 3.3.2 - deepmerge: 2.2.1 - hoist-non-react-statics: 3.3.2 - lodash: 4.17.21 - lodash-es: 4.17.21 - react: 18.2.0 - react-fast-compare: 2.0.4 - tiny-warning: 1.0.3 - tslib: 2.6.3 - - formik@2.4.6(react@18.2.0): + formik@2.4.6(react@18.3.1): dependencies: "@types/hoist-non-react-statics": 3.3.2 deepmerge: 2.2.1 hoist-non-react-statics: 3.3.2 lodash: 4.17.21 lodash-es: 4.17.21 - react: 18.2.0 + react: 18.3.1 react-fast-compare: 2.0.4 tiny-warning: 1.0.3 tslib: 2.6.3 @@ -28524,8 +28701,6 @@ snapshots: fp-ts@2.16.1: {} - fraction.js@4.3.6: {} - fraction.js@4.3.7: {} fresh@0.5.2: {} @@ -29131,7 +29306,7 @@ snapshots: inline-style-parser@0.1.1: {} - inline-style-prefixer@6.0.4: + inline-style-prefixer@7.0.0: dependencies: css-in-js-utils: 3.1.0 fast-loops: 1.1.3 @@ -29933,8 +30108,6 @@ snapshots: - supports-color - ts-node - jiti@1.19.3: {} - jiti@1.21.3: {} joi@17.11.0: @@ -30455,9 +30628,9 @@ snapshots: markdown-table@3.0.3: {} - markdown-to-jsx@7.3.2(react@18.2.0): + markdown-to-jsx@7.3.2(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 matched@0.4.4: dependencies: @@ -30990,16 +31163,16 @@ snapshots: object-assign: 4.1.1 thenify-all: 1.6.0 - nano-css@5.3.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + nano-css@5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: + "@jridgewell/sourcemap-codec": 1.4.15 css-tree: 1.1.3 csstype: 3.1.2 fastest-stable-stringify: 2.0.2 - inline-style-prefixer: 6.0.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + inline-style-prefixer: 7.0.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rtl-css-js: 1.16.1 - sourcemap-codec: 1.4.8 stacktrace-js: 2.0.2 stylis: 4.3.0 @@ -31017,32 +31190,32 @@ snapshots: new-github-issue-url@0.2.1: {} - next-intl@2.22.1(next@13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.4.1)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4))(react@18.2.0): + next-intl@2.22.1(next@13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4))(react@18.3.1): dependencies: "@formatjs/intl-localematcher": 0.2.32 negotiator: 0.6.3 - next: 13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.4.1)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4) - react: 18.2.0 - use-intl: 2.22.1(react@18.2.0) + next: 13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4) + react: 18.3.1 + use-intl: 2.22.1(react@18.3.1) - next-intl@2.22.1(next@14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4))(react@18.2.0): + next-intl@2.22.1(next@14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4))(react@18.3.1): dependencies: "@formatjs/intl-localematcher": 0.2.32 negotiator: 0.6.3 - next: 14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4) - react: 18.2.0 - use-intl: 2.22.1(react@18.2.0) + next: 14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4) + react: 18.3.1 + use-intl: 2.22.1(react@18.3.1) - next@13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.4.1)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4): + next@13.4.13(@babel/core@7.22.11)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4): dependencies: "@next/env": 13.4.13 "@swc/helpers": 0.5.1 busboy: 1.6.0 caniuse-lite: 1.0.30001522 postcss: 8.4.38 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.22.11)(babel-plugin-macros@3.1.0)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.22.11)(babel-plugin-macros@3.1.0)(react@18.3.1) watchpack: 2.4.0 zod: 3.23.8 optionalDependencies: @@ -31055,22 +31228,22 @@ snapshots: "@next/swc-win32-arm64-msvc": 13.4.13 "@next/swc-win32-ia32-msvc": 13.4.13 "@next/swc-win32-x64-msvc": 13.4.13 - "@opentelemetry/api": 1.4.1 + "@opentelemetry/api": 1.9.0 sass: 1.77.4 transitivePeerDependencies: - "@babel/core" - babel-plugin-macros - next@14.0.3(@opentelemetry/api@1.4.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.77.4): + next@14.0.3(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.4): dependencies: "@next/env": 14.0.3 "@swc/helpers": 0.5.2 busboy: 1.6.0 caniuse-lite: 1.0.30001538 postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.22.11)(babel-plugin-macros@3.1.0)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.22.11)(babel-plugin-macros@3.1.0)(react@18.3.1) watchpack: 2.4.0 optionalDependencies: "@next/swc-darwin-arm64": 14.0.3 @@ -31082,7 +31255,7 @@ snapshots: "@next/swc-win32-arm64-msvc": 14.0.3 "@next/swc-win32-ia32-msvc": 14.0.3 "@next/swc-win32-x64-msvc": 14.0.3 - "@opentelemetry/api": 1.4.1 + "@opentelemetry/api": 1.9.0 sass: 1.77.4 transitivePeerDependencies: - "@babel/core" @@ -31149,8 +31322,6 @@ snapshots: dependencies: process-on-spawn: 1.0.0 - node-releases@2.0.13: {} - node-releases@2.0.14: {} nodemon@3.1.3: @@ -31839,12 +32010,12 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.38 - postcss-load-config@3.1.4(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)): + postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)): dependencies: lilconfig: 2.1.0 yaml: 1.10.2 optionalDependencies: - postcss: 8.4.31 + postcss: 8.4.38 ts-node: 10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2) postcss-load-config@3.1.4(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.4.5)): @@ -31882,9 +32053,9 @@ snapshots: postcss@8.4.31: dependencies: - nanoid: 3.3.6 - picocolors: 1.0.0 - source-map-js: 1.0.2 + nanoid: 3.3.7 + picocolors: 1.0.1 + source-map-js: 1.2.0 postcss@8.4.38: dependencies: @@ -32098,39 +32269,34 @@ snapshots: iconv-lite: 0.4.24 unpipe: 1.0.0 - react-bootstrap-icons@1.10.3(react@18.2.0): + react-bootstrap-icons@1.11.4(react@18.3.1): dependencies: prop-types: 15.8.1 - react: 18.2.0 + react: 18.3.1 - react-bootstrap-icons@1.11.4(react@18.2.0): + react-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - prop-types: 15.8.1 - react: 18.2.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react-colorful@5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-cool-onclickoutside@1.7.0(react@18.3.1): dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 - react-cool-onclickoutside@1.7.0(react@18.2.0): - dependencies: - react: 18.2.0 - - react-cropper@2.3.3(react@18.2.0): + react-cropper@2.3.3(react@18.3.1): dependencies: cropperjs: 1.5.13 - react: 18.2.0 + react: 18.3.1 - react-diff-viewer-continued@3.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-diff-viewer-continued@3.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: "@emotion/css": 11.11.2 classnames: 2.3.2 diff: 5.1.0 memoize-one: 6.0.0 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-digit-input@2.1.0: {} @@ -32138,18 +32304,18 @@ snapshots: dependencies: dnd-core: 16.0.1 - react-dnd@16.0.1(@types/hoist-non-react-statics@3.3.2)(@types/node@20.14.2)(@types/react@18.2.34)(react@18.2.0): + react-dnd@16.0.1(@types/hoist-non-react-statics@3.3.2)(@types/node@20.14.2)(@types/react@18.3.3)(react@18.3.1): dependencies: "@react-dnd/invariant": 4.0.2 "@react-dnd/shallowequal": 4.0.2 dnd-core: 16.0.1 fast-deep-equal: 3.1.3 hoist-non-react-statics: 3.3.2 - react: 18.2.0 + react: 18.3.1 optionalDependencies: "@types/hoist-non-react-statics": 3.3.2 "@types/node": 20.14.2 - "@types/react": 18.2.34 + "@types/react": 18.3.3 react-docgen-typescript@2.2.2(typescript@5.3.2): dependencies: @@ -32170,39 +32336,39 @@ snapshots: transitivePeerDependencies: - supports-color - react-dom@18.2.0(react@18.2.0): + react-dom@18.3.1(react@18.3.1): dependencies: loose-envify: 1.4.0 - react: 18.2.0 - scheduler: 0.23.0 + react: 18.3.1 + scheduler: 0.23.2 - react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: "@base2/pretty-print-object": 1.0.1 is-plain-object: 5.0.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-is: 18.1.0 react-fast-compare@2.0.4: {} - react-google-recaptcha-v3@1.10.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-google-recaptcha-v3@1.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: hoist-non-react-statics: 3.3.2 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react-hot-toast@2.4.1(csstype@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-hot-toast@2.4.1(csstype@3.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: goober: 2.1.13(csstype@3.1.2) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - csstype - react-inspector@6.0.2(react@18.2.0): + react-inspector@6.0.2(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 react-is@16.13.1: {} @@ -32212,22 +32378,22 @@ snapshots: react-is@18.2.0: {} - react-leaflet@4.2.1(leaflet@1.9.4)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-leaflet@4.2.1(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@react-leaflet/core": 2.1.0(leaflet@1.9.4)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@react-leaflet/core": 2.1.0(leaflet@1.9.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) leaflet: 1.9.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react-markdown@9.0.1(@types/react@18.2.34)(react@18.2.0): + react-markdown@9.0.1(@types/react@18.3.3)(react@18.3.1): dependencies: "@types/hast": 3.0.1 - "@types/react": 18.2.34 + "@types/react": 18.3.3 devlop: 1.1.0 hast-util-to-jsx-runtime: 2.2.0 html-url-attributes: 3.0.0 mdast-util-to-hast: 13.0.2 - react: 18.2.0 + react: 18.3.1 remark-parse: 11.0.0 remark-rehype: 11.0.0 unified: 11.0.4 @@ -32238,80 +32404,80 @@ snapshots: react-refresh@0.14.0: {} - react-remove-scroll-bar@2.3.4(@types/react@18.2.34)(react@18.2.0): + react-remove-scroll-bar@2.3.4(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.34)(react@18.2.0) + react: 18.3.1 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) tslib: 2.6.3 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - react-remove-scroll@2.5.5(@types/react@18.2.34)(react@18.2.0): + react-remove-scroll@2.5.5(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.34)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.34)(react@18.2.0) + react: 18.3.1 + react-remove-scroll-bar: 2.3.4(@types/react@18.3.3)(react@18.3.1) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) tslib: 2.6.3 - use-callback-ref: 1.3.0(@types/react@18.2.34)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.34)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.3.3)(react@18.3.1) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - react-resize-detector@7.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-resize-detector@7.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: lodash: 4.17.21 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react-select@5.8.0(@types/react@18.2.34)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-select@5.8.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: "@babel/runtime": 7.23.2 "@emotion/cache": 11.11.0 - "@emotion/react": 11.11.1(@types/react@18.2.34)(react@18.2.0) + "@emotion/react": 11.11.1(@types/react@18.3.3)(react@18.3.1) "@floating-ui/dom": 1.5.1 "@types/react-transition-group": 4.4.6 memoize-one: 6.0.0 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.34)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - "@types/react" - react-sortablejs@6.1.4(@types/sortablejs@1.15.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sortablejs@1.15.2): + react-sortablejs@6.1.4(@types/sortablejs@1.15.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sortablejs@1.15.2): dependencies: "@types/sortablejs": 1.15.8 classnames: 2.3.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) sortablejs: 1.15.2 tiny-invariant: 1.2.0 - react-style-singleton@2.2.1(@types/react@18.2.34)(react@18.2.0): + react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 - react: 18.2.0 + react: 18.3.1 tslib: 2.6.3 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: "@babel/runtime": 7.23.2 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react-universal-interface@0.6.2(react@18.2.0)(tslib@2.6.3): + react-universal-interface@0.6.2(react@18.3.1)(tslib@2.6.3): dependencies: - react: 18.2.0 + react: 18.3.1 tslib: 2.6.3 - react-use@17.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-use@17.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: "@types/js-cookie": 2.2.7 "@xobotyi/scrollbar-width": 1.9.5 @@ -32319,10 +32485,10 @@ snapshots: fast-deep-equal: 3.1.3 fast-shallow-equal: 1.0.0 js-cookie: 2.2.1 - nano-css: 5.3.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-universal-interface: 0.6.2(react@18.2.0)(tslib@2.6.3) + nano-css: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-universal-interface: 0.6.2(react@18.3.1)(tslib@2.6.3) resize-observer-polyfill: 1.5.1 screenfull: 5.2.0 set-harmonic-interval: 1.0.1 @@ -32330,7 +32496,7 @@ snapshots: ts-easing: 0.2.0 tslib: 2.6.3 - react@18.2.0: + react@18.3.1: dependencies: loose-envify: 1.4.0 @@ -32660,10 +32826,6 @@ snapshots: dependencies: glob: 9.3.5 - rimraf@5.0.5: - dependencies: - glob: 10.4.1 - rimraf@5.0.7: dependencies: glob: 10.4.1 @@ -32761,7 +32923,7 @@ snapshots: immutable: 4.3.3 source-map-js: 1.2.0 - scheduler@0.23.0: + scheduler@0.23.2: dependencies: loose-envify: 1.4.0 @@ -32936,7 +33098,12 @@ snapshots: is-plain-object: 5.0.0 slate: 0.100.0 - slate-react@0.101.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(slate@0.100.0): + slate-history@0.100.0(slate@0.103.0): + dependencies: + is-plain-object: 5.0.0 + slate: 0.103.0 + + slate-react@0.101.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate@0.100.0): dependencies: "@juggle/resize-observer": 3.4.0 "@types/is-hotkey": 0.1.10 @@ -32945,18 +33112,39 @@ snapshots: is-hotkey: 0.2.0 is-plain-object: 5.0.0 lodash: 4.17.21 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) scroll-into-view-if-needed: 3.1.0 slate: 0.100.0 tiny-invariant: 1.3.1 + slate-react@0.105.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate@0.103.0): + dependencies: + "@juggle/resize-observer": 3.4.0 + "@types/is-hotkey": 0.1.10 + "@types/lodash": 4.14.200 + direction: 1.0.4 + is-hotkey: 0.2.0 + is-plain-object: 5.0.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + scroll-into-view-if-needed: 3.1.0 + slate: 0.103.0 + tiny-invariant: 1.3.1 + slate@0.100.0: dependencies: immer: 10.0.3 is-plain-object: 5.0.0 tiny-warning: 1.0.3 + slate@0.103.0: + dependencies: + immer: 10.0.3 + is-plain-object: 5.0.0 + tiny-warning: 1.0.3 + slice-ansi@3.0.0: dependencies: ansi-styles: 4.3.0 @@ -33054,8 +33242,6 @@ snapshots: sortablejs@1.15.2: {} - source-map-js@1.0.2: {} - source-map-js@1.2.0: {} source-map-support@0.5.13: @@ -33080,8 +33266,6 @@ snapshots: dependencies: whatwg-url: 7.1.0 - sourcemap-codec@1.4.8: {} - space-separated-tokens@1.1.5: {} space-separated-tokens@2.0.2: {} @@ -33328,10 +33512,10 @@ snapshots: dependencies: inline-style-parser: 0.1.1 - styled-jsx@5.1.1(@babel/core@7.22.11)(babel-plugin-macros@3.1.0)(react@18.2.0): + styled-jsx@5.1.1(@babel/core@7.22.11)(babel-plugin-macros@3.1.0)(react@18.3.1): dependencies: client-only: 0.0.1 - react: 18.2.0 + react: 18.3.1 optionalDependencies: "@babel/core": 7.22.11 babel-plugin-macros: 3.1.0 @@ -33384,38 +33568,13 @@ snapshots: "@pkgr/utils": 2.4.2 tslib: 2.6.3 + tabbable@6.2.0: {} + tailwind-merge@1.14.0: {} - tailwind-merge@2.0.0: + tailwind-merge@2.3.0: dependencies: - "@babel/runtime": 7.23.2 - - tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)): - dependencies: - "@alloc/quick-lru": 5.2.0 - arg: 5.0.2 - chokidar: 3.5.3 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.3.1 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.19.3 - lilconfig: 2.1.0 - micromatch: 4.0.5 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.0.0 - postcss: 8.4.38 - postcss-import: 15.1.0(postcss@8.4.38) - postcss-js: 4.0.1(postcss@8.4.38) - postcss-load-config: 4.0.1(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)) - postcss-nested: 6.0.1(postcss@8.4.38) - postcss-selector-parser: 6.0.13 - resolve: 1.22.8 - sucrase: 3.34.0 - transitivePeerDependencies: - - ts-node + "@babel/runtime": 7.24.7 tailwindcss@3.4.4(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)): dependencies: @@ -33709,7 +33868,7 @@ snapshots: tslib@2.6.3: {} - tsup@6.6.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))(typescript@5.3.2): + tsup@6.6.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2))(typescript@5.3.2): dependencies: bundle-require: 4.0.1(esbuild@0.17.19) cac: 6.7.14 @@ -33719,7 +33878,7 @@ snapshots: execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 3.1.4(postcss@8.4.31)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)) + postcss-load-config: 3.1.4(postcss@8.4.38)(ts-node@10.9.2(@swc/core@1.3.99(@swc/helpers@0.5.3))(@types/node@20.14.2)(typescript@5.3.2)) resolve-from: 5.0.0 rollup: 3.28.1 source-map: 0.8.0-beta.0 @@ -33727,7 +33886,7 @@ snapshots: tree-kill: 1.2.2 optionalDependencies: "@swc/core": 1.3.99(@swc/helpers@0.5.3) - postcss: 8.4.31 + postcss: 8.4.38 typescript: 5.3.2 transitivePeerDependencies: - supports-color @@ -34053,12 +34212,6 @@ snapshots: upath@2.0.1: {} - update-browserslist-db@1.0.11(browserslist@4.21.10): - dependencies: - browserslist: 4.21.10 - escalade: 3.1.1 - picocolors: 1.0.0 - update-browserslist-db@1.0.16(browserslist@4.23.1): dependencies: browserslist: 4.23.1 @@ -34079,42 +34232,42 @@ snapshots: urlpattern-polyfill@9.0.0: {} - use-callback-ref@1.3.0(@types/react@18.2.34)(react@18.2.0): + use-callback-ref@1.3.0(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 tslib: 2.6.3 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - use-intl@2.22.1(react@18.2.0): + use-intl@2.22.1(react@18.3.1): dependencies: "@formatjs/ecma402-abstract": 1.17.0 intl-messageformat: 9.13.0 - react: 18.2.0 + react: 18.3.1 - use-isomorphic-layout-effect@1.1.2(@types/react@18.2.34)(react@18.2.0): + use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - use-resize-observer@9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + use-resize-observer@9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: "@juggle/resize-observer": 3.4.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - use-sidecar@1.1.2(@types/react@18.2.34)(react@18.2.0): + use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1): dependencies: detect-node-es: 1.1.0 - react: 18.2.0 + react: 18.3.1 tslib: 2.6.3 optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 - use-sync-external-store@1.2.0(react@18.2.0): + use-sync-external-store@1.2.0(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 util-deprecate@1.0.2: {} @@ -34226,16 +34379,6 @@ snapshots: fsevents: 2.3.3 sass: 1.77.4 - vite@5.0.2(@types/node@20.14.2)(sass@1.77.4): - dependencies: - esbuild: 0.19.5 - postcss: 8.4.38 - rollup: 4.5.0 - optionalDependencies: - "@types/node": 20.14.2 - fsevents: 2.3.3 - sass: 1.77.4 - vite@5.2.13(@types/node@20.14.2)(sass@1.77.4): dependencies: esbuild: 0.20.2 @@ -34566,12 +34709,12 @@ snapshots: zod@3.23.8: {} - zustand@4.5.2(@types/react@18.2.34)(immer@10.0.3)(react@18.2.0): + zustand@4.5.2(@types/react@18.3.3)(immer@10.0.3)(react@18.3.1): dependencies: - use-sync-external-store: 1.2.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.3.1) optionalDependencies: - "@types/react": 18.2.34 + "@types/react": 18.3.3 immer: 10.0.3 - react: 18.2.0 + react: 18.3.1 zwitch@2.0.4: {}