@cogito.ai/cli 0.3.5 → 0.4.1
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/dist/index.js +20 -1
- package/dist/templates/web-nextjs/apps/docs/.source/browser.ts +1 -1
- package/dist/templates/web-nextjs/apps/docs/.source/server.ts +3 -2
- package/dist/templates/web-nextjs/apps/docs/content/docs/decisions/meta.json +1 -1
- package/dist/templates/web-nextjs/apps/docs/content/docs/decisions/turbo-package-manager.mdx +70 -0
- package/dist/templates/web-nextjs/apps/docs/package.json +1 -1
- package/dist/templates/web-nextjs/apps/web/messages/en.json +5 -1
- package/dist/templates/web-nextjs/apps/web/messages/zh.json +5 -1
- package/dist/templates/web-nextjs/apps/web/package.json +27 -0
- package/dist/templates/web-nextjs/apps/web/postcss.config.mjs +8 -0
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(auth)/login/page.tsx +87 -93
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(auth)/signup/page.tsx +116 -98
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(protected)/dashboard/page.tsx +38 -29
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/(protected)/layout.tsx +2 -5
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/layout.tsx +4 -7
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/privacy/page.tsx +23 -0
- package/dist/templates/web-nextjs/apps/web/src/app/[locale]/terms/page.tsx +23 -0
- package/dist/templates/web-nextjs/apps/web/src/app/route.ts +13 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/app-sidebar.tsx +188 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/chart-area-interactive.tsx +291 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/data-table.tsx +807 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/data.json +614 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/nav-documents.tsx +92 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/nav-main.tsx +58 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/nav-secondary.tsx +42 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/nav-user.tsx +118 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/page.tsx +40 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/section-cards.tsx +102 -0
- package/dist/templates/web-nextjs/apps/web/src/components/dashboard/site-header.tsx +30 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/alert-dialog.tsx +196 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/avatar.tsx +109 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/badge.tsx +48 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/breadcrumb.tsx +109 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/button.tsx +14 -2
- package/dist/templates/web-nextjs/apps/web/src/components/ui/card.tsx +92 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/chart.tsx +374 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/checkbox.tsx +32 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/collapsible.tsx +33 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/command.tsx +184 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/dialog.tsx +158 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/drawer.tsx +135 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/dropdown-menu.tsx +257 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/field.tsx +248 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/input-otp.tsx +77 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/pagination.tsx +127 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/popover.tsx +89 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/progress.tsx +31 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/radio-group.tsx +45 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/scroll-area.tsx +58 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/select.tsx +190 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/separator.tsx +29 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/sheet.tsx +143 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/sidebar.tsx +726 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/skeleton.tsx +13 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/slider.tsx +63 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/sonner.tsx +11 -25
- package/dist/templates/web-nextjs/apps/web/src/components/ui/switch.tsx +35 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/table.tsx +116 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/tabs.tsx +91 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/textarea.tsx +18 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/toggle-group.tsx +83 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/toggle.tsx +47 -0
- package/dist/templates/web-nextjs/apps/web/src/components/ui/tooltip.tsx +57 -0
- package/dist/templates/web-nextjs/apps/web/src/features/auth/server.ts +15 -0
- package/dist/templates/web-nextjs/apps/web/src/hooks/use-mobile.ts +21 -0
- package/dist/templates/web-nextjs/package.json +10 -0
- package/dist/templates/web-nextjs/packages/openspec-docs-sync/package.json +0 -3
- package/dist/templates/web-nextjs/pnpm-lock.yaml +1561 -96
- package/dist/templates/web-nextjs/pnpm-workspace.yaml +15 -0
- package/dist/templates/web-nextjs/turbo.json +1 -0
- package/package.json +2 -2
|
@@ -84,18 +84,90 @@ importers:
|
|
|
84
84
|
'@base-ui/react':
|
|
85
85
|
specifier: ^1.5.0
|
|
86
86
|
version: 1.5.0(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
87
|
+
'@dnd-kit/core':
|
|
88
|
+
specifier: ^6.3.1
|
|
89
|
+
version: 6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
90
|
+
'@dnd-kit/modifiers':
|
|
91
|
+
specifier: ^9.0.0
|
|
92
|
+
version: 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)
|
|
93
|
+
'@dnd-kit/sortable':
|
|
94
|
+
specifier: ^10.0.0
|
|
95
|
+
version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)
|
|
96
|
+
'@dnd-kit/utilities':
|
|
97
|
+
specifier: ^3.2.2
|
|
98
|
+
version: 3.2.2(react@19.2.7)
|
|
87
99
|
'@hookform/resolvers':
|
|
88
100
|
specifier: ^5.4.0
|
|
89
101
|
version: 5.4.0(react-hook-form@7.77.0(react@19.2.7))
|
|
102
|
+
'@radix-ui/react-avatar':
|
|
103
|
+
specifier: ^1.1.11
|
|
104
|
+
version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
105
|
+
'@radix-ui/react-checkbox':
|
|
106
|
+
specifier: ^1.3.3
|
|
107
|
+
version: 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
108
|
+
'@radix-ui/react-collapsible':
|
|
109
|
+
specifier: ^1.1.12
|
|
110
|
+
version: 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
111
|
+
'@radix-ui/react-dropdown-menu':
|
|
112
|
+
specifier: ^2.1.16
|
|
113
|
+
version: 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
114
|
+
'@radix-ui/react-progress':
|
|
115
|
+
specifier: ^1.1.8
|
|
116
|
+
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
117
|
+
'@radix-ui/react-radio-group':
|
|
118
|
+
specifier: ^1.3.8
|
|
119
|
+
version: 1.3.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
120
|
+
'@radix-ui/react-scroll-area':
|
|
121
|
+
specifier: ^1.2.10
|
|
122
|
+
version: 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
123
|
+
'@radix-ui/react-select':
|
|
124
|
+
specifier: ^2.2.6
|
|
125
|
+
version: 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
126
|
+
'@radix-ui/react-separator':
|
|
127
|
+
specifier: ^1.1.8
|
|
128
|
+
version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
129
|
+
'@radix-ui/react-slider':
|
|
130
|
+
specifier: ^1.3.6
|
|
131
|
+
version: 1.3.6(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
132
|
+
'@radix-ui/react-slot':
|
|
133
|
+
specifier: ^1.2.4
|
|
134
|
+
version: 1.2.4(@types/react@19.2.16)(react@19.2.7)
|
|
135
|
+
'@radix-ui/react-switch':
|
|
136
|
+
specifier: ^1.2.6
|
|
137
|
+
version: 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
138
|
+
'@radix-ui/react-tabs':
|
|
139
|
+
specifier: ^1.1.13
|
|
140
|
+
version: 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
141
|
+
'@radix-ui/react-toggle':
|
|
142
|
+
specifier: ^1.1.10
|
|
143
|
+
version: 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
144
|
+
'@radix-ui/react-toggle-group':
|
|
145
|
+
specifier: ^1.1.11
|
|
146
|
+
version: 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
90
147
|
'@supabase/ssr':
|
|
91
148
|
specifier: ^0.10.3
|
|
92
149
|
version: 0.10.3(@supabase/supabase-js@2.107.0)
|
|
150
|
+
'@tabler/icons-react':
|
|
151
|
+
specifier: ^3.44.0
|
|
152
|
+
version: 3.44.0(react@19.2.7)
|
|
153
|
+
'@tailwindcss/postcss':
|
|
154
|
+
specifier: ^4.3.0
|
|
155
|
+
version: 4.3.0
|
|
156
|
+
'@tanstack/react-table':
|
|
157
|
+
specifier: ^8.21.3
|
|
158
|
+
version: 8.21.3(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
93
159
|
class-variance-authority:
|
|
94
160
|
specifier: ^0.7.1
|
|
95
161
|
version: 0.7.1
|
|
96
162
|
clsx:
|
|
97
163
|
specifier: ^2.1.1
|
|
98
164
|
version: 2.1.1
|
|
165
|
+
cmdk:
|
|
166
|
+
specifier: ^1.1.1
|
|
167
|
+
version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
168
|
+
input-otp:
|
|
169
|
+
specifier: ^1.4.2
|
|
170
|
+
version: 1.4.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
99
171
|
lucide-react:
|
|
100
172
|
specifier: ^1.17.0
|
|
101
173
|
version: 1.17.0(react@19.2.7)
|
|
@@ -104,10 +176,13 @@ importers:
|
|
|
104
176
|
version: 16.2.7(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
105
177
|
next-intl:
|
|
106
178
|
specifier: ^4.13.0
|
|
107
|
-
version: 4.13.0(
|
|
179
|
+
version: 4.13.0(next@16.2.7(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)(typescript@6.0.3)
|
|
108
180
|
next-themes:
|
|
109
181
|
specifier: ^0.4.6
|
|
110
182
|
version: 0.4.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
183
|
+
radix-ui:
|
|
184
|
+
specifier: ^1.4.3
|
|
185
|
+
version: 1.4.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
111
186
|
react:
|
|
112
187
|
specifier: '19'
|
|
113
188
|
version: 19.2.7
|
|
@@ -117,6 +192,9 @@ importers:
|
|
|
117
192
|
react-hook-form:
|
|
118
193
|
specifier: ^7.77.0
|
|
119
194
|
version: 7.77.0(react@19.2.7)
|
|
195
|
+
recharts:
|
|
196
|
+
specifier: ^3.8.1
|
|
197
|
+
version: 3.8.1(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react-is@19.2.7)(react@19.2.7)(redux@5.0.1)
|
|
120
198
|
shadcn:
|
|
121
199
|
specifier: ^4.10.0
|
|
122
200
|
version: 4.10.0(@types/node@25.9.1)(typescript@6.0.3)
|
|
@@ -129,6 +207,9 @@ importers:
|
|
|
129
207
|
tw-animate-css:
|
|
130
208
|
specifier: ^1.4.0
|
|
131
209
|
version: 1.4.0
|
|
210
|
+
vaul:
|
|
211
|
+
specifier: ^1.1.2
|
|
212
|
+
version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
132
213
|
zod:
|
|
133
214
|
specifier: ^4.4.3
|
|
134
215
|
version: 4.4.3
|
|
@@ -369,6 +450,34 @@ packages:
|
|
|
369
450
|
'@types/react':
|
|
370
451
|
optional: true
|
|
371
452
|
|
|
453
|
+
'@dnd-kit/accessibility@3.1.1':
|
|
454
|
+
resolution: {integrity: sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==}
|
|
455
|
+
peerDependencies:
|
|
456
|
+
react: '>=16.8.0'
|
|
457
|
+
|
|
458
|
+
'@dnd-kit/core@6.3.1':
|
|
459
|
+
resolution: {integrity: sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==}
|
|
460
|
+
peerDependencies:
|
|
461
|
+
react: '>=16.8.0'
|
|
462
|
+
react-dom: '>=16.8.0'
|
|
463
|
+
|
|
464
|
+
'@dnd-kit/modifiers@9.0.0':
|
|
465
|
+
resolution: {integrity: sha512-ybiLc66qRGuZoC20wdSSG6pDXFikui/dCNGthxv4Ndy8ylErY0N3KVxY2bgo7AWwIbxDmXDg3ylAFmnrjcbVvw==}
|
|
466
|
+
peerDependencies:
|
|
467
|
+
'@dnd-kit/core': ^6.3.0
|
|
468
|
+
react: '>=16.8.0'
|
|
469
|
+
|
|
470
|
+
'@dnd-kit/sortable@10.0.0':
|
|
471
|
+
resolution: {integrity: sha512-+xqhmIIzvAYMGfBYYnbKuNicfSsk4RksY2XdmJhT+HAC01nix6fHCztU68jooFiMUB01Ky3F0FyOvhG/BZrWkg==}
|
|
472
|
+
peerDependencies:
|
|
473
|
+
'@dnd-kit/core': ^6.3.0
|
|
474
|
+
react: '>=16.8.0'
|
|
475
|
+
|
|
476
|
+
'@dnd-kit/utilities@3.2.2':
|
|
477
|
+
resolution: {integrity: sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==}
|
|
478
|
+
peerDependencies:
|
|
479
|
+
react: '>=16.8.0'
|
|
480
|
+
|
|
372
481
|
'@dotenvx/dotenvx@1.71.0':
|
|
373
482
|
resolution: {integrity: sha512-KEUw/mGu+EDRhYWRTNGHIimVCs9NvMFaIXOGrHSXoCteKLE5EsJnmPjOPpYorjXVg/0xG0fbdVw720azw1z4ag==}
|
|
374
483
|
hasBin: true
|
|
@@ -686,89 +795,105 @@ packages:
|
|
|
686
795
|
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
|
|
687
796
|
cpu: [arm64]
|
|
688
797
|
os: [linux]
|
|
798
|
+
libc: [glibc]
|
|
689
799
|
|
|
690
800
|
'@img/sharp-libvips-linux-arm@1.2.4':
|
|
691
801
|
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
|
|
692
802
|
cpu: [arm]
|
|
693
803
|
os: [linux]
|
|
804
|
+
libc: [glibc]
|
|
694
805
|
|
|
695
806
|
'@img/sharp-libvips-linux-ppc64@1.2.4':
|
|
696
807
|
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
|
|
697
808
|
cpu: [ppc64]
|
|
698
809
|
os: [linux]
|
|
810
|
+
libc: [glibc]
|
|
699
811
|
|
|
700
812
|
'@img/sharp-libvips-linux-riscv64@1.2.4':
|
|
701
813
|
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
|
|
702
814
|
cpu: [riscv64]
|
|
703
815
|
os: [linux]
|
|
816
|
+
libc: [glibc]
|
|
704
817
|
|
|
705
818
|
'@img/sharp-libvips-linux-s390x@1.2.4':
|
|
706
819
|
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
|
|
707
820
|
cpu: [s390x]
|
|
708
821
|
os: [linux]
|
|
822
|
+
libc: [glibc]
|
|
709
823
|
|
|
710
824
|
'@img/sharp-libvips-linux-x64@1.2.4':
|
|
711
825
|
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
|
|
712
826
|
cpu: [x64]
|
|
713
827
|
os: [linux]
|
|
828
|
+
libc: [glibc]
|
|
714
829
|
|
|
715
830
|
'@img/sharp-libvips-linuxmusl-arm64@1.2.4':
|
|
716
831
|
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
|
|
717
832
|
cpu: [arm64]
|
|
718
833
|
os: [linux]
|
|
834
|
+
libc: [musl]
|
|
719
835
|
|
|
720
836
|
'@img/sharp-libvips-linuxmusl-x64@1.2.4':
|
|
721
837
|
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
|
|
722
838
|
cpu: [x64]
|
|
723
839
|
os: [linux]
|
|
840
|
+
libc: [musl]
|
|
724
841
|
|
|
725
842
|
'@img/sharp-linux-arm64@0.34.5':
|
|
726
843
|
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
|
|
727
844
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
728
845
|
cpu: [arm64]
|
|
729
846
|
os: [linux]
|
|
847
|
+
libc: [glibc]
|
|
730
848
|
|
|
731
849
|
'@img/sharp-linux-arm@0.34.5':
|
|
732
850
|
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
|
|
733
851
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
734
852
|
cpu: [arm]
|
|
735
853
|
os: [linux]
|
|
854
|
+
libc: [glibc]
|
|
736
855
|
|
|
737
856
|
'@img/sharp-linux-ppc64@0.34.5':
|
|
738
857
|
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
|
|
739
858
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
740
859
|
cpu: [ppc64]
|
|
741
860
|
os: [linux]
|
|
861
|
+
libc: [glibc]
|
|
742
862
|
|
|
743
863
|
'@img/sharp-linux-riscv64@0.34.5':
|
|
744
864
|
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
|
|
745
865
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
746
866
|
cpu: [riscv64]
|
|
747
867
|
os: [linux]
|
|
868
|
+
libc: [glibc]
|
|
748
869
|
|
|
749
870
|
'@img/sharp-linux-s390x@0.34.5':
|
|
750
871
|
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
|
|
751
872
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
752
873
|
cpu: [s390x]
|
|
753
874
|
os: [linux]
|
|
875
|
+
libc: [glibc]
|
|
754
876
|
|
|
755
877
|
'@img/sharp-linux-x64@0.34.5':
|
|
756
878
|
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
|
|
757
879
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
758
880
|
cpu: [x64]
|
|
759
881
|
os: [linux]
|
|
882
|
+
libc: [glibc]
|
|
760
883
|
|
|
761
884
|
'@img/sharp-linuxmusl-arm64@0.34.5':
|
|
762
885
|
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
|
|
763
886
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
764
887
|
cpu: [arm64]
|
|
765
888
|
os: [linux]
|
|
889
|
+
libc: [musl]
|
|
766
890
|
|
|
767
891
|
'@img/sharp-linuxmusl-x64@0.34.5':
|
|
768
892
|
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
|
|
769
893
|
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
770
894
|
cpu: [x64]
|
|
771
895
|
os: [linux]
|
|
896
|
+
libc: [musl]
|
|
772
897
|
|
|
773
898
|
'@img/sharp-wasm32@0.34.5':
|
|
774
899
|
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
|
|
@@ -1021,24 +1146,28 @@ packages:
|
|
|
1021
1146
|
engines: {node: '>= 10'}
|
|
1022
1147
|
cpu: [arm64]
|
|
1023
1148
|
os: [linux]
|
|
1149
|
+
libc: [glibc]
|
|
1024
1150
|
|
|
1025
1151
|
'@next/swc-linux-arm64-musl@16.2.7':
|
|
1026
1152
|
resolution: {integrity: sha512-qyogG9QtBzWxgJfeGBvOEHI3851gTfCF3wLZ5RDLTBJGAmE9p1qDwKCOdrBrvBzRvYDT+gUDp72pzlSEfAXgNA==}
|
|
1027
1153
|
engines: {node: '>= 10'}
|
|
1028
1154
|
cpu: [arm64]
|
|
1029
1155
|
os: [linux]
|
|
1156
|
+
libc: [musl]
|
|
1030
1157
|
|
|
1031
1158
|
'@next/swc-linux-x64-gnu@16.2.7':
|
|
1032
1159
|
resolution: {integrity: sha512-Vhe4ZDuBpmMogrGi5D4R2Kq4JAQlj6+wvgaFYy31zfES0zPmt6TLA+cuYpM/OLrPZjo2MYQTHVqNUSCR6+fDZQ==}
|
|
1033
1160
|
engines: {node: '>= 10'}
|
|
1034
1161
|
cpu: [x64]
|
|
1035
1162
|
os: [linux]
|
|
1163
|
+
libc: [glibc]
|
|
1036
1164
|
|
|
1037
1165
|
'@next/swc-linux-x64-musl@16.2.7':
|
|
1038
1166
|
resolution: {integrity: sha512-srvian89JahFLw1YLBEuhvPJ0DO5lpUeJQMXy4xYo7g628ZlNgXdNkqoxSAv9OYrBfByh6vxISMwW/mRbzCY+g==}
|
|
1039
1167
|
engines: {node: '>= 10'}
|
|
1040
1168
|
cpu: [x64]
|
|
1041
1169
|
os: [linux]
|
|
1170
|
+
libc: [musl]
|
|
1042
1171
|
|
|
1043
1172
|
'@next/swc-win32-arm64-msvc@16.2.7':
|
|
1044
1173
|
resolution: {integrity: sha512-GX3wvLpULFuRFJzwHaKfm7QZJ18F4ZSuxlPJ96BoBglCzBmdSjyeBKF+ZhWhvL/ckxNfLnNa7bsObO2ipYpszw==}
|
|
@@ -1124,36 +1253,42 @@ packages:
|
|
|
1124
1253
|
engines: {node: '>= 10.0.0'}
|
|
1125
1254
|
cpu: [arm]
|
|
1126
1255
|
os: [linux]
|
|
1256
|
+
libc: [glibc]
|
|
1127
1257
|
|
|
1128
1258
|
'@parcel/watcher-linux-arm-musl@2.5.6':
|
|
1129
1259
|
resolution: {integrity: sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==}
|
|
1130
1260
|
engines: {node: '>= 10.0.0'}
|
|
1131
1261
|
cpu: [arm]
|
|
1132
1262
|
os: [linux]
|
|
1263
|
+
libc: [musl]
|
|
1133
1264
|
|
|
1134
1265
|
'@parcel/watcher-linux-arm64-glibc@2.5.6':
|
|
1135
1266
|
resolution: {integrity: sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==}
|
|
1136
1267
|
engines: {node: '>= 10.0.0'}
|
|
1137
1268
|
cpu: [arm64]
|
|
1138
1269
|
os: [linux]
|
|
1270
|
+
libc: [glibc]
|
|
1139
1271
|
|
|
1140
1272
|
'@parcel/watcher-linux-arm64-musl@2.5.6':
|
|
1141
1273
|
resolution: {integrity: sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==}
|
|
1142
1274
|
engines: {node: '>= 10.0.0'}
|
|
1143
1275
|
cpu: [arm64]
|
|
1144
1276
|
os: [linux]
|
|
1277
|
+
libc: [musl]
|
|
1145
1278
|
|
|
1146
1279
|
'@parcel/watcher-linux-x64-glibc@2.5.6':
|
|
1147
1280
|
resolution: {integrity: sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==}
|
|
1148
1281
|
engines: {node: '>= 10.0.0'}
|
|
1149
1282
|
cpu: [x64]
|
|
1150
1283
|
os: [linux]
|
|
1284
|
+
libc: [glibc]
|
|
1151
1285
|
|
|
1152
1286
|
'@parcel/watcher-linux-x64-musl@2.5.6':
|
|
1153
1287
|
resolution: {integrity: sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==}
|
|
1154
1288
|
engines: {node: '>= 10.0.0'}
|
|
1155
1289
|
cpu: [x64]
|
|
1156
1290
|
os: [linux]
|
|
1291
|
+
libc: [musl]
|
|
1157
1292
|
|
|
1158
1293
|
'@parcel/watcher-win32-arm64@2.5.6':
|
|
1159
1294
|
resolution: {integrity: sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==}
|
|
@@ -1189,6 +1324,19 @@ packages:
|
|
|
1189
1324
|
'@radix-ui/primitive@1.1.3':
|
|
1190
1325
|
resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
|
|
1191
1326
|
|
|
1327
|
+
'@radix-ui/react-accessible-icon@1.1.7':
|
|
1328
|
+
resolution: {integrity: sha512-XM+E4WXl0OqUJFovy6GjmxxFyx9opfCAIUku4dlKRd5YEPqt4kALOkQOp0Of6reHuUkJuiPBEc5k0o4z4lTC8A==}
|
|
1329
|
+
peerDependencies:
|
|
1330
|
+
'@types/react': '*'
|
|
1331
|
+
'@types/react-dom': '*'
|
|
1332
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1333
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1334
|
+
peerDependenciesMeta:
|
|
1335
|
+
'@types/react':
|
|
1336
|
+
optional: true
|
|
1337
|
+
'@types/react-dom':
|
|
1338
|
+
optional: true
|
|
1339
|
+
|
|
1192
1340
|
'@radix-ui/react-accordion@1.2.12':
|
|
1193
1341
|
resolution: {integrity: sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==}
|
|
1194
1342
|
peerDependencies:
|
|
@@ -1202,6 +1350,19 @@ packages:
|
|
|
1202
1350
|
'@types/react-dom':
|
|
1203
1351
|
optional: true
|
|
1204
1352
|
|
|
1353
|
+
'@radix-ui/react-alert-dialog@1.1.15':
|
|
1354
|
+
resolution: {integrity: sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==}
|
|
1355
|
+
peerDependencies:
|
|
1356
|
+
'@types/react': '*'
|
|
1357
|
+
'@types/react-dom': '*'
|
|
1358
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1359
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1360
|
+
peerDependenciesMeta:
|
|
1361
|
+
'@types/react':
|
|
1362
|
+
optional: true
|
|
1363
|
+
'@types/react-dom':
|
|
1364
|
+
optional: true
|
|
1365
|
+
|
|
1205
1366
|
'@radix-ui/react-arrow@1.1.7':
|
|
1206
1367
|
resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
|
|
1207
1368
|
peerDependencies:
|
|
@@ -1215,6 +1376,58 @@ packages:
|
|
|
1215
1376
|
'@types/react-dom':
|
|
1216
1377
|
optional: true
|
|
1217
1378
|
|
|
1379
|
+
'@radix-ui/react-aspect-ratio@1.1.7':
|
|
1380
|
+
resolution: {integrity: sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g==}
|
|
1381
|
+
peerDependencies:
|
|
1382
|
+
'@types/react': '*'
|
|
1383
|
+
'@types/react-dom': '*'
|
|
1384
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1385
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1386
|
+
peerDependenciesMeta:
|
|
1387
|
+
'@types/react':
|
|
1388
|
+
optional: true
|
|
1389
|
+
'@types/react-dom':
|
|
1390
|
+
optional: true
|
|
1391
|
+
|
|
1392
|
+
'@radix-ui/react-avatar@1.1.10':
|
|
1393
|
+
resolution: {integrity: sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==}
|
|
1394
|
+
peerDependencies:
|
|
1395
|
+
'@types/react': '*'
|
|
1396
|
+
'@types/react-dom': '*'
|
|
1397
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1398
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1399
|
+
peerDependenciesMeta:
|
|
1400
|
+
'@types/react':
|
|
1401
|
+
optional: true
|
|
1402
|
+
'@types/react-dom':
|
|
1403
|
+
optional: true
|
|
1404
|
+
|
|
1405
|
+
'@radix-ui/react-avatar@1.1.11':
|
|
1406
|
+
resolution: {integrity: sha512-0Qk603AHGV28BOBO34p7IgD5m+V5Sg/YovfayABkoDDBM5d3NCx0Mp4gGrjzLGes1jV5eNOE1r3itqOR33VC6Q==}
|
|
1407
|
+
peerDependencies:
|
|
1408
|
+
'@types/react': '*'
|
|
1409
|
+
'@types/react-dom': '*'
|
|
1410
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1411
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1412
|
+
peerDependenciesMeta:
|
|
1413
|
+
'@types/react':
|
|
1414
|
+
optional: true
|
|
1415
|
+
'@types/react-dom':
|
|
1416
|
+
optional: true
|
|
1417
|
+
|
|
1418
|
+
'@radix-ui/react-checkbox@1.3.3':
|
|
1419
|
+
resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
|
|
1420
|
+
peerDependencies:
|
|
1421
|
+
'@types/react': '*'
|
|
1422
|
+
'@types/react-dom': '*'
|
|
1423
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1424
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1425
|
+
peerDependenciesMeta:
|
|
1426
|
+
'@types/react':
|
|
1427
|
+
optional: true
|
|
1428
|
+
'@types/react-dom':
|
|
1429
|
+
optional: true
|
|
1430
|
+
|
|
1218
1431
|
'@radix-ui/react-collapsible@1.1.12':
|
|
1219
1432
|
resolution: {integrity: sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==}
|
|
1220
1433
|
peerDependencies:
|
|
@@ -1250,6 +1463,19 @@ packages:
|
|
|
1250
1463
|
'@types/react':
|
|
1251
1464
|
optional: true
|
|
1252
1465
|
|
|
1466
|
+
'@radix-ui/react-context-menu@2.2.16':
|
|
1467
|
+
resolution: {integrity: sha512-O8morBEW+HsVG28gYDZPTrT9UUovQUlJue5YO836tiTJhuIWBm/zQHc7j388sHWtdH/xUZurK9olD2+pcqx5ww==}
|
|
1468
|
+
peerDependencies:
|
|
1469
|
+
'@types/react': '*'
|
|
1470
|
+
'@types/react-dom': '*'
|
|
1471
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1472
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1473
|
+
peerDependenciesMeta:
|
|
1474
|
+
'@types/react':
|
|
1475
|
+
optional: true
|
|
1476
|
+
'@types/react-dom':
|
|
1477
|
+
optional: true
|
|
1478
|
+
|
|
1253
1479
|
'@radix-ui/react-context@1.1.2':
|
|
1254
1480
|
resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
|
|
1255
1481
|
peerDependencies:
|
|
@@ -1259,6 +1485,15 @@ packages:
|
|
|
1259
1485
|
'@types/react':
|
|
1260
1486
|
optional: true
|
|
1261
1487
|
|
|
1488
|
+
'@radix-ui/react-context@1.1.3':
|
|
1489
|
+
resolution: {integrity: sha512-ieIFACdMpYfMEjF0rEf5KLvfVyIkOz6PDGyNnP+u+4xQ6jny3VCgA4OgXOwNx2aUkxn8zx9fiVcM8CfFYv9Lxw==}
|
|
1490
|
+
peerDependencies:
|
|
1491
|
+
'@types/react': '*'
|
|
1492
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1493
|
+
peerDependenciesMeta:
|
|
1494
|
+
'@types/react':
|
|
1495
|
+
optional: true
|
|
1496
|
+
|
|
1262
1497
|
'@radix-ui/react-dialog@1.1.15':
|
|
1263
1498
|
resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
|
|
1264
1499
|
peerDependencies:
|
|
@@ -1294,6 +1529,19 @@ packages:
|
|
|
1294
1529
|
'@types/react-dom':
|
|
1295
1530
|
optional: true
|
|
1296
1531
|
|
|
1532
|
+
'@radix-ui/react-dropdown-menu@2.1.16':
|
|
1533
|
+
resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==}
|
|
1534
|
+
peerDependencies:
|
|
1535
|
+
'@types/react': '*'
|
|
1536
|
+
'@types/react-dom': '*'
|
|
1537
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1538
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1539
|
+
peerDependenciesMeta:
|
|
1540
|
+
'@types/react':
|
|
1541
|
+
optional: true
|
|
1542
|
+
'@types/react-dom':
|
|
1543
|
+
optional: true
|
|
1544
|
+
|
|
1297
1545
|
'@radix-ui/react-focus-guards@1.1.3':
|
|
1298
1546
|
resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
|
|
1299
1547
|
peerDependencies:
|
|
@@ -1316,6 +1564,32 @@ packages:
|
|
|
1316
1564
|
'@types/react-dom':
|
|
1317
1565
|
optional: true
|
|
1318
1566
|
|
|
1567
|
+
'@radix-ui/react-form@0.1.8':
|
|
1568
|
+
resolution: {integrity: sha512-QM70k4Zwjttifr5a4sZFts9fn8FzHYvQ5PiB19O2HsYibaHSVt9fH9rzB0XZo/YcM+b7t/p7lYCT/F5eOeF5yQ==}
|
|
1569
|
+
peerDependencies:
|
|
1570
|
+
'@types/react': '*'
|
|
1571
|
+
'@types/react-dom': '*'
|
|
1572
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1573
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1574
|
+
peerDependenciesMeta:
|
|
1575
|
+
'@types/react':
|
|
1576
|
+
optional: true
|
|
1577
|
+
'@types/react-dom':
|
|
1578
|
+
optional: true
|
|
1579
|
+
|
|
1580
|
+
'@radix-ui/react-hover-card@1.1.15':
|
|
1581
|
+
resolution: {integrity: sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==}
|
|
1582
|
+
peerDependencies:
|
|
1583
|
+
'@types/react': '*'
|
|
1584
|
+
'@types/react-dom': '*'
|
|
1585
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1586
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1587
|
+
peerDependenciesMeta:
|
|
1588
|
+
'@types/react':
|
|
1589
|
+
optional: true
|
|
1590
|
+
'@types/react-dom':
|
|
1591
|
+
optional: true
|
|
1592
|
+
|
|
1319
1593
|
'@radix-ui/react-id@1.1.1':
|
|
1320
1594
|
resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
|
|
1321
1595
|
peerDependencies:
|
|
@@ -1325,8 +1599,8 @@ packages:
|
|
|
1325
1599
|
'@types/react':
|
|
1326
1600
|
optional: true
|
|
1327
1601
|
|
|
1328
|
-
'@radix-ui/react-
|
|
1329
|
-
resolution: {integrity: sha512-
|
|
1602
|
+
'@radix-ui/react-label@2.1.7':
|
|
1603
|
+
resolution: {integrity: sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==}
|
|
1330
1604
|
peerDependencies:
|
|
1331
1605
|
'@types/react': '*'
|
|
1332
1606
|
'@types/react-dom': '*'
|
|
@@ -1338,8 +1612,8 @@ packages:
|
|
|
1338
1612
|
'@types/react-dom':
|
|
1339
1613
|
optional: true
|
|
1340
1614
|
|
|
1341
|
-
'@radix-ui/react-
|
|
1342
|
-
resolution: {integrity: sha512-
|
|
1615
|
+
'@radix-ui/react-menu@2.1.16':
|
|
1616
|
+
resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==}
|
|
1343
1617
|
peerDependencies:
|
|
1344
1618
|
'@types/react': '*'
|
|
1345
1619
|
'@types/react-dom': '*'
|
|
@@ -1351,8 +1625,8 @@ packages:
|
|
|
1351
1625
|
'@types/react-dom':
|
|
1352
1626
|
optional: true
|
|
1353
1627
|
|
|
1354
|
-
'@radix-ui/react-
|
|
1355
|
-
resolution: {integrity: sha512-
|
|
1628
|
+
'@radix-ui/react-menubar@1.1.16':
|
|
1629
|
+
resolution: {integrity: sha512-EB1FktTz5xRRi2Er974AUQZWg2yVBb1yjip38/lgwtCVRd3a+maUoGHN/xs9Yv8SY8QwbSEb+YrxGadVWbEutA==}
|
|
1356
1630
|
peerDependencies:
|
|
1357
1631
|
'@types/react': '*'
|
|
1358
1632
|
'@types/react-dom': '*'
|
|
@@ -1364,8 +1638,8 @@ packages:
|
|
|
1364
1638
|
'@types/react-dom':
|
|
1365
1639
|
optional: true
|
|
1366
1640
|
|
|
1367
|
-
'@radix-ui/react-
|
|
1368
|
-
resolution: {integrity: sha512-
|
|
1641
|
+
'@radix-ui/react-navigation-menu@1.2.14':
|
|
1642
|
+
resolution: {integrity: sha512-YB9mTFQvCOAQMHU+C/jVl96WmuWeltyUEpRJJky51huhds5W2FQr1J8D/16sQlf0ozxkPK8uF3niQMdUwZPv5w==}
|
|
1369
1643
|
peerDependencies:
|
|
1370
1644
|
'@types/react': '*'
|
|
1371
1645
|
'@types/react-dom': '*'
|
|
@@ -1377,8 +1651,8 @@ packages:
|
|
|
1377
1651
|
'@types/react-dom':
|
|
1378
1652
|
optional: true
|
|
1379
1653
|
|
|
1380
|
-
'@radix-ui/react-
|
|
1381
|
-
resolution: {integrity: sha512
|
|
1654
|
+
'@radix-ui/react-one-time-password-field@0.1.8':
|
|
1655
|
+
resolution: {integrity: sha512-ycS4rbwURavDPVjCb5iS3aG4lURFDILi6sKI/WITUMZ13gMmn/xGjpLoqBAalhJaDk8I3UbCM5GzKHrnzwHbvg==}
|
|
1382
1656
|
peerDependencies:
|
|
1383
1657
|
'@types/react': '*'
|
|
1384
1658
|
'@types/react-dom': '*'
|
|
@@ -1390,8 +1664,8 @@ packages:
|
|
|
1390
1664
|
'@types/react-dom':
|
|
1391
1665
|
optional: true
|
|
1392
1666
|
|
|
1393
|
-
'@radix-ui/react-
|
|
1394
|
-
resolution: {integrity: sha512
|
|
1667
|
+
'@radix-ui/react-password-toggle-field@0.1.3':
|
|
1668
|
+
resolution: {integrity: sha512-/UuCrDBWravcaMix4TdT+qlNdVwOM1Nck9kWx/vafXsdfj1ChfhOdfi3cy9SGBpWgTXwYCuboT/oYpJy3clqfw==}
|
|
1395
1669
|
peerDependencies:
|
|
1396
1670
|
'@types/react': '*'
|
|
1397
1671
|
'@types/react-dom': '*'
|
|
@@ -1403,8 +1677,8 @@ packages:
|
|
|
1403
1677
|
'@types/react-dom':
|
|
1404
1678
|
optional: true
|
|
1405
1679
|
|
|
1406
|
-
'@radix-ui/react-
|
|
1407
|
-
resolution: {integrity: sha512-
|
|
1680
|
+
'@radix-ui/react-popover@1.1.15':
|
|
1681
|
+
resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
|
|
1408
1682
|
peerDependencies:
|
|
1409
1683
|
'@types/react': '*'
|
|
1410
1684
|
'@types/react-dom': '*'
|
|
@@ -1416,8 +1690,8 @@ packages:
|
|
|
1416
1690
|
'@types/react-dom':
|
|
1417
1691
|
optional: true
|
|
1418
1692
|
|
|
1419
|
-
'@radix-ui/react-
|
|
1420
|
-
resolution: {integrity: sha512-
|
|
1693
|
+
'@radix-ui/react-popper@1.2.8':
|
|
1694
|
+
resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
|
|
1421
1695
|
peerDependencies:
|
|
1422
1696
|
'@types/react': '*'
|
|
1423
1697
|
'@types/react-dom': '*'
|
|
@@ -1429,26 +1703,34 @@ packages:
|
|
|
1429
1703
|
'@types/react-dom':
|
|
1430
1704
|
optional: true
|
|
1431
1705
|
|
|
1432
|
-
'@radix-ui/react-
|
|
1433
|
-
resolution: {integrity: sha512-
|
|
1706
|
+
'@radix-ui/react-portal@1.1.9':
|
|
1707
|
+
resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
|
|
1434
1708
|
peerDependencies:
|
|
1435
1709
|
'@types/react': '*'
|
|
1710
|
+
'@types/react-dom': '*'
|
|
1436
1711
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1712
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1437
1713
|
peerDependenciesMeta:
|
|
1438
1714
|
'@types/react':
|
|
1439
1715
|
optional: true
|
|
1716
|
+
'@types/react-dom':
|
|
1717
|
+
optional: true
|
|
1440
1718
|
|
|
1441
|
-
'@radix-ui/react-
|
|
1442
|
-
resolution: {integrity: sha512
|
|
1719
|
+
'@radix-ui/react-presence@1.1.5':
|
|
1720
|
+
resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
|
|
1443
1721
|
peerDependencies:
|
|
1444
1722
|
'@types/react': '*'
|
|
1723
|
+
'@types/react-dom': '*'
|
|
1445
1724
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1725
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1446
1726
|
peerDependenciesMeta:
|
|
1447
1727
|
'@types/react':
|
|
1448
1728
|
optional: true
|
|
1729
|
+
'@types/react-dom':
|
|
1730
|
+
optional: true
|
|
1449
1731
|
|
|
1450
|
-
'@radix-ui/react-
|
|
1451
|
-
resolution: {integrity: sha512-
|
|
1732
|
+
'@radix-ui/react-primitive@2.1.3':
|
|
1733
|
+
resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
|
|
1452
1734
|
peerDependencies:
|
|
1453
1735
|
'@types/react': '*'
|
|
1454
1736
|
'@types/react-dom': '*'
|
|
@@ -1460,80 +1742,112 @@ packages:
|
|
|
1460
1742
|
'@types/react-dom':
|
|
1461
1743
|
optional: true
|
|
1462
1744
|
|
|
1463
|
-
'@radix-ui/react-
|
|
1464
|
-
resolution: {integrity: sha512-
|
|
1745
|
+
'@radix-ui/react-primitive@2.1.4':
|
|
1746
|
+
resolution: {integrity: sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==}
|
|
1465
1747
|
peerDependencies:
|
|
1466
1748
|
'@types/react': '*'
|
|
1749
|
+
'@types/react-dom': '*'
|
|
1467
1750
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1751
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1468
1752
|
peerDependenciesMeta:
|
|
1469
1753
|
'@types/react':
|
|
1470
1754
|
optional: true
|
|
1755
|
+
'@types/react-dom':
|
|
1756
|
+
optional: true
|
|
1471
1757
|
|
|
1472
|
-
'@radix-ui/react-
|
|
1473
|
-
resolution: {integrity: sha512-
|
|
1758
|
+
'@radix-ui/react-progress@1.1.7':
|
|
1759
|
+
resolution: {integrity: sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==}
|
|
1474
1760
|
peerDependencies:
|
|
1475
1761
|
'@types/react': '*'
|
|
1762
|
+
'@types/react-dom': '*'
|
|
1476
1763
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1764
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1477
1765
|
peerDependenciesMeta:
|
|
1478
1766
|
'@types/react':
|
|
1479
1767
|
optional: true
|
|
1768
|
+
'@types/react-dom':
|
|
1769
|
+
optional: true
|
|
1480
1770
|
|
|
1481
|
-
'@radix-ui/react-
|
|
1482
|
-
resolution: {integrity: sha512
|
|
1771
|
+
'@radix-ui/react-progress@1.1.8':
|
|
1772
|
+
resolution: {integrity: sha512-+gISHcSPUJ7ktBy9RnTqbdKW78bcGke3t6taawyZ71pio1JewwGSJizycs7rLhGTvMJYCQB1DBK4KQsxs7U8dA==}
|
|
1483
1773
|
peerDependencies:
|
|
1484
1774
|
'@types/react': '*'
|
|
1775
|
+
'@types/react-dom': '*'
|
|
1485
1776
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1777
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1486
1778
|
peerDependenciesMeta:
|
|
1487
1779
|
'@types/react':
|
|
1488
1780
|
optional: true
|
|
1781
|
+
'@types/react-dom':
|
|
1782
|
+
optional: true
|
|
1489
1783
|
|
|
1490
|
-
'@radix-ui/react-
|
|
1491
|
-
resolution: {integrity: sha512-
|
|
1784
|
+
'@radix-ui/react-radio-group@1.3.8':
|
|
1785
|
+
resolution: {integrity: sha512-VBKYIYImA5zsxACdisNQ3BjCBfmbGH3kQlnFVqlWU4tXwjy7cGX8ta80BcrO+WJXIn5iBylEH3K6ZTlee//lgQ==}
|
|
1492
1786
|
peerDependencies:
|
|
1493
1787
|
'@types/react': '*'
|
|
1788
|
+
'@types/react-dom': '*'
|
|
1494
1789
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1790
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1495
1791
|
peerDependenciesMeta:
|
|
1496
1792
|
'@types/react':
|
|
1497
1793
|
optional: true
|
|
1794
|
+
'@types/react-dom':
|
|
1795
|
+
optional: true
|
|
1498
1796
|
|
|
1499
|
-
'@radix-ui/react-
|
|
1500
|
-
resolution: {integrity: sha512-
|
|
1797
|
+
'@radix-ui/react-roving-focus@1.1.11':
|
|
1798
|
+
resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
|
|
1501
1799
|
peerDependencies:
|
|
1502
1800
|
'@types/react': '*'
|
|
1801
|
+
'@types/react-dom': '*'
|
|
1503
1802
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1803
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1504
1804
|
peerDependenciesMeta:
|
|
1505
1805
|
'@types/react':
|
|
1506
1806
|
optional: true
|
|
1807
|
+
'@types/react-dom':
|
|
1808
|
+
optional: true
|
|
1507
1809
|
|
|
1508
|
-
'@radix-ui/react-
|
|
1509
|
-
resolution: {integrity: sha512-
|
|
1810
|
+
'@radix-ui/react-scroll-area@1.2.10':
|
|
1811
|
+
resolution: {integrity: sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==}
|
|
1510
1812
|
peerDependencies:
|
|
1511
1813
|
'@types/react': '*'
|
|
1814
|
+
'@types/react-dom': '*'
|
|
1512
1815
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1816
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1513
1817
|
peerDependenciesMeta:
|
|
1514
1818
|
'@types/react':
|
|
1515
1819
|
optional: true
|
|
1820
|
+
'@types/react-dom':
|
|
1821
|
+
optional: true
|
|
1516
1822
|
|
|
1517
|
-
'@radix-ui/react-
|
|
1518
|
-
resolution: {integrity: sha512-
|
|
1823
|
+
'@radix-ui/react-select@2.2.6':
|
|
1824
|
+
resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
|
|
1519
1825
|
peerDependencies:
|
|
1520
1826
|
'@types/react': '*'
|
|
1827
|
+
'@types/react-dom': '*'
|
|
1521
1828
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1829
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1522
1830
|
peerDependenciesMeta:
|
|
1523
1831
|
'@types/react':
|
|
1524
1832
|
optional: true
|
|
1833
|
+
'@types/react-dom':
|
|
1834
|
+
optional: true
|
|
1525
1835
|
|
|
1526
|
-
'@radix-ui/react-
|
|
1527
|
-
resolution: {integrity: sha512-
|
|
1836
|
+
'@radix-ui/react-separator@1.1.7':
|
|
1837
|
+
resolution: {integrity: sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==}
|
|
1528
1838
|
peerDependencies:
|
|
1529
1839
|
'@types/react': '*'
|
|
1840
|
+
'@types/react-dom': '*'
|
|
1530
1841
|
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1842
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1531
1843
|
peerDependenciesMeta:
|
|
1532
1844
|
'@types/react':
|
|
1533
1845
|
optional: true
|
|
1846
|
+
'@types/react-dom':
|
|
1847
|
+
optional: true
|
|
1534
1848
|
|
|
1535
|
-
'@radix-ui/react-
|
|
1536
|
-
resolution: {integrity: sha512-
|
|
1849
|
+
'@radix-ui/react-separator@1.1.8':
|
|
1850
|
+
resolution: {integrity: sha512-sDvqVY4itsKwwSMEe0jtKgfTh+72Sy3gPmQpjqcQneqQ4PFmr/1I0YA+2/puilhggCe2gJcx5EBAYFkWkdpa5g==}
|
|
1537
1851
|
peerDependencies:
|
|
1538
1852
|
'@types/react': '*'
|
|
1539
1853
|
'@types/react-dom': '*'
|
|
@@ -1545,20 +1859,247 @@ packages:
|
|
|
1545
1859
|
'@types/react-dom':
|
|
1546
1860
|
optional: true
|
|
1547
1861
|
|
|
1548
|
-
'@radix-ui/
|
|
1549
|
-
resolution: {integrity: sha512-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1862
|
+
'@radix-ui/react-slider@1.3.6':
|
|
1863
|
+
resolution: {integrity: sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==}
|
|
1864
|
+
peerDependencies:
|
|
1865
|
+
'@types/react': '*'
|
|
1866
|
+
'@types/react-dom': '*'
|
|
1867
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1868
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1869
|
+
peerDependenciesMeta:
|
|
1870
|
+
'@types/react':
|
|
1871
|
+
optional: true
|
|
1872
|
+
'@types/react-dom':
|
|
1873
|
+
optional: true
|
|
1556
1874
|
|
|
1557
|
-
'@
|
|
1558
|
-
resolution: {integrity: sha512-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1875
|
+
'@radix-ui/react-slot@1.2.3':
|
|
1876
|
+
resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
|
|
1877
|
+
peerDependencies:
|
|
1878
|
+
'@types/react': '*'
|
|
1879
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1880
|
+
peerDependenciesMeta:
|
|
1881
|
+
'@types/react':
|
|
1882
|
+
optional: true
|
|
1883
|
+
|
|
1884
|
+
'@radix-ui/react-slot@1.2.4':
|
|
1885
|
+
resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
|
|
1886
|
+
peerDependencies:
|
|
1887
|
+
'@types/react': '*'
|
|
1888
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1889
|
+
peerDependenciesMeta:
|
|
1890
|
+
'@types/react':
|
|
1891
|
+
optional: true
|
|
1892
|
+
|
|
1893
|
+
'@radix-ui/react-switch@1.2.6':
|
|
1894
|
+
resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
|
|
1895
|
+
peerDependencies:
|
|
1896
|
+
'@types/react': '*'
|
|
1897
|
+
'@types/react-dom': '*'
|
|
1898
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1899
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1900
|
+
peerDependenciesMeta:
|
|
1901
|
+
'@types/react':
|
|
1902
|
+
optional: true
|
|
1903
|
+
'@types/react-dom':
|
|
1904
|
+
optional: true
|
|
1905
|
+
|
|
1906
|
+
'@radix-ui/react-tabs@1.1.13':
|
|
1907
|
+
resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
|
|
1908
|
+
peerDependencies:
|
|
1909
|
+
'@types/react': '*'
|
|
1910
|
+
'@types/react-dom': '*'
|
|
1911
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1912
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1913
|
+
peerDependenciesMeta:
|
|
1914
|
+
'@types/react':
|
|
1915
|
+
optional: true
|
|
1916
|
+
'@types/react-dom':
|
|
1917
|
+
optional: true
|
|
1918
|
+
|
|
1919
|
+
'@radix-ui/react-toast@1.2.15':
|
|
1920
|
+
resolution: {integrity: sha512-3OSz3TacUWy4WtOXV38DggwxoqJK4+eDkNMl5Z/MJZaoUPaP4/9lf81xXMe1I2ReTAptverZUpbPY4wWwWyL5g==}
|
|
1921
|
+
peerDependencies:
|
|
1922
|
+
'@types/react': '*'
|
|
1923
|
+
'@types/react-dom': '*'
|
|
1924
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1925
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1926
|
+
peerDependenciesMeta:
|
|
1927
|
+
'@types/react':
|
|
1928
|
+
optional: true
|
|
1929
|
+
'@types/react-dom':
|
|
1930
|
+
optional: true
|
|
1931
|
+
|
|
1932
|
+
'@radix-ui/react-toggle-group@1.1.11':
|
|
1933
|
+
resolution: {integrity: sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==}
|
|
1934
|
+
peerDependencies:
|
|
1935
|
+
'@types/react': '*'
|
|
1936
|
+
'@types/react-dom': '*'
|
|
1937
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1938
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1939
|
+
peerDependenciesMeta:
|
|
1940
|
+
'@types/react':
|
|
1941
|
+
optional: true
|
|
1942
|
+
'@types/react-dom':
|
|
1943
|
+
optional: true
|
|
1944
|
+
|
|
1945
|
+
'@radix-ui/react-toggle@1.1.10':
|
|
1946
|
+
resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==}
|
|
1947
|
+
peerDependencies:
|
|
1948
|
+
'@types/react': '*'
|
|
1949
|
+
'@types/react-dom': '*'
|
|
1950
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1951
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1952
|
+
peerDependenciesMeta:
|
|
1953
|
+
'@types/react':
|
|
1954
|
+
optional: true
|
|
1955
|
+
'@types/react-dom':
|
|
1956
|
+
optional: true
|
|
1957
|
+
|
|
1958
|
+
'@radix-ui/react-toolbar@1.1.11':
|
|
1959
|
+
resolution: {integrity: sha512-4ol06/1bLoFu1nwUqzdD4Y5RZ9oDdKeiHIsntug54Hcr1pgaHiPqHFEaXI1IFP/EsOfROQZ8Mig9VTIRza6Tjg==}
|
|
1960
|
+
peerDependencies:
|
|
1961
|
+
'@types/react': '*'
|
|
1962
|
+
'@types/react-dom': '*'
|
|
1963
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1964
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1965
|
+
peerDependenciesMeta:
|
|
1966
|
+
'@types/react':
|
|
1967
|
+
optional: true
|
|
1968
|
+
'@types/react-dom':
|
|
1969
|
+
optional: true
|
|
1970
|
+
|
|
1971
|
+
'@radix-ui/react-tooltip@1.2.8':
|
|
1972
|
+
resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
|
|
1973
|
+
peerDependencies:
|
|
1974
|
+
'@types/react': '*'
|
|
1975
|
+
'@types/react-dom': '*'
|
|
1976
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1977
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1978
|
+
peerDependenciesMeta:
|
|
1979
|
+
'@types/react':
|
|
1980
|
+
optional: true
|
|
1981
|
+
'@types/react-dom':
|
|
1982
|
+
optional: true
|
|
1983
|
+
|
|
1984
|
+
'@radix-ui/react-use-callback-ref@1.1.1':
|
|
1985
|
+
resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
|
|
1986
|
+
peerDependencies:
|
|
1987
|
+
'@types/react': '*'
|
|
1988
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1989
|
+
peerDependenciesMeta:
|
|
1990
|
+
'@types/react':
|
|
1991
|
+
optional: true
|
|
1992
|
+
|
|
1993
|
+
'@radix-ui/react-use-controllable-state@1.2.2':
|
|
1994
|
+
resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
|
|
1995
|
+
peerDependencies:
|
|
1996
|
+
'@types/react': '*'
|
|
1997
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
1998
|
+
peerDependenciesMeta:
|
|
1999
|
+
'@types/react':
|
|
2000
|
+
optional: true
|
|
2001
|
+
|
|
2002
|
+
'@radix-ui/react-use-effect-event@0.0.2':
|
|
2003
|
+
resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
|
|
2004
|
+
peerDependencies:
|
|
2005
|
+
'@types/react': '*'
|
|
2006
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
2007
|
+
peerDependenciesMeta:
|
|
2008
|
+
'@types/react':
|
|
2009
|
+
optional: true
|
|
2010
|
+
|
|
2011
|
+
'@radix-ui/react-use-escape-keydown@1.1.1':
|
|
2012
|
+
resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
|
|
2013
|
+
peerDependencies:
|
|
2014
|
+
'@types/react': '*'
|
|
2015
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
2016
|
+
peerDependenciesMeta:
|
|
2017
|
+
'@types/react':
|
|
2018
|
+
optional: true
|
|
2019
|
+
|
|
2020
|
+
'@radix-ui/react-use-is-hydrated@0.1.0':
|
|
2021
|
+
resolution: {integrity: sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==}
|
|
2022
|
+
peerDependencies:
|
|
2023
|
+
'@types/react': '*'
|
|
2024
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
2025
|
+
peerDependenciesMeta:
|
|
2026
|
+
'@types/react':
|
|
2027
|
+
optional: true
|
|
2028
|
+
|
|
2029
|
+
'@radix-ui/react-use-layout-effect@1.1.1':
|
|
2030
|
+
resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
|
|
2031
|
+
peerDependencies:
|
|
2032
|
+
'@types/react': '*'
|
|
2033
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
2034
|
+
peerDependenciesMeta:
|
|
2035
|
+
'@types/react':
|
|
2036
|
+
optional: true
|
|
2037
|
+
|
|
2038
|
+
'@radix-ui/react-use-previous@1.1.1':
|
|
2039
|
+
resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
|
|
2040
|
+
peerDependencies:
|
|
2041
|
+
'@types/react': '*'
|
|
2042
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
2043
|
+
peerDependenciesMeta:
|
|
2044
|
+
'@types/react':
|
|
2045
|
+
optional: true
|
|
2046
|
+
|
|
2047
|
+
'@radix-ui/react-use-rect@1.1.1':
|
|
2048
|
+
resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
|
|
2049
|
+
peerDependencies:
|
|
2050
|
+
'@types/react': '*'
|
|
2051
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
2052
|
+
peerDependenciesMeta:
|
|
2053
|
+
'@types/react':
|
|
2054
|
+
optional: true
|
|
2055
|
+
|
|
2056
|
+
'@radix-ui/react-use-size@1.1.1':
|
|
2057
|
+
resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
|
|
2058
|
+
peerDependencies:
|
|
2059
|
+
'@types/react': '*'
|
|
2060
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
2061
|
+
peerDependenciesMeta:
|
|
2062
|
+
'@types/react':
|
|
2063
|
+
optional: true
|
|
2064
|
+
|
|
2065
|
+
'@radix-ui/react-visually-hidden@1.2.3':
|
|
2066
|
+
resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
|
|
2067
|
+
peerDependencies:
|
|
2068
|
+
'@types/react': '*'
|
|
2069
|
+
'@types/react-dom': '*'
|
|
2070
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
2071
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
2072
|
+
peerDependenciesMeta:
|
|
2073
|
+
'@types/react':
|
|
2074
|
+
optional: true
|
|
2075
|
+
'@types/react-dom':
|
|
2076
|
+
optional: true
|
|
2077
|
+
|
|
2078
|
+
'@radix-ui/rect@1.1.1':
|
|
2079
|
+
resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
|
|
2080
|
+
|
|
2081
|
+
'@reduxjs/toolkit@2.12.0':
|
|
2082
|
+
resolution: {integrity: sha512-KiT+RzZbp6mQET+Mg+h2c97+9j1sNflUxQkIHI7Yuzf6Peu+OYpmkn6nbHWmLLWj+1ZODUJFwGZ7gx3L9R9EOw==}
|
|
2083
|
+
peerDependencies:
|
|
2084
|
+
react: ^16.9.0 || ^17.0.0 || ^18 || ^19
|
|
2085
|
+
react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0
|
|
2086
|
+
peerDependenciesMeta:
|
|
2087
|
+
react:
|
|
2088
|
+
optional: true
|
|
2089
|
+
react-redux:
|
|
2090
|
+
optional: true
|
|
2091
|
+
|
|
2092
|
+
'@rolldown/binding-android-arm64@1.0.3':
|
|
2093
|
+
resolution: {integrity: sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==}
|
|
2094
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
2095
|
+
cpu: [arm64]
|
|
2096
|
+
os: [android]
|
|
2097
|
+
|
|
2098
|
+
'@rolldown/binding-darwin-arm64@1.0.3':
|
|
2099
|
+
resolution: {integrity: sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==}
|
|
2100
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
2101
|
+
cpu: [arm64]
|
|
2102
|
+
os: [darwin]
|
|
1562
2103
|
|
|
1563
2104
|
'@rolldown/binding-darwin-x64@1.0.3':
|
|
1564
2105
|
resolution: {integrity: sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==}
|
|
@@ -1583,36 +2124,42 @@ packages:
|
|
|
1583
2124
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1584
2125
|
cpu: [arm64]
|
|
1585
2126
|
os: [linux]
|
|
2127
|
+
libc: [glibc]
|
|
1586
2128
|
|
|
1587
2129
|
'@rolldown/binding-linux-arm64-musl@1.0.3':
|
|
1588
2130
|
resolution: {integrity: sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==}
|
|
1589
2131
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1590
2132
|
cpu: [arm64]
|
|
1591
2133
|
os: [linux]
|
|
2134
|
+
libc: [musl]
|
|
1592
2135
|
|
|
1593
2136
|
'@rolldown/binding-linux-ppc64-gnu@1.0.3':
|
|
1594
2137
|
resolution: {integrity: sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==}
|
|
1595
2138
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1596
2139
|
cpu: [ppc64]
|
|
1597
2140
|
os: [linux]
|
|
2141
|
+
libc: [glibc]
|
|
1598
2142
|
|
|
1599
2143
|
'@rolldown/binding-linux-s390x-gnu@1.0.3':
|
|
1600
2144
|
resolution: {integrity: sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==}
|
|
1601
2145
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1602
2146
|
cpu: [s390x]
|
|
1603
2147
|
os: [linux]
|
|
2148
|
+
libc: [glibc]
|
|
1604
2149
|
|
|
1605
2150
|
'@rolldown/binding-linux-x64-gnu@1.0.3':
|
|
1606
2151
|
resolution: {integrity: sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==}
|
|
1607
2152
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1608
2153
|
cpu: [x64]
|
|
1609
2154
|
os: [linux]
|
|
2155
|
+
libc: [glibc]
|
|
1610
2156
|
|
|
1611
2157
|
'@rolldown/binding-linux-x64-musl@1.0.3':
|
|
1612
2158
|
resolution: {integrity: sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==}
|
|
1613
2159
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1614
2160
|
cpu: [x64]
|
|
1615
2161
|
os: [linux]
|
|
2162
|
+
libc: [musl]
|
|
1616
2163
|
|
|
1617
2164
|
'@rolldown/binding-openharmony-arm64@1.0.3':
|
|
1618
2165
|
resolution: {integrity: sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==}
|
|
@@ -1742,36 +2289,42 @@ packages:
|
|
|
1742
2289
|
engines: {node: '>=10'}
|
|
1743
2290
|
cpu: [arm64]
|
|
1744
2291
|
os: [linux]
|
|
2292
|
+
libc: [glibc]
|
|
1745
2293
|
|
|
1746
2294
|
'@swc/core-linux-arm64-musl@1.15.40':
|
|
1747
2295
|
resolution: {integrity: sha512-4z0MgHU+7M0pZDqBN1El7mFXDI1SBwinfcUkAyA4v8QrhOIUOZltySt2aStQLZGrdXVXM4Y4ylfiTC04ED+MoQ==}
|
|
1748
2296
|
engines: {node: '>=10'}
|
|
1749
2297
|
cpu: [arm64]
|
|
1750
2298
|
os: [linux]
|
|
2299
|
+
libc: [musl]
|
|
1751
2300
|
|
|
1752
2301
|
'@swc/core-linux-ppc64-gnu@1.15.40':
|
|
1753
2302
|
resolution: {integrity: sha512-fLI4iUgeSZu0eRWUXwe6YzPFx9gHbFiPkl8Rp3mJfP8OpNR3nTQCGPvHdDh9xniW7mVvgMY4ni7A4VzqI1KrpA==}
|
|
1754
2303
|
engines: {node: '>=10'}
|
|
1755
2304
|
cpu: [ppc64]
|
|
1756
2305
|
os: [linux]
|
|
2306
|
+
libc: [glibc]
|
|
1757
2307
|
|
|
1758
2308
|
'@swc/core-linux-s390x-gnu@1.15.40':
|
|
1759
2309
|
resolution: {integrity: sha512-YqeKMAb7d4nQSGMJQ454IlaCENpzcDqhvBE9+CPfdnYpnUXxd+BSrB6Xk0YjW8UyoEhUj4p6quATCxbsp6J3jg==}
|
|
1760
2310
|
engines: {node: '>=10'}
|
|
1761
2311
|
cpu: [s390x]
|
|
1762
2312
|
os: [linux]
|
|
2313
|
+
libc: [glibc]
|
|
1763
2314
|
|
|
1764
2315
|
'@swc/core-linux-x64-gnu@1.15.40':
|
|
1765
2316
|
resolution: {integrity: sha512-7HOuS1iGcme/j/TuL1TfmmLGiMQrjv/GmjyZeydl00FKPtpGXEldwqfI56xgd1YzrzoB2svWjxbGGyQ0TEASxg==}
|
|
1766
2317
|
engines: {node: '>=10'}
|
|
1767
2318
|
cpu: [x64]
|
|
1768
2319
|
os: [linux]
|
|
2320
|
+
libc: [glibc]
|
|
1769
2321
|
|
|
1770
2322
|
'@swc/core-linux-x64-musl@1.15.40':
|
|
1771
2323
|
resolution: {integrity: sha512-h4kZYHc7dpc9P9u4brRJaS8Pl7tPVHAeiLSzw7T5RfIJgAoSdaCMKzI/2Uay9gFhaw8uyCDl0L5q37r0EpAfIA==}
|
|
1772
2324
|
engines: {node: '>=10'}
|
|
1773
2325
|
cpu: [x64]
|
|
1774
2326
|
os: [linux]
|
|
2327
|
+
libc: [musl]
|
|
1775
2328
|
|
|
1776
2329
|
'@swc/core-win32-arm64-msvc@1.15.40':
|
|
1777
2330
|
resolution: {integrity: sha512-+mQgKZXSj6mV38Zh05QaxSjUDmGP/R2JWlXZTDLSPkDzHU6p3GxN9eeSf5dfyDVU86946fmCvSzyl/ucImx8+A==}
|
|
@@ -1809,6 +2362,14 @@ packages:
|
|
|
1809
2362
|
'@swc/types@0.1.26':
|
|
1810
2363
|
resolution: {integrity: sha512-lyMwd7WGgG79RS7EERZV3T8wMdmPq3xwyg+1nmAM64kIhx5yl+juO2PYIHb7vTiPgPCj8LYjsNV2T5wiQHUEaw==}
|
|
1811
2364
|
|
|
2365
|
+
'@tabler/icons-react@3.44.0':
|
|
2366
|
+
resolution: {integrity: sha512-8+rvzBbVm/1Z3sG3x7GUNAaxIKxwgz8xaMhRs23nrCnMTKRFAhEC+82zAIFeAA0seXdrAGX5HFCkaLpGK2rVHg==}
|
|
2367
|
+
peerDependencies:
|
|
2368
|
+
react: '>= 16'
|
|
2369
|
+
|
|
2370
|
+
'@tabler/icons@3.44.0':
|
|
2371
|
+
resolution: {integrity: sha512-Wn0AOZG9sg0L+bjfMqq4eNhC6pQjIrk94LvvWYNYkY8KH8wC3YILRzQlrnVJc4FUeMxH/AK97QsYCX35H3LndA==}
|
|
2372
|
+
|
|
1812
2373
|
'@tailwindcss/node@4.3.0':
|
|
1813
2374
|
resolution: {integrity: sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==}
|
|
1814
2375
|
|
|
@@ -1847,24 +2408,28 @@ packages:
|
|
|
1847
2408
|
engines: {node: '>= 20'}
|
|
1848
2409
|
cpu: [arm64]
|
|
1849
2410
|
os: [linux]
|
|
2411
|
+
libc: [glibc]
|
|
1850
2412
|
|
|
1851
2413
|
'@tailwindcss/oxide-linux-arm64-musl@4.3.0':
|
|
1852
2414
|
resolution: {integrity: sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==}
|
|
1853
2415
|
engines: {node: '>= 20'}
|
|
1854
2416
|
cpu: [arm64]
|
|
1855
2417
|
os: [linux]
|
|
2418
|
+
libc: [musl]
|
|
1856
2419
|
|
|
1857
2420
|
'@tailwindcss/oxide-linux-x64-gnu@4.3.0':
|
|
1858
2421
|
resolution: {integrity: sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==}
|
|
1859
2422
|
engines: {node: '>= 20'}
|
|
1860
2423
|
cpu: [x64]
|
|
1861
2424
|
os: [linux]
|
|
2425
|
+
libc: [glibc]
|
|
1862
2426
|
|
|
1863
2427
|
'@tailwindcss/oxide-linux-x64-musl@4.3.0':
|
|
1864
2428
|
resolution: {integrity: sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==}
|
|
1865
2429
|
engines: {node: '>= 20'}
|
|
1866
2430
|
cpu: [x64]
|
|
1867
2431
|
os: [linux]
|
|
2432
|
+
libc: [musl]
|
|
1868
2433
|
|
|
1869
2434
|
'@tailwindcss/oxide-wasm32-wasi@4.3.0':
|
|
1870
2435
|
resolution: {integrity: sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==}
|
|
@@ -1897,6 +2462,17 @@ packages:
|
|
|
1897
2462
|
'@tailwindcss/postcss@4.3.0':
|
|
1898
2463
|
resolution: {integrity: sha512-Jm05Tjx+9yCLGv5qw1c+84Psds8MnyrEQYCB+FFk2lgGiUjlRqdxke4mVTuYrj2xnVZqKim2Apr5ySuQRYAw/w==}
|
|
1899
2464
|
|
|
2465
|
+
'@tanstack/react-table@8.21.3':
|
|
2466
|
+
resolution: {integrity: sha512-5nNMTSETP4ykGegmVkhjcS8tTLW6Vl4axfEGQN3v0zdHYbK4UfoqfPChclTrJ4EoK9QynqAu9oUf8VEmrpZ5Ww==}
|
|
2467
|
+
engines: {node: '>=12'}
|
|
2468
|
+
peerDependencies:
|
|
2469
|
+
react: '>=16.8'
|
|
2470
|
+
react-dom: '>=16.8'
|
|
2471
|
+
|
|
2472
|
+
'@tanstack/table-core@8.21.3':
|
|
2473
|
+
resolution: {integrity: sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==}
|
|
2474
|
+
engines: {node: '>=12'}
|
|
2475
|
+
|
|
1900
2476
|
'@ts-morph/common@0.27.0':
|
|
1901
2477
|
resolution: {integrity: sha512-Wf29UqxWDpc+i61k3oIOzcUfQt79PIT9y/MWfAGlrkjg6lBC1hwDECLXPVJAhWjiGbfBCxZd65F/LIZF3+jeJQ==}
|
|
1902
2478
|
|
|
@@ -1936,6 +2512,33 @@ packages:
|
|
|
1936
2512
|
'@types/chai@5.2.3':
|
|
1937
2513
|
resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
|
|
1938
2514
|
|
|
2515
|
+
'@types/d3-array@3.2.2':
|
|
2516
|
+
resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
|
|
2517
|
+
|
|
2518
|
+
'@types/d3-color@3.1.3':
|
|
2519
|
+
resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
|
|
2520
|
+
|
|
2521
|
+
'@types/d3-ease@3.0.2':
|
|
2522
|
+
resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
|
|
2523
|
+
|
|
2524
|
+
'@types/d3-interpolate@3.0.4':
|
|
2525
|
+
resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
|
|
2526
|
+
|
|
2527
|
+
'@types/d3-path@3.1.1':
|
|
2528
|
+
resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
|
|
2529
|
+
|
|
2530
|
+
'@types/d3-scale@4.0.9':
|
|
2531
|
+
resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
|
|
2532
|
+
|
|
2533
|
+
'@types/d3-shape@3.1.8':
|
|
2534
|
+
resolution: {integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==}
|
|
2535
|
+
|
|
2536
|
+
'@types/d3-time@3.0.4':
|
|
2537
|
+
resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
|
|
2538
|
+
|
|
2539
|
+
'@types/d3-timer@3.0.2':
|
|
2540
|
+
resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
|
|
2541
|
+
|
|
1939
2542
|
'@types/debug@4.1.13':
|
|
1940
2543
|
resolution: {integrity: sha512-KSVgmQmzMwPlmtljOomayoR89W4FynCAi3E8PPs7vmDVPe84hT+vGPKkJfThkmXs0x0jAaa9U8uW8bbfyS2fWw==}
|
|
1941
2544
|
|
|
@@ -1992,6 +2595,9 @@ packages:
|
|
|
1992
2595
|
'@types/unist@3.0.3':
|
|
1993
2596
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
1994
2597
|
|
|
2598
|
+
'@types/use-sync-external-store@0.0.6':
|
|
2599
|
+
resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
|
|
2600
|
+
|
|
1995
2601
|
'@types/validate-npm-package-name@4.0.2':
|
|
1996
2602
|
resolution: {integrity: sha512-lrpDziQipxCEeK5kWxvljWYhUvOiB2A9izZd9B2AFarYAkqZshb4lPbRs7zKEic6eGtH8V/2qJW+dPp9OtF6bw==}
|
|
1997
2603
|
|
|
@@ -2287,6 +2893,12 @@ packages:
|
|
|
2287
2893
|
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
2288
2894
|
engines: {node: '>=6'}
|
|
2289
2895
|
|
|
2896
|
+
cmdk@1.1.1:
|
|
2897
|
+
resolution: {integrity: sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==}
|
|
2898
|
+
peerDependencies:
|
|
2899
|
+
react: ^18 || ^19 || ^19.0.0-rc
|
|
2900
|
+
react-dom: ^18 || ^19 || ^19.0.0-rc
|
|
2901
|
+
|
|
2290
2902
|
code-block-writer@13.0.3:
|
|
2291
2903
|
resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
|
|
2292
2904
|
|
|
@@ -2369,6 +2981,50 @@ packages:
|
|
|
2369
2981
|
csstype@3.2.3:
|
|
2370
2982
|
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
2371
2983
|
|
|
2984
|
+
d3-array@3.2.4:
|
|
2985
|
+
resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
|
|
2986
|
+
engines: {node: '>=12'}
|
|
2987
|
+
|
|
2988
|
+
d3-color@3.1.0:
|
|
2989
|
+
resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
|
|
2990
|
+
engines: {node: '>=12'}
|
|
2991
|
+
|
|
2992
|
+
d3-ease@3.0.1:
|
|
2993
|
+
resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
|
|
2994
|
+
engines: {node: '>=12'}
|
|
2995
|
+
|
|
2996
|
+
d3-format@3.1.2:
|
|
2997
|
+
resolution: {integrity: sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==}
|
|
2998
|
+
engines: {node: '>=12'}
|
|
2999
|
+
|
|
3000
|
+
d3-interpolate@3.0.1:
|
|
3001
|
+
resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
|
|
3002
|
+
engines: {node: '>=12'}
|
|
3003
|
+
|
|
3004
|
+
d3-path@3.1.0:
|
|
3005
|
+
resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
|
|
3006
|
+
engines: {node: '>=12'}
|
|
3007
|
+
|
|
3008
|
+
d3-scale@4.0.2:
|
|
3009
|
+
resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
|
|
3010
|
+
engines: {node: '>=12'}
|
|
3011
|
+
|
|
3012
|
+
d3-shape@3.2.0:
|
|
3013
|
+
resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
|
|
3014
|
+
engines: {node: '>=12'}
|
|
3015
|
+
|
|
3016
|
+
d3-time-format@4.1.0:
|
|
3017
|
+
resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
|
|
3018
|
+
engines: {node: '>=12'}
|
|
3019
|
+
|
|
3020
|
+
d3-time@3.1.0:
|
|
3021
|
+
resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
|
|
3022
|
+
engines: {node: '>=12'}
|
|
3023
|
+
|
|
3024
|
+
d3-timer@3.0.1:
|
|
3025
|
+
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
|
|
3026
|
+
engines: {node: '>=12'}
|
|
3027
|
+
|
|
2372
3028
|
data-uri-to-buffer@4.0.1:
|
|
2373
3029
|
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
|
|
2374
3030
|
engines: {node: '>= 12'}
|
|
@@ -2382,6 +3038,9 @@ packages:
|
|
|
2382
3038
|
supports-color:
|
|
2383
3039
|
optional: true
|
|
2384
3040
|
|
|
3041
|
+
decimal.js-light@2.5.1:
|
|
3042
|
+
resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
|
|
3043
|
+
|
|
2385
3044
|
decode-named-character-reference@1.3.0:
|
|
2386
3045
|
resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
|
|
2387
3046
|
|
|
@@ -2496,6 +3155,9 @@ packages:
|
|
|
2496
3155
|
resolution: {integrity: sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==}
|
|
2497
3156
|
engines: {node: '>= 0.4'}
|
|
2498
3157
|
|
|
3158
|
+
es-toolkit@1.47.0:
|
|
3159
|
+
resolution: {integrity: sha512-n1GuoD0WEQZMBk5tttoZSqwgyLx01oqa5XsBmCHwPyNe1S9jPBEmtR2pSgp2kJuWE3ciFZ6yRHmY4pM4C3OOkw==}
|
|
3160
|
+
|
|
2499
3161
|
esast-util-from-estree@2.0.0:
|
|
2500
3162
|
resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
|
|
2501
3163
|
|
|
@@ -2601,6 +3263,9 @@ packages:
|
|
|
2601
3263
|
resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
|
|
2602
3264
|
engines: {node: '>= 0.6'}
|
|
2603
3265
|
|
|
3266
|
+
eventemitter3@5.0.4:
|
|
3267
|
+
resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
|
|
3268
|
+
|
|
2604
3269
|
eventsource-parser@3.1.0:
|
|
2605
3270
|
resolution: {integrity: sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==}
|
|
2606
3271
|
engines: {node: '>=18.0.0'}
|
|
@@ -3007,6 +3672,12 @@ packages:
|
|
|
3007
3672
|
resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==}
|
|
3008
3673
|
engines: {node: '>= 4'}
|
|
3009
3674
|
|
|
3675
|
+
immer@10.2.0:
|
|
3676
|
+
resolution: {integrity: sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==}
|
|
3677
|
+
|
|
3678
|
+
immer@11.1.8:
|
|
3679
|
+
resolution: {integrity: sha512-/tbkHMW7y10Lx6i1crLjD4/OhNkRG+Fo7byZHtah0547nIeXYcpIXaUh0IAQY6gO5459qpGGYapcEOHtFXkIuA==}
|
|
3680
|
+
|
|
3010
3681
|
import-fresh@3.3.1:
|
|
3011
3682
|
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
|
3012
3683
|
engines: {node: '>=6'}
|
|
@@ -3021,6 +3692,16 @@ packages:
|
|
|
3021
3692
|
inline-style-parser@0.2.7:
|
|
3022
3693
|
resolution: {integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==}
|
|
3023
3694
|
|
|
3695
|
+
input-otp@1.4.2:
|
|
3696
|
+
resolution: {integrity: sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA==}
|
|
3697
|
+
peerDependencies:
|
|
3698
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
3699
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
3700
|
+
|
|
3701
|
+
internmap@2.0.3:
|
|
3702
|
+
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
|
|
3703
|
+
engines: {node: '>=12'}
|
|
3704
|
+
|
|
3024
3705
|
intl-messageformat@11.2.7:
|
|
3025
3706
|
resolution: {integrity: sha512-+q6Ktg119nULZEpZ8YTuGOst9MyEzFtjD63FTGBlN1mLz0Z/MOUYDIvnpVKwq17eezIEh+cfJIebfJoCetpiNw==}
|
|
3026
3707
|
|
|
@@ -3233,24 +3914,28 @@ packages:
|
|
|
3233
3914
|
engines: {node: '>= 12.0.0'}
|
|
3234
3915
|
cpu: [arm64]
|
|
3235
3916
|
os: [linux]
|
|
3917
|
+
libc: [glibc]
|
|
3236
3918
|
|
|
3237
3919
|
lightningcss-linux-arm64-musl@1.32.0:
|
|
3238
3920
|
resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==}
|
|
3239
3921
|
engines: {node: '>= 12.0.0'}
|
|
3240
3922
|
cpu: [arm64]
|
|
3241
3923
|
os: [linux]
|
|
3924
|
+
libc: [musl]
|
|
3242
3925
|
|
|
3243
3926
|
lightningcss-linux-x64-gnu@1.32.0:
|
|
3244
3927
|
resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==}
|
|
3245
3928
|
engines: {node: '>= 12.0.0'}
|
|
3246
3929
|
cpu: [x64]
|
|
3247
3930
|
os: [linux]
|
|
3931
|
+
libc: [glibc]
|
|
3248
3932
|
|
|
3249
3933
|
lightningcss-linux-x64-musl@1.32.0:
|
|
3250
3934
|
resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==}
|
|
3251
3935
|
engines: {node: '>= 12.0.0'}
|
|
3252
3936
|
cpu: [x64]
|
|
3253
3937
|
os: [linux]
|
|
3938
|
+
libc: [musl]
|
|
3254
3939
|
|
|
3255
3940
|
lightningcss-win32-arm64-msvc@1.32.0:
|
|
3256
3941
|
resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==}
|
|
@@ -3800,6 +4485,19 @@ packages:
|
|
|
3800
4485
|
queue-microtask@1.2.3:
|
|
3801
4486
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
3802
4487
|
|
|
4488
|
+
radix-ui@1.4.3:
|
|
4489
|
+
resolution: {integrity: sha512-aWizCQiyeAenIdUbqEpXgRA1ya65P13NKn/W8rWkcN0OPkRDxdBVLWnIEDsS2RpwCK2nobI7oMUSmexzTDyAmA==}
|
|
4490
|
+
peerDependencies:
|
|
4491
|
+
'@types/react': '*'
|
|
4492
|
+
'@types/react-dom': '*'
|
|
4493
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
4494
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
4495
|
+
peerDependenciesMeta:
|
|
4496
|
+
'@types/react':
|
|
4497
|
+
optional: true
|
|
4498
|
+
'@types/react-dom':
|
|
4499
|
+
optional: true
|
|
4500
|
+
|
|
3803
4501
|
range-parser@1.2.1:
|
|
3804
4502
|
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
|
|
3805
4503
|
engines: {node: '>= 0.6'}
|
|
@@ -3819,6 +4517,21 @@ packages:
|
|
|
3819
4517
|
peerDependencies:
|
|
3820
4518
|
react: ^16.8.0 || ^17 || ^18 || ^19
|
|
3821
4519
|
|
|
4520
|
+
react-is@19.2.7:
|
|
4521
|
+
resolution: {integrity: sha512-kZFnouyVv7eP/Phmrlo9FK+zcAdriZJvzxXHF1Sl1P377WSGe2G/JxVolhTrB/jeV47lKImhNUsijjHAAbcl/A==}
|
|
4522
|
+
|
|
4523
|
+
react-redux@9.3.0:
|
|
4524
|
+
resolution: {integrity: sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g==}
|
|
4525
|
+
peerDependencies:
|
|
4526
|
+
'@types/react': ^18.2.25 || ^19
|
|
4527
|
+
react: ^18.0 || ^19
|
|
4528
|
+
redux: ^5.0.0
|
|
4529
|
+
peerDependenciesMeta:
|
|
4530
|
+
'@types/react':
|
|
4531
|
+
optional: true
|
|
4532
|
+
redux:
|
|
4533
|
+
optional: true
|
|
4534
|
+
|
|
3822
4535
|
react-remove-scroll-bar@2.3.8:
|
|
3823
4536
|
resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
|
|
3824
4537
|
engines: {node: '>=10'}
|
|
@@ -3861,6 +4574,14 @@ packages:
|
|
|
3861
4574
|
resolution: {integrity: sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==}
|
|
3862
4575
|
engines: {node: '>= 4'}
|
|
3863
4576
|
|
|
4577
|
+
recharts@3.8.1:
|
|
4578
|
+
resolution: {integrity: sha512-mwzmO1s9sFL0TduUpwndxCUNoXsBw3u3E/0+A+cLcrSfQitSG62L32N69GhqUrrT5qKcAE3pCGVINC6pqkBBQg==}
|
|
4579
|
+
engines: {node: '>=18'}
|
|
4580
|
+
peerDependencies:
|
|
4581
|
+
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
4582
|
+
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
4583
|
+
react-is: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
4584
|
+
|
|
3864
4585
|
recma-build-jsx@1.0.0:
|
|
3865
4586
|
resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==}
|
|
3866
4587
|
|
|
@@ -3875,6 +4596,14 @@ packages:
|
|
|
3875
4596
|
recma-stringify@1.0.0:
|
|
3876
4597
|
resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==}
|
|
3877
4598
|
|
|
4599
|
+
redux-thunk@3.1.0:
|
|
4600
|
+
resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==}
|
|
4601
|
+
peerDependencies:
|
|
4602
|
+
redux: ^5.0.0
|
|
4603
|
+
|
|
4604
|
+
redux@5.0.1:
|
|
4605
|
+
resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==}
|
|
4606
|
+
|
|
3878
4607
|
regex-recursion@6.0.2:
|
|
3879
4608
|
resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==}
|
|
3880
4609
|
|
|
@@ -3916,6 +4645,9 @@ packages:
|
|
|
3916
4645
|
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
3917
4646
|
engines: {node: '>=0.10.0'}
|
|
3918
4647
|
|
|
4648
|
+
reselect@5.1.1:
|
|
4649
|
+
resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==}
|
|
4650
|
+
|
|
3919
4651
|
reselect@5.2.0:
|
|
3920
4652
|
resolution: {integrity: sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==}
|
|
3921
4653
|
|
|
@@ -4339,6 +5071,12 @@ packages:
|
|
|
4339
5071
|
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
|
|
4340
5072
|
engines: {node: '>= 0.8'}
|
|
4341
5073
|
|
|
5074
|
+
vaul@1.1.2:
|
|
5075
|
+
resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
|
|
5076
|
+
peerDependencies:
|
|
5077
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
5078
|
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
|
|
5079
|
+
|
|
4342
5080
|
vfile-location@5.0.3:
|
|
4343
5081
|
resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==}
|
|
4344
5082
|
|
|
@@ -4348,6 +5086,9 @@ packages:
|
|
|
4348
5086
|
vfile@6.0.3:
|
|
4349
5087
|
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
|
|
4350
5088
|
|
|
5089
|
+
victory-vendor@37.3.6:
|
|
5090
|
+
resolution: {integrity: sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==}
|
|
5091
|
+
|
|
4351
5092
|
vite@8.0.16:
|
|
4352
5093
|
resolution: {integrity: sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==}
|
|
4353
5094
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
@@ -4738,6 +5479,38 @@ snapshots:
|
|
|
4738
5479
|
optionalDependencies:
|
|
4739
5480
|
'@types/react': 19.2.16
|
|
4740
5481
|
|
|
5482
|
+
'@dnd-kit/accessibility@3.1.1(react@19.2.7)':
|
|
5483
|
+
dependencies:
|
|
5484
|
+
react: 19.2.7
|
|
5485
|
+
tslib: 2.8.1
|
|
5486
|
+
|
|
5487
|
+
'@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5488
|
+
dependencies:
|
|
5489
|
+
'@dnd-kit/accessibility': 3.1.1(react@19.2.7)
|
|
5490
|
+
'@dnd-kit/utilities': 3.2.2(react@19.2.7)
|
|
5491
|
+
react: 19.2.7
|
|
5492
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
5493
|
+
tslib: 2.8.1
|
|
5494
|
+
|
|
5495
|
+
'@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)':
|
|
5496
|
+
dependencies:
|
|
5497
|
+
'@dnd-kit/core': 6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5498
|
+
'@dnd-kit/utilities': 3.2.2(react@19.2.7)
|
|
5499
|
+
react: 19.2.7
|
|
5500
|
+
tslib: 2.8.1
|
|
5501
|
+
|
|
5502
|
+
'@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)':
|
|
5503
|
+
dependencies:
|
|
5504
|
+
'@dnd-kit/core': 6.3.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5505
|
+
'@dnd-kit/utilities': 3.2.2(react@19.2.7)
|
|
5506
|
+
react: 19.2.7
|
|
5507
|
+
tslib: 2.8.1
|
|
5508
|
+
|
|
5509
|
+
'@dnd-kit/utilities@3.2.2(react@19.2.7)':
|
|
5510
|
+
dependencies:
|
|
5511
|
+
react: 19.2.7
|
|
5512
|
+
tslib: 2.8.1
|
|
5513
|
+
|
|
4741
5514
|
'@dotenvx/dotenvx@1.71.0':
|
|
4742
5515
|
dependencies:
|
|
4743
5516
|
commander: 11.1.0
|
|
@@ -5438,6 +6211,15 @@ snapshots:
|
|
|
5438
6211
|
|
|
5439
6212
|
'@radix-ui/primitive@1.1.3': {}
|
|
5440
6213
|
|
|
6214
|
+
'@radix-ui/react-accessible-icon@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6215
|
+
dependencies:
|
|
6216
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6217
|
+
react: 19.2.7
|
|
6218
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6219
|
+
optionalDependencies:
|
|
6220
|
+
'@types/react': 19.2.16
|
|
6221
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6222
|
+
|
|
5441
6223
|
'@radix-ui/react-accordion@1.2.12(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5442
6224
|
dependencies:
|
|
5443
6225
|
'@radix-ui/primitive': 1.1.3
|
|
@@ -5455,6 +6237,20 @@ snapshots:
|
|
|
5455
6237
|
'@types/react': 19.2.16
|
|
5456
6238
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5457
6239
|
|
|
6240
|
+
'@radix-ui/react-alert-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6241
|
+
dependencies:
|
|
6242
|
+
'@radix-ui/primitive': 1.1.3
|
|
6243
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6244
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6245
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6246
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6247
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.16)(react@19.2.7)
|
|
6248
|
+
react: 19.2.7
|
|
6249
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6250
|
+
optionalDependencies:
|
|
6251
|
+
'@types/react': 19.2.16
|
|
6252
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6253
|
+
|
|
5458
6254
|
'@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5459
6255
|
dependencies:
|
|
5460
6256
|
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
@@ -5464,6 +6260,57 @@ snapshots:
|
|
|
5464
6260
|
'@types/react': 19.2.16
|
|
5465
6261
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5466
6262
|
|
|
6263
|
+
'@radix-ui/react-aspect-ratio@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6264
|
+
dependencies:
|
|
6265
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6266
|
+
react: 19.2.7
|
|
6267
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6268
|
+
optionalDependencies:
|
|
6269
|
+
'@types/react': 19.2.16
|
|
6270
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6271
|
+
|
|
6272
|
+
'@radix-ui/react-avatar@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6273
|
+
dependencies:
|
|
6274
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6275
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6276
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6277
|
+
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.16)(react@19.2.7)
|
|
6278
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6279
|
+
react: 19.2.7
|
|
6280
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6281
|
+
optionalDependencies:
|
|
6282
|
+
'@types/react': 19.2.16
|
|
6283
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6284
|
+
|
|
6285
|
+
'@radix-ui/react-avatar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6286
|
+
dependencies:
|
|
6287
|
+
'@radix-ui/react-context': 1.1.3(@types/react@19.2.16)(react@19.2.7)
|
|
6288
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6289
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6290
|
+
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.16)(react@19.2.7)
|
|
6291
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6292
|
+
react: 19.2.7
|
|
6293
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6294
|
+
optionalDependencies:
|
|
6295
|
+
'@types/react': 19.2.16
|
|
6296
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6297
|
+
|
|
6298
|
+
'@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6299
|
+
dependencies:
|
|
6300
|
+
'@radix-ui/primitive': 1.1.3
|
|
6301
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6302
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6303
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6304
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6305
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6306
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6307
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6308
|
+
react: 19.2.7
|
|
6309
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6310
|
+
optionalDependencies:
|
|
6311
|
+
'@types/react': 19.2.16
|
|
6312
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6313
|
+
|
|
5467
6314
|
'@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5468
6315
|
dependencies:
|
|
5469
6316
|
'@radix-ui/primitive': 1.1.3
|
|
@@ -5498,12 +6345,32 @@ snapshots:
|
|
|
5498
6345
|
optionalDependencies:
|
|
5499
6346
|
'@types/react': 19.2.16
|
|
5500
6347
|
|
|
6348
|
+
'@radix-ui/react-context-menu@2.2.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6349
|
+
dependencies:
|
|
6350
|
+
'@radix-ui/primitive': 1.1.3
|
|
6351
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6352
|
+
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6353
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6354
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6355
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6356
|
+
react: 19.2.7
|
|
6357
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6358
|
+
optionalDependencies:
|
|
6359
|
+
'@types/react': 19.2.16
|
|
6360
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6361
|
+
|
|
5501
6362
|
'@radix-ui/react-context@1.1.2(@types/react@19.2.16)(react@19.2.7)':
|
|
5502
6363
|
dependencies:
|
|
5503
6364
|
react: 19.2.7
|
|
5504
6365
|
optionalDependencies:
|
|
5505
6366
|
'@types/react': 19.2.16
|
|
5506
6367
|
|
|
6368
|
+
'@radix-ui/react-context@1.1.3(@types/react@19.2.16)(react@19.2.7)':
|
|
6369
|
+
dependencies:
|
|
6370
|
+
react: 19.2.7
|
|
6371
|
+
optionalDependencies:
|
|
6372
|
+
'@types/react': 19.2.16
|
|
6373
|
+
|
|
5507
6374
|
'@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5508
6375
|
dependencies:
|
|
5509
6376
|
'@radix-ui/primitive': 1.1.3
|
|
@@ -5545,6 +6412,21 @@ snapshots:
|
|
|
5545
6412
|
'@types/react': 19.2.16
|
|
5546
6413
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5547
6414
|
|
|
6415
|
+
'@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6416
|
+
dependencies:
|
|
6417
|
+
'@radix-ui/primitive': 1.1.3
|
|
6418
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6419
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6420
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6421
|
+
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6422
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6423
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6424
|
+
react: 19.2.7
|
|
6425
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6426
|
+
optionalDependencies:
|
|
6427
|
+
'@types/react': 19.2.16
|
|
6428
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6429
|
+
|
|
5548
6430
|
'@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.16)(react@19.2.7)':
|
|
5549
6431
|
dependencies:
|
|
5550
6432
|
react: 19.2.7
|
|
@@ -5562,6 +6444,37 @@ snapshots:
|
|
|
5562
6444
|
'@types/react': 19.2.16
|
|
5563
6445
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5564
6446
|
|
|
6447
|
+
'@radix-ui/react-form@0.1.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6448
|
+
dependencies:
|
|
6449
|
+
'@radix-ui/primitive': 1.1.3
|
|
6450
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6451
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6452
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6453
|
+
'@radix-ui/react-label': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6454
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6455
|
+
react: 19.2.7
|
|
6456
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6457
|
+
optionalDependencies:
|
|
6458
|
+
'@types/react': 19.2.16
|
|
6459
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6460
|
+
|
|
6461
|
+
'@radix-ui/react-hover-card@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6462
|
+
dependencies:
|
|
6463
|
+
'@radix-ui/primitive': 1.1.3
|
|
6464
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6465
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6466
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6467
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6468
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6469
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6470
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6471
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6472
|
+
react: 19.2.7
|
|
6473
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6474
|
+
optionalDependencies:
|
|
6475
|
+
'@types/react': 19.2.16
|
|
6476
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6477
|
+
|
|
5565
6478
|
'@radix-ui/react-id@1.1.1(@types/react@19.2.16)(react@19.2.7)':
|
|
5566
6479
|
dependencies:
|
|
5567
6480
|
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
@@ -5569,43 +6482,289 @@ snapshots:
|
|
|
5569
6482
|
optionalDependencies:
|
|
5570
6483
|
'@types/react': 19.2.16
|
|
5571
6484
|
|
|
5572
|
-
'@radix-ui/react-
|
|
6485
|
+
'@radix-ui/react-label@2.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6486
|
+
dependencies:
|
|
6487
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6488
|
+
react: 19.2.7
|
|
6489
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6490
|
+
optionalDependencies:
|
|
6491
|
+
'@types/react': 19.2.16
|
|
6492
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6493
|
+
|
|
6494
|
+
'@radix-ui/react-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6495
|
+
dependencies:
|
|
6496
|
+
'@radix-ui/primitive': 1.1.3
|
|
6497
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6498
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6499
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6500
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6501
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6502
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.16)(react@19.2.7)
|
|
6503
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6504
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6505
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6506
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6507
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6508
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6509
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6510
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.16)(react@19.2.7)
|
|
6511
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6512
|
+
aria-hidden: 1.2.6
|
|
6513
|
+
react: 19.2.7
|
|
6514
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6515
|
+
react-remove-scroll: 2.7.2(@types/react@19.2.16)(react@19.2.7)
|
|
6516
|
+
optionalDependencies:
|
|
6517
|
+
'@types/react': 19.2.16
|
|
6518
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6519
|
+
|
|
6520
|
+
'@radix-ui/react-menubar@1.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6521
|
+
dependencies:
|
|
6522
|
+
'@radix-ui/primitive': 1.1.3
|
|
6523
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6524
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6525
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6526
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6527
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6528
|
+
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6529
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6530
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6531
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6532
|
+
react: 19.2.7
|
|
6533
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6534
|
+
optionalDependencies:
|
|
6535
|
+
'@types/react': 19.2.16
|
|
6536
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6537
|
+
|
|
6538
|
+
'@radix-ui/react-navigation-menu@1.2.14(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6539
|
+
dependencies:
|
|
6540
|
+
'@radix-ui/primitive': 1.1.3
|
|
6541
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6542
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6543
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6544
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6545
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6546
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6547
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6548
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6549
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6550
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6551
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6552
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6553
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6554
|
+
react: 19.2.7
|
|
6555
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6556
|
+
optionalDependencies:
|
|
6557
|
+
'@types/react': 19.2.16
|
|
6558
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6559
|
+
|
|
6560
|
+
'@radix-ui/react-one-time-password-field@0.1.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6561
|
+
dependencies:
|
|
6562
|
+
'@radix-ui/number': 1.1.1
|
|
6563
|
+
'@radix-ui/primitive': 1.1.3
|
|
6564
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6565
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6566
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6567
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6568
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6569
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6570
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6571
|
+
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.16)(react@19.2.7)
|
|
6572
|
+
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.16)(react@19.2.7)
|
|
6573
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6574
|
+
react: 19.2.7
|
|
6575
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6576
|
+
optionalDependencies:
|
|
6577
|
+
'@types/react': 19.2.16
|
|
6578
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6579
|
+
|
|
6580
|
+
'@radix-ui/react-password-toggle-field@0.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6581
|
+
dependencies:
|
|
6582
|
+
'@radix-ui/primitive': 1.1.3
|
|
6583
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6584
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6585
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6586
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6587
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6588
|
+
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.16)(react@19.2.7)
|
|
6589
|
+
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.16)(react@19.2.7)
|
|
6590
|
+
react: 19.2.7
|
|
6591
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6592
|
+
optionalDependencies:
|
|
6593
|
+
'@types/react': 19.2.16
|
|
6594
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6595
|
+
|
|
6596
|
+
'@radix-ui/react-popover@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6597
|
+
dependencies:
|
|
6598
|
+
'@radix-ui/primitive': 1.1.3
|
|
6599
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6600
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6601
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6602
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.16)(react@19.2.7)
|
|
6603
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6604
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6605
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6606
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6607
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6608
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6609
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.16)(react@19.2.7)
|
|
6610
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6611
|
+
aria-hidden: 1.2.6
|
|
6612
|
+
react: 19.2.7
|
|
6613
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6614
|
+
react-remove-scroll: 2.7.2(@types/react@19.2.16)(react@19.2.7)
|
|
6615
|
+
optionalDependencies:
|
|
6616
|
+
'@types/react': 19.2.16
|
|
6617
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6618
|
+
|
|
6619
|
+
'@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6620
|
+
dependencies:
|
|
6621
|
+
'@floating-ui/react-dom': 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6622
|
+
'@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6623
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6624
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6625
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6626
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6627
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6628
|
+
'@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6629
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6630
|
+
'@radix-ui/rect': 1.1.1
|
|
6631
|
+
react: 19.2.7
|
|
6632
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6633
|
+
optionalDependencies:
|
|
6634
|
+
'@types/react': 19.2.16
|
|
6635
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6636
|
+
|
|
6637
|
+
'@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6638
|
+
dependencies:
|
|
6639
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6640
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6641
|
+
react: 19.2.7
|
|
6642
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6643
|
+
optionalDependencies:
|
|
6644
|
+
'@types/react': 19.2.16
|
|
6645
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6646
|
+
|
|
6647
|
+
'@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6648
|
+
dependencies:
|
|
6649
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6650
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6651
|
+
react: 19.2.7
|
|
6652
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6653
|
+
optionalDependencies:
|
|
6654
|
+
'@types/react': 19.2.16
|
|
6655
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6656
|
+
|
|
6657
|
+
'@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6658
|
+
dependencies:
|
|
6659
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.16)(react@19.2.7)
|
|
6660
|
+
react: 19.2.7
|
|
6661
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6662
|
+
optionalDependencies:
|
|
6663
|
+
'@types/react': 19.2.16
|
|
6664
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6665
|
+
|
|
6666
|
+
'@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6667
|
+
dependencies:
|
|
6668
|
+
'@radix-ui/react-slot': 1.2.4(@types/react@19.2.16)(react@19.2.7)
|
|
6669
|
+
react: 19.2.7
|
|
6670
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6671
|
+
optionalDependencies:
|
|
6672
|
+
'@types/react': 19.2.16
|
|
6673
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6674
|
+
|
|
6675
|
+
'@radix-ui/react-progress@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6676
|
+
dependencies:
|
|
6677
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6678
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6679
|
+
react: 19.2.7
|
|
6680
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6681
|
+
optionalDependencies:
|
|
6682
|
+
'@types/react': 19.2.16
|
|
6683
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6684
|
+
|
|
6685
|
+
'@radix-ui/react-progress@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6686
|
+
dependencies:
|
|
6687
|
+
'@radix-ui/react-context': 1.1.3(@types/react@19.2.16)(react@19.2.7)
|
|
6688
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6689
|
+
react: 19.2.7
|
|
6690
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6691
|
+
optionalDependencies:
|
|
6692
|
+
'@types/react': 19.2.16
|
|
6693
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6694
|
+
|
|
6695
|
+
'@radix-ui/react-radio-group@1.3.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6696
|
+
dependencies:
|
|
6697
|
+
'@radix-ui/primitive': 1.1.3
|
|
6698
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6699
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6700
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6701
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6702
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6703
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6704
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6705
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6706
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6707
|
+
react: 19.2.7
|
|
6708
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6709
|
+
optionalDependencies:
|
|
6710
|
+
'@types/react': 19.2.16
|
|
6711
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6712
|
+
|
|
6713
|
+
'@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6714
|
+
dependencies:
|
|
6715
|
+
'@radix-ui/primitive': 1.1.3
|
|
6716
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6717
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6718
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6719
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6720
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6721
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6722
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6723
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6724
|
+
react: 19.2.7
|
|
6725
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6726
|
+
optionalDependencies:
|
|
6727
|
+
'@types/react': 19.2.16
|
|
6728
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6729
|
+
|
|
6730
|
+
'@radix-ui/react-scroll-area@1.2.10(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5573
6731
|
dependencies:
|
|
6732
|
+
'@radix-ui/number': 1.1.1
|
|
5574
6733
|
'@radix-ui/primitive': 1.1.3
|
|
5575
|
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5576
6734
|
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5577
6735
|
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5578
6736
|
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5579
|
-
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5580
|
-
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5581
6737
|
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5582
6738
|
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5583
6739
|
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5584
|
-
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
5585
6740
|
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5586
|
-
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5587
|
-
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5588
6741
|
react: 19.2.7
|
|
5589
6742
|
react-dom: 19.2.7(react@19.2.7)
|
|
5590
6743
|
optionalDependencies:
|
|
5591
6744
|
'@types/react': 19.2.16
|
|
5592
6745
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5593
6746
|
|
|
5594
|
-
'@radix-ui/react-
|
|
6747
|
+
'@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5595
6748
|
dependencies:
|
|
6749
|
+
'@radix-ui/number': 1.1.1
|
|
5596
6750
|
'@radix-ui/primitive': 1.1.3
|
|
6751
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5597
6752
|
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5598
6753
|
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6754
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5599
6755
|
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5600
6756
|
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.16)(react@19.2.7)
|
|
5601
6757
|
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5602
6758
|
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5603
6759
|
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5604
6760
|
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5605
|
-
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5606
6761
|
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5607
6762
|
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.16)(react@19.2.7)
|
|
6763
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5608
6764
|
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6765
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6766
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6767
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5609
6768
|
aria-hidden: 1.2.6
|
|
5610
6769
|
react: 19.2.7
|
|
5611
6770
|
react-dom: 19.2.7(react@19.2.7)
|
|
@@ -5614,63 +6773,81 @@ snapshots:
|
|
|
5614
6773
|
'@types/react': 19.2.16
|
|
5615
6774
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5616
6775
|
|
|
5617
|
-
'@radix-ui/react-
|
|
6776
|
+
'@radix-ui/react-separator@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5618
6777
|
dependencies:
|
|
5619
|
-
'@floating-ui/react-dom': 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5620
|
-
'@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5621
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5622
|
-
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5623
6778
|
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5624
|
-
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5625
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5626
|
-
'@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5627
|
-
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5628
|
-
'@radix-ui/rect': 1.1.1
|
|
5629
6779
|
react: 19.2.7
|
|
5630
6780
|
react-dom: 19.2.7(react@19.2.7)
|
|
5631
6781
|
optionalDependencies:
|
|
5632
6782
|
'@types/react': 19.2.16
|
|
5633
6783
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5634
6784
|
|
|
5635
|
-
'@radix-ui/react-
|
|
6785
|
+
'@radix-ui/react-separator@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5636
6786
|
dependencies:
|
|
5637
|
-
'@radix-ui/react-primitive': 2.1.
|
|
5638
|
-
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6787
|
+
'@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5639
6788
|
react: 19.2.7
|
|
5640
6789
|
react-dom: 19.2.7(react@19.2.7)
|
|
5641
6790
|
optionalDependencies:
|
|
5642
6791
|
'@types/react': 19.2.16
|
|
5643
6792
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5644
6793
|
|
|
5645
|
-
'@radix-ui/react-
|
|
6794
|
+
'@radix-ui/react-slider@1.3.6(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5646
6795
|
dependencies:
|
|
6796
|
+
'@radix-ui/number': 1.1.1
|
|
6797
|
+
'@radix-ui/primitive': 1.1.3
|
|
6798
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5647
6799
|
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6800
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6801
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6802
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6803
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
5648
6804
|
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6805
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6806
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5649
6807
|
react: 19.2.7
|
|
5650
6808
|
react-dom: 19.2.7(react@19.2.7)
|
|
5651
6809
|
optionalDependencies:
|
|
5652
6810
|
'@types/react': 19.2.16
|
|
5653
6811
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5654
6812
|
|
|
5655
|
-
'@radix-ui/react-
|
|
6813
|
+
'@radix-ui/react-slot@1.2.3(@types/react@19.2.16)(react@19.2.7)':
|
|
5656
6814
|
dependencies:
|
|
5657
|
-
'@radix-ui/react-
|
|
6815
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6816
|
+
react: 19.2.7
|
|
6817
|
+
optionalDependencies:
|
|
6818
|
+
'@types/react': 19.2.16
|
|
6819
|
+
|
|
6820
|
+
'@radix-ui/react-slot@1.2.4(@types/react@19.2.16)(react@19.2.7)':
|
|
6821
|
+
dependencies:
|
|
6822
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6823
|
+
react: 19.2.7
|
|
6824
|
+
optionalDependencies:
|
|
6825
|
+
'@types/react': 19.2.16
|
|
6826
|
+
|
|
6827
|
+
'@radix-ui/react-switch@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6828
|
+
dependencies:
|
|
6829
|
+
'@radix-ui/primitive': 1.1.3
|
|
6830
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6831
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6832
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6833
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6834
|
+
'@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6835
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5658
6836
|
react: 19.2.7
|
|
5659
6837
|
react-dom: 19.2.7(react@19.2.7)
|
|
5660
6838
|
optionalDependencies:
|
|
5661
6839
|
'@types/react': 19.2.16
|
|
5662
6840
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5663
6841
|
|
|
5664
|
-
'@radix-ui/react-
|
|
6842
|
+
'@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5665
6843
|
dependencies:
|
|
5666
6844
|
'@radix-ui/primitive': 1.1.3
|
|
5667
|
-
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5668
|
-
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5669
6845
|
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5670
6846
|
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
5671
6847
|
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6848
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5672
6849
|
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5673
|
-
'@radix-ui/react-
|
|
6850
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5674
6851
|
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
5675
6852
|
react: 19.2.7
|
|
5676
6853
|
react-dom: 19.2.7(react@19.2.7)
|
|
@@ -5678,47 +6855,81 @@ snapshots:
|
|
|
5678
6855
|
'@types/react': 19.2.16
|
|
5679
6856
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5680
6857
|
|
|
5681
|
-
'@radix-ui/react-
|
|
6858
|
+
'@radix-ui/react-toast@1.2.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5682
6859
|
dependencies:
|
|
5683
|
-
'@radix-ui/number': 1.1.1
|
|
5684
6860
|
'@radix-ui/primitive': 1.1.3
|
|
6861
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5685
6862
|
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5686
6863
|
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5687
|
-
'@radix-ui/react-
|
|
6864
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6865
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5688
6866
|
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5689
6867
|
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5690
6868
|
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6869
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
5691
6870
|
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6871
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5692
6872
|
react: 19.2.7
|
|
5693
6873
|
react-dom: 19.2.7(react@19.2.7)
|
|
5694
6874
|
optionalDependencies:
|
|
5695
6875
|
'@types/react': 19.2.16
|
|
5696
6876
|
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5697
6877
|
|
|
5698
|
-
'@radix-ui/react-
|
|
6878
|
+
'@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5699
6879
|
dependencies:
|
|
5700
|
-
'@radix-ui/
|
|
6880
|
+
'@radix-ui/primitive': 1.1.3
|
|
6881
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6882
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6883
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6884
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6885
|
+
'@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6886
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
5701
6887
|
react: 19.2.7
|
|
6888
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
5702
6889
|
optionalDependencies:
|
|
5703
6890
|
'@types/react': 19.2.16
|
|
6891
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5704
6892
|
|
|
5705
|
-
'@radix-ui/react-
|
|
6893
|
+
'@radix-ui/react-toggle@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5706
6894
|
dependencies:
|
|
5707
|
-
'@radix-ui/
|
|
6895
|
+
'@radix-ui/primitive': 1.1.3
|
|
6896
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6897
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
5708
6898
|
react: 19.2.7
|
|
6899
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
5709
6900
|
optionalDependencies:
|
|
5710
6901
|
'@types/react': 19.2.16
|
|
6902
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
5711
6903
|
|
|
5712
|
-
'@radix-ui/react-
|
|
6904
|
+
'@radix-ui/react-toolbar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
5713
6905
|
dependencies:
|
|
5714
6906
|
'@radix-ui/primitive': 1.1.3
|
|
5715
6907
|
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
5716
6908
|
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6909
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6910
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6911
|
+
'@radix-ui/react-separator': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6912
|
+
'@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6913
|
+
react: 19.2.7
|
|
6914
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
6915
|
+
optionalDependencies:
|
|
6916
|
+
'@types/react': 19.2.16
|
|
6917
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
6918
|
+
|
|
6919
|
+
'@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
6920
|
+
dependencies:
|
|
6921
|
+
'@radix-ui/primitive': 1.1.3
|
|
6922
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6923
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
6924
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5717
6925
|
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
6926
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
6927
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5718
6928
|
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5719
6929
|
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5720
|
-
'@radix-ui/react-
|
|
6930
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.16)(react@19.2.7)
|
|
5721
6931
|
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
6932
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
5722
6933
|
react: 19.2.7
|
|
5723
6934
|
react-dom: 19.2.7(react@19.2.7)
|
|
5724
6935
|
optionalDependencies:
|
|
@@ -5753,6 +6964,13 @@ snapshots:
|
|
|
5753
6964
|
optionalDependencies:
|
|
5754
6965
|
'@types/react': 19.2.16
|
|
5755
6966
|
|
|
6967
|
+
'@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.16)(react@19.2.7)':
|
|
6968
|
+
dependencies:
|
|
6969
|
+
react: 19.2.7
|
|
6970
|
+
use-sync-external-store: 1.6.0(react@19.2.7)
|
|
6971
|
+
optionalDependencies:
|
|
6972
|
+
'@types/react': 19.2.16
|
|
6973
|
+
|
|
5756
6974
|
'@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.16)(react@19.2.7)':
|
|
5757
6975
|
dependencies:
|
|
5758
6976
|
react: 19.2.7
|
|
@@ -5790,6 +7008,18 @@ snapshots:
|
|
|
5790
7008
|
|
|
5791
7009
|
'@radix-ui/rect@1.1.1': {}
|
|
5792
7010
|
|
|
7011
|
+
'@reduxjs/toolkit@2.12.0(react-redux@9.3.0(@types/react@19.2.16)(react@19.2.7)(redux@5.0.1))(react@19.2.7)':
|
|
7012
|
+
dependencies:
|
|
7013
|
+
'@standard-schema/spec': 1.1.0
|
|
7014
|
+
'@standard-schema/utils': 0.3.0
|
|
7015
|
+
immer: 11.1.8
|
|
7016
|
+
redux: 5.0.1
|
|
7017
|
+
redux-thunk: 3.1.0(redux@5.0.1)
|
|
7018
|
+
reselect: 5.2.0
|
|
7019
|
+
optionalDependencies:
|
|
7020
|
+
react: 19.2.7
|
|
7021
|
+
react-redux: 9.3.0(@types/react@19.2.16)(react@19.2.7)(redux@5.0.1)
|
|
7022
|
+
|
|
5793
7023
|
'@rolldown/binding-android-arm64@1.0.3':
|
|
5794
7024
|
optional: true
|
|
5795
7025
|
|
|
@@ -5964,7 +7194,7 @@ snapshots:
|
|
|
5964
7194
|
'@swc/core-win32-x64-msvc@1.15.40':
|
|
5965
7195
|
optional: true
|
|
5966
7196
|
|
|
5967
|
-
'@swc/core@1.15.40
|
|
7197
|
+
'@swc/core@1.15.40':
|
|
5968
7198
|
dependencies:
|
|
5969
7199
|
'@swc/counter': 0.1.3
|
|
5970
7200
|
'@swc/types': 0.1.26
|
|
@@ -5981,7 +7211,6 @@ snapshots:
|
|
|
5981
7211
|
'@swc/core-win32-arm64-msvc': 1.15.40
|
|
5982
7212
|
'@swc/core-win32-ia32-msvc': 1.15.40
|
|
5983
7213
|
'@swc/core-win32-x64-msvc': 1.15.40
|
|
5984
|
-
'@swc/helpers': 0.5.15
|
|
5985
7214
|
|
|
5986
7215
|
'@swc/counter@0.1.3': {}
|
|
5987
7216
|
|
|
@@ -5993,6 +7222,13 @@ snapshots:
|
|
|
5993
7222
|
dependencies:
|
|
5994
7223
|
'@swc/counter': 0.1.3
|
|
5995
7224
|
|
|
7225
|
+
'@tabler/icons-react@3.44.0(react@19.2.7)':
|
|
7226
|
+
dependencies:
|
|
7227
|
+
'@tabler/icons': 3.44.0
|
|
7228
|
+
react: 19.2.7
|
|
7229
|
+
|
|
7230
|
+
'@tabler/icons@3.44.0': {}
|
|
7231
|
+
|
|
5996
7232
|
'@tailwindcss/node@4.3.0':
|
|
5997
7233
|
dependencies:
|
|
5998
7234
|
'@jridgewell/remapping': 2.3.5
|
|
@@ -6062,6 +7298,14 @@ snapshots:
|
|
|
6062
7298
|
postcss: 8.5.15
|
|
6063
7299
|
tailwindcss: 4.3.0
|
|
6064
7300
|
|
|
7301
|
+
'@tanstack/react-table@8.21.3(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
7302
|
+
dependencies:
|
|
7303
|
+
'@tanstack/table-core': 8.21.3
|
|
7304
|
+
react: 19.2.7
|
|
7305
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
7306
|
+
|
|
7307
|
+
'@tanstack/table-core@8.21.3': {}
|
|
7308
|
+
|
|
6065
7309
|
'@ts-morph/common@0.27.0':
|
|
6066
7310
|
dependencies:
|
|
6067
7311
|
fast-glob: 3.3.3
|
|
@@ -6096,6 +7340,30 @@ snapshots:
|
|
|
6096
7340
|
'@types/deep-eql': 4.0.2
|
|
6097
7341
|
assertion-error: 2.0.1
|
|
6098
7342
|
|
|
7343
|
+
'@types/d3-array@3.2.2': {}
|
|
7344
|
+
|
|
7345
|
+
'@types/d3-color@3.1.3': {}
|
|
7346
|
+
|
|
7347
|
+
'@types/d3-ease@3.0.2': {}
|
|
7348
|
+
|
|
7349
|
+
'@types/d3-interpolate@3.0.4':
|
|
7350
|
+
dependencies:
|
|
7351
|
+
'@types/d3-color': 3.1.3
|
|
7352
|
+
|
|
7353
|
+
'@types/d3-path@3.1.1': {}
|
|
7354
|
+
|
|
7355
|
+
'@types/d3-scale@4.0.9':
|
|
7356
|
+
dependencies:
|
|
7357
|
+
'@types/d3-time': 3.0.4
|
|
7358
|
+
|
|
7359
|
+
'@types/d3-shape@3.1.8':
|
|
7360
|
+
dependencies:
|
|
7361
|
+
'@types/d3-path': 3.1.1
|
|
7362
|
+
|
|
7363
|
+
'@types/d3-time@3.0.4': {}
|
|
7364
|
+
|
|
7365
|
+
'@types/d3-timer@3.0.2': {}
|
|
7366
|
+
|
|
6099
7367
|
'@types/debug@4.1.13':
|
|
6100
7368
|
dependencies:
|
|
6101
7369
|
'@types/ms': 2.1.0
|
|
@@ -6150,6 +7418,8 @@ snapshots:
|
|
|
6150
7418
|
|
|
6151
7419
|
'@types/unist@3.0.3': {}
|
|
6152
7420
|
|
|
7421
|
+
'@types/use-sync-external-store@0.0.6': {}
|
|
7422
|
+
|
|
6153
7423
|
'@types/validate-npm-package-name@4.0.2': {}
|
|
6154
7424
|
|
|
6155
7425
|
'@typescript-eslint/eslint-plugin@8.60.1(@typescript-eslint/parser@8.60.1(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3))(eslint@9.39.4(jiti@2.7.0))(typescript@6.0.3)':
|
|
@@ -6461,6 +7731,18 @@ snapshots:
|
|
|
6461
7731
|
|
|
6462
7732
|
clsx@2.1.1: {}
|
|
6463
7733
|
|
|
7734
|
+
cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
|
|
7735
|
+
dependencies:
|
|
7736
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
7737
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
7738
|
+
'@radix-ui/react-id': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
7739
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
7740
|
+
react: 19.2.7
|
|
7741
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
7742
|
+
transitivePeerDependencies:
|
|
7743
|
+
- '@types/react'
|
|
7744
|
+
- '@types/react-dom'
|
|
7745
|
+
|
|
6464
7746
|
code-block-writer@13.0.3: {}
|
|
6465
7747
|
|
|
6466
7748
|
collapse-white-space@2.1.0: {}
|
|
@@ -6519,12 +7801,52 @@ snapshots:
|
|
|
6519
7801
|
|
|
6520
7802
|
csstype@3.2.3: {}
|
|
6521
7803
|
|
|
7804
|
+
d3-array@3.2.4:
|
|
7805
|
+
dependencies:
|
|
7806
|
+
internmap: 2.0.3
|
|
7807
|
+
|
|
7808
|
+
d3-color@3.1.0: {}
|
|
7809
|
+
|
|
7810
|
+
d3-ease@3.0.1: {}
|
|
7811
|
+
|
|
7812
|
+
d3-format@3.1.2: {}
|
|
7813
|
+
|
|
7814
|
+
d3-interpolate@3.0.1:
|
|
7815
|
+
dependencies:
|
|
7816
|
+
d3-color: 3.1.0
|
|
7817
|
+
|
|
7818
|
+
d3-path@3.1.0: {}
|
|
7819
|
+
|
|
7820
|
+
d3-scale@4.0.2:
|
|
7821
|
+
dependencies:
|
|
7822
|
+
d3-array: 3.2.4
|
|
7823
|
+
d3-format: 3.1.2
|
|
7824
|
+
d3-interpolate: 3.0.1
|
|
7825
|
+
d3-time: 3.1.0
|
|
7826
|
+
d3-time-format: 4.1.0
|
|
7827
|
+
|
|
7828
|
+
d3-shape@3.2.0:
|
|
7829
|
+
dependencies:
|
|
7830
|
+
d3-path: 3.1.0
|
|
7831
|
+
|
|
7832
|
+
d3-time-format@4.1.0:
|
|
7833
|
+
dependencies:
|
|
7834
|
+
d3-time: 3.1.0
|
|
7835
|
+
|
|
7836
|
+
d3-time@3.1.0:
|
|
7837
|
+
dependencies:
|
|
7838
|
+
d3-array: 3.2.4
|
|
7839
|
+
|
|
7840
|
+
d3-timer@3.0.1: {}
|
|
7841
|
+
|
|
6522
7842
|
data-uri-to-buffer@4.0.1: {}
|
|
6523
7843
|
|
|
6524
7844
|
debug@4.4.3:
|
|
6525
7845
|
dependencies:
|
|
6526
7846
|
ms: 2.1.3
|
|
6527
7847
|
|
|
7848
|
+
decimal.js-light@2.5.1: {}
|
|
7849
|
+
|
|
6528
7850
|
decode-named-character-reference@1.3.0:
|
|
6529
7851
|
dependencies:
|
|
6530
7852
|
character-entities: 2.0.2
|
|
@@ -6611,6 +7933,8 @@ snapshots:
|
|
|
6611
7933
|
dependencies:
|
|
6612
7934
|
es-errors: 1.3.0
|
|
6613
7935
|
|
|
7936
|
+
es-toolkit@1.47.0: {}
|
|
7937
|
+
|
|
6614
7938
|
esast-util-from-estree@2.0.0:
|
|
6615
7939
|
dependencies:
|
|
6616
7940
|
'@types/estree-jsx': 1.0.5
|
|
@@ -6773,6 +8097,8 @@ snapshots:
|
|
|
6773
8097
|
|
|
6774
8098
|
etag@1.8.1: {}
|
|
6775
8099
|
|
|
8100
|
+
eventemitter3@5.0.4: {}
|
|
8101
|
+
|
|
6776
8102
|
eventsource-parser@3.1.0: {}
|
|
6777
8103
|
|
|
6778
8104
|
eventsource@3.0.7:
|
|
@@ -7273,6 +8599,10 @@ snapshots:
|
|
|
7273
8599
|
|
|
7274
8600
|
ignore@7.0.5: {}
|
|
7275
8601
|
|
|
8602
|
+
immer@10.2.0: {}
|
|
8603
|
+
|
|
8604
|
+
immer@11.1.8: {}
|
|
8605
|
+
|
|
7276
8606
|
import-fresh@3.3.1:
|
|
7277
8607
|
dependencies:
|
|
7278
8608
|
parent-module: 1.0.1
|
|
@@ -7284,6 +8614,13 @@ snapshots:
|
|
|
7284
8614
|
|
|
7285
8615
|
inline-style-parser@0.2.7: {}
|
|
7286
8616
|
|
|
8617
|
+
input-otp@1.4.2(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
|
|
8618
|
+
dependencies:
|
|
8619
|
+
react: 19.2.7
|
|
8620
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
8621
|
+
|
|
8622
|
+
internmap@2.0.3: {}
|
|
8623
|
+
|
|
7287
8624
|
intl-messageformat@11.2.7:
|
|
7288
8625
|
dependencies:
|
|
7289
8626
|
'@formatjs/fast-memoize': 3.1.5
|
|
@@ -8001,11 +9338,11 @@ snapshots:
|
|
|
8001
9338
|
|
|
8002
9339
|
next-intl-swc-plugin-extractor@4.13.0: {}
|
|
8003
9340
|
|
|
8004
|
-
next-intl@4.13.0(
|
|
9341
|
+
next-intl@4.13.0(next@16.2.7(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)(typescript@6.0.3):
|
|
8005
9342
|
dependencies:
|
|
8006
9343
|
'@formatjs/intl-localematcher': 0.8.9
|
|
8007
9344
|
'@parcel/watcher': 2.5.6
|
|
8008
|
-
'@swc/core': 1.15.40
|
|
9345
|
+
'@swc/core': 1.15.40
|
|
8009
9346
|
icu-minify: 4.13.0
|
|
8010
9347
|
negotiator: 1.0.0
|
|
8011
9348
|
next: 16.2.7(@babel/core@7.29.7)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
@@ -8242,6 +9579,69 @@ snapshots:
|
|
|
8242
9579
|
|
|
8243
9580
|
queue-microtask@1.2.3: {}
|
|
8244
9581
|
|
|
9582
|
+
radix-ui@1.4.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
|
|
9583
|
+
dependencies:
|
|
9584
|
+
'@radix-ui/primitive': 1.1.3
|
|
9585
|
+
'@radix-ui/react-accessible-icon': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9586
|
+
'@radix-ui/react-accordion': 1.2.12(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9587
|
+
'@radix-ui/react-alert-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9588
|
+
'@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9589
|
+
'@radix-ui/react-aspect-ratio': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9590
|
+
'@radix-ui/react-avatar': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9591
|
+
'@radix-ui/react-checkbox': 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9592
|
+
'@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9593
|
+
'@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9594
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
9595
|
+
'@radix-ui/react-context': 1.1.2(@types/react@19.2.16)(react@19.2.7)
|
|
9596
|
+
'@radix-ui/react-context-menu': 2.2.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9597
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9598
|
+
'@radix-ui/react-direction': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
9599
|
+
'@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9600
|
+
'@radix-ui/react-dropdown-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9601
|
+
'@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.16)(react@19.2.7)
|
|
9602
|
+
'@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9603
|
+
'@radix-ui/react-form': 0.1.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9604
|
+
'@radix-ui/react-hover-card': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9605
|
+
'@radix-ui/react-label': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9606
|
+
'@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9607
|
+
'@radix-ui/react-menubar': 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9608
|
+
'@radix-ui/react-navigation-menu': 1.2.14(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9609
|
+
'@radix-ui/react-one-time-password-field': 0.1.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9610
|
+
'@radix-ui/react-password-toggle-field': 0.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9611
|
+
'@radix-ui/react-popover': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9612
|
+
'@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9613
|
+
'@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9614
|
+
'@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9615
|
+
'@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9616
|
+
'@radix-ui/react-progress': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9617
|
+
'@radix-ui/react-radio-group': 1.3.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9618
|
+
'@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9619
|
+
'@radix-ui/react-scroll-area': 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9620
|
+
'@radix-ui/react-select': 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9621
|
+
'@radix-ui/react-separator': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9622
|
+
'@radix-ui/react-slider': 1.3.6(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9623
|
+
'@radix-ui/react-slot': 1.2.3(@types/react@19.2.16)(react@19.2.7)
|
|
9624
|
+
'@radix-ui/react-switch': 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9625
|
+
'@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9626
|
+
'@radix-ui/react-toast': 1.2.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9627
|
+
'@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9628
|
+
'@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9629
|
+
'@radix-ui/react-toolbar': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9630
|
+
'@radix-ui/react-tooltip': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9631
|
+
'@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
9632
|
+
'@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.16)(react@19.2.7)
|
|
9633
|
+
'@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.16)(react@19.2.7)
|
|
9634
|
+
'@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
9635
|
+
'@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.16)(react@19.2.7)
|
|
9636
|
+
'@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
9637
|
+
'@radix-ui/react-use-size': 1.1.1(@types/react@19.2.16)(react@19.2.7)
|
|
9638
|
+
'@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
9639
|
+
react: 19.2.7
|
|
9640
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
9641
|
+
optionalDependencies:
|
|
9642
|
+
'@types/react': 19.2.16
|
|
9643
|
+
'@types/react-dom': 19.2.3(@types/react@19.2.16)
|
|
9644
|
+
|
|
8245
9645
|
range-parser@1.2.1: {}
|
|
8246
9646
|
|
|
8247
9647
|
raw-body@3.0.2:
|
|
@@ -8260,6 +9660,17 @@ snapshots:
|
|
|
8260
9660
|
dependencies:
|
|
8261
9661
|
react: 19.2.7
|
|
8262
9662
|
|
|
9663
|
+
react-is@19.2.7: {}
|
|
9664
|
+
|
|
9665
|
+
react-redux@9.3.0(@types/react@19.2.16)(react@19.2.7)(redux@5.0.1):
|
|
9666
|
+
dependencies:
|
|
9667
|
+
'@types/use-sync-external-store': 0.0.6
|
|
9668
|
+
react: 19.2.7
|
|
9669
|
+
use-sync-external-store: 1.6.0(react@19.2.7)
|
|
9670
|
+
optionalDependencies:
|
|
9671
|
+
'@types/react': 19.2.16
|
|
9672
|
+
redux: 5.0.1
|
|
9673
|
+
|
|
8263
9674
|
react-remove-scroll-bar@2.3.8(@types/react@19.2.16)(react@19.2.7):
|
|
8264
9675
|
dependencies:
|
|
8265
9676
|
react: 19.2.7
|
|
@@ -8299,6 +9710,26 @@ snapshots:
|
|
|
8299
9710
|
tiny-invariant: 1.3.3
|
|
8300
9711
|
tslib: 2.8.1
|
|
8301
9712
|
|
|
9713
|
+
recharts@3.8.1(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react-is@19.2.7)(react@19.2.7)(redux@5.0.1):
|
|
9714
|
+
dependencies:
|
|
9715
|
+
'@reduxjs/toolkit': 2.12.0(react-redux@9.3.0(@types/react@19.2.16)(react@19.2.7)(redux@5.0.1))(react@19.2.7)
|
|
9716
|
+
clsx: 2.1.1
|
|
9717
|
+
decimal.js-light: 2.5.1
|
|
9718
|
+
es-toolkit: 1.47.0
|
|
9719
|
+
eventemitter3: 5.0.4
|
|
9720
|
+
immer: 10.2.0
|
|
9721
|
+
react: 19.2.7
|
|
9722
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
9723
|
+
react-is: 19.2.7
|
|
9724
|
+
react-redux: 9.3.0(@types/react@19.2.16)(react@19.2.7)(redux@5.0.1)
|
|
9725
|
+
reselect: 5.1.1
|
|
9726
|
+
tiny-invariant: 1.3.3
|
|
9727
|
+
use-sync-external-store: 1.6.0(react@19.2.7)
|
|
9728
|
+
victory-vendor: 37.3.6
|
|
9729
|
+
transitivePeerDependencies:
|
|
9730
|
+
- '@types/react'
|
|
9731
|
+
- redux
|
|
9732
|
+
|
|
8302
9733
|
recma-build-jsx@1.0.0:
|
|
8303
9734
|
dependencies:
|
|
8304
9735
|
'@types/estree': 1.0.9
|
|
@@ -8328,6 +9759,12 @@ snapshots:
|
|
|
8328
9759
|
unified: 11.0.5
|
|
8329
9760
|
vfile: 6.0.3
|
|
8330
9761
|
|
|
9762
|
+
redux-thunk@3.1.0(redux@5.0.1):
|
|
9763
|
+
dependencies:
|
|
9764
|
+
redux: 5.0.1
|
|
9765
|
+
|
|
9766
|
+
redux@5.0.1: {}
|
|
9767
|
+
|
|
8331
9768
|
regex-recursion@6.0.2:
|
|
8332
9769
|
dependencies:
|
|
8333
9770
|
regex-utilities: 2.3.0
|
|
@@ -8406,6 +9843,8 @@ snapshots:
|
|
|
8406
9843
|
|
|
8407
9844
|
require-from-string@2.0.2: {}
|
|
8408
9845
|
|
|
9846
|
+
reselect@5.1.1: {}
|
|
9847
|
+
|
|
8409
9848
|
reselect@5.2.0: {}
|
|
8410
9849
|
|
|
8411
9850
|
resolve-from@4.0.0: {}
|
|
@@ -8899,6 +10338,15 @@ snapshots:
|
|
|
8899
10338
|
|
|
8900
10339
|
vary@1.1.2: {}
|
|
8901
10340
|
|
|
10341
|
+
vaul@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
|
|
10342
|
+
dependencies:
|
|
10343
|
+
'@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.16))(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
10344
|
+
react: 19.2.7
|
|
10345
|
+
react-dom: 19.2.7(react@19.2.7)
|
|
10346
|
+
transitivePeerDependencies:
|
|
10347
|
+
- '@types/react'
|
|
10348
|
+
- '@types/react-dom'
|
|
10349
|
+
|
|
8902
10350
|
vfile-location@5.0.3:
|
|
8903
10351
|
dependencies:
|
|
8904
10352
|
'@types/unist': 3.0.3
|
|
@@ -8914,6 +10362,23 @@ snapshots:
|
|
|
8914
10362
|
'@types/unist': 3.0.3
|
|
8915
10363
|
vfile-message: 4.0.3
|
|
8916
10364
|
|
|
10365
|
+
victory-vendor@37.3.6:
|
|
10366
|
+
dependencies:
|
|
10367
|
+
'@types/d3-array': 3.2.2
|
|
10368
|
+
'@types/d3-ease': 3.0.2
|
|
10369
|
+
'@types/d3-interpolate': 3.0.4
|
|
10370
|
+
'@types/d3-scale': 4.0.9
|
|
10371
|
+
'@types/d3-shape': 3.1.8
|
|
10372
|
+
'@types/d3-time': 3.0.4
|
|
10373
|
+
'@types/d3-timer': 3.0.2
|
|
10374
|
+
d3-array: 3.2.4
|
|
10375
|
+
d3-ease: 3.0.1
|
|
10376
|
+
d3-interpolate: 3.0.1
|
|
10377
|
+
d3-scale: 4.0.2
|
|
10378
|
+
d3-shape: 3.2.0
|
|
10379
|
+
d3-time: 3.1.0
|
|
10380
|
+
d3-timer: 3.0.1
|
|
10381
|
+
|
|
8917
10382
|
vite@8.0.16(@types/node@25.9.1)(esbuild@0.28.0)(jiti@2.7.0)(yaml@2.9.0):
|
|
8918
10383
|
dependencies:
|
|
8919
10384
|
lightningcss: 1.32.0
|