diff --git a/apps/api/src/controllers/dispatch/911-calls/calls-911-controller.ts b/apps/api/src/controllers/dispatch/911-calls/calls-911-controller.ts index a037df44d..178b31842 100644 --- a/apps/api/src/controllers/dispatch/911-calls/calls-911-controller.ts +++ b/apps/api/src/controllers/dispatch/911-calls/calls-911-controller.ts @@ -191,7 +191,7 @@ export class Calls911Controller { data: { location: data.location ?? undefined, postal: data.postal ?? undefined, - description: data.description ?? undefined, + description: data.descriptionData ? null : data.description, descriptionData: data.descriptionData ?? undefined, name: data.name ?? undefined, userId: user.id || undefined, @@ -312,7 +312,7 @@ export class Calls911Controller { data: { location: data.location, postal: data.postal, - description: data.description, + description: data.descriptionData ? null : data.description, name: data.name, userId: user.id, positionId: shouldRemovePosition ? null : position?.id ?? call.positionId, diff --git a/apps/client/package.json b/apps/client/package.json index 641edeee5..5a8f7756a 100644 --- a/apps/client/package.json +++ b/apps/client/package.json @@ -46,7 +46,7 @@ "@types/is-hotkey": "^0.1.8", "@types/leaflet": "^1.9.7", "@types/nprogress": "^0.2.2", - "@types/react": "^18.2.29", + "@types/react": "^18.2.31", "@types/react-dom": "^18.2.14", "@types/sortablejs": "^1.15.4", "@types/uuid": "^9.0.6", @@ -85,9 +85,9 @@ "remark-external-links": "^9.0.1", "remark-gfm": "^4.0.0", "remark-github": "^12.0.0", - "slate": "^0.94.1", - "slate-history": "^0.93.0", - "slate-react": "^0.99.0", + "slate": "^0.100.0", + "slate-history": "^0.100.0", + "slate-react": "^0.100.0", "socket.io-client": "^4.7.2", "sortablejs": "^1.15.0", "storage-factory": "^0.2.1", diff --git a/apps/client/src/components/editor/editor.tsx b/apps/client/src/components/editor/editor.tsx index fb092575a..c8637ea66 100644 --- a/apps/client/src/components/editor/editor.tsx +++ b/apps/client/src/components/editor/editor.tsx @@ -115,6 +115,8 @@ export function Editor(props: EditorProps) { editor.onChange(); }, [props.value]); // eslint-disable-line react-hooks/exhaustive-deps + console.log({ props }); + return (
{ - const isAstChange = editor.operations.some( - (operation) => operation.type !== "set_selection", - ); - - if (isAstChange) { - handleChange(value); - } + onValueChange={(value) => { + handleChange(value); }} > {props.isReadonly ? null : } diff --git a/apps/client/src/components/editor/elements/checklist-item.tsx b/apps/client/src/components/editor/elements/checklist-item.tsx index bbf6eb7f3..75d8d41a2 100644 --- a/apps/client/src/components/editor/elements/checklist-item.tsx +++ b/apps/client/src/components/editor/elements/checklist-item.tsx @@ -1,13 +1,13 @@ import { classNames } from "lib/classNames"; import { Transforms } from "slate"; -import { ReactEditor, useReadOnly, useSlateStatic, type RenderElementProps } from "slate-react"; +import { ReactEditor, useReadOnly, type RenderElementProps, useSlate } from "slate-react"; import type { CheckListItemElement as ICheckListItemElement } from "@snailycad/utils/editor"; import { CheckboxField } from "@snailycad/ui"; type Props = RenderElementProps & { element: ICheckListItemElement }; export function CheckListItemElement({ attributes, children, element }: Props) { - const editor = useSlateStatic(); + const editor = useSlate(); const readOnly = useReadOnly(); function handleSelectionChange(isSelected: boolean) { diff --git a/apps/client/src/components/editor/toolbar.tsx b/apps/client/src/components/editor/toolbar.tsx index d04ca5b6c..9310151bd 100644 --- a/apps/client/src/components/editor/toolbar.tsx +++ b/apps/client/src/components/editor/toolbar.tsx @@ -1,4 +1,3 @@ -import * as RToolbar from "@radix-ui/react-toolbar"; import { Fonts, ListCheck, @@ -25,12 +24,8 @@ import type { SlateElements, Text } from "@snailycad/utils/editor"; export function Toolbar() { return ( - - +
+
} /> } /> } /> @@ -40,20 +35,16 @@ export function Toolbar() { /> } /> } /> - - - +
+ +
} /> } /> } /> } /> } /> - - +
+
); } @@ -67,17 +58,15 @@ function BlockButton({ format, icon }: BlockButtonProps) { const isActive = isBlockActive(editor, format); return ( - - - + ); } @@ -92,16 +81,14 @@ function MarkButton({ format, icon, value = true }: MarkButtonProps) { const isActive = isMarkActive(editor, format); return ( - - - + ); } diff --git a/apps/client/src/components/editor/toolbar/select-color-popover.tsx b/apps/client/src/components/editor/toolbar/select-color-popover.tsx index 3bda07eec..33b211fc7 100644 --- a/apps/client/src/components/editor/toolbar/select-color-popover.tsx +++ b/apps/client/src/components/editor/toolbar/select-color-popover.tsx @@ -1,7 +1,6 @@ import * as React from "react"; import * as Popover from "@radix-ui/react-popover"; -import { ToolbarToggleItem } from "@radix-ui/react-toolbar"; -import { Button } from "@snailycad/ui"; +import { Button, buttonVariants } from "@snailycad/ui"; import { classNames } from "lib/classNames"; import { isMarkActive, toggleMark } from "lib/editor/utils"; import type { Text } from "slate"; @@ -29,20 +28,14 @@ export function SelectColorPopover({ icon, format }: SelectColorPopoverProps) { return ( - - - - - - + + {icon} { }); test("Should correctly calculate age", () => { - expect(calculateAge(DOB_2)).toMatchInlineSnapshot('"69"'); + expect(calculateAge(DOB_2)).toMatchInlineSnapshot('"70"'); }); }); diff --git a/package.json b/package.json index a5de8cf96..839474282 100644 --- a/package.json +++ b/package.json @@ -21,10 +21,10 @@ "@casperiv/eslint-config": "8.0.0", "@casperiv/eslint-config-next": "8.0.0", "@casperiv/eslint-config-react": "8.0.0", - "eslint": "8.51.0", + "eslint": "8.52.0", "eslint-plugin-deprecation": "^2.0.0", - "lerna": "^7.3.1", - "lint-staged": "^15.0.1" + "lerna": "^7.4.1", + "lint-staged": "^15.0.2" }, "lint-staged": { "*.{js,jsx,json,ts,tsx,md,mdx,css,html,yml,yaml,scss,sass}\"": "prettier --write --ignore-path .prettierignore" @@ -33,14 +33,14 @@ "node": ">=18.16.0" }, "dependencies": { - "@faker-js/faker": "^8.1.0", + "@faker-js/faker": "^8.2.0", "colorette": "2.0.20", - "concurrently": "^8.2.1", + "concurrently": "^8.2.2", "copy": "^0.3.2", "dotenv": "^16.3.1", "husky": "^8.0.3", "prettier": "3.0.3", "tsup": "6.6.2", - "turbo": "1.10.15" + "turbo": "1.10.16" } } diff --git a/packages/ui/package.json b/packages/ui/package.json index b0dcc45ef..1a008ec5c 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -20,20 +20,20 @@ }, "devDependencies": { "@storybook/addon-a11y": "^7.5.1", - "@storybook/addon-essentials": "^7.5.0", - "@storybook/addon-interactions": "^7.5.0", - "@storybook/addon-links": "^7.5.0", + "@storybook/addon-essentials": "^7.5.1", + "@storybook/addon-interactions": "^7.5.1", + "@storybook/addon-links": "^7.5.1", "@storybook/addon-themes": "^7.5.1", - "@storybook/blocks": "^7.5.0", + "@storybook/blocks": "^7.5.1", "@storybook/jest": "^0.2.3", - "@storybook/react": "^7.5.0", - "@storybook/react-vite": "^7.5.0", + "@storybook/react": "^7.5.1", + "@storybook/react-vite": "^7.5.1", "@storybook/test-runner": "^0.13.0", "@storybook/testing-library": "^0.2.2", "autoprefixer": "^10.4.16", "postcss": "^8.4.31", "prop-types": "^15.8.1", - "storybook": "^7.5.0", + "storybook": "^7.5.1", "tailwindcss": "^3.3.3", "tsup": "6.6.2", "typescript": "^5.2.2", @@ -103,7 +103,7 @@ "@snailycad/config": "^1.75.1", "@snailycad/types": "workspace:*", "@snailycad/utils": "^1.75.1", - "@types/react": "^18.2.29", + "@types/react": "^18.2.31", "@types/react-dom": "^18.2.14", "class-variance-authority": "^0.7.0", "formik": "^2.4.5", diff --git a/packages/utils/package.json b/packages/utils/package.json index 0d2fce1ea..3fe8512be 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -75,11 +75,11 @@ "test": "pnpm vitest run" }, "devDependencies": { - "@types/node": "^20.8.0", + "@types/node": "^20.8.7", "c8": "^8.0.1", "tsup": "6.6.2", "typescript": "^5.2.2", - "vite": "^4.4.9", + "vite": "^4.5.0", "vitest": "^0.34.6" }, "tsup": { @@ -101,10 +101,10 @@ "dependencies": { "@snailycad/types": "^1.75.1", "date-fns": "^2.30.0", - "slate": "0.94.1", - "slate-history": "^0.93.0", - "slate-react": "^0.99.0", + "slate": "0.100.0", + "slate-history": "^0.100.0", + "slate-react": "^0.100.0", "tslib": "^2.6.2", - "undici": "5.25.3" + "undici": "5.26.4" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e185f9a61..a0dc766e3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,14 +8,14 @@ importers: .: dependencies: "@faker-js/faker": - specifier: ^8.1.0 - version: 8.1.0 + specifier: ^8.2.0 + version: 8.2.0 colorette: specifier: 2.0.20 version: 2.0.20 concurrently: - specifier: ^8.2.1 - version: 8.2.1 + specifier: ^8.2.2 + version: 8.2.2 copy: specifier: ^0.3.2 version: 0.3.2 @@ -32,30 +32,30 @@ importers: specifier: 6.6.2 version: 6.6.2(@swc/core@1.3.82)(postcss@8.4.31)(typescript@5.2.2) turbo: - specifier: 1.10.15 - version: 1.10.15 + specifier: 1.10.16 + version: 1.10.16 devDependencies: "@casperiv/eslint-config": specifier: 8.0.0 - version: 8.0.0(eslint@8.51.0)(prettier@3.0.3)(typescript@5.2.2) + version: 8.0.0(eslint@8.52.0)(prettier@3.0.3)(typescript@5.2.2) "@casperiv/eslint-config-next": specifier: 8.0.0 - version: 8.0.0(eslint@8.51.0)(next@13.5.6)(typescript@5.2.2) + version: 8.0.0(eslint@8.52.0)(next@13.5.6)(typescript@5.2.2) "@casperiv/eslint-config-react": specifier: 8.0.0 - version: 8.0.0(eslint@8.51.0) + version: 8.0.0(eslint@8.52.0) eslint: - specifier: 8.51.0 - version: 8.51.0 + specifier: 8.52.0 + version: 8.52.0 eslint-plugin-deprecation: specifier: ^2.0.0 - version: 2.0.0(eslint@8.51.0)(typescript@5.2.2) + version: 2.0.0(eslint@8.52.0)(typescript@5.2.2) lerna: - specifier: ^7.3.1 - version: 7.3.1 + specifier: ^7.4.1 + version: 7.4.1 lint-staged: - specifier: ^15.0.1 - version: 15.0.1 + specifier: ^15.0.2 + version: 15.0.2 apps/api: dependencies: @@ -293,7 +293,7 @@ importers: dependencies: "@casperiv/use-socket.io": specifier: 6.0.1 - version: 6.0.1(@types/react@18.2.29)(postcss@8.4.31)(react@18.2.0)(socket.io-client@4.7.2)(socket.io@4.7.2)(typescript@5.2.2) + version: 6.0.1(@types/react@18.2.31)(postcss@8.4.31)(react@18.2.0)(socket.io-client@4.7.2)(socket.io@4.7.2)(typescript@5.2.2) "@casperiv/useful": specifier: ^3.0.0 version: 3.0.0(react-dom@18.2.0)(react@18.2.0) @@ -302,16 +302,16 @@ importers: version: 1.7.17(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-popover": specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-tabs": specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-toolbar": specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-tooltip": specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@react-aria/label": specifier: ^3.7.2 version: 3.7.2(react@18.2.0) @@ -376,8 +376,8 @@ importers: specifier: ^0.2.2 version: 0.2.2 "@types/react": - specifier: ^18.2.29 - version: 18.2.29 + specifier: ^18.2.31 + version: 18.2.31 "@types/react-dom": specifier: ^18.2.14 version: 18.2.14 @@ -404,7 +404,7 @@ importers: version: 2.30.0 eslint-config-next: specifier: ^13.5.6 - version: 13.5.6(eslint@8.51.0)(typescript@5.2.2) + version: 13.5.6(eslint@8.52.0)(typescript@5.2.2) formik: specifier: ^2.4.5 version: 2.4.5(react@18.2.0) @@ -470,10 +470,10 @@ importers: version: 4.2.1(leaflet@1.9.4)(react-dom@18.2.0)(react@18.2.0) react-markdown: specifier: ^9.0.0 - version: 9.0.0(@types/react@18.2.29)(react@18.2.0) + version: 9.0.0(@types/react@18.2.31)(react@18.2.0) react-select: specifier: ^5.7.7 - version: 5.7.7(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 5.7.7(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) react-sortablejs: specifier: ^6.1.4 version: 6.1.4(@types/sortablejs@1.15.4)(react-dom@18.2.0)(react@18.2.0)(sortablejs@1.15.0) @@ -493,14 +493,14 @@ importers: specifier: ^12.0.0 version: 12.0.0 slate: - specifier: ^0.94.1 - version: 0.94.1 + specifier: ^0.100.0 + version: 0.100.0 slate-history: - specifier: ^0.93.0 - version: 0.93.0(slate@0.94.1) + specifier: ^0.100.0 + version: 0.100.0(slate@0.100.0) slate-react: - specifier: ^0.99.0 - version: 0.99.0(react-dom@18.2.0)(react@18.2.0)(slate@0.94.1) + specifier: ^0.100.0 + version: 0.100.0(react-dom@18.2.0)(react@18.2.0)(slate@0.100.0) socket.io-client: specifier: ^4.7.2 version: 4.7.2 @@ -521,7 +521,7 @@ importers: version: 3.22.4 zustand: specifier: ^4.4.3 - version: 4.4.3(@types/react@18.2.29)(react@18.2.0) + version: 4.4.3(@types/react@18.2.31)(react@18.2.0) devDependencies: dotenv: specifier: ^16.3.1 @@ -568,7 +568,7 @@ importers: version: 5.2.2 vite: specifier: ^4.4.9 - version: 4.4.9(@types/node@20.8.0) + version: 4.4.9 packages/config: devDependencies: @@ -580,7 +580,7 @@ importers: version: 5.2.2 vite: specifier: ^4.4.9 - version: 4.4.9(@types/node@20.8.0) + version: 4.4.9 vitest: specifier: ^0.34.6 version: 0.34.6(sass@1.69.4) @@ -595,7 +595,7 @@ importers: version: 5.2.2 vite: specifier: ^4.4.9 - version: 4.4.9(@types/node@20.8.0) + version: 4.4.9 vitest: specifier: ^0.34.6 version: 0.34.6(sass@1.69.4) @@ -645,19 +645,19 @@ importers: version: 3.5.0 "@radix-ui/react-accordion": specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-context-menu": specifier: ^2.1.5 - version: 2.1.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 2.1.5(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-dropdown-menu": specifier: ^2.0.6 - version: 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-hover-card": specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@radix-ui/react-tabs": specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@react-aria/breadcrumbs": specifier: ^3.5.7 version: 3.5.7(react@18.2.0) @@ -773,8 +773,8 @@ importers: specifier: ^1.75.1 version: link:../utils "@types/react": - specifier: ^18.2.29 - version: 18.2.29 + specifier: ^18.2.31 + version: 18.2.31 "@types/react-dom": specifier: ^18.2.14 version: 18.2.14 @@ -804,7 +804,7 @@ importers: version: 1.10.3(react@18.2.0) react-dnd: specifier: 16.0.1 - version: 16.0.1(@types/react@18.2.29)(react@18.2.0) + version: 16.0.1(@types/react@18.2.31)(react@18.2.0) react-dnd-html5-backend: specifier: 16.0.1 version: 16.0.1 @@ -829,31 +829,31 @@ importers: devDependencies: "@storybook/addon-a11y": specifier: ^7.5.1 - version: 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@storybook/addon-essentials": - specifier: ^7.5.0 - version: 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + specifier: ^7.5.1 + version: 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@storybook/addon-interactions": - specifier: ^7.5.0 - version: 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + specifier: ^7.5.1 + version: 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@storybook/addon-links": - specifier: ^7.5.0 - version: 7.5.0(react-dom@18.2.0)(react@18.2.0) + specifier: ^7.5.1 + version: 7.5.1(react-dom@18.2.0)(react@18.2.0) "@storybook/addon-themes": specifier: ^7.5.1 - version: 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + version: 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@storybook/blocks": - specifier: ^7.5.0 - version: 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + specifier: ^7.5.1 + version: 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@storybook/jest": specifier: ^0.2.3 version: 0.2.3(jest@28.1.3) "@storybook/react": - specifier: ^7.5.0 - version: 7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) + specifier: ^7.5.1 + version: 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) "@storybook/react-vite": - specifier: ^7.5.0 - version: 7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.5.0) + specifier: ^7.5.1 + version: 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.5.0) "@storybook/test-runner": specifier: ^0.13.0 version: 0.13.0 @@ -870,8 +870,8 @@ importers: specifier: ^15.8.1 version: 15.8.1 storybook: - specifier: ^7.5.0 - version: 7.5.0 + specifier: ^7.5.1 + version: 7.5.1 tailwindcss: specifier: ^3.3.3 version: 3.3.3 @@ -894,24 +894,24 @@ importers: specifier: ^2.30.0 version: 2.30.0 slate: - specifier: 0.94.1 - version: 0.94.1 + specifier: 0.100.0 + version: 0.100.0 slate-history: - specifier: ^0.93.0 - version: 0.93.0(slate@0.94.1) + specifier: ^0.100.0 + version: 0.100.0(slate@0.100.0) slate-react: - specifier: ^0.99.0 - version: 0.99.0(react-dom@18.2.0)(react@18.2.0)(slate@0.94.1) + specifier: ^0.100.0 + version: 0.100.0(react-dom@18.2.0)(react@18.2.0)(slate@0.100.0) tslib: specifier: ^2.6.2 version: 2.6.2 undici: - specifier: 5.25.3 - version: 5.25.3 + specifier: 5.26.4 + version: 5.26.4 devDependencies: "@types/node": - specifier: ^20.8.0 - version: 20.8.0 + specifier: ^20.8.7 + version: 20.8.7 c8: specifier: ^8.0.1 version: 8.0.1 @@ -922,8 +922,8 @@ importers: specifier: ^5.2.2 version: 5.2.2 vite: - specifier: ^4.4.9 - version: 4.4.9(@types/node@20.8.0) + specifier: ^4.5.0 + version: 4.5.0(@types/node@20.8.7) vitest: specifier: ^0.34.6 version: 0.34.6(sass@1.69.4) @@ -2644,7 +2644,7 @@ packages: } dev: true - /@casperiv/eslint-config-next@8.0.0(eslint@8.51.0)(next@13.5.6)(typescript@5.2.2): + /@casperiv/eslint-config-next@8.0.0(eslint@8.52.0)(next@13.5.6)(typescript@5.2.2): resolution: { integrity: sha512-sCr6MHhIg81DlcvGqzE24qYEUddeFWSpSTUcOJM6tUiUQlBIv0en0YcNzcIbd8Y/TJ1du6GOazXANJxxD1XWdw==, @@ -2653,8 +2653,8 @@ packages: eslint: ">=8" next: ">=13" dependencies: - eslint: 8.51.0 - eslint-config-next: 13.5.6(eslint@8.51.0)(typescript@5.2.2) + eslint: 8.52.0 + eslint-config-next: 13.5.6(eslint@8.52.0)(typescript@5.2.2) next: 13.5.6(react-dom@18.2.0)(react@18.2.0)(sass@1.69.4) transitivePeerDependencies: - eslint-import-resolver-webpack @@ -2662,7 +2662,7 @@ packages: - typescript dev: true - /@casperiv/eslint-config-react@8.0.0(eslint@8.51.0): + /@casperiv/eslint-config-react@8.0.0(eslint@8.52.0): resolution: { integrity: sha512-UJekJTbpKKJRdwdqpjjYKH2QXdCbAbn07Hzmk2hWAcxwFrN0JyLp66ICe22rkFxg1HiyWXrZfsTrBRwUZclkyw==, @@ -2670,13 +2670,13 @@ packages: peerDependencies: eslint: ">=8" dependencies: - eslint: 8.51.0 - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.51.0) - eslint-plugin-react: 7.33.2(eslint@8.51.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.51.0) + eslint: 8.52.0 + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0) + eslint-plugin-react: 7.33.2(eslint@8.52.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.52.0) dev: true - /@casperiv/eslint-config@8.0.0(eslint@8.51.0)(prettier@3.0.3)(typescript@5.2.2): + /@casperiv/eslint-config@8.0.0(eslint@8.52.0)(prettier@3.0.3)(typescript@5.2.2): resolution: { integrity: sha512-SQpUAvR/u8iweOjuP/76a7eNSdAXC+rmPdVOfWKiRIoPFRHlOEN6rKFjOJmQAPsUUj6SUjQ0eC07Umqai9uEdQ==, @@ -2685,14 +2685,14 @@ packages: eslint: ">=8" prettier: ">=3.0.1" dependencies: - "@typescript-eslint/eslint-plugin": 6.4.1(@typescript-eslint/parser@6.4.1)(eslint@8.51.0)(typescript@5.2.2) - "@typescript-eslint/parser": 6.4.1(eslint@8.51.0)(typescript@5.2.2) - eslint: 8.51.0 - eslint-config-prettier: 9.0.0(eslint@8.51.0) + "@typescript-eslint/eslint-plugin": 6.4.1(@typescript-eslint/parser@6.4.1)(eslint@8.52.0)(typescript@5.2.2) + "@typescript-eslint/parser": 6.4.1(eslint@8.52.0)(typescript@5.2.2) + eslint: 8.52.0 + eslint-config-prettier: 9.0.0(eslint@8.52.0) eslint-plugin-json: 3.1.0 - eslint-plugin-prettier: 5.0.0(eslint-config-prettier@9.0.0)(eslint@8.51.0)(prettier@3.0.3) - eslint-plugin-promise: 6.1.1(eslint@8.51.0) - eslint-plugin-unicorn: 48.0.1(eslint@8.51.0) + eslint-plugin-prettier: 5.0.0(eslint-config-prettier@9.0.0)(eslint@8.52.0)(prettier@3.0.3) + eslint-plugin-promise: 6.1.1(eslint@8.52.0) + eslint-plugin-unicorn: 48.0.1(eslint@8.52.0) prettier: 3.0.3 transitivePeerDependencies: - "@types/eslint" @@ -2700,7 +2700,7 @@ packages: - typescript dev: true - /@casperiv/use-socket.io@6.0.1(@types/react@18.2.29)(postcss@8.4.31)(react@18.2.0)(socket.io-client@4.7.2)(socket.io@4.7.2)(typescript@5.2.2): + /@casperiv/use-socket.io@6.0.1(@types/react@18.2.31)(postcss@8.4.31)(react@18.2.0)(socket.io-client@4.7.2)(socket.io@4.7.2)(typescript@5.2.2): resolution: { integrity: sha512-2MEuOYjHR+BOSmxtqzNQcQTeJLRke7nkeJBPVJjmPahbydeX1jyp2sPd6a0Cn/SD1D7fuJRy9XccvRibcRmakQ==, @@ -2715,7 +2715,7 @@ packages: socket.io: 4.7.2 socket.io-client: 4.7.2 tsup: 7.2.0(postcss@8.4.31)(typescript@5.2.2) - zustand: 4.4.3(@types/react@18.2.29)(react@18.2.0) + zustand: 4.4.3(@types/react@18.2.31)(react@18.2.0) transitivePeerDependencies: - "@swc/core" - "@types/react" @@ -2861,7 +2861,7 @@ packages: } dev: false - /@emotion/react@11.11.1(@types/react@18.2.29)(react@18.2.0): + /@emotion/react@11.11.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==, @@ -2880,7 +2880,7 @@ packages: "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) "@emotion/utils": 1.2.1 "@emotion/weak-memoize": 0.3.1 - "@types/react": 18.2.29 + "@types/react": 18.2.31 hoist-non-react-statics: 3.3.2 react: 18.2.0 dev: false @@ -3420,7 +3420,7 @@ packages: requiresBuild: true optional: true - /@eslint-community/eslint-utils@4.4.0(eslint@8.51.0): + /@eslint-community/eslint-utils@4.4.0(eslint@8.52.0): resolution: { integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, @@ -3429,7 +3429,7 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: - eslint: 8.51.0 + eslint: 8.52.0 eslint-visitor-keys: 3.4.3 /@eslint-community/regexpp@4.7.0: @@ -3458,17 +3458,17 @@ packages: transitivePeerDependencies: - supports-color - /@eslint/js@8.51.0: + /@eslint/js@8.52.0: resolution: { - integrity: sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==, + integrity: sha512-mjZVbpaeMZludF2fsWLD0Z9gCref1Tk4i9+wddjRvpUNqqcndPkBD09N/Mapey0b3jaXbLm2kICwFv2E64QinA==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - /@faker-js/faker@8.1.0: + /@faker-js/faker@8.2.0: resolution: { - integrity: sha512-38DT60rumHfBYynif3lmtxMqMqmsOQIxQgEuPZxCk2yUYN0eqWpTACgxi0VpidvsJB8CRxCpvP7B3anK85FjtQ==, + integrity: sha512-VacmzZqVxdWdf9y64lDOMZNDMM/FQdtM9IsaOPKOm2suYwEatb8VkdHqOzXcDnZbk7YDE2BmsJmy/2Hmkn563g==, } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: ">=6.14.13" } dev: false @@ -3662,14 +3662,14 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@humanwhocodes/config-array@0.11.11: + /@humanwhocodes/config-array@0.11.13: resolution: { - integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==, + integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==, } engines: { node: ">=10.10.0" } dependencies: - "@humanwhocodes/object-schema": 1.2.1 + "@humanwhocodes/object-schema": 2.0.1 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: @@ -3682,10 +3682,10 @@ packages: } engines: { node: ">=12.22" } - /@humanwhocodes/object-schema@1.2.1: + /@humanwhocodes/object-schema@2.0.1: resolution: { - integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, + integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==, } /@hutson/parse-repository-url@3.0.2: @@ -3777,7 +3777,7 @@ packages: engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: "@jest/types": 28.1.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -3792,7 +3792,7 @@ packages: engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: "@jest/types": 29.6.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 @@ -3816,14 +3816,14 @@ packages: "@jest/test-result": 28.1.3 "@jest/transform": 28.1.3 "@jest/types": 28.1.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.8.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 28.1.3 - jest-config: 28.1.3(@types/node@20.8.6) + jest-config: 28.1.3(@types/node@20.8.7) jest-haste-map: 28.1.3 jest-message-util: 28.1.3 jest-regex-util: 28.0.2 @@ -3864,7 +3864,7 @@ packages: dependencies: "@jest/fake-timers": 28.1.3 "@jest/types": 28.1.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 jest-mock: 28.1.3 dev: true @@ -3900,7 +3900,7 @@ packages: dependencies: "@jest/types": 28.1.3 "@sinonjs/fake-timers": 9.1.2 - "@types/node": 20.8.6 + "@types/node": 20.8.7 jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 @@ -3938,7 +3938,7 @@ packages: "@jest/transform": 28.1.3 "@jest/types": 28.1.3 "@jridgewell/trace-mapping": 0.3.19 - "@types/node": 20.8.6 + "@types/node": 20.8.7 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -4075,7 +4075,7 @@ packages: graceful-fs: 4.2.11 jest-haste-map: 29.6.4 jest-regex-util: 29.6.3 - jest-util: 29.6.3 + jest-util: 29.7.0 micromatch: 4.0.5 pirates: 4.0.6 slash: 3.0.0 @@ -4093,7 +4093,7 @@ packages: dependencies: "@types/istanbul-lib-coverage": 2.0.4 "@types/istanbul-reports": 3.0.1 - "@types/node": 20.8.6 + "@types/node": 20.8.7 "@types/yargs": 16.0.5 chalk: 4.1.2 dev: true @@ -4108,7 +4108,7 @@ packages: "@jest/schemas": 28.1.3 "@types/istanbul-lib-coverage": 2.0.4 "@types/istanbul-reports": 3.0.1 - "@types/node": 20.8.6 + "@types/node": 20.8.7 "@types/yargs": 17.0.24 chalk: 4.1.2 dev: true @@ -4123,7 +4123,7 @@ packages: "@jest/schemas": 29.6.3 "@types/istanbul-lib-coverage": 2.0.4 "@types/istanbul-reports": 3.0.1 - "@types/node": 20.8.6 + "@types/node": 20.8.7 "@types/yargs": 17.0.24 chalk: 4.1.2 dev: true @@ -4204,10 +4204,10 @@ packages: integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==, } - /@lerna/child-process@7.3.1: + /@lerna/child-process@7.4.1: resolution: { - integrity: sha512-9neRI51jOhyIGT3/xKUQZftzg78ZY5Ya8iBCmVQYWwo8rLiMqUqcgwIwFHFFYyY41Sb4/HXatQ0iiuTTB/vr8A==, + integrity: sha512-Bx1cRCZcVcWoz+atDQc4CSVzGuEgGJPOpIAXjQbBEA2cX5nqIBWdbye8eHu31En/F03aH9BhpNEJghs6wy4iTg==, } engines: { node: ">=16.0.0" } dependencies: @@ -4216,14 +4216,14 @@ packages: strong-log-transformer: 2.1.0 dev: true - /@lerna/create@7.3.1(typescript@5.2.2): + /@lerna/create@7.4.1(typescript@5.2.2): resolution: { - integrity: sha512-+gHt9rzWYaC0pxE/xMC8hQaLXJKW24rWlWJ7Vq6gETsl6D5v3rSy2VIlvoDE9WsvROnMSoXw2PZY371X79hNBw==, + integrity: sha512-zPO9GyWceRimtMD+j+aQ8xJgNPYn/Q/SzHf4wYN+4Rj5nrFKMyX+Et7FbWgUNpj0dRgyCCKBDYmTB7xQVVq4gQ==, } engines: { node: ">=16.0.0" } dependencies: - "@lerna/child-process": 7.3.1 + "@lerna/child-process": 7.4.1 "@npmcli/run-script": 6.0.2 "@nx/devkit": 16.7.4(nx@16.7.4) "@octokit/plugin-enterprise-rest": 6.0.1 @@ -4328,7 +4328,7 @@ packages: react: ">=16" dependencies: "@types/mdx": 2.0.7 - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 dev: true @@ -5330,7 +5330,7 @@ packages: dependencies: "@babel/runtime": 7.22.11 - /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==, @@ -5348,21 +5348,21 @@ packages: 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.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-collapsible": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==, @@ -5379,13 +5379,13 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==, @@ -5403,20 +5403,20 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==, @@ -5433,16 +5433,16 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==, @@ -5455,10 +5455,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-R5XaDj06Xul1KGb+WP8qiOh7tKJNz2durpLBXAGZjSVtctcRFCuEvy2gtMwRJGePwQQE5nV77gs4FwRi8T+r2g==, @@ -5476,18 +5476,18 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-context@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-context@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==, @@ -5500,10 +5500,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-direction@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-direction@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==, @@ -5516,10 +5516,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==, @@ -5537,17 +5537,17 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==, @@ -5565,17 +5565,17 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==, @@ -5593,19 +5593,19 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-menu": 2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==, @@ -5618,10 +5618,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==, @@ -5638,16 +5638,16 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==, @@ -5664,16 +5664,16 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-OcUN2FU0YpmajD/qkph3XzMcK/NmSk9hGWnjV68p6QiZMgILugusgQwnLSDs3oFSJYGKf3Y49zgFedhGh04k9A==, @@ -5691,21 +5691,21 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-id@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-id@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==, @@ -5718,11 +5718,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==, @@ -5740,30 +5740,30 @@ packages: 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.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@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.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@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.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 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.29)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.31)(react@18.2.0) dev: false - /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==, @@ -5781,27 +5781,27 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-focus-scope": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 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.29)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.31)(react@18.2.0) dev: false - /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==, @@ -5819,22 +5819,22 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@floating-ui/react-dom": 2.0.1(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.31)(react@18.2.0) "@radix-ui/rect": 1.0.1 - "@types/react": 18.2.29 + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==, @@ -5852,22 +5852,22 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@floating-ui/react-dom": 2.0.1(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.29)(react@18.2.0) + "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.31)(react@18.2.0) "@radix-ui/rect": 1.0.1 - "@types/react": 18.2.29 + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==, @@ -5884,14 +5884,14 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true - /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==, @@ -5908,14 +5908,14 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==, @@ -5932,15 +5932,15 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==, @@ -5957,13 +5957,13 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 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.29)(react-dom@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.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==, @@ -5981,20 +5981,20 @@ packages: 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.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==, @@ -6013,32 +6013,32 @@ packages: "@babel/runtime": 7.22.11 "@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.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-popper": 1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-focus-scope": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-popper": 1.1.2(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 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.29)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.31)(react@18.2.0) dev: true - /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==, @@ -6055,13 +6055,13 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-slot@1.0.2(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-slot@1.0.2(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==, @@ -6074,11 +6074,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==, @@ -6096,20 +6096,20 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@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.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@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.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@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.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==, @@ -6127,18 +6127,18 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@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.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toggle": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@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.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-toggle": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==, @@ -6156,14 +6156,14 @@ packages: 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.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==, @@ -6181,18 +6181,18 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@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.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-separator": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@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.29)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@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.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-separator": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@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.31)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==, @@ -6210,24 +6210,24 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.5(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-popper": 1.1.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-portal": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-presence": 1.0.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==, @@ -6240,10 +6240,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==, @@ -6256,11 +6256,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==, @@ -6273,11 +6273,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==, @@ -6290,10 +6290,10 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==, @@ -6306,11 +6306,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 dev: true - /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==, @@ -6324,10 +6324,10 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@radix-ui/rect": 1.0.1 - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-use-size@1.0.1(@types/react@18.2.29)(react@18.2.0): + /@radix-ui/react-use-size@1.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==, @@ -6340,11 +6340,11 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.29)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.31)(react@18.2.0) + "@types/react": 18.2.31 react: 18.2.0 - /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==, @@ -6361,8 +6361,8 @@ packages: optional: true dependencies: "@babel/runtime": 7.22.11 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@types/react": 18.2.29 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@types/react": 18.2.31 "@types/react-dom": 18.2.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -8004,7 +8004,7 @@ packages: } dev: false - /@storybook/addon-a11y@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-a11y@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-BzmSIhgqR+WSS5gqSOyzFACs20Nv0Wk9b4lpUWw5zEqZkXy1PFAUyRQ65kD9Tdjc1O2KL2Zi1h/gi0O6dWldMg==, @@ -8021,7 +8021,7 @@ packages: "@storybook/addon-highlight": 7.5.1 "@storybook/channels": 7.5.1 "@storybook/client-logger": 7.5.1 - "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@storybook/core-events": 7.5.1 "@storybook/global": 5.0.0 "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) @@ -8038,10 +8038,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-actions@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-actions@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-eeHIFpZXGyhkfmrbHRf3rndL+ppFqlKTgN74y+UfFaAWNUhV3caXxRbHV3BbcPSLkRAsNShBH9hTNTlUAHSVjA==, + integrity: sha512-GieD3ru6EslKvwol1cE4lvszQCLB/AkQdnLofnqy1nnYso+hRxmPAw9/O+pWfpUBFdjXsQ7GX09+wEUpOJzepw==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8052,14 +8052,14 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.1 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.0 - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.1 + "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.1 dequal: 2.0.3 lodash: 4.17.21 polished: 4.2.2 @@ -8075,10 +8075,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-backgrounds@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-backgrounds@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-Yu/eFHZIfyAhK28GKKcIBwj/9+hRem8pSdI3N0FJuOhErmaE0zg6VDUBzkgLa/Fn9SwC5PNyAeLAtxssg1KSNg==, + integrity: sha512-XZoyJw/WoUlVvQHPTbSAZjKy2SEUjaSmAWgcRync25vp+q0obthjx6UnZHEUuH8Ud07HA3FYzlFtMicH5y/OIQ==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8089,14 +8089,14 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.1 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.0 - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.1 + "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.1 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -8106,10 +8106,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-controls@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-controls@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-X56Pd+0GH1A8ddVsziJQaJ8qCaxsWK0aLCKH5li9GLtnyIGHvd5+KvvfYEbjTkeJv3d9J7X0D4uTAH1/dsmI8w==, + integrity: sha512-Xag1e7TZo04LjUenfobkShpKMxTtwa4xM4bXQA8LjaAGZQ7jipbQ4PE73a17K59S2vqq89VAhkuMJWiyaOFqpw==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8120,16 +8120,16 @@ packages: react-dom: optional: true dependencies: - "@storybook/blocks": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-common": 7.5.0 - "@storybook/core-events": 7.5.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/node-logger": 7.5.0 - "@storybook/preview-api": 7.5.0 - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 + "@storybook/blocks": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-common": 7.5.1 + "@storybook/core-events": 7.5.1 + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/node-logger": 7.5.1 + "@storybook/preview-api": 7.5.1 + "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.1 lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -8141,10 +8141,10 @@ packages: - supports-color dev: true - /@storybook/addon-docs@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-docs@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-lgrum81iJT+i85kO3uOR4wR1t05x4SmJLCB2cyYohCIafiOiV4FuyYFhvT9N6UhHByOfrWgpipKgKg6zsmV2eg==, + integrity: sha512-+wE67oWIhGK9+kv2sxoY2KDXm3v62RfEgxiksdhtffTP/joOK3p88S0lO+8g0G4xfNGUnBhPtzGMuUxWwaH2Pw==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8152,19 +8152,19 @@ packages: dependencies: "@jest/transform": 29.6.4 "@mdx-js/react": 2.3.0(react@18.2.0) - "@storybook/blocks": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/csf-plugin": 7.5.0 - "@storybook/csf-tools": 7.5.0 + "@storybook/blocks": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/csf-plugin": 7.5.1 + "@storybook/csf-tools": 7.5.1 "@storybook/global": 5.0.0 "@storybook/mdx2-csf": 1.1.0 - "@storybook/node-logger": 7.5.0 - "@storybook/postinstall": 7.5.0 - "@storybook/preview-api": 7.5.0 - "@storybook/react-dom-shim": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 + "@storybook/node-logger": 7.5.1 + "@storybook/postinstall": 7.5.1 + "@storybook/preview-api": 7.5.1 + "@storybook/react-dom-shim": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.1 fs-extra: 11.1.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -8178,28 +8178,28 @@ packages: - supports-color dev: true - /@storybook/addon-essentials@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-essentials@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-CKPHdQBP6psTVb3NHsP8cWSUcAA4kwzT8SrJxKddn4ecqmWJWeZo5g5y3WuqVQHlv3edpluJLQYehcVibcljag==, + integrity: sha512-/jaUZXV+mE/2G5PgEpFKm4lFEHluWn6GFR/pg+hphvHOzBGA3Y75JMgUfJ5CDYHB1dAVSf9JrPOd8Eb1tpESfA==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/addon-actions": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-backgrounds": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-controls": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-docs": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-highlight": 7.5.0 - "@storybook/addon-measure": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-outline": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-toolbars": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/addon-viewport": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-common": 7.5.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/node-logger": 7.5.0 - "@storybook/preview-api": 7.5.0 + "@storybook/addon-actions": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-backgrounds": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-controls": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-docs": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-highlight": 7.5.1 + "@storybook/addon-measure": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-outline": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-toolbars": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/addon-viewport": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-common": 7.5.1 + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/node-logger": 7.5.1 + "@storybook/preview-api": 7.5.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 @@ -8210,17 +8210,6 @@ packages: - supports-color dev: true - /@storybook/addon-highlight@7.5.0: - resolution: - { - integrity: sha512-6SlEkGCZ/LnEcbN6oE2Au3fgI9VfULErWQ36bx+sV6WWTb1EoooiD7ZJJzobrcOAriSyfWoctO5DF4W+X9I8lg==, - } - dependencies: - "@storybook/core-events": 7.5.0 - "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.5.0 - dev: true - /@storybook/addon-highlight@7.5.1: resolution: { @@ -8232,10 +8221,10 @@ packages: "@storybook/preview-api": 7.5.1 dev: true - /@storybook/addon-interactions@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-interactions@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-OnmFJdzoww8jhiaxY/C/tmppkMRna6f4FKrhqeBytXRai8/PmH+a6tbjrKD8ywtAIt+1MVIxY/oXxXulHtBv8Q==, + integrity: sha512-m9yohFYil+UBwYKFxHYdsAsn8PBCPl6HY/FSgfrDc5PiqT1Ya7paXopimyy9ok+VQt/RC8sEWIm809ONEoxosw==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8246,16 +8235,16 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-common": 7.5.0 - "@storybook/core-events": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-common": 7.5.1 + "@storybook/core-events": 7.5.1 "@storybook/global": 5.0.0 - "@storybook/instrumenter": 7.5.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.0 - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 + "@storybook/instrumenter": 7.5.1 + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.1 + "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.1 jest-mock: 27.5.1 polished: 4.2.2 react: 18.2.0 @@ -8268,10 +8257,10 @@ packages: - supports-color dev: true - /@storybook/addon-links@7.5.0(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-links@7.5.1(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-1j0I80k8V1sSGN3faduj9uFk0ThgT4qAYyA/5q2YYA4y6V/K8ywJVOR3nv5j7ueTeBD/gUaoncn+NosusrhRNQ==, + integrity: sha512-KDiQYAVNXxuVTB3QLFZxHlfT8q4KnlNKY+0OODvgD5o1FqFpIyUiR5mIBL4SZMRj2EtwrR3KmZ2UPccFZdu9vw==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8282,24 +8271,24 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/core-events": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/core-events": 7.5.1 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.0 - "@storybook/router": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.1 + "@storybook/router": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.1 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 dev: true - /@storybook/addon-measure@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-measure@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-zzHrQpn+burEr37hV1QV7yA1M33wBa38dUe+RLNYkS9g22BXYYZ/uVUhljpmA9DhZCUNJqYbXWi+ad4XMPE6+Q==, + integrity: sha512-yR6oELJe0UHYxRijd1YMuGaQRlZ3uABjmrXaFCPnd6agahgTwIJLiK4XamtkVur//LaiJMvtmM2XXrkJ1BvNJw==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8310,13 +8299,13 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.1 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.0 - "@storybook/types": 7.5.0 + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.1 + "@storybook/types": 7.5.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) tiny-invariant: 1.3.1 @@ -8325,10 +8314,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-outline@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-outline@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-iVcyFi2N2NEZRytUg8wSiXS9UE9wA8/prs/sIsQ7Y34vHm1UaqAd8KxCE/fhHFNYw4UyHEEDUyTfci/jNrNQYA==, + integrity: sha512-IMi5Bo34/Q5YUG5uD8ZUTBwlpGrkDIV+PUgkyNIbmn9OgozoCH80Fs7YlGluRFODQISpHwio9qvSFRGdSNT56A==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8339,13 +8328,13 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.1 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.0 - "@storybook/types": 7.5.0 + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.1 + "@storybook/types": 7.5.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 @@ -8354,7 +8343,7 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-themes@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-themes@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-rWq6xr+Yvy9xrucy/7aiSuovEx5fDTgx6RGQcWhKBurHDAr2gbWX+HrYHyQsmG8zZ1x5SRKJiqj9vgS1g9cxfQ==, @@ -8369,7 +8358,7 @@ packages: optional: true dependencies: "@storybook/client-logger": 7.5.1 - "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@storybook/core-events": 7.5.1 "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) "@storybook/preview-api": 7.5.1 @@ -8383,10 +8372,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-toolbars@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-toolbars@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-RLONWIJE7myVL3DzWZDWnnmb53C1OitCiO3mDt678xyK5ZrFCOV9cznckXASx1wNJVt3P9OOW1N2UY7wul72+Q==, + integrity: sha512-T88hEEQicV6eCovr5TN2nFgKt7wU0o7pAunP5cU01iiVRj63+oQiVIBB8Xtm4tN+/DsqtyP0BTa6rFwt2ULy8A==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8397,11 +8386,11 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.0 - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.1 + "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: @@ -8409,10 +8398,10 @@ packages: - "@types/react-dom" dev: true - /@storybook/addon-viewport@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/addon-viewport@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-NXnjHQFKgeFsWOaJE0fl2THgejxDqx8axy4Prtc3ePcoVa/UrMu11G3iEcCaLhDJU7RDNM6CODgifYpH6gyKWg==, + integrity: sha512-L57lOGB3LfKgAdLinaZojRQ9W9w2RC0iP9bVaXwrRVeJdpNayfuW4Kh1C8dmacZroB4Zp2U/nEjkSmdcp6uUWg==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -8423,13 +8412,13 @@ packages: react-dom: optional: true dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.1 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.0 - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.1 + "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) memoizerific: 1.11.3 prop-types: 15.8.1 react: 18.2.0 @@ -8439,27 +8428,27 @@ packages: - "@types/react-dom" dev: true - /@storybook/blocks@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/blocks@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-4poS7lQVKhitWKl0TPECMszOMtNamsbNvZdAZ188U/p1EzTrqLg+RT9HtsB8q8Y0owx29Nh5LdfhNOddpx23ig==, + integrity: sha512-7b69p6kDdgmlejEMM2mW6/Lz4OmU/R3Qr+TpKnPcV5iS7ADxRQEQCTEMoQ5RyLJf0vDRh/7Ljn/RMo8Ux3X7JA==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@storybook/channels": 7.5.0 - "@storybook/client-logger": 7.5.0 - "@storybook/components": 7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.5.0 + "@storybook/channels": 7.5.1 + "@storybook/client-logger": 7.5.1 + "@storybook/components": 7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.5.1 "@storybook/csf": 0.1.1 - "@storybook/docs-tools": 7.5.0 + "@storybook/docs-tools": 7.5.1 "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.0 - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 - "@types/lodash": 4.14.197 + "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.5.1 + "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.1 + "@types/lodash": 4.14.200 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 @@ -8480,16 +8469,16 @@ packages: - supports-color dev: true - /@storybook/builder-manager@7.5.0: + /@storybook/builder-manager@7.5.1: resolution: { - integrity: sha512-nj+n36i7Mds4RIyGJqvOB+Z47zfgbMes+6Gd6reT1vC22Yda5nAITnd2vxbYfv/sUPhIBBfuFZ/eogomgYCjKg==, + integrity: sha512-a02kg/DCcYgiTz+7rw4KdvQzif+2lZ+NIFF5U5u8SDoCQuoe3wRT6QBrFYQTxJexA4WfO6cpyRLDJ1rx6NLo8A==, } dependencies: "@fal-works/esbuild-plugin-global-externals": 2.1.2 - "@storybook/core-common": 7.5.0 - "@storybook/manager": 7.5.0 - "@storybook/node-logger": 7.5.0 + "@storybook/core-common": 7.5.1 + "@storybook/manager": 7.5.1 + "@storybook/node-logger": 7.5.1 "@types/ejs": 3.1.3 "@types/find-cache-dir": 3.2.1 "@yarnpkg/esbuild-plugin-pnp": 3.0.0-rc.15(esbuild@0.18.20) @@ -8507,10 +8496,10 @@ packages: - supports-color dev: true - /@storybook/builder-vite@7.5.0(typescript@5.2.2)(vite@4.5.0): + /@storybook/builder-vite@7.5.1(typescript@5.2.2)(vite@4.5.0): resolution: { - integrity: sha512-XqiXECAhIDhUryhcPfWfmrvCA2R9p4cebXdyH5Op17yKQ10Bp+OxDWXZlOY/PHdq2KBVhC8CF3Yp7JXCWk8BHw==, + integrity: sha512-fsF4LsxroVvjBJoI5AvRA6euhpYrb5euii5kPzrsWXLOn6gDBK0jQ0looep/io7J45MisDjRTPp14A02pi1bkw==, } peerDependencies: "@preact/preset-vite": "*" @@ -8525,14 +8514,14 @@ packages: vite-plugin-glimmerx: optional: true dependencies: - "@storybook/channels": 7.5.0 - "@storybook/client-logger": 7.5.0 - "@storybook/core-common": 7.5.0 - "@storybook/csf-plugin": 7.5.0 - "@storybook/node-logger": 7.5.0 - "@storybook/preview": 7.5.0 - "@storybook/preview-api": 7.5.0 - "@storybook/types": 7.5.0 + "@storybook/channels": 7.5.1 + "@storybook/client-logger": 7.5.1 + "@storybook/core-common": 7.5.1 + "@storybook/csf-plugin": 7.5.1 + "@storybook/node-logger": 7.5.1 + "@storybook/preview": 7.5.1 + "@storybook/preview-api": 7.5.1 + "@storybook/types": 7.5.1 "@types/find-cache-dir": 3.2.1 browser-assert: 1.2.1 es-module-lexer: 0.9.3 @@ -8576,10 +8565,10 @@ packages: tiny-invariant: 1.3.1 dev: true - /@storybook/cli@7.5.0: + /@storybook/cli@7.5.1: resolution: { - integrity: sha512-f14q6sqHhDf7bFS0o/ZTgN2tM00Q0cMGMmGFXTQSCh0HXJUS4ujy/FADL+x62wUylIdr1HkIw+ONWMMqHuenEA==, + integrity: sha512-qKIJs8gqXTy0eSEbt0OW5nsJqiV/2+N1eWoiBiIxoZ+8b0ACXIAUcE/N6AsEDUqIq8AMK7lebqjEfIAt2Sp7Mg==, } hasBin: true dependencies: @@ -8587,14 +8576,14 @@ packages: "@babel/preset-env": 7.22.10(@babel/core@7.22.11) "@babel/types": 7.22.11 "@ndelangen/get-tarball": 3.0.9 - "@storybook/codemod": 7.5.0 - "@storybook/core-common": 7.5.0 - "@storybook/core-events": 7.5.0 - "@storybook/core-server": 7.5.0 - "@storybook/csf-tools": 7.5.0 - "@storybook/node-logger": 7.5.0 - "@storybook/telemetry": 7.5.0 - "@storybook/types": 7.5.0 + "@storybook/codemod": 7.5.1 + "@storybook/core-common": 7.5.1 + "@storybook/core-events": 7.5.1 + "@storybook/core-server": 7.5.1 + "@storybook/csf-tools": 7.5.1 + "@storybook/node-logger": 7.5.1 + "@storybook/telemetry": 7.5.1 + "@storybook/types": 7.5.1 "@types/semver": 7.5.0 "@yarnpkg/fslib": 2.10.3 "@yarnpkg/libzip": 2.3.0 @@ -8649,19 +8638,19 @@ packages: "@storybook/global": 5.0.0 dev: true - /@storybook/codemod@7.5.0: + /@storybook/codemod@7.5.1: resolution: { - integrity: sha512-QdjFdD1OK+LqhYwNMh60/kgSt9VZIgH2TBUeXrPlCK6gfcZBrCB0ktgtuM8Zk/ROktq09pZoVDxqFi0AbEUPew==, + integrity: sha512-PqHGOz/CZnRG9pWgshezCacu524CrXOJrCOwMUP9OMpH0Jk/NhBkHaBZrB8wMjn5hekTj0UmRa/EN8wJm9CCUQ==, } dependencies: "@babel/core": 7.22.11 "@babel/preset-env": 7.22.10(@babel/core@7.22.11) "@babel/types": 7.22.11 "@storybook/csf": 0.1.1 - "@storybook/csf-tools": 7.5.0 - "@storybook/node-logger": 7.5.0 - "@storybook/types": 7.5.0 + "@storybook/csf-tools": 7.5.1 + "@storybook/node-logger": 7.5.1 + "@storybook/types": 7.5.1 "@types/cross-spawn": 6.0.2 cross-spawn: 7.0.3 globby: 11.1.0 @@ -8673,33 +8662,7 @@ packages: - supports-color dev: true - /@storybook/components@7.5.0(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-6lmZ6PbS27xN32vTJ/NvgaiKkFIQRzZuBeBIg2u+FoAEgCiCwRXjZKe/O8NZC2Xr0uf97+7U2P0kD4Hwr9SNhw==, - } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@storybook/client-logger": 7.5.0 - "@storybook/csf": 0.1.1 - "@storybook/global": 5.0.0 - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 - 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) - util-deprecate: 1.0.2 - transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" - dev: true - - /@storybook/components@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /@storybook/components@7.5.1(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-fdzzxGBV/Fj9pYwfYL3RZsVUHeBqlfLMBP/L6mPmjaZSwHFqkaRZZUajZc57lCtI+TOy2gY6WH3cPavEtqtgLw==, @@ -8708,8 +8671,8 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) - "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.14)(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0) "@storybook/client-logger": 7.5.1 "@storybook/csf": 0.1.1 "@storybook/global": 5.0.0 @@ -8725,14 +8688,14 @@ packages: - "@types/react-dom" dev: true - /@storybook/core-client@7.5.0: + /@storybook/core-client@7.5.1: resolution: { - integrity: sha512-lnlPhsHnjK3tQ6jgTL/4TqIsxqznMQ0p7lSnUfhfccc2lGtMO/Ez/xIiTGoJQssJxuJE3d4sj3wRgYvuTDGQYw==, + integrity: sha512-K651UnNKkW8U078CH5rcUqf0siGcfEhwya2yQN5RBb/H78HSLBLdYgzKqxaKtmz+S8DFyWhrgbXZLdBjavozJg==, } dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/preview-api": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/preview-api": 7.5.1 dev: true /@storybook/core-common@7.5.0: @@ -8769,6 +8732,40 @@ packages: - supports-color dev: true + /@storybook/core-common@7.5.1: + resolution: + { + integrity: sha512-/rQ0/xvxFHSGCgIkK74HrgDMnzfYtDYTCoSod/qCTojfs9aciX+JYgvo5ChPnI/LEKWwxRTkrE7pl2u5+C4XGA==, + } + dependencies: + "@storybook/core-events": 7.5.1 + "@storybook/node-logger": 7.5.1 + "@storybook/types": 7.5.1 + "@types/find-cache-dir": 3.2.1 + "@types/node": 18.18.6 + "@types/node-fetch": 2.6.4 + "@types/pretty-hrtime": 1.0.1 + chalk: 4.1.2 + esbuild: 0.18.20 + esbuild-register: 3.5.0(esbuild@0.18.20) + file-system-cache: 2.3.0 + find-cache-dir: 3.3.2 + find-up: 5.0.0 + fs-extra: 11.1.1 + glob: 10.3.10 + handlebars: 4.7.8 + lazy-universal-dotenv: 4.0.0 + node-fetch: 2.7.0 + picomatch: 2.3.1 + pkg-dir: 5.0.0 + pretty-hrtime: 1.0.3 + resolve-from: 5.0.0 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/core-events@7.5.0: resolution: { @@ -8787,27 +8784,27 @@ packages: ts-dedent: 2.2.0 dev: true - /@storybook/core-server@7.5.0: + /@storybook/core-server@7.5.1: resolution: { - integrity: sha512-7QT8uzwSJOsv9PASQ6ywepYkcEYFB7+S7Cj/0nFMh3Vl9vW96LXvEHLAo9CUhSxdEKWeTnD8DS5+j90dLhQFCA==, + integrity: sha512-DD4BXCH91aZJoFuu0cQwG1ZUmE59kG5pazuE3S89zH1GwKS1jWyeAv4EwEfvynT5Ah1ctd8QdCZCSXVzjq0qcw==, } dependencies: "@aw-web-design/x-default-browser": 1.4.126 "@discoveryjs/json-ext": 0.5.7 - "@storybook/builder-manager": 7.5.0 - "@storybook/channels": 7.5.0 - "@storybook/core-common": 7.5.0 - "@storybook/core-events": 7.5.0 + "@storybook/builder-manager": 7.5.1 + "@storybook/channels": 7.5.1 + "@storybook/core-common": 7.5.1 + "@storybook/core-events": 7.5.1 "@storybook/csf": 0.1.1 - "@storybook/csf-tools": 7.5.0 + "@storybook/csf-tools": 7.5.1 "@storybook/docs-mdx": 0.1.0 "@storybook/global": 5.0.0 - "@storybook/manager": 7.5.0 - "@storybook/node-logger": 7.5.0 - "@storybook/preview-api": 7.5.0 - "@storybook/telemetry": 7.5.0 - "@storybook/types": 7.5.0 + "@storybook/manager": 7.5.1 + "@storybook/node-logger": 7.5.1 + "@storybook/preview-api": 7.5.1 + "@storybook/telemetry": 7.5.1 + "@storybook/types": 7.5.1 "@types/detect-port": 1.3.3 "@types/node": 18.18.6 "@types/pretty-hrtime": 1.0.1 @@ -8841,13 +8838,13 @@ packages: - utf-8-validate dev: true - /@storybook/csf-plugin@7.5.0: + /@storybook/csf-plugin@7.5.1: resolution: { - integrity: sha512-kghaEFYvQISdAjQddeicSuvBFMeuuLNtpmMkuoLQzULF7e/Tws6zLCYsjGevqlnqXD0iW2XM/j9q4M5L/mWc5A==, + integrity: sha512-jhV2aCZhSIXUiQDcHtuCg3dyYMzjYHTwLb4cJtkNw4sXqQoTGydTSWYwWigcHFfKGoyQp82rSgE1hE4YYx6iew==, } dependencies: - "@storybook/csf-tools": 7.5.0 + "@storybook/csf-tools": 7.5.1 unplugin: 1.4.0 transitivePeerDependencies: - supports-color @@ -8872,6 +8869,25 @@ packages: - supports-color dev: true + /@storybook/csf-tools@7.5.1: + resolution: + { + integrity: sha512-YChGbT1/odLS4RLb2HtK7ixM7mH5s7G5nOsWGKXalbza4SFKZIU2UzllEUsA+X8YfxMHnCD5TC3xLfK0ByxmzQ==, + } + dependencies: + "@babel/generator": 7.22.10 + "@babel/parser": 7.22.11 + "@babel/traverse": 7.22.11 + "@babel/types": 7.22.11 + "@storybook/csf": 0.1.1 + "@storybook/types": 7.5.1 + fs-extra: 11.1.1 + recast: 0.23.4 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - supports-color + dev: true + /@storybook/csf@0.1.1: resolution: { @@ -8888,15 +8904,15 @@ packages: } dev: true - /@storybook/docs-tools@7.5.0: + /@storybook/docs-tools@7.5.1: resolution: { - integrity: sha512-NFhqbXj6Wv5YypMwDkt0z9xcfWD7M3wZhr8Z9XcXDlUUPjBrdv0cHt3rfHwEXpTfFyunbK41KQZZ3JkjiAjgTg==, + integrity: sha512-tDtQGeKU5Kc2XoqZ5vpeGQrOkRg2UoDiSRS6cLy+M/sMB03Annq0ZngnJXaMiv0DLi2zpWSgWqPgYA3TJTZHBw==, } dependencies: - "@storybook/core-common": 7.5.0 - "@storybook/preview-api": 7.5.0 - "@storybook/types": 7.5.0 + "@storybook/core-common": 7.5.1 + "@storybook/preview-api": 7.5.1 + "@storybook/types": 7.5.1 "@types/doctrine": 0.0.3 doctrine: 3.0.0 lodash: 4.17.21 @@ -8921,17 +8937,17 @@ packages: } dev: true - /@storybook/instrumenter@7.5.0: + /@storybook/instrumenter@7.5.1: resolution: { - integrity: sha512-AyutK7uxZbgaF3/Fe+XwKbNxceEThDMi+T/FVIwJ98Ju0VqoIRefg8dbm98K6XyulYyZqmdP+C1/HdNl6Gbltg==, + integrity: sha512-bxRoWVVLlevqTFappXj1JfZlvEceBiBPdQQqTTeeA09VL3UyFWDpPFRn8Wf2C43Vt4V18w+krMyb1KfTk37ROQ==, } dependencies: - "@storybook/channels": 7.5.0 - "@storybook/client-logger": 7.5.0 - "@storybook/core-events": 7.5.0 + "@storybook/channels": 7.5.1 + "@storybook/client-logger": 7.5.1 + "@storybook/core-events": 7.5.1 "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.5.0 + "@storybook/preview-api": 7.5.1 dev: true /@storybook/jest@0.2.3(jest@28.1.3): @@ -8950,34 +8966,6 @@ packages: - vitest dev: true - /@storybook/manager-api@7.5.0(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-n9EaJTThsuFiBDs+GcmNBHnvLhH0znJQprhIQqHNVnosCs/7sloYUzWZzZvPwfnfPvRR7ostEEMXvriaYXYdJQ==, - } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - "@storybook/channels": 7.5.0 - "@storybook/client-logger": 7.5.0 - "@storybook/core-events": 7.5.0 - "@storybook/csf": 0.1.1 - "@storybook/global": 5.0.0 - "@storybook/router": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/theming": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 - 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) - semver: 7.5.4 - store2: 2.14.2 - telejson: 7.2.0 - ts-dedent: 2.2.0 - dev: true - /@storybook/manager-api@7.5.1(react-dom@18.2.0)(react@18.2.0): resolution: { @@ -9006,10 +8994,10 @@ packages: ts-dedent: 2.2.0 dev: true - /@storybook/manager@7.5.0: + /@storybook/manager@7.5.1: resolution: { - integrity: sha512-M4h4b0Y4aZ1sRGaZuJXgvPZHqu7vN/wgWB5yPcSwJqH1+DlPxYXYnPKGERgaEUUVKJV3oWQD2qZ+UpDeTgI5UQ==, + integrity: sha512-Jo83sj7KvsZ78vvqjH72ErmQ31Frx6GBLbpeYXZtbAXWl0/LHsxAEVz0Mke+DixzWDyP0/cn+Nw8QUfA+Oz1fg==, } dev: true @@ -9027,10 +9015,17 @@ packages: } dev: true - /@storybook/postinstall@7.5.0: + /@storybook/node-logger@7.5.1: + resolution: + { + integrity: sha512-xRMdL5YPe8C9sgJ1R0QD3YbiLjDGrfQk91+GplRD8N9FVCT5dki55Bv5Kp0FpemLYYg6uxAZL5nHmsZHKDKQoA==, + } + dev: true + + /@storybook/postinstall@7.5.1: resolution: { - integrity: sha512-SHpBItwar7qDZO7BBSqTNQK0yNy+RUROZUhW6wlVvsgVhIGF1bgA4pgpW1iMyfPmmGyNekE1BJjN+v8rjq9s6A==, + integrity: sha512-+LFUe2nNbmmLPKNt34RXSSC1r40yGGOoP/qlaPFwNOgQN2AZUrfqk6ZYnw6LjmcuHpQInZ4y4WDgbzg6QQL3+w==, } dev: true @@ -9078,17 +9073,17 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/preview@7.5.0: + /@storybook/preview@7.5.1: resolution: { - integrity: sha512-KPhx43pRgIb6UhqjsF0sUG5c3GG2dwzTzjN1/sj0QbPMghZ3b7xKGrCu6VSlsXoWQtcwisMHETFnowk0Ba/AMg==, + integrity: sha512-nfZC103z9Cy27FrJKUr2IjDuVt8Mvn1Z5gZ0TtJihoK7sfLTv29nd/XU9zzrb/epM3o8UEzc63xZZsMaToDbAw==, } dev: true - /@storybook/react-dom-shim@7.5.0(react-dom@18.2.0)(react@18.2.0): + /@storybook/react-dom-shim@7.5.1(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-OzJhXg1En/9D9vKvD2t0EcYcuHFzrLTA9kEUWt/eP3Ww41kndfJoZca33JZr17iuKksVAZ8ucETMnkL3yO+ybA==, + integrity: sha512-bzTIfLm91O9h3rPYJLtRbmsPARerY3z7MoyvadGp8TikvIvf+WyT/vHujw+20SxnqiZVq5Jv65FFlxc46GGB1Q==, } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -9098,10 +9093,10 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/react-vite@7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.5.0): + /@storybook/react-vite@7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.5.0): resolution: { - integrity: sha512-MnXeO1P+D9l6tZoS9wvC0YwSb8Ur05haUw66I2EJgYVmszbWmAv1XI7lYmfTqBj8bfFXk4DbUdIOVvBMfmIIZg==, + integrity: sha512-996/CtOqTjDWMKBGcHG8pwIVlORnoknLD+OTkPXl+aAl9oM9jUtc7psVKLJKGHSHTlVElM2wMTwIHnJ4yeP7bw==, } engines: { node: ">=16" } peerDependencies: @@ -9111,8 +9106,8 @@ packages: dependencies: "@joshwooding/vite-plugin-react-docgen-typescript": 0.3.0(typescript@5.2.2)(vite@4.5.0) "@rollup/pluginutils": 5.0.3(rollup@2.78.0) - "@storybook/builder-vite": 7.5.0(typescript@5.2.2)(vite@4.5.0) - "@storybook/react": 7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) + "@storybook/builder-vite": 7.5.1(typescript@5.2.2)(vite@4.5.0) + "@storybook/react": 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2) "@vitejs/plugin-react": 3.1.0(vite@4.5.0) magic-string: 0.30.3 react: 18.2.0 @@ -9128,10 +9123,10 @@ packages: - vite-plugin-glimmerx dev: true - /@storybook/react@7.5.0(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): + /@storybook/react@7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2): resolution: { - integrity: sha512-1oD8sYqBZwtfBKR8zZqfhjRong4wN/4PLYMzs5wl4kYugNOeauD8zWSztnIorxzDrl2yjpwnWlRy9wXN/8FI8g==, + integrity: sha512-IG97c30fFSmPyGpJ1awHC/+9XnCTqleeOQwROXjroMHSm8m/JTWpHMVLyM1x7b6VAnBhNHWJ+oXLZe/hXkXfpA==, } engines: { node: ">=16.0.0" } peerDependencies: @@ -9142,13 +9137,13 @@ packages: typescript: optional: true dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/core-client": 7.5.0 - "@storybook/docs-tools": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/core-client": 7.5.1 + "@storybook/docs-tools": 7.5.1 "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.5.0 - "@storybook/react-dom-shim": 7.5.0(react-dom@18.2.0)(react@18.2.0) - "@storybook/types": 7.5.0 + "@storybook/preview-api": 7.5.1 + "@storybook/react-dom-shim": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.5.1 "@types/escodegen": 0.0.6 "@types/estree": 0.0.51 "@types/node": 18.18.6 @@ -9171,22 +9166,6 @@ packages: - supports-color dev: true - /@storybook/router@7.5.0(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-NzPwjndmOEOUL8jK5kUrSvRUIcN5Z+h+l0Z8g4I56RoEhNTcKeOW4jbcT4WKnR9H455dti8HAcTV/4x59GpgxQ==, - } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - "@storybook/client-logger": 7.5.0 - memoizerific: 1.11.3 - qs: 6.11.2 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@storybook/router@7.5.1(react-dom@18.2.0)(react@18.2.0): resolution: { @@ -9203,15 +9182,15 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/telemetry@7.5.0: + /@storybook/telemetry@7.5.1: resolution: { - integrity: sha512-dvc1cjxHYGNfLEvh8eQI/R2KtMft0kUs6TJ2uXZdIX4+WqWG6mfn75sP8eyC1tcjkdslS6AmFWTfgt9EVcIPQA==, + integrity: sha512-z9PGouNqvZ2F7vD79qDF4PN7iW3kE3MO7YX0iKTmzgLi4ImKuXIJRF04GRH8r+WYghnbomAyA4o6z9YJMdNuVw==, } dependencies: - "@storybook/client-logger": 7.5.0 - "@storybook/core-common": 7.5.0 - "@storybook/csf-tools": 7.5.0 + "@storybook/client-logger": 7.5.1 + "@storybook/core-common": 7.5.1 + "@storybook/csf-tools": 7.5.1 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -9277,23 +9256,6 @@ packages: ts-dedent: 2.2.0 dev: true - /@storybook/theming@7.5.0(react-dom@18.2.0)(react@18.2.0): - resolution: - { - integrity: sha512-uTo97oh+pvmlfsZocFq5qae0zGo0VGk7oiBqNSSw6CiTqE1rIuSxoPrMAY+oCTWCUZV7DjONIGvpnGl2QALsAw==, - } - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) - "@storybook/client-logger": 7.5.0 - "@storybook/global": 5.0.0 - memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - dev: true - /@storybook/theming@7.5.1(react-dom@18.2.0)(react@18.2.0): resolution: { @@ -10171,7 +10133,7 @@ packages: } dependencies: "@types/connect": 3.4.37 - "@types/node": 20.8.6 + "@types/node": 20.8.7 /@types/chai-subset@1.3.3: resolution: @@ -10275,7 +10237,7 @@ packages: integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==, } dependencies: - "@types/node": 20.8.6 + "@types/node": 20.8.7 /@types/debug@4.1.8: resolution: @@ -10347,7 +10309,7 @@ packages: integrity: sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==, } dependencies: - "@types/node": 20.8.6 + "@types/node": 20.8.7 "@types/qs": 6.9.7 "@types/range-parser": 1.2.4 "@types/send": 0.17.1 @@ -10384,7 +10346,7 @@ packages: } dependencies: "@types/minimatch": 5.1.2 - "@types/node": 20.8.6 + "@types/node": 20.8.7 dev: true /@types/glob@8.1.0: @@ -10403,7 +10365,7 @@ packages: integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==, } dependencies: - "@types/node": 20.8.6 + "@types/node": 20.8.7 dev: true /@types/hast@2.3.6: @@ -10430,7 +10392,7 @@ packages: integrity: sha512-YIQtIg4PKr7ZyqNPZObpxfHsHEmuB8dXCxd6qVcGuQVDK2bpsF7bYNnBJ4Nn7giuACZg+WewExgrtAJ3XnA4Xw==, } dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 hoist-non-react-statics: 3.3.2 dev: false @@ -10527,10 +10489,10 @@ packages: "@types/geojson": 7946.0.10 dev: false - /@types/lodash@4.14.197: + /@types/lodash@4.14.200: resolution: { - integrity: sha512-BMVOiWs0uNxHVlHBgzTIqJYmj+PgCo4euloGF+5m4okL3rEYzM2EEv78mw8zWSMM57dM7kVIgJ2QDvwHSoCI5g==, + integrity: sha512-YI/M/4HRImtNf3pJgbF+W6FrXovqj+T+/HpENLTooK9PnkacBsDpeP3IpHab40CClUfhNmdM2WTNP2sa2dni5Q==, } /@types/mdast@3.0.13: @@ -10619,7 +10581,7 @@ packages: integrity: sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg==, } dependencies: - "@types/node": 20.8.6 + "@types/node": 20.8.7 form-data: 3.0.1 dev: true @@ -10630,17 +10592,18 @@ packages: } dev: true - /@types/node@20.8.0: + /@types/node@20.8.6: resolution: { - integrity: sha512-LzcWltT83s1bthcvjBmiBvGJiiUe84NWRHkw+ZV6Fr41z2FbIzvc815dk2nQ3RAKMuN2fkenM/z3Xv2QzEpYxQ==, + integrity: sha512-eWO4K2Ji70QzKUqRy6oyJWUeB7+g2cRagT3T/nxYibYcT4y2BDL8lqolRXjTHmkZCdJfIPaY73KbJAZmcryxTQ==, } - dev: true + dependencies: + undici-types: 5.25.3 - /@types/node@20.8.6: + /@types/node@20.8.7: resolution: { - integrity: sha512-eWO4K2Ji70QzKUqRy6oyJWUeB7+g2cRagT3T/nxYibYcT4y2BDL8lqolRXjTHmkZCdJfIPaY73KbJAZmcryxTQ==, + integrity: sha512-21TKHHh3eUHIi2MloeptJWALuCu5H7HQTdTrWIFReA8ad+aggoX+lRes3ex7/FtpC+sVUpFMQ+QTfYr74mruiQ==, } dependencies: undici-types: 5.25.3 @@ -10712,7 +10675,7 @@ packages: integrity: sha512-V835xgdSVmyQmI1KLV2BEIUgqEuinxp9O4G6g3FqO/SqLac049E53aysv0oEFD2kHfejeKU+ZqL2bcFWj9gLAQ==, } dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 /@types/react-transition-group@4.4.6: resolution: @@ -10720,13 +10683,13 @@ packages: integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==, } dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 dev: false - /@types/react@18.2.29: + /@types/react@18.2.31: resolution: { - integrity: sha512-Z+ZrIRocWtdD70j45izShRwDuiB4JZqDegqMFW/I8aG5DxxLKOzVNoq62UIO82v9bdgi+DO1jvsb9sTEZUSm+Q==, + integrity: sha512-c2UnPv548q+5DFh03y8lEDeMfDwBn9G3dRwfkrxQMo/dOtRHUUO57k6pHvBIfH/VF4Nh+98mZ5aaSe+2echD5g==, } dependencies: "@types/prop-types": 15.7.5 @@ -10767,7 +10730,7 @@ packages: } dependencies: "@types/mime": 1.3.2 - "@types/node": 20.8.6 + "@types/node": 20.8.7 /@types/serve-static@1.15.2: resolution: @@ -10777,7 +10740,7 @@ packages: dependencies: "@types/http-errors": 2.0.1 "@types/mime": 3.0.1 - "@types/node": 20.8.6 + "@types/node": 20.8.7 /@types/sharp@0.31.1: resolution: @@ -10828,7 +10791,7 @@ packages: integrity: sha512-I8EnhU/DuvV2LODzBcLw85FPFFZ9mBvtgqfsgXbhkbo5IZYfIne5qxPTv4PGbD8d5uDQJG5g/pGwGdpM8lQ6Lg==, } dependencies: - "@types/node": 20.8.6 + "@types/node": 20.8.7 dev: true /@types/yargs-parser@21.0.0: @@ -10863,11 +10826,11 @@ packages: } requiresBuild: true dependencies: - "@types/node": 20.8.6 + "@types/node": 20.8.7 dev: false optional: true - /@typescript-eslint/eslint-plugin@6.4.1(@typescript-eslint/parser@6.4.1)(eslint@8.51.0)(typescript@5.2.2): + /@typescript-eslint/eslint-plugin@6.4.1(@typescript-eslint/parser@6.4.1)(eslint@8.52.0)(typescript@5.2.2): resolution: { integrity: sha512-3F5PtBzUW0dYlq77Lcqo13fv+58KDwUib3BddilE8ajPJT+faGgxmI9Sw+I8ZS22BYwoir9ZhNXcLi+S+I2bkw==, @@ -10882,13 +10845,13 @@ packages: optional: true dependencies: "@eslint-community/regexpp": 4.7.0 - "@typescript-eslint/parser": 6.4.1(eslint@8.51.0)(typescript@5.2.2) + "@typescript-eslint/parser": 6.4.1(eslint@8.52.0)(typescript@5.2.2) "@typescript-eslint/scope-manager": 6.4.1 - "@typescript-eslint/type-utils": 6.4.1(eslint@8.51.0)(typescript@5.2.2) - "@typescript-eslint/utils": 6.4.1(eslint@8.51.0)(typescript@5.2.2) + "@typescript-eslint/type-utils": 6.4.1(eslint@8.52.0)(typescript@5.2.2) + "@typescript-eslint/utils": 6.4.1(eslint@8.52.0)(typescript@5.2.2) "@typescript-eslint/visitor-keys": 6.4.1 debug: 4.3.4 - eslint: 8.51.0 + eslint: 8.52.0 graphemer: 1.4.0 ignore: 5.2.4 natural-compare: 1.4.0 @@ -10899,7 +10862,7 @@ packages: - supports-color dev: true - /@typescript-eslint/parser@6.4.1(eslint@8.51.0)(typescript@5.2.2): + /@typescript-eslint/parser@6.4.1(eslint@8.52.0)(typescript@5.2.2): resolution: { integrity: sha512-610G6KHymg9V7EqOaNBMtD1GgpAmGROsmfHJPXNLCU9bfIuLrkdOygltK784F6Crboyd5tBFayPB7Sf0McrQwg==, @@ -10917,7 +10880,7 @@ packages: "@typescript-eslint/typescript-estree": 6.4.1(typescript@5.2.2) "@typescript-eslint/visitor-keys": 6.4.1 debug: 4.3.4 - eslint: 8.51.0 + eslint: 8.52.0 typescript: 5.2.2 transitivePeerDependencies: - supports-color @@ -10932,7 +10895,7 @@ packages: "@typescript-eslint/types": 6.4.1 "@typescript-eslint/visitor-keys": 6.4.1 - /@typescript-eslint/type-utils@6.4.1(eslint@8.51.0)(typescript@5.2.2): + /@typescript-eslint/type-utils@6.4.1(eslint@8.52.0)(typescript@5.2.2): resolution: { integrity: sha512-7ON8M8NXh73SGZ5XvIqWHjgX2f+vvaOarNliGhjrJnv1vdjG0LVIz+ToYfPirOoBi56jxAKLfsLm40+RvxVVXA==, @@ -10946,9 +10909,9 @@ packages: optional: true dependencies: "@typescript-eslint/typescript-estree": 6.4.1(typescript@5.2.2) - "@typescript-eslint/utils": 6.4.1(eslint@8.51.0)(typescript@5.2.2) + "@typescript-eslint/utils": 6.4.1(eslint@8.52.0)(typescript@5.2.2) debug: 4.3.4 - eslint: 8.51.0 + eslint: 8.52.0 ts-api-utils: 1.0.2(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: @@ -10985,7 +10948,7 @@ packages: transitivePeerDependencies: - supports-color - /@typescript-eslint/utils@6.4.1(eslint@8.51.0)(typescript@5.2.2): + /@typescript-eslint/utils@6.4.1(eslint@8.52.0)(typescript@5.2.2): resolution: { integrity: sha512-F/6r2RieNeorU0zhqZNv89s9bDZSovv3bZQpUNOmmQK1L80/cV4KEu95YUJWi75u5PhboFoKUJBnZ4FQcoqhDw==, @@ -10994,13 +10957,13 @@ packages: peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.51.0) + "@eslint-community/eslint-utils": 4.4.0(eslint@8.52.0) "@types/json-schema": 7.0.12 "@types/semver": 7.5.0 "@typescript-eslint/scope-manager": 6.4.1 "@typescript-eslint/types": 6.4.1 "@typescript-eslint/typescript-estree": 6.4.1(typescript@5.2.2) - eslint: 8.51.0 + eslint: 8.52.0 semver: 7.5.4 transitivePeerDependencies: - supports-color @@ -11022,7 +10985,6 @@ packages: { integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, } - dev: false /@vitejs/plugin-react@3.1.0(vite@4.5.0): resolution: @@ -13170,10 +13132,10 @@ packages: transitivePeerDependencies: - supports-color - /compute-scroll-into-view@1.0.20: + /compute-scroll-into-view@3.1.0: resolution: { - integrity: sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==, + integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==, } dev: false @@ -13208,10 +13170,10 @@ packages: typedarray: 0.0.6 dev: true - /concurrently@8.2.1: + /concurrently@8.2.2: resolution: { - integrity: sha512-nVraf3aXOpIcNud5pB9M82p1tynmZkrSGQ1p6X/VY8cJ+2LMVqAgXsJxYYefACSHbTYlm92O1xuhdGTjwoEvbQ==, + integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==, } engines: { node: ^14.13.0 || >=16.0.0 } hasBin: true @@ -14451,7 +14413,7 @@ packages: dependencies: "@types/cookie": 0.4.1 "@types/cors": 2.8.14 - "@types/node": 20.8.6 + "@types/node": 20.8.7 accepts: 1.3.8 base64id: 2.0.0 cookie: 0.4.2 @@ -14826,7 +14788,7 @@ packages: optionalDependencies: source-map: 0.6.1 - /eslint-config-next@13.5.6(eslint@8.51.0)(typescript@5.2.2): + /eslint-config-next@13.5.6(eslint@8.52.0)(typescript@5.2.2): resolution: { integrity: sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg==, @@ -14840,20 +14802,20 @@ packages: dependencies: "@next/eslint-plugin-next": 13.5.6 "@rushstack/eslint-patch": 1.3.3 - "@typescript-eslint/parser": 6.4.1(eslint@8.51.0)(typescript@5.2.2) - eslint: 8.51.0 + "@typescript-eslint/parser": 6.4.1(eslint@8.52.0)(typescript@5.2.2) + eslint: 8.52.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.51.0) - eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-typescript@3.6.0)(eslint@8.51.0) - eslint-plugin-jsx-a11y: 6.7.1(eslint@8.51.0) - eslint-plugin-react: 7.33.2(eslint@8.51.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.51.0) + eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.52.0) + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-typescript@3.6.0)(eslint@8.52.0) + eslint-plugin-jsx-a11y: 6.7.1(eslint@8.52.0) + eslint-plugin-react: 7.33.2(eslint@8.52.0) + eslint-plugin-react-hooks: 4.6.0(eslint@8.52.0) typescript: 5.2.2 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color - /eslint-config-prettier@9.0.0(eslint@8.51.0): + /eslint-config-prettier@9.0.0(eslint@8.52.0): resolution: { integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==, @@ -14862,7 +14824,7 @@ packages: peerDependencies: eslint: ">=7.0.0" dependencies: - eslint: 8.51.0 + eslint: 8.52.0 dev: true /eslint-import-resolver-node@0.3.9: @@ -14877,7 +14839,7 @@ packages: transitivePeerDependencies: - supports-color - /eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.51.0): + /eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.52.0): resolution: { integrity: sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==, @@ -14889,9 +14851,9 @@ packages: dependencies: debug: 4.3.4 enhanced-resolve: 5.15.0 - eslint: 8.51.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.51.0) - eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-typescript@3.6.0)(eslint@8.51.0) + eslint: 8.52.0 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.52.0) + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-typescript@3.6.0)(eslint@8.52.0) fast-glob: 3.3.1 get-tsconfig: 4.7.0 is-core-module: 2.13.0 @@ -14902,7 +14864,7 @@ packages: - eslint-import-resolver-webpack - supports-color - /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.51.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.52.0): resolution: { integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==, @@ -14926,15 +14888,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - "@typescript-eslint/parser": 6.4.1(eslint@8.51.0)(typescript@5.2.2) + "@typescript-eslint/parser": 6.4.1(eslint@8.52.0)(typescript@5.2.2) debug: 3.2.7(supports-color@5.5.0) - eslint: 8.51.0 + eslint: 8.52.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.51.0) + eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.52.0) transitivePeerDependencies: - supports-color - /eslint-plugin-deprecation@2.0.0(eslint@8.51.0)(typescript@5.2.2): + /eslint-plugin-deprecation@2.0.0(eslint@8.52.0)(typescript@5.2.2): resolution: { integrity: sha512-OAm9Ohzbj11/ZFyICyR5N6LbOIvQMp7ZU2zI7Ej0jIc8kiGUERXPNMfw2QqqHD1ZHtjMub3yPZILovYEYucgoQ==, @@ -14943,8 +14905,8 @@ packages: eslint: ^7.0.0 || ^8.0.0 typescript: ^4.2.4 || ^5.0.0 dependencies: - "@typescript-eslint/utils": 6.4.1(eslint@8.51.0)(typescript@5.2.2) - eslint: 8.51.0 + "@typescript-eslint/utils": 6.4.1(eslint@8.52.0)(typescript@5.2.2) + eslint: 8.52.0 tslib: 2.6.2 tsutils: 3.21.0(typescript@5.2.2) typescript: 5.2.2 @@ -14952,7 +14914,7 @@ packages: - supports-color dev: true - /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-typescript@3.6.0)(eslint@8.51.0): + /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-typescript@3.6.0)(eslint@8.52.0): resolution: { integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==, @@ -14965,16 +14927,16 @@ packages: "@typescript-eslint/parser": optional: true dependencies: - "@typescript-eslint/parser": 6.4.1(eslint@8.51.0)(typescript@5.2.2) + "@typescript-eslint/parser": 6.4.1(eslint@8.52.0)(typescript@5.2.2) array-includes: 3.1.6 array.prototype.findlastindex: 1.2.2 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 debug: 3.2.7(supports-color@5.5.0) doctrine: 2.1.0 - eslint: 8.51.0 + eslint: 8.52.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.51.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.4.1)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.52.0) has: 1.0.3 is-core-module: 2.13.0 is-glob: 4.0.3 @@ -15000,7 +14962,7 @@ packages: vscode-json-languageservice: 4.2.1 dev: true - /eslint-plugin-jsx-a11y@6.7.1(eslint@8.51.0): + /eslint-plugin-jsx-a11y@6.7.1(eslint@8.52.0): resolution: { integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==, @@ -15018,7 +14980,7 @@ packages: axobject-query: 3.2.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.51.0 + eslint: 8.52.0 has: 1.0.3 jsx-ast-utils: 3.3.5 language-tags: 1.0.5 @@ -15027,7 +14989,7 @@ packages: object.fromentries: 2.0.6 semver: 6.3.1 - /eslint-plugin-prettier@5.0.0(eslint-config-prettier@9.0.0)(eslint@8.51.0)(prettier@3.0.3): + /eslint-plugin-prettier@5.0.0(eslint-config-prettier@9.0.0)(eslint@8.52.0)(prettier@3.0.3): resolution: { integrity: sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==, @@ -15044,14 +15006,14 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.51.0 - eslint-config-prettier: 9.0.0(eslint@8.51.0) + eslint: 8.52.0 + eslint-config-prettier: 9.0.0(eslint@8.52.0) prettier: 3.0.3 prettier-linter-helpers: 1.0.0 synckit: 0.8.5 dev: true - /eslint-plugin-promise@6.1.1(eslint@8.51.0): + /eslint-plugin-promise@6.1.1(eslint@8.52.0): resolution: { integrity: sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==, @@ -15060,10 +15022,10 @@ packages: peerDependencies: eslint: ^7.0.0 || ^8.0.0 dependencies: - eslint: 8.51.0 + eslint: 8.52.0 dev: true - /eslint-plugin-react-hooks@4.6.0(eslint@8.51.0): + /eslint-plugin-react-hooks@4.6.0(eslint@8.52.0): resolution: { integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==, @@ -15072,9 +15034,9 @@ packages: peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.51.0 + eslint: 8.52.0 - /eslint-plugin-react@7.33.2(eslint@8.51.0): + /eslint-plugin-react@7.33.2(eslint@8.52.0): resolution: { integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==, @@ -15088,7 +15050,7 @@ packages: array.prototype.tosorted: 1.1.1 doctrine: 2.1.0 es-iterator-helpers: 1.0.13 - eslint: 8.51.0 + eslint: 8.52.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 @@ -15101,7 +15063,7 @@ packages: semver: 6.3.1 string.prototype.matchall: 4.0.8 - /eslint-plugin-unicorn@48.0.1(eslint@8.51.0): + /eslint-plugin-unicorn@48.0.1(eslint@8.52.0): resolution: { integrity: sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==, @@ -15111,10 +15073,10 @@ packages: eslint: ">=8.44.0" dependencies: "@babel/helper-validator-identifier": 7.22.5 - "@eslint-community/eslint-utils": 4.4.0(eslint@8.51.0) + "@eslint-community/eslint-utils": 4.4.0(eslint@8.52.0) ci-info: 3.8.0 clean-regexp: 1.0.0 - eslint: 8.51.0 + eslint: 8.52.0 esquery: 1.5.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 @@ -15145,21 +15107,22 @@ packages: } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - /eslint@8.51.0: + /eslint@8.52.0: resolution: { - integrity: sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==, + integrity: sha512-zh/JHnaixqHZsolRB/w9/02akBk9EPrOs9JwcTP2ek7yL5bVvXuRariiaAjjoJ5DvuwQ1WAE/HsMz+w17YgBCg==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.51.0) + "@eslint-community/eslint-utils": 4.4.0(eslint@8.52.0) "@eslint-community/regexpp": 4.7.0 "@eslint/eslintrc": 2.1.2 - "@eslint/js": 8.51.0 - "@humanwhocodes/config-array": 0.11.11 + "@eslint/js": 8.52.0 + "@humanwhocodes/config-array": 0.11.13 "@humanwhocodes/module-importer": 1.0.1 "@nodelib/fs.walk": 1.2.8 + "@ungap/structured-clone": 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -17145,10 +17108,10 @@ packages: } dev: false - /immer@9.0.21: + /immer@10.0.3: resolution: { - integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==, + integrity: sha512-pwupu3eWfouuaowscykeckFmVTpqbzW+rXFCX8rQLkZzM9ftBmU/++Ra+o+L27mz03zJTlyV4UUr+fdKNffo4A==, } dev: false @@ -17653,13 +17616,6 @@ packages: engines: { node: ">=0.10.0" } dev: true - /is-hotkey@0.1.8: - resolution: - { - integrity: sha512-qs3NZ1INIS+H+yeo7cD9pDfwYV/jqRh1JG9S9zYrNudkoUQg7OL7ziXqRKu+InFjUIDoP2o6HIkLYMh1pcWgyQ==, - } - dev: false - /is-hotkey@0.2.0: resolution: { @@ -18199,7 +18155,7 @@ packages: "@jest/expect": 28.1.3 "@jest/test-result": 28.1.3 "@jest/types": 28.1.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -18238,7 +18194,7 @@ packages: exit: 0.1.2 graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 28.1.3(@types/node@20.8.6) + jest-config: 28.1.3(@types/node@20.8.7) jest-util: 28.1.3 jest-validate: 28.1.3 prompts: 2.4.2 @@ -18249,7 +18205,7 @@ packages: - ts-node dev: true - /jest-config@28.1.3(@types/node@20.8.6): + /jest-config@28.1.3(@types/node@20.8.7): resolution: { integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==, @@ -18267,7 +18223,7 @@ packages: "@babel/core": 7.22.11 "@jest/test-sequencer": 28.1.3 "@jest/types": 28.1.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 babel-jest: 28.1.3(@babel/core@7.22.11) chalk: 4.1.2 ci-info: 3.8.0 @@ -18351,7 +18307,7 @@ packages: "@jest/environment": 28.1.3 "@jest/fake-timers": 28.1.3 "@jest/types": 28.1.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 jest-mock: 28.1.3 jest-util: 28.1.3 dev: true @@ -18381,7 +18337,7 @@ packages: dependencies: "@jest/types": 28.1.3 "@types/graceful-fs": 4.1.6 - "@types/node": 20.8.6 + "@types/node": 20.8.7 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -18403,12 +18359,12 @@ packages: dependencies: "@jest/types": 29.6.3 "@types/graceful-fs": 4.1.6 - "@types/node": 20.8.6 + "@types/node": 20.8.7 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 jest-regex-util: 29.6.3 - jest-util: 29.6.3 + jest-util: 29.7.0 jest-worker: 29.6.4 micromatch: 4.0.5 walker: 1.0.8 @@ -18497,7 +18453,7 @@ packages: engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } dependencies: "@jest/types": 27.5.1 - "@types/node": 20.8.6 + "@types/node": 20.8.7 dev: true /jest-mock@28.1.3: @@ -18508,7 +18464,7 @@ packages: engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: "@jest/types": 28.1.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 dev: true /jest-playwright-preset@2.0.0(jest-circus@28.1.3)(jest-environment-node@28.1.3)(jest-runner@28.1.3)(jest@28.1.3): @@ -18632,7 +18588,7 @@ packages: "@jest/test-result": 28.1.3 "@jest/transform": 28.1.3 "@jest/types": 28.1.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.11 @@ -18736,22 +18692,7 @@ packages: engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: "@jest/types": 28.1.3 - "@types/node": 20.8.6 - chalk: 4.1.2 - ci-info: 3.8.0 - graceful-fs: 4.2.11 - picomatch: 2.3.1 - dev: true - - /jest-util@29.6.3: - resolution: - { - integrity: sha512-QUjna/xSy4B32fzcKTSz1w7YYzgiHrjjJjevdRf61HYk998R5vVMMNmrHESYZVDS5DSWs+1srPLPKxXPkeSDOA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - dependencies: - "@jest/types": 29.6.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -18766,7 +18707,7 @@ packages: engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: "@jest/types": 29.6.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -18816,7 +18757,7 @@ packages: dependencies: "@jest/test-result": 28.1.3 "@jest/types": 28.1.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -18833,7 +18774,7 @@ packages: dependencies: "@jest/test-result": 29.7.0 "@jest/types": 29.6.3 - "@types/node": 20.8.6 + "@types/node": 20.8.7 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -18848,7 +18789,7 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: - "@types/node": 20.8.6 + "@types/node": 20.8.7 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -18860,8 +18801,8 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@types/node": 20.8.6 - jest-util: 29.6.3 + "@types/node": 20.8.7 + jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -19259,16 +19200,16 @@ packages: } dev: false - /lerna@7.3.1: + /lerna@7.4.1: resolution: { - integrity: sha512-4Lt6nKIqCDqWgRlKu02g6+0Gfl5Hx9ZK3EIJTjMntea6QBuOgfSpJEj3j20osmE1tzFCkbAltJRyeLE1CImv+A==, + integrity: sha512-c6sOO0dlJU689vStIsko+zjRdn2fJOWH8aNjePLNv2AubAdABKqfrDCpE2H/Q7+O80Duo68ZQtWYkUUk7hRWDw==, } engines: { node: ">=16.0.0" } hasBin: true dependencies: - "@lerna/child-process": 7.3.1 - "@lerna/create": 7.3.1(typescript@5.2.2) + "@lerna/child-process": 7.4.1 + "@lerna/create": 7.4.1(typescript@5.2.2) "@npmcli/run-script": 6.0.2 "@nx/devkit": 16.7.4(nx@16.7.4) "@octokit/plugin-enterprise-rest": 6.0.1 @@ -19431,10 +19372,10 @@ packages: engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true - /lint-staged@15.0.1: + /lint-staged@15.0.2: resolution: { - integrity: sha512-2IU5OWmCaxch0X0+IBF4/v7sutpB+F3qoXbro43pYjQTOo5wumckjxoxn47pQBqqBsCWrD5HnI2uG/zJA7isew==, + integrity: sha512-vnEy7pFTHyVuDmCAIFKR5QDO8XLVlPFQQyujQ/STOxe40ICWqJ6knS2wSJ/ffX/Lw0rz83luRDh+ET7toN+rOw==, } engines: { node: ">=18.12.0" } hasBin: true @@ -19444,19 +19385,19 @@ packages: debug: 4.3.4 execa: 8.0.1 lilconfig: 2.1.0 - listr2: 7.0.1 + listr2: 7.0.2 micromatch: 4.0.5 pidtree: 0.6.0 string-argv: 0.3.2 - yaml: 2.3.2 + yaml: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /listr2@7.0.1: + /listr2@7.0.2: resolution: { - integrity: sha512-nz+7hwgbDp8eWNoDgzdl4hA/xDSLrNRzPu1TLgOYs6l5Y+Ma6zVWWy9Oyt9TQFONwKoSPoka3H50D3vD5EuNwg==, + integrity: sha512-rJysbR9GKIalhTbVL2tYbF2hVyDnrf7pFUZBwjPaMIdadYHmeT+EVi/Bu3qd7ETQPahTotg2WRCatXwRBW554g==, } engines: { node: ">=16.0.0" } dependencies: @@ -23283,7 +23224,7 @@ packages: dnd-core: 16.0.1 dev: false - /react-dnd@16.0.1(@types/react@18.2.29)(react@18.2.0): + /react-dnd@16.0.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-QeoM/i73HHu2XF9aKksIUuamHPDvRglEwdHL4jsp784BgUuWcg6mzfxT0QDdQz8Wj0qyRKx2eMg8iZtWvU4E2Q==, @@ -23303,7 +23244,7 @@ packages: dependencies: "@react-dnd/invariant": 4.0.2 "@react-dnd/shallowequal": 4.0.2 - "@types/react": 18.2.29 + "@types/react": 18.2.31 dnd-core: 16.0.1 fast-deep-equal: 3.1.3 hoist-non-react-statics: 3.3.2 @@ -23336,7 +23277,7 @@ packages: "@types/doctrine": 0.0.6 "@types/resolve": 1.20.4 doctrine: 3.0.0 - resolve: 1.22.4 + resolve: 1.22.8 strip-indent: 4.0.0 transitivePeerDependencies: - supports-color @@ -23462,7 +23403,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /react-markdown@9.0.0(@types/react@18.2.29)(react@18.2.0): + /react-markdown@9.0.0(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-v6yNf3AB8GfJ8lCpUvzxAXKxgsHpdmWPlcVRQ6Nocsezp255E/IDrF31kLQsPJeB/cKto/geUwjU36wH784FCA==, @@ -23472,7 +23413,7 @@ packages: react: ">=18" dependencies: "@types/hast": 3.0.1 - "@types/react": 18.2.29 + "@types/react": 18.2.31 devlop: 1.1.0 hast-util-to-jsx-runtime: 2.2.0 html-url-attributes: 3.0.0 @@ -23496,7 +23437,7 @@ packages: engines: { node: ">=0.10.0" } dev: true - /react-remove-scroll-bar@2.3.4(@types/react@18.2.29)(react@18.2.0): + /react-remove-scroll-bar@2.3.4(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==, @@ -23509,12 +23450,12 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.29)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.31)(react@18.2.0) tslib: 2.6.2 - /react-remove-scroll@2.5.5(@types/react@18.2.29)(react@18.2.0): + /react-remove-scroll@2.5.5(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==, @@ -23527,13 +23468,13 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.29)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.29)(react@18.2.0) + react-remove-scroll-bar: 2.3.4(@types/react@18.2.31)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.31)(react@18.2.0) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@18.2.29)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.29)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.2.31)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.31)(react@18.2.0) /react-resize-detector@7.1.2(react-dom@18.2.0)(react@18.2.0): resolution: @@ -23549,7 +23490,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /react-select@5.7.7(@types/react@18.2.29)(react-dom@18.2.0)(react@18.2.0): + /react-select@5.7.7(@types/react@18.2.31)(react-dom@18.2.0)(react@18.2.0): resolution: { integrity: sha512-HhashZZJDRlfF/AKj0a0Lnfs3sRdw/46VJIRd8IbB9/Ovr74+ZIwkAdSBjSPXsFMG+u72c5xShqwLSKIJllzqw==, @@ -23560,7 +23501,7 @@ packages: dependencies: "@babel/runtime": 7.22.11 "@emotion/cache": 11.11.0 - "@emotion/react": 11.11.1(@types/react@18.2.29)(react@18.2.0) + "@emotion/react": 11.11.1(@types/react@18.2.31)(react@18.2.0) "@floating-ui/dom": 1.5.1 "@types/react-transition-group": 4.4.6 memoize-one: 6.0.0 @@ -23568,7 +23509,7 @@ packages: 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) - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.29)(react@18.2.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.31)(react@18.2.0) transitivePeerDependencies: - "@types/react" dev: false @@ -23592,7 +23533,7 @@ packages: tiny-invariant: 1.2.0 dev: false - /react-style-singleton@2.2.1(@types/react@18.2.29)(react@18.2.0): + /react-style-singleton@2.2.1(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==, @@ -23605,7 +23546,7 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 @@ -24461,13 +24402,13 @@ packages: engines: { node: ">=0.10.0" } dev: false - /scroll-into-view-if-needed@2.2.31: + /scroll-into-view-if-needed@3.1.0: resolution: { - integrity: sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==, + integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==, } dependencies: - compute-scroll-into-view: 1.0.20 + compute-scroll-into-view: 3.1.0 dev: false /semver@5.7.2: @@ -24755,49 +24696,49 @@ packages: engines: { node: ">=14.16" } dev: true - /slate-history@0.93.0(slate@0.94.1): + /slate-history@0.100.0(slate@0.100.0): resolution: { - integrity: sha512-Gr1GMGPipRuxIz41jD2/rbvzPj8eyar56TVMyJBvBeIpQSSjNISssvGNDYfJlSWM8eaRqf6DAcxMKzsLCYeX6g==, + integrity: sha512-x5rUuWLNtH97hs9PrFovGgt3Qc5zkTm/5mcUB+0NR/TK923eLax4HsL6xACLHMs245nI6aJElyM1y6hN0y5W/Q==, } peerDependencies: slate: ">=0.65.3" dependencies: is-plain-object: 5.0.0 - slate: 0.94.1 + slate: 0.100.0 dev: false - /slate-react@0.99.0(react-dom@18.2.0)(react@18.2.0)(slate@0.94.1): + /slate-react@0.100.0(react-dom@18.2.0)(react@18.2.0)(slate@0.100.0): resolution: { - integrity: sha512-E+mU87L5epS/Cj9Z35aRkTEMrBXdX8URbFh8B2zTq2DDQKn+MT6/ag41g1InMdRoQ/kipGsbtcrM8dEicY8o/Q==, + integrity: sha512-cWq3tiOvYDJE96ISjnZrX/5IrGcqT4tVVW+PeGquUbrEK/Vq9/850juucjXMLl4zQAtXehy+fxWaJQWPeclUDQ==, } peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" - slate: ">=0.65.3" + react: ">=18.2.0" + react-dom: ">=18.2.0" + slate: ">=0.99.0" dependencies: "@juggle/resize-observer": 3.4.0 "@types/is-hotkey": 0.1.8 - "@types/lodash": 4.14.197 + "@types/lodash": 4.14.200 direction: 1.0.4 - is-hotkey: 0.1.8 + 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) - scroll-into-view-if-needed: 2.2.31 - slate: 0.94.1 - tiny-invariant: 1.0.6 + scroll-into-view-if-needed: 3.1.0 + slate: 0.100.0 + tiny-invariant: 1.3.1 dev: false - /slate@0.94.1: + /slate@0.100.0: resolution: { - integrity: sha512-GH/yizXr1ceBoZ9P9uebIaHe3dC/g6Plpf9nlUwnvoyf6V1UOYrRwkabtOCd3ZfIGxomY4P7lfgLr7FPH8/BKA==, + integrity: sha512-cK+xwLBrbQof4rEfTzgC8loBWsDFEXq8nOBY7QahwY59Zq4bsBNcwiMw2VIzTv+WGNsmyHp4eAk/HJbz2aAUkQ==, } dependencies: - immer: 9.0.21 + immer: 10.0.3 is-plain-object: 5.0.0 tiny-warning: 1.0.3 dev: false @@ -25253,14 +25194,14 @@ packages: } dev: true - /storybook@7.5.0: + /storybook@7.5.1: resolution: { - integrity: sha512-dmvQNSuoHq1KrPcK8siApBi5n5reSf6RFAlLHYD+nhM+EP6SL2fXdVjP6ZynTUMRu1NQ5YR/oJhz/SsBzJNkcA==, + integrity: sha512-Wg3j3z5H03PYnEcmlnhf6bls0OtjmsNPsQ93dTV8F4AweqBECwzjf94Wj++NrP3X+WbfMoCbBU6LRFuEyzCCxw==, } hasBin: true dependencies: - "@storybook/cli": 7.5.0 + "@storybook/cli": 7.5.1 transitivePeerDependencies: - bufferutil - encoding @@ -25942,13 +25883,6 @@ packages: integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, } - /tiny-invariant@1.0.6: - resolution: - { - integrity: sha512-FOyLWWVjG+aC0UqG76V53yAWdXfH8bO6FNmyZOuUrzDzK8DI3/JRY25UD7+g49JWM1LXwymsKERB+DzI0dTEQA==, - } - dev: false - /tiny-invariant@1.2.0: resolution: { @@ -25961,7 +25895,6 @@ packages: { integrity: sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==, } - dev: true /tiny-warning@1.0.3: resolution: @@ -26393,10 +26326,10 @@ packages: safe-buffer: 5.2.1 dev: false - /turbo-darwin-64@1.10.15: + /turbo-darwin-64@1.10.16: resolution: { - integrity: sha512-Sik5uogjkRTe1XVP9TC2GryEMOJCaKE2pM/O9uLn4koQDnWKGcLQv+mDU+H+9DXvKLnJnKCD18OVRkwK5tdpoA==, + integrity: sha512-+Jk91FNcp9e9NCLYlvDDlp2HwEDp14F9N42IoW3dmHI5ZkGSXzalbhVcrx3DOox3QfiNUHxzWg4d7CnVNCuuMg==, } cpu: [x64] os: [darwin] @@ -26404,10 +26337,10 @@ packages: dev: false optional: true - /turbo-darwin-arm64@1.10.15: + /turbo-darwin-arm64@1.10.16: resolution: { - integrity: sha512-xwqyFDYUcl2xwXyGPmHkmgnNm4Cy0oNzMpMOBGRr5x64SErS7QQLR4VHb0ubiR+VAb8M+ECPklU6vD1Gm+wekg==, + integrity: sha512-jqGpFZipIivkRp/i+jnL8npX0VssE6IAVNKtu573LXtssZdV/S+fRGYA16tI46xJGxSAivrZ/IcgZrV6Jk80bw==, } cpu: [arm64] os: [darwin] @@ -26415,10 +26348,10 @@ packages: dev: false optional: true - /turbo-linux-64@1.10.15: + /turbo-linux-64@1.10.16: resolution: { - integrity: sha512-dM07SiO3RMAJ09Z+uB2LNUSkPp3I1IMF8goH5eLj+d8Kkwoxd/+qbUZOj9RvInyxU/IhlnO9w3PGd3Hp14m/nA==, + integrity: sha512-PpqEZHwLoizQ6sTUvmImcRmACyRk9EWLXGlqceogPZsJ1jTRK3sfcF9fC2W56zkSIzuLEP07k5kl+ZxJd8JMcg==, } cpu: [x64] os: [linux] @@ -26426,10 +26359,10 @@ packages: dev: false optional: true - /turbo-linux-arm64@1.10.15: + /turbo-linux-arm64@1.10.16: resolution: { - integrity: sha512-MkzKLkKYKyrz4lwfjNXH8aTny5+Hmiu4SFBZbx+5C0vOlyp6fV5jZANDBvLXWiDDL4DSEAuCEK/2cmN6FVH1ow==, + integrity: sha512-TMjFYz8to1QE0fKVXCIvG/4giyfnmqcQIwjdNfJvKjBxn22PpbjeuFuQ5kNXshUTRaTJihFbuuCcb5OYFNx4uw==, } cpu: [arm64] os: [linux] @@ -26437,10 +26370,10 @@ packages: dev: false optional: true - /turbo-windows-64@1.10.15: + /turbo-windows-64@1.10.16: resolution: { - integrity: sha512-3TdVU+WEH9ThvQGwV3ieX/XHebtYNHv9HARHauPwmVj3kakoALkpGxLclkHFBLdLKkqDvmHmXtcsfs6cXXRHJg==, + integrity: sha512-+jsf68krs0N66FfC4/zZvioUap/Tq3sPFumnMV+EBo8jFdqs4yehd6+MxIwYTjSQLIcpH8KoNMB0gQYhJRLZzw==, } cpu: [x64] os: [win32] @@ -26448,10 +26381,10 @@ packages: dev: false optional: true - /turbo-windows-arm64@1.10.15: + /turbo-windows-arm64@1.10.16: resolution: { - integrity: sha512-l+7UOBCbfadvPMYsX08hyLD+UIoAkg6ojfH+E8aud3gcA1padpjCJTh9gMpm3QdMbKwZteT5uUM+wyi6Rbbyww==, + integrity: sha512-sKm3hcMM1bl0B3PLG4ifidicOGfoJmOEacM5JtgBkYM48ncMHjkHfFY7HrJHZHUnXM4l05RQTpLFoOl/uIo2HQ==, } cpu: [arm64] os: [win32] @@ -26459,19 +26392,19 @@ packages: dev: false optional: true - /turbo@1.10.15: + /turbo@1.10.16: resolution: { - integrity: sha512-mKKkqsuDAQy1wCCIjCdG+jOCwUflhckDMSRoeBPcIL/CnCl7c5yRDFe7SyaXloUUkt4tUR0rvNIhVCcT7YeQpg==, + integrity: sha512-2CEaK4FIuSZiP83iFa9GqMTQhroW2QryckVqUydmg4tx78baftTOS0O+oDAhvo9r9Nit4xUEtC1RAHoqs6ZEtg==, } hasBin: true optionalDependencies: - turbo-darwin-64: 1.10.15 - turbo-darwin-arm64: 1.10.15 - turbo-linux-64: 1.10.15 - turbo-linux-arm64: 1.10.15 - turbo-windows-64: 1.10.15 - turbo-windows-arm64: 1.10.15 + turbo-darwin-64: 1.10.16 + turbo-darwin-arm64: 1.10.16 + turbo-linux-64: 1.10.16 + turbo-linux-arm64: 1.10.16 + turbo-windows-64: 1.10.16 + turbo-windows-arm64: 1.10.16 dev: false /type-check@0.4.0: @@ -26723,20 +26656,20 @@ packages: busboy: 1.6.0 dev: false - /undici@5.25.3: + /undici@5.26.3: resolution: { - integrity: sha512-7lmhlz3K1+IKB6IUjkdzV2l0jKY8/0KguEMdEpzzXCug5pEGIp3DxUg0DEN65DrVoxHiRKpPORC/qzX+UglSkQ==, + integrity: sha512-H7n2zmKEWgOllKkIUkLvFmsJQj062lSm3uA4EYApG8gLuiOM0/go9bIoC3HVaSnfg4xunowDE2i9p8drkXuvDw==, } engines: { node: ">=14.0" } dependencies: "@fastify/busboy": 2.0.0 dev: false - /undici@5.26.3: + /undici@5.26.4: resolution: { - integrity: sha512-H7n2zmKEWgOllKkIUkLvFmsJQj062lSm3uA4EYApG8gLuiOM0/go9bIoC3HVaSnfg4xunowDE2i9p8drkXuvDw==, + integrity: sha512-OG+QOf0fTLtazL9P9X7yqWxQ+Z0395Wk6DSkyTxtaq3wQEjIroVe7Y4asCX/vcCxYpNGMnwz8F0qbRYUoaQVMw==, } engines: { node: ">=14.0" } dependencies: @@ -27063,7 +26996,7 @@ packages: } dev: false - /use-callback-ref@1.3.0(@types/react@18.2.29)(react@18.2.0): + /use-callback-ref@1.3.0(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==, @@ -27076,7 +27009,7 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 tslib: 2.6.2 @@ -27108,7 +27041,7 @@ packages: react: 18.2.0 dev: false - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.29)(react@18.2.0): + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==, @@ -27120,7 +27053,7 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 dev: false @@ -27138,7 +27071,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /use-sidecar@1.1.2(@types/react@18.2.29)(react@18.2.0): + /use-sidecar@1.1.2(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==, @@ -27151,7 +27084,7 @@ packages: "@types/react": optional: true dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.6.2 @@ -27396,7 +27329,7 @@ packages: fsevents: 2.3.3 dev: true - /vite@4.4.9(@types/node@20.8.0): + /vite@4.4.9: resolution: { integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==, @@ -27427,7 +27360,6 @@ packages: terser: optional: true dependencies: - "@types/node": 20.8.0 esbuild: 0.18.20 postcss: 8.4.31 rollup: 3.28.1 @@ -27475,6 +27407,45 @@ packages: fsevents: 2.3.3 dev: true + /vite@4.5.0(@types/node@20.8.7): + resolution: + { + integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==, + } + engines: { node: ^14.18.0 || >=16.0.0 } + hasBin: true + peerDependencies: + "@types/node": ">= 14" + 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 + dependencies: + "@types/node": 20.8.7 + esbuild: 0.18.20 + postcss: 8.4.31 + rollup: 3.28.1 + optionalDependencies: + fsevents: 2.3.3 + dev: true + /vitest@0.34.6(sass@1.69.4): resolution: { @@ -28028,10 +27999,10 @@ packages: } engines: { node: ">= 14" } - /yaml@2.3.2: + /yaml@2.3.3: resolution: { - integrity: sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==, + integrity: sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ==, } engines: { node: ">= 14" } dev: true @@ -28193,7 +28164,7 @@ packages: } dev: false - /zustand@4.4.3(@types/react@18.2.29)(react@18.2.0): + /zustand@4.4.3(@types/react@18.2.31)(react@18.2.0): resolution: { integrity: sha512-oRy+X3ZazZvLfmv6viIaQmtLOMeij1noakIsK/Y47PWYhT8glfXzQ4j0YcP5i0P0qI1A4rIB//SGROGyZhx91A==, @@ -28211,7 +28182,7 @@ packages: react: optional: true dependencies: - "@types/react": 18.2.29 + "@types/react": 18.2.31 react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) dev: false