= {
className?: string;
- variant?: Variant;
+ variant?: V;
};
-export type WithVariants = Omit
& {
- variant?: Variant;
+export type WithVariants<
+ P,
+ V = P extends VariantProps ? P['variant'] : Variant,
+> = Omit
& {
+ variant?: V;
};
-function getVariant({ variant, className }: VariantProps) {
+function getVariant({ variant, className }: VariantProps) {
if (variant === 'ghost') {
return {
variant: 'soft',
@@ -36,7 +37,8 @@ function getVariant({ variant, className }: VariantProps) {
};
}
-export function useVariants(props: P) {
- const { variant, className } = getVariant(props);
- return { variant: variant as ButtonProps['variant'], className };
+export function useVariants
(props: P) {
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ const { variant, className } = getVariant(props as any);
+ return { variant: variant as V, className };
}
diff --git a/packages/ui/src/theme/index.css b/packages/ui/src/theme/index.css
index c4c385b42..257bb27bb 100644
--- a/packages/ui/src/theme/index.css
+++ b/packages/ui/src/theme/index.css
@@ -3,6 +3,7 @@
@import 'tailwindcss/base' layer(tw-base);
@import '@radix-ui/themes/styles.css' layer(radix);
@import 'tailwindcss/components' layer(tw-components);
+@import '../components/Spinner/Spinner.css' layer(tw-components);
@import 'tailwindcss/utilities' layer(tw-utilities);
:root,
@@ -91,12 +92,36 @@
.dark [data-accent-color],
.dark-theme [data-accent-color] {
--inverse: white;
+ --inverse-a1: var(--white-a1);
+ --inverse-a2: var(--white-a2);
+ --inverse-a3: var(--white-a3);
+ --inverse-a4: var(--white-a4);
+ --inverse-a5: var(--white-a5);
+ --inverse-a6: var(--white-a6);
+ --inverse-a7: var(--white-a7);
+ --inverse-a8: var(--white-a8);
+ --inverse-a9: var(--white-a9);
+ --inverse-a10: var(--white-a10);
+ --inverse-a11: var(--white-a11);
+ --inverse-a12: var(--white-a12);
--color-brand: #00e182;
}
.light [data-accent-color],
.light-theme [data-accent-color] {
--inverse: black;
+ --inverse-a1: var(--black-a1);
+ --inverse-a2: var(--black-a2);
+ --inverse-a3: var(--black-a3);
+ --inverse-a4: var(--black-a4);
+ --inverse-a5: var(--black-a5);
+ --inverse-a6: var(--black-a6);
+ --inverse-a7: var(--black-a7);
+ --inverse-a8: var(--black-a8);
+ --inverse-a9: var(--black-a9);
+ --inverse-a10: var(--black-a10);
+ --inverse-a11: var(--black-a11);
+ --inverse-a12: var(--black-a12);
--color-brand: var(--grass-9);
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f19706dd9..d7f53d5d5 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -35,7 +35,7 @@ importers:
version: 0.0.11(typescript@5.2.2)
jest:
specifier: 29.7.0
- version: 29.7.0(@types/node@20.7.0)(ts-node@10.9.1)
+ version: 29.7.0(@types/node@20.8.2)(ts-node@10.9.1)
lint-staged:
specifier: 14.0.1
version: 14.0.1
@@ -47,23 +47,23 @@ importers:
specifier: ^13.5.3
version: 13.5.3
'@swc/core':
- specifier: 1.3.90
- version: 1.3.90
+ specifier: 1.3.91
+ version: 1.3.91
'@swc/jest':
specifier: 0.2.29
- version: 0.2.29(@swc/core@1.3.90)
+ version: 0.2.29(@swc/core@1.3.91)
'@types/jest':
specifier: 29.5.5
version: 29.5.5
'@types/node':
- specifier: 20.7.0
- version: 20.7.0
+ specifier: 20.8.2
+ version: 20.8.2
'@typescript-eslint/eslint-plugin':
- specifier: ^6.7.3
- version: 6.7.3(@typescript-eslint/parser@6.7.3)(eslint@8.50.0)(typescript@5.2.2)
+ specifier: ^6.7.4
+ version: 6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.50.0)(typescript@5.2.2)
'@typescript-eslint/parser':
- specifier: ^6.7.3
- version: 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ specifier: ^6.7.4
+ version: 6.7.4(eslint@8.50.0)(typescript@5.2.2)
eslint:
specifier: ^8.50.0
version: 8.50.0
@@ -75,13 +75,13 @@ importers:
version: 0.3.9
eslint-import-resolver-typescript:
specifier: ^3.6.1
- version: 3.6.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
+ version: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
eslint-plugin-eslint-comments:
specifier: ^3.2.0
version: 3.2.0(eslint@8.50.0)
eslint-plugin-import:
specifier: ^2.28.1
- version: 2.28.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
+ version: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
eslint-plugin-jest-dom:
specifier: ^5.1.0
version: 5.1.0(eslint@8.50.0)
@@ -100,6 +100,9 @@ importers:
eslint-plugin-testing-library:
specifier: ^6.0.2
version: 6.0.2(eslint@8.50.0)(typescript@5.2.2)
+ get-tsconfig:
+ specifier: 4.7.2
+ version: 4.7.2
husky:
specifier: ^8.0.3
version: 8.0.3
@@ -114,10 +117,10 @@ importers:
version: 3.0.3
ts-node:
specifier: 10.9.1
- version: 10.9.1(@swc/core@1.3.90)(@types/node@20.7.0)(typescript@5.2.2)
+ version: 10.9.1(@swc/core@1.3.91)(@types/node@20.8.2)(typescript@5.2.2)
tsup:
specifier: 7.2.0
- version: 7.2.0(@swc/core@1.3.90)(ts-node@10.9.1)(typescript@5.2.2)
+ version: 7.2.0(@swc/core@1.3.91)(ts-node@10.9.1)(typescript@5.2.2)
turbo:
specifier: ^1.10.14
version: 1.10.14
@@ -152,11 +155,11 @@ importers:
specifier: workspace:*
version: link:../ui
'@tabler/icons-react':
- specifier: 2.35.0
- version: 2.35.0(react@18.2.0)
+ specifier: 2.38.0
+ version: 2.38.0(react@18.2.0)
'@tanstack/react-query':
- specifier: 4.35.3
- version: 4.35.3(react-dom@18.2.0)(react@18.2.0)
+ specifier: 4.35.7
+ version: 4.35.7(react-dom@18.2.0)(react@18.2.0)
clsx:
specifier: 2.0.0
version: 2.0.0
@@ -182,8 +185,8 @@ importers:
specifier: 2.12.6
version: 2.12.6(graphql@16.8.1)
graphql-yoga:
- specifier: 4.0.4
- version: 4.0.4(graphql@16.8.1)
+ specifier: 4.0.5
+ version: 4.0.5(graphql@16.8.1)
next:
specifier: 13.5.3
version: 13.5.3(@babel/core@7.23.0)(react-dom@18.2.0)(react@18.2.0)
@@ -214,37 +217,37 @@ importers:
version: 7.23.0
'@storybook/addon-a11y':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-actions':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-essentials':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-interactions':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-links':
specifier: ^7.4.5
version: 7.4.5(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-storysource':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-viewport':
specifier: 7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addons':
specifier: ^7.4.5
version: 7.4.5(react-dom@18.2.0)(react@18.2.0)
'@storybook/nextjs':
specifier: ^7.4.5
- version: 7.4.5(@swc/core@1.3.90)(@types/react-dom@18.2.8)(@types/react@18.2.23)(next@13.5.3)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ version: 7.4.5(@swc/core@1.3.91)(@types/react-dom@18.2.8)(@types/react@18.2.24)(next@13.5.3)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@storybook/react':
specifier: ^7.4.5
version: 7.4.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@storybook/testing-library':
- specifier: ^0.2.1
- version: 0.2.1
+ specifier: ^0.2.2
+ version: 0.2.2
'@storybook/types':
specifier: ^7.4.5
version: 7.4.5
@@ -258,11 +261,11 @@ importers:
specifier: 6.1.3
version: 6.1.3(@types/jest@29.5.5)(jest@29.7.0)
'@types/node':
- specifier: 20.7.0
- version: 20.7.0
+ specifier: 20.8.2
+ version: 20.8.2
'@types/react':
- specifier: ^18.2.23
- version: 18.2.23
+ specifier: ^18.2.24
+ version: 18.2.24
'@types/react-dom':
specifier: ^18.2.8
version: 18.2.8
@@ -271,13 +274,13 @@ importers:
version: 0.5.2
autoprefixer:
specifier: 10.4.16
- version: 10.4.16(postcss@8.4.30)
+ version: 10.4.16(postcss@8.4.31)
postcss:
- specifier: 8.4.30
- version: 8.4.30
+ specifier: 8.4.31
+ version: 8.4.31
postcss-import:
specifier: 15.1.0
- version: 15.1.0(postcss@8.4.30)
+ version: 15.1.0(postcss@8.4.31)
radix-ui-themes-with-tailwind:
specifier: 1.2.6
version: 1.2.6
@@ -304,7 +307,7 @@ importers:
version: 5.2.2
vite:
specifier: ^4.4.9
- version: 4.4.9(@types/node@20.7.0)
+ version: 4.4.9(@types/node@20.8.2)
vite-tsconfig-paths:
specifier: ^4.2.1
version: 4.2.1(typescript@5.2.2)(vite@4.4.9)
@@ -328,7 +331,7 @@ importers:
version: 10.0.6(graphql@16.8.1)
'@luckycatfactory/esbuild-graphql-loader':
specifier: 3.8.1
- version: 3.8.1(esbuild@0.19.3)(graphql-tag@2.12.6)(graphql@16.8.1)
+ version: 3.8.1(esbuild@0.19.4)(graphql-tag@2.12.6)(graphql@16.8.1)
cors:
specifier: ^2.8.5
version: 2.8.5
@@ -339,8 +342,8 @@ importers:
specifier: 16.3.1
version: 16.3.1
esbuild:
- specifier: 0.19.3
- version: 0.19.3
+ specifier: 0.19.4
+ version: 0.19.4
express:
specifier: ^4.18.2
version: 4.18.2
@@ -386,7 +389,7 @@ importers:
version: 0.0.11(typescript@5.2.2)
'@graphql-codegen/cli':
specifier: 5.0.0
- version: 5.0.0(@types/node@20.7.0)(graphql@16.8.1)(typescript@5.2.2)
+ version: 5.0.0(@types/node@20.8.2)(graphql@16.8.1)(typescript@5.2.2)
'@graphql-codegen/introspection':
specifier: 4.0.0
version: 4.0.0(graphql@16.8.1)
@@ -412,8 +415,8 @@ importers:
specifier: 4.14.199
version: 4.14.199
'@types/node':
- specifier: ^20.7.0
- version: 20.7.0
+ specifier: ^20.8.2
+ version: 20.8.2
babel-plugin-import-graphql:
specifier: 2.8.1
version: 2.8.1(graphql-tag@2.12.6)(graphql@16.8.1)
@@ -428,10 +431,10 @@ importers:
version: 3.5.0(graphql@16.8.1)
ts-node:
specifier: ^10.9.1
- version: 10.9.1(@swc/core@1.3.90)(@types/node@20.7.0)(typescript@5.2.2)
+ version: 10.9.1(@swc/core@1.3.91)(@types/node@20.8.2)(typescript@5.2.2)
ts-node-dev:
specifier: ^2.0.0
- version: 2.0.0(@swc/core@1.3.90)(@types/node@20.7.0)(typescript@5.2.2)
+ version: 2.0.0(@swc/core@1.3.91)(@types/node@20.8.2)(typescript@5.2.2)
tsconfig-paths:
specifier: ^4.2.0
version: 4.2.0
@@ -449,7 +452,7 @@ importers:
version: 7.4.5(react-dom@18.2.0)(react@18.2.0)
'@storybook/components':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events':
specifier: ^7.4.5
version: 7.4.5
@@ -467,8 +470,8 @@ importers:
version: 18.2.0(react@18.2.0)
devDependencies:
'@types/react':
- specifier: ^18.2.23
- version: 18.2.23
+ specifier: ^18.2.24
+ version: 18.2.24
'@types/react-dom':
specifier: ^18.2.8
version: 18.2.8
@@ -482,32 +485,32 @@ importers:
specifier: 0.60.0
version: 0.60.0
'@radix-ui/colors':
- specifier: 3.0.0-rc.5
- version: 3.0.0-rc.5
+ specifier: 3.0.0
+ version: 3.0.0
'@radix-ui/react-accordion':
specifier: 1.1.2
- version: 1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-aspect-ratio':
specifier: 1.0.3
- version: 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-dialog':
specifier: 1.0.5
- version: 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-slot':
specifier: 1.0.2
- version: 1.0.2(@types/react@18.2.23)(react@18.2.0)
+ version: 1.0.2(@types/react@18.2.24)(react@18.2.0)
'@radix-ui/react-toast':
specifier: 1.1.5
- version: 1.1.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.1.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/themes':
- specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^2.0.0
+ version: 2.0.0(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@react-aria/focus':
- specifier: 3.14.1
- version: 3.14.1(react@18.2.0)
+ specifier: 3.14.2
+ version: 3.14.2(react@18.2.0)
'@tabler/icons-react':
- specifier: 2.35.0
- version: 2.35.0(react@18.2.0)
+ specifier: 2.38.0
+ version: 2.38.0(react@18.2.0)
'@tailwindcss/typography':
specifier: 0.5.10
version: 0.5.10(tailwindcss@3.3.3)
@@ -530,14 +533,14 @@ importers:
specifier: ^18.2.0
version: 18.2.0
react-aria:
- specifier: 3.28.0
- version: 3.28.0(react-dom@18.2.0)(react@18.2.0)
+ specifier: 3.29.0
+ version: 3.29.0(react-dom@18.2.0)(react@18.2.0)
react-dom:
specifier: ^18.2.0
version: 18.2.0(react@18.2.0)
react-stately:
- specifier: 3.26.0
- version: 3.26.0(react@18.2.0)
+ specifier: 3.27.0
+ version: 3.27.0(react@18.2.0)
react-use:
specifier: 17.4.0
version: 17.4.0(react-dom@18.2.0)(react@18.2.0)
@@ -554,33 +557,33 @@ importers:
specifier: 2.8.0
version: 2.8.0
tailwindcss-themer:
- specifier: 3.1.1
- version: 3.1.1(tailwindcss@3.3.3)
+ specifier: 3.1.2
+ version: 3.1.2(tailwindcss@3.3.3)
devDependencies:
'@chialab/esbuild-plugin-meta-url':
specifier: 0.17.7
version: 0.17.7
'@storybook/addon-a11y':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-actions':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-essentials':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-interactions':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-links':
specifier: ^7.4.5
version: 7.4.5(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-storysource':
specifier: ^7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-viewport':
specifier: 7.4.5
- version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addons':
specifier: ^7.4.5
version: 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -591,8 +594,8 @@ importers:
specifier: ^7.4.5
version: 7.4.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)(vite@4.4.9)
'@storybook/testing-library':
- specifier: ^0.2.1
- version: 0.2.1
+ specifier: ^0.2.2
+ version: 0.2.2
'@storybook/types':
specifier: ^7.4.5
version: 7.4.5
@@ -600,14 +603,14 @@ importers:
specifier: 4.14.199
version: 4.14.199
'@types/react':
- specifier: ^18.2.23
- version: 18.2.23
+ specifier: ^18.2.24
+ version: 18.2.24
'@types/react-dom':
specifier: ^18.2.8
version: 18.2.8
autoprefixer:
specifier: 10.4.16
- version: 10.4.16(postcss@8.4.30)
+ version: 10.4.16(postcss@8.4.31)
globby:
specifier: 13.2.2
version: 13.2.2
@@ -615,11 +618,11 @@ importers:
specifier: ^4.17.21
version: 4.17.21
postcss:
- specifier: 8.4.30
- version: 8.4.30
+ specifier: 8.4.31
+ version: 8.4.31
postcss-import:
specifier: 15.1.0
- version: 15.1.0(postcss@8.4.30)
+ version: 15.1.0(postcss@8.4.31)
storybook:
specifier: ^7.4.5
version: 7.4.5
@@ -637,7 +640,7 @@ importers:
version: 5.2.2
vite:
specifier: ^4.4.9
- version: 4.4.9(@types/node@20.7.0)
+ version: 4.4.9(@types/node@20.8.2)
vite-tsconfig-paths:
specifier: ^4.2.1
version: 4.2.1(typescript@5.2.2)(vite@4.4.9)
@@ -2286,8 +2289,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm64@0.19.3:
- resolution: {integrity: sha512-w+Akc0vv5leog550kjJV9Ru+MXMR2VuMrui3C61mnysim0gkFCPOUTAfzTP0qX+HpN9Syu3YA3p1hf3EPqObRw==}
+ /@esbuild/android-arm64@0.19.4:
+ resolution: {integrity: sha512-mRsi2vJsk4Bx/AFsNBqOH2fqedxn5L/moT58xgg51DjX1la64Z3Npicut2VbhvDFO26qjWtPMsVxCd80YTFVeg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
@@ -2304,8 +2307,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-arm@0.19.3:
- resolution: {integrity: sha512-Lemgw4io4VZl9GHJmjiBGzQ7ONXRfRPHcUEerndjwiSkbxzrpq0Uggku5MxxrXdwJ+pTj1qyw4jwTu7hkPsgIA==}
+ /@esbuild/android-arm@0.19.4:
+ resolution: {integrity: sha512-uBIbiYMeSsy2U0XQoOGVVcpIktjLMEKa7ryz2RLr7L/vTnANNEsPVAh4xOv7ondGz6ac1zVb0F8Jx20rQikffQ==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
@@ -2322,8 +2325,8 @@ packages:
dev: true
optional: true
- /@esbuild/android-x64@0.19.3:
- resolution: {integrity: sha512-FKQJKkK5MXcBHoNZMDNUAg1+WcZlV/cuXrWCoGF/TvdRiYS4znA0m5Il5idUwfxrE20bG/vU1Cr5e1AD6IEIjQ==}
+ /@esbuild/android-x64@0.19.4:
+ resolution: {integrity: sha512-4iPufZ1TMOD3oBlGFqHXBpa3KFT46aLl6Vy7gwed0ZSYgHaZ/mihbYb4t7Z9etjkC9Al3ZYIoOaHrU60gcMy7g==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
@@ -2340,8 +2343,8 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-arm64@0.19.3:
- resolution: {integrity: sha512-kw7e3FXU+VsJSSSl2nMKvACYlwtvZB8RUIeVShIEY6PVnuZ3c9+L9lWB2nWeeKWNNYDdtL19foCQ0ZyUL7nqGw==}
+ /@esbuild/darwin-arm64@0.19.4:
+ resolution: {integrity: sha512-Lviw8EzxsVQKpbS+rSt6/6zjn9ashUZ7Tbuvc2YENgRl0yZTktGlachZ9KMJUsVjZEGFVu336kl5lBgDN6PmpA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
@@ -2358,8 +2361,8 @@ packages:
dev: true
optional: true
- /@esbuild/darwin-x64@0.19.3:
- resolution: {integrity: sha512-tPfZiwF9rO0jW6Jh9ipi58N5ZLoSjdxXeSrAYypy4psA2Yl1dAMhM71KxVfmjZhJmxRjSnb29YlRXXhh3GqzYw==}
+ /@esbuild/darwin-x64@0.19.4:
+ resolution: {integrity: sha512-YHbSFlLgDwglFn0lAO3Zsdrife9jcQXQhgRp77YiTDja23FrC2uwnhXMNkAucthsf+Psr7sTwYEryxz6FPAVqw==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
@@ -2376,8 +2379,8 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-arm64@0.19.3:
- resolution: {integrity: sha512-ERDyjOgYeKe0Vrlr1iLrqTByB026YLPzTytDTz1DRCYM+JI92Dw2dbpRHYmdqn6VBnQ9Bor6J8ZlNwdZdxjlSg==}
+ /@esbuild/freebsd-arm64@0.19.4:
+ resolution: {integrity: sha512-vz59ijyrTG22Hshaj620e5yhs2dU1WJy723ofc+KUgxVCM6zxQESmWdMuVmUzxtGqtj5heHyB44PjV/HKsEmuQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
@@ -2394,8 +2397,8 @@ packages:
dev: true
optional: true
- /@esbuild/freebsd-x64@0.19.3:
- resolution: {integrity: sha512-nXesBZ2Ad1qL+Rm3crN7NmEVJ5uvfLFPLJev3x1j3feCQXfAhoYrojC681RhpdOph8NsvKBBwpYZHR7W0ifTTA==}
+ /@esbuild/freebsd-x64@0.19.4:
+ resolution: {integrity: sha512-3sRbQ6W5kAiVQRBWREGJNd1YE7OgzS0AmOGjDmX/qZZecq8NFlQsQH0IfXjjmD0XtUYqr64e0EKNFjMUlPL3Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
@@ -2412,8 +2415,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm64@0.19.3:
- resolution: {integrity: sha512-qXvYKmXj8GcJgWq3aGvxL/JG1ZM3UR272SdPU4QSTzD0eymrM7leiZH77pvY3UetCy0k1xuXZ+VPvoJNdtrsWQ==}
+ /@esbuild/linux-arm64@0.19.4:
+ resolution: {integrity: sha512-ZWmWORaPbsPwmyu7eIEATFlaqm0QGt+joRE9sKcnVUG3oBbr/KYdNE2TnkzdQwX6EDRdg/x8Q4EZQTXoClUqqA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
@@ -2430,8 +2433,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-arm@0.19.3:
- resolution: {integrity: sha512-zr48Cg/8zkzZCzDHNxXO/89bf9e+r4HtzNUPoz4GmgAkF1gFAFmfgOdCbR8zMbzFDGb1FqBBhdXUpcTQRYS1cQ==}
+ /@esbuild/linux-arm@0.19.4:
+ resolution: {integrity: sha512-z/4ArqOo9EImzTi4b6Vq+pthLnepFzJ92BnofU1jgNlcVb+UqynVFdoXMCFreTK7FdhqAzH0vmdwW5373Hm9pg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
@@ -2448,8 +2451,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ia32@0.19.3:
- resolution: {integrity: sha512-7XlCKCA0nWcbvYpusARWkFjRQNWNGlt45S+Q18UeS///K6Aw8bB2FKYe9mhVWy/XLShvCweOLZPrnMswIaDXQA==}
+ /@esbuild/linux-ia32@0.19.4:
+ resolution: {integrity: sha512-EGc4vYM7i1GRUIMqRZNCTzJh25MHePYsnQfKDexD8uPTCm9mK56NIL04LUfX2aaJ+C9vyEp2fJ7jbqFEYgO9lQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
@@ -2466,8 +2469,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-loong64@0.19.3:
- resolution: {integrity: sha512-qGTgjweER5xqweiWtUIDl9OKz338EQqCwbS9c2Bh5jgEH19xQ1yhgGPNesugmDFq+UUSDtWgZ264st26b3de8A==}
+ /@esbuild/linux-loong64@0.19.4:
+ resolution: {integrity: sha512-WVhIKO26kmm8lPmNrUikxSpXcgd6HDog0cx12BUfA2PkmURHSgx9G6vA19lrlQOMw+UjMZ+l3PpbtzffCxFDRg==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
@@ -2484,8 +2487,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-mips64el@0.19.3:
- resolution: {integrity: sha512-gy1bFskwEyxVMFRNYSvBauDIWNggD6pyxUksc0MV9UOBD138dKTzr8XnM2R4mBsHwVzeuIH8X5JhmNs2Pzrx+A==}
+ /@esbuild/linux-mips64el@0.19.4:
+ resolution: {integrity: sha512-keYY+Hlj5w86hNp5JJPuZNbvW4jql7c1eXdBUHIJGTeN/+0QFutU3GrS+c27L+NTmzi73yhtojHk+lr2+502Mw==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
@@ -2502,8 +2505,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-ppc64@0.19.3:
- resolution: {integrity: sha512-UrYLFu62x1MmmIe85rpR3qou92wB9lEXluwMB/STDzPF9k8mi/9UvNsG07Tt9AqwPQXluMQ6bZbTzYt01+Ue5g==}
+ /@esbuild/linux-ppc64@0.19.4:
+ resolution: {integrity: sha512-tQ92n0WMXyEsCH4m32S21fND8VxNiVazUbU4IUGVXQpWiaAxOBvtOtbEt3cXIV3GEBydYsY8pyeRMJx9kn3rvw==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
@@ -2520,8 +2523,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-riscv64@0.19.3:
- resolution: {integrity: sha512-9E73TfyMCbE+1AwFOg3glnzZ5fBAFK4aawssvuMgCRqCYzE0ylVxxzjEfut8xjmKkR320BEoMui4o/t9KA96gA==}
+ /@esbuild/linux-riscv64@0.19.4:
+ resolution: {integrity: sha512-tRRBey6fG9tqGH6V75xH3lFPpj9E8BH+N+zjSUCnFOX93kEzqS0WdyJHkta/mmJHn7MBaa++9P4ARiU4ykjhig==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
@@ -2538,8 +2541,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-s390x@0.19.3:
- resolution: {integrity: sha512-LlmsbuBdm1/D66TJ3HW6URY8wO6IlYHf+ChOUz8SUAjVTuaisfuwCOAgcxo3Zsu3BZGxmI7yt//yGOxV+lHcEA==}
+ /@esbuild/linux-s390x@0.19.4:
+ resolution: {integrity: sha512-152aLpQqKZYhThiJ+uAM4PcuLCAOxDsCekIbnGzPKVBRUDlgaaAfaUl5NYkB1hgY6WN4sPkejxKlANgVcGl9Qg==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
@@ -2556,8 +2559,8 @@ packages:
dev: true
optional: true
- /@esbuild/linux-x64@0.19.3:
- resolution: {integrity: sha512-ogV0+GwEmvwg/8ZbsyfkYGaLACBQWDvO0Kkh8LKBGKj9Ru8VM39zssrnu9Sxn1wbapA2qNS6BiLdwJZGouyCwQ==}
+ /@esbuild/linux-x64@0.19.4:
+ resolution: {integrity: sha512-Mi4aNA3rz1BNFtB7aGadMD0MavmzuuXNTaYL6/uiYIs08U7YMPETpgNn5oue3ICr+inKwItOwSsJDYkrE9ekVg==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
@@ -2574,8 +2577,8 @@ packages:
dev: true
optional: true
- /@esbuild/netbsd-x64@0.19.3:
- resolution: {integrity: sha512-o1jLNe4uzQv2DKXMlmEzf66Wd8MoIhLNO2nlQBHLtWyh2MitDG7sMpfCO3NTcoTMuqHjfufgUQDFRI5C+xsXQw==}
+ /@esbuild/netbsd-x64@0.19.4:
+ resolution: {integrity: sha512-9+Wxx1i5N/CYo505CTT7T+ix4lVzEdz0uCoYGxM5JDVlP2YdDC1Bdz+Khv6IbqmisT0Si928eAxbmGkcbiuM/A==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
@@ -2592,8 +2595,8 @@ packages:
dev: true
optional: true
- /@esbuild/openbsd-x64@0.19.3:
- resolution: {integrity: sha512-AZJCnr5CZgZOdhouLcfRdnk9Zv6HbaBxjcyhq0StNcvAdVZJSKIdOiPB9az2zc06ywl0ePYJz60CjdKsQacp5Q==}
+ /@esbuild/openbsd-x64@0.19.4:
+ resolution: {integrity: sha512-MFsHleM5/rWRW9EivFssop+OulYVUoVcqkyOkjiynKBCGBj9Lihl7kh9IzrreDyXa4sNkquei5/DTP4uCk25xw==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
@@ -2610,8 +2613,8 @@ packages:
dev: true
optional: true
- /@esbuild/sunos-x64@0.19.3:
- resolution: {integrity: sha512-Acsujgeqg9InR4glTRvLKGZ+1HMtDm94ehTIHKhJjFpgVzZG9/pIcWW/HA/DoMfEyXmANLDuDZ2sNrWcjq1lxw==}
+ /@esbuild/sunos-x64@0.19.4:
+ resolution: {integrity: sha512-6Xq8SpK46yLvrGxjp6HftkDwPP49puU4OF0hEL4dTxqCbfx09LyrbUj/D7tmIRMj5D5FCUPksBbxyQhp8tmHzw==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
@@ -2628,8 +2631,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-arm64@0.19.3:
- resolution: {integrity: sha512-FSrAfjVVy7TifFgYgliiJOyYynhQmqgPj15pzLyJk8BUsnlWNwP/IAy6GAiB1LqtoivowRgidZsfpoYLZH586A==}
+ /@esbuild/win32-arm64@0.19.4:
+ resolution: {integrity: sha512-PkIl7Jq4mP6ke7QKwyg4fD4Xvn8PXisagV/+HntWoDEdmerB2LTukRZg728Yd1Fj+LuEX75t/hKXE2Ppk8Hh1w==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
@@ -2646,8 +2649,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-ia32@0.19.3:
- resolution: {integrity: sha512-xTScXYi12xLOWZ/sc5RBmMN99BcXp/eEf7scUC0oeiRoiT5Vvo9AycuqCp+xdpDyAU+LkrCqEpUS9fCSZF8J3Q==}
+ /@esbuild/win32-ia32@0.19.4:
+ resolution: {integrity: sha512-ga676Hnvw7/ycdKB53qPusvsKdwrWzEyJ+AtItHGoARszIqvjffTwaaW3b2L6l90i7MO9i+dlAW415INuRhSGg==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
@@ -2664,8 +2667,8 @@ packages:
dev: true
optional: true
- /@esbuild/win32-x64@0.19.3:
- resolution: {integrity: sha512-FbUN+0ZRXsypPyWE2IwIkVjDkDnJoMJARWOcFZn4KPPli+QnKqF0z1anvfaYe3ev5HFCpRDLLBDHyOALLppWHw==}
+ /@esbuild/win32-x64@0.19.4:
+ resolution: {integrity: sha512-HP0GDNla1T3ZL8Ko/SHAS2GgtjOg+VmWnnYLhuTksr++EnduYB0f3Y2LzHsUwb2iQ13JGoY6G3R8h6Du/WG6uA==}
engines: {node: '>=12'}
cpu: [x64]
os: [win32]
@@ -3319,14 +3322,14 @@ packages:
eslint: ^8.48.0
dependencies:
'@next/eslint-plugin-next': 13.5.3
- '@typescript-eslint/eslint-plugin': 6.7.3(@typescript-eslint/parser@6.7.3)(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/parser': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/eslint-plugin': 6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
eslint: 8.50.0
eslint-config-prettier: 9.0.0(eslint@8.50.0)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
eslint-plugin-eslint-comments: 3.2.0(eslint@8.50.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
eslint-plugin-jest-dom: 5.1.0(eslint@8.50.0)
eslint-plugin-jsx-a11y: 6.7.1(eslint@8.50.0)
eslint-plugin-prettier: 5.0.0(eslint-config-prettier@9.0.0)(eslint@8.50.0)(prettier@3.0.3)
@@ -3358,11 +3361,11 @@ packages:
'@testing-library/jest-dom': 6.1.3(@types/jest@29.5.5)(jest@29.7.0)
'@testing-library/react': 14.0.0(react-dom@18.2.0)(react@18.2.0)
'@testing-library/user-event': 14.5.1(@testing-library/dom@9.3.3)
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
dotenv: 16.3.1
identity-obj-proxy: 3.0.0
- jest: 29.7.0(@types/node@20.7.0)(ts-node@10.9.1)
+ jest: 29.7.0(@types/node@20.8.2)(ts-node@10.9.1)
jest-axe: 8.0.0
jest-environment-jsdom: 29.7.0
jest-fail-on-console: 3.1.1
@@ -3404,14 +3407,14 @@ packages:
dotenv: 16.3.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- tsup: 7.2.0(@swc/core@1.3.90)(ts-node@10.9.1)(typescript@5.2.2)
+ tsup: 7.2.0(@swc/core@1.3.91)(ts-node@10.9.1)(typescript@5.2.2)
dev: true
/@fuels/vm-asm@0.36.1:
resolution: {integrity: sha512-MXtNDk0WXONIrDJOlk07+X7GegpCz2hfbAgSIWycOD0th2z1GndvMqBryiw/pTVDHLnHe+5TGIODLsprI4RiEw==}
dev: false
- /@graphql-codegen/cli@5.0.0(@types/node@20.7.0)(graphql@16.8.1)(typescript@5.2.2):
+ /@graphql-codegen/cli@5.0.0(@types/node@20.8.2)(graphql@16.8.1)(typescript@5.2.2):
resolution: {integrity: sha512-A7J7+be/a6e+/ul2KI5sfJlpoqeqwX8EzktaKCeduyVKgOLA6W5t+NUGf6QumBDXU8PEOqXk3o3F+RAwCWOiqA==}
hasBin: true
peerDependencies:
@@ -3429,12 +3432,12 @@ packages:
'@graphql-tools/apollo-engine-loader': 8.0.0(graphql@16.8.1)
'@graphql-tools/code-file-loader': 8.0.2(graphql@16.8.1)
'@graphql-tools/git-loader': 8.0.2(graphql@16.8.1)
- '@graphql-tools/github-loader': 8.0.0(@types/node@20.7.0)(graphql@16.8.1)
+ '@graphql-tools/github-loader': 8.0.0(@types/node@20.8.2)(graphql@16.8.1)
'@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1)
'@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1)
'@graphql-tools/load': 8.0.0(graphql@16.8.1)
- '@graphql-tools/prisma-loader': 8.0.1(@types/node@20.7.0)(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.0(@types/node@20.7.0)(graphql@16.8.1)
+ '@graphql-tools/prisma-loader': 8.0.1(@types/node@20.8.2)(graphql@16.8.1)
+ '@graphql-tools/url-loader': 8.0.0(@types/node@20.8.2)(graphql@16.8.1)
'@graphql-tools/utils': 10.0.6(graphql@16.8.1)
'@whatwg-node/fetch': 0.8.8
chalk: 4.1.2
@@ -3442,7 +3445,7 @@ packages:
debounce: 1.2.1
detect-indent: 6.1.0
graphql: 16.8.1
- graphql-config: 5.0.2(@types/node@20.7.0)(graphql@16.8.1)(typescript@5.2.2)
+ graphql-config: 5.0.2(@types/node@20.8.2)(graphql@16.8.1)(typescript@5.2.2)
inquirer: 8.2.6
is-glob: 4.0.3
jiti: 1.20.0
@@ -3729,7 +3732,7 @@ packages:
- utf-8-validate
dev: true
- /@graphql-tools/executor-http@1.0.2(@types/node@20.7.0)(graphql@16.8.1):
+ /@graphql-tools/executor-http@1.0.2(@types/node@20.8.2)(graphql@16.8.1):
resolution: {integrity: sha512-JKTB4E3kdQM2/1NEcyrVPyQ8057ZVthCV5dFJiKktqY9IdmF00M8gupFcW3jlbM/Udn78ickeUBsUzA3EouqpA==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -3740,7 +3743,7 @@ packages:
'@whatwg-node/fetch': 0.9.13
extract-files: 11.0.0
graphql: 16.8.1
- meros: 1.3.0(@types/node@20.7.0)
+ meros: 1.3.0(@types/node@20.8.2)
tslib: 2.6.2
value-or-promise: 1.0.12
transitivePeerDependencies:
@@ -3794,14 +3797,14 @@ packages:
- supports-color
dev: true
- /@graphql-tools/github-loader@8.0.0(@types/node@20.7.0)(graphql@16.8.1):
+ /@graphql-tools/github-loader@8.0.0(@types/node@20.8.2)(graphql@16.8.1):
resolution: {integrity: sha512-VuroArWKcG4yaOWzV0r19ElVIV6iH6UKDQn1MXemND0xu5TzrFme0kf3U9o0YwNo0kUYEk9CyFM0BYg4he17FA==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: '>=16.8.1'
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/executor-http': 1.0.2(@types/node@20.7.0)(graphql@16.8.1)
+ '@graphql-tools/executor-http': 1.0.2(@types/node@20.8.2)(graphql@16.8.1)
'@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@16.8.1)
'@graphql-tools/utils': 10.0.6(graphql@16.8.1)
'@whatwg-node/fetch': 0.9.13
@@ -3913,13 +3916,13 @@ packages:
tslib: 2.6.2
dev: true
- /@graphql-tools/prisma-loader@8.0.1(@types/node@20.7.0)(graphql@16.8.1):
+ /@graphql-tools/prisma-loader@8.0.1(@types/node@20.8.2)(graphql@16.8.1):
resolution: {integrity: sha512-bl6e5sAYe35Z6fEbgKXNrqRhXlCJYeWKBkarohgYA338/SD9eEhXtg3Cedj7fut3WyRLoQFpHzfiwxKs7XrgXg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: '>=16.8.1'
dependencies:
- '@graphql-tools/url-loader': 8.0.0(@types/node@20.7.0)(graphql@16.8.1)
+ '@graphql-tools/url-loader': 8.0.0(@types/node@20.8.2)(graphql@16.8.1)
'@graphql-tools/utils': 10.0.6(graphql@16.8.1)
'@types/js-yaml': 4.0.6
'@types/json-stable-stringify': 1.0.34
@@ -4005,7 +4008,7 @@ packages:
value-or-promise: 1.0.12
dev: false
- /@graphql-tools/url-loader@8.0.0(@types/node@20.7.0)(graphql@16.8.1):
+ /@graphql-tools/url-loader@8.0.0(@types/node@20.8.2)(graphql@16.8.1):
resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -4014,7 +4017,7 @@ packages:
'@ardatan/sync-fetch': 0.0.1
'@graphql-tools/delegate': 10.0.3(graphql@16.8.1)
'@graphql-tools/executor-graphql-ws': 1.1.0(graphql@16.8.1)
- '@graphql-tools/executor-http': 1.0.2(@types/node@20.7.0)(graphql@16.8.1)
+ '@graphql-tools/executor-http': 1.0.2(@types/node@20.8.2)(graphql@16.8.1)
'@graphql-tools/executor-legacy-ws': 1.0.3(graphql@16.8.1)
'@graphql-tools/utils': 10.0.6(graphql@16.8.1)
'@graphql-tools/wrap': 10.0.1(graphql@16.8.1)
@@ -4137,8 +4140,8 @@ packages:
intl-messageformat: 10.5.3
dev: false
- /@internationalized/number@3.2.1:
- resolution: {integrity: sha512-hK30sfBlmB1aIe3/OwAPg9Ey0DjjXvHEiGVhNaOiBJl31G0B6wMaX8BN3ibzdlpyRNE9p7X+3EBONmxtJO9Yfg==}
+ /@internationalized/number@3.3.0:
+ resolution: {integrity: sha512-PuxgnKE5NJMOGKUcX1QROo8jq7sW7UWLrL5B6Rfe8BdWgU/be04cVvLyCeALD46vvbAv3d1mUvyHav/Q9a237g==}
dependencies:
'@swc/helpers': 0.5.2
dev: false
@@ -4179,7 +4182,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
chalk: 4.1.2
jest-message-util: 29.7.0
jest-util: 29.7.0
@@ -4199,14 +4202,14 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
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: 29.7.0
- jest-config: 29.7.0(@types/node@20.7.0)(ts-node@10.9.1)
+ jest-config: 29.7.0(@types/node@20.8.2)(ts-node@10.9.1)
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -4240,7 +4243,7 @@ packages:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
jest-mock: 29.7.0
/@jest/expect-utils@29.7.0:
@@ -4264,7 +4267,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -4295,7 +4298,7 @@ packages:
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.19
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
chalk: 4.1.2
collect-v8-coverage: 1.0.2
exit: 0.1.2
@@ -4376,7 +4379,7 @@ packages:
dependencies:
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
'@types/yargs': 16.0.5
chalk: 4.1.2
dev: true
@@ -4388,7 +4391,7 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.4
'@types/istanbul-reports': 3.0.1
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
'@types/yargs': 17.0.24
chalk: 4.1.2
@@ -4406,7 +4409,7 @@ packages:
magic-string: 0.27.0
react-docgen-typescript: 2.2.2(typescript@5.2.2)
typescript: 5.2.2
- vite: 4.4.9(@types/node@20.7.0)
+ vite: 4.4.9(@types/node@20.8.2)
dev: true
/@jridgewell/gen-mapping@0.3.3:
@@ -4450,14 +4453,14 @@ packages:
/@juggle/resize-observer@3.4.0:
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
- /@luckycatfactory/esbuild-graphql-loader@3.8.1(esbuild@0.19.3)(graphql-tag@2.12.6)(graphql@16.8.1):
+ /@luckycatfactory/esbuild-graphql-loader@3.8.1(esbuild@0.19.4)(graphql-tag@2.12.6)(graphql@16.8.1):
resolution: {integrity: sha512-ovONIUSW6NAlCpiPMaVw4PpdFoO3Kqi8TGQ2hTtjKTQTdPpSOdekPI1ZRnwciTeUn0yCAQk7M2xdrbIZeTh6pw==}
peerDependencies:
esbuild: '>=0.8.26'
graphql: '>=16.8.1'
graphql-tag: ^2.11.0
dependencies:
- esbuild: 0.19.3
+ esbuild: 0.19.4
graphql: 16.8.1
graphql-tag: 2.12.6(graphql@16.8.1)
dev: false
@@ -4471,7 +4474,7 @@ packages:
optional: true
dependencies:
'@types/mdx': 2.0.7
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
dev: true
@@ -4684,15 +4687,11 @@ packages:
react-refresh: 0.11.0
schema-utils: 3.3.0
source-map: 0.7.4
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
dev: true
- /@radix-ui/colors@2.1.0:
- resolution: {integrity: sha512-gcBnxjS2u2c6thQz/9K1+Pt2ZYcm5WKU4SLi0emYkRmYbVUw+37rlc5wgLtYOsSsRP9nxVtbJJYj6WVO7UUmZg==}
- dev: false
-
- /@radix-ui/colors@3.0.0-rc.5:
- resolution: {integrity: sha512-SHAmQwvoRFuX1Kqo0ZwOwp/24GQqNMUaS3tWcR5RgDaC1ZpUKQfT+IbdzGm63OVzQhpyA4PRcjimM2UMa9SYTw==}
+ /@radix-ui/colors@3.0.0:
+ resolution: {integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==}
dev: false
/@radix-ui/number@1.0.1:
@@ -4705,7 +4704,7 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
- /@radix-ui/react-accessible-icon@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-accessible-icon@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-duVGKeWPSUILr/MdlPxV+GeULTc2rS1aihGdQ3N2qCUPMgxYLxvAsHJM3mCVLF8d5eK+ympmB22mb1F3a5biNw==}
peerDependencies:
'@types/react': '*'
@@ -4723,14 +4722,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==}
peerDependencies:
'@types/react': '*'
@@ -4749,22 +4748,22 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-alert-dialog@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-jbfBCRlKYlhbitueOAv7z74PXYeIQmWpKwm3jllsdkw7fGWNkxqP3v0nY9WmOzcPqpQuoorNtvViBgL46n5gVg==}
+ /@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-OrVIOcZL0tl6xibeuGt5/+UxoT2N27KCFOPjFyfXMnchxSHZ/OW7cCX2nGlIYJrbHK/fczPcFzAwvNBB6XBNMA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -4782,18 +4781,18 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dialog': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -4811,13 +4810,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-fXR5kbMan9oQqMuacfzlGG/SQMcmMlZ4wrvpckv8SgUulD0MMpspxJrxg/Gp/ISV3JfV1AeSWTYK9GvxA4ySwA==}
peerDependencies:
'@types/react': '*'
@@ -4835,15 +4834,15 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-avatar@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-9ToF7YNex3Ste45LrAeTlKtONI9yVRt/zOS158iilIkW5K/Apeyb/TUQlcEFTEFvWr8Kzdi2ZYrm1/suiXPajQ==}
+ /@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-kVK2K7ZD3wwj3qhle0ElXhOjbezIgyl2hVvgwfIdexL3rN6zJmy5AqqIf+D31lxVppdzV8CjAfZ6PklkmInZLw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -4860,17 +4859,17 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==}
peerDependencies:
'@types/react': '*'
@@ -4889,20 +4888,20 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
peerDependencies:
'@types/react': '*'
@@ -4921,20 +4920,20 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -4952,16 +4951,16 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.23)(react@18.2.0):
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -4973,10 +4972,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-R5XaDj06Xul1KGb+WP8qiOh7tKJNz2durpLBXAGZjSVtctcRFCuEvy2gtMwRJGePwQQE5nV77gs4FwRi8T+r2g==}
peerDependencies:
'@types/react': '*'
@@ -4995,18 +4994,18 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.23)(react@18.2.0):
+ /@radix-ui/react-context@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -5018,48 +5017,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@types/react': 18.2.23
- react: 18.2.0
-
- /@radix-ui/react-dialog@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-hJtRy/jPULGQZceSAP2Re6/4NpKo8im6V8P2hUqZsdFiSL8l35kYsw3qbRI6Ay5mQd2+wlLqje770eq+RJ3yZg==}
- peerDependencies:
- '@types/react': '*'
- '@types/react-dom': '*'
- react: '*'
- react-dom: '*'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- '@types/react-dom':
- optional: true
- react:
- optional: true
- react-dom:
- optional: true
- dependencies:
- '@babel/runtime': 7.22.15
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
- '@types/react-dom': 18.2.8
- aria-hidden: 1.2.3
+ '@types/react': 18.2.24
react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.5.5(@types/react@18.2.23)(react@18.2.0)
- dev: false
- /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
peerDependencies:
'@types/react': '*'
@@ -5078,26 +5039,26 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.23)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.24)(react@18.2.0)
dev: false
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.23)(react@18.2.0):
+ /@radix-ui/react-direction@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -5109,10 +5070,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
'@types/react': '*'
@@ -5131,16 +5092,16 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
'@types/react': '*'
@@ -5159,17 +5120,17 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==}
peerDependencies:
'@types/react': '*'
@@ -5188,19 +5149,19 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.23)(react@18.2.0):
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
'@types/react': '*'
@@ -5212,10 +5173,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
'@types/react': '*'
@@ -5233,15 +5194,15 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
peerDependencies:
'@types/react': '*'
@@ -5259,16 +5220,16 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-form@0.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-form@0.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-kgE+Z/haV6fxE5WqIXj05KkaXa3OkZASoTDy25yX2EIp/x0c54rOH/vFr5nOZTg7n7T1z8bSyXmiVIFP9bbhPQ==}
peerDependencies:
'@types/react': '*'
@@ -5287,18 +5248,18 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-label': 2.0.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-label': 2.0.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-OcUN2FU0YpmajD/qkph3XzMcK/NmSk9hGWnjV68p6QiZMgILugusgQwnLSDs3oFSJYGKf3Y49zgFedhGh04k9A==}
peerDependencies:
'@types/react': '*'
@@ -5317,21 +5278,21 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.23)(react@18.2.0):
+ /@radix-ui/react-id@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -5343,11 +5304,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-label@2.0.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-label@2.0.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==}
peerDependencies:
'@types/react': '*'
@@ -5365,14 +5326,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==}
peerDependencies:
'@types/react': '*'
@@ -5391,31 +5352,31 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.23)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.24)(react@18.2.0)
dev: false
- /@radix-ui/react-popover@1.0.6(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==}
+ /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -5433,27 +5394,27 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.23)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.24)(react@18.2.0)
dev: false
- /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
'@types/react': '*'
@@ -5472,21 +5433,21 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.23)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.24)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
peerDependencies:
'@types/react': '*'
@@ -5505,22 +5466,22 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.23)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.24)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
'@types/react': '*'
@@ -5538,13 +5499,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
peerDependencies:
'@types/react': '*'
@@ -5562,14 +5523,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
@@ -5587,15 +5548,15 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -5613,13 +5574,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-x+yELayyefNeKeTx4fjK6j99Fs6c4qKm3aY38G3swQVTN6xMpsrbigC0uHs2L//g8q4qR7qOcww8430jJmi2ag==}
peerDependencies:
'@types/react': '*'
@@ -5638,22 +5599,22 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
'@types/react': '*'
@@ -5672,20 +5633,20 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-b6PAgH4GQf9QEn8zbT2XUHpW5z8BzqEc7Kl11TwDrvuTrxlkcjTD5qa/bxgKr+nmuXKu4L/W5UZ4mlP/VG/5Gw==}
peerDependencies:
'@types/react': '*'
@@ -5705,20 +5666,20 @@ packages:
'@babel/runtime': 7.22.15
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
peerDependencies:
'@types/react': '*'
@@ -5738,31 +5699,76 @@ packages:
'@babel/runtime': 7.22.15
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
+ '@types/react-dom': 18.2.8
+ 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.24)(react@18.2.0)
+
+ /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: '*'
+ react-dom: '*'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ react:
+ optional: true
+ react-dom:
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.22.15
+ '@radix-ui/number': 1.0.1
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.23)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.24)(react@18.2.0)
+ dev: false
- /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
peerDependencies:
'@types/react': '*'
@@ -5780,13 +5786,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==}
peerDependencies:
'@types/react': '*'
@@ -5806,22 +5812,22 @@ packages:
'@babel/runtime': 7.22.15
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.23)(react@18.2.0):
+ /@radix-ui/react-slot@1.0.2(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -5833,11 +5839,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
peerDependencies:
'@types/react': '*'
@@ -5856,19 +5862,19 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==}
peerDependencies:
'@types/react': '*'
@@ -5887,20 +5893,20 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-fRLn227WHIBRSzuRzGJ8W+5YALxofH23y0MlPLddaIpLpCDqdE0NZlS2NRQDRiptfxDeeCjgFIpexB1/zkxDlw==}
peerDependencies:
'@types/react': '*'
@@ -5919,24 +5925,24 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
peerDependencies:
'@types/react': '*'
@@ -5955,18 +5961,18 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
peerDependencies:
'@types/react': '*'
@@ -5985,14 +5991,14 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==}
peerDependencies:
'@types/react': '*'
@@ -6011,19 +6017,19 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-tooltip@1.0.6(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-DmNFOiwEc2UDigsYj6clJENma58OelxD24O4IODoZ+3sQc3Zb+L8w1EP+y9laTuKCLAysPw4fD6/v0j4KNV8rg==}
+ /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -6041,24 +6047,24 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
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.23)(react@18.2.0):
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -6070,10 +6076,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.23)(react@18.2.0):
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -6085,11 +6091,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.23)(react@18.2.0):
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -6101,11 +6107,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.23)(react@18.2.0):
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -6117,10 +6123,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.23)(react@18.2.0):
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
'@types/react': '*'
@@ -6132,10 +6138,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.23)(react@18.2.0):
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -6148,10 +6154,10 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-use-size@1.0.1(@types/react@18.2.23)(react@18.2.0):
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -6163,11 +6169,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@types/react': 18.2.24
react: 18.2.0
- /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
'@types/react': '*'
@@ -6185,8 +6191,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.22.15
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6196,8 +6202,8 @@ packages:
dependencies:
'@babel/runtime': 7.22.15
- /@radix-ui/themes@1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-VnNeanSxHQurSgwQe5Z3zNZP5SrwhRY+RW97FPZe7TOJGpa+rpDHLDR9vourSsEGxsgrtTXHJaoII1pyIXDi8A==}
+ /@radix-ui/themes@2.0.0(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-XIJkXLzIOerrmk24wpyYnPnHC+z4KdH4uFGKBcMqKSSAly9GuBDWpscdxaEja1AvOJJChpmONsD768M/GOVpfg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -6213,76 +6219,77 @@ packages:
react-dom:
optional: true
dependencies:
- '@radix-ui/colors': 2.1.0
+ '@radix-ui/colors': 3.0.0
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-accessible-icon': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-alert-dialog': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-aspect-ratio': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-avatar': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-checkbox': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-context-menu': 2.1.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-form': 0.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-hover-card': 1.0.7(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-popover': 1.0.6(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-radio-group': 1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slider': 1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.23)(react@18.2.0)
- '@radix-ui/react-switch': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-tooltip': 1.0.6(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.23
+ '@radix-ui/react-accessible-icon': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-alert-dialog': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-aspect-ratio': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-avatar': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-checkbox': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-context-menu': 2.1.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-form': 0.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-hover-card': 1.0.7(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-radio-group': 1.1.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-select': 2.0.0(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slider': 1.1.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-switch': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-tooltip': 1.0.7(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.24)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.24
'@types/react-dom': 18.2.8
classnames: 2.3.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/breadcrumbs@3.5.5(react@18.2.0):
- resolution: {integrity: sha512-8O+ntzq8yxmsXVQmLTJGovSespTAuJ17PWvgIL8HsYh7FOU/TRM/rhileaDlZBlIpZtI/hbs+d9MuC6ZOXkl7w==}
+ /@react-aria/breadcrumbs@3.5.6(react@18.2.0):
+ resolution: {integrity: sha512-VUdppXcTU09J6Jbg0VYCitOaePm74Q9EywKgU8OTZ93vZf2odSDVf1jjO9B2kh9a84OGhZyi5v1HRkrbZFHWLQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/link': 3.5.4(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/breadcrumbs': 3.6.2(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/link': 3.6.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/breadcrumbs': 3.7.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/button@3.8.2(react@18.2.0):
- resolution: {integrity: sha512-d1Fgx2XrSk8WMFtGu/ta76m5Rx+f2CuHY1k6nD45QciszD26GbzHdLOSjxev97M6vHj/BOsGL01XcwmTL4fZHA==}
+ /@react-aria/button@3.8.3(react@18.2.0):
+ resolution: {integrity: sha512-e7J97j0meHUhQy0YmJh+kLTl0vUJSoD9mmdnlHIXm1RRcBkH9CDScECUuyPetB330nUvS03eTN6pQ5OmrFtJTQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/toggle': 3.6.2(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/toggle': 3.6.3(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/calendar@3.5.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-n/VrAJlKmsNrBKCPMI3tmCqpV38+Cihtinzp3yp8DeL44WH3IJij6aftkEcI7pIVNajY6vYLS9BbjscvIdg+fw==}
+ /@react-aria/calendar@3.5.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-3gGiI2arrGQtlPD9633l00TR4y5dj9IMFapEiCDuwVwNSCsnH8aiz/emg+3hGFq86QoyvkFBvnKmezJIVKfPkA==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6293,40 +6300,40 @@ packages:
optional: true
dependencies:
'@internationalized/date': 3.5.0
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
'@react-aria/live-announcer': 3.3.1
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/calendar': 3.4.0(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/calendar': 3.4.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/calendar': 3.4.1(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/calendar': 3.4.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/checkbox@3.11.0(react@18.2.0):
- resolution: {integrity: sha512-3C5ON4IvFu69LihMOB6Y2Zr4T0zjkuPfQ6HrHuS9SiFU+IZuv1z38K/bXk7UkmZoiLtWLloNA5XKNCwf+Y+6Xw==}
+ /@react-aria/checkbox@3.11.1(react@18.2.0):
+ resolution: {integrity: sha512-lg6vwUjxrBgh8ZOBfiI/BI4DQpH6nTzYEc7abjVIdp3Vgwvr6gnllxw58+JcsRVa/Iw2BRyWW0KZiKB1e/pb7Q==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/toggle': 3.8.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/checkbox': 3.5.0(react@18.2.0)
- '@react-stately/toggle': 3.6.2(react@18.2.0)
- '@react-types/checkbox': 3.5.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/toggle': 3.8.1(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/checkbox': 3.5.1(react@18.2.0)
+ '@react-stately/toggle': 3.6.3(react@18.2.0)
+ '@react-types/checkbox': 3.5.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/combobox@3.6.4(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-L6KAB9P7ztyKM8B3WISRtVFdz9R66ZA6h+m128JmmTc3DrvSs0lxQMZIKfFuh31IZfAe62p2IwDlR1UbhXffVg==}
+ /@react-aria/combobox@3.7.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-rrTptAsugPzcO7MqWMIuSpoNYpLBUOaGeRD6pOiNNPm/lAooZSYQg1AxM2m7pdE2gQQsiLInRbq/KvcfYMnDfQ==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6336,28 +6343,28 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/listbox': 3.10.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/listbox': 3.11.0(react-dom@18.2.0)(react@18.2.0)
'@react-aria/live-announcer': 3.3.1
- '@react-aria/menu': 3.10.2(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/overlays': 3.17.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/textfield': 3.12.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/combobox': 3.7.0(react@18.2.0)
- '@react-stately/layout': 3.13.1(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/combobox': 3.8.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/menu': 3.11.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/overlays': 3.18.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/textfield': 3.12.1(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/combobox': 3.7.1(react@18.2.0)
+ '@react-stately/layout': 3.13.2(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/combobox': 3.8.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/datepicker@3.7.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-zekxxC2dpQIEFFb2Yj6odwgBb9s81g3V7VwjUilkthW2vaVzTjWTZTUYffgcmbfVv++ZGtvlY7iSSTLN7+54Og==}
+ /@react-aria/datepicker@3.8.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-JCzzlGbOI46IEkEgD5RPZRzpZBzgVYQnjhGw592zyl/5C68/jmNqyblF3mQxeD7qq4lFwrsNYXRCu23RiDIoSA==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6368,27 +6375,27 @@ packages:
optional: true
dependencies:
'@internationalized/date': 3.5.0
- '@internationalized/number': 3.2.1
+ '@internationalized/number': 3.3.0
'@internationalized/string': 3.1.1
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/spinbutton': 3.5.2(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/datepicker': 3.7.0(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/calendar': 3.4.0(react@18.2.0)
- '@react-types/datepicker': 3.6.0(react@18.2.0)
- '@react-types/dialog': 3.5.5(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/spinbutton': 3.5.3(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/datepicker': 3.8.0(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/calendar': 3.4.1(react@18.2.0)
+ '@react-types/datepicker': 3.6.1(react@18.2.0)
+ '@react-types/dialog': 3.5.6(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/dialog@3.5.5(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-nfh1fg5h8jEe8ktoq1YrlOHuyqoZgZOCYh0PourwfY26Pl7BxFrMyG7HCnY2mjDxnXLJLULONVmUN3WxbgzhxQ==}
+ /@react-aria/dialog@3.5.6(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-X1bVcDHvBG0mVyPcP4L1C42+6eynTN9QDww6aHmHJkyJMv6xYqlM7/MieKoc3BHO3XS6agMWRll4JaSgOzU1iA==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6398,19 +6405,19 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/overlays': 3.17.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/overlays': 3.6.2(react@18.2.0)
- '@react-types/dialog': 3.5.5(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/overlays': 3.18.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/overlays': 3.6.3(react@18.2.0)
+ '@react-types/dialog': 3.5.6(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/dnd@3.4.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-eugNj9/blh5niEeDuhXLsb3juhateoa+t+2u3+awUgWS4jq/csfFHdjT2FPtTS4DVZvZ9sH/JuC1Sp/yxIvhjA==}
+ /@react-aria/dnd@3.4.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-F6+4SyM77Ax+cg2Idr71auWs8nb84HaVBFGjq47fFyTRgkjwupagwpnySkYYIt6E7evDrQRYprJ9wEN4c7b+8A==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6421,38 +6428,38 @@ packages:
optional: true
dependencies:
'@internationalized/string': 3.1.1
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
'@react-aria/live-announcer': 3.3.1
- '@react-aria/overlays': 3.17.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-aria/visually-hidden': 3.8.4(react@18.2.0)
- '@react-stately/dnd': 3.2.4(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/overlays': 3.18.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-aria/visually-hidden': 3.8.5(react@18.2.0)
+ '@react-stately/dnd': 3.2.5(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/focus@3.14.1(react@18.2.0):
- resolution: {integrity: sha512-2oVJgn86Rt7xgbtLzVlrYb7MZHNMpyBVLMMGjWyvjH5Ier2bgZ6czJJmm18Xe4kjlDHN0dnFzBvoRoTCWkmivA==}
+ /@react-aria/focus@3.14.2(react@18.2.0):
+ resolution: {integrity: sha512-ozP3g+C/fp3BAgI7dhFgBSzJCOwlW+pKaUlv7ay+btzXX0nc3jgt26uPSDr+Yv2tQcHcQnxfP0kHlXLS7to+lA==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
clsx: 1.2.1
react: 18.2.0
dev: false
- /@react-aria/grid@3.8.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-AaUVDY+oonIISDUzEH+1v6ncv7jnWog1zhBQ+sRFie+8apogv/M0Uj7sSX/lse+K42jIXK67472vz2+s0AJVEA==}
+ /@react-aria/grid@3.8.3(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Q1n6LP5JHxKW1rScDILrgDhGlRn/JJSD1mCutdZA3smi1dIlHm6smS4Cpy6Zl7RRppzeIC5fcy+QotpgF26oZg==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6462,26 +6469,26 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
'@react-aria/live-announcer': 3.3.1
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/grid': 3.8.1(react@18.2.0)
- '@react-stately/selection': 3.13.4(react@18.2.0)
- '@react-stately/virtualizer': 3.6.2(react@18.2.0)
- '@react-types/checkbox': 3.5.1(react@18.2.0)
- '@react-types/grid': 3.2.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/grid': 3.8.2(react@18.2.0)
+ '@react-stately/selection': 3.14.0(react@18.2.0)
+ '@react-stately/virtualizer': 3.6.3(react@18.2.0)
+ '@react-types/checkbox': 3.5.2(react@18.2.0)
+ '@react-types/grid': 3.2.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/gridlist@3.6.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Owz21N1iB37iDSPrkPzK6cUoLCn4ch6TC2SIbAst65NytQP5oF+l+u1qHhqFvJC5qdEcA6yIQs3wioax1EdqqA==}
+ /@react-aria/gridlist@3.7.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-3hyskES7TldMiub/eWMTx3hvl7CDO2Jc9UW5+kbqFqtp/E0tVoXtIRAqFC6JsWzlgu3rFUkHm8sfjXprOOIkuQ==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6491,22 +6498,22 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/grid': 3.8.2(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/list': 3.9.2(react@18.2.0)
- '@react-types/checkbox': 3.5.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/grid': 3.8.3(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/list': 3.10.0(react@18.2.0)
+ '@react-types/checkbox': 3.5.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/i18n@3.8.2(react@18.2.0):
- resolution: {integrity: sha512-WsdByq3DmqEhr8sOdooVcDoS0CGGv+7cegZmmpw5VfUu0f0+0y7YBj/lRS9RuEqlgvSH+K3sPW/+0CkjM/LRGQ==}
+ /@react-aria/i18n@3.8.3(react@18.2.0):
+ resolution: {integrity: sha512-Q3jF+cwXfFIJFeCMX5M+JX8qcNm3TEoWFrcFGfYoKnq740zaWosuuAaGh2iSfUUooDtwGG6X6uUJbZfBIK4j4w==}
peerDependencies:
react: '*'
peerDependenciesMeta:
@@ -6515,17 +6522,17 @@ packages:
dependencies:
'@internationalized/date': 3.5.0
'@internationalized/message': 3.1.1
- '@internationalized/number': 3.2.1
+ '@internationalized/number': 3.3.0
'@internationalized/string': 3.1.1
'@react-aria/ssr': 3.8.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/interactions@3.18.0(react@18.2.0):
- resolution: {integrity: sha512-V96uRZTVe2KcU5HW+r2cuUcLIfo0KuPOchywk9r48xtJC8u//sv5fAo0LMX6AgsQJ7bV09JO8nDqmZP0gkRElQ==}
+ /@react-aria/interactions@3.19.0(react@18.2.0):
+ resolution: {integrity: sha512-nJ8VTmEOYJAAvV7wzeQVnamxWd3j16hGAzG++onjhluSWWKO1jMRN6WG9LDwvT5mBI0VYwf7JdVB3QBaCa9fsQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
@@ -6533,63 +6540,67 @@ packages:
optional: true
dependencies:
'@react-aria/ssr': 3.8.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/label@3.7.0(react@18.2.0):
- resolution: {integrity: sha512-OEBFKp4zSS9O/IPoVUU/YdThQWI4EXOuUO8z2mog9I3wU1FQHEASGtqkg0fzxhBh8LYnPIl56y02dIBJ7eyxlA==}
+ /@react-aria/label@3.7.1(react@18.2.0):
+ resolution: {integrity: sha512-/MMHGXVlz6HvZyPDX9mu4an8rM8v5t68jGnyBoaAL8oultWHI1bVRJ/Ro8rT0zY/68m5EWtwNYNyvcZ2X3JZ/w==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/label': 3.8.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/label': 3.8.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/link@3.5.4(react@18.2.0):
- resolution: {integrity: sha512-ZHDxf9gbaqit1akkBRwnlMQZH/h/CfKe+rV+Cvw9cKrAgvJXfGHfNQVI3YxoMU7kSTOooKnzXOGWxoMJ11ql8w==}
+ /@react-aria/link@3.6.0(react@18.2.0):
+ resolution: {integrity: sha512-AH854yRtccwIRH6wbWf5P5daBNWzn41xVt6FbEG+sOLUmWH2anWUzU3Nz2qVBOuv/fxYrnfuXzpG7h1st15lwQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/link': 3.4.5(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/link': 3.5.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/listbox@3.10.2(react@18.2.0):
- resolution: {integrity: sha512-7w75yGyNUGwxB8dSNuXTe7Yd+ab6VmtpROLIhf3b92BPE51oy77i3/Dy1F8IdZMTUqOFd5Nm8K0Z0ZSjOchDfQ==}
+ /@react-aria/listbox@3.11.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-N82ISTmnUWsp2Bmo/Kjy+3l/1/CSfRl/y6U3vUMZzEc+v4ptgWscUoWMpqzDrBpYhbVx1RdFuFJYOYOv4M5QYQ==}
peerDependencies:
react: '*'
+ react-dom: '*'
peerDependenciesMeta:
react:
optional: true
+ react-dom:
+ optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/list': 3.9.2(react@18.2.0)
- '@react-types/listbox': 3.4.4(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/list': 3.10.0(react@18.2.0)
+ '@react-types/listbox': 3.4.5(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
/@react-aria/live-announcer@3.3.1:
@@ -6598,8 +6609,8 @@ packages:
'@swc/helpers': 0.5.2
dev: false
- /@react-aria/menu@3.10.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-qqnOj6gU7GQAvdTBM9Y+lclaKEciVwfYylmJRu8RBt72jceSBkdR78et9ZLaNMwVPMYCEUxbOv8vvL7VoRKddg==}
+ /@react-aria/menu@3.11.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-rPHMHPkmdJdatxlvV4lYFA4z5d9HSlBS9b0LUsL5iheoyXIgdiD/WF4y6W5ye+j4ZnZTO1lA6hIopIcSE/G/vg==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6609,40 +6620,40 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/overlays': 3.17.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/menu': 3.5.5(react@18.2.0)
- '@react-stately/tree': 3.7.2(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/menu': 3.9.4(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/overlays': 3.18.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/menu': 3.5.6(react@18.2.0)
+ '@react-stately/tree': 3.7.3(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/menu': 3.9.5(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/meter@3.4.5(react@18.2.0):
- resolution: {integrity: sha512-ly0x8rHsBW/pGGyQ8MF5qW1SiyPmD/7HGL3La9sJ9Gd8bGqz5CM7MCbPZN27DEwAEdu2BFqAaOKzhxDt2AU65g==}
+ /@react-aria/meter@3.4.6(react@18.2.0):
+ resolution: {integrity: sha512-oHt/4e954v6k08v53omnBzP8Bot50EKdIz41wqalnDOtlml8Zle8MMKSp2tDdh89atEE67B55PzpYvPn041K9w==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/progress': 3.4.5(react@18.2.0)
- '@react-types/meter': 3.3.4(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/progress': 3.4.6(react@18.2.0)
+ '@react-types/meter': 3.3.5(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/numberfield@3.8.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-yfytm+cuKBFlszCL0RCuEKOxyX3xW320MN1RotrfGxMbalssEJyj4a0sBPi2NteG6YtvzOrzwHvRdQP5FjSu5w==}
+ /@react-aria/numberfield@3.9.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-BsHr4WfyE4AqLiQp6n562ufHPjMRsCwNHleUjKCKONjb/bnOrjsXa8DohvG+bFjIYhof/hlhdPQ07+QqzTsk3A==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6652,24 +6663,24 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
'@react-aria/live-announcer': 3.3.1
- '@react-aria/spinbutton': 3.5.2(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/textfield': 3.12.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/numberfield': 3.6.1(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/numberfield': 3.6.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/textfield': 3.8.0(react@18.2.0)
+ '@react-aria/spinbutton': 3.5.3(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/textfield': 3.12.1(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/numberfield': 3.6.2(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/numberfield': 3.6.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/textfield': 3.8.1(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/overlays@3.17.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-wfQ00llAIMLDtIid+0MvNqvbLP6Fqi2/hfvAxhDaRqrkiARwuCAclWNCIdCzF599IpZOMcjjBgIILEXdfA0ziw==}
+ /@react-aria/overlays@3.18.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-2y1QlDgR3CNN0koFFreSFlWgMuzhdZQ9CAVw6vUJaL5qZcIcS8H/1AzjNj81/sGrY2+iSauPpLNOh37lqDkKqQ==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6679,80 +6690,80 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
'@react-aria/ssr': 3.8.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-aria/visually-hidden': 3.8.4(react@18.2.0)
- '@react-stately/overlays': 3.6.2(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/overlays': 3.8.2(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-aria/visually-hidden': 3.8.5(react@18.2.0)
+ '@react-stately/overlays': 3.6.3(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/overlays': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/progress@3.4.5(react@18.2.0):
- resolution: {integrity: sha512-9i/+v3BVX79kwSiy+K9cozLSXjO5jb3WCZTm2O7KaZaLq5beCnSVuZdYxRo8C22ooeh0TXdYEl6Duujh86k+yg==}
+ /@react-aria/progress@3.4.6(react@18.2.0):
+ resolution: {integrity: sha512-+kvP1kpDUCP7ykj58KFdtp/L75B+bA19LjTLLQJ6dZSxYWVsCFlEI2a6esQkpGGHlXEbhfl60lRmLVaeZyjrKw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/progress': 3.4.3(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/progress': 3.5.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/radio@3.8.0(react@18.2.0):
- resolution: {integrity: sha512-KvE7UeSDVgdOVLNt/RzTCroMRbVcnn6QZHp0fde9HjQV14Umebyu/fWAmfvIMe/th1Lelf6NtliGXOAZpfOLrg==}
+ /@react-aria/radio@3.8.1(react@18.2.0):
+ resolution: {integrity: sha512-RliB3qQ4/WhcZIN2XpQzDIO/Yhzei0OYYFYZKHLGLaFIiVI2phDZQLhQc35HEBBw3TvHnaO5NzGQmZ9zt5p5Jg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/radio': 3.9.0(react@18.2.0)
- '@react-types/radio': 3.5.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/radio': 3.9.1(react@18.2.0)
+ '@react-types/radio': 3.5.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/searchfield@3.5.5(react@18.2.0):
- resolution: {integrity: sha512-/CL4H5X8kqk3237CZ0RSnnR6KMeI6xzdr0lqwL1m9d2NkTBcTgm/0xa8JRxVi/4aKWSvApbcPv/8iF05FA1sAQ==}
+ /@react-aria/searchfield@3.5.6(react@18.2.0):
+ resolution: {integrity: sha512-bmciGi8jS2186lPgXdYUJ7ytlSkwwS3pvTAlJOC/VAytQ6fw4AUI0UhoYX9MIV5uc0IqXaL3zT6A63hXiqUwCw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/textfield': 3.12.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/searchfield': 3.4.5(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/searchfield': 3.5.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/textfield': 3.12.1(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/searchfield': 3.4.6(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/searchfield': 3.5.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/select@3.12.1(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-RBEbay8RGUuwxoKLKtWmL/3MU8Wk2xmofg9PdYGAcgkq88Ucyt+ejKNnRLTm/dOLgwgUcreHhEDEe5QrYQQqbg==}
+ /@react-aria/select@3.13.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-78a4uT/ugdHtNoAgwD2BRrK7lQWs/v2v9YO2veLFBJx49bbb5Bv3DvZ7jpIyY7DvCTwwgXxgMeff6b/2us0Mtw==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6762,80 +6773,84 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/listbox': 3.10.2(react@18.2.0)
- '@react-aria/menu': 3.10.2(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-aria/visually-hidden': 3.8.4(react@18.2.0)
- '@react-stately/select': 3.5.4(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/select': 3.8.3(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/listbox': 3.11.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/menu': 3.11.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-aria/visually-hidden': 3.8.5(react@18.2.0)
+ '@react-stately/select': 3.5.5(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/select': 3.8.4(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/selection@3.16.2(react@18.2.0):
- resolution: {integrity: sha512-C6zS5F1W38pukaMTFDTKbMrEvKkGikrXF94CtyxG1EI6EuZaQg1olaEeMCc3AyIb+4Xq+XCwjZuuSnS03qdVGQ==}
+ /@react-aria/selection@3.17.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-Dmf2ri+czVDVIBdEq9KTbIqbohDaENnCUDCPqHmh87oJhrIZhgy29zsZIR5/j+zJzD59Ogy63weZ4yFnMzFtEw==}
peerDependencies:
react: '*'
+ react-dom: '*'
peerDependenciesMeta:
react:
optional: true
+ react-dom:
+ optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/selection': 3.13.4(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/selection': 3.14.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/separator@3.3.5(react@18.2.0):
- resolution: {integrity: sha512-gW/WgQy9LPTqZtN/DlmC1qcA1liCO1hdS9SBvnYbA6MymKUOyqz6Ui6oSkN+LlAHcZBtnepTeDoClGMWAQmL5g==}
+ /@react-aria/separator@3.3.6(react@18.2.0):
+ resolution: {integrity: sha512-OcGs6v8/iIlQWr1pnkyl2KeC9o9N/UlVBL5j71kvb5vsbmgj2hu4Hu/Nih1fiAusSYKPSz/qODsZYAxuEwmIIg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/slider@3.7.0(react@18.2.0):
- resolution: {integrity: sha512-aQ3d89M3scWIBJjpjQ0OxeNGuklxX9gxeAhSvYkhsyFd37DCBNNtHIiLfPzQpsSJOjSJofBsEzrG4y+JHGcrdg==}
+ /@react-aria/slider@3.7.1(react@18.2.0):
+ resolution: {integrity: sha512-9fm2pszF+Ljf4fy9meJLh7zN+IwQkng+y2M5v1mg9BagOmupjoEYTPrZ5grrnJuD7FMgoXQ5sCr/kvHSZyfJnQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/radio': 3.9.0(react@18.2.0)
- '@react-stately/slider': 3.4.2(react@18.2.0)
- '@react-types/radio': 3.5.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/slider': 3.6.1(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/radio': 3.9.1(react@18.2.0)
+ '@react-stately/slider': 3.4.3(react@18.2.0)
+ '@react-types/radio': 3.5.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/slider': 3.6.2(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/spinbutton@3.5.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-qD1yjCE7dMdiyFMV7DPz/+qn7lLdU2BqMx/aT4eN2RMcrjSw5AIc1IYsfwQGg9XkQw7FWSRxDud+EuuGSzMB2w==}
+ /@react-aria/spinbutton@3.5.3(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-f1802nJuJ/jDIpjZiQsj6jtpl0rXxb00briB54Zxeu6l+6OSQwyeMK/bcZo4n1fT/3qIu/WmVigZgDhjiYcucQ==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6845,11 +6860,11 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/i18n': 3.8.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
'@react-aria/live-announcer': 3.3.1
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6868,23 +6883,23 @@ packages:
react: 18.2.0
dev: false
- /@react-aria/switch@3.5.4(react@18.2.0):
- resolution: {integrity: sha512-u5nkxLuToz7qsRoH8qiZSe4rdKJ7LJK5AoEVQzlqlw2oLTcaitRpnYYNfGJuMasAAnmdIx6SJ60gb3vly+5SMQ==}
+ /@react-aria/switch@3.5.5(react@18.2.0):
+ resolution: {integrity: sha512-5s20Jb5fYhgsctmmeydSoVB1IJmsHQ3BQ9fp4mlCr723lPMH9iEhBScCWqxi4b7DcJ9JBDUmbf65eyzh122JBQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/toggle': 3.8.0(react@18.2.0)
- '@react-stately/toggle': 3.6.2(react@18.2.0)
- '@react-types/switch': 3.4.1(react@18.2.0)
+ '@react-aria/toggle': 3.8.1(react@18.2.0)
+ '@react-stately/toggle': 3.6.3(react@18.2.0)
+ '@react-types/switch': 3.4.2(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/table@3.12.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-Pso4AaeIdBRMguq/ijYnNzEqFhMcV/TxxpfR/9V3wRVfTzl1Z1wA99T3QBxoaT5ZjR8JIBYtzF1ErNZ0c1vsAw==}
+ /@react-aria/table@3.13.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-8X1xtTqQfWphETEnlGgRgBAha4eGRkCqPrA4EwYgU2EG66IJbnQQKYXwYujTQ03O4QKqiBuEvErkZWh8TyyvKQ==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6894,50 +6909,54 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/grid': 3.8.2(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/grid': 3.8.3(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
'@react-aria/live-announcer': 3.3.1
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-aria/visually-hidden': 3.8.4(react@18.2.0)
- '@react-stately/collections': 3.10.1(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-aria/visually-hidden': 3.8.5(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
'@react-stately/flags': 3.0.0
- '@react-stately/table': 3.11.1(react@18.2.0)
- '@react-stately/virtualizer': 3.6.2(react@18.2.0)
- '@react-types/checkbox': 3.5.1(react@18.2.0)
- '@react-types/grid': 3.2.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/table': 3.8.1(react@18.2.0)
+ '@react-stately/table': 3.11.2(react@18.2.0)
+ '@react-stately/virtualizer': 3.6.3(react@18.2.0)
+ '@react-types/checkbox': 3.5.2(react@18.2.0)
+ '@react-types/grid': 3.2.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/table': 3.9.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/tabs@3.7.0(react@18.2.0):
- resolution: {integrity: sha512-st0fdbnTizYu+gvJ+UAbhKdEdUA2rPodFl7Knxo8FidM1lOgf6B6gQowUyvLAcLpxVRpJmhbePVU+uzJTZajog==}
+ /@react-aria/tabs@3.8.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-G0LHKZoHXdspuMsogZh60EnO8K8xuSCO+0zspx2aoMT3ES5SpcSO9kZIfOiMDB5rJM6UpZGcZQV6YJv+ec02ww==}
peerDependencies:
react: '*'
+ react-dom: '*'
peerDependenciesMeta:
react:
optional: true
+ react-dom:
+ optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/list': 3.9.2(react@18.2.0)
- '@react-stately/tabs': 3.6.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/tabs': 3.3.2(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/list': 3.10.0(react@18.2.0)
+ '@react-stately/tabs': 3.6.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/tabs': 3.3.3(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/tag@3.1.2(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-tsgl7K/+AkZKa89mWZVqTxgrEQLeCuV6aOric3X4CH9Gh5PgSrQIb5Nslx9+OT5b/PwesFkqa422TOPki5bQLQ==}
+ /@react-aria/tag@3.2.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-DMoXF3ryoWgRMYGquUoctlpRoUqQdyNkphdprH+09wteU0Xe/VId4dB8AfUowD4WBqiEDEvzw84li8Flod28Iw==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -6947,76 +6966,76 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/gridlist': 3.6.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/list': 3.9.2(react@18.2.0)
- '@react-types/button': 3.8.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/gridlist': 3.7.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/list': 3.10.0(react@18.2.0)
+ '@react-types/button': 3.9.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@react-aria/textfield@3.12.0(react@18.2.0):
- resolution: {integrity: sha512-okvCR7vPrSx/0AW+YxPWo3ucJkgRuX77QWVeYBXhQiBKooHEYSfaceMgMZc/KS5HGZsY8bEKpGOIVkZBitzQsg==}
+ /@react-aria/textfield@3.12.1(react@18.2.0):
+ resolution: {integrity: sha512-TOSpkspRvudUyYanvKjnZzj1q1MoyMUAtSDE+sn5IrB5R4XmwuIR9Wm3s8UxPJ/Wcnrb322s4k6J+7YpR5haWQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/textfield': 3.8.0(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/textfield': 3.8.1(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/toggle@3.8.0(react@18.2.0):
- resolution: {integrity: sha512-HQgx8rBEwGsVyJKU47GTZcWWn3Kv0DgZfUY/lXkdhMFf14/NWTRpJEuKRfEut+/wVFbcNcv9WDT7fEe7yTvGWg==}
+ /@react-aria/toggle@3.8.1(react@18.2.0):
+ resolution: {integrity: sha512-TGJdKIVcPHVH8zJ7RRTa5bGwO1+x6Sx3CM91V9O0Fhd5PlHxfob/eTrGMOCdmPeBUMd7rRBMfmGuQnp5e6iw9A==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/toggle': 3.6.2(react@18.2.0)
- '@react-types/checkbox': 3.5.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/switch': 3.4.1(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/toggle': 3.6.3(react@18.2.0)
+ '@react-types/checkbox': 3.5.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/switch': 3.4.2(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/tooltip@3.6.2(react@18.2.0):
- resolution: {integrity: sha512-y8dAxRrL4lPmYrg+UoKbHymeIuOxBq994XXWbHw2dlM4ZnBfXAaFWYuV9Pfp+JXk9Oi1atJYc3O70Z9TmgXGVw==}
+ /@react-aria/tooltip@3.6.3(react@18.2.0):
+ resolution: {integrity: sha512-6zXQ5YGNJivWOwyudx5YEpBMvRam7fWvD9/zUhVdxYN2T3XsuZhFkNlUhJJiQFTwheH+leO2rvs2Q0o/SENiOw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/tooltip': 3.4.4(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/tooltip': 3.4.4(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/tooltip': 3.4.5(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/tooltip': 3.4.5(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-aria/utils@3.20.0(react@18.2.0):
- resolution: {integrity: sha512-TpvP9fw2/F0E+D05+S1og88dwvmVSLVB4lurVAodN1E6rCZyw+M/SHlCez0I7j1q9ZWAnVjRuHpBIRG5heX1Ug==}
+ /@react-aria/utils@3.21.0(react@18.2.0):
+ resolution: {integrity: sha512-0ZNaXgvbWnqqiG7FB0qhAIENN7CmBU30AnyTzz5ZZgvJexUJkhd2GMjvTqrBZ6zSjeMpUEIKg5PUA1eptGRPww==}
peerDependencies:
react: '*'
peerDependenciesMeta:
@@ -7024,31 +7043,31 @@ packages:
optional: true
dependencies:
'@react-aria/ssr': 3.8.0(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
clsx: 1.2.1
react: 18.2.0
dev: false
- /@react-aria/visually-hidden@3.8.4(react@18.2.0):
- resolution: {integrity: sha512-TRDtrndL/TiXjVac7o1vEmrHltSPugH0B6uqc1KRCSspFa1vg9tsgh9/N+qCXrEHynfNyK9FPjI70pAH+PXcqw==}
+ /@react-aria/visually-hidden@3.8.5(react@18.2.0):
+ resolution: {integrity: sha512-uJcYQ3FSuJIIvaRXrTdYl/EFMDML0WV5A8nl7IrO5AMTa2HG9CG04ufeFj2BH48gbbgzlRsiYM41SRSaKjYqBg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
clsx: 1.2.1
react: 18.2.0
dev: false
- /@react-stately/calendar@3.4.0(react@18.2.0):
- resolution: {integrity: sha512-MUGJ0fvUV999r+zCkK00YXkHojpL5dSCPiuYdrv/GeXxqksr2no780JmKkUcp4OUG8gnmgo37LRc8xJ0TX3Hug==}
+ /@react-stately/calendar@3.4.1(react@18.2.0):
+ resolution: {integrity: sha512-XKCdrXNA7/ukZ842EeDZfLqYUQDv/x5RoAVkzTbp++3U/MLM1XZXsqj+5xVlQfJiWpQzM9L6ySjxzzgepJDeuw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
@@ -7056,77 +7075,77 @@ packages:
optional: true
dependencies:
'@internationalized/date': 3.5.0
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/calendar': 3.4.0(react@18.2.0)
- '@react-types/datepicker': 3.6.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/calendar': 3.4.1(react@18.2.0)
+ '@react-types/datepicker': 3.6.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/checkbox@3.5.0(react@18.2.0):
- resolution: {integrity: sha512-DSSC5nXd9P07ddyDZ6FBwaMAypURCwCRhC8kli5MNRF8/KCDJxWOpWe6LDRXeDgA6EN7ExE1deb8gydIrYmUOw==}
+ /@react-stately/checkbox@3.5.1(react@18.2.0):
+ resolution: {integrity: sha512-j+EbHpZgS8J2LbysbVDK3vQAJc7YZHOjHRX20auEzVmulAFKwkRpevo/R5gEL4EpOz4bRyu+BH/jbssHXG+Ezw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/toggle': 3.6.2(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/checkbox': 3.5.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/toggle': 3.6.3(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/checkbox': 3.5.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/collections@3.10.1(react@18.2.0):
- resolution: {integrity: sha512-C9FPqoQUt7NeCmmP8uabQXapcExBOTA3PxlnUw+Nq3+eWH1gOi93XWXL26L8/3OQpkvAbUcyrTXhCybLk4uMAg==}
+ /@react-stately/collections@3.10.2(react@18.2.0):
+ resolution: {integrity: sha512-h+LzCa1gWhVRWVH8uR+ZxsKmFSx7kW3RIlcjWjhfyc59BzXCuojsOJKTTAyPVFP/3kOdJeltw8g/reV1Cw/x6Q==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/combobox@3.7.0(react@18.2.0):
- resolution: {integrity: sha512-tkPgv2cDS5wfkPVrA5Jffpi9kxUnsFuvk/T1VZXYt1ItAsxy7IGli+JwHYFgTqadDyF+yRNMj5QYRY0mnbIxrg==}
+ /@react-stately/combobox@3.7.1(react@18.2.0):
+ resolution: {integrity: sha512-JMKsbhCgP8HpwRjHLBmJILzyU9WzWykjXyP4QF/ifmkzGRjC/s46+Ieq+WonjVaLNGCoi6XqhYn2x2RyACSbsQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/list': 3.9.2(react@18.2.0)
- '@react-stately/menu': 3.5.5(react@18.2.0)
- '@react-stately/select': 3.5.4(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/combobox': 3.8.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/list': 3.10.0(react@18.2.0)
+ '@react-stately/menu': 3.5.6(react@18.2.0)
+ '@react-stately/select': 3.5.5(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/combobox': 3.8.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/data@3.10.2(react@18.2.0):
- resolution: {integrity: sha512-myAGJHTFUy2zUtiOzUrDlu2Wp32lDlc8tg4E5w+lwQ/d4TTY1MX4TtUCW8LGc8tDm5Bv2/Le/I8Vu0T+vmesng==}
+ /@react-stately/data@3.10.3(react@18.2.0):
+ resolution: {integrity: sha512-cC9mxCZU4N9GbdOB4g2/J8+W+860GvBd874to0ObSc/XOR4VbuIsxAFIabW5UwmJV+XaqqK4TUBG0C6YScXeWQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/datepicker@3.7.0(react@18.2.0):
- resolution: {integrity: sha512-yPEfgKVXmwLwn41H8KeLuwgAN5oVmmcQemyn6iKLCPaIsQjXGpbfB0diQhg/aTjnm0VtdqdCBYPhHZzPkCml/w==}
+ /@react-stately/datepicker@3.8.0(react@18.2.0):
+ resolution: {integrity: sha512-6YDSmkrRafYCWhRHks8Z2tZavM1rqSOy8GY8VYjYMCVTFpRuhPK9TQaFv2BdzZL/vJ6OGThxqoglcEwywZVq2g==}
peerDependencies:
react: '*'
peerDependenciesMeta:
@@ -7135,24 +7154,24 @@ packages:
dependencies:
'@internationalized/date': 3.5.0
'@internationalized/string': 3.1.1
- '@react-stately/overlays': 3.6.2(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/datepicker': 3.6.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/overlays': 3.6.3(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/datepicker': 3.6.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/dnd@3.2.4(react@18.2.0):
- resolution: {integrity: sha512-ZPhcEcnCvEtRQzkDzNUJvZDzW2GUL0nr8++AYf4VhXPh7geFyGmYtvfoFTxESov3AMFhCLLDClxKejLTwrzzbw==}
+ /@react-stately/dnd@3.2.5(react@18.2.0):
+ resolution: {integrity: sha512-f9S+ycjAMEaz9HqGxkx4jsqo/ZS8kh0o97rxSKpGFKPZ02UMFWCr9lJI1p3hVGukiMahrmsNtoQXAvMcFAZyQQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/selection': 3.13.4(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/selection': 3.14.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
@@ -7163,267 +7182,267 @@ packages:
'@swc/helpers': 0.4.36
dev: false
- /@react-stately/grid@3.8.1(react@18.2.0):
- resolution: {integrity: sha512-7eKPoES4eKD7JU9UXcRGVKZ/auaD5F/srVhkWjygKcJ2ibt48N0dh6JwPqPoxzqApUX0DuUjebL9hCRgagEvdQ==}
+ /@react-stately/grid@3.8.2(react@18.2.0):
+ resolution: {integrity: sha512-CB5QpYjXFatuXZodj3r0vIiqTysUe6DURZdJu6RKG2Elx19n2k49fKyx7P7CTKD2sPBOMSSX4edWuTzpL8Tl+A==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/selection': 3.13.4(react@18.2.0)
- '@react-types/grid': 3.2.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/selection': 3.14.0(react@18.2.0)
+ '@react-types/grid': 3.2.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/layout@3.13.1(react@18.2.0):
- resolution: {integrity: sha512-gJNK1bpnrWNHz/uhTg7OpVFuSyLdYwqNjXt2He+i66/lZ6TG36smsi9MYtTYdC72Js5rsA9ngWtfhNpQ9bMeCQ==}
+ /@react-stately/layout@3.13.2(react@18.2.0):
+ resolution: {integrity: sha512-eucSC74XYhCJAUXLgj7FQgi85wXKkg3HFqanKh9qGOJGVH9vB/sbguV9syAOkeeWWfJFRMjAKSlRZOiPLG/x/A==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/table': 3.11.1(react@18.2.0)
- '@react-stately/virtualizer': 3.6.2(react@18.2.0)
- '@react-types/grid': 3.2.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/table': 3.8.1(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/table': 3.11.2(react@18.2.0)
+ '@react-stately/virtualizer': 3.6.3(react@18.2.0)
+ '@react-types/grid': 3.2.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/table': 3.9.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/list@3.9.2(react@18.2.0):
- resolution: {integrity: sha512-1PBnQ3UFSeKe2Jk4kYZM/11uzQsNEs098tbEkqR3JJwYzJ4htjdd1I0P9Z2INFWiHw071OJD18Ynbbz90jMldw==}
+ /@react-stately/list@3.10.0(react@18.2.0):
+ resolution: {integrity: sha512-Yspumiln2fvzoO8AND8jNAIfBu1XPaYioeeDmsB5Vrya2EvOkzEGsauQSNBJ6Vhee1fQqpnmzH1HB0jfIKUfzg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/selection': 3.13.4(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/selection': 3.14.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/menu@3.5.5(react@18.2.0):
- resolution: {integrity: sha512-5IW26YURvwCs2a0n6PwlGOZ1K+M5xwfgR/q6mbQPfbZGZG6a14buHTHK8kISHAl2hHFcn0TV6yRYDmw2nxTM0A==}
+ /@react-stately/menu@3.5.6(react@18.2.0):
+ resolution: {integrity: sha512-Cm82SVda1qP71Fcz8ohIn3JYKmKCuSUIFr1WsEo/YwDPkX0x9+ev6rmphHTsxDdkCLcYHSTQL6e2KL0wAg50zA==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/overlays': 3.6.2(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/menu': 3.9.4(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/overlays': 3.6.3(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/menu': 3.9.5(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/numberfield@3.6.1(react@18.2.0):
- resolution: {integrity: sha512-vR2kvi0GSQhshh3jhlTRyZyVpvOpAGu1xo1sQM5vbgM8fzKLw3gZvnaPy+XvSkfxUk0MCYZxYtkOvf6QJV7p8w==}
+ /@react-stately/numberfield@3.6.2(react@18.2.0):
+ resolution: {integrity: sha512-li/SO3BU3RGySRNlXhPRKr161GJyNbQe6kjnj+0BFTS/ST9nxCgxFK4llHf+S+I/shNI6+0U2nAjE85QOv4emQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@internationalized/number': 3.2.1
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/numberfield': 3.6.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@internationalized/number': 3.3.0
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/numberfield': 3.6.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/overlays@3.6.2(react@18.2.0):
- resolution: {integrity: sha512-iIU/xtYEzG91abHFHqe8LL53ZrDDo8kblfdA7TTZwrtxZhQHU3AbT0pLc3BNe3sXmJspxuI1nS1cszcRlSuDww==}
+ /@react-stately/overlays@3.6.3(react@18.2.0):
+ resolution: {integrity: sha512-K3eIiYAdAGTepYqNf2pVb+lPqLoVudXwmxPhyOSZXzjgpynD6tR3E9QfWQtkMazBuU73PnNX7zkH4l87r2AmTg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/overlays': 3.8.2(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/overlays': 3.8.3(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/radio@3.9.0(react@18.2.0):
- resolution: {integrity: sha512-Q2vt5VjxLbsvbMWQmDqwm9JUJ3fkmUEzSBUOSYOkUcBchnzUunpaMe3nQjbJLekIWolubsVaE3bTxCKvY8hGZA==}
+ /@react-stately/radio@3.9.1(react@18.2.0):
+ resolution: {integrity: sha512-DrQPHiP9pz1uQbBP/NDFdO8uOZigPbvuAWPUNK7Gq6kye5lW+RsS97IUnYJePNTSMvhiAVz/aleBt05Gr/PZmg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/radio': 3.5.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/radio': 3.5.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/searchfield@3.4.5(react@18.2.0):
- resolution: {integrity: sha512-0aQ7oeiqUgTzh3DcZDe2VdWdyERvxrZ27O1/GYvWj0uMJcqHmd1iA9oa3v725PmylmRvD6A42K2GqeF5c5Ue8g==}
+ /@react-stately/searchfield@3.4.6(react@18.2.0):
+ resolution: {integrity: sha512-DeVacER0MD35gzQjrYpX/e3k8rjKF82W0OooTkRjeQ2U48femZkQpmp3O+j10foQx2LLaxqt9PSW7QS0Ww1bCA==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/searchfield': 3.5.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/searchfield': 3.5.1(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/select@3.5.4(react@18.2.0):
- resolution: {integrity: sha512-CO+5ORMwx/nEKAf7285S3QRAWLJlD1TZPKosO5ND87SZt9j6LKTyJjsT5IYcny8W/ejFOKg5VP4evYNkd5ZtEQ==}
+ /@react-stately/select@3.5.5(react@18.2.0):
+ resolution: {integrity: sha512-nDkvFeAZbN7dK/Ty+mk1h4LZYYaoPpkwrG49wa67DTHkCc8Zk2+UEjhKPwOK20th4vfJKHzKjVa0Dtq4DIj0rw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/list': 3.9.2(react@18.2.0)
- '@react-stately/menu': 3.5.5(react@18.2.0)
- '@react-stately/selection': 3.13.4(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/select': 3.8.3(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/list': 3.10.0(react@18.2.0)
+ '@react-stately/menu': 3.5.6(react@18.2.0)
+ '@react-stately/selection': 3.14.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/select': 3.8.4(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/selection@3.13.4(react@18.2.0):
- resolution: {integrity: sha512-agxSYVi70zSDSKuAXx4GdD8aG5RWFs1djcrLsQybtkFV2hUMrjipfvPfNYz56ITtz6qj5Dq2eXOZpSEAR6EfOg==}
+ /@react-stately/selection@3.14.0(react@18.2.0):
+ resolution: {integrity: sha512-E5rNH+gVGDJQDSnPO30ynu6jZ0Z0++VPUbM5Bu3P/bZ3+TgoTtDDvlONba3fspgSBDfdnHpsuG9eqYnDtEAyYA==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/slider@3.4.2(react@18.2.0):
- resolution: {integrity: sha512-3Acil4Pu1aQnTGYUcGCeO7gO7C6LpmUCwjnjcRlJbYf1VibLWrMC+EGYKcha+2dsXYAvvsI4HD6Zuf5HmFkomA==}
+ /@react-stately/slider@3.4.3(react@18.2.0):
+ resolution: {integrity: sha512-BWtDTnGRByAfk64t/xDMSaroYnwTVIguyzaHezy28wXGHxBl+l+qTSL2DCSokTSfqnfMs2FckXNh5LUVc8NjSg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/slider': 3.6.1(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/slider': 3.6.2(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/table@3.11.1(react@18.2.0):
- resolution: {integrity: sha512-iI0IeEmg91bwR/2UX2PTB8k34MrfxlMVD/XlZ+6XWQGjXftdeB8QNKDAClWMZwQmYA7HTq6bLvP2CochJ68k5w==}
+ /@react-stately/table@3.11.2(react@18.2.0):
+ resolution: {integrity: sha512-EVgksPAsnEoqeT+5ej4aGJdu9kAu3LCDqQfnmif2P/R1BP5eDU1Kv0N/mV/90Xp546g7kuZ1wS2if/hWDXEA5g==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/collections': 3.10.1(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
'@react-stately/flags': 3.0.0
- '@react-stately/grid': 3.8.1(react@18.2.0)
- '@react-stately/selection': 3.13.4(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/grid': 3.2.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/table': 3.8.1(react@18.2.0)
+ '@react-stately/grid': 3.8.2(react@18.2.0)
+ '@react-stately/selection': 3.14.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/grid': 3.2.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/table': 3.9.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/tabs@3.6.0(react@18.2.0):
- resolution: {integrity: sha512-JKEIh+4nn6Tgs434x0xoaXqaINWlUuqtQXAdoVmaL6tNY97K8zWcN08ACAbB66Os7E59FVMJczEpbUz/xja2Hg==}
+ /@react-stately/tabs@3.6.1(react@18.2.0):
+ resolution: {integrity: sha512-akGmejEaXg2RMZuWbRZ0W1MLr515e0uV0iVZefKBlcHtD/mK9K9Bo2XxBScf0TIhaPJ6Qa2w2k2+V7RmT7r8Ag==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/list': 3.9.2(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/tabs': 3.3.2(react@18.2.0)
+ '@react-stately/list': 3.10.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/tabs': 3.3.3(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/toggle@3.6.2(react@18.2.0):
- resolution: {integrity: sha512-O+0XtIjRX9YgAwNRhSdX2qi49PzY4eGL+F326jJfqc17HU3Qm6+nfqnODuxynpk1gw79sZr7AtROSXACTVueMQ==}
+ /@react-stately/toggle@3.6.3(react@18.2.0):
+ resolution: {integrity: sha512-4kIMTjRjtaapFk4NVmBoFDUYfkmyqDaYAmHpRyEIHTDpBYn0xpxZL/MHv9WuLYa4MjJLRp0MeicuWiZ4ai7f6Q==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/checkbox': 3.5.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/checkbox': 3.5.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/tooltip@3.4.4(react@18.2.0):
- resolution: {integrity: sha512-Tb69T2uRep/9AF0+WR7j3kp4hZzRpp5N9r52j3zKsbHQ/qirAAQUJZegg5VgSfL2ncI7n2VijbBo8DfuJTbm8g==}
+ /@react-stately/tooltip@3.4.5(react@18.2.0):
+ resolution: {integrity: sha512-VrwQcjnrNddSulh+Zql8P8cORRnWqSPkHPqQwD/Ly91Rva3gUIy+VwnYeThbGDxRzlUv1wfN+UQraEcrgwSZ/Q==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/overlays': 3.6.2(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/tooltip': 3.4.4(react@18.2.0)
+ '@react-stately/overlays': 3.6.3(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/tooltip': 3.4.5(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/tree@3.7.2(react@18.2.0):
- resolution: {integrity: sha512-Re18E7Tfu01xjZXEDZlFwibAomD7PHGZ9cFNTkRysA208uhKVrVVfh+8vvar4c9ybTGUWk5tT6zz+hslGBuLVQ==}
+ /@react-stately/tree@3.7.3(react@18.2.0):
+ resolution: {integrity: sha512-wB/68qetgCYTe7OMqbTFmtWRrEqVdIH2VlACPCsMlECr3lW9TrrbrOwlHIJfLhkxWvY3kSCoKcOJ5KTiJC9LGA==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/selection': 3.13.4(react@18.2.0)
- '@react-stately/utils': 3.7.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/selection': 3.14.0(react@18.2.0)
+ '@react-stately/utils': 3.8.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-stately/utils@3.7.0(react@18.2.0):
- resolution: {integrity: sha512-VbApRiUV2rhozOfk0Qj9xt0qjVbQfLTgAzXLdrfeZSBnyIgo1bFRnjDpnDZKZUUCeGQcJJI03I9niaUtY+kwJQ==}
+ /@react-stately/utils@3.8.0(react@18.2.0):
+ resolution: {integrity: sha512-wCIoFDbt/uwNkWIBF+xV+21k8Z8Sj5qGO3uptTcVmjYcZngOaGGyB4NkiuZhmhG70Pkv+yVrRwoC1+4oav9cCg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
@@ -7434,47 +7453,47 @@ packages:
react: 18.2.0
dev: false
- /@react-stately/virtualizer@3.6.2(react@18.2.0):
- resolution: {integrity: sha512-BM7h7AlJNEB/X6XlMLlUoqye4SCGFmHiOIwEtha3QfJA52O1/0lgzD9yj5cLbdQPwZNmFH4R95b/OHqSIpgEBw==}
+ /@react-stately/virtualizer@3.6.3(react@18.2.0):
+ resolution: {integrity: sha512-vzasjzaKSz+ViqhApvSqRlX7+hhY2uMtjZ2kbCS0U/RtxXra4m5/dD6BfsZ4hGhjQ3PBebDfP9+JvrNQn5EjFQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
'@swc/helpers': 0.5.2
react: 18.2.0
dev: false
- /@react-types/breadcrumbs@3.6.2(react@18.2.0):
- resolution: {integrity: sha512-CI4j7m15X3C7qznPZpXV8z6EyqCvIV2arfb+FH+Odu4AvcMCUrOKSolEtTl1tmv3uOTAwbd81jVxsUD6aJ6SCw==}
+ /@react-types/breadcrumbs@3.7.0(react@18.2.0):
+ resolution: {integrity: sha512-3tXkTP0kdFSufBFxUSj5Klp3mtCl/fH12IjH98RdWgzc4Rko7iuHKFG2u+RXj5t7QzUqBth5Ukub1oBz/L3KhA==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/link': 3.4.5(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/link': 3.5.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/button@3.8.0(react@18.2.0):
- resolution: {integrity: sha512-hVVK5iWXhDYQZwxOBfN7nQDeFQ4Pp48uYclQbXWz8D74XnuGtiUziGR008ioLXRHf47dbIPLF1QHahsCOhh05g==}
+ /@react-types/button@3.9.0(react@18.2.0):
+ resolution: {integrity: sha512-YhbchUDB7yL88ZFA0Zqod6qOMdzCLD5yVRmhWymk0yNLvB7EB1XX4c5sRANalfZSFP0RpCTlkjB05Hzp4+xOYg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/calendar@3.4.0(react@18.2.0):
- resolution: {integrity: sha512-kHEjkZ+NAPOhLGpIMGKwe2xPgwDvtFiKU6FWPghSeslxGUAzC0mop/sSdD8NvWbSdqKd/GqeCen5khlA1MoyGQ==}
+ /@react-types/calendar@3.4.1(react@18.2.0):
+ resolution: {integrity: sha512-tiCkHi6IQtYcVoAESG79eUBWDXoo8NImo+Mj8WAWpo1lOA3SV1W2PpeXkoRNqtloilQ0aYcmsaJJUhciQG4ndg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
@@ -7482,36 +7501,36 @@ packages:
optional: true
dependencies:
'@internationalized/date': 3.5.0
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/checkbox@3.5.1(react@18.2.0):
- resolution: {integrity: sha512-7iQqBRnpNC/k8ztCC+gNGTKpTWj6yJijXPKJ8UduqPNuJ0mIqWgk7DJDBuIG0cVvnenTNxYuOL6mt3dgdcEj9w==}
+ /@react-types/checkbox@3.5.2(react@18.2.0):
+ resolution: {integrity: sha512-iRQrbY8vRRya3bt3i7sHAifhP/ozfkly1/TItkRK5MNPRNPRDKns55D8ZFkRMj4NSyKQpjVt1zzlBXrnSOxWdQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/combobox@3.8.0(react@18.2.0):
- resolution: {integrity: sha512-P1LDS283OegZGnRJcpJhDAbX0JE8cnW4FzIP04GJWzF9fSf/GrlrLEDt4VTXKXxtdLWy3T+H4gmAYO10ZZVmBQ==}
+ /@react-types/combobox@3.8.1(react@18.2.0):
+ resolution: {integrity: sha512-F910tk8K5qE0TksJ9LRGcJIpaPzpsCnFxT6E9oJH3ssK4N8qZL8QfT9tIKo2XWhK9Uxb/tIZOGQwA8Cn7TyZrA==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/datepicker@3.6.0(react@18.2.0):
- resolution: {integrity: sha512-eMWAqsavA7PpjKwUuij4RjThAc3l2MtxKT51XnTA192EoYyTRVcDK+cuYjzWYn1kTj6+dNap+WvKJlYrxmS5aA==}
+ /@react-types/datepicker@3.6.1(react@18.2.0):
+ resolution: {integrity: sha512-/M+0e9hL9w98f5k4EoxeH2UfPsUPoS6fvmFsmwUZJcDiw7wP510XngnDLy9GOHj9xgqagZ20S79cxcEuTq7U6g==}
peerDependencies:
react: '*'
peerDependenciesMeta:
@@ -7519,175 +7538,175 @@ packages:
optional: true
dependencies:
'@internationalized/date': 3.5.0
- '@react-types/calendar': 3.4.0(react@18.2.0)
- '@react-types/overlays': 3.8.2(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/calendar': 3.4.1(react@18.2.0)
+ '@react-types/overlays': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/dialog@3.5.5(react@18.2.0):
- resolution: {integrity: sha512-XidCDLmbagLQZlnV8QVPhS3a63GdwiSa/0MYsHLDeb81+7P2vc3r+wNgnHWZw64mICWYzyyKxpzV3QpUm4f6+g==}
+ /@react-types/dialog@3.5.6(react@18.2.0):
+ resolution: {integrity: sha512-lwwaAgoi4xe4eEJxBns+cBIRstIPTKWWddMkp51r7Teeh2uKs1Wki7N+Acb9CfT6JQTQDqtVJm6K76rcqNBVwg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/overlays': 3.8.2(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/overlays': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/grid@3.2.1(react@18.2.0):
- resolution: {integrity: sha512-diliZjyTyNeJDR+5rfh9RRNeM8KFOSaFARkbO42j11CteN1Rpo66x2R53xM+0BO63rCUGrJ8RAg2E4BCp7al6w==}
+ /@react-types/grid@3.2.2(react@18.2.0):
+ resolution: {integrity: sha512-R4USOpn1xfsWVGwZsakRlIdsBA10XNCnAUcRXQTn2JmzLjDCtcln6uYo9IFob080lQuvjkSw3j4zkw7Yo4Qepg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/label@3.8.0(react@18.2.0):
- resolution: {integrity: sha512-hZTSguqyblAF83kLImjxw46DywRMpSihkP1829T8N2I/i8oFSu74OYBJ8woklk26AOUMDJ4NFTdimdqWVMdRcQ==}
+ /@react-types/label@3.8.1(react@18.2.0):
+ resolution: {integrity: sha512-fA6zMTF2TmfU7H8JBJi0pNd8t5Ak4gO+ZA3cZBysf8r3EmdAsgr3LLqFaGTnZzPH1Fux6c7ARI3qjVpyNiejZQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/link@3.4.5(react@18.2.0):
- resolution: {integrity: sha512-wwLIFjg35LBxv29rA6jPyChPH6b18U1SXaCyVa2koRIOvXTdNSRnautyE3ZQ7LyufJDc5SRTOWQHjPK1IiOfaA==}
+ /@react-types/link@3.5.0(react@18.2.0):
+ resolution: {integrity: sha512-QK4W0k88e4omh4ekiwIqGwJARfGF/hRXQEYaD+rM7FB1NMhuVSuErj+L3kICWuka4vLC8G3lhTqR6mv6kf6WCw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/listbox@3.4.4(react@18.2.0):
- resolution: {integrity: sha512-c0FFM73tGZZ5AV9Yu5/Vd/cji5AVcI2QZvs4+mpRcSpzH3zSCVvVLr7GayZFS70tYQVPLHFH2E202wLxoiLK9A==}
+ /@react-types/listbox@3.4.5(react@18.2.0):
+ resolution: {integrity: sha512-nuRY3l8h/rBYQWTXWdZz5YJdl6QDDmXpHrnPuX7PxTwbXcwjhoMK+ZkJ0arA8Uv3MPs1OUcT6K6CInsPnG2ARQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/menu@3.9.4(react@18.2.0):
- resolution: {integrity: sha512-8OnPQHMPZw126TuLi21IuHWMbGOqoWZa+0uJCg2gI+Xpe1F0dRK/DNzCIKkGl1EXgZATJbRC3NcxyZlWti+/EQ==}
+ /@react-types/menu@3.9.5(react@18.2.0):
+ resolution: {integrity: sha512-KB5lJM0p9PxwpVlHV9sRdpjh+sqINeHrJgGizy/cQI9bj26nupiEgamSD14dULNI6BFT9DkgKCsobBtE04DDKQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/overlays': 3.8.2(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/overlays': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/meter@3.3.4(react@18.2.0):
- resolution: {integrity: sha512-GYxba83AU59wARkWJen5BnmzdqSRT3IFg0gg3CZ4Dq4NgEKoN9Pw2ISxyogvBgwDPdxFuN8QK6QExxm4rPBS/A==}
+ /@react-types/meter@3.3.5(react@18.2.0):
+ resolution: {integrity: sha512-7kSP/bqkt6ANHUJLJ4OsHOPNwg9ETvWHAKXDYoCqkLYzdhFh0H/8EAW9z4Bh/io0GvR7ePds9s+32iislfSwDg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/progress': 3.4.3(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/progress': 3.5.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/numberfield@3.6.0(react@18.2.0):
- resolution: {integrity: sha512-Kg+7CQYj2FY78zmYDK6kxZYu1/JNfkptsu0lhBJKcsQenXZc6CSZyiFpVZN7T+fQGnX0YbAcUQp9MOt5tbZcGg==}
+ /@react-types/numberfield@3.6.1(react@18.2.0):
+ resolution: {integrity: sha512-jdMCN0mQ7eZkPrCKYkkG+jSjcG2VQ5P7mR9tTaCQeQK1wo+tF/8LWD+6n6dU7hH/qlU9sxVEg3U3kJ9sgNK+Hw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/overlays@3.8.2(react@18.2.0):
- resolution: {integrity: sha512-HpLYzkNvuvC6nKd06vF9XbcLLv3u55+e7YUFNVpgWq8yVxcnduOcJdRJhPaAqHUl6iVii04mu1GKnCFF8jROyQ==}
+ /@react-types/overlays@3.8.3(react@18.2.0):
+ resolution: {integrity: sha512-TrCG2I2+V+TD0PGi3CqfnyU5jEzcelSGgYJQvVxsl5Vv3ri7naBLIsOjF9x66tPxhINLCPUtOze/WYRAexp8aw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/progress@3.4.3(react@18.2.0):
- resolution: {integrity: sha512-g0HrxOf3ubQ4Tp9jwOMhl+WOd4cYh/cCwO6B8LFKw0m5erJWh5VdlyBql+5rmQmYWUaG8RcWyfnKY1C6WShl1g==}
+ /@react-types/progress@3.5.0(react@18.2.0):
+ resolution: {integrity: sha512-c1KLQCfYjdUdkTcPy0ZW31dc2+D86ZiZRHPNOaSYFGJjk9ItbWWi8BQTwlrw6D2l/+0d/YDdUFGaZhHMrY9mBQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/radio@3.5.1(react@18.2.0):
- resolution: {integrity: sha512-jPF8zt+XdgW9DaTvB5ZYCh0uk7DVko1VZ/jOlCRs82w3P884Wc7MMpwdl1T5PBdhtLcdr+xjM1YI6/31reIBfQ==}
+ /@react-types/radio@3.5.2(react@18.2.0):
+ resolution: {integrity: sha512-crYQ+97abd5v0Iw9X+Tt+E7KWdm5ckr4g0+Iy8byV1g6MyiBOsNtq9QT99TOzyWJPqqD8T9qZfAOk49wK7KEDg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/searchfield@3.5.0(react@18.2.0):
- resolution: {integrity: sha512-llp3K3Z0e7tCLyiYQilAl4XJZiuXr+G9dboogU0ypLeIwMW69b9OgQx2KzLILN/CdtNqN6PBpBXMPnG+mHCcqg==}
+ /@react-types/searchfield@3.5.1(react@18.2.0):
+ resolution: {integrity: sha512-+v9fo50JrZOfFzbdgJsW39hyTFv1gVH458nx82aidYJzQocFJniiAEl0ZhhRzbE8RijyjLleKIAY+klPeFmEaQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
- '@react-types/textfield': 3.8.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
+ '@react-types/textfield': 3.8.1(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/select@3.8.3(react@18.2.0):
- resolution: {integrity: sha512-x0x/qJq48QqVnBXFqvPaiS/TQOmCIL9ZmzM4AzRtYMU++kxjy3L03cdnzDBmxKN+KkfDn7OU++vKI44ksgTCRA==}
+ /@react-types/select@3.8.4(react@18.2.0):
+ resolution: {integrity: sha512-jHBaLiAHTcYPz52kuJpypBbR0WAA+YCZHy2HH+W8711HuTqePZCEp6QAWHK9Fw0qwSZQ052jYaWvOsgEZZ6ojQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/shared@3.20.0(react@18.2.0):
- resolution: {integrity: sha512-lgTO/S/EMIZKU1EKTg8wT0qYP5x/lZTK2Xw6BZZk5c4nn36JYhGCRb/OoR/jBCIeRb2x9yNbwERO6NYVkoQMSw==}
+ /@react-types/shared@3.21.0(react@18.2.0):
+ resolution: {integrity: sha512-wJA2cUF8dP4LkuNUt9Vh2kkfiQb2NLnV2pPXxVnKJZ7d4x2/7VPccN+LYPnH8m0X3+rt50cxWuPKQmjxSsCFOg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
@@ -7697,78 +7716,78 @@ packages:
react: 18.2.0
dev: false
- /@react-types/slider@3.6.1(react@18.2.0):
- resolution: {integrity: sha512-K234amXGLfDekJOQimhPpd2OE14Set7+LrzZZx1ut5ayIK3QgeneUqaybQcB7plfO1thNaAoDOy7JPqZ13k1JA==}
+ /@react-types/slider@3.6.2(react@18.2.0):
+ resolution: {integrity: sha512-LSvna1gpOvBxOBI5I/CYEtkAshWYwPlxE9F/jCaxCa9Q7E9xZp1hFFGY87iQ1A3vQM5SCa5PFStwOvXO7rA55w==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/switch@3.4.1(react@18.2.0):
- resolution: {integrity: sha512-2XfPsu2Yiap+pthO2rvCNlLjzo9mDejrYY3rsYMw/jLzCHvuR8Xe2/l01svHcq3pVuNIMElqZR4vTq9OvGNBnQ==}
+ /@react-types/switch@3.4.2(react@18.2.0):
+ resolution: {integrity: sha512-OQWpawikWhF+ET1/kE0/JeJVr6gHjkR72p/idTsT7RUJySBcehhAscbIA8iWzVWJvdFCVF2hG7uzBAJTeDMr9A==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/checkbox': 3.5.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/checkbox': 3.5.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/table@3.8.1(react@18.2.0):
- resolution: {integrity: sha512-zUZ0jTnTBz0JWhnbz7U0LnnKqGhPvmQz+xyADrBIrgj8hk1jQdWNTwAFwqUg8uaReSy+9b3jjPPNOnpTu9DmgA==}
+ /@react-types/table@3.9.0(react@18.2.0):
+ resolution: {integrity: sha512-WOLxZ3tzLA4gxRxvnsZhnnQDbh4Qe/johpHNk4coSOFOP5W8PbunPacXnbvdPkSx6rqrOIzCnYcZCtgk4gDQmg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/grid': 3.2.1(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/grid': 3.2.2(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/tabs@3.3.2(react@18.2.0):
- resolution: {integrity: sha512-eC6gGKH+Z2sCaHsCsSqT6gDE9E0ghbxL5d/yBjJ8VHxXkNLvM6dXwoYaEhA2JEdQqf0vC/7bZdjI3swV63DgKg==}
+ /@react-types/tabs@3.3.3(react@18.2.0):
+ resolution: {integrity: sha512-Zc4g5TIwJpKS5fiT9m4dypbCr1xqtauL4wqM76fGERCAZy0FwXTH/yjzHJDYKyWFJrQNWtJ0KAhJR/ZqKDVnIw==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/textfield@3.8.0(react@18.2.0):
- resolution: {integrity: sha512-KRIEiIaB7pi0VlyOXNv39qeY0nBVmaXHwReCmEktQxKtXQ5lbEU6pvbc6srMZIplJffutQCZSXAucw/2ewLLVQ==}
+ /@react-types/textfield@3.8.1(react@18.2.0):
+ resolution: {integrity: sha512-p8Xmew9kzJd+tCM7h9LyebZHpv7SH1IE1Nu13hLCOV5cZ/tVVVCwjNGLMv4MtUpSn++H42YLJgAW9Uif+a+RHg==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /@react-types/tooltip@3.4.4(react@18.2.0):
- resolution: {integrity: sha512-pEy4eKWXV9IW/h76dzEPRDJdPyYGis4OoJC1BYHjDRILq0kV1F/lzCJaL29f5VHkYOTIHmwaEMbDX3m7OSJjrw==}
+ /@react-types/tooltip@3.4.5(react@18.2.0):
+ resolution: {integrity: sha512-pv87Vlu+Pn1Titw199y5aiSuXF/GHX+fBCihi9BeePqtwYm505e/Si01BNh5ejCeXXOS4JIMuXwmGGzGVdGk6Q==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-types/overlays': 3.8.2(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-types/overlays': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
@@ -7821,7 +7840,7 @@ packages:
dependencies:
'@sinonjs/commons': 3.0.0
- /@storybook/addon-a11y@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-a11y@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-7W8fjCdmwX4zlDM4jpzVKNgelWSqbYr3cH834pqOFAkyiyNVIsNRPQBgSwkkljgz0uAsz8nFCRFK3Oo1btl6Yg==}
peerDependencies:
react: '*'
@@ -7835,7 +7854,7 @@ packages:
'@storybook/addon-highlight': 7.4.5
'@storybook/channels': 7.4.5
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.4.5
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -7852,7 +7871,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-actions@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-actions@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-FkjJWmPN/+duLSkRwfa2bwlwjKfY6yCXYn7CRzn3rb64B8f50NB79zAgVLHjkJh9l6T3DIlWtol6vqPHj1aRpw==}
peerDependencies:
react: '*'
@@ -7864,7 +7883,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.4.5
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -7886,7 +7905,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-backgrounds@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-backgrounds@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-fTq9E1WrYH/9hwDemFVLVcaI2iSSuwWnvY/8tqGrY9xhQF5dIpeHf+z8+HWXpau7e6Z0/WiYR+1vwAcIKt95LQ==}
peerDependencies:
react: '*'
@@ -7898,7 +7917,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.4.5
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -7914,7 +7933,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-controls@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-controls@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Mxs56jt44HIbZ4gJa0AII1U8GqEGFsvcM5Iob0ETNpxCW5Kj5iHly/4Ws0RFWPH/krrQKaLpWXaUxKmbtEzhJA==}
peerDependencies:
react: '*'
@@ -7925,9 +7944,9 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/blocks': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/blocks': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-common': 7.4.5
'@storybook/core-events': 7.4.5
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -7946,7 +7965,7 @@ packages:
- supports-color
dev: true
- /@storybook/addon-docs@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-docs@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-KjFVeq8oL7ZC1gsk8iY3Nn0RrHHUpczmOTCd8FeVNmKD4vq+dkPb/8bJLy+jArmIZ8vRhknpTh6kp1BqB7qHGQ==}
peerDependencies:
react: '*'
@@ -7959,9 +7978,9 @@ packages:
dependencies:
'@jest/transform': 29.7.0
'@mdx-js/react': 2.3.0(react@18.2.0)
- '@storybook/blocks': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/blocks': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/csf-plugin': 7.4.5
'@storybook/csf-tools': 7.4.5
'@storybook/global': 5.0.0
@@ -7985,7 +8004,7 @@ packages:
- supports-color
dev: true
- /@storybook/addon-essentials@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-essentials@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-H7zZWJXZP0UU2kXfo9zlQfjIKHuuqYBK7PZ2/SL5y08mTrbtt1BfqYScz3xRvHocaFcsBWCXdy8jJULT4KFUpw==}
peerDependencies:
react: '*'
@@ -7996,15 +8015,15 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/addon-actions': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-backgrounds': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-controls': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-docs': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-actions': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-backgrounds': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-controls': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-docs': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-highlight': 7.4.5
- '@storybook/addon-measure': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-outline': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-toolbars': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-viewport': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-measure': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-outline': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-toolbars': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-viewport': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-common': 7.4.5
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
'@storybook/node-logger': 7.4.5
@@ -8027,7 +8046,7 @@ packages:
'@storybook/preview-api': 7.4.5
dev: true
- /@storybook/addon-interactions@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-interactions@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-KDdV/THxj38VsuOevrUefev0rZPhzqUXCgrw1Jc2PsJGidHf9d9nnB7wbA9ZFYsxTz90M/Vk5sm7i1QkMmsquA==}
peerDependencies:
react: '*'
@@ -8039,7 +8058,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-common': 7.4.5
'@storybook/core-events': 7.4.5
'@storybook/global': 5.0.0
@@ -8085,7 +8104,7 @@ packages:
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-measure@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-measure@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-FQGZniTH67nC1YPR4ep0p+isgxwLaNAmIAyCZWXPRTkZssIrnXVwNgi0A2QkHdxZvxj8yXGFTOVXLWEPT9YvFQ==}
peerDependencies:
react: '*'
@@ -8097,7 +8116,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.4.5
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -8111,7 +8130,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-outline@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-outline@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-eOH9BZzpehUz5FXD98OLnWgzmBFMvEB2kFfw5JiO7IRx7Fan80fx/WDQuMSNDOgLBCTTvsZ4TBMMXZHpw91WAw==}
peerDependencies:
react: '*'
@@ -8123,7 +8142,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.4.5
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -8137,7 +8156,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-storysource@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-storysource@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-aWQkW4IzDHRXdUyHPfksSdk4zK4gIJvXpxVCqX+oz3FuadmwZmhK1vWxNdm4Jo/0EZdwe2YZOBJwXHIwpZtigg==}
peerDependencies:
react: '*'
@@ -8149,7 +8168,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
'@storybook/preview-api': 7.4.5
'@storybook/router': 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -8166,7 +8185,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-toolbars@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-toolbars@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-PZlwUTIdQ18de3zNb+627VSF4UrCGIXDdikyO9O5j2Cd0xfr5uhS6tgQ+3AT0DfUj0UIkKxilwcAt+agpNyicA==}
peerDependencies:
react: '*'
@@ -8178,7 +8197,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
'@storybook/preview-api': 7.4.5
'@storybook/theming': 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -8189,7 +8208,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-viewport@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-viewport@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-SBLnUMIztVrqJ0fRCsVg9KZ29APLIxqAvTsYHF3twy5KB2naeCFuX3K9LxSH7vbROI6zHEfnPduz/Ykyvu9yUg==}
peerDependencies:
react: '*'
@@ -8201,7 +8220,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.4.5
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.4.5(react-dom@18.2.0)(react@18.2.0)
@@ -8233,7 +8252,7 @@ packages:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@storybook/blocks@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/blocks@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-FhAIkCT2HrzJcKsC3mL5+uG3GrbS23mYAT1h3iyPjCliZzxfCCI9UCMUXqYx4Z/FmAGJgpsQQXiBFZuoTHO9aQ==}
peerDependencies:
react: '*'
@@ -8246,7 +8265,7 @@ packages:
dependencies:
'@storybook/channels': 7.4.5
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.4.5
'@storybook/csf': 0.1.1
'@storybook/docs-tools': 7.4.5
@@ -8335,13 +8354,13 @@ packages:
remark-slug: 6.1.0
rollup: 3.29.2
typescript: 5.2.2
- vite: 4.4.9(@types/node@20.7.0)
+ vite: 4.4.9(@types/node@20.8.2)
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@storybook/builder-webpack5@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
+ /@storybook/builder-webpack5@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-XSZLZ2kNlZaOJ3i2uZ9vI25cJkmQhmTVHPER+FPKM/yliqsQj7p2P9zYz/Mn0LepUheK1Y+aWWiead1r2DnNMg==}
peerDependencies:
react: '*'
@@ -8360,7 +8379,7 @@ packages:
'@storybook/channels': 7.4.5
'@storybook/client-api': 7.4.5
'@storybook/client-logger': 7.4.5
- '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-common': 7.4.5
'@storybook/core-events': 7.4.5
'@storybook/core-webpack': 7.4.5
@@ -8372,7 +8391,7 @@ packages:
'@storybook/router': 7.4.5(react-dom@18.2.0)(react@18.2.0)
'@storybook/store': 7.4.5
'@storybook/theming': 7.4.5(react-dom@18.2.0)(react@18.2.0)
- '@swc/core': 1.3.90
+ '@swc/core': 1.3.91
'@types/node': 16.18.53
'@types/semver': 7.5.2
babel-loader: 9.1.3(@babel/core@7.23.0)(webpack@5.88.2)
@@ -8391,14 +8410,14 @@ packages:
react-dom: 18.2.0(react@18.2.0)
semver: 7.5.4
style-loader: 3.3.3(webpack@5.88.2)
- swc-loader: 0.2.3(@swc/core@1.3.90)(webpack@5.88.2)
- terser-webpack-plugin: 5.3.9(@swc/core@1.3.90)(webpack@5.88.2)
+ swc-loader: 0.2.3(@swc/core@1.3.91)(webpack@5.88.2)
+ terser-webpack-plugin: 5.3.9(@swc/core@1.3.91)(webpack@5.88.2)
ts-dedent: 2.2.0
typescript: 5.2.2
url: 0.11.3
util: 0.12.5
util-deprecate: 1.0.2
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
webpack-dev-middleware: 6.1.1(webpack@5.88.2)
webpack-hot-middleware: 2.25.4
webpack-virtual-modules: 0.5.0
@@ -8508,7 +8527,7 @@ packages:
- supports-color
dev: true
- /@storybook/components@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/components@7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-boskkfvMBB8CFYY9+1ofFNyKrdWXTY/ghzt7oK80dz6f2Eseo/WXK3OsCdCq5vWbLRCdbgJ8zXG8pAFi4yBsxA==}
peerDependencies:
react: '*'
@@ -8519,8 +8538,8 @@ packages:
react-dom:
optional: true
dependencies:
- '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
'@storybook/client-logger': 7.4.5
'@storybook/csf': 0.1.1
'@storybook/global': 5.0.0
@@ -8741,7 +8760,7 @@ packages:
resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==}
dev: true
- /@storybook/nextjs@7.4.5(@swc/core@1.3.90)(@types/react-dom@18.2.8)(@types/react@18.2.23)(next@13.5.3)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
+ /@storybook/nextjs@7.4.5(@swc/core@1.3.91)(@types/react-dom@18.2.8)(@types/react@18.2.24)(next@13.5.3)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-NXO9AwuyekD/BjP+DD0Bupa3gXAJGiYWoWvtRGntewhvDEXllX7ohrv5ldnwxeCsAM7a8Iih+Vs+aKsSLeGN8Q==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -8778,11 +8797,11 @@ packages:
'@babel/preset-react': 7.22.15(@babel/core@7.23.0)
'@babel/preset-typescript': 7.22.15(@babel/core@7.23.0)
'@babel/runtime': 7.22.15
- '@storybook/addon-actions': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/builder-webpack5': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.23)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@storybook/addon-actions': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/builder-webpack5': 7.4.5(@types/react-dom@18.2.8)(@types/react@18.2.24)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@storybook/core-common': 7.4.5
'@storybook/node-logger': 7.4.5
- '@storybook/preset-react-webpack': 7.4.5(@babel/core@7.23.0)(@swc/core@1.3.90)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@storybook/preset-react-webpack': 7.4.5(@babel/core@7.23.0)(@swc/core@1.3.91)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@storybook/preview-api': 7.4.5
'@storybook/react': 7.4.5(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
'@types/node': 16.18.53
@@ -8794,8 +8813,8 @@ packages:
next: 13.5.3(@babel/core@7.23.0)(react-dom@18.2.0)(react@18.2.0)
node-polyfill-webpack-plugin: 2.0.1
pnp-webpack-plugin: 1.7.0(typescript@5.2.2)
- postcss: 8.4.30
- postcss-loader: 7.3.3(postcss@8.4.30)(typescript@5.2.2)
+ postcss: 8.4.31
+ postcss-loader: 7.3.3(postcss@8.4.31)(typescript@5.2.2)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
resolve-url-loader: 5.0.0
@@ -8838,7 +8857,7 @@ packages:
resolution: {integrity: sha512-MWRjnKkUpEe2VkHNNpv3zkuMvxM2Zu9DMxFENQaEmhqUHkIFh5klfFwzhSBRexVLzIh7DA1p7mntIpY5A6lh+Q==}
dev: true
- /@storybook/preset-react-webpack@7.4.5(@babel/core@7.23.0)(@swc/core@1.3.90)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
+ /@storybook/preset-react-webpack@7.4.5(@babel/core@7.23.0)(@swc/core@1.3.91)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
resolution: {integrity: sha512-8mYHag0sGOHCjPHdEuLPM8U/FTCBIp5LaTxmpkJcNs/LprzSDI6OFWqbe+q8X7qkAL2Iz1YyqrYb4NgweqpZiA==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -8875,7 +8894,7 @@ packages:
react-refresh: 0.11.0
semver: 7.5.4
typescript: 5.2.2
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
transitivePeerDependencies:
- '@swc/core'
- '@types/webpack'
@@ -8927,7 +8946,7 @@ packages:
react-docgen-typescript: 2.2.2(typescript@5.2.2)
tslib: 2.6.2
typescript: 5.2.2
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
transitivePeerDependencies:
- supports-color
dev: true
@@ -8970,7 +8989,7 @@ packages:
react: 18.2.0
react-docgen: 6.0.0-alpha.3
react-dom: 18.2.0(react@18.2.0)
- vite: 4.4.9(@types/node@20.7.0)
+ vite: 4.4.9(@types/node@20.8.2)
transitivePeerDependencies:
- '@preact/preset-vite'
- encoding
@@ -9084,11 +9103,11 @@ packages:
- supports-color
dev: true
- /@storybook/testing-library@0.2.1:
- resolution: {integrity: sha512-AdbfLCm1C2nEFrhA3ScdicfW6Fjcorehr6RlGwECMiWwaXisnP971Wd4psqtWxlAqQo4tYBZ0f6rJ3J78JLtsg==}
+ /@storybook/testing-library@0.2.2:
+ resolution: {integrity: sha512-L8sXFJUHmrlyU2BsWWZGuAjv39Jl1uAqUHdxmN42JY15M4+XCMjGlArdCCjDe1wpTSW6USYISA9axjZojgtvnw==}
dependencies:
'@testing-library/dom': 9.3.3
- '@testing-library/user-event': 14.4.3(@testing-library/dom@9.3.3)
+ '@testing-library/user-event': 14.5.1(@testing-library/dom@9.3.3)
ts-dedent: 2.2.0
dev: true
@@ -9275,88 +9294,88 @@ packages:
- typescript
dev: true
- /@swc/core-darwin-arm64@1.3.90:
- resolution: {integrity: sha512-he0w74HvcoufE6CZrB/U/VGVbc7021IQvYrn1geMACnq/OqMBqjdczNtdNfJAy87LZ4AOUjHDKEIjsZZu7o8nQ==}
+ /@swc/core-darwin-arm64@1.3.91:
+ resolution: {integrity: sha512-7kHGiQ1he5khcEeJuHDmLZPM3rRL/ith5OTmV6bOPsoHi46kLeixORW+ts1opC3tC9vu6xbk16xgX0QAJchc1w==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@swc/core-darwin-x64@1.3.90:
- resolution: {integrity: sha512-hKNM0Ix0qMlAamPe0HUfaAhQVbZEL5uK6Iw8v9ew0FtVB4v7EifQ9n41wh+yCj0CjcHBPEBbQU0P6mNTxJu/RQ==}
+ /@swc/core-darwin-x64@1.3.91:
+ resolution: {integrity: sha512-8SpU18FbFpZDVzsHsAwdI1thF/picQGxq9UFxa8W+T9SDnbsqwFJv/6RqKJeJoDV6qFdl2OLjuO0OL7xrp0qnQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.3.90:
- resolution: {integrity: sha512-HumvtrqTWE8rlFuKt7If0ZL7145H/jVc4AeziVjcd+/ajpqub7IyfrLCYd5PmKMtfeSVDMsxjG0BJ0HLRxrTJA==}
+ /@swc/core-linux-arm-gnueabihf@1.3.91:
+ resolution: {integrity: sha512-fOq4Cy8UbwX1yf0WB0d8hWZaIKCnPtPGguRqdXGLfwvhjZ9SIErT6PnmGTGRbQCNCIkOZWHKyTU0r8t2dN3haQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-gnu@1.3.90:
- resolution: {integrity: sha512-tA7DqCS7YCwngwXZQeqQhhMm8BbydpaABw8Z/EDQ7KPK1iZ1rNjZw+aWvSpmNmEGmH1RmQ9QDS9mGRDp0faAeg==}
+ /@swc/core-linux-arm64-gnu@1.3.91:
+ resolution: {integrity: sha512-fki4ioRP/Esy4vdp8T34RCV+V9dqkRmOt763pf74pdiyFV2dPLXa5lnw/XvR1RTfPGknrYgjEQLCfZlReTryRw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-arm64-musl@1.3.90:
- resolution: {integrity: sha512-p2Vtid5BZA36fJkNUwk5HP+HJlKgTru+Ghna7pRe45ghKkkRIUk3fhkgudEvfKfhT+3AvP+GTVQ+T9k0gc9S8w==}
+ /@swc/core-linux-arm64-musl@1.3.91:
+ resolution: {integrity: sha512-XrG+DUUqNtfVLcJ20imby7fpBwQNG5VsEQBzQndSonPyUOa2YkTbBb60YDondfQGDABopuHH8gHN8o2H2/VCnQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-x64-gnu@1.3.90:
- resolution: {integrity: sha512-J6pDtWaulYGXuANERuvv4CqmUbZOQrRZBCRQGZQJ6a86RWpesZqckBelnYx48wYmkgvMkF95Y3xbI3WTfoSHzw==}
+ /@swc/core-linux-x64-gnu@1.3.91:
+ resolution: {integrity: sha512-d11bYhX+YPBr/Frcjc6eVn3C0LuS/9U1Li9EmQ+6s9EpYtYRl2ygSlC8eueLbaiazBnCVYFnc8bU4o0kc5B9sw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-linux-x64-musl@1.3.90:
- resolution: {integrity: sha512-3Gh6EA3+0K+l3MqnRON7h5bZ32xLmfcVM6QiHHJ9dBttq7YOEeEoMOCdIPMaQxJmK1VfLgZCsPYRd66MhvUSkw==}
+ /@swc/core-linux-x64-musl@1.3.91:
+ resolution: {integrity: sha512-2SRp5Dke2P4jCQePkDx9trkkTstnRpZJVw5r3jvYdk0zeO6iC4+ZPvvoWXJLigqQv/fZnIiSUfJ6ssOoaEqTzQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@swc/core-win32-arm64-msvc@1.3.90:
- resolution: {integrity: sha512-BNaw/iJloDyaNOFV23Sr53ULlnbmzSoerTJ10v0TjSZOEIpsS0Rw6xOK1iI0voDJnRXeZeWRSxEC9DhefNtN/g==}
+ /@swc/core-win32-arm64-msvc@1.3.91:
+ resolution: {integrity: sha512-l9qKXikOxj42UIjbeZpz9xtBmr736jOMqInNP8mVF2/U+ws5sI8zJjcOFFtfis4ru7vWCXhB1wtltdlJYO2vGA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@swc/core-win32-ia32-msvc@1.3.90:
- resolution: {integrity: sha512-SiyTethWAheE/JbxXCukAAciU//PLcmVZ2ME92MRuLMLmOhrwksjbaa7ukj9WEF3LWrherhSqTXnpj3VC1l/qw==}
+ /@swc/core-win32-ia32-msvc@1.3.91:
+ resolution: {integrity: sha512-+s+52O0QVPmzOgjEe/rcb0AK6q/J7EHKwAyJCu/FaYO9df5ovE0HJjSKP6HAF0dGPO5hkENrXuNGujofUH9vtQ==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@swc/core-win32-x64-msvc@1.3.90:
- resolution: {integrity: sha512-OpWAW5ljKcPJ3SQ0pUuKqYfwXv7ssIhVgrH9XP9ONtdgXKWZRL9hqJQkcL55FARw/gDjKanoCM47wsTNQL+ZZA==}
+ /@swc/core-win32-x64-msvc@1.3.91:
+ resolution: {integrity: sha512-7u9HDQhjUC3Gv43EFW84dZtduWCSa4MgltK+Sp9zEGti6WXqDPu/ESjvDsQEVYTBEMEvZs/xVAXPgLVHorV5nQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
requiresBuild: true
optional: true
- /@swc/core@1.3.90:
- resolution: {integrity: sha512-wptBxP4PldOnhmyDVj8qUcn++GRqyw1qc9wOTGtPNHz8cpuTfdfIgYGlhI4La0UYqecuaaIfLfokyuNePOMHPg==}
+ /@swc/core@1.3.91:
+ resolution: {integrity: sha512-r950d0fdlZ8qbSDyvApn3HyCojiZE8xpgJzQvypeMi32dalYwugdJKWyLB55JIGMRGJ8+lmVvY4MPGkSR3kXgA==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -9368,16 +9387,16 @@ packages:
'@swc/counter': 0.1.1
'@swc/types': 0.1.5
optionalDependencies:
- '@swc/core-darwin-arm64': 1.3.90
- '@swc/core-darwin-x64': 1.3.90
- '@swc/core-linux-arm-gnueabihf': 1.3.90
- '@swc/core-linux-arm64-gnu': 1.3.90
- '@swc/core-linux-arm64-musl': 1.3.90
- '@swc/core-linux-x64-gnu': 1.3.90
- '@swc/core-linux-x64-musl': 1.3.90
- '@swc/core-win32-arm64-msvc': 1.3.90
- '@swc/core-win32-ia32-msvc': 1.3.90
- '@swc/core-win32-x64-msvc': 1.3.90
+ '@swc/core-darwin-arm64': 1.3.91
+ '@swc/core-darwin-x64': 1.3.91
+ '@swc/core-linux-arm-gnueabihf': 1.3.91
+ '@swc/core-linux-arm64-gnu': 1.3.91
+ '@swc/core-linux-arm64-musl': 1.3.91
+ '@swc/core-linux-x64-gnu': 1.3.91
+ '@swc/core-linux-x64-musl': 1.3.91
+ '@swc/core-win32-arm64-msvc': 1.3.91
+ '@swc/core-win32-ia32-msvc': 1.3.91
+ '@swc/core-win32-x64-msvc': 1.3.91
/@swc/counter@0.1.1:
resolution: {integrity: sha512-xVRaR4u9hcYjFvcSg71Lz5Bo4//CyjAAfMxa7UsaDSYxAshflUkVJWiyVWrfxC59z2kP1IzI4/1BEpnhI9o3Mw==}
@@ -9400,35 +9419,35 @@ packages:
dependencies:
tslib: 2.6.2
- /@swc/jest@0.2.29(@swc/core@1.3.90):
+ /@swc/jest@0.2.29(@swc/core@1.3.91):
resolution: {integrity: sha512-8reh5RvHBsSikDC3WGCd5ZTd2BXKkyOdK7QwynrCH58jk2cQFhhHhFBg/jvnWZehUQe/EoOImLENc9/DwbBFow==}
engines: {npm: '>= 7.0.0'}
peerDependencies:
'@swc/core': '*'
dependencies:
'@jest/create-cache-key-function': 27.5.1
- '@swc/core': 1.3.90
+ '@swc/core': 1.3.91
jsonc-parser: 3.2.0
dev: true
/@swc/types@0.1.5:
resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==}
- /@tabler/icons-react@2.35.0(react@18.2.0):
- resolution: {integrity: sha512-jK2zgtMF2+LSjtbjYsfer+ryz72TwyJqv3MsmCfEpQwP37u01xvmTlVhJ+ox3bV+trsgjojsldVDuB05JuXLaw==}
+ /@tabler/icons-react@2.38.0(react@18.2.0):
+ resolution: {integrity: sha512-4oLo7z7HkFQXZNNAo3tmhpdZTeFrSNSxngmrEOGZ6WsjT2WRlc6kcEHMVxfCekV19JeB6Yprg30Bdr4sUYJLiQ==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@tabler/icons': 2.35.0
+ '@tabler/icons': 2.38.0
prop-types: 15.8.1
react: 18.2.0
dev: false
- /@tabler/icons@2.35.0:
- resolution: {integrity: sha512-qW/itKdmFvfGw6mAQ+cZy+2MYTXb0XdGAVhO3obYLJEfsSPMwQRO0S9ckFk1xMQX/Tj7REC3TEmWUBWNi3/o3g==}
+ /@tabler/icons@2.38.0:
+ resolution: {integrity: sha512-icDKK6n8jUYAavHK+L2Xe0/tYjwZVS7uhVazhCMVjdm3RfJLFbeLSNEIWcYdGOg6QAock9yqWse8hnhvsy2M3w==}
dev: false
/@tailwindcss/typography@0.5.10(tailwindcss@3.3.3):
@@ -9443,12 +9462,12 @@ packages:
tailwindcss: 3.3.3(ts-node@10.9.1)
dev: false
- /@tanstack/query-core@4.35.3:
- resolution: {integrity: sha512-PS+WEjd9wzKTyNjjQymvcOe1yg8f3wYc6mD+vb6CKyZAKvu4sIJwryfqfBULITKCla7P9C4l5e9RXePHvZOZeQ==}
+ /@tanstack/query-core@4.35.7:
+ resolution: {integrity: sha512-PgDJtX75ubFS0WCYFM7DqEoJ4QbxU3S5OH3gJSI40xr7UVVax3/J4CM3XUMOTs+EOT5YGEfssi3tfRVGte4DEw==}
dev: false
- /@tanstack/react-query@4.35.3(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-UgTPioip/rGG3EQilXfA2j4BJkhEQsR+KAbF+KIuvQ7j4MkgnTCJF01SfRpIRNtQTlEfz/+IL7+jP8WA8bFbsw==}
+ /@tanstack/react-query@4.35.7(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-0MankquP/6EOM2ATfEov6ViiKemey5uTbjGlFMX1xGotwNaqC76YKDMJdHumZupPbZcZPWAeoPGEHQmVKIKoOQ==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -9461,7 +9480,7 @@ packages:
react-native:
optional: true
dependencies:
- '@tanstack/query-core': 4.35.3
+ '@tanstack/query-core': 4.35.7
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
use-sync-external-store: 1.2.0(react@18.2.0)
@@ -9505,7 +9524,7 @@ packages:
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.5.16
- jest: 29.7.0(@types/node@20.7.0)(ts-node@10.9.1)
+ jest: 29.7.0(@types/node@20.8.2)(ts-node@10.9.1)
lodash: 4.17.21
redent: 3.0.0
@@ -9528,15 +9547,6 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@testing-library/user-event@14.4.3(@testing-library/dom@9.3.3):
- resolution: {integrity: sha512-kCUc5MEwaEMakkO5x7aoD+DLi02ehmEM2QCGWvNqAS1dV/fAvORWEjnjsEIvml59M7Y5kCkWN6fCCyPOe8OL6Q==}
- engines: {node: '>=12', npm: '>=6'}
- peerDependencies:
- '@testing-library/dom': '>=7.21.4'
- dependencies:
- '@testing-library/dom': 9.3.3
- dev: true
-
/@testing-library/user-event@14.5.1(@testing-library/dom@9.3.3):
resolution: {integrity: sha512-UCcUKrUYGj7ClomOo2SpNVvx4/fkd/2BbIHDCle8A0ax+P3bU7yJwDBDrS6ZwdTMARWTGODX1hEsCcO+7beJjg==}
engines: {node: '>=12', npm: '>=6'}
@@ -9544,7 +9554,6 @@ packages:
'@testing-library/dom': '>=7.21.4'
dependencies:
'@testing-library/dom': 9.3.3
- dev: false
/@tootallnate/once@2.0.0:
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
@@ -9599,14 +9608,14 @@ packages:
/@types/bn.js@5.1.2:
resolution: {integrity: sha512-dkpZu0szUtn9UXTmw+e0AJFd4D2XAxDnsCLdc05SfqpqzPEBft8eQr8uaFitfo/dUUOZERaLec2hHMG87A4Dxg==}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
dev: false
/@types/body-parser@1.19.3:
resolution: {integrity: sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==}
dependencies:
'@types/connect': 3.4.36
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
/@types/chrome@0.0.243:
resolution: {integrity: sha512-4PHv0kxxxpZFHWPBiJJ9TWH8kbx0567j1b2djnhpJjpiSGNI7UKkz7dSEECBtQ0B3N5nQTMwSB/5IopkWGAbEA==}
@@ -9618,18 +9627,18 @@ packages:
/@types/connect@3.4.36:
resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
/@types/cors@2.8.14:
resolution: {integrity: sha512-RXHUvNWYICtbP6s18PnOCaqToK8y14DnLd75c6HfyKf228dxy7pHNOQkxPtvXKp/hINFMDjbYzsj63nnpPMSRQ==}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
dev: true
/@types/cross-spawn@6.0.3:
resolution: {integrity: sha512-BDAkU7WHHRHnvBf5z89lcvACsvkz/n7Tv+HyD/uW76O29HoH1Tk/W6iQrepaZVbisvlEek4ygwT8IW7ow9XLAA==}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
dev: true
/@types/detect-port@1.3.3:
@@ -9677,7 +9686,7 @@ packages:
/@types/express-serve-static-core@4.17.36:
resolution: {integrity: sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
'@types/qs': 6.9.8
'@types/range-parser': 1.2.4
'@types/send': 0.17.1
@@ -9708,13 +9717,13 @@ packages:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
dev: true
/@types/graceful-fs@4.1.7:
resolution: {integrity: sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
/@types/har-format@1.2.13:
resolution: {integrity: sha512-PwBsCBD3lDODn4xpje3Y1di0aDJp4Ww7aSfMRVw6ysnxD4I7Wmq2mBkSKaDtN403hqH5sp6c9xQUvFYY3+lkBg==}
@@ -9763,7 +9772,7 @@ packages:
/@types/jsdom@20.0.1:
resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
'@types/tough-cookie': 4.0.3
parse5: 7.1.2
dev: false
@@ -9812,7 +9821,7 @@ packages:
/@types/node-fetch@2.6.5:
resolution: {integrity: sha512-OZsUlr2nxvkqUFLSaY2ZbA+P1q22q+KrlxWOn/38RX+u5kTkYL2mTujEpzUhGkS+K/QCYp9oagfXG39XOzyySg==}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
form-data: 4.0.0
dev: true
@@ -9824,8 +9833,8 @@ packages:
resolution: {integrity: sha512-vVmHeo4tpF8zsknALU90Hh24VueYdu45ZlXzYWFbom61YR4avJqTFDC3QlWzjuTdAv6/3xHaxiO9NrtVZXrkmw==}
dev: true
- /@types/node@20.7.0:
- resolution: {integrity: sha512-zI22/pJW2wUZOVyguFaUL1HABdmSVxpXrzIqkjsHmyUjNhPoWM1CKfvVuXfetHhIok4RY573cqS0mZ1SJEnoTg==}
+ /@types/node@20.8.2:
+ resolution: {integrity: sha512-Vvycsc9FQdwhxE3y3DzeIxuEJbWGDsnrxvMADzTDF/lcdR9/K+AQIeAghTQsHtotg/q0j3WEOYS/jQgSdWue3w==}
/@types/normalize-package-data@2.4.1:
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
@@ -9851,10 +9860,10 @@ packages:
/@types/react-dom@18.2.8:
resolution: {integrity: sha512-bAIvO5lN/U8sPGvs1Xm61rlRHHaq5rp5N3kp9C+NJ/Q41P8iqjkXSu0+/qu8POsjH9pNWb0OYabFez7taP7omw==}
dependencies:
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
- /@types/react@18.2.23:
- resolution: {integrity: sha512-qHLW6n1q2+7KyBEYnrZpcsAmU/iiCh9WGCKgXvMxx89+TYdJWRjZohVIo9XTcoLhfX3+/hP0Pbulu3bCZQ9PSA==}
+ /@types/react@18.2.24:
+ resolution: {integrity: sha512-Ee0Jt4sbJxMu1iDcetZEIKQr99J1Zfb6D4F3qfUWoR1JpInkY1Wdg4WwCyBjL257D0+jGqSl1twBjV8iCaC0Aw==}
dependencies:
'@types/prop-types': 15.7.6
'@types/scheduler': 0.16.3
@@ -9870,14 +9879,14 @@ packages:
resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==}
dependencies:
'@types/mime': 1.3.2
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
/@types/serve-static@1.15.2:
resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==}
dependencies:
'@types/http-errors': 2.0.2
'@types/mime': 3.0.1
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
/@types/stack-utils@2.0.1:
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
@@ -9905,7 +9914,7 @@ packages:
/@types/ws@8.5.5:
resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
dev: true
/@types/yargs-parser@21.0.0:
@@ -9922,8 +9931,8 @@ packages:
dependencies:
'@types/yargs-parser': 21.0.0
- /@typescript-eslint/eslint-plugin@6.7.3(@typescript-eslint/parser@6.7.3)(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-vntq452UHNltxsaaN+L9WyuMch8bMd9CqJ3zhzTPXXidwbf5mqqKCVXEuvRZUqLJSTLeWE65lQwyXsRGnXkCTA==}
+ /@typescript-eslint/eslint-plugin@6.7.4(@typescript-eslint/parser@6.7.4)(eslint@8.50.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-DAbgDXwtX+pDkAHwiGhqP3zWUGpW49B7eqmgpPtg+BKJXwdct79ut9+ifqOFPJGClGKSHXn2PTBatCnldJRUoA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -9934,11 +9943,11 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.8.1
- '@typescript-eslint/parser': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/scope-manager': 6.7.3
- '@typescript-eslint/type-utils': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.7.3
+ '@typescript-eslint/parser': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 6.7.4
+ '@typescript-eslint/type-utils': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.7.4
debug: 4.3.4
eslint: 8.50.0
graphemer: 1.4.0
@@ -9950,8 +9959,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/parser@6.7.3(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-TlutE+iep2o7R8Lf+yoer3zU6/0EAUc8QIBB3GYBc1KGz4c4TRm83xwXUZVPlZ6YCLss4r77jbu6j3sendJoiQ==}
+ /@typescript-eslint/parser@6.7.4(eslint@8.50.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-I5zVZFY+cw4IMZUeNCU7Sh2PO5O57F7Lr0uyhgCJmhN/BuTlnc55KxPonR4+EM3GBdfiCyGZye6DgMjtubQkmA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -9960,10 +9969,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.7.3
- '@typescript-eslint/types': 6.7.3
- '@typescript-eslint/typescript-estree': 6.7.3(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.7.3
+ '@typescript-eslint/scope-manager': 6.7.4
+ '@typescript-eslint/types': 6.7.4
+ '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2)
+ '@typescript-eslint/visitor-keys': 6.7.4
debug: 4.3.4
eslint: 8.50.0
typescript: 5.2.2
@@ -9977,15 +9986,15 @@ packages:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- /@typescript-eslint/scope-manager@6.7.3:
- resolution: {integrity: sha512-wOlo0QnEou9cHO2TdkJmzF7DFGvAKEnB82PuPNHpT8ZKKaZu6Bm63ugOTn9fXNJtvuDPanBc78lGUGGytJoVzQ==}
+ /@typescript-eslint/scope-manager@6.7.4:
+ resolution: {integrity: sha512-SdGqSLUPTXAXi7c3Ob7peAGVnmMoGzZ361VswK2Mqf8UOYcODiYvs8rs5ILqEdfvX1lE7wEZbLyELCW+Yrql1A==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.7.3
- '@typescript-eslint/visitor-keys': 6.7.3
+ '@typescript-eslint/types': 6.7.4
+ '@typescript-eslint/visitor-keys': 6.7.4
- /@typescript-eslint/type-utils@6.7.3(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-Fc68K0aTDrKIBvLnKTZ5Pf3MXK495YErrbHb1R6aTpfK5OdSFj0rVN7ib6Tx6ePrZ2gsjLqr0s98NG7l96KSQw==}
+ /@typescript-eslint/type-utils@6.7.4(eslint@8.50.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-n+g3zi1QzpcAdHFP9KQF+rEFxMb2KxtnJGID3teA/nxKHOVi3ylKovaqEzGBbVY2pBttU6z85gp0D00ufLzViQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -9994,8 +10003,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.7.3(typescript@5.2.2)
- '@typescript-eslint/utils': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2)
+ '@typescript-eslint/utils': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
debug: 4.3.4
eslint: 8.50.0
ts-api-utils: 1.0.3(typescript@5.2.2)
@@ -10007,8 +10016,8 @@ packages:
resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- /@typescript-eslint/types@6.7.3:
- resolution: {integrity: sha512-4g+de6roB2NFcfkZb439tigpAMnvEIg3rIjWQ+EM7IBaYt/CdJt6em9BJ4h4UpdgaBWdmx2iWsafHTrqmgIPNw==}
+ /@typescript-eslint/types@6.7.4:
+ resolution: {integrity: sha512-o9XWK2FLW6eSS/0r/tgjAGsYasLAnOWg7hvZ/dGYSSNjCh+49k5ocPN8OmG5aZcSJ8pclSOyVKP2x03Sj+RrCA==}
engines: {node: ^16.0.0 || >=18.0.0}
/@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2):
@@ -10031,8 +10040,8 @@ packages:
transitivePeerDependencies:
- supports-color
- /@typescript-eslint/typescript-estree@6.7.3(typescript@5.2.2):
- resolution: {integrity: sha512-YLQ3tJoS4VxLFYHTw21oe1/vIZPRqAO91z6Uv0Ss2BKm/Ag7/RVQBcXTGcXhgJMdA4U+HrKuY5gWlJlvoaKZ5g==}
+ /@typescript-eslint/typescript-estree@6.7.4(typescript@5.2.2):
+ resolution: {integrity: sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -10040,8 +10049,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.7.3
- '@typescript-eslint/visitor-keys': 6.7.3
+ '@typescript-eslint/types': 6.7.4
+ '@typescript-eslint/visitor-keys': 6.7.4
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -10070,8 +10079,8 @@ packages:
- supports-color
- typescript
- /@typescript-eslint/utils@6.7.3(eslint@8.50.0)(typescript@5.2.2):
- resolution: {integrity: sha512-vzLkVder21GpWRrmSR9JxGZ5+ibIUSudXlW52qeKpzUEQhRSmyZiVDDj3crAth7+5tmN1ulvgKaCU2f/bPRCzg==}
+ /@typescript-eslint/utils@6.7.4(eslint@8.50.0)(typescript@5.2.2):
+ resolution: {integrity: sha512-PRQAs+HUn85Qdk+khAxsVV+oULy3VkbH3hQ8hxLRJXWBEd7iI+GbQxH5SEUSH7kbEoTp6oT1bOwyga24ELALTA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -10079,9 +10088,9 @@ packages:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
'@types/json-schema': 7.0.13
'@types/semver': 7.5.2
- '@typescript-eslint/scope-manager': 6.7.3
- '@typescript-eslint/types': 6.7.3
- '@typescript-eslint/typescript-estree': 6.7.3(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 6.7.4
+ '@typescript-eslint/types': 6.7.4
+ '@typescript-eslint/typescript-estree': 6.7.4(typescript@5.2.2)
eslint: 8.50.0
semver: 7.5.4
transitivePeerDependencies:
@@ -10095,11 +10104,11 @@ packages:
'@typescript-eslint/types': 5.62.0
eslint-visitor-keys: 3.4.3
- /@typescript-eslint/visitor-keys@6.7.3:
- resolution: {integrity: sha512-HEVXkU9IB+nk9o63CeICMHxFWbHWr3E1mpilIQBe9+7L/lH97rleFLVtYsfnWB+JVMaiFnEaxvknvmIzX+CqVg==}
+ /@typescript-eslint/visitor-keys@6.7.4:
+ resolution: {integrity: sha512-pOW37DUhlTZbvph50x5zZCkFn3xzwkGtNoJHzIM3svpiSkJzwOYr/kVBaXmf+RAQiUDs1AHEZVNPg6UJCJpwRA==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.7.3
+ '@typescript-eslint/types': 6.7.4
eslint-visitor-keys: 3.4.3
/@vitejs/plugin-react@3.1.0(vite@4.4.9):
@@ -10113,7 +10122,7 @@ packages:
'@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.0)
magic-string: 0.27.0
react-refresh: 0.14.0
- vite: 4.4.9(@types/node@20.7.0)
+ vite: 4.4.9(@types/node@20.8.2)
transitivePeerDependencies:
- supports-color
dev: true
@@ -10812,7 +10821,7 @@ packages:
engines: {node: '>=8'}
dev: true
- /autoprefixer@10.4.16(postcss@8.4.30):
+ /autoprefixer@10.4.16(postcss@8.4.31):
resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
@@ -10824,7 +10833,7 @@ packages:
fraction.js: 4.3.6
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.30
+ postcss: 8.4.31
postcss-value-parser: 4.2.0
dev: true
@@ -10889,7 +10898,7 @@ packages:
'@babel/core': 7.23.0
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
dev: true
/babel-plugin-add-react-displayname@0.0.5:
@@ -11957,7 +11966,7 @@ packages:
sha.js: 2.4.11
dev: true
- /create-jest@29.7.0(@types/node@20.7.0)(ts-node@10.9.1):
+ /create-jest@29.7.0(@types/node@20.8.2)(ts-node@10.9.1):
resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -11966,7 +11975,7 @@ packages:
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.7.0)(ts-node@10.9.1)
+ jest-config: 29.7.0(@types/node@20.8.2)(ts-node@10.9.1)
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -12043,15 +12052,15 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.30)
- postcss: 8.4.30
- postcss-modules-extract-imports: 3.0.0(postcss@8.4.30)
- postcss-modules-local-by-default: 4.0.3(postcss@8.4.30)
- postcss-modules-scope: 3.0.0(postcss@8.4.30)
- postcss-modules-values: 4.0.0(postcss@8.4.30)
+ icss-utils: 5.1.0(postcss@8.4.31)
+ postcss: 8.4.31
+ postcss-modules-extract-imports: 3.0.0(postcss@8.4.31)
+ postcss-modules-local-by-default: 4.0.3(postcss@8.4.31)
+ postcss-modules-scope: 3.0.0(postcss@8.4.31)
+ postcss-modules-values: 4.0.0(postcss@8.4.31)
postcss-value-parser: 4.2.0
semver: 7.5.4
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
dev: true
/css-select@4.3.0:
@@ -12813,34 +12822,34 @@ packages:
'@esbuild/win32-x64': 0.18.20
dev: true
- /esbuild@0.19.3:
- resolution: {integrity: sha512-UlJ1qUUA2jL2nNib1JTSkifQTcYTroFqRjwCFW4QYEKEsixXD5Tik9xML7zh2gTxkYTBKGHNH9y7txMwVyPbjw==}
+ /esbuild@0.19.4:
+ resolution: {integrity: sha512-x7jL0tbRRpv4QUyuDMjONtWFciygUxWaUM1kMX2zWxI0X2YWOt7MSA0g4UdeSiHM8fcYVzpQhKYOycZwxTdZkA==}
engines: {node: '>=12'}
hasBin: true
requiresBuild: true
optionalDependencies:
- '@esbuild/android-arm': 0.19.3
- '@esbuild/android-arm64': 0.19.3
- '@esbuild/android-x64': 0.19.3
- '@esbuild/darwin-arm64': 0.19.3
- '@esbuild/darwin-x64': 0.19.3
- '@esbuild/freebsd-arm64': 0.19.3
- '@esbuild/freebsd-x64': 0.19.3
- '@esbuild/linux-arm': 0.19.3
- '@esbuild/linux-arm64': 0.19.3
- '@esbuild/linux-ia32': 0.19.3
- '@esbuild/linux-loong64': 0.19.3
- '@esbuild/linux-mips64el': 0.19.3
- '@esbuild/linux-ppc64': 0.19.3
- '@esbuild/linux-riscv64': 0.19.3
- '@esbuild/linux-s390x': 0.19.3
- '@esbuild/linux-x64': 0.19.3
- '@esbuild/netbsd-x64': 0.19.3
- '@esbuild/openbsd-x64': 0.19.3
- '@esbuild/sunos-x64': 0.19.3
- '@esbuild/win32-arm64': 0.19.3
- '@esbuild/win32-ia32': 0.19.3
- '@esbuild/win32-x64': 0.19.3
+ '@esbuild/android-arm': 0.19.4
+ '@esbuild/android-arm64': 0.19.4
+ '@esbuild/android-x64': 0.19.4
+ '@esbuild/darwin-arm64': 0.19.4
+ '@esbuild/darwin-x64': 0.19.4
+ '@esbuild/freebsd-arm64': 0.19.4
+ '@esbuild/freebsd-x64': 0.19.4
+ '@esbuild/linux-arm': 0.19.4
+ '@esbuild/linux-arm64': 0.19.4
+ '@esbuild/linux-ia32': 0.19.4
+ '@esbuild/linux-loong64': 0.19.4
+ '@esbuild/linux-mips64el': 0.19.4
+ '@esbuild/linux-ppc64': 0.19.4
+ '@esbuild/linux-riscv64': 0.19.4
+ '@esbuild/linux-s390x': 0.19.4
+ '@esbuild/linux-x64': 0.19.4
+ '@esbuild/netbsd-x64': 0.19.4
+ '@esbuild/openbsd-x64': 0.19.4
+ '@esbuild/sunos-x64': 0.19.4
+ '@esbuild/win32-arm64': 0.19.4
+ '@esbuild/win32-ia32': 0.19.4
+ '@esbuild/win32-x64': 0.19.4
dev: false
/escalade@3.1.1:
@@ -12890,7 +12899,7 @@ packages:
transitivePeerDependencies:
- supports-color
- /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0):
+ /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0):
resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -12900,8 +12909,8 @@ packages:
debug: 4.3.4
enhanced-resolve: 5.15.0
eslint: 8.50.0
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
fast-glob: 3.3.1
get-tsconfig: 4.7.2
is-core-module: 2.13.0
@@ -12912,7 +12921,7 @@ packages:
- eslint-import-resolver-webpack
- supports-color
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -12933,11 +12942,11 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
debug: 3.2.7(supports-color@5.5.0)
eslint: 8.50.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.1)(eslint@8.50.0)
transitivePeerDependencies:
- supports-color
@@ -12951,7 +12960,7 @@ packages:
eslint: 8.50.0
ignore: 5.2.4
- /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0):
+ /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0):
resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==}
engines: {node: '>=4'}
peerDependencies:
@@ -12961,7 +12970,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.7.3(eslint@8.50.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.7.4(eslint@8.50.0)(typescript@5.2.2)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
@@ -12970,7 +12979,7 @@ packages:
doctrine: 2.1.0
eslint: 8.50.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.3)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.4)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.50.0)
has: 1.0.3
is-core-module: 2.13.0
is-glob: 4.0.3
@@ -13620,7 +13629,7 @@ packages:
semver: 7.5.4
tapable: 2.2.1
typescript: 5.2.2
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
dev: true
/form-data@2.3.3:
@@ -14046,7 +14055,7 @@ packages:
upper-case: 2.0.2
dev: true
- /graphql-config@5.0.2(@types/node@20.7.0)(graphql@16.8.1)(typescript@5.2.2):
+ /graphql-config@5.0.2(@types/node@20.8.2)(graphql@16.8.1)(typescript@5.2.2):
resolution: {integrity: sha512-7TPxOrlbiG0JplSZYCyxn2XQtqVhXomEjXUmWJVSS5ET1nPhOJSsIb/WTwqWhcYX6G0RlHXSj9PLtGTKmxLNGg==}
engines: {node: '>= 16.0.0'}
peerDependencies:
@@ -14060,7 +14069,7 @@ packages:
'@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1)
'@graphql-tools/load': 8.0.0(graphql@16.8.1)
'@graphql-tools/merge': 9.0.0(graphql@16.8.1)
- '@graphql-tools/url-loader': 8.0.0(@types/node@20.7.0)(graphql@16.8.1)
+ '@graphql-tools/url-loader': 8.0.0(@types/node@20.8.2)(graphql@16.8.1)
'@graphql-tools/utils': 10.0.6(graphql@16.8.1)
cosmiconfig: 8.3.6(typescript@5.2.2)
graphql: 16.8.1
@@ -14224,8 +14233,8 @@ packages:
graphql: 16.8.1
dev: true
- /graphql-yoga@4.0.4(graphql@16.8.1):
- resolution: {integrity: sha512-MvCLhFecYNIKuxAZisPjpIL9lxRYbpgPSNKENDO/8CV3oiFlsLJHZb5dp2sVAeLafXHeZ9TgkijLthUBc1+Jag==}
+ /graphql-yoga@4.0.5(graphql@16.8.1):
+ resolution: {integrity: sha512-vIbJU9QX5RP4PoxbMCHcfOlt/3EsC/0uLdAOlKaiUvlwJDTFCaIHo2X10vL4i/27Gw8g90ECIwm2YbmeLDwcqg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: '>=16.8.1'
@@ -14433,7 +14442,7 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
dev: true
/htmlparser2@6.1.0:
@@ -14549,13 +14558,13 @@ packages:
safer-buffer: 2.1.2
dev: false
- /icss-utils@5.1.0(postcss@8.4.30):
+ /icss-utils@5.1.0(postcss@8.4.31):
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.31
dev: true
/identity-obj-proxy@3.0.0:
@@ -15212,7 +15221,7 @@ packages:
'@jest/expect': 29.7.0
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
chalk: 4.1.2
co: 4.6.0
dedent: 1.5.1
@@ -15232,7 +15241,7 @@ packages:
- babel-plugin-macros
- supports-color
- /jest-cli@29.7.0(@types/node@20.7.0)(ts-node@10.9.1):
+ /jest-cli@29.7.0(@types/node@20.8.2)(ts-node@10.9.1):
resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -15246,10 +15255,10 @@ packages:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.7.0)(ts-node@10.9.1)
+ create-jest: 29.7.0(@types/node@20.8.2)(ts-node@10.9.1)
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@20.7.0)(ts-node@10.9.1)
+ jest-config: 29.7.0(@types/node@20.8.2)(ts-node@10.9.1)
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -15259,7 +15268,7 @@ packages:
- supports-color
- ts-node
- /jest-config@29.7.0(@types/node@20.7.0)(ts-node@10.9.1):
+ /jest-config@29.7.0(@types/node@20.8.2)(ts-node@10.9.1):
resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
peerDependencies:
@@ -15274,7 +15283,7 @@ packages:
'@babel/core': 7.23.0
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
babel-jest: 29.7.0(@babel/core@7.23.0)
chalk: 4.1.2
ci-info: 3.8.0
@@ -15294,7 +15303,7 @@ packages:
pretty-format: 29.7.0
slash: 3.0.0
strip-json-comments: 3.1.1
- ts-node: 10.9.1(@swc/core@1.3.90)(@types/node@20.7.0)(typescript@5.2.2)
+ ts-node: 10.9.1(@swc/core@1.3.91)(@types/node@20.8.2)(typescript@5.2.2)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -15337,7 +15346,7 @@ packages:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
'@types/jsdom': 20.0.1
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
jest-mock: 29.7.0
jest-util: 29.7.0
jsdom: 20.0.3
@@ -15354,7 +15363,7 @@ packages:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -15374,7 +15383,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.7
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -15431,7 +15440,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.7.0
+ '@types/node': 20.8.2
dev: true
/jest-mock@29.7.0:
@@ -15439,7 +15448,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
jest-util: 29.7.0
/jest-pnp-resolver@1.2.3(jest-resolve@29.7.0):
@@ -15489,7 +15498,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
chalk: 4.1.2
emittery: 0.13.1
graceful-fs: 4.2.11
@@ -15519,7 +15528,7 @@ packages:
'@jest/test-result': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
chalk: 4.1.2
cjs-module-lexer: 1.2.3
collect-v8-coverage: 1.0.2
@@ -15573,7 +15582,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
chalk: 4.1.2
ci-info: 3.8.0
graceful-fs: 4.2.11
@@ -15596,7 +15605,7 @@ packages:
dependencies:
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
@@ -15607,7 +15616,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
merge-stream: 2.0.0
supports-color: 8.1.1
dev: true
@@ -15616,12 +15625,12 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
- /jest@29.7.0(@types/node@20.7.0)(ts-node@10.9.1):
+ /jest@29.7.0(@types/node@20.8.2)(ts-node@10.9.1):
resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
hasBin: true
@@ -15634,7 +15643,7 @@ packages:
'@jest/core': 29.7.0(ts-node@10.9.1)
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@20.7.0)(ts-node@10.9.1)
+ jest-cli: 29.7.0(@types/node@20.8.2)(ts-node@10.9.1)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -16281,7 +16290,7 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
- /meros@1.3.0(@types/node@20.7.0):
+ /meros@1.3.0(@types/node@20.8.2):
resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==}
engines: {node: '>=13'}
peerDependencies:
@@ -16290,7 +16299,7 @@ packages:
'@types/node':
optional: true
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
dev: true
/mersenne-twister@1.1.0:
@@ -17236,27 +17245,27 @@ packages:
- supports-color
dev: false
- /postcss-import@15.1.0(postcss@8.4.30):
+ /postcss-import@15.1.0(postcss@8.4.31):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.31
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.6
- /postcss-js@4.0.1(postcss@8.4.30):
+ /postcss-js@4.0.1(postcss@8.4.31):
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.30
+ postcss: 8.4.31
- /postcss-load-config@4.0.1(postcss@8.4.30)(ts-node@10.9.1):
+ /postcss-load-config@4.0.1(postcss@8.4.31)(ts-node@10.9.1):
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
peerDependencies:
@@ -17269,11 +17278,11 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.30
- ts-node: 10.9.1(@swc/core@1.3.90)(@types/node@20.7.0)(typescript@5.2.2)
+ postcss: 8.4.31
+ ts-node: 10.9.1(@swc/core@1.3.91)(@types/node@20.8.2)(typescript@5.2.2)
yaml: 2.3.2
- /postcss-loader@7.3.3(postcss@8.4.30)(typescript@5.2.2):
+ /postcss-loader@7.3.3(postcss@8.4.31)(typescript@5.2.2):
resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
@@ -17282,60 +17291,60 @@ packages:
dependencies:
cosmiconfig: 8.3.6(typescript@5.2.2)
jiti: 1.20.0
- postcss: 8.4.30
+ postcss: 8.4.31
semver: 7.5.4
transitivePeerDependencies:
- typescript
dev: true
- /postcss-modules-extract-imports@3.0.0(postcss@8.4.30):
+ /postcss-modules-extract-imports@3.0.0(postcss@8.4.31):
resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.31
dev: true
- /postcss-modules-local-by-default@4.0.3(postcss@8.4.30):
+ /postcss-modules-local-by-default@4.0.3(postcss@8.4.31):
resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.30)
- postcss: 8.4.30
+ icss-utils: 5.1.0(postcss@8.4.31)
+ postcss: 8.4.31
postcss-selector-parser: 6.0.13
postcss-value-parser: 4.2.0
dev: true
- /postcss-modules-scope@3.0.0(postcss@8.4.30):
+ /postcss-modules-scope@3.0.0(postcss@8.4.31):
resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.31
postcss-selector-parser: 6.0.13
dev: true
- /postcss-modules-values@4.0.0(postcss@8.4.30):
+ /postcss-modules-values@4.0.0(postcss@8.4.31):
resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
dependencies:
- icss-utils: 5.1.0(postcss@8.4.30)
- postcss: 8.4.30
+ icss-utils: 5.1.0(postcss@8.4.31)
+ postcss: 8.4.31
dev: true
- /postcss-nested@6.0.1(postcss@8.4.30):
+ /postcss-nested@6.0.1(postcss@8.4.31):
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.30
+ postcss: 8.4.31
postcss-selector-parser: 6.0.13
/postcss-selector-parser@6.0.10:
@@ -17364,8 +17373,8 @@ packages:
picocolors: 1.0.0
source-map-js: 1.0.2
- /postcss@8.4.30:
- resolution: {integrity: sha512-7ZEao1g4kd68l97aWG/etQKPKq07us0ieSZ2TnFDk11i0ZfDW2AwKHYU8qv4MZKqN2fdBfg+7q0ES06UA73C1g==}
+ /postcss@8.4.31:
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.6
@@ -17630,8 +17639,8 @@ packages:
iconv-lite: 0.4.24
unpipe: 1.0.0
- /react-aria@3.28.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-M0R12U5X83zktim4V/4le7KEV4REu25yDr6zOwRFOTXwILLxYsmWnaajX7ye5da84tl4kDjYoJIKJWVNvhjNoA==}
+ /react-aria@3.29.0(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-2UCaemSHvGwLNGxyb3sh9RF4aZ+GWiANzK8O7DXU7ek7JKcuzl/szj+QR1GsrzFjVVAH08ml5hgPZKkfTAR0HQ==}
peerDependencies:
react: '*'
react-dom: '*'
@@ -17641,42 +17650,42 @@ packages:
react-dom:
optional: true
dependencies:
- '@react-aria/breadcrumbs': 3.5.5(react@18.2.0)
- '@react-aria/button': 3.8.2(react@18.2.0)
- '@react-aria/calendar': 3.5.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/checkbox': 3.11.0(react@18.2.0)
- '@react-aria/combobox': 3.6.4(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/datepicker': 3.7.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/dialog': 3.5.5(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/dnd': 3.4.1(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/focus': 3.14.1(react@18.2.0)
- '@react-aria/gridlist': 3.6.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/i18n': 3.8.2(react@18.2.0)
- '@react-aria/interactions': 3.18.0(react@18.2.0)
- '@react-aria/label': 3.7.0(react@18.2.0)
- '@react-aria/link': 3.5.4(react@18.2.0)
- '@react-aria/listbox': 3.10.2(react@18.2.0)
- '@react-aria/menu': 3.10.2(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/meter': 3.4.5(react@18.2.0)
- '@react-aria/numberfield': 3.8.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/overlays': 3.17.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/progress': 3.4.5(react@18.2.0)
- '@react-aria/radio': 3.8.0(react@18.2.0)
- '@react-aria/searchfield': 3.5.5(react@18.2.0)
- '@react-aria/select': 3.12.1(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/selection': 3.16.2(react@18.2.0)
- '@react-aria/separator': 3.3.5(react@18.2.0)
- '@react-aria/slider': 3.7.0(react@18.2.0)
+ '@react-aria/breadcrumbs': 3.5.6(react@18.2.0)
+ '@react-aria/button': 3.8.3(react@18.2.0)
+ '@react-aria/calendar': 3.5.1(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/checkbox': 3.11.1(react@18.2.0)
+ '@react-aria/combobox': 3.7.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/datepicker': 3.8.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/dialog': 3.5.6(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/dnd': 3.4.2(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/focus': 3.14.2(react@18.2.0)
+ '@react-aria/gridlist': 3.7.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/i18n': 3.8.3(react@18.2.0)
+ '@react-aria/interactions': 3.19.0(react@18.2.0)
+ '@react-aria/label': 3.7.1(react@18.2.0)
+ '@react-aria/link': 3.6.0(react@18.2.0)
+ '@react-aria/listbox': 3.11.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/menu': 3.11.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/meter': 3.4.6(react@18.2.0)
+ '@react-aria/numberfield': 3.9.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/overlays': 3.18.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/progress': 3.4.6(react@18.2.0)
+ '@react-aria/radio': 3.8.1(react@18.2.0)
+ '@react-aria/searchfield': 3.5.6(react@18.2.0)
+ '@react-aria/select': 3.13.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/selection': 3.17.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/separator': 3.3.6(react@18.2.0)
+ '@react-aria/slider': 3.7.1(react@18.2.0)
'@react-aria/ssr': 3.8.0(react@18.2.0)
- '@react-aria/switch': 3.5.4(react@18.2.0)
- '@react-aria/table': 3.12.0(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/tabs': 3.7.0(react@18.2.0)
- '@react-aria/tag': 3.1.2(react-dom@18.2.0)(react@18.2.0)
- '@react-aria/textfield': 3.12.0(react@18.2.0)
- '@react-aria/tooltip': 3.6.2(react@18.2.0)
- '@react-aria/utils': 3.20.0(react@18.2.0)
- '@react-aria/visually-hidden': 3.8.4(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-aria/switch': 3.5.5(react@18.2.0)
+ '@react-aria/table': 3.13.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/tabs': 3.8.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/tag': 3.2.0(react-dom@18.2.0)(react@18.2.0)
+ '@react-aria/textfield': 3.12.1(react@18.2.0)
+ '@react-aria/tooltip': 3.6.3(react@18.2.0)
+ '@react-aria/utils': 3.21.0(react@18.2.0)
+ '@react-aria/visually-hidden': 3.8.5(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -17806,7 +17815,7 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /react-remove-scroll-bar@2.3.4(@types/react@18.2.23)(react@18.2.0):
+ /react-remove-scroll-bar@2.3.4(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
@@ -17818,12 +17827,12 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
- react-style-singleton: 2.2.1(@types/react@18.2.23)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.24)(react@18.2.0)
tslib: 2.6.2
- /react-remove-scroll@2.5.5(@types/react@18.2.23)(react@18.2.0):
+ /react-remove-scroll@2.5.5(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
@@ -17835,13 +17844,13 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
- react-remove-scroll-bar: 2.3.4(@types/react@18.2.23)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.2.23)(react@18.2.0)
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.24)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.24)(react@18.2.0)
tslib: 2.6.2
- use-callback-ref: 1.3.0(@types/react@18.2.23)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.2.23)(react@18.2.0)
+ use-callback-ref: 1.3.0(@types/react@18.2.24)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.24)(react@18.2.0)
/react-resize-detector@7.1.2(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-zXnPJ2m8+6oq9Nn8zsep/orts9vQv3elrpA+R8XTcW7DVVUJ9vwDwMXaBtykAYjMnkCIaOoK9vObyR7ZgFNlOw==}
@@ -17859,40 +17868,40 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /react-stately@3.26.0(react@18.2.0):
- resolution: {integrity: sha512-+1wWsdBc88rRFNXhzbD7RoT13IWzb2Q5j0HM//sS22gDHrUpwh9QpxX9aYf4qepZ1uuvCf6UeMFODCORiu8lcQ==}
+ /react-stately@3.27.0(react@18.2.0):
+ resolution: {integrity: sha512-C5ubKP33M3SmilXYv2vHYgfSLsOM0jlZ8y1KyEKWeJzN4yxy0sGku2SRUpUWTDdncB5lOeLE21EZBJVz71wePA==}
peerDependencies:
react: '*'
peerDependenciesMeta:
react:
optional: true
dependencies:
- '@react-stately/calendar': 3.4.0(react@18.2.0)
- '@react-stately/checkbox': 3.5.0(react@18.2.0)
- '@react-stately/collections': 3.10.1(react@18.2.0)
- '@react-stately/combobox': 3.7.0(react@18.2.0)
- '@react-stately/data': 3.10.2(react@18.2.0)
- '@react-stately/datepicker': 3.7.0(react@18.2.0)
- '@react-stately/dnd': 3.2.4(react@18.2.0)
- '@react-stately/list': 3.9.2(react@18.2.0)
- '@react-stately/menu': 3.5.5(react@18.2.0)
- '@react-stately/numberfield': 3.6.1(react@18.2.0)
- '@react-stately/overlays': 3.6.2(react@18.2.0)
- '@react-stately/radio': 3.9.0(react@18.2.0)
- '@react-stately/searchfield': 3.4.5(react@18.2.0)
- '@react-stately/select': 3.5.4(react@18.2.0)
- '@react-stately/selection': 3.13.4(react@18.2.0)
- '@react-stately/slider': 3.4.2(react@18.2.0)
- '@react-stately/table': 3.11.1(react@18.2.0)
- '@react-stately/tabs': 3.6.0(react@18.2.0)
- '@react-stately/toggle': 3.6.2(react@18.2.0)
- '@react-stately/tooltip': 3.4.4(react@18.2.0)
- '@react-stately/tree': 3.7.2(react@18.2.0)
- '@react-types/shared': 3.20.0(react@18.2.0)
+ '@react-stately/calendar': 3.4.1(react@18.2.0)
+ '@react-stately/checkbox': 3.5.1(react@18.2.0)
+ '@react-stately/collections': 3.10.2(react@18.2.0)
+ '@react-stately/combobox': 3.7.1(react@18.2.0)
+ '@react-stately/data': 3.10.3(react@18.2.0)
+ '@react-stately/datepicker': 3.8.0(react@18.2.0)
+ '@react-stately/dnd': 3.2.5(react@18.2.0)
+ '@react-stately/list': 3.10.0(react@18.2.0)
+ '@react-stately/menu': 3.5.6(react@18.2.0)
+ '@react-stately/numberfield': 3.6.2(react@18.2.0)
+ '@react-stately/overlays': 3.6.3(react@18.2.0)
+ '@react-stately/radio': 3.9.1(react@18.2.0)
+ '@react-stately/searchfield': 3.4.6(react@18.2.0)
+ '@react-stately/select': 3.5.5(react@18.2.0)
+ '@react-stately/selection': 3.14.0(react@18.2.0)
+ '@react-stately/slider': 3.4.3(react@18.2.0)
+ '@react-stately/table': 3.11.2(react@18.2.0)
+ '@react-stately/tabs': 3.6.1(react@18.2.0)
+ '@react-stately/toggle': 3.6.3(react@18.2.0)
+ '@react-stately/tooltip': 3.4.5(react@18.2.0)
+ '@react-stately/tree': 3.7.3(react@18.2.0)
+ '@react-types/shared': 3.21.0(react@18.2.0)
react: 18.2.0
dev: false
- /react-style-singleton@2.2.1(@types/react@18.2.23)(react@18.2.0):
+ /react-style-singleton@2.2.1(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -17904,7 +17913,7 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
@@ -18287,7 +18296,7 @@ packages:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 3.2.1
- postcss: 8.4.30
+ postcss: 8.4.31
source-map: 0.6.1
dev: true
@@ -19040,7 +19049,7 @@ packages:
peerDependencies:
webpack: ^5.0.0
dependencies:
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
dev: true
/styled-jsx@5.1.1(@babel/core@7.23.0)(react@18.2.0):
@@ -19131,14 +19140,14 @@ packages:
tslib: 2.6.2
dev: true
- /swc-loader@0.2.3(@swc/core@1.3.90)(webpack@5.88.2):
+ /swc-loader@0.2.3(@swc/core@1.3.91)(webpack@5.88.2):
resolution: {integrity: sha512-D1p6XXURfSPleZZA/Lipb3A8pZ17fP4NObZvFCDjK/OKljroqDpPmsBdTraWhVBqUNpcWBQY1imWdoPScRlQ7A==}
peerDependencies:
'@swc/core': ^1.2.147
webpack: '>=2'
dependencies:
- '@swc/core': 1.3.90
- webpack: 5.88.2(@swc/core@1.3.90)
+ '@swc/core': 1.3.91
+ webpack: 5.88.2(@swc/core@1.3.91)
dev: true
/symbol-tree@3.2.4:
@@ -19187,8 +19196,8 @@ packages:
/tailwindcss-radix@2.8.0:
resolution: {integrity: sha512-1k1UfoIYgVyBl13FKwwoKavjnJ5VEaUClCTAsgz3VLquN4ay/lyaMPzkbqD71sACDs2fRGImytAUlMb4TzOt1A==}
- /tailwindcss-themer@3.1.1(tailwindcss@3.3.3):
- resolution: {integrity: sha512-gGXTiJB3wfh0ABNMsjBMP4/jrdOsJN7AJn+usfKXY2dw6kYyalqcAc72b02yYc+1dMjBuCjkhwU4JNux/pphkg==}
+ /tailwindcss-themer@3.1.2(tailwindcss@3.3.3):
+ resolution: {integrity: sha512-KZ67y/OY72rzZdEVKFFzCRYjQK6mmu4jlsSe5ae3iFV9yI8Se1L6/mfgphvjRgR9TQIaTwk9WYM2AF9hN6u3Ow==}
peerDependencies:
tailwindcss: ^3.1.0
dependencies:
@@ -19218,11 +19227,11 @@ packages:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.30
- postcss-import: 15.1.0(postcss@8.4.30)
- postcss-js: 4.0.1(postcss@8.4.30)
- postcss-load-config: 4.0.1(postcss@8.4.30)(ts-node@10.9.1)
- postcss-nested: 6.0.1(postcss@8.4.30)
+ postcss: 8.4.31
+ postcss-import: 15.1.0(postcss@8.4.31)
+ postcss-js: 4.0.1(postcss@8.4.31)
+ postcss-load-config: 4.0.1(postcss@8.4.31)(ts-node@10.9.1)
+ postcss-nested: 6.0.1(postcss@8.4.31)
postcss-selector-parser: 6.0.13
resolve: 1.22.6
sucrase: 3.34.0
@@ -19293,7 +19302,7 @@ packages:
unique-string: 2.0.0
dev: true
- /terser-webpack-plugin@5.3.9(@swc/core@1.3.90)(webpack@5.88.2):
+ /terser-webpack-plugin@5.3.9(@swc/core@1.3.91)(webpack@5.88.2):
resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -19310,12 +19319,12 @@ packages:
optional: true
dependencies:
'@jridgewell/trace-mapping': 0.3.19
- '@swc/core': 1.3.90
+ '@swc/core': 1.3.91
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.1
terser: 5.20.0
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
dev: true
/terser@5.20.0:
@@ -19514,7 +19523,7 @@ packages:
resolution: {integrity: sha512-PGcnJoTBnVGy6yYNFxWVNkdcAuAMstvutN9MgDJIV6L0oG8fB+ZNNy1T+wJzah8RPGor1mZuPQkVfXNDpy9eHA==}
dev: true
- /ts-node-dev@2.0.0(@swc/core@1.3.90)(@types/node@20.7.0)(typescript@5.2.2):
+ /ts-node-dev@2.0.0(@swc/core@1.3.91)(@types/node@20.8.2)(typescript@5.2.2):
resolution: {integrity: sha512-ywMrhCfH6M75yftYvrvNarLEY+SUXtUvU8/0Z6llrHQVBx12GiFk5sStF8UdfE/yfzk9IAq7O5EEbTQsxlBI8w==}
engines: {node: '>=0.8.0'}
hasBin: true
@@ -19533,7 +19542,7 @@ packages:
rimraf: 2.7.1
source-map-support: 0.5.21
tree-kill: 1.2.2
- ts-node: 10.9.1(@swc/core@1.3.90)(@types/node@20.7.0)(typescript@5.2.2)
+ ts-node: 10.9.1(@swc/core@1.3.91)(@types/node@20.8.2)(typescript@5.2.2)
tsconfig: 7.0.0
typescript: 5.2.2
transitivePeerDependencies:
@@ -19542,7 +19551,7 @@ packages:
- '@types/node'
dev: true
- /ts-node@10.9.1(@swc/core@1.3.90)(@types/node@20.7.0)(typescript@5.2.2):
+ /ts-node@10.9.1(@swc/core@1.3.91)(@types/node@20.8.2)(typescript@5.2.2):
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
hasBin: true
peerDependencies:
@@ -19557,12 +19566,12 @@ packages:
optional: true
dependencies:
'@cspotcode/source-map-support': 0.8.1
- '@swc/core': 1.3.90
+ '@swc/core': 1.3.91
'@tsconfig/node10': 1.0.9
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
acorn: 8.10.0
acorn-walk: 8.2.0
arg: 4.1.3
@@ -19646,7 +19655,7 @@ packages:
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- /tsup@7.2.0(@swc/core@1.3.90)(ts-node@10.9.1)(typescript@5.2.2):
+ /tsup@7.2.0(@swc/core@1.3.91)(ts-node@10.9.1)(typescript@5.2.2):
resolution: {integrity: sha512-vDHlczXbgUvY3rWvqFEbSqmC1L7woozbzngMqTtL2PGBODTtWlRwGDDawhvWzr5c1QjKe4OAKqJGfE1xeXUvtQ==}
engines: {node: '>=16.14'}
hasBin: true
@@ -19662,7 +19671,7 @@ packages:
typescript:
optional: true
dependencies:
- '@swc/core': 1.3.90
+ '@swc/core': 1.3.91
bundle-require: 4.0.1(esbuild@0.18.20)
cac: 6.7.14
chokidar: 3.5.3
@@ -19671,7 +19680,7 @@ packages:
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss-load-config: 4.0.1(postcss@8.4.30)(ts-node@10.9.1)
+ postcss-load-config: 4.0.1(postcss@8.4.31)(ts-node@10.9.1)
resolve-from: 5.0.0
rollup: 3.29.2
source-map: 0.8.0-beta.0
@@ -20043,7 +20052,7 @@ packages:
/urlpattern-polyfill@9.0.0:
resolution: {integrity: sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==}
- /use-callback-ref@1.3.0(@types/react@18.2.23)(react@18.2.0):
+ /use-callback-ref@1.3.0(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
engines: {node: '>=10'}
peerDependencies:
@@ -20055,7 +20064,7 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
react: 18.2.0
tslib: 2.6.2
@@ -20074,7 +20083,7 @@ packages:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /use-sidecar@1.1.2(@types/react@18.2.23)(react@18.2.0):
+ /use-sidecar@1.1.2(@types/react@18.2.24)(react@18.2.0):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -20086,7 +20095,7 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.23
+ '@types/react': 18.2.24
detect-node-es: 1.1.0
react: 18.2.0
tslib: 2.6.2
@@ -20183,13 +20192,13 @@ packages:
debug: 4.3.4
globrex: 0.1.2
tsconfck: 2.1.2(typescript@5.2.2)
- vite: 4.4.9(@types/node@20.7.0)
+ vite: 4.4.9(@types/node@20.8.2)
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /vite@4.4.9(@types/node@20.7.0):
+ /vite@4.4.9(@types/node@20.8.2):
resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==}
engines: {node: ^14.18.0 || >=16.0.0}
hasBin: true
@@ -20217,9 +20226,9 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.7.0
+ '@types/node': 20.8.2
esbuild: 0.18.20
- postcss: 8.4.30
+ postcss: 8.4.31
rollup: 3.29.2
optionalDependencies:
fsevents: 2.3.3
@@ -20295,7 +20304,7 @@ packages:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.2.0
- webpack: 5.88.2(@swc/core@1.3.90)
+ webpack: 5.88.2(@swc/core@1.3.91)
dev: true
/webpack-hot-middleware@2.25.4:
@@ -20315,7 +20324,7 @@ packages:
resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
dev: true
- /webpack@5.88.2(@swc/core@1.3.90):
+ /webpack@5.88.2(@swc/core@1.3.91):
resolution: {integrity: sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==}
engines: {node: '>=10.13.0'}
hasBin: true
@@ -20346,7 +20355,7 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.9(@swc/core@1.3.90)(webpack@5.88.2)
+ terser-webpack-plugin: 5.3.9(@swc/core@1.3.91)(webpack@5.88.2)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies: