@cogito.ai/cli 0.3.4 → 0.4.0

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