create-tauri-ui 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -11
- package/dist/index.mjs +26 -26
- package/package.json +3 -2
- package/templates/.shared/app-icon.png +0 -0
- package/templates/.shared/src-tauri/Cargo.lock +270 -139
- package/templates/.shared/src-tauri/Cargo.toml +39 -36
- package/templates/.shared/src-tauri/src/main.rs +3 -0
- package/templates/.shared/src-tauri/tauri.conf.json +71 -79
- package/templates/next/components.json +15 -15
- package/templates/next/next.config.js +14 -14
- package/templates/next/package.json +18 -14
- package/templates/next/pnpm-lock.yaml +608 -566
- package/templates/next/src/app/examples/cards/components/date-picker.tsx +3 -1
- package/templates/next/src/app/examples/cards/components/github-card.tsx +2 -0
- package/templates/next/src/app/examples/cards/components/notifications.tsx +2 -0
- package/templates/next/src/app/examples/cards/components/payment-method.tsx +3 -1
- package/templates/next/src/app/examples/cards/components/team-members.tsx +3 -5
- package/templates/next/src/app/examples/forms/page.tsx +1 -1
- package/templates/next/src/app/layout.tsx +47 -47
- package/templates/next/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
- package/templates/next/src/components/about-dialog.tsx +111 -0
- package/templates/next/src/components/icons.tsx +156 -154
- package/templates/next/src/components/menu-mode-toggle.tsx +47 -46
- package/templates/next/src/components/menu.tsx +223 -259
- package/templates/next/src/components/page-header.tsx +2 -0
- package/templates/next/src/components/ui/accordion.tsx +60 -60
- package/templates/next/src/components/ui/alert-dialog.tsx +145 -145
- package/templates/next/src/components/ui/alert.tsx +59 -59
- package/templates/next/src/components/ui/aspect-ratio.tsx +7 -7
- package/templates/next/src/components/ui/avatar.tsx +50 -50
- package/templates/next/src/components/ui/badge.tsx +36 -36
- package/templates/next/src/components/ui/button.tsx +56 -56
- package/templates/next/src/components/ui/calendar.tsx +64 -64
- package/templates/next/src/components/ui/card.tsx +79 -79
- package/templates/next/src/components/ui/checkbox.tsx +30 -30
- package/templates/next/src/components/ui/collapsible.tsx +11 -11
- package/templates/next/src/components/ui/command.tsx +155 -155
- package/templates/next/src/components/ui/context-menu.tsx +200 -200
- package/templates/next/src/components/ui/dialog.tsx +123 -123
- package/templates/next/src/components/ui/dropdown-menu.tsx +200 -200
- package/templates/next/src/components/ui/form.tsx +176 -176
- package/templates/next/src/components/ui/hover-card.tsx +29 -29
- package/templates/next/src/components/ui/input.tsx +25 -25
- package/templates/next/src/components/ui/label.tsx +26 -26
- package/templates/next/src/components/ui/menubar.tsx +236 -236
- package/templates/next/src/components/ui/navigation-menu.tsx +128 -128
- package/templates/next/src/components/ui/popover.tsx +31 -31
- package/templates/next/src/components/ui/progress.tsx +28 -28
- package/templates/next/src/components/ui/radio-group.tsx +44 -44
- package/templates/next/src/components/ui/scroll-area.tsx +48 -48
- package/templates/next/src/components/ui/select.tsx +121 -121
- package/templates/next/src/components/ui/separator.tsx +31 -31
- package/templates/next/src/components/ui/sheet.tsx +144 -144
- package/templates/next/src/components/ui/skeleton.tsx +15 -15
- package/templates/next/src/components/ui/slider.tsx +28 -28
- package/templates/next/src/components/ui/switch.tsx +29 -29
- package/templates/next/src/components/ui/table.tsx +114 -114
- package/templates/next/src/components/ui/tabs.tsx +55 -55
- package/templates/next/src/components/ui/textarea.tsx +24 -24
- package/templates/next/src/components/ui/toast.tsx +127 -127
- package/templates/next/src/components/ui/toaster.tsx +35 -35
- package/templates/next/src/components/ui/toggle.tsx +45 -45
- package/templates/next/src/components/ui/tooltip.tsx +30 -30
- package/templates/next/src/components/ui/use-toast.ts +192 -192
- package/templates/next/src/lib/utils.ts +6 -6
- package/templates/next/src/styles/globals.css +88 -86
- package/templates/next/src-tauri/Cargo.lock +3832 -3701
- package/templates/next/src-tauri/Cargo.toml +4 -1
- package/templates/next/src-tauri/src/main.rs +22 -19
- package/templates/next/src-tauri/tauri.conf.json +71 -79
- package/templates/next/tailwind.config.js +77 -77
- package/templates/next/tsconfig.json +34 -34
- package/templates/sveltekit/.github/workflows/release.yml +108 -108
- package/templates/sveltekit/package.json +22 -22
- package/templates/sveltekit/pnpm-lock.yaml +1069 -691
- package/templates/sveltekit/src/app.html +1 -1
- package/templates/sveltekit/src-tauri/Cargo.lock +136 -136
- package/templates/sveltekit/src-tauri/tauri.conf.json +2 -10
- package/templates/sveltekit/static/favicon.ico +0 -0
- package/templates/sveltekit/vite.config.js +10 -6
- package/templates/vite/components.json +15 -15
- package/templates/vite/index.html +1 -1
- package/templates/vite/package.json +20 -13
- package/templates/vite/pnpm-lock.yaml +598 -530
- package/templates/vite/src/assets/Inter-VariableFont_slnt,wght.ttf +0 -0
- package/templates/vite/src/components/about-dialog.tsx +101 -0
- package/templates/vite/src/components/icons.tsx +2 -2
- package/templates/vite/src/components/menu-mode-toggle.tsx +4 -3
- package/templates/vite/src/components/menu.tsx +177 -197
- package/templates/vite/src/components/ui/accordion.tsx +1 -3
- package/templates/vite/src/components/ui/alert-dialog.tsx +3 -10
- package/templates/vite/src/components/ui/alert.tsx +3 -5
- package/templates/vite/src/components/ui/aspect-ratio.tsx +0 -2
- package/templates/vite/src/components/ui/avatar.tsx +0 -2
- package/templates/vite/src/components/ui/badge.tsx +5 -5
- package/templates/vite/src/components/ui/button.tsx +15 -10
- package/templates/vite/src/components/ui/calendar.tsx +0 -2
- package/templates/vite/src/components/ui/card.tsx +1 -3
- package/templates/vite/src/components/ui/checkbox.tsx +2 -4
- package/templates/vite/src/components/ui/collapsible.tsx +0 -2
- package/templates/vite/src/components/ui/command.tsx +2 -4
- package/templates/vite/src/components/ui/context-menu.tsx +6 -8
- package/templates/vite/src/components/ui/dialog.tsx +4 -11
- package/templates/vite/src/components/ui/dropdown-menu.tsx +6 -8
- package/templates/vite/src/components/ui/form.tsx +176 -0
- package/templates/vite/src/components/ui/hover-card.tsx +1 -3
- package/templates/vite/src/components/ui/input.tsx +1 -3
- package/templates/vite/src/components/ui/label.tsx +1 -3
- package/templates/vite/src/components/ui/menubar.tsx +7 -9
- package/templates/vite/src/components/ui/navigation-menu.tsx +2 -4
- package/templates/vite/src/components/ui/popover.tsx +1 -3
- package/templates/vite/src/components/ui/progress.tsx +0 -2
- package/templates/vite/src/components/ui/radio-group.tsx +2 -4
- package/templates/vite/src/components/ui/scroll-area.tsx +0 -2
- package/templates/vite/src/components/ui/select.tsx +4 -5
- package/templates/vite/src/components/ui/separator.tsx +0 -2
- package/templates/vite/src/components/ui/sheet.tsx +22 -110
- package/templates/vite/src/components/ui/skeleton.tsx +0 -2
- package/templates/vite/src/components/ui/slider.tsx +0 -2
- package/templates/vite/src/components/ui/switch.tsx +1 -3
- package/templates/vite/src/components/ui/table.tsx +1 -1
- package/templates/vite/src/components/ui/tabs.tsx +1 -3
- package/templates/vite/src/components/ui/textarea.tsx +1 -3
- package/templates/vite/src/components/ui/toast.tsx +6 -8
- package/templates/vite/src/components/ui/toaster.tsx +0 -2
- package/templates/vite/src/components/ui/toggle.tsx +3 -5
- package/templates/vite/src/components/ui/tooltip.tsx +1 -3
- package/templates/vite/src/components/ui/use-toast.ts +5 -4
- package/templates/vite/src/styles/globals.css +5 -3
- package/templates/vite/src-tauri/Cargo.lock +270 -139
- package/templates/vite/src-tauri/Cargo.toml +4 -1
- package/templates/vite/src-tauri/src/main.rs +8 -2
- package/templates/vite/src-tauri/tauri.conf.json +71 -79
- package/templates/vite/vite.config.ts +2 -2
- package/templates/next/src/assets/Inter.var.woff2 +0 -0
- package/templates/vite/src/assets/Inter.var.woff2 +0 -0
- package/templates/viteuno/.github/workflows/release.yml +0 -108
- package/templates/viteuno/.vscode/extensions.json +0 -3
- package/templates/viteuno/README.md +0 -1
- package/templates/viteuno/app-icon.png +0 -0
- package/templates/viteuno/components.json +0 -16
- package/templates/viteuno/index.html +0 -16
- package/templates/viteuno/package.json +0 -73
- package/templates/viteuno/pnpm-lock.yaml +0 -5298
- package/templates/viteuno/preset.shadcn.ts +0 -160
- package/templates/viteuno/prettier.config.cjs +0 -34
- package/templates/viteuno/public/avatars/01.png +0 -0
- package/templates/viteuno/public/avatars/02.png +0 -0
- package/templates/viteuno/public/avatars/03.png +0 -0
- package/templates/viteuno/public/avatars/04.png +0 -0
- package/templates/viteuno/public/avatars/05.png +0 -0
- package/templates/viteuno/src/App.tsx +0 -39
- package/templates/viteuno/src/assets/Inter.var.woff2 +0 -0
- package/templates/viteuno/src/components/icons.tsx +0 -154
- package/templates/viteuno/src/components/menu-mode-toggle.tsx +0 -46
- package/templates/viteuno/src/components/menu.tsx +0 -232
- package/templates/viteuno/src/components/tailwind-indicator.tsx +0 -18
- package/templates/viteuno/src/components/theme-provider.tsx +0 -9
- package/templates/viteuno/src/components/ui/accordion.tsx +0 -60
- package/templates/viteuno/src/components/ui/alert-dialog.tsx +0 -150
- package/templates/viteuno/src/components/ui/alert.tsx +0 -61
- package/templates/viteuno/src/components/ui/aspect-ratio.tsx +0 -7
- package/templates/viteuno/src/components/ui/avatar.tsx +0 -50
- package/templates/viteuno/src/components/ui/badge.tsx +0 -36
- package/templates/viteuno/src/components/ui/button.tsx +0 -51
- package/templates/viteuno/src/components/ui/calendar.tsx +0 -64
- package/templates/viteuno/src/components/ui/card.tsx +0 -81
- package/templates/viteuno/src/components/ui/checkbox.tsx +0 -30
- package/templates/viteuno/src/components/ui/collapsible.tsx +0 -11
- package/templates/viteuno/src/components/ui/command.tsx +0 -155
- package/templates/viteuno/src/components/ui/context-menu.tsx +0 -200
- package/templates/viteuno/src/components/ui/dialog.tsx +0 -128
- package/templates/viteuno/src/components/ui/dropdown-menu.tsx +0 -200
- package/templates/viteuno/src/components/ui/hover-card.tsx +0 -29
- package/templates/viteuno/src/components/ui/index.ts +0 -0
- package/templates/viteuno/src/components/ui/input.tsx +0 -27
- package/templates/viteuno/src/components/ui/label.tsx +0 -26
- package/templates/viteuno/src/components/ui/menubar.tsx +0 -236
- package/templates/viteuno/src/components/ui/navigation-menu.tsx +0 -130
- package/templates/viteuno/src/components/ui/popover.tsx +0 -31
- package/templates/viteuno/src/components/ui/progress.tsx +0 -28
- package/templates/viteuno/src/components/ui/radio-group.tsx +0 -44
- package/templates/viteuno/src/components/ui/scroll-area.tsx +0 -48
- package/templates/viteuno/src/components/ui/select.tsx +0 -120
- package/templates/viteuno/src/components/ui/separator.tsx +0 -31
- package/templates/viteuno/src/components/ui/sheet.tsx +0 -230
- package/templates/viteuno/src/components/ui/skeleton.tsx +0 -17
- package/templates/viteuno/src/components/ui/slider.tsx +0 -28
- package/templates/viteuno/src/components/ui/switch.tsx +0 -29
- package/templates/viteuno/src/components/ui/table.tsx +0 -114
- package/templates/viteuno/src/components/ui/tabs.tsx +0 -55
- package/templates/viteuno/src/components/ui/textarea.tsx +0 -26
- package/templates/viteuno/src/components/ui/toast.tsx +0 -129
- package/templates/viteuno/src/components/ui/toaster.tsx +0 -35
- package/templates/viteuno/src/components/ui/toggle.tsx +0 -45
- package/templates/viteuno/src/components/ui/tooltip.tsx +0 -30
- package/templates/viteuno/src/components/ui/use-toast.ts +0 -191
- package/templates/viteuno/src/dashboard/components/date-range-picker.tsx +0 -66
- package/templates/viteuno/src/dashboard/components/main-nav.tsx +0 -38
- package/templates/viteuno/src/dashboard/components/overview.tsx +0 -78
- package/templates/viteuno/src/dashboard/components/recent-sales.tsx +0 -67
- package/templates/viteuno/src/dashboard/components/search.tsx +0 -13
- package/templates/viteuno/src/dashboard/components/team-switcher.tsx +0 -205
- package/templates/viteuno/src/dashboard/components/user-nav.tsx +0 -67
- package/templates/viteuno/src/dashboard/page.tsx +0 -140
- package/templates/viteuno/src/lib/utils.ts +0 -19
- package/templates/viteuno/src/main.tsx +0 -14
- package/templates/viteuno/src/styles/globals.css +0 -4
- package/templates/viteuno/src/vite-env.d.ts +0 -1
- package/templates/viteuno/src-tauri/Cargo.lock +0 -3701
- package/templates/viteuno/src-tauri/Cargo.toml +0 -36
- package/templates/viteuno/src-tauri/build.rs +0 -3
- package/templates/viteuno/src-tauri/icons/128x128.png +0 -0
- package/templates/viteuno/src-tauri/icons/128x128@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/32x32.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square107x107Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square142x142Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square150x150Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square284x284Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square30x30Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square310x310Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square44x44Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square71x71Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/Square89x89Logo.png +0 -0
- package/templates/viteuno/src-tauri/icons/StoreLogo.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_foreground.png +0 -0
- package/templates/viteuno/src-tauri/icons/android/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/viteuno/src-tauri/icons/icon.icns +0 -0
- package/templates/viteuno/src-tauri/icons/icon.ico +0 -0
- package/templates/viteuno/src-tauri/icons/icon.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-20x20@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-29x29@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x-1.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-40x40@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-512@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-60x60@3x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@1x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-76x76@2x.png +0 -0
- package/templates/viteuno/src-tauri/icons/ios/AppIcon-83.5x83.5@2x.png +0 -0
- package/templates/viteuno/src-tauri/src/main.rs +0 -16
- package/templates/viteuno/src-tauri/tauri.conf.json +0 -79
- package/templates/viteuno/tsconfig.json +0 -26
- package/templates/viteuno/tsconfig.node.json +0 -9
- package/templates/viteuno/uno.config.ts +0 -111
- package/templates/viteuno/vite.config.ts +0 -33
- /package/templates/next/src/app/examples/forms/{profile-form.tsx → components/profile-form.tsx} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
lockfileVersion: '6.
|
|
1
|
+
lockfileVersion: '6.0'
|
|
2
2
|
|
|
3
3
|
settings:
|
|
4
4
|
autoInstallPeers: true
|
|
@@ -10,130 +10,139 @@ dependencies:
|
|
|
10
10
|
version: 8.0.2
|
|
11
11
|
'@hookform/resolvers':
|
|
12
12
|
specifier: ^3.1.1
|
|
13
|
-
version: 3.1.1(react-hook-form@7.
|
|
13
|
+
version: 3.1.1(react-hook-form@7.45.2)
|
|
14
14
|
'@radix-ui/react-accessible-icon':
|
|
15
15
|
specifier: ^1.0.3
|
|
16
|
-
version: 1.0.3(@types/react-dom@18.2.
|
|
16
|
+
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
17
17
|
'@radix-ui/react-accordion':
|
|
18
18
|
specifier: ^1.1.2
|
|
19
|
-
version: 1.1.2(@types/react-dom@18.2.
|
|
19
|
+
version: 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
20
20
|
'@radix-ui/react-alert-dialog':
|
|
21
21
|
specifier: ^1.0.4
|
|
22
|
-
version: 1.0.4(@types/react-dom@18.2.
|
|
22
|
+
version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
23
23
|
'@radix-ui/react-aspect-ratio':
|
|
24
24
|
specifier: ^1.0.3
|
|
25
|
-
version: 1.0.3(@types/react-dom@18.2.
|
|
25
|
+
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
26
26
|
'@radix-ui/react-avatar':
|
|
27
27
|
specifier: ^1.0.3
|
|
28
|
-
version: 1.0.3(@types/react-dom@18.2.
|
|
28
|
+
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
29
29
|
'@radix-ui/react-checkbox':
|
|
30
30
|
specifier: ^1.0.4
|
|
31
|
-
version: 1.0.4(@types/react-dom@18.2.
|
|
31
|
+
version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
32
32
|
'@radix-ui/react-collapsible':
|
|
33
33
|
specifier: ^1.0.3
|
|
34
|
-
version: 1.0.3(@types/react-dom@18.2.
|
|
34
|
+
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
35
35
|
'@radix-ui/react-context-menu':
|
|
36
36
|
specifier: ^2.1.4
|
|
37
|
-
version: 2.1.4(@types/react-dom@18.2.
|
|
37
|
+
version: 2.1.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
38
38
|
'@radix-ui/react-dialog':
|
|
39
39
|
specifier: ^1.0.4
|
|
40
|
-
version: 1.0.4(@types/react-dom@18.2.
|
|
40
|
+
version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
41
41
|
'@radix-ui/react-dropdown-menu':
|
|
42
42
|
specifier: ^2.0.5
|
|
43
|
-
version: 2.0.5(@types/react-dom@18.2.
|
|
43
|
+
version: 2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
44
44
|
'@radix-ui/react-hover-card':
|
|
45
45
|
specifier: ^1.0.6
|
|
46
|
-
version: 1.0.6(@types/react-dom@18.2.
|
|
46
|
+
version: 1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
47
47
|
'@radix-ui/react-icons':
|
|
48
48
|
specifier: ^1.3.0
|
|
49
49
|
version: 1.3.0(react@18.2.0)
|
|
50
50
|
'@radix-ui/react-label':
|
|
51
51
|
specifier: ^2.0.2
|
|
52
|
-
version: 2.0.2(@types/react-dom@18.2.
|
|
52
|
+
version: 2.0.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
53
53
|
'@radix-ui/react-menubar':
|
|
54
54
|
specifier: ^1.0.3
|
|
55
|
-
version: 1.0.3(@types/react-dom@18.2.
|
|
55
|
+
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
56
56
|
'@radix-ui/react-navigation-menu':
|
|
57
57
|
specifier: ^1.1.3
|
|
58
|
-
version: 1.1.3(@types/react-dom@18.2.
|
|
58
|
+
version: 1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
59
59
|
'@radix-ui/react-popover':
|
|
60
60
|
specifier: ^1.0.6
|
|
61
|
-
version: 1.0.6(@types/react-dom@18.2.
|
|
61
|
+
version: 1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
62
62
|
'@radix-ui/react-progress':
|
|
63
63
|
specifier: ^1.0.3
|
|
64
|
-
version: 1.0.3(@types/react-dom@18.2.
|
|
64
|
+
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
65
65
|
'@radix-ui/react-radio-group':
|
|
66
66
|
specifier: ^1.1.3
|
|
67
|
-
version: 1.1.3(@types/react-dom@18.2.
|
|
67
|
+
version: 1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
68
68
|
'@radix-ui/react-scroll-area':
|
|
69
69
|
specifier: ^1.0.4
|
|
70
|
-
version: 1.0.4(@types/react-dom@18.2.
|
|
70
|
+
version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
71
71
|
'@radix-ui/react-select':
|
|
72
72
|
specifier: ^1.2.2
|
|
73
|
-
version: 1.2.2(@types/react-dom@18.2.
|
|
73
|
+
version: 1.2.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
74
74
|
'@radix-ui/react-separator':
|
|
75
75
|
specifier: ^1.0.3
|
|
76
|
-
version: 1.0.3(@types/react-dom@18.2.
|
|
76
|
+
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
77
77
|
'@radix-ui/react-slider':
|
|
78
78
|
specifier: ^1.1.2
|
|
79
|
-
version: 1.1.2(@types/react-dom@18.2.
|
|
79
|
+
version: 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
80
80
|
'@radix-ui/react-slot':
|
|
81
81
|
specifier: ^1.0.2
|
|
82
|
-
version: 1.0.2(@types/react@18.2.
|
|
82
|
+
version: 1.0.2(@types/react@18.2.18)(react@18.2.0)
|
|
83
83
|
'@radix-ui/react-switch':
|
|
84
84
|
specifier: ^1.0.3
|
|
85
|
-
version: 1.0.3(@types/react-dom@18.2.
|
|
85
|
+
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
86
86
|
'@radix-ui/react-tabs':
|
|
87
87
|
specifier: ^1.0.4
|
|
88
|
-
version: 1.0.4(@types/react-dom@18.2.
|
|
88
|
+
version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
89
89
|
'@radix-ui/react-toast':
|
|
90
90
|
specifier: ^1.1.4
|
|
91
|
-
version: 1.1.4(@types/react-dom@18.2.
|
|
91
|
+
version: 1.1.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
92
92
|
'@radix-ui/react-toggle':
|
|
93
93
|
specifier: ^1.0.3
|
|
94
|
-
version: 1.0.3(@types/react-dom@18.2.
|
|
94
|
+
version: 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
95
95
|
'@radix-ui/react-toggle-group':
|
|
96
96
|
specifier: ^1.0.4
|
|
97
|
-
version: 1.0.4(@types/react-dom@18.2.
|
|
97
|
+
version: 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
98
98
|
'@radix-ui/react-tooltip':
|
|
99
99
|
specifier: ^1.0.6
|
|
100
|
-
version: 1.0.6(@types/react-dom@18.2.
|
|
100
|
+
version: 1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
101
101
|
'@tailwindcss/line-clamp':
|
|
102
102
|
specifier: ^0.4.4
|
|
103
|
-
version: 0.4.4(tailwindcss@3.3.
|
|
103
|
+
version: 0.4.4(tailwindcss@3.3.3)
|
|
104
104
|
'@tanstack/react-table':
|
|
105
105
|
specifier: ^8.9.3
|
|
106
106
|
version: 8.9.3(react-dom@18.2.0)(react@18.2.0)
|
|
107
107
|
'@tauri-apps/api':
|
|
108
108
|
specifier: 2.0.0-alpha.5
|
|
109
109
|
version: 2.0.0-alpha.5
|
|
110
|
+
'@tauri-apps/plugin-app':
|
|
111
|
+
specifier: 2.0.0-alpha.0
|
|
112
|
+
version: 2.0.0-alpha.0
|
|
113
|
+
'@tauri-apps/plugin-os':
|
|
114
|
+
specifier: 2.0.0-alpha.0
|
|
115
|
+
version: 2.0.0-alpha.0
|
|
116
|
+
'@tauri-apps/plugin-shell':
|
|
117
|
+
specifier: 2.0.0-alpha.0
|
|
118
|
+
version: 2.0.0-alpha.0
|
|
110
119
|
'@tauri-apps/plugin-window':
|
|
111
120
|
specifier: 2.0.0-alpha.0
|
|
112
121
|
version: 2.0.0-alpha.0
|
|
113
122
|
class-variance-authority:
|
|
114
|
-
specifier: ^0.
|
|
115
|
-
version: 0.
|
|
123
|
+
specifier: ^0.7.0
|
|
124
|
+
version: 0.7.0
|
|
116
125
|
clsx:
|
|
117
|
-
specifier: ^
|
|
118
|
-
version:
|
|
126
|
+
specifier: ^2.0.0
|
|
127
|
+
version: 2.0.0
|
|
119
128
|
cmdk:
|
|
120
129
|
specifier: ^0.2.0
|
|
121
|
-
version: 0.2.0(@types/react@18.2.
|
|
130
|
+
version: 0.2.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
122
131
|
date-fns:
|
|
123
132
|
specifier: ^2.30.0
|
|
124
133
|
version: 2.30.0
|
|
125
134
|
lucide-react:
|
|
126
|
-
specifier: ^0.
|
|
127
|
-
version: 0.
|
|
135
|
+
specifier: ^0.263.1
|
|
136
|
+
version: 0.263.1(react@18.2.0)
|
|
128
137
|
nanoid:
|
|
129
138
|
specifier: ^4.0.2
|
|
130
139
|
version: 4.0.2
|
|
131
140
|
next:
|
|
132
|
-
specifier: ^13.4.
|
|
133
|
-
version: 13.4.
|
|
141
|
+
specifier: ^13.4.12
|
|
142
|
+
version: 13.4.12(@babel/core@7.22.1)(react-dom@18.2.0)(react@18.2.0)
|
|
134
143
|
next-themes:
|
|
135
144
|
specifier: ^0.2.1
|
|
136
|
-
version: 0.2.1(next@13.4.
|
|
145
|
+
version: 0.2.1(next@13.4.12)(react-dom@18.2.0)(react@18.2.0)
|
|
137
146
|
react:
|
|
138
147
|
specifier: ^18.2.0
|
|
139
148
|
version: 18.2.0
|
|
@@ -144,8 +153,8 @@ dependencies:
|
|
|
144
153
|
specifier: ^18.2.0
|
|
145
154
|
version: 18.2.0(react@18.2.0)
|
|
146
155
|
react-hook-form:
|
|
147
|
-
specifier: 7.
|
|
148
|
-
version: 7.
|
|
156
|
+
specifier: 7.45.2
|
|
157
|
+
version: 7.45.2(react@18.2.0)
|
|
149
158
|
react-wrap-balancer:
|
|
150
159
|
specifier: ^1.0.0
|
|
151
160
|
version: 1.0.0(react@18.2.0)
|
|
@@ -153,49 +162,52 @@ dependencies:
|
|
|
153
162
|
specifier: ^2.7.2
|
|
154
163
|
version: 2.7.2(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
|
|
155
164
|
tailwind-merge:
|
|
156
|
-
specifier: ^1.
|
|
157
|
-
version: 1.
|
|
165
|
+
specifier: ^1.14.0
|
|
166
|
+
version: 1.14.0
|
|
158
167
|
tailwind-scrollbar:
|
|
159
168
|
specifier: ^3.0.4
|
|
160
|
-
version: 3.0.4(tailwindcss@3.3.
|
|
169
|
+
version: 3.0.4(tailwindcss@3.3.3)
|
|
161
170
|
tailwindcss-animate:
|
|
162
171
|
specifier: ^1.0.6
|
|
163
|
-
version: 1.0.6(tailwindcss@3.3.
|
|
172
|
+
version: 1.0.6(tailwindcss@3.3.3)
|
|
173
|
+
tauri-controls:
|
|
174
|
+
specifier: ^0.0.7
|
|
175
|
+
version: 0.0.7(@tauri-apps/plugin-os@2.0.0-alpha.0)(@tauri-apps/plugin-window@2.0.0-alpha.0)(clsx@2.0.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-merge@1.14.0)
|
|
164
176
|
zod:
|
|
165
177
|
specifier: ^3.21.4
|
|
166
178
|
version: 3.21.4
|
|
167
179
|
|
|
168
180
|
devDependencies:
|
|
169
181
|
'@ianvs/prettier-plugin-sort-imports':
|
|
170
|
-
specifier: ^4.0
|
|
171
|
-
version: 4.0
|
|
182
|
+
specifier: ^4.1.0
|
|
183
|
+
version: 4.1.0(prettier@3.0.0)
|
|
172
184
|
'@tauri-apps/cli':
|
|
173
185
|
specifier: 2.0.0-alpha.10
|
|
174
186
|
version: 2.0.0-alpha.10
|
|
175
187
|
'@types/node':
|
|
176
|
-
specifier: ^20.4.
|
|
177
|
-
version: 20.4.
|
|
188
|
+
specifier: ^20.4.5
|
|
189
|
+
version: 20.4.5
|
|
178
190
|
'@types/react':
|
|
179
|
-
specifier: ^18.2.
|
|
180
|
-
version: 18.2.
|
|
191
|
+
specifier: ^18.2.18
|
|
192
|
+
version: 18.2.18
|
|
181
193
|
'@types/react-dom':
|
|
182
|
-
specifier: ^18.2.
|
|
183
|
-
version: 18.2.
|
|
194
|
+
specifier: ^18.2.7
|
|
195
|
+
version: 18.2.7
|
|
184
196
|
autoprefixer:
|
|
185
197
|
specifier: ^10.4.14
|
|
186
|
-
version: 10.4.14(postcss@8.4.
|
|
198
|
+
version: 10.4.14(postcss@8.4.27)
|
|
187
199
|
postcss:
|
|
188
|
-
specifier: ^8.4.
|
|
189
|
-
version: 8.4.
|
|
200
|
+
specifier: ^8.4.27
|
|
201
|
+
version: 8.4.27
|
|
190
202
|
prettier:
|
|
191
203
|
specifier: ^3.0.0
|
|
192
204
|
version: 3.0.0
|
|
193
205
|
prettier-plugin-tailwindcss:
|
|
194
|
-
specifier: ^0.
|
|
195
|
-
version: 0.
|
|
206
|
+
specifier: ^0.4.1
|
|
207
|
+
version: 0.4.1(@ianvs/prettier-plugin-sort-imports@4.1.0)(prettier@3.0.0)
|
|
196
208
|
tailwindcss:
|
|
197
|
-
specifier: ^3.3.
|
|
198
|
-
version: 3.3.
|
|
209
|
+
specifier: ^3.3.3
|
|
210
|
+
version: 3.3.3
|
|
199
211
|
taze:
|
|
200
212
|
specifier: ^0.11.2
|
|
201
213
|
version: 0.11.2
|
|
@@ -436,19 +448,19 @@ packages:
|
|
|
436
448
|
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
|
|
437
449
|
dev: true
|
|
438
450
|
|
|
439
|
-
/@hookform/resolvers@3.1.1(react-hook-form@7.
|
|
451
|
+
/@hookform/resolvers@3.1.1(react-hook-form@7.45.2):
|
|
440
452
|
resolution: {integrity: sha512-tS16bAUkqjITNSvbJuO1x7MXbn7Oe8ZziDTJdA9mMvsoYthnOOiznOTGBYwbdlYBgU+tgpI/BtTU3paRbCuSlg==}
|
|
441
453
|
peerDependencies:
|
|
442
454
|
react-hook-form: ^7.0.0
|
|
443
455
|
dependencies:
|
|
444
|
-
react-hook-form: 7.
|
|
456
|
+
react-hook-form: 7.45.2(react@18.2.0)
|
|
445
457
|
dev: false
|
|
446
458
|
|
|
447
|
-
/@ianvs/prettier-plugin-sort-imports@4.0
|
|
448
|
-
resolution: {integrity: sha512-
|
|
459
|
+
/@ianvs/prettier-plugin-sort-imports@4.1.0(prettier@3.0.0):
|
|
460
|
+
resolution: {integrity: sha512-IAXeTLU24k6mRPa6mFbW1qZJ/j0m3OeH44wyijWyr+YqqdNtBnfHxAntOAATS9iDfrT01NesKGsdzqnXdDQa/A==}
|
|
449
461
|
peerDependencies:
|
|
450
462
|
'@vue/compiler-sfc': '>=3.0.0'
|
|
451
|
-
prettier: 2
|
|
463
|
+
prettier: 2 || 3
|
|
452
464
|
peerDependenciesMeta:
|
|
453
465
|
'@vue/compiler-sfc':
|
|
454
466
|
optional: true
|
|
@@ -459,7 +471,7 @@ packages:
|
|
|
459
471
|
'@babel/traverse': 7.22.1
|
|
460
472
|
'@babel/types': 7.22.0
|
|
461
473
|
prettier: 3.0.0
|
|
462
|
-
semver: 7.5.
|
|
474
|
+
semver: 7.5.3
|
|
463
475
|
transitivePeerDependencies:
|
|
464
476
|
- supports-color
|
|
465
477
|
dev: true
|
|
@@ -504,12 +516,12 @@ packages:
|
|
|
504
516
|
'@jridgewell/resolve-uri': 3.1.0
|
|
505
517
|
'@jridgewell/sourcemap-codec': 1.4.14
|
|
506
518
|
|
|
507
|
-
/@next/env@13.4.
|
|
508
|
-
resolution: {integrity: sha512-
|
|
519
|
+
/@next/env@13.4.12:
|
|
520
|
+
resolution: {integrity: sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ==}
|
|
509
521
|
dev: false
|
|
510
522
|
|
|
511
|
-
/@next/swc-darwin-arm64@13.4.
|
|
512
|
-
resolution: {integrity: sha512-
|
|
523
|
+
/@next/swc-darwin-arm64@13.4.12:
|
|
524
|
+
resolution: {integrity: sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg==}
|
|
513
525
|
engines: {node: '>= 10'}
|
|
514
526
|
cpu: [arm64]
|
|
515
527
|
os: [darwin]
|
|
@@ -517,8 +529,8 @@ packages:
|
|
|
517
529
|
dev: false
|
|
518
530
|
optional: true
|
|
519
531
|
|
|
520
|
-
/@next/swc-darwin-x64@13.4.
|
|
521
|
-
resolution: {integrity: sha512-
|
|
532
|
+
/@next/swc-darwin-x64@13.4.12:
|
|
533
|
+
resolution: {integrity: sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ==}
|
|
522
534
|
engines: {node: '>= 10'}
|
|
523
535
|
cpu: [x64]
|
|
524
536
|
os: [darwin]
|
|
@@ -526,8 +538,8 @@ packages:
|
|
|
526
538
|
dev: false
|
|
527
539
|
optional: true
|
|
528
540
|
|
|
529
|
-
/@next/swc-linux-arm64-gnu@13.4.
|
|
530
|
-
resolution: {integrity: sha512-
|
|
541
|
+
/@next/swc-linux-arm64-gnu@13.4.12:
|
|
542
|
+
resolution: {integrity: sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig==}
|
|
531
543
|
engines: {node: '>= 10'}
|
|
532
544
|
cpu: [arm64]
|
|
533
545
|
os: [linux]
|
|
@@ -535,8 +547,8 @@ packages:
|
|
|
535
547
|
dev: false
|
|
536
548
|
optional: true
|
|
537
549
|
|
|
538
|
-
/@next/swc-linux-arm64-musl@13.4.
|
|
539
|
-
resolution: {integrity: sha512-
|
|
550
|
+
/@next/swc-linux-arm64-musl@13.4.12:
|
|
551
|
+
resolution: {integrity: sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g==}
|
|
540
552
|
engines: {node: '>= 10'}
|
|
541
553
|
cpu: [arm64]
|
|
542
554
|
os: [linux]
|
|
@@ -544,8 +556,8 @@ packages:
|
|
|
544
556
|
dev: false
|
|
545
557
|
optional: true
|
|
546
558
|
|
|
547
|
-
/@next/swc-linux-x64-gnu@13.4.
|
|
548
|
-
resolution: {integrity: sha512-
|
|
559
|
+
/@next/swc-linux-x64-gnu@13.4.12:
|
|
560
|
+
resolution: {integrity: sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg==}
|
|
549
561
|
engines: {node: '>= 10'}
|
|
550
562
|
cpu: [x64]
|
|
551
563
|
os: [linux]
|
|
@@ -553,8 +565,8 @@ packages:
|
|
|
553
565
|
dev: false
|
|
554
566
|
optional: true
|
|
555
567
|
|
|
556
|
-
/@next/swc-linux-x64-musl@13.4.
|
|
557
|
-
resolution: {integrity: sha512-
|
|
568
|
+
/@next/swc-linux-x64-musl@13.4.12:
|
|
569
|
+
resolution: {integrity: sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ==}
|
|
558
570
|
engines: {node: '>= 10'}
|
|
559
571
|
cpu: [x64]
|
|
560
572
|
os: [linux]
|
|
@@ -562,8 +574,8 @@ packages:
|
|
|
562
574
|
dev: false
|
|
563
575
|
optional: true
|
|
564
576
|
|
|
565
|
-
/@next/swc-win32-arm64-msvc@13.4.
|
|
566
|
-
resolution: {integrity: sha512-
|
|
577
|
+
/@next/swc-win32-arm64-msvc@13.4.12:
|
|
578
|
+
resolution: {integrity: sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA==}
|
|
567
579
|
engines: {node: '>= 10'}
|
|
568
580
|
cpu: [arm64]
|
|
569
581
|
os: [win32]
|
|
@@ -571,8 +583,8 @@ packages:
|
|
|
571
583
|
dev: false
|
|
572
584
|
optional: true
|
|
573
585
|
|
|
574
|
-
/@next/swc-win32-ia32-msvc@13.4.
|
|
575
|
-
resolution: {integrity: sha512-
|
|
586
|
+
/@next/swc-win32-ia32-msvc@13.4.12:
|
|
587
|
+
resolution: {integrity: sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww==}
|
|
576
588
|
engines: {node: '>= 10'}
|
|
577
589
|
cpu: [ia32]
|
|
578
590
|
os: [win32]
|
|
@@ -580,8 +592,8 @@ packages:
|
|
|
580
592
|
dev: false
|
|
581
593
|
optional: true
|
|
582
594
|
|
|
583
|
-
/@next/swc-win32-x64-msvc@13.4.
|
|
584
|
-
resolution: {integrity: sha512-
|
|
595
|
+
/@next/swc-win32-x64-msvc@13.4.12:
|
|
596
|
+
resolution: {integrity: sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA==}
|
|
585
597
|
engines: {node: '>= 10'}
|
|
586
598
|
cpu: [x64]
|
|
587
599
|
os: [win32]
|
|
@@ -736,7 +748,7 @@ packages:
|
|
|
736
748
|
'@babel/runtime': 7.21.0
|
|
737
749
|
dev: false
|
|
738
750
|
|
|
739
|
-
/@radix-ui/react-accessible-icon@1.0.3(@types/react-dom@18.2.
|
|
751
|
+
/@radix-ui/react-accessible-icon@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
740
752
|
resolution: {integrity: sha512-duVGKeWPSUILr/MdlPxV+GeULTc2rS1aihGdQ3N2qCUPMgxYLxvAsHJM3mCVLF8d5eK+ympmB22mb1F3a5biNw==}
|
|
741
753
|
peerDependencies:
|
|
742
754
|
'@types/react': '*'
|
|
@@ -750,14 +762,14 @@ packages:
|
|
|
750
762
|
optional: true
|
|
751
763
|
dependencies:
|
|
752
764
|
'@babel/runtime': 7.21.0
|
|
753
|
-
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.
|
|
754
|
-
'@types/react': 18.2.
|
|
755
|
-
'@types/react-dom': 18.2.
|
|
765
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
766
|
+
'@types/react': 18.2.18
|
|
767
|
+
'@types/react-dom': 18.2.7
|
|
756
768
|
react: 18.2.0
|
|
757
769
|
react-dom: 18.2.0(react@18.2.0)
|
|
758
770
|
dev: false
|
|
759
771
|
|
|
760
|
-
/@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.
|
|
772
|
+
/@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
761
773
|
resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==}
|
|
762
774
|
peerDependencies:
|
|
763
775
|
'@types/react': '*'
|
|
@@ -772,21 +784,21 @@ packages:
|
|
|
772
784
|
dependencies:
|
|
773
785
|
'@babel/runtime': 7.21.0
|
|
774
786
|
'@radix-ui/primitive': 1.0.1
|
|
775
|
-
'@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.
|
|
776
|
-
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.
|
|
777
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
778
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
779
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
780
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
781
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
782
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
783
|
-
'@types/react': 18.2.
|
|
784
|
-
'@types/react-dom': 18.2.
|
|
787
|
+
'@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
788
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
789
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
790
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
791
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
792
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
793
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
794
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
795
|
+
'@types/react': 18.2.18
|
|
796
|
+
'@types/react-dom': 18.2.7
|
|
785
797
|
react: 18.2.0
|
|
786
798
|
react-dom: 18.2.0(react@18.2.0)
|
|
787
799
|
dev: false
|
|
788
800
|
|
|
789
|
-
/@radix-ui/react-alert-dialog@1.0.4(@types/react-dom@18.2.
|
|
801
|
+
/@radix-ui/react-alert-dialog@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
790
802
|
resolution: {integrity: sha512-jbfBCRlKYlhbitueOAv7z74PXYeIQmWpKwm3jllsdkw7fGWNkxqP3v0nY9WmOzcPqpQuoorNtvViBgL46n5gVg==}
|
|
791
803
|
peerDependencies:
|
|
792
804
|
'@types/react': '*'
|
|
@@ -801,18 +813,18 @@ packages:
|
|
|
801
813
|
dependencies:
|
|
802
814
|
'@babel/runtime': 7.21.0
|
|
803
815
|
'@radix-ui/primitive': 1.0.1
|
|
804
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
805
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
806
|
-
'@radix-ui/react-dialog': 1.0.4(@types/react-dom@18.2.
|
|
807
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
808
|
-
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.
|
|
809
|
-
'@types/react': 18.2.
|
|
810
|
-
'@types/react-dom': 18.2.
|
|
816
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
817
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
818
|
+
'@radix-ui/react-dialog': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
819
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
820
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
|
|
821
|
+
'@types/react': 18.2.18
|
|
822
|
+
'@types/react-dom': 18.2.7
|
|
811
823
|
react: 18.2.0
|
|
812
824
|
react-dom: 18.2.0(react@18.2.0)
|
|
813
825
|
dev: false
|
|
814
826
|
|
|
815
|
-
/@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.
|
|
827
|
+
/@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
816
828
|
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
|
|
817
829
|
peerDependencies:
|
|
818
830
|
'@types/react': '*'
|
|
@@ -826,14 +838,14 @@ packages:
|
|
|
826
838
|
optional: true
|
|
827
839
|
dependencies:
|
|
828
840
|
'@babel/runtime': 7.21.0
|
|
829
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
830
|
-
'@types/react': 18.2.
|
|
831
|
-
'@types/react-dom': 18.2.
|
|
841
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
842
|
+
'@types/react': 18.2.18
|
|
843
|
+
'@types/react-dom': 18.2.7
|
|
832
844
|
react: 18.2.0
|
|
833
845
|
react-dom: 18.2.0(react@18.2.0)
|
|
834
846
|
dev: false
|
|
835
847
|
|
|
836
|
-
/@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.
|
|
848
|
+
/@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
837
849
|
resolution: {integrity: sha512-fXR5kbMan9oQqMuacfzlGG/SQMcmMlZ4wrvpckv8SgUulD0MMpspxJrxg/Gp/ISV3JfV1AeSWTYK9GvxA4ySwA==}
|
|
838
850
|
peerDependencies:
|
|
839
851
|
'@types/react': '*'
|
|
@@ -847,14 +859,14 @@ packages:
|
|
|
847
859
|
optional: true
|
|
848
860
|
dependencies:
|
|
849
861
|
'@babel/runtime': 7.21.0
|
|
850
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
851
|
-
'@types/react': 18.2.
|
|
852
|
-
'@types/react-dom': 18.2.
|
|
862
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
863
|
+
'@types/react': 18.2.18
|
|
864
|
+
'@types/react-dom': 18.2.7
|
|
853
865
|
react: 18.2.0
|
|
854
866
|
react-dom: 18.2.0(react@18.2.0)
|
|
855
867
|
dev: false
|
|
856
868
|
|
|
857
|
-
/@radix-ui/react-avatar@1.0.3(@types/react-dom@18.2.
|
|
869
|
+
/@radix-ui/react-avatar@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
858
870
|
resolution: {integrity: sha512-9ToF7YNex3Ste45LrAeTlKtONI9yVRt/zOS158iilIkW5K/Apeyb/TUQlcEFTEFvWr8Kzdi2ZYrm1/suiXPajQ==}
|
|
859
871
|
peerDependencies:
|
|
860
872
|
'@types/react': '*'
|
|
@@ -868,17 +880,17 @@ packages:
|
|
|
868
880
|
optional: true
|
|
869
881
|
dependencies:
|
|
870
882
|
'@babel/runtime': 7.21.0
|
|
871
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
872
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
873
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
874
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
875
|
-
'@types/react': 18.2.
|
|
876
|
-
'@types/react-dom': 18.2.
|
|
883
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
884
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
885
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
886
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
887
|
+
'@types/react': 18.2.18
|
|
888
|
+
'@types/react-dom': 18.2.7
|
|
877
889
|
react: 18.2.0
|
|
878
890
|
react-dom: 18.2.0(react@18.2.0)
|
|
879
891
|
dev: false
|
|
880
892
|
|
|
881
|
-
/@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.
|
|
893
|
+
/@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
882
894
|
resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==}
|
|
883
895
|
peerDependencies:
|
|
884
896
|
'@types/react': '*'
|
|
@@ -893,20 +905,20 @@ packages:
|
|
|
893
905
|
dependencies:
|
|
894
906
|
'@babel/runtime': 7.21.0
|
|
895
907
|
'@radix-ui/primitive': 1.0.1
|
|
896
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
897
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
898
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
899
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
900
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
901
|
-
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.
|
|
902
|
-
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.
|
|
903
|
-
'@types/react': 18.2.
|
|
904
|
-
'@types/react-dom': 18.2.
|
|
908
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
909
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
910
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
911
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
912
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
913
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
914
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
915
|
+
'@types/react': 18.2.18
|
|
916
|
+
'@types/react-dom': 18.2.7
|
|
905
917
|
react: 18.2.0
|
|
906
918
|
react-dom: 18.2.0(react@18.2.0)
|
|
907
919
|
dev: false
|
|
908
920
|
|
|
909
|
-
/@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.
|
|
921
|
+
/@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
910
922
|
resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
|
|
911
923
|
peerDependencies:
|
|
912
924
|
'@types/react': '*'
|
|
@@ -921,20 +933,20 @@ packages:
|
|
|
921
933
|
dependencies:
|
|
922
934
|
'@babel/runtime': 7.21.0
|
|
923
935
|
'@radix-ui/primitive': 1.0.1
|
|
924
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
925
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
926
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
927
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
928
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
929
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
930
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
931
|
-
'@types/react': 18.2.
|
|
932
|
-
'@types/react-dom': 18.2.
|
|
936
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
937
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
938
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
939
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
940
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
941
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
942
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
943
|
+
'@types/react': 18.2.18
|
|
944
|
+
'@types/react-dom': 18.2.7
|
|
933
945
|
react: 18.2.0
|
|
934
946
|
react-dom: 18.2.0(react@18.2.0)
|
|
935
947
|
dev: false
|
|
936
948
|
|
|
937
|
-
/@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.
|
|
949
|
+
/@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
938
950
|
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
|
|
939
951
|
peerDependencies:
|
|
940
952
|
'@types/react': '*'
|
|
@@ -948,12 +960,12 @@ packages:
|
|
|
948
960
|
optional: true
|
|
949
961
|
dependencies:
|
|
950
962
|
'@babel/runtime': 7.21.0
|
|
951
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
952
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
953
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
954
|
-
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.
|
|
955
|
-
'@types/react': 18.2.
|
|
956
|
-
'@types/react-dom': 18.2.
|
|
963
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
964
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
965
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
966
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
|
|
967
|
+
'@types/react': 18.2.18
|
|
968
|
+
'@types/react-dom': 18.2.7
|
|
957
969
|
react: 18.2.0
|
|
958
970
|
react-dom: 18.2.0(react@18.2.0)
|
|
959
971
|
dev: false
|
|
@@ -967,7 +979,7 @@ packages:
|
|
|
967
979
|
react: 18.2.0
|
|
968
980
|
dev: false
|
|
969
981
|
|
|
970
|
-
/@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.
|
|
982
|
+
/@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
971
983
|
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
|
|
972
984
|
peerDependencies:
|
|
973
985
|
'@types/react': '*'
|
|
@@ -977,11 +989,11 @@ packages:
|
|
|
977
989
|
optional: true
|
|
978
990
|
dependencies:
|
|
979
991
|
'@babel/runtime': 7.21.0
|
|
980
|
-
'@types/react': 18.2.
|
|
992
|
+
'@types/react': 18.2.18
|
|
981
993
|
react: 18.2.0
|
|
982
994
|
dev: false
|
|
983
995
|
|
|
984
|
-
/@radix-ui/react-context-menu@2.1.4(@types/react-dom@18.2.
|
|
996
|
+
/@radix-ui/react-context-menu@2.1.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
985
997
|
resolution: {integrity: sha512-HVHLUtZOBiR2Fh5l07qQ9y0IgX4dGZF0S9Gwdk4CVA+DL9afSphvFNa4nRiw6RNgb6quwLV4dLPF/gFDvNaOcQ==}
|
|
986
998
|
peerDependencies:
|
|
987
999
|
'@types/react': '*'
|
|
@@ -996,13 +1008,13 @@ packages:
|
|
|
996
1008
|
dependencies:
|
|
997
1009
|
'@babel/runtime': 7.21.0
|
|
998
1010
|
'@radix-ui/primitive': 1.0.1
|
|
999
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1000
|
-
'@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.
|
|
1001
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1002
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1003
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1004
|
-
'@types/react': 18.2.
|
|
1005
|
-
'@types/react-dom': 18.2.
|
|
1011
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1012
|
+
'@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1013
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1014
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1015
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1016
|
+
'@types/react': 18.2.18
|
|
1017
|
+
'@types/react-dom': 18.2.7
|
|
1006
1018
|
react: 18.2.0
|
|
1007
1019
|
react-dom: 18.2.0(react@18.2.0)
|
|
1008
1020
|
dev: false
|
|
@@ -1016,7 +1028,7 @@ packages:
|
|
|
1016
1028
|
react: 18.2.0
|
|
1017
1029
|
dev: false
|
|
1018
1030
|
|
|
1019
|
-
/@radix-ui/react-context@1.0.1(@types/react@18.2.
|
|
1031
|
+
/@radix-ui/react-context@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
1020
1032
|
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
|
|
1021
1033
|
peerDependencies:
|
|
1022
1034
|
'@types/react': '*'
|
|
@@ -1026,11 +1038,11 @@ packages:
|
|
|
1026
1038
|
optional: true
|
|
1027
1039
|
dependencies:
|
|
1028
1040
|
'@babel/runtime': 7.21.0
|
|
1029
|
-
'@types/react': 18.2.
|
|
1041
|
+
'@types/react': 18.2.18
|
|
1030
1042
|
react: 18.2.0
|
|
1031
1043
|
dev: false
|
|
1032
1044
|
|
|
1033
|
-
/@radix-ui/react-dialog@1.0.0(@types/react@18.2.
|
|
1045
|
+
/@radix-ui/react-dialog@1.0.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1034
1046
|
resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==}
|
|
1035
1047
|
peerDependencies:
|
|
1036
1048
|
react: ^16.8 || ^17.0 || ^18.0
|
|
@@ -1052,12 +1064,12 @@ packages:
|
|
|
1052
1064
|
aria-hidden: 1.2.3
|
|
1053
1065
|
react: 18.2.0
|
|
1054
1066
|
react-dom: 18.2.0(react@18.2.0)
|
|
1055
|
-
react-remove-scroll: 2.5.4(@types/react@18.2.
|
|
1067
|
+
react-remove-scroll: 2.5.4(@types/react@18.2.18)(react@18.2.0)
|
|
1056
1068
|
transitivePeerDependencies:
|
|
1057
1069
|
- '@types/react'
|
|
1058
1070
|
dev: false
|
|
1059
1071
|
|
|
1060
|
-
/@radix-ui/react-dialog@1.0.4(@types/react-dom@18.2.
|
|
1072
|
+
/@radix-ui/react-dialog@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1061
1073
|
resolution: {integrity: sha512-hJtRy/jPULGQZceSAP2Re6/4NpKo8im6V8P2hUqZsdFiSL8l35kYsw3qbRI6Ay5mQd2+wlLqje770eq+RJ3yZg==}
|
|
1062
1074
|
peerDependencies:
|
|
1063
1075
|
'@types/react': '*'
|
|
@@ -1072,26 +1084,26 @@ packages:
|
|
|
1072
1084
|
dependencies:
|
|
1073
1085
|
'@babel/runtime': 7.21.0
|
|
1074
1086
|
'@radix-ui/primitive': 1.0.1
|
|
1075
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1076
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1077
|
-
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.
|
|
1078
|
-
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.
|
|
1079
|
-
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.
|
|
1080
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1081
|
-
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.
|
|
1082
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1083
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1084
|
-
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.
|
|
1085
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1086
|
-
'@types/react': 18.2.
|
|
1087
|
-
'@types/react-dom': 18.2.
|
|
1087
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1088
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1089
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1090
|
+
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1091
|
+
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1092
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1093
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1094
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1095
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1096
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
|
|
1097
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1098
|
+
'@types/react': 18.2.18
|
|
1099
|
+
'@types/react-dom': 18.2.7
|
|
1088
1100
|
aria-hidden: 1.2.3
|
|
1089
1101
|
react: 18.2.0
|
|
1090
1102
|
react-dom: 18.2.0(react@18.2.0)
|
|
1091
|
-
react-remove-scroll: 2.5.5(@types/react@18.2.
|
|
1103
|
+
react-remove-scroll: 2.5.5(@types/react@18.2.18)(react@18.2.0)
|
|
1092
1104
|
dev: false
|
|
1093
1105
|
|
|
1094
|
-
/@radix-ui/react-direction@1.0.1(@types/react@18.2.
|
|
1106
|
+
/@radix-ui/react-direction@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
1095
1107
|
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
|
|
1096
1108
|
peerDependencies:
|
|
1097
1109
|
'@types/react': '*'
|
|
@@ -1101,7 +1113,7 @@ packages:
|
|
|
1101
1113
|
optional: true
|
|
1102
1114
|
dependencies:
|
|
1103
1115
|
'@babel/runtime': 7.21.0
|
|
1104
|
-
'@types/react': 18.2.
|
|
1116
|
+
'@types/react': 18.2.18
|
|
1105
1117
|
react: 18.2.0
|
|
1106
1118
|
dev: false
|
|
1107
1119
|
|
|
@@ -1121,7 +1133,7 @@ packages:
|
|
|
1121
1133
|
react-dom: 18.2.0(react@18.2.0)
|
|
1122
1134
|
dev: false
|
|
1123
1135
|
|
|
1124
|
-
/@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.
|
|
1136
|
+
/@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1125
1137
|
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
|
|
1126
1138
|
peerDependencies:
|
|
1127
1139
|
'@types/react': '*'
|
|
@@ -1136,17 +1148,17 @@ packages:
|
|
|
1136
1148
|
dependencies:
|
|
1137
1149
|
'@babel/runtime': 7.21.0
|
|
1138
1150
|
'@radix-ui/primitive': 1.0.1
|
|
1139
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1140
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1141
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1142
|
-
'@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.
|
|
1143
|
-
'@types/react': 18.2.
|
|
1144
|
-
'@types/react-dom': 18.2.
|
|
1151
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1152
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1153
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1154
|
+
'@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.18)(react@18.2.0)
|
|
1155
|
+
'@types/react': 18.2.18
|
|
1156
|
+
'@types/react-dom': 18.2.7
|
|
1145
1157
|
react: 18.2.0
|
|
1146
1158
|
react-dom: 18.2.0(react@18.2.0)
|
|
1147
1159
|
dev: false
|
|
1148
1160
|
|
|
1149
|
-
/@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.2.
|
|
1161
|
+
/@radix-ui/react-dropdown-menu@2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1150
1162
|
resolution: {integrity: sha512-xdOrZzOTocqqkCkYo8yRPCib5OkTkqN7lqNCdxwPOdE466DOaNl4N8PkUIlsXthQvW5Wwkd+aEmWpfWlBoDPEw==}
|
|
1151
1163
|
peerDependencies:
|
|
1152
1164
|
'@types/react': '*'
|
|
@@ -1161,14 +1173,14 @@ packages:
|
|
|
1161
1173
|
dependencies:
|
|
1162
1174
|
'@babel/runtime': 7.21.0
|
|
1163
1175
|
'@radix-ui/primitive': 1.0.1
|
|
1164
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1165
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1166
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1167
|
-
'@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.
|
|
1168
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1169
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1170
|
-
'@types/react': 18.2.
|
|
1171
|
-
'@types/react-dom': 18.2.
|
|
1176
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1177
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1178
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1179
|
+
'@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1180
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1181
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1182
|
+
'@types/react': 18.2.18
|
|
1183
|
+
'@types/react-dom': 18.2.7
|
|
1172
1184
|
react: 18.2.0
|
|
1173
1185
|
react-dom: 18.2.0(react@18.2.0)
|
|
1174
1186
|
dev: false
|
|
@@ -1182,7 +1194,7 @@ packages:
|
|
|
1182
1194
|
react: 18.2.0
|
|
1183
1195
|
dev: false
|
|
1184
1196
|
|
|
1185
|
-
/@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.
|
|
1197
|
+
/@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
1186
1198
|
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
|
|
1187
1199
|
peerDependencies:
|
|
1188
1200
|
'@types/react': '*'
|
|
@@ -1192,7 +1204,7 @@ packages:
|
|
|
1192
1204
|
optional: true
|
|
1193
1205
|
dependencies:
|
|
1194
1206
|
'@babel/runtime': 7.21.0
|
|
1195
|
-
'@types/react': 18.2.
|
|
1207
|
+
'@types/react': 18.2.18
|
|
1196
1208
|
react: 18.2.0
|
|
1197
1209
|
dev: false
|
|
1198
1210
|
|
|
@@ -1210,7 +1222,7 @@ packages:
|
|
|
1210
1222
|
react-dom: 18.2.0(react@18.2.0)
|
|
1211
1223
|
dev: false
|
|
1212
1224
|
|
|
1213
|
-
/@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.
|
|
1225
|
+
/@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1214
1226
|
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
|
|
1215
1227
|
peerDependencies:
|
|
1216
1228
|
'@types/react': '*'
|
|
@@ -1224,16 +1236,16 @@ packages:
|
|
|
1224
1236
|
optional: true
|
|
1225
1237
|
dependencies:
|
|
1226
1238
|
'@babel/runtime': 7.21.0
|
|
1227
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1228
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1229
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1230
|
-
'@types/react': 18.2.
|
|
1231
|
-
'@types/react-dom': 18.2.
|
|
1239
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1240
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1241
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1242
|
+
'@types/react': 18.2.18
|
|
1243
|
+
'@types/react-dom': 18.2.7
|
|
1232
1244
|
react: 18.2.0
|
|
1233
1245
|
react-dom: 18.2.0(react@18.2.0)
|
|
1234
1246
|
dev: false
|
|
1235
1247
|
|
|
1236
|
-
/@radix-ui/react-hover-card@1.0.6(@types/react-dom@18.2.
|
|
1248
|
+
/@radix-ui/react-hover-card@1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1237
1249
|
resolution: {integrity: sha512-2K3ToJuMk9wjwBOa+jdg2oPma+AmLdcEyTNsG/iC4BDVG3E0/mGCjbY8PEDSLxJcUi+nJi2QII+ec/4kWd88DA==}
|
|
1238
1250
|
peerDependencies:
|
|
1239
1251
|
'@types/react': '*'
|
|
@@ -1248,16 +1260,16 @@ packages:
|
|
|
1248
1260
|
dependencies:
|
|
1249
1261
|
'@babel/runtime': 7.21.0
|
|
1250
1262
|
'@radix-ui/primitive': 1.0.1
|
|
1251
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1252
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1253
|
-
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.
|
|
1254
|
-
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.
|
|
1255
|
-
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.
|
|
1256
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1257
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1258
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1259
|
-
'@types/react': 18.2.
|
|
1260
|
-
'@types/react-dom': 18.2.
|
|
1263
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1264
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1265
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1266
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1267
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1268
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1269
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1270
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1271
|
+
'@types/react': 18.2.18
|
|
1272
|
+
'@types/react-dom': 18.2.7
|
|
1261
1273
|
react: 18.2.0
|
|
1262
1274
|
react-dom: 18.2.0(react@18.2.0)
|
|
1263
1275
|
dev: false
|
|
@@ -1280,7 +1292,7 @@ packages:
|
|
|
1280
1292
|
react: 18.2.0
|
|
1281
1293
|
dev: false
|
|
1282
1294
|
|
|
1283
|
-
/@radix-ui/react-id@1.0.1(@types/react@18.2.
|
|
1295
|
+
/@radix-ui/react-id@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
1284
1296
|
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
|
|
1285
1297
|
peerDependencies:
|
|
1286
1298
|
'@types/react': '*'
|
|
@@ -1290,12 +1302,12 @@ packages:
|
|
|
1290
1302
|
optional: true
|
|
1291
1303
|
dependencies:
|
|
1292
1304
|
'@babel/runtime': 7.21.0
|
|
1293
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
1294
|
-
'@types/react': 18.2.
|
|
1305
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1306
|
+
'@types/react': 18.2.18
|
|
1295
1307
|
react: 18.2.0
|
|
1296
1308
|
dev: false
|
|
1297
1309
|
|
|
1298
|
-
/@radix-ui/react-label@2.0.2(@types/react-dom@18.2.
|
|
1310
|
+
/@radix-ui/react-label@2.0.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1299
1311
|
resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==}
|
|
1300
1312
|
peerDependencies:
|
|
1301
1313
|
'@types/react': '*'
|
|
@@ -1309,14 +1321,14 @@ packages:
|
|
|
1309
1321
|
optional: true
|
|
1310
1322
|
dependencies:
|
|
1311
1323
|
'@babel/runtime': 7.21.0
|
|
1312
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1313
|
-
'@types/react': 18.2.
|
|
1314
|
-
'@types/react-dom': 18.2.
|
|
1324
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1325
|
+
'@types/react': 18.2.18
|
|
1326
|
+
'@types/react-dom': 18.2.7
|
|
1315
1327
|
react: 18.2.0
|
|
1316
1328
|
react-dom: 18.2.0(react@18.2.0)
|
|
1317
1329
|
dev: false
|
|
1318
1330
|
|
|
1319
|
-
/@radix-ui/react-menu@2.0.5(@types/react-dom@18.2.
|
|
1331
|
+
/@radix-ui/react-menu@2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1320
1332
|
resolution: {integrity: sha512-Gw4f9pwdH+w5w+49k0gLjN0PfRDHvxmAgG16AbyJZ7zhwZ6PBHKtWohvnSwfusfnK3L68dpBREHpVkj8wEM7ZA==}
|
|
1321
1333
|
peerDependencies:
|
|
1322
1334
|
'@types/react': '*'
|
|
@@ -1331,30 +1343,30 @@ packages:
|
|
|
1331
1343
|
dependencies:
|
|
1332
1344
|
'@babel/runtime': 7.21.0
|
|
1333
1345
|
'@radix-ui/primitive': 1.0.1
|
|
1334
|
-
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.
|
|
1335
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1336
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1337
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1338
|
-
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.
|
|
1339
|
-
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.
|
|
1340
|
-
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.
|
|
1341
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1342
|
-
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.
|
|
1343
|
-
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.
|
|
1344
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1345
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1346
|
-
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.
|
|
1347
|
-
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.
|
|
1348
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1349
|
-
'@types/react': 18.2.
|
|
1350
|
-
'@types/react-dom': 18.2.
|
|
1346
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1347
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1348
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1349
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1350
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1351
|
+
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1352
|
+
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1353
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1354
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1355
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1356
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1357
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1358
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1359
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
|
|
1360
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1361
|
+
'@types/react': 18.2.18
|
|
1362
|
+
'@types/react-dom': 18.2.7
|
|
1351
1363
|
aria-hidden: 1.2.3
|
|
1352
1364
|
react: 18.2.0
|
|
1353
1365
|
react-dom: 18.2.0(react@18.2.0)
|
|
1354
|
-
react-remove-scroll: 2.5.5(@types/react@18.2.
|
|
1366
|
+
react-remove-scroll: 2.5.5(@types/react@18.2.18)(react@18.2.0)
|
|
1355
1367
|
dev: false
|
|
1356
1368
|
|
|
1357
|
-
/@radix-ui/react-menubar@1.0.3(@types/react-dom@18.2.
|
|
1369
|
+
/@radix-ui/react-menubar@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1358
1370
|
resolution: {integrity: sha512-GqjdxzYCjjKhcgEODDP8SrYfbWNh/Hm3lyuFkP5Q5IbX0QfXklLF1o1AqA3oTV2kulUgN/kOZVS92hIIShEgpA==}
|
|
1359
1371
|
peerDependencies:
|
|
1360
1372
|
'@types/react': '*'
|
|
@@ -1369,22 +1381,22 @@ packages:
|
|
|
1369
1381
|
dependencies:
|
|
1370
1382
|
'@babel/runtime': 7.21.0
|
|
1371
1383
|
'@radix-ui/primitive': 1.0.1
|
|
1372
|
-
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.
|
|
1373
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1374
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1375
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1376
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1377
|
-
'@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.
|
|
1378
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1379
|
-
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.
|
|
1380
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1381
|
-
'@types/react': 18.2.
|
|
1382
|
-
'@types/react-dom': 18.2.
|
|
1384
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1385
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1386
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1387
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1388
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1389
|
+
'@radix-ui/react-menu': 2.0.5(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1390
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1391
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1392
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1393
|
+
'@types/react': 18.2.18
|
|
1394
|
+
'@types/react-dom': 18.2.7
|
|
1383
1395
|
react: 18.2.0
|
|
1384
1396
|
react-dom: 18.2.0(react@18.2.0)
|
|
1385
1397
|
dev: false
|
|
1386
1398
|
|
|
1387
|
-
/@radix-ui/react-navigation-menu@1.1.3(@types/react-dom@18.2.
|
|
1399
|
+
/@radix-ui/react-navigation-menu@1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1388
1400
|
resolution: {integrity: sha512-x4Uv0N47ABx3/frJazYXxvMpZeKJe0qmRIgQ2o3lhTqnTVg+CaZfVVO4nQLn3QJcDkTz8icElKffhFng47XIBA==}
|
|
1389
1401
|
peerDependencies:
|
|
1390
1402
|
'@types/react': '*'
|
|
@@ -1399,26 +1411,26 @@ packages:
|
|
|
1399
1411
|
dependencies:
|
|
1400
1412
|
'@babel/runtime': 7.21.0
|
|
1401
1413
|
'@radix-ui/primitive': 1.0.1
|
|
1402
|
-
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.
|
|
1403
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1404
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1405
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1406
|
-
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.
|
|
1407
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1408
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1409
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1410
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1411
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1412
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
1413
|
-
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.
|
|
1414
|
-
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.
|
|
1415
|
-
'@types/react': 18.2.
|
|
1416
|
-
'@types/react-dom': 18.2.
|
|
1414
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1415
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1416
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1417
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1418
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1419
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1420
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1421
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1422
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1423
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1424
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1425
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1426
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1427
|
+
'@types/react': 18.2.18
|
|
1428
|
+
'@types/react-dom': 18.2.7
|
|
1417
1429
|
react: 18.2.0
|
|
1418
1430
|
react-dom: 18.2.0(react@18.2.0)
|
|
1419
1431
|
dev: false
|
|
1420
1432
|
|
|
1421
|
-
/@radix-ui/react-popover@1.0.6(@types/react-dom@18.2.
|
|
1433
|
+
/@radix-ui/react-popover@1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1422
1434
|
resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==}
|
|
1423
1435
|
peerDependencies:
|
|
1424
1436
|
'@types/react': '*'
|
|
@@ -1433,27 +1445,27 @@ packages:
|
|
|
1433
1445
|
dependencies:
|
|
1434
1446
|
'@babel/runtime': 7.21.0
|
|
1435
1447
|
'@radix-ui/primitive': 1.0.1
|
|
1436
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1437
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1438
|
-
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.
|
|
1439
|
-
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.
|
|
1440
|
-
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.
|
|
1441
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1442
|
-
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.
|
|
1443
|
-
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.
|
|
1444
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1445
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1446
|
-
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.
|
|
1447
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1448
|
-
'@types/react': 18.2.
|
|
1449
|
-
'@types/react-dom': 18.2.
|
|
1448
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1449
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1450
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1451
|
+
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1452
|
+
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1453
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1454
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1455
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1456
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1457
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1458
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
|
|
1459
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1460
|
+
'@types/react': 18.2.18
|
|
1461
|
+
'@types/react-dom': 18.2.7
|
|
1450
1462
|
aria-hidden: 1.2.3
|
|
1451
1463
|
react: 18.2.0
|
|
1452
1464
|
react-dom: 18.2.0(react@18.2.0)
|
|
1453
|
-
react-remove-scroll: 2.5.5(@types/react@18.2.
|
|
1465
|
+
react-remove-scroll: 2.5.5(@types/react@18.2.18)(react@18.2.0)
|
|
1454
1466
|
dev: false
|
|
1455
1467
|
|
|
1456
|
-
/@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.
|
|
1468
|
+
/@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1457
1469
|
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
|
|
1458
1470
|
peerDependencies:
|
|
1459
1471
|
'@types/react': '*'
|
|
@@ -1468,17 +1480,17 @@ packages:
|
|
|
1468
1480
|
dependencies:
|
|
1469
1481
|
'@babel/runtime': 7.21.0
|
|
1470
1482
|
'@floating-ui/react-dom': 2.0.0(react-dom@18.2.0)(react@18.2.0)
|
|
1471
|
-
'@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.
|
|
1472
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1473
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1474
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1475
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1476
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
1477
|
-
'@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.
|
|
1478
|
-
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.
|
|
1483
|
+
'@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1484
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1485
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1486
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1487
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1488
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1489
|
+
'@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1490
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1479
1491
|
'@radix-ui/rect': 1.0.1
|
|
1480
|
-
'@types/react': 18.2.
|
|
1481
|
-
'@types/react-dom': 18.2.
|
|
1492
|
+
'@types/react': 18.2.18
|
|
1493
|
+
'@types/react-dom': 18.2.7
|
|
1482
1494
|
react: 18.2.0
|
|
1483
1495
|
react-dom: 18.2.0(react@18.2.0)
|
|
1484
1496
|
dev: false
|
|
@@ -1495,7 +1507,7 @@ packages:
|
|
|
1495
1507
|
react-dom: 18.2.0(react@18.2.0)
|
|
1496
1508
|
dev: false
|
|
1497
1509
|
|
|
1498
|
-
/@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.
|
|
1510
|
+
/@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1499
1511
|
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
|
|
1500
1512
|
peerDependencies:
|
|
1501
1513
|
'@types/react': '*'
|
|
@@ -1509,9 +1521,9 @@ packages:
|
|
|
1509
1521
|
optional: true
|
|
1510
1522
|
dependencies:
|
|
1511
1523
|
'@babel/runtime': 7.21.0
|
|
1512
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1513
|
-
'@types/react': 18.2.
|
|
1514
|
-
'@types/react-dom': 18.2.
|
|
1524
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1525
|
+
'@types/react': 18.2.18
|
|
1526
|
+
'@types/react-dom': 18.2.7
|
|
1515
1527
|
react: 18.2.0
|
|
1516
1528
|
react-dom: 18.2.0(react@18.2.0)
|
|
1517
1529
|
dev: false
|
|
@@ -1529,7 +1541,7 @@ packages:
|
|
|
1529
1541
|
react-dom: 18.2.0(react@18.2.0)
|
|
1530
1542
|
dev: false
|
|
1531
1543
|
|
|
1532
|
-
/@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.
|
|
1544
|
+
/@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1533
1545
|
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
|
|
1534
1546
|
peerDependencies:
|
|
1535
1547
|
'@types/react': '*'
|
|
@@ -1543,10 +1555,10 @@ packages:
|
|
|
1543
1555
|
optional: true
|
|
1544
1556
|
dependencies:
|
|
1545
1557
|
'@babel/runtime': 7.21.0
|
|
1546
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1547
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
1548
|
-
'@types/react': 18.2.
|
|
1549
|
-
'@types/react-dom': 18.2.
|
|
1558
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1559
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1560
|
+
'@types/react': 18.2.18
|
|
1561
|
+
'@types/react-dom': 18.2.7
|
|
1550
1562
|
react: 18.2.0
|
|
1551
1563
|
react-dom: 18.2.0(react@18.2.0)
|
|
1552
1564
|
dev: false
|
|
@@ -1563,7 +1575,7 @@ packages:
|
|
|
1563
1575
|
react-dom: 18.2.0(react@18.2.0)
|
|
1564
1576
|
dev: false
|
|
1565
1577
|
|
|
1566
|
-
/@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.
|
|
1578
|
+
/@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1567
1579
|
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
|
|
1568
1580
|
peerDependencies:
|
|
1569
1581
|
'@types/react': '*'
|
|
@@ -1577,14 +1589,14 @@ packages:
|
|
|
1577
1589
|
optional: true
|
|
1578
1590
|
dependencies:
|
|
1579
1591
|
'@babel/runtime': 7.21.0
|
|
1580
|
-
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.
|
|
1581
|
-
'@types/react': 18.2.
|
|
1582
|
-
'@types/react-dom': 18.2.
|
|
1592
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
|
|
1593
|
+
'@types/react': 18.2.18
|
|
1594
|
+
'@types/react-dom': 18.2.7
|
|
1583
1595
|
react: 18.2.0
|
|
1584
1596
|
react-dom: 18.2.0(react@18.2.0)
|
|
1585
1597
|
dev: false
|
|
1586
1598
|
|
|
1587
|
-
/@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.
|
|
1599
|
+
/@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1588
1600
|
resolution: {integrity: sha512-5G6Om/tYSxjSeEdrb1VfKkfZfn/1IlPWd731h2RfPuSbIfNUgfqAwbKfJCg/PP6nuUCTrYzalwHSpSinoWoCag==}
|
|
1589
1601
|
peerDependencies:
|
|
1590
1602
|
'@types/react': '*'
|
|
@@ -1598,15 +1610,15 @@ packages:
|
|
|
1598
1610
|
optional: true
|
|
1599
1611
|
dependencies:
|
|
1600
1612
|
'@babel/runtime': 7.21.0
|
|
1601
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1602
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1603
|
-
'@types/react': 18.2.
|
|
1604
|
-
'@types/react-dom': 18.2.
|
|
1613
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1614
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1615
|
+
'@types/react': 18.2.18
|
|
1616
|
+
'@types/react-dom': 18.2.7
|
|
1605
1617
|
react: 18.2.0
|
|
1606
1618
|
react-dom: 18.2.0(react@18.2.0)
|
|
1607
1619
|
dev: false
|
|
1608
1620
|
|
|
1609
|
-
/@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.
|
|
1621
|
+
/@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1610
1622
|
resolution: {integrity: sha512-x+yELayyefNeKeTx4fjK6j99Fs6c4qKm3aY38G3swQVTN6xMpsrbigC0uHs2L//g8q4qR7qOcww8430jJmi2ag==}
|
|
1611
1623
|
peerDependencies:
|
|
1612
1624
|
'@types/react': '*'
|
|
@@ -1621,22 +1633,22 @@ packages:
|
|
|
1621
1633
|
dependencies:
|
|
1622
1634
|
'@babel/runtime': 7.21.0
|
|
1623
1635
|
'@radix-ui/primitive': 1.0.1
|
|
1624
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1625
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1626
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1627
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1628
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1629
|
-
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.
|
|
1630
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1631
|
-
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.
|
|
1632
|
-
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.
|
|
1633
|
-
'@types/react': 18.2.
|
|
1634
|
-
'@types/react-dom': 18.2.
|
|
1636
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1637
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1638
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1639
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1640
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1641
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1642
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1643
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1644
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1645
|
+
'@types/react': 18.2.18
|
|
1646
|
+
'@types/react-dom': 18.2.7
|
|
1635
1647
|
react: 18.2.0
|
|
1636
1648
|
react-dom: 18.2.0(react@18.2.0)
|
|
1637
1649
|
dev: false
|
|
1638
1650
|
|
|
1639
|
-
/@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.
|
|
1651
|
+
/@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1640
1652
|
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
|
|
1641
1653
|
peerDependencies:
|
|
1642
1654
|
'@types/react': '*'
|
|
@@ -1651,21 +1663,21 @@ packages:
|
|
|
1651
1663
|
dependencies:
|
|
1652
1664
|
'@babel/runtime': 7.21.0
|
|
1653
1665
|
'@radix-ui/primitive': 1.0.1
|
|
1654
|
-
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.
|
|
1655
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1656
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1657
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1658
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1659
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1660
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1661
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1662
|
-
'@types/react': 18.2.
|
|
1663
|
-
'@types/react-dom': 18.2.
|
|
1666
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1667
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1668
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1669
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1670
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1671
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1672
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1673
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1674
|
+
'@types/react': 18.2.18
|
|
1675
|
+
'@types/react-dom': 18.2.7
|
|
1664
1676
|
react: 18.2.0
|
|
1665
1677
|
react-dom: 18.2.0(react@18.2.0)
|
|
1666
1678
|
dev: false
|
|
1667
1679
|
|
|
1668
|
-
/@radix-ui/react-scroll-area@1.0.4(@types/react-dom@18.2.
|
|
1680
|
+
/@radix-ui/react-scroll-area@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1669
1681
|
resolution: {integrity: sha512-OIClwBkwPG+FKvC4OMTRaa/3cfD069nkKFFL/TQzRzaO42Ce5ivKU9VMKgT7UU6UIkjcQqKBrDOIzWtPGw6e6w==}
|
|
1670
1682
|
peerDependencies:
|
|
1671
1683
|
'@types/react': '*'
|
|
@@ -1681,20 +1693,20 @@ packages:
|
|
|
1681
1693
|
'@babel/runtime': 7.21.0
|
|
1682
1694
|
'@radix-ui/number': 1.0.1
|
|
1683
1695
|
'@radix-ui/primitive': 1.0.1
|
|
1684
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1685
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1686
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1687
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1688
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1689
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1690
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
1691
|
-
'@types/react': 18.2.
|
|
1692
|
-
'@types/react-dom': 18.2.
|
|
1696
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1697
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1698
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1699
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1700
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1701
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1702
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1703
|
+
'@types/react': 18.2.18
|
|
1704
|
+
'@types/react-dom': 18.2.7
|
|
1693
1705
|
react: 18.2.0
|
|
1694
1706
|
react-dom: 18.2.0(react@18.2.0)
|
|
1695
1707
|
dev: false
|
|
1696
1708
|
|
|
1697
|
-
/@radix-ui/react-select@1.2.2(@types/react-dom@18.2.
|
|
1709
|
+
/@radix-ui/react-select@1.2.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1698
1710
|
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
|
|
1699
1711
|
peerDependencies:
|
|
1700
1712
|
'@types/react': '*'
|
|
@@ -1710,32 +1722,32 @@ packages:
|
|
|
1710
1722
|
'@babel/runtime': 7.21.0
|
|
1711
1723
|
'@radix-ui/number': 1.0.1
|
|
1712
1724
|
'@radix-ui/primitive': 1.0.1
|
|
1713
|
-
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.
|
|
1714
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1715
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1716
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1717
|
-
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.
|
|
1718
|
-
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.
|
|
1719
|
-
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.
|
|
1720
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1721
|
-
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.
|
|
1722
|
-
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.
|
|
1723
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1724
|
-
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.
|
|
1725
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1726
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1727
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
1728
|
-
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.
|
|
1729
|
-
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.
|
|
1730
|
-
'@types/react': 18.2.
|
|
1731
|
-
'@types/react-dom': 18.2.
|
|
1725
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1726
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1727
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1728
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1729
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1730
|
+
'@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1731
|
+
'@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1732
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1733
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1734
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1735
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1736
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
|
|
1737
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1738
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1739
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1740
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1741
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1742
|
+
'@types/react': 18.2.18
|
|
1743
|
+
'@types/react-dom': 18.2.7
|
|
1732
1744
|
aria-hidden: 1.2.3
|
|
1733
1745
|
react: 18.2.0
|
|
1734
1746
|
react-dom: 18.2.0(react@18.2.0)
|
|
1735
|
-
react-remove-scroll: 2.5.5(@types/react@18.2.
|
|
1747
|
+
react-remove-scroll: 2.5.5(@types/react@18.2.18)(react@18.2.0)
|
|
1736
1748
|
dev: false
|
|
1737
1749
|
|
|
1738
|
-
/@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.
|
|
1750
|
+
/@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1739
1751
|
resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
|
|
1740
1752
|
peerDependencies:
|
|
1741
1753
|
'@types/react': '*'
|
|
@@ -1749,14 +1761,14 @@ packages:
|
|
|
1749
1761
|
optional: true
|
|
1750
1762
|
dependencies:
|
|
1751
1763
|
'@babel/runtime': 7.21.0
|
|
1752
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1753
|
-
'@types/react': 18.2.
|
|
1754
|
-
'@types/react-dom': 18.2.
|
|
1764
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1765
|
+
'@types/react': 18.2.18
|
|
1766
|
+
'@types/react-dom': 18.2.7
|
|
1755
1767
|
react: 18.2.0
|
|
1756
1768
|
react-dom: 18.2.0(react@18.2.0)
|
|
1757
1769
|
dev: false
|
|
1758
1770
|
|
|
1759
|
-
/@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.
|
|
1771
|
+
/@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1760
1772
|
resolution: {integrity: sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==}
|
|
1761
1773
|
peerDependencies:
|
|
1762
1774
|
'@types/react': '*'
|
|
@@ -1772,17 +1784,17 @@ packages:
|
|
|
1772
1784
|
'@babel/runtime': 7.21.0
|
|
1773
1785
|
'@radix-ui/number': 1.0.1
|
|
1774
1786
|
'@radix-ui/primitive': 1.0.1
|
|
1775
|
-
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.
|
|
1776
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1777
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1778
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1779
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1780
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1781
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
1782
|
-
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.
|
|
1783
|
-
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.
|
|
1784
|
-
'@types/react': 18.2.
|
|
1785
|
-
'@types/react-dom': 18.2.
|
|
1787
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1788
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1789
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1790
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1791
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1792
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1793
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1794
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1795
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1796
|
+
'@types/react': 18.2.18
|
|
1797
|
+
'@types/react-dom': 18.2.7
|
|
1786
1798
|
react: 18.2.0
|
|
1787
1799
|
react-dom: 18.2.0(react@18.2.0)
|
|
1788
1800
|
dev: false
|
|
@@ -1797,7 +1809,7 @@ packages:
|
|
|
1797
1809
|
react: 18.2.0
|
|
1798
1810
|
dev: false
|
|
1799
1811
|
|
|
1800
|
-
/@radix-ui/react-slot@1.0.2(@types/react@18.2.
|
|
1812
|
+
/@radix-ui/react-slot@1.0.2(@types/react@18.2.18)(react@18.2.0):
|
|
1801
1813
|
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
|
|
1802
1814
|
peerDependencies:
|
|
1803
1815
|
'@types/react': '*'
|
|
@@ -1807,12 +1819,12 @@ packages:
|
|
|
1807
1819
|
optional: true
|
|
1808
1820
|
dependencies:
|
|
1809
1821
|
'@babel/runtime': 7.21.0
|
|
1810
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1811
|
-
'@types/react': 18.2.
|
|
1822
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1823
|
+
'@types/react': 18.2.18
|
|
1812
1824
|
react: 18.2.0
|
|
1813
1825
|
dev: false
|
|
1814
1826
|
|
|
1815
|
-
/@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.
|
|
1827
|
+
/@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1816
1828
|
resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
|
|
1817
1829
|
peerDependencies:
|
|
1818
1830
|
'@types/react': '*'
|
|
@@ -1827,19 +1839,19 @@ packages:
|
|
|
1827
1839
|
dependencies:
|
|
1828
1840
|
'@babel/runtime': 7.21.0
|
|
1829
1841
|
'@radix-ui/primitive': 1.0.1
|
|
1830
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1831
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1832
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1833
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1834
|
-
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.
|
|
1835
|
-
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.
|
|
1836
|
-
'@types/react': 18.2.
|
|
1837
|
-
'@types/react-dom': 18.2.
|
|
1842
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1843
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1844
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1845
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1846
|
+
'@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1847
|
+
'@radix-ui/react-use-size': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1848
|
+
'@types/react': 18.2.18
|
|
1849
|
+
'@types/react-dom': 18.2.7
|
|
1838
1850
|
react: 18.2.0
|
|
1839
1851
|
react-dom: 18.2.0(react@18.2.0)
|
|
1840
1852
|
dev: false
|
|
1841
1853
|
|
|
1842
|
-
/@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.
|
|
1854
|
+
/@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1843
1855
|
resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==}
|
|
1844
1856
|
peerDependencies:
|
|
1845
1857
|
'@types/react': '*'
|
|
@@ -1854,20 +1866,20 @@ packages:
|
|
|
1854
1866
|
dependencies:
|
|
1855
1867
|
'@babel/runtime': 7.21.0
|
|
1856
1868
|
'@radix-ui/primitive': 1.0.1
|
|
1857
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1858
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1859
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1860
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1861
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1862
|
-
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.
|
|
1863
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1864
|
-
'@types/react': 18.2.
|
|
1865
|
-
'@types/react-dom': 18.2.
|
|
1869
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1870
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1871
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1872
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1873
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1874
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1875
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1876
|
+
'@types/react': 18.2.18
|
|
1877
|
+
'@types/react-dom': 18.2.7
|
|
1866
1878
|
react: 18.2.0
|
|
1867
1879
|
react-dom: 18.2.0(react@18.2.0)
|
|
1868
1880
|
dev: false
|
|
1869
1881
|
|
|
1870
|
-
/@radix-ui/react-toast@1.1.4(@types/react-dom@18.2.
|
|
1882
|
+
/@radix-ui/react-toast@1.1.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1871
1883
|
resolution: {integrity: sha512-wf+fc8DOywrpRK3jlPlWVe+ELYGHdKDaaARJZNuUTWyWYq7+ANCFLp4rTjZ/mcGkJJQ/vZ949Zis9xxEpfq9OA==}
|
|
1872
1884
|
peerDependencies:
|
|
1873
1885
|
'@types/react': '*'
|
|
@@ -1882,24 +1894,24 @@ packages:
|
|
|
1882
1894
|
dependencies:
|
|
1883
1895
|
'@babel/runtime': 7.21.0
|
|
1884
1896
|
'@radix-ui/primitive': 1.0.1
|
|
1885
|
-
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.
|
|
1886
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1887
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1888
|
-
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.
|
|
1889
|
-
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.
|
|
1890
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1891
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1892
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
1893
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1894
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
1895
|
-
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.
|
|
1896
|
-
'@types/react': 18.2.
|
|
1897
|
-
'@types/react-dom': 18.2.
|
|
1897
|
+
'@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1898
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1899
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1900
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1901
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1902
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1903
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1904
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1905
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1906
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1907
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1908
|
+
'@types/react': 18.2.18
|
|
1909
|
+
'@types/react-dom': 18.2.7
|
|
1898
1910
|
react: 18.2.0
|
|
1899
1911
|
react-dom: 18.2.0(react@18.2.0)
|
|
1900
1912
|
dev: false
|
|
1901
1913
|
|
|
1902
|
-
/@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.
|
|
1914
|
+
/@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1903
1915
|
resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
|
|
1904
1916
|
peerDependencies:
|
|
1905
1917
|
'@types/react': '*'
|
|
@@ -1914,19 +1926,19 @@ packages:
|
|
|
1914
1926
|
dependencies:
|
|
1915
1927
|
'@babel/runtime': 7.21.0
|
|
1916
1928
|
'@radix-ui/primitive': 1.0.1
|
|
1917
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1918
|
-
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.
|
|
1919
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1920
|
-
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.
|
|
1921
|
-
'@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.
|
|
1922
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1923
|
-
'@types/react': 18.2.
|
|
1924
|
-
'@types/react-dom': 18.2.
|
|
1929
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1930
|
+
'@radix-ui/react-direction': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1931
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1932
|
+
'@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1933
|
+
'@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1934
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1935
|
+
'@types/react': 18.2.18
|
|
1936
|
+
'@types/react-dom': 18.2.7
|
|
1925
1937
|
react: 18.2.0
|
|
1926
1938
|
react-dom: 18.2.0(react@18.2.0)
|
|
1927
1939
|
dev: false
|
|
1928
1940
|
|
|
1929
|
-
/@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.
|
|
1941
|
+
/@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1930
1942
|
resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
|
|
1931
1943
|
peerDependencies:
|
|
1932
1944
|
'@types/react': '*'
|
|
@@ -1941,15 +1953,15 @@ packages:
|
|
|
1941
1953
|
dependencies:
|
|
1942
1954
|
'@babel/runtime': 7.21.0
|
|
1943
1955
|
'@radix-ui/primitive': 1.0.1
|
|
1944
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1945
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1946
|
-
'@types/react': 18.2.
|
|
1947
|
-
'@types/react-dom': 18.2.
|
|
1956
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1957
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1958
|
+
'@types/react': 18.2.18
|
|
1959
|
+
'@types/react-dom': 18.2.7
|
|
1948
1960
|
react: 18.2.0
|
|
1949
1961
|
react-dom: 18.2.0(react@18.2.0)
|
|
1950
1962
|
dev: false
|
|
1951
1963
|
|
|
1952
|
-
/@radix-ui/react-tooltip@1.0.6(@types/react-dom@18.2.
|
|
1964
|
+
/@radix-ui/react-tooltip@1.0.6(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
1953
1965
|
resolution: {integrity: sha512-DmNFOiwEc2UDigsYj6clJENma58OelxD24O4IODoZ+3sQc3Zb+L8w1EP+y9laTuKCLAysPw4fD6/v0j4KNV8rg==}
|
|
1954
1966
|
peerDependencies:
|
|
1955
1967
|
'@types/react': '*'
|
|
@@ -1964,19 +1976,19 @@ packages:
|
|
|
1964
1976
|
dependencies:
|
|
1965
1977
|
'@babel/runtime': 7.21.0
|
|
1966
1978
|
'@radix-ui/primitive': 1.0.1
|
|
1967
|
-
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.
|
|
1968
|
-
'@radix-ui/react-context': 1.0.1(@types/react@18.2.
|
|
1969
|
-
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.
|
|
1970
|
-
'@radix-ui/react-id': 1.0.1(@types/react@18.2.
|
|
1971
|
-
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.
|
|
1972
|
-
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.
|
|
1973
|
-
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.
|
|
1974
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
1975
|
-
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.
|
|
1976
|
-
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.
|
|
1977
|
-
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.
|
|
1978
|
-
'@types/react': 18.2.
|
|
1979
|
-
'@types/react-dom': 18.2.
|
|
1979
|
+
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1980
|
+
'@radix-ui/react-context': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1981
|
+
'@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1982
|
+
'@radix-ui/react-id': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1983
|
+
'@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1984
|
+
'@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1985
|
+
'@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1986
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1987
|
+
'@radix-ui/react-slot': 1.0.2(@types/react@18.2.18)(react@18.2.0)
|
|
1988
|
+
'@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
1989
|
+
'@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
1990
|
+
'@types/react': 18.2.18
|
|
1991
|
+
'@types/react-dom': 18.2.7
|
|
1980
1992
|
react: 18.2.0
|
|
1981
1993
|
react-dom: 18.2.0(react@18.2.0)
|
|
1982
1994
|
dev: false
|
|
@@ -1990,7 +2002,7 @@ packages:
|
|
|
1990
2002
|
react: 18.2.0
|
|
1991
2003
|
dev: false
|
|
1992
2004
|
|
|
1993
|
-
/@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.
|
|
2005
|
+
/@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
1994
2006
|
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
|
|
1995
2007
|
peerDependencies:
|
|
1996
2008
|
'@types/react': '*'
|
|
@@ -2000,7 +2012,7 @@ packages:
|
|
|
2000
2012
|
optional: true
|
|
2001
2013
|
dependencies:
|
|
2002
2014
|
'@babel/runtime': 7.21.0
|
|
2003
|
-
'@types/react': 18.2.
|
|
2015
|
+
'@types/react': 18.2.18
|
|
2004
2016
|
react: 18.2.0
|
|
2005
2017
|
dev: false
|
|
2006
2018
|
|
|
@@ -2014,7 +2026,7 @@ packages:
|
|
|
2014
2026
|
react: 18.2.0
|
|
2015
2027
|
dev: false
|
|
2016
2028
|
|
|
2017
|
-
/@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.
|
|
2029
|
+
/@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
2018
2030
|
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
|
|
2019
2031
|
peerDependencies:
|
|
2020
2032
|
'@types/react': '*'
|
|
@@ -2024,8 +2036,8 @@ packages:
|
|
|
2024
2036
|
optional: true
|
|
2025
2037
|
dependencies:
|
|
2026
2038
|
'@babel/runtime': 7.21.0
|
|
2027
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
2028
|
-
'@types/react': 18.2.
|
|
2039
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
2040
|
+
'@types/react': 18.2.18
|
|
2029
2041
|
react: 18.2.0
|
|
2030
2042
|
dev: false
|
|
2031
2043
|
|
|
@@ -2039,7 +2051,7 @@ packages:
|
|
|
2039
2051
|
react: 18.2.0
|
|
2040
2052
|
dev: false
|
|
2041
2053
|
|
|
2042
|
-
/@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.
|
|
2054
|
+
/@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.18)(react@18.2.0):
|
|
2043
2055
|
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
|
|
2044
2056
|
peerDependencies:
|
|
2045
2057
|
'@types/react': '*'
|
|
@@ -2049,8 +2061,8 @@ packages:
|
|
|
2049
2061
|
optional: true
|
|
2050
2062
|
dependencies:
|
|
2051
2063
|
'@babel/runtime': 7.21.0
|
|
2052
|
-
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.
|
|
2053
|
-
'@types/react': 18.2.
|
|
2064
|
+
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
2065
|
+
'@types/react': 18.2.18
|
|
2054
2066
|
react: 18.2.0
|
|
2055
2067
|
dev: false
|
|
2056
2068
|
|
|
@@ -2063,7 +2075,7 @@ packages:
|
|
|
2063
2075
|
react: 18.2.0
|
|
2064
2076
|
dev: false
|
|
2065
2077
|
|
|
2066
|
-
/@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.
|
|
2078
|
+
/@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
2067
2079
|
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
|
|
2068
2080
|
peerDependencies:
|
|
2069
2081
|
'@types/react': '*'
|
|
@@ -2073,11 +2085,11 @@ packages:
|
|
|
2073
2085
|
optional: true
|
|
2074
2086
|
dependencies:
|
|
2075
2087
|
'@babel/runtime': 7.21.0
|
|
2076
|
-
'@types/react': 18.2.
|
|
2088
|
+
'@types/react': 18.2.18
|
|
2077
2089
|
react: 18.2.0
|
|
2078
2090
|
dev: false
|
|
2079
2091
|
|
|
2080
|
-
/@radix-ui/react-use-previous@1.0.1(@types/react@18.2.
|
|
2092
|
+
/@radix-ui/react-use-previous@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
2081
2093
|
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
|
|
2082
2094
|
peerDependencies:
|
|
2083
2095
|
'@types/react': '*'
|
|
@@ -2087,11 +2099,11 @@ packages:
|
|
|
2087
2099
|
optional: true
|
|
2088
2100
|
dependencies:
|
|
2089
2101
|
'@babel/runtime': 7.21.0
|
|
2090
|
-
'@types/react': 18.2.
|
|
2102
|
+
'@types/react': 18.2.18
|
|
2091
2103
|
react: 18.2.0
|
|
2092
2104
|
dev: false
|
|
2093
2105
|
|
|
2094
|
-
/@radix-ui/react-use-rect@1.0.1(@types/react@18.2.
|
|
2106
|
+
/@radix-ui/react-use-rect@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
2095
2107
|
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
|
|
2096
2108
|
peerDependencies:
|
|
2097
2109
|
'@types/react': '*'
|
|
@@ -2102,11 +2114,11 @@ packages:
|
|
|
2102
2114
|
dependencies:
|
|
2103
2115
|
'@babel/runtime': 7.21.0
|
|
2104
2116
|
'@radix-ui/rect': 1.0.1
|
|
2105
|
-
'@types/react': 18.2.
|
|
2117
|
+
'@types/react': 18.2.18
|
|
2106
2118
|
react: 18.2.0
|
|
2107
2119
|
dev: false
|
|
2108
2120
|
|
|
2109
|
-
/@radix-ui/react-use-size@1.0.1(@types/react@18.2.
|
|
2121
|
+
/@radix-ui/react-use-size@1.0.1(@types/react@18.2.18)(react@18.2.0):
|
|
2110
2122
|
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
|
|
2111
2123
|
peerDependencies:
|
|
2112
2124
|
'@types/react': '*'
|
|
@@ -2116,12 +2128,12 @@ packages:
|
|
|
2116
2128
|
optional: true
|
|
2117
2129
|
dependencies:
|
|
2118
2130
|
'@babel/runtime': 7.21.0
|
|
2119
|
-
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.
|
|
2120
|
-
'@types/react': 18.2.
|
|
2131
|
+
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.18)(react@18.2.0)
|
|
2132
|
+
'@types/react': 18.2.18
|
|
2121
2133
|
react: 18.2.0
|
|
2122
2134
|
dev: false
|
|
2123
2135
|
|
|
2124
|
-
/@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.
|
|
2136
|
+
/@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
2125
2137
|
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
|
|
2126
2138
|
peerDependencies:
|
|
2127
2139
|
'@types/react': '*'
|
|
@@ -2135,9 +2147,9 @@ packages:
|
|
|
2135
2147
|
optional: true
|
|
2136
2148
|
dependencies:
|
|
2137
2149
|
'@babel/runtime': 7.21.0
|
|
2138
|
-
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.
|
|
2139
|
-
'@types/react': 18.2.
|
|
2140
|
-
'@types/react-dom': 18.2.
|
|
2150
|
+
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
2151
|
+
'@types/react': 18.2.18
|
|
2152
|
+
'@types/react-dom': 18.2.7
|
|
2141
2153
|
react: 18.2.0
|
|
2142
2154
|
react-dom: 18.2.0(react@18.2.0)
|
|
2143
2155
|
dev: false
|
|
@@ -2159,12 +2171,12 @@ packages:
|
|
|
2159
2171
|
tslib: 2.5.0
|
|
2160
2172
|
dev: false
|
|
2161
2173
|
|
|
2162
|
-
/@tailwindcss/line-clamp@0.4.4(tailwindcss@3.3.
|
|
2174
|
+
/@tailwindcss/line-clamp@0.4.4(tailwindcss@3.3.3):
|
|
2163
2175
|
resolution: {integrity: sha512-5U6SY5z8N42VtrCrKlsTAA35gy2VSyYtHWCsg1H87NU1SXnEfekTVlrga9fzUDrrHcGi2Lb5KenUWb4lRQT5/g==}
|
|
2164
2176
|
peerDependencies:
|
|
2165
2177
|
tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1'
|
|
2166
2178
|
dependencies:
|
|
2167
|
-
tailwindcss: 3.3.
|
|
2179
|
+
tailwindcss: 3.3.3
|
|
2168
2180
|
dev: false
|
|
2169
2181
|
|
|
2170
2182
|
/@tanstack/react-table@8.9.3(react-dom@18.2.0)(react@18.2.0):
|
|
@@ -2301,6 +2313,24 @@ packages:
|
|
|
2301
2313
|
'@tauri-apps/cli-win32-x64-msvc': 2.0.0-alpha.10
|
|
2302
2314
|
dev: true
|
|
2303
2315
|
|
|
2316
|
+
/@tauri-apps/plugin-app@2.0.0-alpha.0:
|
|
2317
|
+
resolution: {integrity: sha512-xU9oXcM6deKqsgRqo14GaQWZGmL3a33FTLISnophp8YWJp/Ve1RL5BZoCF6g1IX2zNnDyAirU0hx1Yy5c/37wg==}
|
|
2318
|
+
dependencies:
|
|
2319
|
+
'@tauri-apps/api': 2.0.0-alpha.4
|
|
2320
|
+
dev: false
|
|
2321
|
+
|
|
2322
|
+
/@tauri-apps/plugin-os@2.0.0-alpha.0:
|
|
2323
|
+
resolution: {integrity: sha512-vHZW/W/5bAvr1UnaXhRg29yDQUkBuCGlxtVDKUEUTvKEdbMrKLlFuzr8RxcczLI9CTDqQ/EP7xzn7XYYQWR82Q==}
|
|
2324
|
+
dependencies:
|
|
2325
|
+
'@tauri-apps/api': 2.0.0-alpha.4
|
|
2326
|
+
dev: false
|
|
2327
|
+
|
|
2328
|
+
/@tauri-apps/plugin-shell@2.0.0-alpha.0:
|
|
2329
|
+
resolution: {integrity: sha512-Tyl6lsM/S+v5n/cJpIErCGq5CJwGV1xVLB+xyG364wA/y1MpYTVrk5acCSB5sF+OSOtR84ZeazkL4tjCM6EIUA==}
|
|
2330
|
+
dependencies:
|
|
2331
|
+
'@tauri-apps/api': 2.0.0-alpha.4
|
|
2332
|
+
dev: false
|
|
2333
|
+
|
|
2304
2334
|
/@tauri-apps/plugin-window@2.0.0-alpha.0:
|
|
2305
2335
|
resolution: {integrity: sha512-ZXFXOu9m8QiDB8d8LFFgwcfxIAbr0bhzj06YvmZDB3isuVtlFP9EyU4D+zmumWEWvNN2XP7xgpn68ivOVhmNNQ==}
|
|
2306
2336
|
dependencies:
|
|
@@ -2367,20 +2397,20 @@ packages:
|
|
|
2367
2397
|
resolution: {integrity: sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==}
|
|
2368
2398
|
dev: false
|
|
2369
2399
|
|
|
2370
|
-
/@types/node@20.4.
|
|
2371
|
-
resolution: {integrity: sha512-
|
|
2400
|
+
/@types/node@20.4.5:
|
|
2401
|
+
resolution: {integrity: sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg==}
|
|
2372
2402
|
dev: true
|
|
2373
2403
|
|
|
2374
2404
|
/@types/prop-types@15.7.5:
|
|
2375
2405
|
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
|
|
2376
2406
|
|
|
2377
|
-
/@types/react-dom@18.2.
|
|
2378
|
-
resolution: {integrity: sha512-
|
|
2407
|
+
/@types/react-dom@18.2.7:
|
|
2408
|
+
resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
|
|
2379
2409
|
dependencies:
|
|
2380
|
-
'@types/react': 18.2.
|
|
2410
|
+
'@types/react': 18.2.18
|
|
2381
2411
|
|
|
2382
|
-
/@types/react@18.2.
|
|
2383
|
-
resolution: {integrity: sha512-
|
|
2412
|
+
/@types/react@18.2.18:
|
|
2413
|
+
resolution: {integrity: sha512-da4NTSeBv/P34xoZPhtcLkmZuJ+oYaCxHmyHzwaDQo9RQPBeXV+06gEk2FpqEcsX9XrnNLvRpVh6bdavDSjtiQ==}
|
|
2384
2414
|
dependencies:
|
|
2385
2415
|
'@types/prop-types': 15.7.5
|
|
2386
2416
|
'@types/scheduler': 0.16.3
|
|
@@ -2486,7 +2516,7 @@ packages:
|
|
|
2486
2516
|
tslib: 2.5.0
|
|
2487
2517
|
dev: false
|
|
2488
2518
|
|
|
2489
|
-
/autoprefixer@10.4.14(postcss@8.4.
|
|
2519
|
+
/autoprefixer@10.4.14(postcss@8.4.27):
|
|
2490
2520
|
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
|
|
2491
2521
|
engines: {node: ^10 || ^12 || >=14}
|
|
2492
2522
|
hasBin: true
|
|
@@ -2498,7 +2528,7 @@ packages:
|
|
|
2498
2528
|
fraction.js: 4.2.0
|
|
2499
2529
|
normalize-range: 0.1.2
|
|
2500
2530
|
picocolors: 1.0.0
|
|
2501
|
-
postcss: 8.4.
|
|
2531
|
+
postcss: 8.4.27
|
|
2502
2532
|
postcss-value-parser: 4.2.0
|
|
2503
2533
|
dev: true
|
|
2504
2534
|
|
|
@@ -2633,10 +2663,10 @@ packages:
|
|
|
2633
2663
|
engines: {node: '>=8'}
|
|
2634
2664
|
dev: true
|
|
2635
2665
|
|
|
2636
|
-
/class-variance-authority@0.
|
|
2637
|
-
resolution: {integrity: sha512-
|
|
2666
|
+
/class-variance-authority@0.7.0:
|
|
2667
|
+
resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
|
|
2638
2668
|
dependencies:
|
|
2639
|
-
clsx:
|
|
2669
|
+
clsx: 2.0.0
|
|
2640
2670
|
dev: false
|
|
2641
2671
|
|
|
2642
2672
|
/classnames@2.3.2:
|
|
@@ -2661,18 +2691,18 @@ packages:
|
|
|
2661
2691
|
wrap-ansi: 7.0.0
|
|
2662
2692
|
dev: true
|
|
2663
2693
|
|
|
2664
|
-
/clsx@
|
|
2665
|
-
resolution: {integrity: sha512-
|
|
2694
|
+
/clsx@2.0.0:
|
|
2695
|
+
resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
|
|
2666
2696
|
engines: {node: '>=6'}
|
|
2667
2697
|
dev: false
|
|
2668
2698
|
|
|
2669
|
-
/cmdk@0.2.0(@types/react@18.2.
|
|
2699
|
+
/cmdk@0.2.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0):
|
|
2670
2700
|
resolution: {integrity: sha512-JQpKvEOb86SnvMZbYaFKYhvzFntWBeSZdyii0rZPhKJj9uwJBxu4DaVYDrRN7r3mPop56oPhRw+JYWTKs66TYw==}
|
|
2671
2701
|
peerDependencies:
|
|
2672
2702
|
react: ^18.0.0
|
|
2673
2703
|
react-dom: ^18.0.0
|
|
2674
2704
|
dependencies:
|
|
2675
|
-
'@radix-ui/react-dialog': 1.0.0(@types/react@18.2.
|
|
2705
|
+
'@radix-ui/react-dialog': 1.0.0(@types/react@18.2.18)(react-dom@18.2.0)(react@18.2.0)
|
|
2676
2706
|
command-score: 0.1.2
|
|
2677
2707
|
react: 18.2.0
|
|
2678
2708
|
react-dom: 18.2.0(react@18.2.0)
|
|
@@ -3163,6 +3193,7 @@ packages:
|
|
|
3163
3193
|
/iconv-lite@0.6.3:
|
|
3164
3194
|
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
|
|
3165
3195
|
engines: {node: '>=0.10.0'}
|
|
3196
|
+
requiresBuild: true
|
|
3166
3197
|
dependencies:
|
|
3167
3198
|
safer-buffer: 2.1.2
|
|
3168
3199
|
dev: true
|
|
@@ -3342,8 +3373,8 @@ packages:
|
|
|
3342
3373
|
engines: {node: 14 || >=16.14}
|
|
3343
3374
|
dev: true
|
|
3344
3375
|
|
|
3345
|
-
/lucide-react@0.
|
|
3346
|
-
resolution: {integrity: sha512-
|
|
3376
|
+
/lucide-react@0.263.1(react@18.2.0):
|
|
3377
|
+
resolution: {integrity: sha512-keqxAx97PlaEN89PXZ6ki1N8nRjGWtDa4021GFYLNj0RgruM5odbpl8GHTExj0hhPq3sF6Up0gnxt6TSHu+ovw==}
|
|
3347
3378
|
peerDependencies:
|
|
3348
3379
|
react: ^16.5.1 || ^17.0.0 || ^18.0.0
|
|
3349
3380
|
dependencies:
|
|
@@ -3569,20 +3600,20 @@ packages:
|
|
|
3569
3600
|
engines: {node: '>= 0.6'}
|
|
3570
3601
|
dev: true
|
|
3571
3602
|
|
|
3572
|
-
/next-themes@0.2.1(next@13.4.
|
|
3603
|
+
/next-themes@0.2.1(next@13.4.12)(react-dom@18.2.0)(react@18.2.0):
|
|
3573
3604
|
resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==}
|
|
3574
3605
|
peerDependencies:
|
|
3575
3606
|
next: '*'
|
|
3576
3607
|
react: '*'
|
|
3577
3608
|
react-dom: '*'
|
|
3578
3609
|
dependencies:
|
|
3579
|
-
next: 13.4.
|
|
3610
|
+
next: 13.4.12(@babel/core@7.22.1)(react-dom@18.2.0)(react@18.2.0)
|
|
3580
3611
|
react: 18.2.0
|
|
3581
3612
|
react-dom: 18.2.0(react@18.2.0)
|
|
3582
3613
|
dev: false
|
|
3583
3614
|
|
|
3584
|
-
/next@13.4.
|
|
3585
|
-
resolution: {integrity: sha512-
|
|
3615
|
+
/next@13.4.12(@babel/core@7.22.1)(react-dom@18.2.0)(react@18.2.0):
|
|
3616
|
+
resolution: {integrity: sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw==}
|
|
3586
3617
|
engines: {node: '>=16.8.0'}
|
|
3587
3618
|
hasBin: true
|
|
3588
3619
|
peerDependencies:
|
|
@@ -3599,7 +3630,7 @@ packages:
|
|
|
3599
3630
|
sass:
|
|
3600
3631
|
optional: true
|
|
3601
3632
|
dependencies:
|
|
3602
|
-
'@next/env': 13.4.
|
|
3633
|
+
'@next/env': 13.4.12
|
|
3603
3634
|
'@swc/helpers': 0.5.1
|
|
3604
3635
|
busboy: 1.6.0
|
|
3605
3636
|
caniuse-lite: 1.0.30001480
|
|
@@ -3610,15 +3641,15 @@ packages:
|
|
|
3610
3641
|
watchpack: 2.4.0
|
|
3611
3642
|
zod: 3.21.4
|
|
3612
3643
|
optionalDependencies:
|
|
3613
|
-
'@next/swc-darwin-arm64': 13.4.
|
|
3614
|
-
'@next/swc-darwin-x64': 13.4.
|
|
3615
|
-
'@next/swc-linux-arm64-gnu': 13.4.
|
|
3616
|
-
'@next/swc-linux-arm64-musl': 13.4.
|
|
3617
|
-
'@next/swc-linux-x64-gnu': 13.4.
|
|
3618
|
-
'@next/swc-linux-x64-musl': 13.4.
|
|
3619
|
-
'@next/swc-win32-arm64-msvc': 13.4.
|
|
3620
|
-
'@next/swc-win32-ia32-msvc': 13.4.
|
|
3621
|
-
'@next/swc-win32-x64-msvc': 13.4.
|
|
3644
|
+
'@next/swc-darwin-arm64': 13.4.12
|
|
3645
|
+
'@next/swc-darwin-x64': 13.4.12
|
|
3646
|
+
'@next/swc-linux-arm64-gnu': 13.4.12
|
|
3647
|
+
'@next/swc-linux-arm64-musl': 13.4.12
|
|
3648
|
+
'@next/swc-linux-x64-gnu': 13.4.12
|
|
3649
|
+
'@next/swc-linux-x64-musl': 13.4.12
|
|
3650
|
+
'@next/swc-win32-arm64-msvc': 13.4.12
|
|
3651
|
+
'@next/swc-win32-ia32-msvc': 13.4.12
|
|
3652
|
+
'@next/swc-win32-x64-msvc': 13.4.12
|
|
3622
3653
|
transitivePeerDependencies:
|
|
3623
3654
|
- '@babel/core'
|
|
3624
3655
|
- babel-plugin-macros
|
|
@@ -3855,27 +3886,27 @@ packages:
|
|
|
3855
3886
|
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
|
|
3856
3887
|
engines: {node: '>= 6'}
|
|
3857
3888
|
|
|
3858
|
-
/postcss-import@15.1.0(postcss@8.4.
|
|
3889
|
+
/postcss-import@15.1.0(postcss@8.4.27):
|
|
3859
3890
|
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
|
|
3860
3891
|
engines: {node: '>=14.0.0'}
|
|
3861
3892
|
peerDependencies:
|
|
3862
3893
|
postcss: ^8.0.0
|
|
3863
3894
|
dependencies:
|
|
3864
|
-
postcss: 8.4.
|
|
3895
|
+
postcss: 8.4.27
|
|
3865
3896
|
postcss-value-parser: 4.2.0
|
|
3866
3897
|
read-cache: 1.0.0
|
|
3867
3898
|
resolve: 1.22.2
|
|
3868
3899
|
|
|
3869
|
-
/postcss-js@4.0.1(postcss@8.4.
|
|
3900
|
+
/postcss-js@4.0.1(postcss@8.4.27):
|
|
3870
3901
|
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
|
|
3871
3902
|
engines: {node: ^12 || ^14 || >= 16}
|
|
3872
3903
|
peerDependencies:
|
|
3873
3904
|
postcss: ^8.4.21
|
|
3874
3905
|
dependencies:
|
|
3875
3906
|
camelcase-css: 2.0.1
|
|
3876
|
-
postcss: 8.4.
|
|
3907
|
+
postcss: 8.4.27
|
|
3877
3908
|
|
|
3878
|
-
/postcss-load-config@4.0.1(postcss@8.4.
|
|
3909
|
+
/postcss-load-config@4.0.1(postcss@8.4.27):
|
|
3879
3910
|
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
|
|
3880
3911
|
engines: {node: '>= 14'}
|
|
3881
3912
|
peerDependencies:
|
|
@@ -3888,16 +3919,16 @@ packages:
|
|
|
3888
3919
|
optional: true
|
|
3889
3920
|
dependencies:
|
|
3890
3921
|
lilconfig: 2.1.0
|
|
3891
|
-
postcss: 8.4.
|
|
3922
|
+
postcss: 8.4.27
|
|
3892
3923
|
yaml: 2.2.2
|
|
3893
3924
|
|
|
3894
|
-
/postcss-nested@6.0.1(postcss@8.4.
|
|
3925
|
+
/postcss-nested@6.0.1(postcss@8.4.27):
|
|
3895
3926
|
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
|
|
3896
3927
|
engines: {node: '>=12.0'}
|
|
3897
3928
|
peerDependencies:
|
|
3898
3929
|
postcss: ^8.2.14
|
|
3899
3930
|
dependencies:
|
|
3900
|
-
postcss: 8.4.
|
|
3931
|
+
postcss: 8.4.27
|
|
3901
3932
|
postcss-selector-parser: 6.0.11
|
|
3902
3933
|
|
|
3903
3934
|
/postcss-selector-parser@6.0.11:
|
|
@@ -3923,16 +3954,16 @@ packages:
|
|
|
3923
3954
|
source-map-js: 1.0.2
|
|
3924
3955
|
dev: false
|
|
3925
3956
|
|
|
3926
|
-
/postcss@8.4.
|
|
3927
|
-
resolution: {integrity: sha512-
|
|
3957
|
+
/postcss@8.4.27:
|
|
3958
|
+
resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==}
|
|
3928
3959
|
engines: {node: ^10 || ^12 || >=14}
|
|
3929
3960
|
dependencies:
|
|
3930
3961
|
nanoid: 3.3.6
|
|
3931
3962
|
picocolors: 1.0.0
|
|
3932
3963
|
source-map-js: 1.0.2
|
|
3933
3964
|
|
|
3934
|
-
/prettier-plugin-tailwindcss@0.
|
|
3935
|
-
resolution: {integrity: sha512-
|
|
3965
|
+
/prettier-plugin-tailwindcss@0.4.1(@ianvs/prettier-plugin-sort-imports@4.1.0)(prettier@3.0.0):
|
|
3966
|
+
resolution: {integrity: sha512-hwn2EiJmv8M+AW4YDkbjJ6HlZCTzLyz1QlySn9sMuKV/Px0fjwldlB7tol8GzdgqtkdPtzT3iJ4UzdnYXP25Ag==}
|
|
3936
3967
|
engines: {node: '>=12.17.0'}
|
|
3937
3968
|
peerDependencies:
|
|
3938
3969
|
'@ianvs/prettier-plugin-sort-imports': '*'
|
|
@@ -3940,7 +3971,7 @@ packages:
|
|
|
3940
3971
|
'@shopify/prettier-plugin-liquid': '*'
|
|
3941
3972
|
'@shufo/prettier-plugin-blade': '*'
|
|
3942
3973
|
'@trivago/prettier-plugin-sort-imports': '*'
|
|
3943
|
-
prettier:
|
|
3974
|
+
prettier: ^2.2 || ^3.0
|
|
3944
3975
|
prettier-plugin-astro: '*'
|
|
3945
3976
|
prettier-plugin-css-order: '*'
|
|
3946
3977
|
prettier-plugin-import-sort: '*'
|
|
@@ -3983,7 +4014,7 @@ packages:
|
|
|
3983
4014
|
prettier-plugin-twig-melody:
|
|
3984
4015
|
optional: true
|
|
3985
4016
|
dependencies:
|
|
3986
|
-
'@ianvs/prettier-plugin-sort-imports': 4.0
|
|
4017
|
+
'@ianvs/prettier-plugin-sort-imports': 4.1.0(prettier@3.0.0)
|
|
3987
4018
|
prettier: 3.0.0
|
|
3988
4019
|
dev: true
|
|
3989
4020
|
|
|
@@ -4054,8 +4085,8 @@ packages:
|
|
|
4054
4085
|
scheduler: 0.23.0
|
|
4055
4086
|
dev: false
|
|
4056
4087
|
|
|
4057
|
-
/react-hook-form@7.
|
|
4058
|
-
resolution: {integrity: sha512
|
|
4088
|
+
/react-hook-form@7.45.2(react@18.2.0):
|
|
4089
|
+
resolution: {integrity: sha512-9s45OdTaKN+4NSTbXVqeDITd/nwIg++nxJGL8+OD5uf1DxvhsXQ641kaYHk5K28cpIOTYm71O/fYk7rFaygb3A==}
|
|
4059
4090
|
engines: {node: '>=12.22.0'}
|
|
4060
4091
|
peerDependencies:
|
|
4061
4092
|
react: ^16.8.0 || ^17 || ^18
|
|
@@ -4071,7 +4102,7 @@ packages:
|
|
|
4071
4102
|
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
|
|
4072
4103
|
dev: false
|
|
4073
4104
|
|
|
4074
|
-
/react-remove-scroll-bar@2.3.4(@types/react@18.2.
|
|
4105
|
+
/react-remove-scroll-bar@2.3.4(@types/react@18.2.18)(react@18.2.0):
|
|
4075
4106
|
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
|
|
4076
4107
|
engines: {node: '>=10'}
|
|
4077
4108
|
peerDependencies:
|
|
@@ -4081,13 +4112,13 @@ packages:
|
|
|
4081
4112
|
'@types/react':
|
|
4082
4113
|
optional: true
|
|
4083
4114
|
dependencies:
|
|
4084
|
-
'@types/react': 18.2.
|
|
4115
|
+
'@types/react': 18.2.18
|
|
4085
4116
|
react: 18.2.0
|
|
4086
|
-
react-style-singleton: 2.2.1(@types/react@18.2.
|
|
4117
|
+
react-style-singleton: 2.2.1(@types/react@18.2.18)(react@18.2.0)
|
|
4087
4118
|
tslib: 2.5.0
|
|
4088
4119
|
dev: false
|
|
4089
4120
|
|
|
4090
|
-
/react-remove-scroll@2.5.4(@types/react@18.2.
|
|
4121
|
+
/react-remove-scroll@2.5.4(@types/react@18.2.18)(react@18.2.0):
|
|
4091
4122
|
resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==}
|
|
4092
4123
|
engines: {node: '>=10'}
|
|
4093
4124
|
peerDependencies:
|
|
@@ -4097,16 +4128,16 @@ packages:
|
|
|
4097
4128
|
'@types/react':
|
|
4098
4129
|
optional: true
|
|
4099
4130
|
dependencies:
|
|
4100
|
-
'@types/react': 18.2.
|
|
4131
|
+
'@types/react': 18.2.18
|
|
4101
4132
|
react: 18.2.0
|
|
4102
|
-
react-remove-scroll-bar: 2.3.4(@types/react@18.2.
|
|
4103
|
-
react-style-singleton: 2.2.1(@types/react@18.2.
|
|
4133
|
+
react-remove-scroll-bar: 2.3.4(@types/react@18.2.18)(react@18.2.0)
|
|
4134
|
+
react-style-singleton: 2.2.1(@types/react@18.2.18)(react@18.2.0)
|
|
4104
4135
|
tslib: 2.5.0
|
|
4105
|
-
use-callback-ref: 1.3.0(@types/react@18.2.
|
|
4106
|
-
use-sidecar: 1.1.2(@types/react@18.2.
|
|
4136
|
+
use-callback-ref: 1.3.0(@types/react@18.2.18)(react@18.2.0)
|
|
4137
|
+
use-sidecar: 1.1.2(@types/react@18.2.18)(react@18.2.0)
|
|
4107
4138
|
dev: false
|
|
4108
4139
|
|
|
4109
|
-
/react-remove-scroll@2.5.5(@types/react@18.2.
|
|
4140
|
+
/react-remove-scroll@2.5.5(@types/react@18.2.18)(react@18.2.0):
|
|
4110
4141
|
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
|
|
4111
4142
|
engines: {node: '>=10'}
|
|
4112
4143
|
peerDependencies:
|
|
@@ -4116,13 +4147,13 @@ packages:
|
|
|
4116
4147
|
'@types/react':
|
|
4117
4148
|
optional: true
|
|
4118
4149
|
dependencies:
|
|
4119
|
-
'@types/react': 18.2.
|
|
4150
|
+
'@types/react': 18.2.18
|
|
4120
4151
|
react: 18.2.0
|
|
4121
|
-
react-remove-scroll-bar: 2.3.4(@types/react@18.2.
|
|
4122
|
-
react-style-singleton: 2.2.1(@types/react@18.2.
|
|
4152
|
+
react-remove-scroll-bar: 2.3.4(@types/react@18.2.18)(react@18.2.0)
|
|
4153
|
+
react-style-singleton: 2.2.1(@types/react@18.2.18)(react@18.2.0)
|
|
4123
4154
|
tslib: 2.5.0
|
|
4124
|
-
use-callback-ref: 1.3.0(@types/react@18.2.
|
|
4125
|
-
use-sidecar: 1.1.2(@types/react@18.2.
|
|
4155
|
+
use-callback-ref: 1.3.0(@types/react@18.2.18)(react@18.2.0)
|
|
4156
|
+
use-sidecar: 1.1.2(@types/react@18.2.18)(react@18.2.0)
|
|
4126
4157
|
dev: false
|
|
4127
4158
|
|
|
4128
4159
|
/react-resize-detector@8.1.0(react-dom@18.2.0)(react@18.2.0):
|
|
@@ -4150,7 +4181,7 @@ packages:
|
|
|
4150
4181
|
react-transition-group: 2.9.0(react-dom@18.2.0)(react@18.2.0)
|
|
4151
4182
|
dev: false
|
|
4152
4183
|
|
|
4153
|
-
/react-style-singleton@2.2.1(@types/react@18.2.
|
|
4184
|
+
/react-style-singleton@2.2.1(@types/react@18.2.18)(react@18.2.0):
|
|
4154
4185
|
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
|
|
4155
4186
|
engines: {node: '>=10'}
|
|
4156
4187
|
peerDependencies:
|
|
@@ -4160,7 +4191,7 @@ packages:
|
|
|
4160
4191
|
'@types/react':
|
|
4161
4192
|
optional: true
|
|
4162
4193
|
dependencies:
|
|
4163
|
-
'@types/react': 18.2.
|
|
4194
|
+
'@types/react': 18.2.18
|
|
4164
4195
|
get-nonce: 1.0.1
|
|
4165
4196
|
invariant: 2.2.4
|
|
4166
4197
|
react: 18.2.0
|
|
@@ -4313,6 +4344,7 @@ packages:
|
|
|
4313
4344
|
|
|
4314
4345
|
/safer-buffer@2.1.2:
|
|
4315
4346
|
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
|
|
4347
|
+
requiresBuild: true
|
|
4316
4348
|
dev: true
|
|
4317
4349
|
optional: true
|
|
4318
4350
|
|
|
@@ -4326,14 +4358,6 @@ packages:
|
|
|
4326
4358
|
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
|
|
4327
4359
|
hasBin: true
|
|
4328
4360
|
|
|
4329
|
-
/semver@7.5.0:
|
|
4330
|
-
resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==}
|
|
4331
|
-
engines: {node: '>=10'}
|
|
4332
|
-
hasBin: true
|
|
4333
|
-
dependencies:
|
|
4334
|
-
lru-cache: 6.0.0
|
|
4335
|
-
dev: true
|
|
4336
|
-
|
|
4337
4361
|
/semver@7.5.3:
|
|
4338
4362
|
resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==}
|
|
4339
4363
|
engines: {node: '>=10'}
|
|
@@ -4536,29 +4560,29 @@ packages:
|
|
|
4536
4560
|
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
4537
4561
|
engines: {node: '>= 0.4'}
|
|
4538
4562
|
|
|
4539
|
-
/tailwind-merge@1.
|
|
4540
|
-
resolution: {integrity: sha512-
|
|
4563
|
+
/tailwind-merge@1.14.0:
|
|
4564
|
+
resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
|
|
4541
4565
|
dev: false
|
|
4542
4566
|
|
|
4543
|
-
/tailwind-scrollbar@3.0.4(tailwindcss@3.3.
|
|
4567
|
+
/tailwind-scrollbar@3.0.4(tailwindcss@3.3.3):
|
|
4544
4568
|
resolution: {integrity: sha512-X/QBsn/C5u9x6/YvTc1Zo7b09Gqs5BfDe0UK/8LDQUv8IEBKF+p2ISTRwvAr50MH0hn/wTyCEOann7uXoa1/2Q==}
|
|
4545
4569
|
engines: {node: '>=12.13.0'}
|
|
4546
4570
|
peerDependencies:
|
|
4547
4571
|
tailwindcss: 3.x
|
|
4548
4572
|
dependencies:
|
|
4549
|
-
tailwindcss: 3.3.
|
|
4573
|
+
tailwindcss: 3.3.3
|
|
4550
4574
|
dev: false
|
|
4551
4575
|
|
|
4552
|
-
/tailwindcss-animate@1.0.6(tailwindcss@3.3.
|
|
4576
|
+
/tailwindcss-animate@1.0.6(tailwindcss@3.3.3):
|
|
4553
4577
|
resolution: {integrity: sha512-4WigSGMvbl3gCCact62ZvOngA+PRqhAn7si3TQ3/ZuPuQZcIEtVap+ENSXbzWhpojKB8CpvnIsrwBu8/RnHtuw==}
|
|
4554
4578
|
peerDependencies:
|
|
4555
4579
|
tailwindcss: '>=3.0.0 || insiders'
|
|
4556
4580
|
dependencies:
|
|
4557
|
-
tailwindcss: 3.3.
|
|
4581
|
+
tailwindcss: 3.3.3
|
|
4558
4582
|
dev: false
|
|
4559
4583
|
|
|
4560
|
-
/tailwindcss@3.3.
|
|
4561
|
-
resolution: {integrity: sha512-
|
|
4584
|
+
/tailwindcss@3.3.3:
|
|
4585
|
+
resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==}
|
|
4562
4586
|
engines: {node: '>=14.0.0'}
|
|
4563
4587
|
hasBin: true
|
|
4564
4588
|
dependencies:
|
|
@@ -4576,13 +4600,12 @@ packages:
|
|
|
4576
4600
|
normalize-path: 3.0.0
|
|
4577
4601
|
object-hash: 3.0.0
|
|
4578
4602
|
picocolors: 1.0.0
|
|
4579
|
-
postcss: 8.4.
|
|
4580
|
-
postcss-import: 15.1.0(postcss@8.4.
|
|
4581
|
-
postcss-js: 4.0.1(postcss@8.4.
|
|
4582
|
-
postcss-load-config: 4.0.1(postcss@8.4.
|
|
4583
|
-
postcss-nested: 6.0.1(postcss@8.4.
|
|
4603
|
+
postcss: 8.4.27
|
|
4604
|
+
postcss-import: 15.1.0(postcss@8.4.27)
|
|
4605
|
+
postcss-js: 4.0.1(postcss@8.4.27)
|
|
4606
|
+
postcss-load-config: 4.0.1(postcss@8.4.27)
|
|
4607
|
+
postcss-nested: 6.0.1(postcss@8.4.27)
|
|
4584
4608
|
postcss-selector-parser: 6.0.11
|
|
4585
|
-
postcss-value-parser: 4.2.0
|
|
4586
4609
|
resolve: 1.22.2
|
|
4587
4610
|
sucrase: 3.32.0
|
|
4588
4611
|
transitivePeerDependencies:
|
|
@@ -4600,6 +4623,25 @@ packages:
|
|
|
4600
4623
|
yallist: 4.0.0
|
|
4601
4624
|
dev: true
|
|
4602
4625
|
|
|
4626
|
+
/tauri-controls@0.0.7(@tauri-apps/plugin-os@2.0.0-alpha.0)(@tauri-apps/plugin-window@2.0.0-alpha.0)(clsx@2.0.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-merge@1.14.0):
|
|
4627
|
+
resolution: {integrity: sha512-tpVYIrTojmBWkkifS6lWhPMwL8uYHoKbv0U3a5IOsh4pAR5LuHz+oRuLCrpg8ppUuLWNl4rdX0pB2SJleeek0g==}
|
|
4628
|
+
peerDependencies:
|
|
4629
|
+
'@tauri-apps/plugin-os': 2.0.0-alpha.0
|
|
4630
|
+
'@tauri-apps/plugin-window': 2.0.0-alpha.0
|
|
4631
|
+
clsx: ^2.0.0
|
|
4632
|
+
react: ^18.2.0
|
|
4633
|
+
react-dom: ^18.2.0
|
|
4634
|
+
tailwind-merge: ^1.14.0
|
|
4635
|
+
dependencies:
|
|
4636
|
+
'@tauri-apps/api': 2.0.0-alpha.5
|
|
4637
|
+
'@tauri-apps/plugin-os': 2.0.0-alpha.0
|
|
4638
|
+
'@tauri-apps/plugin-window': 2.0.0-alpha.0
|
|
4639
|
+
clsx: 2.0.0
|
|
4640
|
+
react: 18.2.0
|
|
4641
|
+
react-dom: 18.2.0(react@18.2.0)
|
|
4642
|
+
tailwind-merge: 1.14.0
|
|
4643
|
+
dev: false
|
|
4644
|
+
|
|
4603
4645
|
/taze@0.11.2:
|
|
4604
4646
|
resolution: {integrity: sha512-HM4chXXDaHCAl1AFbSlyHUFjoaEKTewVE0j6ni5S5mRdPdJdva4AfcmXgBZYnRBiJagl6QuVtsqLjqHUiiO20A==}
|
|
4605
4647
|
hasBin: true
|
|
@@ -4708,7 +4750,7 @@ packages:
|
|
|
4708
4750
|
escalade: 3.1.1
|
|
4709
4751
|
picocolors: 1.0.0
|
|
4710
4752
|
|
|
4711
|
-
/use-callback-ref@1.3.0(@types/react@18.2.
|
|
4753
|
+
/use-callback-ref@1.3.0(@types/react@18.2.18)(react@18.2.0):
|
|
4712
4754
|
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
|
|
4713
4755
|
engines: {node: '>=10'}
|
|
4714
4756
|
peerDependencies:
|
|
@@ -4718,12 +4760,12 @@ packages:
|
|
|
4718
4760
|
'@types/react':
|
|
4719
4761
|
optional: true
|
|
4720
4762
|
dependencies:
|
|
4721
|
-
'@types/react': 18.2.
|
|
4763
|
+
'@types/react': 18.2.18
|
|
4722
4764
|
react: 18.2.0
|
|
4723
4765
|
tslib: 2.5.0
|
|
4724
4766
|
dev: false
|
|
4725
4767
|
|
|
4726
|
-
/use-sidecar@1.1.2(@types/react@18.2.
|
|
4768
|
+
/use-sidecar@1.1.2(@types/react@18.2.18)(react@18.2.0):
|
|
4727
4769
|
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
|
|
4728
4770
|
engines: {node: '>=10'}
|
|
4729
4771
|
peerDependencies:
|
|
@@ -4733,7 +4775,7 @@ packages:
|
|
|
4733
4775
|
'@types/react':
|
|
4734
4776
|
optional: true
|
|
4735
4777
|
dependencies:
|
|
4736
|
-
'@types/react': 18.2.
|
|
4778
|
+
'@types/react': 18.2.18
|
|
4737
4779
|
detect-node-es: 1.1.0
|
|
4738
4780
|
react: 18.2.0
|
|
4739
4781
|
tslib: 2.5.0
|