& {
spacing?: number;
@@ -11,16 +11,16 @@ export function Stack({ spacing, alignItems, justifyContent, style, className, .
return (
& {
@@ -55,20 +55,20 @@ export function populateTypographyStylesAndClasses({ color, level, className, ..
return {
style: styles,
className: cx(
- 'uitw-m-0',
- level === 'body2' && 'uitw-text-sm uitw-text-secondary-foreground',
- level === 'body3' && 'uitw-text-xs',
- level === 'h1' && 'uitw-text-5xl',
- level === 'h2' && 'uitw-text-4xl',
- level === 'h3' && 'uitw-text-3xl',
- level === 'h4' && 'uitw-text-2xl',
- level === 'h5' && 'uitw-text-xl',
- level === 'h6' && 'uitw-text-lg',
- color === 'success' && 'uitw-text-green-500',
- color === 'warning' && 'uitw-text-yellow-500',
- color === 'danger' && 'uitw-text-red-500',
- color === 'info' && 'uitw-text-blue-500',
- color === 'neutral' && 'uitw-text-slate-500',
+ 'm-0',
+ level === 'body2' && 'text-sm text-secondary-foreground',
+ level === 'body3' && 'text-xs',
+ level === 'h1' && 'text-5xl',
+ level === 'h2' && 'text-4xl',
+ level === 'h3' && 'text-3xl',
+ level === 'h4' && 'text-2xl',
+ level === 'h5' && 'text-xl',
+ level === 'h6' && 'text-lg',
+ color === 'success' && 'text-green-500',
+ color === 'warning' && 'text-yellow-500',
+ color === 'danger' && 'text-red-500',
+ color === 'info' && 'text-blue-500',
+ color === 'neutral' && 'text-slate-500',
className
),
...restAfterCustomStyles
diff --git a/web/packages/ui/src/TypographyEditable/TypographyEditable.tsx b/web/packages/ui/src/TypographyEditable/TypographyEditable.tsx
index 68513e8cb6..2118dc4f90 100644
--- a/web/packages/ui/src/TypographyEditable/TypographyEditable.tsx
+++ b/web/packages/ui/src/TypographyEditable/TypographyEditable.tsx
@@ -1,5 +1,5 @@
import { useState } from 'react';
-import { cx } from 'classix';
+import { cx } from '@signalco/ui/cx';
import { Edit } from '@signalco/ui-icons';
import { Typography, TypographyProps, populateTypographyStylesAndClasses } from '../Typography/Typography';
@@ -43,7 +43,7 @@ export function TypographyEditable({ children, className, onChange, onEditingCha
setValue(e.target.value)}
onBlur={handleConfirm}
onKeyDown={handleKeyDown}
@@ -54,13 +54,13 @@ export function TypographyEditable({ children, className, onChange, onEditingCha
return (
{children || placeholder}
{!hideEditIcon && (
-
+
)}
);
diff --git a/web/packages/ui/src/cx/cx.ts b/web/packages/ui/src/cx/cx.ts
new file mode 100644
index 0000000000..ecf36adce1
--- /dev/null
+++ b/web/packages/ui/src/cx/cx.ts
@@ -0,0 +1,6 @@
+import { cx as ClassixCx } from 'classix';
+import { twMerge } from 'tailwind-merge';
+
+export function cx(...rest: (string | boolean | null | undefined)[]) {
+ return twMerge(ClassixCx(...rest));
+}
diff --git a/web/packages/ui/src/cx/index.ts b/web/packages/ui/src/cx/index.ts
new file mode 100644
index 0000000000..e54619a4ee
--- /dev/null
+++ b/web/packages/ui/src/cx/index.ts
@@ -0,0 +1 @@
+export * from './cx';
diff --git a/web/packages/ui/src/main.css b/web/packages/ui/src/index.css
similarity index 81%
rename from web/packages/ui/src/main.css
rename to web/packages/ui/src/index.css
index 3d0b89227b..5a37e974b1 100644
--- a/web/packages/ui/src/main.css
+++ b/web/packages/ui/src/index.css
@@ -38,6 +38,9 @@
--light-display: visible;
--dark-display: none;
+
+ --bg-selection: #000;
+ --text-selection: #fff;
}
.dark {
@@ -75,13 +78,26 @@
--light-display: none;
--dark-display: visible;
+
+ --bg-selection: #fff;
+ --text-selection: #000;
}
* {
- @apply uitw-border-border;
+ @apply border-border;
}
body {
- @apply uitw-bg-background uitw-text-foreground;
+ @apply bg-background text-foreground;
font-feature-settings: "rlig" 1, "calt" 1;
}
+
+ .image--light {
+ display: var(--light-display);
+ }
+
+ .image--dark {
+ display: var(--dark-display);
+ }
+
+ ::selection { background: var(--bg-selection); color: var(--text-selection); }
}
diff --git a/web/packages/ui/src/index.ts b/web/packages/ui/src/index.ts
deleted file mode 100644
index 74f07de1b0..0000000000
--- a/web/packages/ui/src/index.ts
+++ /dev/null
@@ -1 +0,0 @@
-import './main.css';
diff --git a/web/packages/ui/tailwind.config.cjs b/web/packages/ui/tailwind.config.cjs
new file mode 100644
index 0000000000..cd1ba5f106
--- /dev/null
+++ b/web/packages/ui/tailwind.config.cjs
@@ -0,0 +1,12 @@
+// NOTE: Not actualy used, but here to enable tailwindcss IDE support
+
+import { baseConfig } from '@signalco/tailwindcss-config-signalco';
+
+/** @type {import('tailwindcss').Config} */
+// eslint-disable-next-line import/no-anonymous-default-export
+export default {
+ presets: [baseConfig],
+ content: [
+ './src/**/*.{ts,tsx}'
+ ]
+}
diff --git a/web/packages/ui/tailwind.config.js b/web/packages/ui/tailwind.config.js
deleted file mode 100644
index dd66faefc3..0000000000
--- a/web/packages/ui/tailwind.config.js
+++ /dev/null
@@ -1,10 +0,0 @@
-const { baseConfig } = require('@signalco/tailwindcss-config-signalco');
-
-/** @type {import('tailwindcss').Config} */
-export default {
- prefix: 'uitw-',
- presets: [baseConfig],
- content: [
- './src/**/*.{ts,tsx}'
- ]
-}
diff --git a/web/packages/ui/tsconfig.json b/web/packages/ui/tsconfig.json
index 2c290c5ff8..ce5d7cadcf 100644
--- a/web/packages/ui/tsconfig.json
+++ b/web/packages/ui/tsconfig.json
@@ -2,11 +2,9 @@
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "@signalco/tsconfig/react-library.json",
"include": [
- "./**/*.ts*"
+ "./src/**/*.ts*"
],
"exclude": [
- "dist",
- "node_modules",
- ".turbo"
+ "node_modules"
]
}
diff --git a/web/packages/ui/tsup.config.ts b/web/packages/ui/tsup.config.ts
deleted file mode 100644
index 4c1de6751e..0000000000
--- a/web/packages/ui/tsup.config.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-import { fileURLToPath } from 'node:url';
-import path from 'node:path';
-import { defineConfig } from 'tsup';
-import { globSync } from 'glob';
-
-export default defineConfig((opts) => ({
- entry: Object.fromEntries(
- [
- ...globSync('src/**/index.ts').map(file => [
- // This remove `src/` as well as the file extension from each
- // file, so e.g. src/nested/foo.js becomes nested/foo
- path.relative(
- 'src',
- file.slice(0, file.length - path.extname(file).length)
- ),
- // This expands the relative paths to absolute paths, so e.g.
- // src/nested/foo becomes /project/src/nested/foo.js
- fileURLToPath(new URL(file, import.meta.url))
- ])
- ]
- ),
- format: 'esm',
- minify: !opts.watch
-}));
diff --git a/web/pnpm-lock.yaml b/web/pnpm-lock.yaml
index ef56f9a3c6..a74c8c17c6 100644
--- a/web/pnpm-lock.yaml
+++ b/web/pnpm-lock.yaml
@@ -74,6 +74,9 @@ importers:
'@signalco/ui-icons':
specifier: workspace:*
version: link:../../packages/ui-icons
+ '@signalco/ui-notifications':
+ specifier: workspace:*
+ version: link:../../packages/ui-notifications
'@tanstack/query-sync-storage-persister':
specifier: 5.8.3
version: 5.8.3
@@ -140,15 +143,12 @@ importers:
react-grid-layout:
specifier: 1.4.3
version: 1.4.3(react-dom@18.2.0)(react@18.2.0)
- react-toastify:
- specifier: 9.1.3
- version: 9.1.3(react-dom@18.2.0)(react@18.2.0)
react-transition-group:
specifier: 4.4.5
version: 4.4.5(react-dom@18.2.0)(react@18.2.0)
recharts:
- specifier: 2.9.3
- version: 2.9.3(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
+ specifier: 2.10.1
+ version: 2.10.1(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
sharp:
specifier: 0.32.6
version: 0.32.6
@@ -196,20 +196,20 @@ importers:
specifier: 5.6.9
version: 5.6.9(@babel/core@7.23.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)
'@types/node':
- specifier: 18.18.9
- version: 18.18.9
+ specifier: 18.18.11
+ version: 18.18.11
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
'@types/react-dom':
- specifier: 18.2.15
- version: 18.2.15
+ specifier: 18.2.16
+ version: 18.2.16
'@types/react-grid-layout':
specifier: 1.3.5
version: 1.3.5
'@types/recharts':
- specifier: 1.8.27
- version: 1.8.27
+ specifier: 1.8.28
+ version: 1.8.28
'@types/suncalc':
specifier: 1.9.2
version: 1.9.2
@@ -250,8 +250,8 @@ importers:
specifier: 13.3.2
version: 13.3.2(sass@1.69.5)(webpack@5.89.0)
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
apps/blog:
dependencies:
@@ -260,7 +260,7 @@ importers:
version: 3.0.0(webpack@5.89.0)
'@mdx-js/react':
specifier: 3.0.0
- version: 3.0.0(@types/react@18.2.37)(react@18.2.0)
+ version: 3.0.0(@types/react@18.2.38)(react@18.2.0)
'@next/env':
specifier: 14.0.3
version: 14.0.3
@@ -362,14 +362,14 @@ importers:
specifier: 3.0.6
version: 3.0.6
'@types/node':
- specifier: 18.18.9
- version: 18.18.9
+ specifier: 18.18.11
+ version: 18.18.11
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
'@types/react-dom':
- specifier: 18.2.15
- version: 18.2.15
+ specifier: 18.2.16
+ version: 18.2.16
colorette:
specifier: 2.0.20
version: 2.0.20
@@ -392,8 +392,8 @@ importers:
specifier: 1.69.5
version: 1.69.5
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
apps/brandgrab:
dependencies:
@@ -465,14 +465,14 @@ importers:
specifier: 3.0.6
version: 3.0.6
'@types/node':
- specifier: 18.18.9
- version: 18.18.9
+ specifier: 18.18.11
+ version: 18.18.11
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
'@types/react-dom':
- specifier: 18.2.15
- version: 18.2.15
+ specifier: 18.2.16
+ version: 18.2.16
'@types/sharp':
specifier: 0.31.1
version: 0.31.1
@@ -495,11 +495,14 @@ importers:
specifier: 1.69.5
version: 1.69.5
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
apps/development:
dependencies:
+ '@signalco/tailwindcss-config-signalco':
+ specifier: workspace:*
+ version: link:../../packages/tailwindcss-config-signalco
'@signalco/ui':
specifier: workspace:*
version: link:../../packages/ui
@@ -509,22 +512,28 @@ importers:
react-dom:
specifier: 18.2.0
version: 18.2.0(react@18.2.0)
+ tailwindcss:
+ specifier: 3.3.5
+ version: 3.3.5
+ tailwindcss-animate:
+ specifier: 1.0.7
+ version: 1.0.7(tailwindcss@3.3.5)
devDependencies:
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
'@types/react-dom':
- specifier: 18.2.15
- version: 18.2.15
+ specifier: 18.2.16
+ version: 18.2.16
'@vitejs/plugin-react-swc':
specifier: 3.5.0
- version: 3.5.0(vite@5.0.0)
+ version: 3.5.0(vite@5.0.2)
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
vite:
- specifier: 5.0.0
- version: 5.0.0
+ specifier: 5.0.2
+ version: 5.0.2
apps/doprocess.app:
dependencies:
@@ -533,7 +542,7 @@ importers:
version: 0.9.6
'@blocknote/react':
specifier: 0.9.6
- version: 0.9.6(@tiptap/pm@2.1.12)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 0.9.6(@tiptap/pm@2.1.12)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@clerk/nextjs':
specifier: 4.27.1
version: 4.27.1(next@14.0.3)(react-dom@18.2.0)(react@18.2.0)
@@ -585,6 +594,9 @@ importers:
'@signalco/ui-icons':
specifier: workspace:*
version: link:../../packages/ui-icons
+ '@signalco/ui-notifications':
+ specifier: workspace:*
+ version: link:../../packages/ui-notifications
'@tanstack/react-query':
specifier: 5.8.4
version: 5.8.4(react-dom@18.2.0)(react@18.2.0)
@@ -659,14 +671,14 @@ importers:
specifier: 3.0.6
version: 3.0.6
'@types/node':
- specifier: 18.18.9
- version: 18.18.9
+ specifier: 18.18.11
+ version: 18.18.11
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
'@types/react-dom':
- specifier: 18.2.15
- version: 18.2.15
+ specifier: 18.2.16
+ version: 18.2.16
cross-env:
specifier: 7.0.3
version: 7.0.3
@@ -692,8 +704,8 @@ importers:
specifier: 1.69.5
version: 1.69.5
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
apps/slco:
dependencies:
@@ -771,14 +783,14 @@ importers:
specifier: 3.0.6
version: 3.0.6
'@types/node':
- specifier: 18.18.9
- version: 18.18.9
+ specifier: 18.18.11
+ version: 18.18.11
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
'@types/react-dom':
- specifier: 18.2.15
- version: 18.2.15
+ specifier: 18.2.16
+ version: 18.2.16
cross-env:
specifier: 7.0.3
version: 7.0.3
@@ -798,8 +810,8 @@ importers:
specifier: 1.69.5
version: 1.69.5
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
apps/ui-docs:
dependencies:
@@ -830,7 +842,7 @@ importers:
version: link:../../packages/tsconfig
'@storybook/addon-essentials':
specifier: 7.5.3
- version: 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-links':
specifier: 7.5.3
version: 7.5.3(react-dom@18.2.0)(react@18.2.0)
@@ -839,7 +851,7 @@ importers:
version: 0.0.5(webpack@5.89.0)
'@storybook/addon-themes':
specifier: 7.5.3
- version: 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addons':
specifier: 7.5.3
version: 7.5.3(react-dom@18.2.0)(react@18.2.0)
@@ -848,19 +860,19 @@ importers:
version: 7.5.3(react-dom@18.2.0)(react@18.2.0)
'@storybook/nextjs':
specifier: 7.5.3
- version: 7.5.3(@swc/core@1.3.96)(@types/react-dom@18.2.15)(@types/react@18.2.37)(esbuild@0.18.20)(next@14.0.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)(typescript@5.2.2)(webpack@5.89.0)
+ version: 7.5.3(@swc/core@1.3.96)(@types/react-dom@18.2.16)(@types/react@18.2.38)(esbuild@0.18.20)(next@14.0.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)(typescript@5.3.2)(webpack@5.89.0)
'@storybook/react':
specifier: 7.5.3
- version: 7.5.3(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ version: 7.5.3(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.2)
'@storybook/theming':
specifier: 7.5.3
version: 7.5.3(react-dom@18.2.0)(react@18.2.0)
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
'@types/react-dom':
- specifier: 18.2.15
- version: 18.2.15
+ specifier: 18.2.16
+ version: 18.2.16
autoprefixer:
specifier: 10.4.16
version: 10.4.16(postcss@8.4.31)
@@ -872,7 +884,7 @@ importers:
version: 8.4.31
postcss-loader:
specifier: 7.3.3
- version: 7.3.3(postcss@8.4.31)(typescript@5.2.2)(webpack@5.89.0)
+ version: 7.3.3(postcss@8.4.31)(typescript@5.3.2)(webpack@5.89.0)
rimraf:
specifier: 5.0.5
version: 5.0.5
@@ -898,8 +910,8 @@ importers:
specifier: 3.3.5
version: 3.3.5
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
webpack:
specifier: 5.89.0
version: 5.89.0(@swc/core@1.3.96)(esbuild@0.18.20)
@@ -917,13 +929,13 @@ importers:
version: 14.0.3
'@reactflow/background':
specifier: 11.3.6
- version: 11.3.6(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 11.3.6(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@reactflow/controls':
specifier: 11.2.6
- version: 11.2.6(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 11.2.6(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@reactflow/core':
specifier: 11.10.1
- version: 11.10.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 11.10.1(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@signalco/data':
specifier: workspace:*
version: link:../../packages/data
@@ -1022,14 +1034,14 @@ importers:
specifier: 5.6.9
version: 5.6.9(@babel/core@7.23.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)
'@types/node':
- specifier: 18.18.9
- version: 18.18.9
+ specifier: 18.18.11
+ version: 18.18.11
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
'@types/react-dom':
- specifier: 18.2.15
- version: 18.2.15
+ specifier: 18.2.16
+ version: 18.2.16
babel-loader:
specifier: 9.1.3
version: 9.1.3(@babel/core@7.23.3)(webpack@5.89.0)
@@ -1058,47 +1070,38 @@ importers:
specifier: 1.69.5
version: 1.69.5
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
packages/data:
devDependencies:
'@signalco/tsconfig':
specifier: workspace:*
version: link:../tsconfig
- rimraf:
- specifier: 5.0.5
- version: 5.0.5
- tsup:
- specifier: 7.3.0
- version: 7.3.0(postcss@8.4.31)(typescript@5.2.2)
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
packages/eslint-config-signalco:
dependencies:
'@typescript-eslint/eslint-plugin':
- specifier: 6.11.0
- version: 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.2.2)
+ specifier: 6.12.0
+ version: 6.12.0(@typescript-eslint/parser@6.12.0)(eslint@8.54.0)(typescript@5.3.2)
'@typescript-eslint/parser':
- specifier: 6.11.0
- version: 6.11.0(eslint@8.54.0)(typescript@5.2.2)
- eslint:
- specifier: 8.54.0
- version: 8.54.0
+ specifier: 6.12.0
+ version: 6.12.0(eslint@8.54.0)(typescript@5.3.2)
eslint-config-next:
specifier: 14.0.3
- version: 14.0.3(eslint@8.54.0)(typescript@5.2.2)
+ version: 14.0.3(eslint@8.54.0)(typescript@5.3.2)
eslint-config-turbo:
specifier: 1.10.16
version: 1.10.16(eslint@8.54.0)
- eslint-import-resolver-typescript:
- specifier: 3.6.1
- version: 3.6.1(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.54.0)
eslint-plugin-import:
specifier: 2.29.0
- version: 2.29.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
+ version: 2.29.0(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
+ eslint-plugin-only-warn:
+ specifier: 1.1.0
+ version: 1.1.0
eslint-plugin-react:
specifier: 7.33.2
version: 7.33.2(eslint@8.54.0)
@@ -1106,11 +1109,14 @@ importers:
specifier: 3.13.0
version: 3.13.0(tailwindcss@3.3.5)
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
packages/hooks:
devDependencies:
+ '@signalco/eslint-config-signalco':
+ specifier: workspace:*
+ version: link:../eslint-config-signalco
'@signalco/js':
specifier: workspace:*
version: link:../js
@@ -1118,29 +1124,26 @@ importers:
specifier: workspace:*
version: link:../tsconfig
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
next:
specifier: 14.0.3
- version: 14.0.3(@babel/core@7.23.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)
+ version: 14.0.3(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)
react:
specifier: 18.2.0
version: 18.2.0
react-dom:
specifier: 18.2.0
version: 18.2.0(react@18.2.0)
- rimraf:
- specifier: 5.0.5
- version: 5.0.5
- tsup:
- specifier: 7.3.0
- version: 7.3.0(postcss@8.4.31)(typescript@5.2.2)
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
packages/js:
devDependencies:
+ '@signalco/eslint-config-signalco':
+ specifier: workspace:*
+ version: link:../eslint-config-signalco
'@signalco/tsconfig':
specifier: workspace:*
version: link:../tsconfig
@@ -1150,30 +1153,21 @@ importers:
react-dom:
specifier: 18.2.0
version: 18.2.0(react@18.2.0)
- rimraf:
- specifier: 5.0.5
- version: 5.0.5
- tsup:
- specifier: 7.3.0
- version: 7.3.0(postcss@8.4.31)(typescript@5.2.2)
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
packages/lexorder:
devDependencies:
+ '@signalco/eslint-config-signalco':
+ specifier: workspace:*
+ version: link:../eslint-config-signalco
'@signalco/tsconfig':
specifier: workspace:*
version: link:../tsconfig
- rimraf:
- specifier: 5.0.5
- version: 5.0.5
- tsup:
- specifier: 7.3.0
- version: 7.3.0(postcss@8.4.31)(typescript@5.2.2)
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
packages/tailwindcss-config-signalco:
dependencies:
@@ -1188,30 +1182,27 @@ importers:
packages/ui:
dependencies:
- '@babel/core':
- specifier: 7.23.3
- version: 7.23.3
'@radix-ui/react-checkbox':
specifier: 1.0.4
- version: 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(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.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-dropdown-menu':
specifier: 2.0.6
- version: 2.0.6(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-menubar':
specifier: 1.0.4
- version: 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-popover':
specifier: 1.0.7
- version: 1.0.7(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-select':
specifier: 2.0.0
- version: 2.0.0(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.0.0(@types/react-dom@18.2.16)(@types/react@18.2.38)(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.37)(react@18.2.0)
+ version: 1.0.2(@types/react@18.2.38)(react@18.2.0)
'@signalco/hooks':
specifier: workspace:*
version: link:../hooks
@@ -1223,7 +1214,7 @@ importers:
version: link:../ui-icons
next:
specifier: 14.0.3
- version: 14.0.3(@babel/core@7.23.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)
+ version: 14.0.3(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)
react:
specifier: 18.2.0
version: 18.2.0
@@ -1233,6 +1224,9 @@ importers:
react-timeago:
specifier: 7.2.0
version: 7.2.0(react@18.2.0)
+ tailwind-merge:
+ specifier: 2.0.0
+ version: 2.0.0
tailwindcss:
specifier: 3.3.5
version: 3.3.5
@@ -1250,11 +1244,11 @@ importers:
specifier: workspace:*
version: link:../tsconfig
'@types/react':
- specifier: 18.2.37
- version: 18.2.37
+ specifier: 18.2.38
+ version: 18.2.38
'@types/react-dom':
- specifier: 18.2.15
- version: 18.2.15
+ specifier: 18.2.16
+ version: 18.2.16
'@types/react-timeago':
specifier: 4.1.6
version: 4.1.6
@@ -1264,33 +1258,24 @@ importers:
classix:
specifier: 2.1.35
version: 2.1.35
- concurrently:
- specifier: 8.2.2
- version: 8.2.2
- glob:
- specifier: 10.3.10
- version: 10.3.10
postcss:
specifier: 8.4.31
version: 8.4.31
postcss-preset-env:
specifier: 9.3.0
version: 9.3.0(postcss@8.4.31)
- rimraf:
- specifier: 5.0.5
- version: 5.0.5
sass:
specifier: 1.69.5
version: 1.69.5
- tsup:
- specifier: 7.3.0
- version: 7.3.0(postcss@8.4.31)(typescript@5.2.2)
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
packages/ui-icons:
devDependencies:
+ '@signalco/eslint-config-signalco':
+ specifier: workspace:*
+ version: link:../eslint-config-signalco
'@signalco/tsconfig':
specifier: workspace:*
version: link:../tsconfig
@@ -1303,15 +1288,46 @@ importers:
react-dom:
specifier: 18.2.0
version: 18.2.0(react@18.2.0)
- rimraf:
- specifier: 5.0.5
- version: 5.0.5
- tsup:
- specifier: 7.3.0
- version: 7.3.0(postcss@8.4.31)(typescript@5.2.2)
typescript:
- specifier: 5.2.2
- version: 5.2.2
+ specifier: 5.3.2
+ version: 5.3.2
+
+ packages/ui-notifications:
+ dependencies:
+ '@signalco/ui':
+ specifier: workspace:*
+ version: link:../ui
+ next:
+ specifier: 14.0.3
+ version: 14.0.3(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)
+ react:
+ specifier: 18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
+ sonner:
+ specifier: 1.2.2
+ version: 1.2.2(react-dom@18.2.0)(react@18.2.0)
+ devDependencies:
+ '@signalco/eslint-config-signalco':
+ specifier: workspace:*
+ version: link:../eslint-config-signalco
+ '@signalco/tailwindcss-config-signalco':
+ specifier: workspace:*
+ version: link:../tailwindcss-config-signalco
+ '@signalco/tsconfig':
+ specifier: workspace:*
+ version: link:../tsconfig
+ '@types/react':
+ specifier: 18.2.38
+ version: 18.2.38
+ '@types/react-dom':
+ specifier: 18.2.16
+ version: 18.2.16
+ typescript:
+ specifier: 5.3.2
+ version: 5.3.2
packages:
@@ -2786,15 +2802,15 @@ packages:
- supports-color
dev: false
- /@blocknote/react@0.9.6(@tiptap/pm@2.1.12)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@blocknote/react@0.9.6(@tiptap/pm@2.1.12)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-xybLu1vSiIVXe6nginmC/3MKfjFVAycGII2/1kythmyxM1YgLBg4JWD6i8ABrniRlXkQ9tjpjrlWbdP4Ld2/zg==}
peerDependencies:
react: ^18
react-dom: ^18
dependencies:
'@blocknote/core': 0.9.6
- '@emotion/react': 11.11.1(@types/react@18.2.37)(react@18.2.0)
- '@mantine/core': 5.10.5(@emotion/react@11.11.1)(@mantine/hooks@5.10.5)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/react': 11.11.1(@types/react@18.2.38)(react@18.2.0)
+ '@mantine/core': 5.10.5(@emotion/react@11.11.1)(@mantine/hooks@5.10.5)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@mantine/hooks': 5.10.5(react@18.2.0)
'@mantine/utils': 6.0.21(react@18.2.0)
'@tippyjs/react': 4.2.6(react-dom@18.2.0)(react@18.2.0)
@@ -3515,7 +3531,7 @@ packages:
resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
dev: false
- /@emotion/react@11.11.1(@types/react@18.2.37)(react@18.2.0):
+ /@emotion/react@11.11.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==}
peerDependencies:
'@types/react': '*'
@@ -3531,7 +3547,7 @@ packages:
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
'@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.3.1
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
hoist-non-react-statics: 3.3.2
react: 18.2.0
dev: false
@@ -4417,7 +4433,7 @@ packages:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
'@types/yargs': 17.0.31
chalk: 4.1.2
dev: true
@@ -4457,7 +4473,7 @@ packages:
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
dev: true
- /@mantine/core@5.10.5(@emotion/react@11.11.1)(@mantine/hooks@5.10.5)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@mantine/core@5.10.5(@emotion/react@11.11.1)(@mantine/hooks@5.10.5)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-F4tqHSEVM9D6/iSqHfPda+Xl5XgSEPHAAkT01Zwzj4Jnbd10qGrlqr/SFUop2CIcuKYnmra9XltUahUPXBC2BQ==}
peerDependencies:
'@mantine/hooks': 5.10.5
@@ -4471,7 +4487,7 @@ packages:
'@radix-ui/react-scroll-area': 1.0.2(react-dom@18.2.0)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-textarea-autosize: 8.3.4(@types/react@18.2.37)(react@18.2.0)
+ react-textarea-autosize: 8.3.4(@types/react@18.2.38)(react@18.2.0)
transitivePeerDependencies:
- '@emotion/react'
- '@types/react'
@@ -4492,7 +4508,7 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- '@emotion/react': 11.11.1(@types/react@18.2.37)(react@18.2.0)
+ '@emotion/react': 11.11.1(@types/react@18.2.38)(react@18.2.0)
clsx: 1.1.1
csstype: 3.0.9
react: 18.2.0
@@ -4563,18 +4579,18 @@ packages:
react: '>=16'
dependencies:
'@types/mdx': 2.0.10
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
dev: true
- /@mdx-js/react@3.0.0(@types/react@18.2.37)(react@18.2.0):
+ /@mdx-js/react@3.0.0(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-nDctevR9KyYFyV+m+/+S4cpzCWHqj+iHDHq3QrsWezcC+B17uZdIWgCguESUkwFhM3n/56KxWVE3V6EokrmONQ==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
dependencies:
'@types/mdx': 2.0.10
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
dev: false
@@ -4656,7 +4672,7 @@ packages:
optional: true
dependencies:
'@mdx-js/loader': 3.0.0(webpack@5.89.0)
- '@mdx-js/react': 3.0.0(@types/react@18.2.37)(react@18.2.0)
+ '@mdx-js/react': 3.0.0(@types/react@18.2.38)(react@18.2.0)
source-map: 0.7.4
dev: false
@@ -5184,7 +5200,7 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
- /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -5198,13 +5214,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==}
peerDependencies:
'@types/react': '*'
@@ -5219,20 +5235,20 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -5246,12 +5262,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -5264,7 +5280,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -5274,7 +5290,7 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
/@radix-ui/react-context@1.0.0(react@18.2.0):
@@ -5286,7 +5302,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-context@1.0.1(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-context@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -5296,10 +5312,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
peerDependencies:
'@types/react': '*'
@@ -5314,23 +5330,23 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.37)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.38)(react@18.2.0)
dev: false
/@radix-ui/react-direction@1.0.0(react@18.2.0):
@@ -5342,7 +5358,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-direction@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -5352,10 +5368,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
'@types/react': '*'
@@ -5370,17 +5386,17 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
'@types/react': '*'
@@ -5395,17 +5411,17 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==}
peerDependencies:
'@types/react': '*'
@@ -5420,19 +5436,19 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.37)(react@18.2.0):
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
'@types/react': '*'
@@ -5442,10 +5458,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
'@types/react': '*'
@@ -5459,16 +5475,16 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
peerDependencies:
'@types/react': '*'
@@ -5482,16 +5498,16 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.37)(react@18.2.0):
+ /@radix-ui/react-id@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -5501,11 +5517,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==}
peerDependencies:
'@types/react': '*'
@@ -5520,30 +5536,30 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.37)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.38)(react@18.2.0)
dev: false
- /@radix-ui/react-menubar@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-menubar@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-bHgUo9gayKZfaQcWSSLr++LyS0rgh+MvD89DE4fJ6TkGHvjHgPaBZf44hdka7ogOxIOdj9163J+5xL2Dn4qzzg==}
peerDependencies:
'@types/react': '*'
@@ -5558,22 +5574,22 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==}
peerDependencies:
'@types/react': '*'
@@ -5588,27 +5604,27 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.37)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.38)(react@18.2.0)
dev: false
- /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
'@types/react': '*'
@@ -5623,22 +5639,22 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@floating-ui/react-dom': 2.0.4(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.38)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
peerDependencies:
'@types/react': '*'
@@ -5653,22 +5669,22 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@floating-ui/react-dom': 2.0.4(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.38)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
'@types/react': '*'
@@ -5682,14 +5698,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
peerDependencies:
'@types/react': '*'
@@ -5703,9 +5719,9 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -5723,7 +5739,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
@@ -5737,10 +5753,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
@@ -5757,7 +5773,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -5771,13 +5787,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
'@types/react': '*'
@@ -5792,16 +5808,16 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -5825,7 +5841,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
peerDependencies:
'@types/react': '*'
@@ -5841,32 +5857,32 @@ packages:
'@babel/runtime': 7.23.2
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.37)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.38)(react@18.2.0)
dev: true
- /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==}
peerDependencies:
'@types/react': '*'
@@ -5882,32 +5898,32 @@ packages:
'@babel/runtime': 7.23.2
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
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.37)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.38)(react@18.2.0)
dev: false
- /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
peerDependencies:
'@types/react': '*'
@@ -5921,9 +5937,9 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -5938,7 +5954,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-slot@1.0.2(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -5948,11 +5964,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
peerDependencies:
'@types/react': '*'
@@ -5967,19 +5983,19 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
peerDependencies:
'@types/react': '*'
@@ -5994,15 +6010,15 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==}
peerDependencies:
'@types/react': '*'
@@ -6017,14 +6033,14 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
@@ -6038,7 +6054,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -6048,10 +6064,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -6061,11 +6077,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -6075,8 +6091,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
react: 18.2.0
/@radix-ui/react-use-layout-effect@1.0.0(react@18.2.0):
@@ -6088,7 +6104,7 @@ packages:
react: 18.2.0
dev: false
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -6098,10 +6114,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
'@types/react': '*'
@@ -6111,10 +6127,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -6125,10 +6141,10 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-use-size@1.0.1(@types/react@18.2.37)(react@18.2.0):
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -6138,11 +6154,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0)
- '@types/react': 18.2.37
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0)
+ '@types/react': 18.2.38
react: 18.2.0
- /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
'@types/react': '*'
@@ -6156,9 +6172,9 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.2
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -6167,39 +6183,39 @@ packages:
dependencies:
'@babel/runtime': 7.23.2
- /@reactflow/background@11.3.6(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@reactflow/background@11.3.6(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-06FPlSUOOMALEEs+2PqPAbpqmL7WDjrkbG2UsDr2d6mbcDDhHiV4tu9FYoz44SQvXo7ma9VRotlsaR4OiRcYsg==}
peerDependencies:
react: '>=17'
react-dom: '>=17'
dependencies:
- '@reactflow/core': 11.10.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@reactflow/core': 11.10.1(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
classcat: 5.0.4
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- zustand: 4.4.6(@types/react@18.2.37)(react@18.2.0)
+ zustand: 4.4.6(@types/react@18.2.38)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- immer
dev: false
- /@reactflow/controls@11.2.6(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@reactflow/controls@11.2.6(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-4QHT92/ACVlZkvV+Hq44bAPV8WbMhkJl+/J0EbXcqQ1+an7cWJsF84eeelJw7R5J76RoaSSpKdsWsL2v7HAVlw==}
peerDependencies:
react: '>=17'
react-dom: '>=17'
dependencies:
- '@reactflow/core': 11.10.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@reactflow/core': 11.10.1(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
classcat: 5.0.4
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- zustand: 4.4.6(@types/react@18.2.37)(react@18.2.0)
+ zustand: 4.4.6(@types/react@18.2.38)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- immer
dev: false
- /@reactflow/core@11.10.1(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@reactflow/core@11.10.1(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-GIh3usY1W3eVobx//OO9+Cwm+5evQBBdPGxDaeXwm25UqPMWRI240nXQA5F/5gL5Mwpf0DUC7DR2EmrKNQy+Rw==}
peerDependencies:
react: '>=17'
@@ -6215,7 +6231,7 @@ packages:
d3-zoom: 3.0.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- zustand: 4.4.6(@types/react@18.2.37)(react@18.2.0)
+ zustand: 4.4.6(@types/react@18.2.38)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- immer
@@ -6407,7 +6423,7 @@ packages:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
dev: true
- /@storybook/addon-actions@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-actions@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-v3yL6Eq/jCiXfA24JjRdbEQUuorms6tmrywaKcd1tAy4Ftgof0KHB4tTcTyiajrI5bh6PVJoRBkE8IDqmNAHkA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6419,7 +6435,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.5.3
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.5.3(react-dom@18.2.0)(react@18.2.0)
@@ -6441,7 +6457,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-backgrounds@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-backgrounds@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-UCOVd4UNIL5FRiwi9nyiWFocn/7ewwS6bIWnq66AaHg/sv92YwsPmgQJn0DMBGDOvUAWpiHdVsZNOTX6nvw4gA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6453,7 +6469,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.5.3
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.5.3(react-dom@18.2.0)(react@18.2.0)
@@ -6469,7 +6485,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-controls@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-controls@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-KEuU4X5Xr6cJI9xrzOUVGEmUf1iHPfK7cj0GACKv0GElsdIsQryv+OZ7gRnvmNax/e2hm2t9cJcFxB24/p6rVg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6480,9 +6496,9 @@ packages:
react-dom:
optional: true
dependencies:
- '@storybook/blocks': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/blocks': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-common': 7.5.3
'@storybook/core-events': 7.5.3
'@storybook/manager-api': 7.5.3(react-dom@18.2.0)(react@18.2.0)
@@ -6501,7 +6517,7 @@ packages:
- supports-color
dev: true
- /@storybook/addon-docs@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-docs@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-JVQ6iCXKESij/SbE4Wq47dkSSgBRulvA8SUf8NWL5m9qpiHrg0lPSERHfoTLiB5uC/JwF0OKIlhxoWl+zCmtYg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6509,9 +6525,9 @@ packages:
dependencies:
'@jest/transform': 29.7.0
'@mdx-js/react': 2.3.0(react@18.2.0)
- '@storybook/blocks': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/blocks': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/csf-plugin': 7.5.3
'@storybook/csf-tools': 7.5.3
'@storybook/global': 5.0.0
@@ -6535,21 +6551,21 @@ packages:
- supports-color
dev: true
- /@storybook/addon-essentials@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-essentials@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-PYj6swEI4nEzIbOTyHJB8u3K8ABYKoaW8XB5emMwsnrzB/TN7auHVhze2bQ/+ax5wyPKZpArPjxbWlSHtSws+A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addon-actions': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-backgrounds': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-controls': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-docs': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-actions': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-backgrounds': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-controls': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-docs': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-highlight': 7.5.3
- '@storybook/addon-measure': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-outline': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-toolbars': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-viewport': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-measure': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-outline': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-toolbars': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-viewport': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-common': 7.5.3
'@storybook/manager-api': 7.5.3(react-dom@18.2.0)(react@18.2.0)
'@storybook/node-logger': 7.5.3
@@ -6597,7 +6613,7 @@ packages:
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-measure@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-measure@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-fun9BqUTGXgcMpcbX9wUowGDkjCL8oKasZbjp/MvGM3vPTM6HQdwzHTLJGPBnmJ1xK92NhwFRs0BrQX6uF1yrg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6609,7 +6625,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.5.3
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.5.3(react-dom@18.2.0)(react@18.2.0)
@@ -6623,7 +6639,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-outline@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-outline@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-c9vCi1SCGrtWr8qaOu/1GNWlrlrpl2lg4F9r+xtYf/KopenI3jSMz0YeTfmepZGAl+6Yc2Ywhm60jgpQ6SKciA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6635,7 +6651,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.5.3
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.5.3(react-dom@18.2.0)(react@18.2.0)
@@ -6658,7 +6674,7 @@ packages:
webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.18.20)
dev: true
- /@storybook/addon-themes@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-themes@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-lwait7l3moPTaFQoG+7Pn5bL1a3tqAmXrMJkbluJn0DZyTXKKWVc1Cwak5o1UD44LLTBhql3BNLGi3BR0fB2fQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6670,7 +6686,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.5.3
'@storybook/manager-api': 7.5.3(react-dom@18.2.0)(react@18.2.0)
'@storybook/preview-api': 7.5.3
@@ -6684,7 +6700,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-toolbars@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-toolbars@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-KdLr4sGMJzhtjNTNE2ocfu58yOHHUyZ/cI3BTp7a0gq9YbUpHmC3XTNr26/yOYYrdjkiMD26XusJUjXe+/V2xw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6696,7 +6712,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/manager-api': 7.5.3(react-dom@18.2.0)(react@18.2.0)
'@storybook/preview-api': 7.5.3
'@storybook/theming': 7.5.3(react-dom@18.2.0)(react@18.2.0)
@@ -6707,7 +6723,7 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/addon-viewport@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/addon-viewport@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-gT2XX0NNBrzSs1nrxadl6LnvcwgN7z2R0LzTK8/hxvx4D0EnXrV3feXLzjewr8ZYjzfEeSpO+W+bQTVNm3fNsg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6719,7 +6735,7 @@ packages:
optional: true
dependencies:
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.5.3
'@storybook/global': 5.0.0
'@storybook/manager-api': 7.5.3(react-dom@18.2.0)(react@18.2.0)
@@ -6747,7 +6763,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/blocks@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/blocks@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Z8yF820v78clQWkwG5OA5qugbQn7rtutq9XCsd03NDB+IEfDaTFQAZG8gs62ZX2ZaXAJsqJSr/mL9oURzXto2A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -6755,7 +6771,7 @@ packages:
dependencies:
'@storybook/channels': 7.5.3
'@storybook/client-logger': 7.5.3
- '@storybook/components': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/components': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/core-events': 7.5.3
'@storybook/csf': 0.1.1
'@storybook/docs-tools': 7.5.3
@@ -6809,7 +6825,7 @@ packages:
- supports-color
dev: true
- /@storybook/builder-webpack5@7.5.3(esbuild@0.18.20)(typescript@5.2.2):
+ /@storybook/builder-webpack5@7.5.3(esbuild@0.18.20)(typescript@5.3.2):
resolution: {integrity: sha512-a2kHXFT61AV1+OPNTqXCsYk7Wk4XSqjAOQkSxWc1HK+kyMT+lahO4U06slji6XAVuXc/KY+naNUoaOfpB1hKVw==}
peerDependencies:
typescript: '*'
@@ -6827,7 +6843,7 @@ packages:
'@storybook/preview': 7.5.3
'@storybook/preview-api': 7.5.3
'@swc/core': 1.3.96
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
'@types/semver': 7.5.5
babel-loader: 9.1.3(@babel/core@7.23.3)(webpack@5.89.0)
babel-plugin-named-exports-order: 0.0.2
@@ -6836,7 +6852,7 @@ packages:
constants-browserify: 1.0.0
css-loader: 6.8.1(webpack@5.89.0)
express: 4.18.2
- fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.2.2)(webpack@5.89.0)
+ fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.3.2)(webpack@5.89.0)
fs-extra: 11.1.1
html-webpack-plugin: 5.5.3(webpack@5.89.0)
path-browserify: 1.0.1
@@ -6846,7 +6862,7 @@ packages:
swc-loader: 0.2.3(@swc/core@1.3.96)(webpack@5.89.0)
terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(esbuild@0.18.20)(webpack@5.89.0)
ts-dedent: 2.2.0
- typescript: 5.2.2
+ typescript: 5.3.2
url: 0.11.3
util: 0.12.5
util-deprecate: 1.0.2
@@ -6953,14 +6969,14 @@ packages:
- supports-color
dev: true
- /@storybook/components@7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0):
+ /@storybook/components@7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-M3+cjvEsDGLUx8RvK5wyF6/13LNlUnKbMgiDE8Sxk/v/WPpyhOAIh/B8VmrU1psahS61Jd4MTkFmLf1cWau1vw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
'@storybook/client-logger': 7.5.3
'@storybook/csf': 0.1.1
'@storybook/global': 5.0.0
@@ -6990,7 +7006,7 @@ packages:
'@storybook/node-logger': 7.5.3
'@storybook/types': 7.5.3
'@types/find-cache-dir': 3.2.1
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
'@types/node-fetch': 2.6.9
'@types/pretty-hrtime': 1.0.3
chalk: 4.1.2
@@ -7039,7 +7055,7 @@ packages:
'@storybook/telemetry': 7.5.3
'@storybook/types': 7.5.3
'@types/detect-port': 1.3.5
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
'@types/pretty-hrtime': 1.0.3
'@types/semver': 7.5.5
better-opn: 3.0.2
@@ -7077,7 +7093,7 @@ packages:
'@storybook/core-common': 7.5.3
'@storybook/node-logger': 7.5.3
'@storybook/types': 7.5.3
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
ts-dedent: 2.2.0
transitivePeerDependencies:
- encoding
@@ -7170,7 +7186,7 @@ packages:
resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==}
dev: true
- /@storybook/nextjs@7.5.3(@swc/core@1.3.96)(@types/react-dom@18.2.15)(@types/react@18.2.37)(esbuild@0.18.20)(next@14.0.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)(typescript@5.2.2)(webpack@5.89.0):
+ /@storybook/nextjs@7.5.3(@swc/core@1.3.96)(@types/react-dom@18.2.16)(@types/react@18.2.38)(esbuild@0.18.20)(next@14.0.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)(typescript@5.3.2)(webpack@5.89.0):
resolution: {integrity: sha512-PYi9AJga6x46IN4aub9CuiKNF9mT3maTh1F9dXqE4kO+ZrbesiKcJ3Uud0D78c56/Jlr8FmHEDpO19OlgRM4kQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -7203,15 +7219,15 @@ packages:
'@babel/preset-react': 7.23.3(@babel/core@7.23.3)
'@babel/preset-typescript': 7.23.3(@babel/core@7.23.3)
'@babel/runtime': 7.23.2
- '@storybook/addon-actions': 7.5.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/builder-webpack5': 7.5.3(esbuild@0.18.20)(typescript@5.2.2)
+ '@storybook/addon-actions': 7.5.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/builder-webpack5': 7.5.3(esbuild@0.18.20)(typescript@5.3.2)
'@storybook/core-common': 7.5.3
'@storybook/core-events': 7.5.3
'@storybook/node-logger': 7.5.3
- '@storybook/preset-react-webpack': 7.5.3(@babel/core@7.23.3)(@swc/core@1.3.96)(esbuild@0.18.20)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
+ '@storybook/preset-react-webpack': 7.5.3(@babel/core@7.23.3)(@swc/core@1.3.96)(esbuild@0.18.20)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.2)
'@storybook/preview-api': 7.5.3
- '@storybook/react': 7.5.3(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
- '@types/node': 18.18.9
+ '@storybook/react': 7.5.3(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.2)
+ '@types/node': 18.18.11
css-loader: 6.8.1(webpack@5.89.0)
find-up: 5.0.0
fs-extra: 11.1.1
@@ -7219,9 +7235,9 @@ packages:
loader-utils: 3.2.1
next: 14.0.3(@babel/core@7.23.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)
node-polyfill-webpack-plugin: 2.0.1(webpack@5.89.0)
- pnp-webpack-plugin: 1.7.0(typescript@5.2.2)
+ pnp-webpack-plugin: 1.7.0(typescript@5.3.2)
postcss: 8.4.31
- postcss-loader: 7.3.3(postcss@8.4.31)(typescript@5.2.2)(webpack@5.89.0)
+ postcss-loader: 7.3.3(postcss@8.4.31)(typescript@5.3.2)(webpack@5.89.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
resolve-url-loader: 5.0.0
@@ -7232,7 +7248,7 @@ packages:
ts-dedent: 2.2.0
tsconfig-paths: 4.2.0
tsconfig-paths-webpack-plugin: 4.1.0
- typescript: 5.2.2
+ typescript: 5.3.2
webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.18.20)
transitivePeerDependencies:
- '@swc/core'
@@ -7265,7 +7281,7 @@ packages:
resolution: {integrity: sha512-r+H3xGMu2A9yOSsygc3bDFhku8wpOZF3SqO19B7eAML12viHwUtYfyGL74svw4TMcKukyQ+KPn5QsSG+4bjZMg==}
dev: true
- /@storybook/preset-react-webpack@7.5.3(@babel/core@7.23.3)(@swc/core@1.3.96)(esbuild@0.18.20)(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
+ /@storybook/preset-react-webpack@7.5.3(@babel/core@7.23.3)(@swc/core@1.3.96)(esbuild@0.18.20)(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.2):
resolution: {integrity: sha512-/3Zsh97KpMLsx3lkkQ9LAlEVWwBGbAJTwE+ueVxVnAJgwiDCVe95IN7sVpKuwN/PVStnMRwDADUvZPfmw4m3Sg==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -7286,9 +7302,9 @@ packages:
'@storybook/core-webpack': 7.5.3
'@storybook/docs-tools': 7.5.3
'@storybook/node-logger': 7.5.3
- '@storybook/react': 7.5.3(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2)
- '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.2.2)(webpack@5.89.0)
- '@types/node': 18.18.9
+ '@storybook/react': 7.5.3(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.2)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.3.2)(webpack@5.89.0)
+ '@types/node': 18.18.11
'@types/semver': 7.5.5
babel-plugin-add-react-displayname: 0.0.5
babel-plugin-react-docgen: 4.2.1
@@ -7297,7 +7313,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
react-refresh: 0.11.0
semver: 7.5.4
- typescript: 5.2.2
+ typescript: 5.3.2
webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.18.20)
transitivePeerDependencies:
- '@swc/core'
@@ -7337,7 +7353,7 @@ packages:
resolution: {integrity: sha512-Hf90NlLaSrdMZXPOHDCMPjTywVrQKK0e5CtzqWx/ZQz91JDINxJD+sGj2wZU+wuBtQcTtlsXc9OewlJ+9ETwIw==}
dev: true
- /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.2.2)(webpack@5.89.0):
+ /@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.3.2)(webpack@5.89.0):
resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==}
peerDependencies:
typescript: '>= 4.x'
@@ -7348,9 +7364,9 @@ packages:
find-cache-dir: 3.3.2
flat-cache: 3.2.0
micromatch: 4.0.5
- react-docgen-typescript: 2.2.2(typescript@5.2.2)
+ react-docgen-typescript: 2.2.2(typescript@5.3.2)
tslib: 2.6.2
- typescript: 5.2.2
+ typescript: 5.3.2
webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.18.20)
transitivePeerDependencies:
- supports-color
@@ -7366,7 +7382,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/react@7.5.3(react-dom@18.2.0)(react@18.2.0)(typescript@5.2.2):
+ /@storybook/react@7.5.3(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.2):
resolution: {integrity: sha512-dZILdM36xMFDjdmmy421G5X+sOIncB2qF3IPTooniG1i1Z6v/dVNo57ovdID9lDTNa+AWr2fLB9hANiISMqmjQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
@@ -7386,7 +7402,7 @@ packages:
'@storybook/types': 7.5.3
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
acorn: 7.4.1
acorn-jsx: 5.3.2(acorn@7.4.1)
acorn-walk: 7.2.0
@@ -7399,7 +7415,7 @@ packages:
react-element-to-jsx-string: 15.0.0(react-dom@18.2.0)(react@18.2.0)
ts-dedent: 2.2.0
type-fest: 2.19.0
- typescript: 5.2.2
+ typescript: 5.3.2
util-deprecate: 1.0.2
transitivePeerDependencies:
- encoding
@@ -7923,7 +7939,7 @@ packages:
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
dependencies:
'@types/connect': 3.4.38
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
/@types/btoa-lite@1.0.2:
resolution: {integrity: sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg==}
@@ -7954,7 +7970,7 @@ packages:
/@types/connect@3.4.38:
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
/@types/cookies@0.7.7:
resolution: {integrity: sha512-h7BcvPUogWbKCzBR2lY4oqaZbO3jXZksexYJVFvkrFeLgbZjQkU4x8pRq6eg2MHXQhY0McQdqmmsxRWlVAHooA==}
@@ -7962,13 +7978,13 @@ packages:
'@types/connect': 3.4.38
'@types/express': 4.17.14
'@types/keygrip': 1.0.5
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: false
/@types/cross-spawn@6.0.5:
resolution: {integrity: sha512-wsIMP68FvGXk+RaWhraz6Xp4v7sl4qwzHAmtPaJEN2NRTXXI9LtFawUpeTsBNL/pd6QoLStdytCaAyiK7AEd/Q==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: true
/@types/d3-array@3.2.1:
@@ -8187,7 +8203,7 @@ packages:
/@types/express-serve-static-core@4.17.41:
resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
'@types/qs': 6.9.10
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -8222,7 +8238,7 @@ packages:
resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
dependencies:
'@types/jsonfile': 6.1.4
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: true
/@types/geojson@7946.0.13:
@@ -8232,13 +8248,13 @@ packages:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: true
/@types/graceful-fs@4.1.9:
resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: true
/@types/hast@2.3.8:
@@ -8286,13 +8302,13 @@ packages:
/@types/jsonfile@6.1.4:
resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: true
/@types/jsonwebtoken@9.0.5:
resolution: {integrity: sha512-VRLSGzik+Unrup6BsouBeHsf4d1hOEgYWTm/7Nmw1sXoN1+tRly/Gy/po3yeahnP4jfnQWWAhQAqcNfH7ngOkA==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: false
/@types/keygrip@1.0.5:
@@ -8302,7 +8318,7 @@ packages:
/@types/klaw@3.0.6:
resolution: {integrity: sha512-BErW5TrTz4nzt/c3VRGf0Bug4JyQJ1o807F4mAfXfvOzFZ8SKgFeHJ0T28Y1KtqlMEB+cUgN7S7CsyQDQ/qxqg==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: true
/@types/lodash@4.14.201:
@@ -8345,9 +8361,9 @@ packages:
/@types/next-pwa@5.6.9(@babel/core@7.23.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5):
resolution: {integrity: sha512-KcymH+MtFYB5KVKIOH1DMqd0wUb8VLCxzHtsaRQQ7S8sGOaTH24Lo2vGZf6/0Ok9e+xWCKhqsSt6cgDJTk91Iw==}
dependencies:
- '@types/node': 18.18.9
- '@types/react': 18.2.37
- '@types/react-dom': 18.2.15
+ '@types/node': 18.18.11
+ '@types/react': 18.2.38
+ '@types/react-dom': 18.2.16
next: 13.5.6(@babel/core@7.23.3)(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5)
workbox-build: 6.6.0
transitivePeerDependencies:
@@ -8364,29 +8380,29 @@ packages:
/@types/node-fetch@2.6.2:
resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
form-data: 3.0.1
dev: false
/@types/node-fetch@2.6.9:
resolution: {integrity: sha512-bQVlnMLFJ2d35DkPNjEPmd9ueO/rh5EiaZt2bhqiSarPjZIuIV6bPQVqcrEyvNo+AfTrRGVazle1tl597w3gfA==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
form-data: 4.0.0
dev: true
/@types/node-forge@1.3.9:
resolution: {integrity: sha512-meK88cx/sTalPSLSoCzkiUB4VPIFHmxtXm5FaaqRDqBX2i/Sy8bJ4odsan0b20RBjPh06dAQ+OTTdnyQyhJZyQ==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: true
/@types/node@16.18.6:
resolution: {integrity: sha512-vmYJF0REqDyyU0gviezF/KHq/fYaUbFhkcNbQCuPGFQj6VTbXuHZoxs/Y7mutWe73C8AC6l9fFu8mSYiBAqkGA==}
dev: false
- /@types/node@18.18.9:
- resolution: {integrity: sha512-0f5klcuImLnG4Qreu9hPj/rEfFq6YRc5n2mAjSsH+ec/mJL+3voBH0+8T7o8RpFjH7ovc+TRsL/c7OYIQsPTfQ==}
+ /@types/node@18.18.11:
+ resolution: {integrity: sha512-c1vku6qnTeujJneYH94/4aq73XrVcsJe35UPyAsSok1ijiKrkRzK+AxQPSpNMUnC03roWBBwJx/9I8V7lQoxmA==}
dependencies:
undici-types: 5.26.5
@@ -8422,41 +8438,41 @@ packages:
/@types/range-parser@1.2.7:
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- /@types/react-dom@18.2.15:
- resolution: {integrity: sha512-HWMdW+7r7MR5+PZqJF6YFNSCtjz1T0dsvo/f1BV6HkV+6erD/nA7wd9NM00KVG83zf2nJ7uATPO9ttdIPvi3gg==}
+ /@types/react-dom@18.2.16:
+ resolution: {integrity: sha512-766c37araZ9vxtYs25gvY2wNdFWsT2ZiUvOd0zMhTaoGj6B911N8CKQWgXXJoPMLF3J82thpRqQA7Rf3rBwyJw==}
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
/@types/react-grid-layout@1.3.5:
resolution: {integrity: sha512-WH/po1gcEcoR6y857yAnPGug+ZhkF4PaTUxgAbwfeSH/QOgVSakKHBXoPGad/sEznmkiaK3pqHk+etdWisoeBQ==}
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
dev: true
/@types/react-timeago@4.1.6:
resolution: {integrity: sha512-BFUH7FEple9m0K8dNvOqhba3+iCyrgsLcRtAnaZ6HlXvG8AJfC/7NCDcLaXfB1jvpAezwDRi/BflzdaLI4+Fow==}
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
dev: true
- /@types/react@18.2.37:
- resolution: {integrity: sha512-RGAYMi2bhRgEXT3f4B92WTohopH6bIXw05FuGlmJEnv/omEn190+QYEIYxIAuIBdKgboYYdVved2p1AxZVQnaw==}
+ /@types/react@18.2.38:
+ resolution: {integrity: sha512-cBBXHzuPtQK6wNthuVMV6IjHAFkdl/FOPFIlkd81/Cd1+IqkHu/A+w4g43kaQQoYHik/ruaQBDL72HyCy1vuMw==}
dependencies:
'@types/prop-types': 15.7.10
'@types/scheduler': 0.16.6
csstype: 3.1.2
- /@types/recharts@1.8.27:
- resolution: {integrity: sha512-FQPslOwKQacusDPowF+F6ARzwiNj9QGIckTp8duMxY+NBGs6UF1p6Wj3vXdRxHO78eae5qYB1wByEjK6kt8kXw==}
+ /@types/recharts@1.8.28:
+ resolution: {integrity: sha512-31D+dVBdVMtBnRMOjfM9210oRsclujQetwDNnCfapy/gF1BruvQkiK9WZ2ZMqDZY2xnDpIV8sWjISBcY+wgkLw==}
dependencies:
'@types/d3-shape': 1.3.11
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
dev: true
/@types/resolve@1.17.1:
resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: true
/@types/scheduler@0.16.6:
@@ -8469,19 +8485,19 @@ packages:
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
dependencies:
'@types/mime': 1.3.5
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
/@types/serve-static@1.15.5:
resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==}
dependencies:
'@types/http-errors': 2.0.4
'@types/mime': 3.0.4
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
/@types/sharp@0.31.1:
resolution: {integrity: sha512-5nWwamN9ZFHXaYEincMSuza8nNfOof8nmO+mcI+Agx1uMUk4/pQnNIcix+9rLPXzKrm1pS34+6WRDbDV0Jn7ag==}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
dev: true
/@types/suncalc@1.9.2:
@@ -8517,8 +8533,8 @@ packages:
'@types/yargs-parser': 21.0.3
dev: true
- /@typescript-eslint/eslint-plugin@6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.2.2):
- resolution: {integrity: sha512-uXnpZDc4VRjY4iuypDBKzW1rz9T5YBBK0snMn8MaTSNd2kMlj50LnLBABELjJiOL5YHk7ZD8hbSpI9ubzqYI0w==}
+ /@typescript-eslint/eslint-plugin@6.12.0(@typescript-eslint/parser@6.12.0)(eslint@8.54.0)(typescript@5.3.2):
+ resolution: {integrity: sha512-XOpZ3IyJUIV1b15M7HVOpgQxPPF7lGXgsfcEIu3yDxFPaf/xZKt7s9QO/pbk7vpWQyVulpJbu4E5LwpZiQo4kA==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -8529,25 +8545,25 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2)
- '@typescript-eslint/scope-manager': 6.11.0
- '@typescript-eslint/type-utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2)
- '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.11.0
+ '@typescript-eslint/parser': 6.12.0(eslint@8.54.0)(typescript@5.3.2)
+ '@typescript-eslint/scope-manager': 6.12.0
+ '@typescript-eslint/type-utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2)
+ '@typescript-eslint/utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2)
+ '@typescript-eslint/visitor-keys': 6.12.0
debug: 4.3.4
eslint: 8.54.0
graphemer: 1.4.0
ignore: 5.3.0
natural-compare: 1.4.0
semver: 7.5.4
- ts-api-utils: 1.0.3(typescript@5.2.2)
- typescript: 5.2.2
+ ts-api-utils: 1.0.3(typescript@5.3.2)
+ typescript: 5.3.2
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/parser@6.11.0(eslint@8.54.0)(typescript@5.2.2):
- resolution: {integrity: sha512-+whEdjk+d5do5nxfxx73oanLL9ghKO3EwM9kBCkUtWMRwWuPaFv9ScuqlYfQ6pAD6ZiJhky7TZ2ZYhrMsfMxVQ==}
+ /@typescript-eslint/parser@6.12.0(eslint@8.54.0)(typescript@5.3.2):
+ resolution: {integrity: sha512-s8/jNFPKPNRmXEnNXfuo1gemBdVmpQsK1pcu+QIvuNJuhFzGrpD7WjOcvDc/+uEdfzSYpNu7U/+MmbScjoQ6vg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -8556,27 +8572,27 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 6.11.0
- '@typescript-eslint/types': 6.11.0
- '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2)
- '@typescript-eslint/visitor-keys': 6.11.0
+ '@typescript-eslint/scope-manager': 6.12.0
+ '@typescript-eslint/types': 6.12.0
+ '@typescript-eslint/typescript-estree': 6.12.0(typescript@5.3.2)
+ '@typescript-eslint/visitor-keys': 6.12.0
debug: 4.3.4
eslint: 8.54.0
- typescript: 5.2.2
+ typescript: 5.3.2
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/scope-manager@6.11.0:
- resolution: {integrity: sha512-0A8KoVvIURG4uhxAdjSaxy8RdRE//HztaZdG8KiHLP8WOXSk0vlF7Pvogv+vlJA5Rnjj/wDcFENvDaHb+gKd1A==}
+ /@typescript-eslint/scope-manager@6.12.0:
+ resolution: {integrity: sha512-5gUvjg+XdSj8pcetdL9eXJzQNTl3RD7LgUiYTl8Aabdi8hFkaGSYnaS6BLc0BGNaDH+tVzVwmKtWvu0jLgWVbw==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.11.0
- '@typescript-eslint/visitor-keys': 6.11.0
+ '@typescript-eslint/types': 6.12.0
+ '@typescript-eslint/visitor-keys': 6.12.0
dev: false
- /@typescript-eslint/type-utils@6.11.0(eslint@8.54.0)(typescript@5.2.2):
- resolution: {integrity: sha512-nA4IOXwZtqBjIoYrJcYxLRO+F9ri+leVGoJcMW1uqr4r1Hq7vW5cyWrA43lFbpRvQ9XgNrnfLpIkO3i1emDBIA==}
+ /@typescript-eslint/type-utils@6.12.0(eslint@8.54.0)(typescript@5.3.2):
+ resolution: {integrity: sha512-WWmRXxhm1X8Wlquj+MhsAG4dU/Blvf1xDgGaYCzfvStP2NwPQh6KBvCDbiOEvaE0filhranjIlK/2fSTVwtBng==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -8585,23 +8601,23 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2)
- '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2)
+ '@typescript-eslint/typescript-estree': 6.12.0(typescript@5.3.2)
+ '@typescript-eslint/utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2)
debug: 4.3.4
eslint: 8.54.0
- ts-api-utils: 1.0.3(typescript@5.2.2)
- typescript: 5.2.2
+ ts-api-utils: 1.0.3(typescript@5.3.2)
+ typescript: 5.3.2
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/types@6.11.0:
- resolution: {integrity: sha512-ZbEzuD4DwEJxwPqhv3QULlRj8KYTAnNsXxmfuUXFCxZmO6CF2gM/y+ugBSAQhrqaJL3M+oe4owdWunaHM6beqA==}
+ /@typescript-eslint/types@6.12.0:
+ resolution: {integrity: sha512-MA16p/+WxM5JG/F3RTpRIcuOghWO30//VEOvzubM8zuOOBYXsP+IfjoCXXiIfy2Ta8FRh9+IO9QLlaFQUU+10Q==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: false
- /@typescript-eslint/typescript-estree@6.11.0(typescript@5.2.2):
- resolution: {integrity: sha512-Aezzv1o2tWJwvZhedzvD5Yv7+Lpu1by/U1LZ5gLc4tCx8jUmuSCMioPFRjliN/6SJIvY6HpTtJIWubKuYYYesQ==}
+ /@typescript-eslint/typescript-estree@6.12.0(typescript@5.3.2):
+ resolution: {integrity: sha512-vw9E2P9+3UUWzhgjyyVczLWxZ3GuQNT7QpnIY3o5OMeLO/c8oHljGc8ZpryBMIyympiAAaKgw9e5Hl9dCWFOYw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -8609,20 +8625,20 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 6.11.0
- '@typescript-eslint/visitor-keys': 6.11.0
+ '@typescript-eslint/types': 6.12.0
+ '@typescript-eslint/visitor-keys': 6.12.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
- ts-api-utils: 1.0.3(typescript@5.2.2)
- typescript: 5.2.2
+ ts-api-utils: 1.0.3(typescript@5.3.2)
+ typescript: 5.3.2
transitivePeerDependencies:
- supports-color
dev: false
- /@typescript-eslint/utils@6.11.0(eslint@8.54.0)(typescript@5.2.2):
- resolution: {integrity: sha512-p23ibf68fxoZy605dc0dQAEoUsoiNoP3MD9WQGiHLDuTSOuqoTsa4oAy+h3KDkTcxbbfOtUjb9h3Ta0gT4ug2g==}
+ /@typescript-eslint/utils@6.12.0(eslint@8.54.0)(typescript@5.3.2):
+ resolution: {integrity: sha512-LywPm8h3tGEbgfyjYnu3dauZ0U7R60m+miXgKcZS8c7QALO9uWJdvNoP+duKTk2XMWc7/Q3d/QiCuLN9X6SWyQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
@@ -8630,9 +8646,9 @@ packages:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.5
- '@typescript-eslint/scope-manager': 6.11.0
- '@typescript-eslint/types': 6.11.0
- '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2)
+ '@typescript-eslint/scope-manager': 6.12.0
+ '@typescript-eslint/types': 6.12.0
+ '@typescript-eslint/typescript-estree': 6.12.0(typescript@5.3.2)
eslint: 8.54.0
semver: 7.5.4
transitivePeerDependencies:
@@ -8640,11 +8656,11 @@ packages:
- typescript
dev: false
- /@typescript-eslint/visitor-keys@6.11.0:
- resolution: {integrity: sha512-+SUN/W7WjBr05uRxPggJPSzyB8zUpaYo2hByKasWbqr3PM8AXfZt8UHdNpBS1v9SA62qnSSMF3380SwDqqprgQ==}
+ /@typescript-eslint/visitor-keys@6.12.0:
+ resolution: {integrity: sha512-rg3BizTZHF1k3ipn8gfrzDXXSFKyOEB5zxYXInQ6z0hUvmQlhaZQzK+YmHmNViMA9HzW5Q9+bPPt90bU6GQwyw==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 6.11.0
+ '@typescript-eslint/types': 6.12.0
eslint-visitor-keys: 3.4.3
dev: false
@@ -8657,13 +8673,13 @@ packages:
server-only: 0.0.1
dev: false
- /@vitejs/plugin-react-swc@3.5.0(vite@5.0.0):
+ /@vitejs/plugin-react-swc@3.5.0(vite@5.0.2):
resolution: {integrity: sha512-1PrOvAaDpqlCV+Up8RkAh9qaiUjoDUcjtttyhXDKw53XA6Ve16SOp6cCOpRs8Dj8DqUQs6eTW5YkLcLJjrXAig==}
peerDependencies:
vite: ^4 || ^5
dependencies:
'@swc/core': 1.3.96
- vite: 5.0.0
+ vite: 5.0.2
transitivePeerDependencies:
- '@swc/helpers'
dev: true
@@ -9544,16 +9560,6 @@ packages:
resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
dev: true
- /bundle-require@4.0.2(esbuild@0.19.5):
- resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- peerDependencies:
- esbuild: '>=0.17'
- dependencies:
- esbuild: 0.19.5
- load-tsconfig: 0.2.5
- dev: true
-
/busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
@@ -9589,11 +9595,6 @@ packages:
yargs-parser: 20.2.9
dev: true
- /cac@6.7.14:
- resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
- engines: {node: '>=8'}
- dev: true
-
/call-bind@1.0.5:
resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
dependencies:
@@ -9765,10 +9766,6 @@ packages:
/classix@2.1.35:
resolution: {integrity: sha512-YRI5UjBq9Aspfnj6ZyCobyeye3EDAanCpBWqXhNH9bVloKC6Ejnz+K4pWu/qMSaJRJEtLgmfvkIRk5zbQqj2PA==}
- /classnames@2.3.2:
- resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
- dev: false
-
/clean-css@5.3.2:
resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==}
engines: {node: '>= 10.0'}
@@ -9787,7 +9784,7 @@ packages:
webpack: '>=4.0.0 <6.0.0'
dependencies:
del: 4.1.1
- webpack: 5.89.0(esbuild@0.18.20)
+ webpack: 5.89.0
dev: true
/cli-color@2.0.3:
@@ -9833,15 +9830,6 @@ packages:
wrap-ansi: 7.0.0
dev: true
- /cliui@8.0.1:
- resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
- engines: {node: '>=12'}
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
- dev: true
-
/clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
@@ -10005,22 +9993,6 @@ packages:
typedarray: 0.0.6
dev: true
- /concurrently@8.2.2:
- resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==}
- engines: {node: ^14.13.0 || >=16.0.0}
- hasBin: true
- dependencies:
- chalk: 4.1.2
- date-fns: 2.30.0
- lodash: 4.17.21
- rxjs: 7.8.1
- shell-quote: 1.8.1
- spawn-command: 0.0.2
- supports-color: 8.1.1
- tree-kill: 1.2.2
- yargs: 17.7.2
- dev: true
-
/console-browserify@1.2.0:
resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
dev: true
@@ -10080,7 +10052,7 @@ packages:
path-type: 4.0.0
yaml: 1.10.2
- /cosmiconfig@8.3.6(typescript@5.2.2):
+ /cosmiconfig@8.3.6(typescript@5.3.2):
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
engines: {node: '>=14'}
peerDependencies:
@@ -10093,7 +10065,7 @@ packages:
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
- typescript: 5.2.2
+ typescript: 5.3.2
dev: true
/create-ecdh@4.0.4:
@@ -10529,6 +10501,7 @@ packages:
engines: {node: '>=0.11'}
dependencies:
'@babel/runtime': 7.23.2
+ dev: false
/debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -11355,7 +11328,7 @@ packages:
source-map: 0.6.1
dev: true
- /eslint-config-next@14.0.3(eslint@8.54.0)(typescript@5.2.2):
+ /eslint-config-next@14.0.3(eslint@8.54.0)(typescript@5.3.2):
resolution: {integrity: sha512-IKPhpLdpSUyKofmsXUfrvBC49JMUTdeaD8ZIH4v9Vk0sC1X6URTuTJCLtA0Vwuj7V/CQh0oISuSTvNn5//Buew==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
@@ -11366,15 +11339,15 @@ packages:
dependencies:
'@next/eslint-plugin-next': 14.0.3
'@rushstack/eslint-patch': 1.5.1
- '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.12.0(eslint@8.54.0)(typescript@5.3.2)
eslint: 8.54.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.54.0)
- eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.54.0)
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.54.0)
eslint-plugin-react: 7.33.2(eslint@8.54.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.54.0)
- typescript: 5.2.2
+ typescript: 5.3.2
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
@@ -11399,7 +11372,7 @@ packages:
- supports-color
dev: false
- /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.54.0):
+ /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.54.0):
resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -11409,8 +11382,8 @@ packages:
debug: 4.3.4
enhanced-resolve: 5.15.0
eslint: 8.54.0
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
- eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
+ eslint-plugin-import: 2.29.0(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
fast-glob: 3.3.2
get-tsconfig: 4.7.2
is-core-module: 2.13.1
@@ -11422,7 +11395,7 @@ packages:
- supports-color
dev: false
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -11443,16 +11416,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.12.0(eslint@8.54.0)(typescript@5.3.2)
debug: 3.2.7
eslint: 8.54.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.54.0)
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.0)(eslint@8.54.0)
transitivePeerDependencies:
- supports-color
dev: false
- /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0):
+ /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0):
resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==}
engines: {node: '>=4'}
peerDependencies:
@@ -11462,7 +11435,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2)
+ '@typescript-eslint/parser': 6.12.0(eslint@8.54.0)(typescript@5.3.2)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
@@ -11471,7 +11444,7 @@ packages:
doctrine: 2.1.0
eslint: 8.54.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0)
hasown: 2.0.0
is-core-module: 2.13.1
is-glob: 4.0.3
@@ -11512,6 +11485,11 @@ packages:
object.fromentries: 2.0.7
dev: false
+ /eslint-plugin-only-warn@1.1.0:
+ resolution: {integrity: sha512-2tktqUAT+Q3hCAU0iSf4xAN1k9zOpjK5WO8104mB0rT/dGhOa09582HN5HlbxNbPRZ0THV7nLGvzugcNOSjzfA==}
+ engines: {node: '>=6'}
+ dev: false
+
/eslint-plugin-react-hooks@4.6.0(eslint@8.54.0):
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
engines: {node: '>=10'}
@@ -12065,7 +12043,7 @@ packages:
signal-exit: 4.1.0
dev: true
- /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.2.2)(webpack@5.89.0):
+ /fork-ts-checker-webpack-plugin@8.0.0(typescript@5.3.2)(webpack@5.89.0):
resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==}
engines: {node: '>=12.13.0', yarn: '>=1.0.0'}
peerDependencies:
@@ -12084,7 +12062,7 @@ packages:
schema-utils: 3.3.0
semver: 7.5.4
tapable: 2.2.1
- typescript: 5.2.2
+ typescript: 5.3.2
webpack: 5.89.0(@swc/core@1.3.96)(esbuild@0.18.20)
dev: true
@@ -13301,7 +13279,7 @@ packages:
dependencies:
'@jest/types': 29.6.3
'@types/graceful-fs': 4.1.9
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
anymatch: 3.1.3
fb-watchman: 2.0.2
graceful-fs: 4.2.11
@@ -13324,7 +13302,7 @@ packages:
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -13335,7 +13313,7 @@ packages:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
merge-stream: 2.0.0
supports-color: 7.2.0
dev: true
@@ -13344,7 +13322,7 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -13352,7 +13330,7 @@ packages:
resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
dependencies:
- '@types/node': 18.18.9
+ '@types/node': 18.18.11
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -13362,11 +13340,6 @@ packages:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
- /joycon@3.1.1:
- resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
- engines: {node: '>=10'}
- dev: true
-
/js-cookie@3.0.1:
resolution: {integrity: sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==}
engines: {node: '>=12'}
@@ -13610,11 +13583,6 @@ packages:
resolution: {integrity: sha512-1elJrH8MwUgr77Rgmx4JgB/nBgISYVoGossH6pAfCeHG+07TblTn6RWKx0MKozEMJU6NCFYHRih9M8ZtV3YZ+Q==}
dev: false
- /load-tsconfig@0.2.5:
- resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- dev: true
-
/loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
@@ -14995,6 +14963,45 @@ packages:
- '@babel/core'
- babel-plugin-macros
+ /next@14.0.3(react-dom@18.2.0)(react@18.2.0)(sass@1.69.5):
+ resolution: {integrity: sha512-AbYdRNfImBr3XGtvnwOxq8ekVCwbFTv/UJoLwmaX89nk9i051AEY4/HAWzU0YpaTDw8IofUpmuIlvzWF13jxIw==}
+ engines: {node: '>=18.17.0'}
+ hasBin: true
+ peerDependencies:
+ '@opentelemetry/api': ^1.1.0
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ sass: ^1.3.0
+ peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
+ sass:
+ optional: true
+ dependencies:
+ '@next/env': 14.0.3
+ '@swc/helpers': 0.5.2
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001562
+ postcss: 8.4.31
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ sass: 1.69.5
+ styled-jsx: 5.1.1(@babel/core@7.23.3)(react@18.2.0)
+ watchpack: 2.4.0
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 14.0.3
+ '@next/swc-darwin-x64': 14.0.3
+ '@next/swc-linux-arm64-gnu': 14.0.3
+ '@next/swc-linux-arm64-musl': 14.0.3
+ '@next/swc-linux-x64-gnu': 14.0.3
+ '@next/swc-linux-x64-musl': 14.0.3
+ '@next/swc-win32-arm64-msvc': 14.0.3
+ '@next/swc-win32-ia32-msvc': 14.0.3
+ '@next/swc-win32-x64-msvc': 14.0.3
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
/no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
dependencies:
@@ -15622,11 +15629,11 @@ packages:
fsevents: 2.3.2
dev: true
- /pnp-webpack-plugin@1.7.0(typescript@5.2.2):
+ /pnp-webpack-plugin@1.7.0(typescript@5.3.2):
resolution: {integrity: sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==}
engines: {node: '>=6'}
dependencies:
- ts-pnp: 1.2.0(typescript@5.2.2)
+ ts-pnp: 1.2.0(typescript@5.3.2)
transitivePeerDependencies:
- typescript
dev: true
@@ -15845,14 +15852,14 @@ packages:
postcss: 8.4.31
yaml: 2.3.4
- /postcss-loader@7.3.3(postcss@8.4.31)(typescript@5.2.2)(webpack@5.89.0):
+ /postcss-loader@7.3.3(postcss@8.4.31)(typescript@5.3.2)(webpack@5.89.0):
resolution: {integrity: sha512-YgO/yhtevGO/vJePCQmTxiaEwER94LABZN0ZMT4A0vsak9TpO+RvKRs7EmJ8peIlB9xfXCsS7M8LjqncsUZ5HA==}
engines: {node: '>= 14.15.0'}
peerDependencies:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
dependencies:
- cosmiconfig: 8.3.6(typescript@5.2.2)
+ cosmiconfig: 8.3.6(typescript@5.3.2)
jiti: 1.21.0
postcss: 8.4.31
semver: 7.5.4
@@ -16497,12 +16504,12 @@ packages:
react: 18.2.0
dev: false
- /react-docgen-typescript@2.2.2(typescript@5.2.2):
+ /react-docgen-typescript@2.2.2(typescript@5.3.2):
resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==}
peerDependencies:
typescript: '>= 4.3.x'
dependencies:
- typescript: 5.2.2
+ typescript: 5.3.2
dev: true
/react-docgen@5.4.3:
@@ -16610,7 +16617,7 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /react-remove-scroll-bar@2.3.4(@types/react@18.2.37)(react@18.2.0):
+ /react-remove-scroll-bar@2.3.4(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
@@ -16620,12 +16627,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- react-style-singleton: 2.2.1(@types/react@18.2.37)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.38)(react@18.2.0)
tslib: 2.6.2
- /react-remove-scroll@2.5.5(@types/react@18.2.37)(react@18.2.0):
+ /react-remove-scroll@2.5.5(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
@@ -16635,13 +16642,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- react-remove-scroll-bar: 2.3.4(@types/react@18.2.37)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.2.37)(react@18.2.0)
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.38)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.38)(react@18.2.0)
tslib: 2.6.2
- use-callback-ref: 1.3.0(@types/react@18.2.37)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.2.37)(react@18.2.0)
+ use-callback-ref: 1.3.0(@types/react@18.2.38)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.38)(react@18.2.0)
/react-resizable@3.0.5(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-vKpeHhI5OZvYn82kXOs1bC8aOXktGU5AmKAgaZS4F5JPburCtbmDPqE7Pzp+1kN4+Wb81LlF33VpGwWwtXem+w==}
@@ -16655,17 +16662,6 @@ packages:
- react-dom
dev: false
- /react-resize-detector@8.1.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-S7szxlaIuiy5UqLhLL1KY3aoyGHbZzsTpYal9eYMwCyKqoqoVLCmIgAgNyIM1FhnP2KyBygASJxdhejrzjMb+w==}
- peerDependencies:
- react: ^16.0.0 || ^17.0.0 || ^18.0.0
- react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
- dependencies:
- lodash: 4.17.21
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
-
/react-smooth@2.0.5(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-BMP2Ad42tD60h0JW6BFaib+RJuV5dsXJK9Baxiv/HlNFjvRLqA9xrNKxVWnUIZPQfzUwGXIlU/dSYLU+54YGQA==}
peerDependencies:
@@ -16680,7 +16676,7 @@ packages:
react-transition-group: 2.9.0(react-dom@18.2.0)(react@18.2.0)
dev: false
- /react-style-singleton@2.2.1(@types/react@18.2.37)(react@18.2.0):
+ /react-style-singleton@2.2.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -16690,13 +16686,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
tslib: 2.6.2
- /react-textarea-autosize@8.3.4(@types/react@18.2.37)(react@18.2.0):
+ /react-textarea-autosize@8.3.4(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-CdtmP8Dc19xL8/R6sWvtknD/eCXkQr30dtvC4VmGInhRsfF8X/ihXCq6+9l9qbxmKRiq407/7z5fxE7cVWQNgQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -16705,7 +16701,7 @@ packages:
'@babel/runtime': 7.23.2
react: 18.2.0
use-composed-ref: 1.3.0(react@18.2.0)
- use-latest: 1.2.1(@types/react@18.2.37)(react@18.2.0)
+ use-latest: 1.2.1(@types/react@18.2.38)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
dev: false
@@ -16718,17 +16714,6 @@ packages:
react: 18.2.0
dev: false
- /react-toastify@9.1.3(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-fPfb8ghtn/XMxw3LkxQBk3IyagNpF/LIKjOBflbexr2AWxAH1MJgvnESwEwBn9liLFXgTKWgBSdZpw9m4OTHTg==}
- peerDependencies:
- react: '>=16'
- react-dom: '>=16'
- dependencies:
- clsx: 1.2.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- dev: false
-
/react-transition-group@2.9.0(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==}
peerDependencies:
@@ -16851,22 +16836,21 @@ packages:
decimal.js-light: 2.5.1
dev: false
- /recharts@2.9.3(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-B61sKrDlTxHvYwOCw8eYrD6rTA2a2hJg0avaY8qFI1ZYdHKvU18+J5u7sBMFg//wfJ/C5RL5+HsXt5e8tcJNLg==}
- engines: {node: '>=12'}
+ /recharts@2.10.1(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-9bi0jIzxOTfEda+oYqgimKuYfApmBr0zKnAX8r4Iw56k3Saz/IQyBD4zohZL0eyzfz0oGFRH7alpJBgH1eC57g==}
+ engines: {node: '>=14'}
peerDependencies:
prop-types: ^15.6.0
react: ^16.0.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
dependencies:
- classnames: 2.3.2
+ clsx: 2.0.0
eventemitter3: 4.0.7
lodash: 4.17.21
prop-types: 15.8.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
react-is: 16.13.1
- react-resize-detector: 8.1.0(react-dom@18.2.0)(react@18.2.0)
react-smooth: 2.0.5(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
recharts-scale: 0.4.5
tiny-invariant: 1.3.1
@@ -17263,12 +17247,6 @@ packages:
resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
dev: false
- /rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
- dependencies:
- tslib: 2.6.2
- dev: true
-
/sade@1.8.1:
resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
engines: {node: '>=6'}
@@ -17524,10 +17502,6 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- /shell-quote@1.8.1:
- resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
- dev: true
-
/side-channel@1.0.4:
resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
dependencies:
@@ -17610,6 +17584,16 @@ packages:
type-fest: 2.19.0
dev: false
+ /sonner@1.2.2(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-EHxYBr5tLDQW4CqosTsX95/Qd5oxjDeQN/EbKBZcjdNp4Hjs6snXB6Lmu1kTL27M3su0oG9DxkllfvX+aSoI4Q==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ dev: false
+
/source-list-map@2.0.1:
resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
dev: true
@@ -17657,10 +17641,6 @@ packages:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
dev: false
- /spawn-command@0.0.2:
- resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==}
- dev: true
-
/spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
dependencies:
@@ -18031,6 +18011,12 @@ packages:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
dev: false
+ /tailwind-merge@2.0.0:
+ resolution: {integrity: sha512-WO8qghn9yhsldLSg80au+3/gY9E4hFxIvQ3qOmlpXnqpDKoMruKfi/56BbbMg6fHTQJ9QD3cc79PoWqlaQE4rw==}
+ dependencies:
+ '@babel/runtime': 7.23.2
+ dev: false
+
/tailwindcss-animate@1.0.7(tailwindcss@3.3.5):
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
peerDependencies:
@@ -18363,11 +18349,6 @@ packages:
punycode: 2.3.1
dev: true
- /tree-kill@1.2.2:
- resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
- hasBin: true
- dev: true
-
/trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
dev: false
@@ -18380,13 +18361,13 @@ packages:
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
dev: false
- /ts-api-utils@1.0.3(typescript@5.2.2):
+ /ts-api-utils@1.0.3(typescript@5.3.2):
resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
engines: {node: '>=16.13.0'}
peerDependencies:
typescript: '>=4.2.0'
dependencies:
- typescript: 5.2.2
+ typescript: 5.3.2
dev: false
/ts-dedent@2.2.0:
@@ -18397,7 +18378,7 @@ packages:
/ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- /ts-pnp@1.2.0(typescript@5.2.2):
+ /ts-pnp@1.2.0(typescript@5.3.2):
resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==}
engines: {node: '>=6'}
peerDependencies:
@@ -18406,7 +18387,7 @@ packages:
typescript:
optional: true
dependencies:
- typescript: 5.2.2
+ typescript: 5.3.2
dev: true
/tsconfig-paths-webpack-plugin@4.1.0:
@@ -18447,43 +18428,6 @@ packages:
/tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- /tsup@7.3.0(postcss@8.4.31)(typescript@5.2.2):
- resolution: {integrity: sha512-Ja1eaSRrE+QarmATlNO5fse2aOACYMBX+IZRKy1T+gpyH+jXgRrl5l4nHIQJQ1DoDgEjHDTw8cpE085UdBZuWQ==}
- engines: {node: '>=18'}
- hasBin: true
- peerDependencies:
- '@swc/core': ^1
- postcss: ^8.4.12
- typescript: '>=4.5.0'
- peerDependenciesMeta:
- '@swc/core':
- optional: true
- postcss:
- optional: true
- typescript:
- optional: true
- dependencies:
- bundle-require: 4.0.2(esbuild@0.19.5)
- cac: 6.7.14
- chokidar: 3.5.3
- debug: 4.3.4
- esbuild: 0.19.5
- execa: 5.1.1
- globby: 11.1.0
- joycon: 3.1.1
- postcss: 8.4.31
- postcss-load-config: 4.0.1(postcss@8.4.31)
- resolve-from: 5.0.0
- rollup: 4.4.1
- source-map: 0.8.0-beta.0
- sucrase: 3.34.0
- tree-kill: 1.2.2
- typescript: 5.2.2
- transitivePeerDependencies:
- - supports-color
- - ts-node
- dev: true
-
/tty-browserify@0.0.1:
resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==}
dev: true
@@ -18637,8 +18581,8 @@ packages:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
dev: true
- /typescript@5.2.2:
- resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==}
+ /typescript@5.3.2:
+ resolution: {integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==}
engines: {node: '>=14.17'}
hasBin: true
@@ -18908,7 +18852,7 @@ packages:
qs: 6.11.2
dev: true
- /use-callback-ref@1.3.0(@types/react@18.2.37)(react@18.2.0):
+ /use-callback-ref@1.3.0(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
engines: {node: '>=10'}
peerDependencies:
@@ -18918,7 +18862,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
tslib: 2.6.2
@@ -18930,7 +18874,7 @@ packages:
react: 18.2.0
dev: false
- /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.37)(react@18.2.0):
+ /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
@@ -18939,11 +18883,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
dev: false
- /use-latest@1.2.1(@types/react@18.2.37)(react@18.2.0):
+ /use-latest@1.2.1(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
peerDependencies:
'@types/react': '*'
@@ -18952,9 +18896,9 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.37)(react@18.2.0)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.38)(react@18.2.0)
dev: false
/use-prefers-color-scheme@1.1.3(react@18.2.0):
@@ -18977,7 +18921,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /use-sidecar@1.1.2(@types/react@18.2.37)(react@18.2.0):
+ /use-sidecar@1.1.2(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -18987,7 +18931,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
detect-node-es: 1.1.0
react: 18.2.0
tslib: 2.6.2
@@ -19120,8 +19064,8 @@ packages:
d3-timer: 3.0.1
dev: false
- /vite@5.0.0:
- resolution: {integrity: sha512-ESJVM59mdyGpsiNAeHQOR/0fqNoOyWPYesFto8FFZugfmhdHx8Fzd8sF3Q/xkVhZsyOxHfdM7ieiVAorI9RjFw==}
+ /vite@5.0.2:
+ resolution: {integrity: sha512-6CCq1CAJCNM1ya2ZZA7+jS2KgnhbzvxakmlIjN24cF/PXhRMzpM/z8QgsVJA/Dm5fWUWnVEsmtBoMhmerPxT0g==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -19740,7 +19684,7 @@ packages:
fast-json-stable-stringify: 2.1.0
pretty-bytes: 5.6.0
upath: 1.2.0
- webpack: 5.89.0(esbuild@0.18.20)
+ webpack: 5.89.0
webpack-sources: 1.4.3
workbox-build: 7.0.0
transitivePeerDependencies:
@@ -19938,11 +19882,6 @@ packages:
engines: {node: '>=10'}
dev: true
- /yargs-parser@21.1.1:
- resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
- engines: {node: '>=12'}
- dev: true
-
/yargs@16.2.0:
resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
engines: {node: '>=10'}
@@ -19956,19 +19895,6 @@ packages:
yargs-parser: 20.2.9
dev: true
- /yargs@17.7.2:
- resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
- engines: {node: '>=12'}
- dependencies:
- cliui: 8.0.1
- escalade: 3.1.1
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- string-width: 4.2.3
- y18n: 5.0.8
- yargs-parser: 21.1.1
- dev: true
-
/yauzl@2.10.0:
resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==}
dependencies:
@@ -20004,7 +19930,7 @@ packages:
resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
dev: true
- /zustand@4.4.6(@types/react@18.2.37)(react@18.2.0):
+ /zustand@4.4.6(@types/react@18.2.38)(react@18.2.0):
resolution: {integrity: sha512-Rb16eW55gqL4W2XZpJh0fnrATxYEG3Apl2gfHTyDSE965x/zxslTikpNch0JgNjJA9zK6gEFW8Fl6d1rTZaqgg==}
engines: {node: '>=12.7.0'}
peerDependencies:
@@ -20019,7 +19945,7 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.37
+ '@types/react': 18.2.38
react: 18.2.0
use-sync-external-store: 1.2.0(react@18.2.0)
dev: false
diff --git a/web/signalco.code-workspace b/web/signalco.code-workspace
index 0f5366051c..006abc4d13 100644
--- a/web/signalco.code-workspace
+++ b/web/signalco.code-workspace
@@ -71,6 +71,10 @@
{
"name": "📦 @signalco/ui-icons",
"path": "packages/ui-icons"
+ },
+ {
+ "name": "📦 @signalco/ui-notifications",
+ "path": "packages/ui-notifications"
}
],
"settings": {