create-reactivite 1.4.0 → 1.6.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 (132) hide show
  1. package/README.md +326 -290
  2. package/index.js +1 -1
  3. package/package.json +4 -2
  4. package/template/package.json +22 -22
  5. package/template/pnpm-lock.yaml +3274 -3274
  6. package/template/src/components/author-credit.tsx +25 -25
  7. package/template2/.env.example +8 -8
  8. package/template2/.husky/pre-commit +4 -4
  9. package/template2/.prettierrc +5 -5
  10. package/template2/README.md +73 -73
  11. package/template2/__tests__/example.test.ts +20 -20
  12. package/template2/_gitignore +37 -37
  13. package/template2/app/[locale]/(private)/dashboard/page.tsx +52 -52
  14. package/template2/app/[locale]/(public)/login/page.tsx +83 -83
  15. package/template2/app/[locale]/layout.tsx +58 -58
  16. package/template2/app/[locale]/locales.ts +10 -10
  17. package/template2/app/[locale]/page.tsx +38 -38
  18. package/template2/app/api/clear-session/route.ts +10 -10
  19. package/template2/app/globals.css +127 -127
  20. package/template2/app/layout.tsx +7 -7
  21. package/template2/app/page.tsx +6 -6
  22. package/template2/components/AuthEventListener.tsx +22 -22
  23. package/template2/components/author-credit.tsx +25 -25
  24. package/template2/components/theme-provider.tsx +78 -78
  25. package/template2/components/ui/button.tsx +60 -60
  26. package/template2/components/ui/card.tsx +92 -92
  27. package/template2/components/ui/input.tsx +21 -21
  28. package/template2/components/ui/label.tsx +24 -24
  29. package/template2/components/ui/sonner.tsx +40 -40
  30. package/template2/components.json +22 -22
  31. package/template2/config/constants.ts +7 -7
  32. package/template2/config/env.ts +5 -5
  33. package/template2/contexts/translation-context.tsx +70 -70
  34. package/template2/eslint.config.mjs +18 -18
  35. package/template2/hoc/provider.tsx +27 -27
  36. package/template2/lib/paramsSerializer.ts +40 -40
  37. package/template2/lib/utils.ts +6 -6
  38. package/template2/locales/az.json +20 -20
  39. package/template2/locales/en.json +20 -20
  40. package/template2/next-env.d.ts +1 -1
  41. package/template2/next.config.ts +17 -17
  42. package/template2/orval.config.ts +66 -66
  43. package/template2/package.json +62 -62
  44. package/template2/postcss.config.mjs +7 -7
  45. package/template2/scripts/fix-generated-types.mjs +13 -13
  46. package/template2/services/generated/.gitkeep +2 -2
  47. package/template2/services/httpClient/httpClient.ts +70 -70
  48. package/template2/services/httpClient/orvalMutator.ts +10 -10
  49. package/template2/store/example-store.tsx +16 -16
  50. package/template2/store/user-store.tsx +29 -29
  51. package/template2/testing/msw/handlers/index.ts +6 -6
  52. package/template2/testing/msw/server.ts +4 -4
  53. package/template2/tsconfig.json +34 -34
  54. package/template2/vitest.config.ts +17 -17
  55. package/template2/vitest.setup.ts +7 -7
  56. package/template3/README.md +34 -34
  57. package/template3/_gitignore +16 -16
  58. package/template3/components.json +21 -0
  59. package/template3/index.html +8 -2
  60. package/template3/package-lock.json +3934 -0
  61. package/template3/package.json +48 -22
  62. package/template3/postcss.config.mjs +5 -0
  63. package/template3/rspack.config.mjs +59 -51
  64. package/template3/src/App.tsx +16 -11
  65. package/template3/src/components/author-credit.tsx +42 -42
  66. package/template3/src/components/layout.tsx +59 -0
  67. package/template3/src/components/matrix-rain.tsx +71 -0
  68. package/template3/src/components/ui/accordion.tsx +64 -0
  69. package/template3/src/components/ui/alert-dialog.tsx +196 -0
  70. package/template3/src/components/ui/alert.tsx +66 -0
  71. package/template3/src/components/ui/aspect-ratio.tsx +11 -0
  72. package/template3/src/components/ui/avatar.tsx +107 -0
  73. package/template3/src/components/ui/badge.tsx +48 -0
  74. package/template3/src/components/ui/breadcrumb.tsx +109 -0
  75. package/template3/src/components/ui/button-group.tsx +83 -0
  76. package/template3/src/components/ui/button.tsx +64 -0
  77. package/template3/src/components/ui/calendar.tsx +218 -0
  78. package/template3/src/components/ui/card.tsx +92 -0
  79. package/template3/src/components/ui/carousel.tsx +241 -0
  80. package/template3/src/components/ui/chart.tsx +372 -0
  81. package/template3/src/components/ui/checkbox.tsx +32 -0
  82. package/template3/src/components/ui/collapsible.tsx +31 -0
  83. package/template3/src/components/ui/combobox.tsx +310 -0
  84. package/template3/src/components/ui/command.tsx +184 -0
  85. package/template3/src/components/ui/context-menu.tsx +252 -0
  86. package/template3/src/components/ui/dialog.tsx +156 -0
  87. package/template3/src/components/ui/direction.tsx +22 -0
  88. package/template3/src/components/ui/drawer.tsx +133 -0
  89. package/template3/src/components/ui/dropdown-menu.tsx +257 -0
  90. package/template3/src/components/ui/empty.tsx +104 -0
  91. package/template3/src/components/ui/field.tsx +248 -0
  92. package/template3/src/components/ui/form.tsx +165 -0
  93. package/template3/src/components/ui/hover-card.tsx +42 -0
  94. package/template3/src/components/ui/input-group.tsx +168 -0
  95. package/template3/src/components/ui/input-otp.tsx +77 -0
  96. package/template3/src/components/ui/input.tsx +21 -0
  97. package/template3/src/components/ui/item.tsx +193 -0
  98. package/template3/src/components/ui/kbd.tsx +28 -0
  99. package/template3/src/components/ui/label.tsx +22 -0
  100. package/template3/src/components/ui/menubar.tsx +276 -0
  101. package/template3/src/components/ui/native-select.tsx +62 -0
  102. package/template3/src/components/ui/navigation-menu.tsx +168 -0
  103. package/template3/src/components/ui/pagination.tsx +127 -0
  104. package/template3/src/components/ui/popover.tsx +87 -0
  105. package/template3/src/components/ui/progress.tsx +31 -0
  106. package/template3/src/components/ui/radio-group.tsx +43 -0
  107. package/template3/src/components/ui/resizable.tsx +53 -0
  108. package/template3/src/components/ui/scroll-area.tsx +56 -0
  109. package/template3/src/components/ui/select.tsx +190 -0
  110. package/template3/src/components/ui/separator.tsx +26 -0
  111. package/template3/src/components/ui/sheet.tsx +143 -0
  112. package/template3/src/components/ui/sidebar.tsx +724 -0
  113. package/template3/src/components/ui/skeleton.tsx +13 -0
  114. package/template3/src/components/ui/slider.tsx +61 -0
  115. package/template3/src/components/ui/sonner.tsx +40 -0
  116. package/template3/src/components/ui/spinner.tsx +16 -0
  117. package/template3/src/components/ui/switch.tsx +33 -0
  118. package/template3/src/components/ui/table.tsx +116 -0
  119. package/template3/src/components/ui/tabs.tsx +89 -0
  120. package/template3/src/components/ui/textarea.tsx +18 -0
  121. package/template3/src/components/ui/toggle-group.tsx +83 -0
  122. package/template3/src/components/ui/toggle.tsx +47 -0
  123. package/template3/src/components/ui/tooltip.tsx +55 -0
  124. package/template3/src/hooks/use-mobile.ts +19 -0
  125. package/template3/src/index.css +175 -32
  126. package/template3/src/lib/utils.ts +6 -0
  127. package/template3/src/main.tsx +10 -10
  128. package/template3/src/pages/about.tsx +113 -0
  129. package/template3/src/pages/contact.tsx +111 -0
  130. package/template3/src/pages/home.tsx +81 -0
  131. package/template3/tsconfig.json +24 -20
  132. package/template2/tsconfig.tsbuildinfo +0 -1
@@ -0,0 +1,3934 @@
1
+ {
2
+ "name": "rspack-simple",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "rspack-simple",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@base-ui/react": "^1.6.0",
12
+ "@hookform/resolvers": "^5.4.0",
13
+ "class-variance-authority": "^0.7.1",
14
+ "clsx": "^2.1.1",
15
+ "cmdk": "^1.1.1",
16
+ "date-fns": "^4.4.0",
17
+ "embla-carousel-react": "^8.6.0",
18
+ "input-otp": "^1.4.2",
19
+ "lucide-react": "^1.21.0",
20
+ "next-themes": "^0.4.6",
21
+ "radix-ui": "^1.6.0",
22
+ "react": "^19.2.7",
23
+ "react-day-picker": "^10.0.1",
24
+ "react-dom": "^19.2.7",
25
+ "react-hook-form": "^7.80.0",
26
+ "react-resizable-panels": "^4.11.2",
27
+ "react-router-dom": "^7.18.0",
28
+ "recharts": "^3.8.0",
29
+ "sonner": "^2.0.7",
30
+ "tailwind-merge": "^3.6.0",
31
+ "tw-animate-css": "^1.4.0",
32
+ "vaul": "^1.1.2",
33
+ "zod": "^4.4.3"
34
+ },
35
+ "devDependencies": {
36
+ "@rspack/cli": "^2.0.8",
37
+ "@rspack/core": "^2.0.8",
38
+ "@rspack/dev-server": "^2.1.0",
39
+ "@tailwindcss/postcss": "^4.3.1",
40
+ "@types/react": "^19",
41
+ "@types/react-dom": "^19",
42
+ "postcss": "^8.5.15",
43
+ "postcss-loader": "^8.2.1",
44
+ "tailwindcss": "^4.3.1",
45
+ "typescript": "^6.0.3"
46
+ }
47
+ },
48
+ "node_modules/@alloc/quick-lru": {
49
+ "version": "5.2.0",
50
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
51
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
52
+ "dev": true,
53
+ "license": "MIT",
54
+ "engines": {
55
+ "node": ">=10"
56
+ },
57
+ "funding": {
58
+ "url": "https://github.com/sponsors/sindresorhus"
59
+ }
60
+ },
61
+ "node_modules/@babel/code-frame": {
62
+ "version": "7.29.7",
63
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
64
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
65
+ "dev": true,
66
+ "license": "MIT",
67
+ "dependencies": {
68
+ "@babel/helper-validator-identifier": "^7.29.7",
69
+ "js-tokens": "^4.0.0",
70
+ "picocolors": "^1.1.1"
71
+ },
72
+ "engines": {
73
+ "node": ">=6.9.0"
74
+ }
75
+ },
76
+ "node_modules/@babel/helper-validator-identifier": {
77
+ "version": "7.29.7",
78
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
79
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
80
+ "dev": true,
81
+ "license": "MIT",
82
+ "engines": {
83
+ "node": ">=6.9.0"
84
+ }
85
+ },
86
+ "node_modules/@babel/runtime": {
87
+ "version": "7.29.7",
88
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.7.tgz",
89
+ "integrity": "sha512-Nq8OhGWiZIZGV6hLHoyAKLLcJihP/xFeBMGJoUrxTX2psI8dCifzLhZISFb+VWS3wFMRDmCGw5R+dOySCqPLhw==",
90
+ "license": "MIT",
91
+ "engines": {
92
+ "node": ">=6.9.0"
93
+ }
94
+ },
95
+ "node_modules/@base-ui/react": {
96
+ "version": "1.6.0",
97
+ "resolved": "https://registry.npmjs.org/@base-ui/react/-/react-1.6.0.tgz",
98
+ "integrity": "sha512-/jzjTWJYXhRFO45Bev9lc3cHbmjzCMpUqbMZ2AgKy/z25mY9B6shGSNcXcjQar9n5doM0KYW1W8fcFv2jZBuMw==",
99
+ "license": "MIT",
100
+ "dependencies": {
101
+ "@babel/runtime": "^7.29.2",
102
+ "@base-ui/utils": "0.3.1",
103
+ "@floating-ui/react-dom": "^2.1.8",
104
+ "@floating-ui/utils": "^0.2.11",
105
+ "use-sync-external-store": "^1.6.0"
106
+ },
107
+ "engines": {
108
+ "node": ">=14.0.0"
109
+ },
110
+ "funding": {
111
+ "type": "opencollective",
112
+ "url": "https://opencollective.com/mui-org"
113
+ },
114
+ "peerDependencies": {
115
+ "@date-fns/tz": "^1.2.0",
116
+ "@types/react": "^17 || ^18 || ^19",
117
+ "date-fns": "^4.0.0",
118
+ "react": "^17 || ^18 || ^19",
119
+ "react-dom": "^17 || ^18 || ^19"
120
+ },
121
+ "peerDependenciesMeta": {
122
+ "@date-fns/tz": {
123
+ "optional": true
124
+ },
125
+ "@types/react": {
126
+ "optional": true
127
+ },
128
+ "date-fns": {
129
+ "optional": true
130
+ }
131
+ }
132
+ },
133
+ "node_modules/@base-ui/utils": {
134
+ "version": "0.3.1",
135
+ "resolved": "https://registry.npmjs.org/@base-ui/utils/-/utils-0.3.1.tgz",
136
+ "integrity": "sha512-gFFiltORVmW/N6IILTGxizP3PBpVpysqML1ALY5Vk0mH+7faVkCknOU31goYHN5Aoek2dkjxva1XOD2Ce9WuIg==",
137
+ "license": "MIT",
138
+ "dependencies": {
139
+ "@babel/runtime": "^7.29.2",
140
+ "@floating-ui/utils": "^0.2.11",
141
+ "reselect": "^5.2.0",
142
+ "use-sync-external-store": "^1.6.0"
143
+ },
144
+ "peerDependencies": {
145
+ "@types/react": "^17 || ^18 || ^19",
146
+ "react": "^17 || ^18 || ^19",
147
+ "react-dom": "^17 || ^18 || ^19"
148
+ },
149
+ "peerDependenciesMeta": {
150
+ "@types/react": {
151
+ "optional": true
152
+ }
153
+ }
154
+ },
155
+ "node_modules/@date-fns/tz": {
156
+ "version": "1.5.0",
157
+ "resolved": "https://registry.npmjs.org/@date-fns/tz/-/tz-1.5.0.tgz",
158
+ "integrity": "sha512-lwYN/vDPeNRULcepoE/LO2Pgx+7/RV+S9ARfbc9lr2DtGkOD7pAiruHvbR1RX3Qyf6ja47EWJDMsNK5vK08DJg==",
159
+ "license": "MIT",
160
+ "peer": true
161
+ },
162
+ "node_modules/@emnapi/wasi-threads": {
163
+ "version": "1.2.2",
164
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
165
+ "integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
166
+ "dev": true,
167
+ "license": "MIT",
168
+ "optional": true,
169
+ "dependencies": {
170
+ "tslib": "^2.4.0"
171
+ }
172
+ },
173
+ "node_modules/@floating-ui/core": {
174
+ "version": "1.7.5",
175
+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.5.tgz",
176
+ "integrity": "sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==",
177
+ "license": "MIT",
178
+ "dependencies": {
179
+ "@floating-ui/utils": "^0.2.11"
180
+ }
181
+ },
182
+ "node_modules/@floating-ui/dom": {
183
+ "version": "1.7.6",
184
+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.6.tgz",
185
+ "integrity": "sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==",
186
+ "license": "MIT",
187
+ "dependencies": {
188
+ "@floating-ui/core": "^1.7.5",
189
+ "@floating-ui/utils": "^0.2.11"
190
+ }
191
+ },
192
+ "node_modules/@floating-ui/react-dom": {
193
+ "version": "2.1.8",
194
+ "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.8.tgz",
195
+ "integrity": "sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==",
196
+ "license": "MIT",
197
+ "dependencies": {
198
+ "@floating-ui/dom": "^1.7.6"
199
+ },
200
+ "peerDependencies": {
201
+ "react": ">=16.8.0",
202
+ "react-dom": ">=16.8.0"
203
+ }
204
+ },
205
+ "node_modules/@floating-ui/utils": {
206
+ "version": "0.2.11",
207
+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.11.tgz",
208
+ "integrity": "sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==",
209
+ "license": "MIT"
210
+ },
211
+ "node_modules/@hookform/resolvers": {
212
+ "version": "5.4.0",
213
+ "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-5.4.0.tgz",
214
+ "integrity": "sha512-EIsqr/t/qbinPIhGjMdtvutIN1Kk4uwbROE9/UQ93CAVGR7GkA7Y92+fX80OzXi/OB67jVFYwKGO1WzkxmkFZw==",
215
+ "license": "MIT",
216
+ "dependencies": {
217
+ "@standard-schema/utils": "^0.3.0"
218
+ },
219
+ "peerDependencies": {
220
+ "react-hook-form": "^7.55.0"
221
+ }
222
+ },
223
+ "node_modules/@jridgewell/gen-mapping": {
224
+ "version": "0.3.13",
225
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
226
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
227
+ "dev": true,
228
+ "license": "MIT",
229
+ "dependencies": {
230
+ "@jridgewell/sourcemap-codec": "^1.5.0",
231
+ "@jridgewell/trace-mapping": "^0.3.24"
232
+ }
233
+ },
234
+ "node_modules/@jridgewell/remapping": {
235
+ "version": "2.3.5",
236
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
237
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
238
+ "dev": true,
239
+ "license": "MIT",
240
+ "dependencies": {
241
+ "@jridgewell/gen-mapping": "^0.3.5",
242
+ "@jridgewell/trace-mapping": "^0.3.24"
243
+ }
244
+ },
245
+ "node_modules/@jridgewell/resolve-uri": {
246
+ "version": "3.1.2",
247
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
248
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
249
+ "dev": true,
250
+ "license": "MIT",
251
+ "engines": {
252
+ "node": ">=6.0.0"
253
+ }
254
+ },
255
+ "node_modules/@jridgewell/sourcemap-codec": {
256
+ "version": "1.5.5",
257
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
258
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
259
+ "dev": true,
260
+ "license": "MIT"
261
+ },
262
+ "node_modules/@jridgewell/trace-mapping": {
263
+ "version": "0.3.31",
264
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
265
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
266
+ "dev": true,
267
+ "license": "MIT",
268
+ "dependencies": {
269
+ "@jridgewell/resolve-uri": "^3.1.0",
270
+ "@jridgewell/sourcemap-codec": "^1.4.14"
271
+ }
272
+ },
273
+ "node_modules/@napi-rs/wasm-runtime": {
274
+ "version": "1.1.4",
275
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
276
+ "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
277
+ "dev": true,
278
+ "license": "MIT",
279
+ "optional": true,
280
+ "dependencies": {
281
+ "@tybys/wasm-util": "^0.10.1"
282
+ },
283
+ "funding": {
284
+ "type": "github",
285
+ "url": "https://github.com/sponsors/Brooooooklyn"
286
+ },
287
+ "peerDependencies": {
288
+ "@emnapi/core": "^1.7.1",
289
+ "@emnapi/runtime": "^1.7.1"
290
+ }
291
+ },
292
+ "node_modules/@radix-ui/number": {
293
+ "version": "1.1.2",
294
+ "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.2.tgz",
295
+ "integrity": "sha512-ceTwaxc4I5IOi97DgCotl3pqiyRGvffcc0oOsE2dQYaJOFIDsDt4VWG6xEbg1QePv9QWausCEIppud/tJ1wNig==",
296
+ "license": "MIT"
297
+ },
298
+ "node_modules/@radix-ui/primitive": {
299
+ "version": "1.1.4",
300
+ "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.4.tgz",
301
+ "integrity": "sha512-7AdCK9PQyiljKoBDbN8OuctCbd/esdwZPQ8RtOE3SsyQtUpiPb+ND75q0jEhC1m1ecBI0MFNeLJvwIh9iKHRcQ==",
302
+ "license": "MIT"
303
+ },
304
+ "node_modules/@radix-ui/react-accessible-icon": {
305
+ "version": "1.1.10",
306
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-accessible-icon/-/react-accessible-icon-1.1.10.tgz",
307
+ "integrity": "sha512-TraSwZUqTcVbiDV2/RXzAXC7aeVVXchq0daPFZE7zAxYFaMzjOUggLOfQH9KFLgRizuwVKZO/crveV1eeO3/ZQ==",
308
+ "license": "MIT",
309
+ "dependencies": {
310
+ "@radix-ui/react-visually-hidden": "1.2.6"
311
+ },
312
+ "peerDependencies": {
313
+ "@types/react": "*",
314
+ "@types/react-dom": "*",
315
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
316
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
317
+ },
318
+ "peerDependenciesMeta": {
319
+ "@types/react": {
320
+ "optional": true
321
+ },
322
+ "@types/react-dom": {
323
+ "optional": true
324
+ }
325
+ }
326
+ },
327
+ "node_modules/@radix-ui/react-accordion": {
328
+ "version": "1.2.14",
329
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-accordion/-/react-accordion-1.2.14.tgz",
330
+ "integrity": "sha512-iE8YB9nmTBH8zd73ofBISZ8JCzgMoMkATJr7qDwa6u5F1+7mTM81V6fa71jgZ65rpjVpecDf1vSnwIFP9Ly1zw==",
331
+ "license": "MIT",
332
+ "dependencies": {
333
+ "@radix-ui/primitive": "1.1.4",
334
+ "@radix-ui/react-collapsible": "1.1.14",
335
+ "@radix-ui/react-collection": "1.1.10",
336
+ "@radix-ui/react-compose-refs": "1.1.3",
337
+ "@radix-ui/react-context": "1.1.4",
338
+ "@radix-ui/react-direction": "1.1.2",
339
+ "@radix-ui/react-id": "1.1.2",
340
+ "@radix-ui/react-primitive": "2.1.6",
341
+ "@radix-ui/react-use-controllable-state": "1.2.3"
342
+ },
343
+ "peerDependencies": {
344
+ "@types/react": "*",
345
+ "@types/react-dom": "*",
346
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
347
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
348
+ },
349
+ "peerDependenciesMeta": {
350
+ "@types/react": {
351
+ "optional": true
352
+ },
353
+ "@types/react-dom": {
354
+ "optional": true
355
+ }
356
+ }
357
+ },
358
+ "node_modules/@radix-ui/react-alert-dialog": {
359
+ "version": "1.1.17",
360
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.1.17.tgz",
361
+ "integrity": "sha512-563ygGeyWPrxyVCNp7OV4rE2aIXhFPknpFyo4wbDlcyMMPZ6ySh+zC5WTvY0ZFLgPTg/QB6tA8PyDQyJ2b4cPg==",
362
+ "license": "MIT",
363
+ "dependencies": {
364
+ "@radix-ui/primitive": "1.1.4",
365
+ "@radix-ui/react-compose-refs": "1.1.3",
366
+ "@radix-ui/react-context": "1.1.4",
367
+ "@radix-ui/react-dialog": "1.1.17",
368
+ "@radix-ui/react-primitive": "2.1.6"
369
+ },
370
+ "peerDependencies": {
371
+ "@types/react": "*",
372
+ "@types/react-dom": "*",
373
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
374
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
375
+ },
376
+ "peerDependenciesMeta": {
377
+ "@types/react": {
378
+ "optional": true
379
+ },
380
+ "@types/react-dom": {
381
+ "optional": true
382
+ }
383
+ }
384
+ },
385
+ "node_modules/@radix-ui/react-arrow": {
386
+ "version": "1.1.10",
387
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.10.tgz",
388
+ "integrity": "sha512-j2VTDz1vgCsmuG0k5lBfOcM8n5JPFqZBcMryasFjHYMhwxYL5SRUV5lMSUpRdNtw3D/Sv8pzJtrlAgkssYSsQQ==",
389
+ "license": "MIT",
390
+ "dependencies": {
391
+ "@radix-ui/react-primitive": "2.1.6"
392
+ },
393
+ "peerDependencies": {
394
+ "@types/react": "*",
395
+ "@types/react-dom": "*",
396
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
397
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
398
+ },
399
+ "peerDependenciesMeta": {
400
+ "@types/react": {
401
+ "optional": true
402
+ },
403
+ "@types/react-dom": {
404
+ "optional": true
405
+ }
406
+ }
407
+ },
408
+ "node_modules/@radix-ui/react-aspect-ratio": {
409
+ "version": "1.1.10",
410
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-aspect-ratio/-/react-aspect-ratio-1.1.10.tgz",
411
+ "integrity": "sha512-kbI7NrqhDeuytYrq7JjAsoXczvL8wgj2tc1MyaYWm+50bMKHCHQtVWCryslx4cCpmCTTkBcwQckE4CmmGV2haQ==",
412
+ "license": "MIT",
413
+ "dependencies": {
414
+ "@radix-ui/react-primitive": "2.1.6"
415
+ },
416
+ "peerDependencies": {
417
+ "@types/react": "*",
418
+ "@types/react-dom": "*",
419
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
420
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
421
+ },
422
+ "peerDependenciesMeta": {
423
+ "@types/react": {
424
+ "optional": true
425
+ },
426
+ "@types/react-dom": {
427
+ "optional": true
428
+ }
429
+ }
430
+ },
431
+ "node_modules/@radix-ui/react-avatar": {
432
+ "version": "1.2.0",
433
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.2.0.tgz",
434
+ "integrity": "sha512-am/CwltXtmtdtP+5FbYblYDnMa/zuKcMJP1i3/SJMDXXfj2mG+BTqLH2wucqeyyiQMursUtg/5cK+Nh2pCaSOA==",
435
+ "license": "MIT",
436
+ "dependencies": {
437
+ "@radix-ui/react-context": "1.1.4",
438
+ "@radix-ui/react-primitive": "2.1.6",
439
+ "@radix-ui/react-use-callback-ref": "1.1.2",
440
+ "@radix-ui/react-use-is-hydrated": "0.1.1",
441
+ "@radix-ui/react-use-layout-effect": "1.1.2"
442
+ },
443
+ "peerDependencies": {
444
+ "@types/react": "*",
445
+ "@types/react-dom": "*",
446
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
447
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
448
+ },
449
+ "peerDependenciesMeta": {
450
+ "@types/react": {
451
+ "optional": true
452
+ },
453
+ "@types/react-dom": {
454
+ "optional": true
455
+ }
456
+ }
457
+ },
458
+ "node_modules/@radix-ui/react-checkbox": {
459
+ "version": "1.3.5",
460
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-checkbox/-/react-checkbox-1.3.5.tgz",
461
+ "integrity": "sha512-pREzrmNnVwGvYaBoM64huTRK7B3lrTRuwj8A9nwhPiEtMb+yudiWh6zWAqEtP0Dzd5+iBa1Ki7V1pCxV8ExMdA==",
462
+ "license": "MIT",
463
+ "dependencies": {
464
+ "@radix-ui/primitive": "1.1.4",
465
+ "@radix-ui/react-compose-refs": "1.1.3",
466
+ "@radix-ui/react-context": "1.1.4",
467
+ "@radix-ui/react-presence": "1.1.6",
468
+ "@radix-ui/react-primitive": "2.1.6",
469
+ "@radix-ui/react-use-controllable-state": "1.2.3",
470
+ "@radix-ui/react-use-previous": "1.1.2",
471
+ "@radix-ui/react-use-size": "1.1.2"
472
+ },
473
+ "peerDependencies": {
474
+ "@types/react": "*",
475
+ "@types/react-dom": "*",
476
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
477
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
478
+ },
479
+ "peerDependenciesMeta": {
480
+ "@types/react": {
481
+ "optional": true
482
+ },
483
+ "@types/react-dom": {
484
+ "optional": true
485
+ }
486
+ }
487
+ },
488
+ "node_modules/@radix-ui/react-collapsible": {
489
+ "version": "1.1.14",
490
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.1.14.tgz",
491
+ "integrity": "sha512-9bT+FvifX1FK2Mj6UEsTdyu0cN3JaA3KdfhaBao+ONrYFy/pyOy3TU1TNw7iOk1o+0hOEq67RojlUUmoFGwxyA==",
492
+ "license": "MIT",
493
+ "dependencies": {
494
+ "@radix-ui/primitive": "1.1.4",
495
+ "@radix-ui/react-compose-refs": "1.1.3",
496
+ "@radix-ui/react-context": "1.1.4",
497
+ "@radix-ui/react-id": "1.1.2",
498
+ "@radix-ui/react-presence": "1.1.6",
499
+ "@radix-ui/react-primitive": "2.1.6",
500
+ "@radix-ui/react-use-controllable-state": "1.2.3",
501
+ "@radix-ui/react-use-layout-effect": "1.1.2"
502
+ },
503
+ "peerDependencies": {
504
+ "@types/react": "*",
505
+ "@types/react-dom": "*",
506
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
507
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
508
+ },
509
+ "peerDependenciesMeta": {
510
+ "@types/react": {
511
+ "optional": true
512
+ },
513
+ "@types/react-dom": {
514
+ "optional": true
515
+ }
516
+ }
517
+ },
518
+ "node_modules/@radix-ui/react-collection": {
519
+ "version": "1.1.10",
520
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.10.tgz",
521
+ "integrity": "sha512-IVVz4EvBcKjrzKgof714qDnz/SzQAkLA2Emh5edlHbgcE6fNd3Un6CJLlaYcnm8N4JmAtzQgse4dOKxcD2yc9g==",
522
+ "license": "MIT",
523
+ "dependencies": {
524
+ "@radix-ui/react-compose-refs": "1.1.3",
525
+ "@radix-ui/react-context": "1.1.4",
526
+ "@radix-ui/react-primitive": "2.1.6",
527
+ "@radix-ui/react-slot": "1.3.0"
528
+ },
529
+ "peerDependencies": {
530
+ "@types/react": "*",
531
+ "@types/react-dom": "*",
532
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
533
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
534
+ },
535
+ "peerDependenciesMeta": {
536
+ "@types/react": {
537
+ "optional": true
538
+ },
539
+ "@types/react-dom": {
540
+ "optional": true
541
+ }
542
+ }
543
+ },
544
+ "node_modules/@radix-ui/react-compose-refs": {
545
+ "version": "1.1.3",
546
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.3.tgz",
547
+ "integrity": "sha512-rYOP8OMnuuPMQF1uhPVlGNcCDlkokKqGFE3JcxFViIkAXP7EvFWUliJAstrapypaBLJNHbZL6jGhbVDGTwmVhA==",
548
+ "license": "MIT",
549
+ "peerDependencies": {
550
+ "@types/react": "*",
551
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
552
+ },
553
+ "peerDependenciesMeta": {
554
+ "@types/react": {
555
+ "optional": true
556
+ }
557
+ }
558
+ },
559
+ "node_modules/@radix-ui/react-context": {
560
+ "version": "1.1.4",
561
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.4.tgz",
562
+ "integrity": "sha512-QwH4PO5urrbO+FaGd5Aglg+YJgWTyyuZ3g/6mKvsqraLkglDdckw9JafgL5McL5VEJ6EPNduPaT3ZE9BttDAqg==",
563
+ "license": "MIT",
564
+ "peerDependencies": {
565
+ "@types/react": "*",
566
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
567
+ },
568
+ "peerDependenciesMeta": {
569
+ "@types/react": {
570
+ "optional": true
571
+ }
572
+ }
573
+ },
574
+ "node_modules/@radix-ui/react-context-menu": {
575
+ "version": "2.3.1",
576
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-context-menu/-/react-context-menu-2.3.1.tgz",
577
+ "integrity": "sha512-XbrxS68W5dyiE4fAb96yvJwSVU5x66B20A99sD5Mk3xSWK/LqeOnx6TZnim1KieMjXS/CTFq8reOAjWxas2G8Q==",
578
+ "license": "MIT",
579
+ "dependencies": {
580
+ "@radix-ui/primitive": "1.1.4",
581
+ "@radix-ui/react-context": "1.1.4",
582
+ "@radix-ui/react-menu": "2.1.18",
583
+ "@radix-ui/react-primitive": "2.1.6",
584
+ "@radix-ui/react-use-controllable-state": "1.2.3"
585
+ },
586
+ "peerDependencies": {
587
+ "@types/react": "*",
588
+ "@types/react-dom": "*",
589
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
590
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
591
+ },
592
+ "peerDependenciesMeta": {
593
+ "@types/react": {
594
+ "optional": true
595
+ },
596
+ "@types/react-dom": {
597
+ "optional": true
598
+ }
599
+ }
600
+ },
601
+ "node_modules/@radix-ui/react-dialog": {
602
+ "version": "1.1.17",
603
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.17.tgz",
604
+ "integrity": "sha512-TDTYmpdq8dI2+Xgvgj9AJ8Ghqq+Eph/TRVEdaFQPDItIY+6QSkU7MJMeevw1568Yw/2Ijz8BTphPSP2XejKphw==",
605
+ "license": "MIT",
606
+ "dependencies": {
607
+ "@radix-ui/primitive": "1.1.4",
608
+ "@radix-ui/react-compose-refs": "1.1.3",
609
+ "@radix-ui/react-context": "1.1.4",
610
+ "@radix-ui/react-dismissable-layer": "1.1.13",
611
+ "@radix-ui/react-focus-guards": "1.1.4",
612
+ "@radix-ui/react-focus-scope": "1.1.10",
613
+ "@radix-ui/react-id": "1.1.2",
614
+ "@radix-ui/react-portal": "1.1.12",
615
+ "@radix-ui/react-presence": "1.1.6",
616
+ "@radix-ui/react-primitive": "2.1.6",
617
+ "@radix-ui/react-slot": "1.3.0",
618
+ "@radix-ui/react-use-controllable-state": "1.2.3",
619
+ "aria-hidden": "^1.2.4",
620
+ "react-remove-scroll": "^2.7.2"
621
+ },
622
+ "peerDependencies": {
623
+ "@types/react": "*",
624
+ "@types/react-dom": "*",
625
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
626
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
627
+ },
628
+ "peerDependenciesMeta": {
629
+ "@types/react": {
630
+ "optional": true
631
+ },
632
+ "@types/react-dom": {
633
+ "optional": true
634
+ }
635
+ }
636
+ },
637
+ "node_modules/@radix-ui/react-direction": {
638
+ "version": "1.1.2",
639
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.2.tgz",
640
+ "integrity": "sha512-C3vFhbyi4SW3PmbAi6Awpu4OzJtd0MxGurvSsYtr7p7nM8RNB3VAF3CUmnp2j50knpkrRcB7+ycVXzgLgF6yNA==",
641
+ "license": "MIT",
642
+ "peerDependencies": {
643
+ "@types/react": "*",
644
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
645
+ },
646
+ "peerDependenciesMeta": {
647
+ "@types/react": {
648
+ "optional": true
649
+ }
650
+ }
651
+ },
652
+ "node_modules/@radix-ui/react-dismissable-layer": {
653
+ "version": "1.1.13",
654
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.13.tgz",
655
+ "integrity": "sha512-2v+zNAWWe0ySxgC0D0yeXMPQ23xZVgXZTerTz+JKlmdRj6gfTqmCcR29jb6d290DezXPGgruHWDX/vYUebtErg==",
656
+ "license": "MIT",
657
+ "dependencies": {
658
+ "@radix-ui/primitive": "1.1.4",
659
+ "@radix-ui/react-compose-refs": "1.1.3",
660
+ "@radix-ui/react-primitive": "2.1.6",
661
+ "@radix-ui/react-use-callback-ref": "1.1.2",
662
+ "@radix-ui/react-use-escape-keydown": "1.1.2"
663
+ },
664
+ "peerDependencies": {
665
+ "@types/react": "*",
666
+ "@types/react-dom": "*",
667
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
668
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
669
+ },
670
+ "peerDependenciesMeta": {
671
+ "@types/react": {
672
+ "optional": true
673
+ },
674
+ "@types/react-dom": {
675
+ "optional": true
676
+ }
677
+ }
678
+ },
679
+ "node_modules/@radix-ui/react-dropdown-menu": {
680
+ "version": "2.1.18",
681
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.18.tgz",
682
+ "integrity": "sha512-PZGV82gFk0WltDRI//SsG28ZIjlo9ANTmoNYg0jLNzXXiDsAy5PkOOYQaVD1pPxY6t7gxffb1QMD6qaUvsBZdw==",
683
+ "license": "MIT",
684
+ "dependencies": {
685
+ "@radix-ui/primitive": "1.1.4",
686
+ "@radix-ui/react-compose-refs": "1.1.3",
687
+ "@radix-ui/react-context": "1.1.4",
688
+ "@radix-ui/react-id": "1.1.2",
689
+ "@radix-ui/react-menu": "2.1.18",
690
+ "@radix-ui/react-primitive": "2.1.6",
691
+ "@radix-ui/react-use-controllable-state": "1.2.3"
692
+ },
693
+ "peerDependencies": {
694
+ "@types/react": "*",
695
+ "@types/react-dom": "*",
696
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
697
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
698
+ },
699
+ "peerDependenciesMeta": {
700
+ "@types/react": {
701
+ "optional": true
702
+ },
703
+ "@types/react-dom": {
704
+ "optional": true
705
+ }
706
+ }
707
+ },
708
+ "node_modules/@radix-ui/react-focus-guards": {
709
+ "version": "1.1.4",
710
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.4.tgz",
711
+ "integrity": "sha512-cot/aB/mOm0IYVYTTmQcEEK1M48lZWi8FlYe5nDPQQ8NYZUlXEFgncJ9p2Kzer3RKSrY7cTTpEMLZKNo9QoP5Q==",
712
+ "license": "MIT",
713
+ "peerDependencies": {
714
+ "@types/react": "*",
715
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
716
+ },
717
+ "peerDependenciesMeta": {
718
+ "@types/react": {
719
+ "optional": true
720
+ }
721
+ }
722
+ },
723
+ "node_modules/@radix-ui/react-focus-scope": {
724
+ "version": "1.1.10",
725
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.10.tgz",
726
+ "integrity": "sha512-Fas/lXQqhVvqwAb64s5RFeHiHYElZ6SUQbZaNd6EkfhP/Al7wTIQ9WIR4QVX475tlu5yFCEdDcJH6/UwsZjMWw==",
727
+ "license": "MIT",
728
+ "dependencies": {
729
+ "@radix-ui/react-compose-refs": "1.1.3",
730
+ "@radix-ui/react-primitive": "2.1.6",
731
+ "@radix-ui/react-use-callback-ref": "1.1.2"
732
+ },
733
+ "peerDependencies": {
734
+ "@types/react": "*",
735
+ "@types/react-dom": "*",
736
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
737
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
738
+ },
739
+ "peerDependenciesMeta": {
740
+ "@types/react": {
741
+ "optional": true
742
+ },
743
+ "@types/react-dom": {
744
+ "optional": true
745
+ }
746
+ }
747
+ },
748
+ "node_modules/@radix-ui/react-form": {
749
+ "version": "0.1.10",
750
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-form/-/react-form-0.1.10.tgz",
751
+ "integrity": "sha512-1NfuvctVtX4sU3Mmq/IdrR8UunxiCMiVg3A5UENKhFzxUBeOyaQQ+lmaQaV7Tc8cqvBKsJL3/KGBsixK0D8WFg==",
752
+ "license": "MIT",
753
+ "dependencies": {
754
+ "@radix-ui/primitive": "1.1.4",
755
+ "@radix-ui/react-compose-refs": "1.1.3",
756
+ "@radix-ui/react-context": "1.1.4",
757
+ "@radix-ui/react-id": "1.1.2",
758
+ "@radix-ui/react-label": "2.1.10",
759
+ "@radix-ui/react-primitive": "2.1.6"
760
+ },
761
+ "peerDependencies": {
762
+ "@types/react": "*",
763
+ "@types/react-dom": "*",
764
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
765
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
766
+ },
767
+ "peerDependenciesMeta": {
768
+ "@types/react": {
769
+ "optional": true
770
+ },
771
+ "@types/react-dom": {
772
+ "optional": true
773
+ }
774
+ }
775
+ },
776
+ "node_modules/@radix-ui/react-hover-card": {
777
+ "version": "1.1.17",
778
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-hover-card/-/react-hover-card-1.1.17.tgz",
779
+ "integrity": "sha512-GjZQIEANVkuuWeztlKz6QEHe31ZX2iDfHzcTMCQVZXC0JyQrgfKWSC+LOOEw6aVV64zyjzobIzSA4AU4eKWrHA==",
780
+ "license": "MIT",
781
+ "dependencies": {
782
+ "@radix-ui/primitive": "1.1.4",
783
+ "@radix-ui/react-compose-refs": "1.1.3",
784
+ "@radix-ui/react-context": "1.1.4",
785
+ "@radix-ui/react-dismissable-layer": "1.1.13",
786
+ "@radix-ui/react-popper": "1.3.1",
787
+ "@radix-ui/react-portal": "1.1.12",
788
+ "@radix-ui/react-presence": "1.1.6",
789
+ "@radix-ui/react-primitive": "2.1.6",
790
+ "@radix-ui/react-use-controllable-state": "1.2.3"
791
+ },
792
+ "peerDependencies": {
793
+ "@types/react": "*",
794
+ "@types/react-dom": "*",
795
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
796
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
797
+ },
798
+ "peerDependenciesMeta": {
799
+ "@types/react": {
800
+ "optional": true
801
+ },
802
+ "@types/react-dom": {
803
+ "optional": true
804
+ }
805
+ }
806
+ },
807
+ "node_modules/@radix-ui/react-id": {
808
+ "version": "1.1.2",
809
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.2.tgz",
810
+ "integrity": "sha512-orBC88futVpqCmhX1p4cvquNHsELQ+w+vBJnuj3ftETI5bJb0bZn3Tqu3SWN2IOcPycTnMGnhwoermvISt72sA==",
811
+ "license": "MIT",
812
+ "dependencies": {
813
+ "@radix-ui/react-use-layout-effect": "1.1.2"
814
+ },
815
+ "peerDependencies": {
816
+ "@types/react": "*",
817
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
818
+ },
819
+ "peerDependenciesMeta": {
820
+ "@types/react": {
821
+ "optional": true
822
+ }
823
+ }
824
+ },
825
+ "node_modules/@radix-ui/react-label": {
826
+ "version": "2.1.10",
827
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.10.tgz",
828
+ "integrity": "sha512-ib0zvq2ZsAqKm5tRnqGJn3vOxSgIts5ToxsXT0q1S/GfLD1Zj7UOEnkw8u2w6sRmn47djpQWuSU1DCL1R29/yw==",
829
+ "license": "MIT",
830
+ "dependencies": {
831
+ "@radix-ui/react-primitive": "2.1.6"
832
+ },
833
+ "peerDependencies": {
834
+ "@types/react": "*",
835
+ "@types/react-dom": "*",
836
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
837
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
838
+ },
839
+ "peerDependenciesMeta": {
840
+ "@types/react": {
841
+ "optional": true
842
+ },
843
+ "@types/react-dom": {
844
+ "optional": true
845
+ }
846
+ }
847
+ },
848
+ "node_modules/@radix-ui/react-menu": {
849
+ "version": "2.1.18",
850
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-menu/-/react-menu-2.1.18.tgz",
851
+ "integrity": "sha512-lj8Rxjtn6zJq1oSbE/uDtAwCbB9BnxgHD+8MwJMuTh6u1dPamYhW9iuELr/Z8d0D/UysFblYYHeBPwi7T4k0YQ==",
852
+ "license": "MIT",
853
+ "dependencies": {
854
+ "@radix-ui/primitive": "1.1.4",
855
+ "@radix-ui/react-collection": "1.1.10",
856
+ "@radix-ui/react-compose-refs": "1.1.3",
857
+ "@radix-ui/react-context": "1.1.4",
858
+ "@radix-ui/react-direction": "1.1.2",
859
+ "@radix-ui/react-dismissable-layer": "1.1.13",
860
+ "@radix-ui/react-focus-guards": "1.1.4",
861
+ "@radix-ui/react-focus-scope": "1.1.10",
862
+ "@radix-ui/react-id": "1.1.2",
863
+ "@radix-ui/react-popper": "1.3.1",
864
+ "@radix-ui/react-portal": "1.1.12",
865
+ "@radix-ui/react-presence": "1.1.6",
866
+ "@radix-ui/react-primitive": "2.1.6",
867
+ "@radix-ui/react-roving-focus": "1.1.13",
868
+ "@radix-ui/react-slot": "1.3.0",
869
+ "@radix-ui/react-use-callback-ref": "1.1.2",
870
+ "aria-hidden": "^1.2.4",
871
+ "react-remove-scroll": "^2.7.2"
872
+ },
873
+ "peerDependencies": {
874
+ "@types/react": "*",
875
+ "@types/react-dom": "*",
876
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
877
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
878
+ },
879
+ "peerDependenciesMeta": {
880
+ "@types/react": {
881
+ "optional": true
882
+ },
883
+ "@types/react-dom": {
884
+ "optional": true
885
+ }
886
+ }
887
+ },
888
+ "node_modules/@radix-ui/react-menubar": {
889
+ "version": "1.1.18",
890
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-menubar/-/react-menubar-1.1.18.tgz",
891
+ "integrity": "sha512-hX7EGx/oFq6DPY27GQuP/2wP48GHf5LG6r06VgNJlG+znmDS8OfopZcRcGly3L4lsB9FqpmLx6JQSE9P3BUpyw==",
892
+ "license": "MIT",
893
+ "dependencies": {
894
+ "@radix-ui/primitive": "1.1.4",
895
+ "@radix-ui/react-collection": "1.1.10",
896
+ "@radix-ui/react-compose-refs": "1.1.3",
897
+ "@radix-ui/react-context": "1.1.4",
898
+ "@radix-ui/react-direction": "1.1.2",
899
+ "@radix-ui/react-id": "1.1.2",
900
+ "@radix-ui/react-menu": "2.1.18",
901
+ "@radix-ui/react-primitive": "2.1.6",
902
+ "@radix-ui/react-roving-focus": "1.1.13",
903
+ "@radix-ui/react-use-controllable-state": "1.2.3"
904
+ },
905
+ "peerDependencies": {
906
+ "@types/react": "*",
907
+ "@types/react-dom": "*",
908
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
909
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
910
+ },
911
+ "peerDependenciesMeta": {
912
+ "@types/react": {
913
+ "optional": true
914
+ },
915
+ "@types/react-dom": {
916
+ "optional": true
917
+ }
918
+ }
919
+ },
920
+ "node_modules/@radix-ui/react-navigation-menu": {
921
+ "version": "1.2.16",
922
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.2.16.tgz",
923
+ "integrity": "sha512-nJ0SkrSQgudyYhMiYeHA1ayLVuduEJCFLan1RZZN7c9kqzzCFLaU9kuy81uNtqzweM9YaQPgWzxi9MwQ9jZ04g==",
924
+ "license": "MIT",
925
+ "dependencies": {
926
+ "@radix-ui/primitive": "1.1.4",
927
+ "@radix-ui/react-collection": "1.1.10",
928
+ "@radix-ui/react-compose-refs": "1.1.3",
929
+ "@radix-ui/react-context": "1.1.4",
930
+ "@radix-ui/react-direction": "1.1.2",
931
+ "@radix-ui/react-dismissable-layer": "1.1.13",
932
+ "@radix-ui/react-id": "1.1.2",
933
+ "@radix-ui/react-presence": "1.1.6",
934
+ "@radix-ui/react-primitive": "2.1.6",
935
+ "@radix-ui/react-use-callback-ref": "1.1.2",
936
+ "@radix-ui/react-use-controllable-state": "1.2.3",
937
+ "@radix-ui/react-use-layout-effect": "1.1.2",
938
+ "@radix-ui/react-use-previous": "1.1.2",
939
+ "@radix-ui/react-visually-hidden": "1.2.6"
940
+ },
941
+ "peerDependencies": {
942
+ "@types/react": "*",
943
+ "@types/react-dom": "*",
944
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
945
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
946
+ },
947
+ "peerDependenciesMeta": {
948
+ "@types/react": {
949
+ "optional": true
950
+ },
951
+ "@types/react-dom": {
952
+ "optional": true
953
+ }
954
+ }
955
+ },
956
+ "node_modules/@radix-ui/react-one-time-password-field": {
957
+ "version": "0.1.10",
958
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-one-time-password-field/-/react-one-time-password-field-0.1.10.tgz",
959
+ "integrity": "sha512-GHkcJ+WVj91At+OvUVTD4R3W0/wxw9t/sG5xFUBYXaCbtWiooZX5Md376QjJqgH4VsVyXrbVNHO2O4NYcmjfVg==",
960
+ "license": "MIT",
961
+ "dependencies": {
962
+ "@radix-ui/number": "1.1.2",
963
+ "@radix-ui/primitive": "1.1.4",
964
+ "@radix-ui/react-collection": "1.1.10",
965
+ "@radix-ui/react-compose-refs": "1.1.3",
966
+ "@radix-ui/react-context": "1.1.4",
967
+ "@radix-ui/react-direction": "1.1.2",
968
+ "@radix-ui/react-primitive": "2.1.6",
969
+ "@radix-ui/react-roving-focus": "1.1.13",
970
+ "@radix-ui/react-use-controllable-state": "1.2.3",
971
+ "@radix-ui/react-use-effect-event": "0.0.3",
972
+ "@radix-ui/react-use-is-hydrated": "0.1.1",
973
+ "@radix-ui/react-use-layout-effect": "1.1.2"
974
+ },
975
+ "peerDependencies": {
976
+ "@types/react": "*",
977
+ "@types/react-dom": "*",
978
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
979
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
980
+ },
981
+ "peerDependenciesMeta": {
982
+ "@types/react": {
983
+ "optional": true
984
+ },
985
+ "@types/react-dom": {
986
+ "optional": true
987
+ }
988
+ }
989
+ },
990
+ "node_modules/@radix-ui/react-password-toggle-field": {
991
+ "version": "0.1.5",
992
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-password-toggle-field/-/react-password-toggle-field-0.1.5.tgz",
993
+ "integrity": "sha512-fVuA82u0b/fClpbEJv8yp1nU9eSvoSEOERsU/hhf3FXGPIvkmE7oEaHEu8poowoXO39/Va7zq2E0TUcYr1dBRg==",
994
+ "license": "MIT",
995
+ "dependencies": {
996
+ "@radix-ui/primitive": "1.1.4",
997
+ "@radix-ui/react-compose-refs": "1.1.3",
998
+ "@radix-ui/react-context": "1.1.4",
999
+ "@radix-ui/react-id": "1.1.2",
1000
+ "@radix-ui/react-primitive": "2.1.6",
1001
+ "@radix-ui/react-use-controllable-state": "1.2.3",
1002
+ "@radix-ui/react-use-effect-event": "0.0.3",
1003
+ "@radix-ui/react-use-is-hydrated": "0.1.1"
1004
+ },
1005
+ "peerDependencies": {
1006
+ "@types/react": "*",
1007
+ "@types/react-dom": "*",
1008
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1009
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1010
+ },
1011
+ "peerDependenciesMeta": {
1012
+ "@types/react": {
1013
+ "optional": true
1014
+ },
1015
+ "@types/react-dom": {
1016
+ "optional": true
1017
+ }
1018
+ }
1019
+ },
1020
+ "node_modules/@radix-ui/react-popover": {
1021
+ "version": "1.1.17",
1022
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.1.17.tgz",
1023
+ "integrity": "sha512-/YSAOdJ7YJvdn7bn5sdSx2egW+SKY+u7O5RyAVs94Ymrg2fg5QTSFPMRkzvhGyFuE4/qsmPBdrwYoZMZh/4f+g==",
1024
+ "license": "MIT",
1025
+ "dependencies": {
1026
+ "@radix-ui/primitive": "1.1.4",
1027
+ "@radix-ui/react-compose-refs": "1.1.3",
1028
+ "@radix-ui/react-context": "1.1.4",
1029
+ "@radix-ui/react-dismissable-layer": "1.1.13",
1030
+ "@radix-ui/react-focus-guards": "1.1.4",
1031
+ "@radix-ui/react-focus-scope": "1.1.10",
1032
+ "@radix-ui/react-id": "1.1.2",
1033
+ "@radix-ui/react-popper": "1.3.1",
1034
+ "@radix-ui/react-portal": "1.1.12",
1035
+ "@radix-ui/react-presence": "1.1.6",
1036
+ "@radix-ui/react-primitive": "2.1.6",
1037
+ "@radix-ui/react-slot": "1.3.0",
1038
+ "@radix-ui/react-use-controllable-state": "1.2.3",
1039
+ "aria-hidden": "^1.2.4",
1040
+ "react-remove-scroll": "^2.7.2"
1041
+ },
1042
+ "peerDependencies": {
1043
+ "@types/react": "*",
1044
+ "@types/react-dom": "*",
1045
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1046
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1047
+ },
1048
+ "peerDependenciesMeta": {
1049
+ "@types/react": {
1050
+ "optional": true
1051
+ },
1052
+ "@types/react-dom": {
1053
+ "optional": true
1054
+ }
1055
+ }
1056
+ },
1057
+ "node_modules/@radix-ui/react-popper": {
1058
+ "version": "1.3.1",
1059
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.3.1.tgz",
1060
+ "integrity": "sha512-bhnq/0DEPTi2lsOD3J5rTL65qUKHbKbhqHsmN9TMiclSXpipi651ooUKPPp6G5lF/WiHBdn1s0Wuqsn+myVAvw==",
1061
+ "license": "MIT",
1062
+ "dependencies": {
1063
+ "@floating-ui/react-dom": "^2.0.0",
1064
+ "@radix-ui/react-arrow": "1.1.10",
1065
+ "@radix-ui/react-compose-refs": "1.1.3",
1066
+ "@radix-ui/react-context": "1.1.4",
1067
+ "@radix-ui/react-primitive": "2.1.6",
1068
+ "@radix-ui/react-use-callback-ref": "1.1.2",
1069
+ "@radix-ui/react-use-layout-effect": "1.1.2",
1070
+ "@radix-ui/react-use-rect": "1.1.2",
1071
+ "@radix-ui/react-use-size": "1.1.2",
1072
+ "@radix-ui/rect": "1.1.2"
1073
+ },
1074
+ "peerDependencies": {
1075
+ "@types/react": "*",
1076
+ "@types/react-dom": "*",
1077
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1078
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1079
+ },
1080
+ "peerDependenciesMeta": {
1081
+ "@types/react": {
1082
+ "optional": true
1083
+ },
1084
+ "@types/react-dom": {
1085
+ "optional": true
1086
+ }
1087
+ }
1088
+ },
1089
+ "node_modules/@radix-ui/react-portal": {
1090
+ "version": "1.1.12",
1091
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.12.tgz",
1092
+ "integrity": "sha512-m309havGzsjLHHaIX50G5PlvRs3xkgPCsGk/5PTvYm8D5q33yG0J7w/712PTOhid7NTaFETtnSXjngHQavvhVw==",
1093
+ "license": "MIT",
1094
+ "dependencies": {
1095
+ "@radix-ui/react-primitive": "2.1.6",
1096
+ "@radix-ui/react-use-layout-effect": "1.1.2"
1097
+ },
1098
+ "peerDependencies": {
1099
+ "@types/react": "*",
1100
+ "@types/react-dom": "*",
1101
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1102
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1103
+ },
1104
+ "peerDependenciesMeta": {
1105
+ "@types/react": {
1106
+ "optional": true
1107
+ },
1108
+ "@types/react-dom": {
1109
+ "optional": true
1110
+ }
1111
+ }
1112
+ },
1113
+ "node_modules/@radix-ui/react-presence": {
1114
+ "version": "1.1.6",
1115
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.6.tgz",
1116
+ "integrity": "sha512-zdTk4PlUO0E18HnZ3wYbW0KkJJxWCdiNYp6g6X1PtONFhxVkg01vliTJAmwIszU6mHiyBOoW9P0rAugl5/hULQ==",
1117
+ "license": "MIT",
1118
+ "dependencies": {
1119
+ "@radix-ui/react-use-layout-effect": "1.1.2"
1120
+ },
1121
+ "peerDependencies": {
1122
+ "@types/react": "*",
1123
+ "@types/react-dom": "*",
1124
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1125
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1126
+ },
1127
+ "peerDependenciesMeta": {
1128
+ "@types/react": {
1129
+ "optional": true
1130
+ },
1131
+ "@types/react-dom": {
1132
+ "optional": true
1133
+ }
1134
+ }
1135
+ },
1136
+ "node_modules/@radix-ui/react-primitive": {
1137
+ "version": "2.1.6",
1138
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.6.tgz",
1139
+ "integrity": "sha512-wetd0QI77DbvrPpTAvH1SqOxsYF2wZe5TNxqwOd5Ty4XDpV3dpV0s8K/1MGMJBeY5o7lg8ub5VIt1Ub+yVen6g==",
1140
+ "license": "MIT",
1141
+ "dependencies": {
1142
+ "@radix-ui/react-slot": "1.3.0"
1143
+ },
1144
+ "peerDependencies": {
1145
+ "@types/react": "*",
1146
+ "@types/react-dom": "*",
1147
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1148
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1149
+ },
1150
+ "peerDependenciesMeta": {
1151
+ "@types/react": {
1152
+ "optional": true
1153
+ },
1154
+ "@types/react-dom": {
1155
+ "optional": true
1156
+ }
1157
+ }
1158
+ },
1159
+ "node_modules/@radix-ui/react-progress": {
1160
+ "version": "1.1.10",
1161
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-progress/-/react-progress-1.1.10.tgz",
1162
+ "integrity": "sha512-JYzEg60lk79PwKM27WZyKd7PW8O4OM5jOaFfRPfOyeXmMw7tLJh5kSj+CEjVTehszuwml/AdCzPGMXBTGf4BBw==",
1163
+ "license": "MIT",
1164
+ "dependencies": {
1165
+ "@radix-ui/react-context": "1.1.4",
1166
+ "@radix-ui/react-primitive": "2.1.6"
1167
+ },
1168
+ "peerDependencies": {
1169
+ "@types/react": "*",
1170
+ "@types/react-dom": "*",
1171
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1172
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1173
+ },
1174
+ "peerDependenciesMeta": {
1175
+ "@types/react": {
1176
+ "optional": true
1177
+ },
1178
+ "@types/react-dom": {
1179
+ "optional": true
1180
+ }
1181
+ }
1182
+ },
1183
+ "node_modules/@radix-ui/react-radio-group": {
1184
+ "version": "1.4.1",
1185
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-radio-group/-/react-radio-group-1.4.1.tgz",
1186
+ "integrity": "sha512-/SSxZdKEo2Eo29FFRKd06EfFDYp8HryKg0WYg7QLXaydPzl52YfSvCH2a3QDBRdtcuwACroJT8UVjQVgOJ7P9A==",
1187
+ "license": "MIT",
1188
+ "dependencies": {
1189
+ "@radix-ui/primitive": "1.1.4",
1190
+ "@radix-ui/react-compose-refs": "1.1.3",
1191
+ "@radix-ui/react-context": "1.1.4",
1192
+ "@radix-ui/react-direction": "1.1.2",
1193
+ "@radix-ui/react-presence": "1.1.6",
1194
+ "@radix-ui/react-primitive": "2.1.6",
1195
+ "@radix-ui/react-roving-focus": "1.1.13",
1196
+ "@radix-ui/react-use-controllable-state": "1.2.3",
1197
+ "@radix-ui/react-use-previous": "1.1.2",
1198
+ "@radix-ui/react-use-size": "1.1.2"
1199
+ },
1200
+ "peerDependencies": {
1201
+ "@types/react": "*",
1202
+ "@types/react-dom": "*",
1203
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1204
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1205
+ },
1206
+ "peerDependenciesMeta": {
1207
+ "@types/react": {
1208
+ "optional": true
1209
+ },
1210
+ "@types/react-dom": {
1211
+ "optional": true
1212
+ }
1213
+ }
1214
+ },
1215
+ "node_modules/@radix-ui/react-roving-focus": {
1216
+ "version": "1.1.13",
1217
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.13.tgz",
1218
+ "integrity": "sha512-9gkwneI0guf8JDmrFxPjJF6Ozzgioyw+/lonYNCwefS9ZHA05er0BVHiXr+LbWGHxUfczvMY6G1oiZZi1VzjRw==",
1219
+ "license": "MIT",
1220
+ "dependencies": {
1221
+ "@radix-ui/primitive": "1.1.4",
1222
+ "@radix-ui/react-collection": "1.1.10",
1223
+ "@radix-ui/react-compose-refs": "1.1.3",
1224
+ "@radix-ui/react-context": "1.1.4",
1225
+ "@radix-ui/react-direction": "1.1.2",
1226
+ "@radix-ui/react-id": "1.1.2",
1227
+ "@radix-ui/react-primitive": "2.1.6",
1228
+ "@radix-ui/react-use-callback-ref": "1.1.2",
1229
+ "@radix-ui/react-use-controllable-state": "1.2.3"
1230
+ },
1231
+ "peerDependencies": {
1232
+ "@types/react": "*",
1233
+ "@types/react-dom": "*",
1234
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1235
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1236
+ },
1237
+ "peerDependenciesMeta": {
1238
+ "@types/react": {
1239
+ "optional": true
1240
+ },
1241
+ "@types/react-dom": {
1242
+ "optional": true
1243
+ }
1244
+ }
1245
+ },
1246
+ "node_modules/@radix-ui/react-scroll-area": {
1247
+ "version": "1.2.12",
1248
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.2.12.tgz",
1249
+ "integrity": "sha512-xuafVzQiTCLsyEjakowTdG3OgTXsmO7IdCiO77otIa+z44xoLNs9Do5eg7POFumIOCjtG6djfm6RKUKpUa/csA==",
1250
+ "license": "MIT",
1251
+ "dependencies": {
1252
+ "@radix-ui/number": "1.1.2",
1253
+ "@radix-ui/primitive": "1.1.4",
1254
+ "@radix-ui/react-compose-refs": "1.1.3",
1255
+ "@radix-ui/react-context": "1.1.4",
1256
+ "@radix-ui/react-direction": "1.1.2",
1257
+ "@radix-ui/react-presence": "1.1.6",
1258
+ "@radix-ui/react-primitive": "2.1.6",
1259
+ "@radix-ui/react-use-callback-ref": "1.1.2",
1260
+ "@radix-ui/react-use-layout-effect": "1.1.2"
1261
+ },
1262
+ "peerDependencies": {
1263
+ "@types/react": "*",
1264
+ "@types/react-dom": "*",
1265
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1266
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1267
+ },
1268
+ "peerDependenciesMeta": {
1269
+ "@types/react": {
1270
+ "optional": true
1271
+ },
1272
+ "@types/react-dom": {
1273
+ "optional": true
1274
+ }
1275
+ }
1276
+ },
1277
+ "node_modules/@radix-ui/react-select": {
1278
+ "version": "2.3.1",
1279
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.3.1.tgz",
1280
+ "integrity": "sha512-w6eDvY78LE9ZUiNnXCA1QVK8RYN7k9galFv09kjVydJqBAgHd7Y9A6h0UJ/6DCZNGZMZrB2ohcSW1Bo9d8+wWA==",
1281
+ "license": "MIT",
1282
+ "dependencies": {
1283
+ "@radix-ui/number": "1.1.2",
1284
+ "@radix-ui/primitive": "1.1.4",
1285
+ "@radix-ui/react-collection": "1.1.10",
1286
+ "@radix-ui/react-compose-refs": "1.1.3",
1287
+ "@radix-ui/react-context": "1.1.4",
1288
+ "@radix-ui/react-direction": "1.1.2",
1289
+ "@radix-ui/react-dismissable-layer": "1.1.13",
1290
+ "@radix-ui/react-focus-guards": "1.1.4",
1291
+ "@radix-ui/react-focus-scope": "1.1.10",
1292
+ "@radix-ui/react-id": "1.1.2",
1293
+ "@radix-ui/react-popper": "1.3.1",
1294
+ "@radix-ui/react-portal": "1.1.12",
1295
+ "@radix-ui/react-presence": "1.1.6",
1296
+ "@radix-ui/react-primitive": "2.1.6",
1297
+ "@radix-ui/react-slot": "1.3.0",
1298
+ "@radix-ui/react-use-callback-ref": "1.1.2",
1299
+ "@radix-ui/react-use-controllable-state": "1.2.3",
1300
+ "@radix-ui/react-use-layout-effect": "1.1.2",
1301
+ "@radix-ui/react-use-previous": "1.1.2",
1302
+ "@radix-ui/react-visually-hidden": "1.2.6",
1303
+ "aria-hidden": "^1.2.4",
1304
+ "react-remove-scroll": "^2.7.2"
1305
+ },
1306
+ "peerDependencies": {
1307
+ "@types/react": "*",
1308
+ "@types/react-dom": "*",
1309
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1310
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1311
+ },
1312
+ "peerDependenciesMeta": {
1313
+ "@types/react": {
1314
+ "optional": true
1315
+ },
1316
+ "@types/react-dom": {
1317
+ "optional": true
1318
+ }
1319
+ }
1320
+ },
1321
+ "node_modules/@radix-ui/react-separator": {
1322
+ "version": "1.1.10",
1323
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.1.10.tgz",
1324
+ "integrity": "sha512-Y6K6jLQCVfCnTL2MEtGxDLffkhNfEfHsEg3Wa8JU+IWdn3EWbLXd3OuOfQRN7p/W/cUce1WyTk3QeuAoDBzN9g==",
1325
+ "license": "MIT",
1326
+ "dependencies": {
1327
+ "@radix-ui/react-primitive": "2.1.6"
1328
+ },
1329
+ "peerDependencies": {
1330
+ "@types/react": "*",
1331
+ "@types/react-dom": "*",
1332
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1333
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1334
+ },
1335
+ "peerDependenciesMeta": {
1336
+ "@types/react": {
1337
+ "optional": true
1338
+ },
1339
+ "@types/react-dom": {
1340
+ "optional": true
1341
+ }
1342
+ }
1343
+ },
1344
+ "node_modules/@radix-ui/react-slider": {
1345
+ "version": "1.4.1",
1346
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.4.1.tgz",
1347
+ "integrity": "sha512-r91WSpQucNGFKAIxT8FT0H0zyjd5tJlqObLp7LOMV4z49KoDCwjy01w3vDOU4e1wxhF9IgjYco7SB6byOW7Buw==",
1348
+ "license": "MIT",
1349
+ "dependencies": {
1350
+ "@radix-ui/number": "1.1.2",
1351
+ "@radix-ui/primitive": "1.1.4",
1352
+ "@radix-ui/react-collection": "1.1.10",
1353
+ "@radix-ui/react-compose-refs": "1.1.3",
1354
+ "@radix-ui/react-context": "1.1.4",
1355
+ "@radix-ui/react-direction": "1.1.2",
1356
+ "@radix-ui/react-primitive": "2.1.6",
1357
+ "@radix-ui/react-use-controllable-state": "1.2.3",
1358
+ "@radix-ui/react-use-layout-effect": "1.1.2",
1359
+ "@radix-ui/react-use-previous": "1.1.2",
1360
+ "@radix-ui/react-use-size": "1.1.2"
1361
+ },
1362
+ "peerDependencies": {
1363
+ "@types/react": "*",
1364
+ "@types/react-dom": "*",
1365
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1366
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1367
+ },
1368
+ "peerDependenciesMeta": {
1369
+ "@types/react": {
1370
+ "optional": true
1371
+ },
1372
+ "@types/react-dom": {
1373
+ "optional": true
1374
+ }
1375
+ }
1376
+ },
1377
+ "node_modules/@radix-ui/react-slot": {
1378
+ "version": "1.3.0",
1379
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.3.0.tgz",
1380
+ "integrity": "sha512-MojKku4U/miO8Av4Dkb+ctMAQx7JmY96LmtDQlAarCRtd7rN52QCSzBF+XAvr5S6coSVj9HEPBgHAHKEJVk/WA==",
1381
+ "license": "MIT",
1382
+ "dependencies": {
1383
+ "@radix-ui/react-compose-refs": "1.1.3"
1384
+ },
1385
+ "peerDependencies": {
1386
+ "@types/react": "*",
1387
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1388
+ },
1389
+ "peerDependenciesMeta": {
1390
+ "@types/react": {
1391
+ "optional": true
1392
+ }
1393
+ }
1394
+ },
1395
+ "node_modules/@radix-ui/react-switch": {
1396
+ "version": "1.3.1",
1397
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.3.1.tgz",
1398
+ "integrity": "sha512-55bQtCnOB0BohomSHi6qvQXpJEEqUGDm6hRrM0Bph5OXwhSegqkd8IqgBAQkM1IlgUlWZIxpxRcpOEfRIgimyw==",
1399
+ "license": "MIT",
1400
+ "dependencies": {
1401
+ "@radix-ui/primitive": "1.1.4",
1402
+ "@radix-ui/react-compose-refs": "1.1.3",
1403
+ "@radix-ui/react-context": "1.1.4",
1404
+ "@radix-ui/react-primitive": "2.1.6",
1405
+ "@radix-ui/react-use-controllable-state": "1.2.3",
1406
+ "@radix-ui/react-use-previous": "1.1.2",
1407
+ "@radix-ui/react-use-size": "1.1.2"
1408
+ },
1409
+ "peerDependencies": {
1410
+ "@types/react": "*",
1411
+ "@types/react-dom": "*",
1412
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1413
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1414
+ },
1415
+ "peerDependenciesMeta": {
1416
+ "@types/react": {
1417
+ "optional": true
1418
+ },
1419
+ "@types/react-dom": {
1420
+ "optional": true
1421
+ }
1422
+ }
1423
+ },
1424
+ "node_modules/@radix-ui/react-tabs": {
1425
+ "version": "1.1.15",
1426
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.1.15.tgz",
1427
+ "integrity": "sha512-kxc9gI6/HfcU4nfMMVS3AmQK414kbU1IE6UCJmMmxjhO3cRPXOyYnmvyKD+ODt7q56nRq9l7Wovi6uaGwKgMlg==",
1428
+ "license": "MIT",
1429
+ "dependencies": {
1430
+ "@radix-ui/primitive": "1.1.4",
1431
+ "@radix-ui/react-context": "1.1.4",
1432
+ "@radix-ui/react-direction": "1.1.2",
1433
+ "@radix-ui/react-id": "1.1.2",
1434
+ "@radix-ui/react-presence": "1.1.6",
1435
+ "@radix-ui/react-primitive": "2.1.6",
1436
+ "@radix-ui/react-roving-focus": "1.1.13",
1437
+ "@radix-ui/react-use-controllable-state": "1.2.3"
1438
+ },
1439
+ "peerDependencies": {
1440
+ "@types/react": "*",
1441
+ "@types/react-dom": "*",
1442
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1443
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1444
+ },
1445
+ "peerDependenciesMeta": {
1446
+ "@types/react": {
1447
+ "optional": true
1448
+ },
1449
+ "@types/react-dom": {
1450
+ "optional": true
1451
+ }
1452
+ }
1453
+ },
1454
+ "node_modules/@radix-ui/react-toast": {
1455
+ "version": "1.2.17",
1456
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-toast/-/react-toast-1.2.17.tgz",
1457
+ "integrity": "sha512-uL4kyyWy000pPL43fGGCV5qT6ZchCWEQZOSlkYiPwPt8Hy1iW38RjeptIvz1/SZesrW6Vn58Ct3sV7tfEfiAbw==",
1458
+ "license": "MIT",
1459
+ "dependencies": {
1460
+ "@radix-ui/primitive": "1.1.4",
1461
+ "@radix-ui/react-collection": "1.1.10",
1462
+ "@radix-ui/react-compose-refs": "1.1.3",
1463
+ "@radix-ui/react-context": "1.1.4",
1464
+ "@radix-ui/react-dismissable-layer": "1.1.13",
1465
+ "@radix-ui/react-portal": "1.1.12",
1466
+ "@radix-ui/react-presence": "1.1.6",
1467
+ "@radix-ui/react-primitive": "2.1.6",
1468
+ "@radix-ui/react-use-callback-ref": "1.1.2",
1469
+ "@radix-ui/react-use-controllable-state": "1.2.3",
1470
+ "@radix-ui/react-use-layout-effect": "1.1.2",
1471
+ "@radix-ui/react-visually-hidden": "1.2.6"
1472
+ },
1473
+ "peerDependencies": {
1474
+ "@types/react": "*",
1475
+ "@types/react-dom": "*",
1476
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1477
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1478
+ },
1479
+ "peerDependenciesMeta": {
1480
+ "@types/react": {
1481
+ "optional": true
1482
+ },
1483
+ "@types/react-dom": {
1484
+ "optional": true
1485
+ }
1486
+ }
1487
+ },
1488
+ "node_modules/@radix-ui/react-toggle": {
1489
+ "version": "1.1.12",
1490
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.1.12.tgz",
1491
+ "integrity": "sha512-AsAVsYNZIlRBsci7BhE+QyQeKd1h6TffJYt+lF0QQkd5OpQ3klfIByPsCb4G0h/Fq6PJwh1FYNluzBFYzhk4+w==",
1492
+ "license": "MIT",
1493
+ "dependencies": {
1494
+ "@radix-ui/primitive": "1.1.4",
1495
+ "@radix-ui/react-primitive": "2.1.6",
1496
+ "@radix-ui/react-use-controllable-state": "1.2.3"
1497
+ },
1498
+ "peerDependencies": {
1499
+ "@types/react": "*",
1500
+ "@types/react-dom": "*",
1501
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1502
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1503
+ },
1504
+ "peerDependenciesMeta": {
1505
+ "@types/react": {
1506
+ "optional": true
1507
+ },
1508
+ "@types/react-dom": {
1509
+ "optional": true
1510
+ }
1511
+ }
1512
+ },
1513
+ "node_modules/@radix-ui/react-toggle-group": {
1514
+ "version": "1.1.13",
1515
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.1.13.tgz",
1516
+ "integrity": "sha512-Xb9PLtlvU66F36LiKba6dFswu6V2mDkgidO4fNSbQHQwmZ9ObxMIO17MN/LJ4aWJecVuSVLAHPZjyeMzJrgeiA==",
1517
+ "license": "MIT",
1518
+ "dependencies": {
1519
+ "@radix-ui/primitive": "1.1.4",
1520
+ "@radix-ui/react-context": "1.1.4",
1521
+ "@radix-ui/react-direction": "1.1.2",
1522
+ "@radix-ui/react-primitive": "2.1.6",
1523
+ "@radix-ui/react-roving-focus": "1.1.13",
1524
+ "@radix-ui/react-toggle": "1.1.12",
1525
+ "@radix-ui/react-use-controllable-state": "1.2.3"
1526
+ },
1527
+ "peerDependencies": {
1528
+ "@types/react": "*",
1529
+ "@types/react-dom": "*",
1530
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1531
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1532
+ },
1533
+ "peerDependenciesMeta": {
1534
+ "@types/react": {
1535
+ "optional": true
1536
+ },
1537
+ "@types/react-dom": {
1538
+ "optional": true
1539
+ }
1540
+ }
1541
+ },
1542
+ "node_modules/@radix-ui/react-toolbar": {
1543
+ "version": "1.1.13",
1544
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.1.13.tgz",
1545
+ "integrity": "sha512-Za1l4f6fzTkGgz/iynAMN8iaqiKff2wm2/QwiLmHPtDQreWEBrvSimgQFIekxMUdRPhILM7xdIXxuS/o/DGZag==",
1546
+ "license": "MIT",
1547
+ "dependencies": {
1548
+ "@radix-ui/primitive": "1.1.4",
1549
+ "@radix-ui/react-context": "1.1.4",
1550
+ "@radix-ui/react-direction": "1.1.2",
1551
+ "@radix-ui/react-primitive": "2.1.6",
1552
+ "@radix-ui/react-roving-focus": "1.1.13",
1553
+ "@radix-ui/react-separator": "1.1.10",
1554
+ "@radix-ui/react-toggle-group": "1.1.13"
1555
+ },
1556
+ "peerDependencies": {
1557
+ "@types/react": "*",
1558
+ "@types/react-dom": "*",
1559
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1560
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1561
+ },
1562
+ "peerDependenciesMeta": {
1563
+ "@types/react": {
1564
+ "optional": true
1565
+ },
1566
+ "@types/react-dom": {
1567
+ "optional": true
1568
+ }
1569
+ }
1570
+ },
1571
+ "node_modules/@radix-ui/react-tooltip": {
1572
+ "version": "1.2.10",
1573
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.2.10.tgz",
1574
+ "integrity": "sha512-NlNe8D0dWEpVfXFli90IO6X07Josx/b1iu98tDnx9Xv0HT4wLIL+m2VOheMHhK7qbp2HoTBqALEFzGyZs/levw==",
1575
+ "license": "MIT",
1576
+ "dependencies": {
1577
+ "@radix-ui/primitive": "1.1.4",
1578
+ "@radix-ui/react-compose-refs": "1.1.3",
1579
+ "@radix-ui/react-context": "1.1.4",
1580
+ "@radix-ui/react-dismissable-layer": "1.1.13",
1581
+ "@radix-ui/react-id": "1.1.2",
1582
+ "@radix-ui/react-popper": "1.3.1",
1583
+ "@radix-ui/react-portal": "1.1.12",
1584
+ "@radix-ui/react-presence": "1.1.6",
1585
+ "@radix-ui/react-primitive": "2.1.6",
1586
+ "@radix-ui/react-slot": "1.3.0",
1587
+ "@radix-ui/react-use-controllable-state": "1.2.3",
1588
+ "@radix-ui/react-visually-hidden": "1.2.6"
1589
+ },
1590
+ "peerDependencies": {
1591
+ "@types/react": "*",
1592
+ "@types/react-dom": "*",
1593
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1594
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1595
+ },
1596
+ "peerDependenciesMeta": {
1597
+ "@types/react": {
1598
+ "optional": true
1599
+ },
1600
+ "@types/react-dom": {
1601
+ "optional": true
1602
+ }
1603
+ }
1604
+ },
1605
+ "node_modules/@radix-ui/react-use-callback-ref": {
1606
+ "version": "1.1.2",
1607
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.2.tgz",
1608
+ "integrity": "sha512-xCso9j1/u8sEgP1RNHjFrXJLApL8LiqOkI1R4ywuN00rxWdYg4oQXuwKLS3i0j5NWLromUD27/4nlxj2UFVvIw==",
1609
+ "license": "MIT",
1610
+ "peerDependencies": {
1611
+ "@types/react": "*",
1612
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1613
+ },
1614
+ "peerDependenciesMeta": {
1615
+ "@types/react": {
1616
+ "optional": true
1617
+ }
1618
+ }
1619
+ },
1620
+ "node_modules/@radix-ui/react-use-controllable-state": {
1621
+ "version": "1.2.3",
1622
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.3.tgz",
1623
+ "integrity": "sha512-PLzC90MS+ReootmjC597dvopoelpZ8Q61HJkDXZSExitIq7PL55vHNnesAHwguHK0aPfBnpdNzQtv1uliaqQrA==",
1624
+ "license": "MIT",
1625
+ "dependencies": {
1626
+ "@radix-ui/react-use-effect-event": "0.0.3",
1627
+ "@radix-ui/react-use-layout-effect": "1.1.2"
1628
+ },
1629
+ "peerDependencies": {
1630
+ "@types/react": "*",
1631
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1632
+ },
1633
+ "peerDependenciesMeta": {
1634
+ "@types/react": {
1635
+ "optional": true
1636
+ }
1637
+ }
1638
+ },
1639
+ "node_modules/@radix-ui/react-use-effect-event": {
1640
+ "version": "0.0.3",
1641
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.3.tgz",
1642
+ "integrity": "sha512-6c8ZqvPTWILEKnyVkP53EGRCcpnJiKTC21sS/6R1GF5xKyHJJWQEPfkqlcgUkdRQivd6tb23abUwe4ngWmY0JA==",
1643
+ "license": "MIT",
1644
+ "dependencies": {
1645
+ "@radix-ui/react-use-layout-effect": "1.1.2"
1646
+ },
1647
+ "peerDependencies": {
1648
+ "@types/react": "*",
1649
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1650
+ },
1651
+ "peerDependenciesMeta": {
1652
+ "@types/react": {
1653
+ "optional": true
1654
+ }
1655
+ }
1656
+ },
1657
+ "node_modules/@radix-ui/react-use-escape-keydown": {
1658
+ "version": "1.1.2",
1659
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.2.tgz",
1660
+ "integrity": "sha512-2uVLvLjgO7NZCWw01/FdqRwmA42J0BcjPMUCA+koFEOAb+zjqIP7SiFz/7zWPrKnVmSqr76Omq2ALyCuX4dhLw==",
1661
+ "license": "MIT",
1662
+ "dependencies": {
1663
+ "@radix-ui/react-use-callback-ref": "1.1.2"
1664
+ },
1665
+ "peerDependencies": {
1666
+ "@types/react": "*",
1667
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1668
+ },
1669
+ "peerDependenciesMeta": {
1670
+ "@types/react": {
1671
+ "optional": true
1672
+ }
1673
+ }
1674
+ },
1675
+ "node_modules/@radix-ui/react-use-is-hydrated": {
1676
+ "version": "0.1.1",
1677
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-is-hydrated/-/react-use-is-hydrated-0.1.1.tgz",
1678
+ "integrity": "sha512-qwOiz4Tjo8CNnrOLAYUMXeZwDzXgXpvK4TKQPmWLECM9XoWvA6+0Z2/7Ag3A4ivjS4ovbLJPbskkxioFyBhr8A==",
1679
+ "license": "MIT",
1680
+ "peerDependencies": {
1681
+ "@types/react": "*",
1682
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1683
+ },
1684
+ "peerDependenciesMeta": {
1685
+ "@types/react": {
1686
+ "optional": true
1687
+ }
1688
+ }
1689
+ },
1690
+ "node_modules/@radix-ui/react-use-layout-effect": {
1691
+ "version": "1.1.2",
1692
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.2.tgz",
1693
+ "integrity": "sha512-jrBWOxZITuGcnjRCM2t2U5ZPkCLxD+Ym6DjfssS5haTj2iiak/DOb64JeN6OdLfLgptb6/e2kKR+ZuTrGoZTPA==",
1694
+ "license": "MIT",
1695
+ "peerDependencies": {
1696
+ "@types/react": "*",
1697
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1698
+ },
1699
+ "peerDependenciesMeta": {
1700
+ "@types/react": {
1701
+ "optional": true
1702
+ }
1703
+ }
1704
+ },
1705
+ "node_modules/@radix-ui/react-use-previous": {
1706
+ "version": "1.1.2",
1707
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.2.tgz",
1708
+ "integrity": "sha512-IGBQPtRFdhN6MQ8dbegVmBq1LVZluya3F1jWY+puIcQC3MHctRwTDSBWCkL/3ZcnMJLTMJ++Z+ktmvg0F89iCw==",
1709
+ "license": "MIT",
1710
+ "peerDependencies": {
1711
+ "@types/react": "*",
1712
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1713
+ },
1714
+ "peerDependenciesMeta": {
1715
+ "@types/react": {
1716
+ "optional": true
1717
+ }
1718
+ }
1719
+ },
1720
+ "node_modules/@radix-ui/react-use-rect": {
1721
+ "version": "1.1.2",
1722
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.2.tgz",
1723
+ "integrity": "sha512-d8a+bBY/FxikNPlgJJoaBHZX+zKVbWHYJGTLnLvveQgFSTntkGdEKv3JDtHrMS0DNYpllz2nRsTLGLKYttbpmw==",
1724
+ "license": "MIT",
1725
+ "dependencies": {
1726
+ "@radix-ui/rect": "1.1.2"
1727
+ },
1728
+ "peerDependencies": {
1729
+ "@types/react": "*",
1730
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1731
+ },
1732
+ "peerDependenciesMeta": {
1733
+ "@types/react": {
1734
+ "optional": true
1735
+ }
1736
+ }
1737
+ },
1738
+ "node_modules/@radix-ui/react-use-size": {
1739
+ "version": "1.1.2",
1740
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.2.tgz",
1741
+ "integrity": "sha512-giWQp+4mxjBPt4KZ0MmyuykFNWfbDxKt4x+fPkRYmgRFJSbCZFzUglvMb/Kjn38tm10YP4ufiQZDx3zna4LU6w==",
1742
+ "license": "MIT",
1743
+ "dependencies": {
1744
+ "@radix-ui/react-use-layout-effect": "1.1.2"
1745
+ },
1746
+ "peerDependencies": {
1747
+ "@types/react": "*",
1748
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1749
+ },
1750
+ "peerDependenciesMeta": {
1751
+ "@types/react": {
1752
+ "optional": true
1753
+ }
1754
+ }
1755
+ },
1756
+ "node_modules/@radix-ui/react-visually-hidden": {
1757
+ "version": "1.2.6",
1758
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.6.tgz",
1759
+ "integrity": "sha512-jCE0WljWifTI4niIMCll06kGpsJTAPiZVU9H4WR1N6qW7At9ystHbN7dDB+we2xH535roFHj7qKS+RGj0FMDWQ==",
1760
+ "license": "MIT",
1761
+ "dependencies": {
1762
+ "@radix-ui/react-primitive": "2.1.6"
1763
+ },
1764
+ "peerDependencies": {
1765
+ "@types/react": "*",
1766
+ "@types/react-dom": "*",
1767
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
1768
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
1769
+ },
1770
+ "peerDependenciesMeta": {
1771
+ "@types/react": {
1772
+ "optional": true
1773
+ },
1774
+ "@types/react-dom": {
1775
+ "optional": true
1776
+ }
1777
+ }
1778
+ },
1779
+ "node_modules/@radix-ui/rect": {
1780
+ "version": "1.1.2",
1781
+ "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.2.tgz",
1782
+ "integrity": "sha512-xnXE7wG13PI+cxieVssYXlQJuYVRhH9NBoxt3KNwzghDIA69GMm7d4wXRouHIYjE+KvS6U/MsMO73NdS2MH9ZA==",
1783
+ "license": "MIT"
1784
+ },
1785
+ "node_modules/@reduxjs/toolkit": {
1786
+ "version": "2.12.0",
1787
+ "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-2.12.0.tgz",
1788
+ "integrity": "sha512-KiT+RzZbp6mQET+Mg+h2c97+9j1sNflUxQkIHI7Yuzf6Peu+OYpmkn6nbHWmLLWj+1ZODUJFwGZ7gx3L9R9EOw==",
1789
+ "license": "MIT",
1790
+ "dependencies": {
1791
+ "@standard-schema/spec": "^1.0.0",
1792
+ "@standard-schema/utils": "^0.3.0",
1793
+ "immer": "^11.0.0",
1794
+ "redux": "^5.0.1",
1795
+ "redux-thunk": "^3.1.0",
1796
+ "reselect": "^5.1.0"
1797
+ },
1798
+ "peerDependencies": {
1799
+ "react": "^16.9.0 || ^17.0.0 || ^18 || ^19",
1800
+ "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0"
1801
+ },
1802
+ "peerDependenciesMeta": {
1803
+ "react": {
1804
+ "optional": true
1805
+ },
1806
+ "react-redux": {
1807
+ "optional": true
1808
+ }
1809
+ }
1810
+ },
1811
+ "node_modules/@reduxjs/toolkit/node_modules/immer": {
1812
+ "version": "11.1.8",
1813
+ "resolved": "https://registry.npmjs.org/immer/-/immer-11.1.8.tgz",
1814
+ "integrity": "sha512-/tbkHMW7y10Lx6i1crLjD4/OhNkRG+Fo7byZHtah0547nIeXYcpIXaUh0IAQY6gO5459qpGGYapcEOHtFXkIuA==",
1815
+ "license": "MIT",
1816
+ "funding": {
1817
+ "type": "opencollective",
1818
+ "url": "https://opencollective.com/immer"
1819
+ }
1820
+ },
1821
+ "node_modules/@rspack/binding": {
1822
+ "version": "2.0.8",
1823
+ "resolved": "https://registry.npmjs.org/@rspack/binding/-/binding-2.0.8.tgz",
1824
+ "integrity": "sha512-3uZ+y8aQxq33ty2srMxg2Nu0XuBI6vVrG50rkDaXqwWqOohfgGUSfFuQK7EnSUNy4aFUQlCG6NHialQHJov0wg==",
1825
+ "dev": true,
1826
+ "license": "MIT",
1827
+ "optionalDependencies": {
1828
+ "@rspack/binding-darwin-arm64": "2.0.8",
1829
+ "@rspack/binding-darwin-x64": "2.0.8",
1830
+ "@rspack/binding-linux-arm64-gnu": "2.0.8",
1831
+ "@rspack/binding-linux-arm64-musl": "2.0.8",
1832
+ "@rspack/binding-linux-x64-gnu": "2.0.8",
1833
+ "@rspack/binding-linux-x64-musl": "2.0.8",
1834
+ "@rspack/binding-wasm32-wasi": "2.0.8",
1835
+ "@rspack/binding-win32-arm64-msvc": "2.0.8",
1836
+ "@rspack/binding-win32-ia32-msvc": "2.0.8",
1837
+ "@rspack/binding-win32-x64-msvc": "2.0.8"
1838
+ }
1839
+ },
1840
+ "node_modules/@rspack/binding-darwin-arm64": {
1841
+ "version": "2.0.8",
1842
+ "resolved": "https://registry.npmjs.org/@rspack/binding-darwin-arm64/-/binding-darwin-arm64-2.0.8.tgz",
1843
+ "integrity": "sha512-vCgbgH7B7qom+uID+RCZsTCOYFb9wC4/4+1U6rMfytrXGVJ72eNQs2tbdjOl0lb18CT3N/n+VkWynUiLk84GwA==",
1844
+ "cpu": [
1845
+ "arm64"
1846
+ ],
1847
+ "dev": true,
1848
+ "license": "MIT",
1849
+ "optional": true,
1850
+ "os": [
1851
+ "darwin"
1852
+ ]
1853
+ },
1854
+ "node_modules/@rspack/binding-darwin-x64": {
1855
+ "version": "2.0.8",
1856
+ "resolved": "https://registry.npmjs.org/@rspack/binding-darwin-x64/-/binding-darwin-x64-2.0.8.tgz",
1857
+ "integrity": "sha512-satPm2PD4B7jDTVlVAdvMVdUszwLvWUEnUDzLb77mvVkezKNDZmuhb+e8s+FfKs8hJpNbZ9VAejuA2rr8o985w==",
1858
+ "cpu": [
1859
+ "x64"
1860
+ ],
1861
+ "dev": true,
1862
+ "license": "MIT",
1863
+ "optional": true,
1864
+ "os": [
1865
+ "darwin"
1866
+ ]
1867
+ },
1868
+ "node_modules/@rspack/binding-linux-arm64-gnu": {
1869
+ "version": "2.0.8",
1870
+ "resolved": "https://registry.npmjs.org/@rspack/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-2.0.8.tgz",
1871
+ "integrity": "sha512-pSI+npPQE/uDtiboqvcOIRJbEV2+B+H1xffmko/gw50la92oTUW60kVULFwsb6L0+GVCzIcwX3yq60GtYIn+Ug==",
1872
+ "cpu": [
1873
+ "arm64"
1874
+ ],
1875
+ "dev": true,
1876
+ "license": "MIT",
1877
+ "optional": true,
1878
+ "os": [
1879
+ "linux"
1880
+ ]
1881
+ },
1882
+ "node_modules/@rspack/binding-linux-arm64-musl": {
1883
+ "version": "2.0.8",
1884
+ "resolved": "https://registry.npmjs.org/@rspack/binding-linux-arm64-musl/-/binding-linux-arm64-musl-2.0.8.tgz",
1885
+ "integrity": "sha512-igjJ43yxWQ72GZqjDDZSSHax9/Vg+6rLMmOvFglTJUkQpB4Tyvu/YjW+WRjYj2xRw6blOjLxUSJWASvuSqqlvg==",
1886
+ "cpu": [
1887
+ "arm64"
1888
+ ],
1889
+ "dev": true,
1890
+ "license": "MIT",
1891
+ "optional": true,
1892
+ "os": [
1893
+ "linux"
1894
+ ]
1895
+ },
1896
+ "node_modules/@rspack/binding-linux-x64-gnu": {
1897
+ "version": "2.0.8",
1898
+ "resolved": "https://registry.npmjs.org/@rspack/binding-linux-x64-gnu/-/binding-linux-x64-gnu-2.0.8.tgz",
1899
+ "integrity": "sha512-zrkoEOnqj1hOEBO5T2I/2Ts2HSJsYFh1qXwMpK4dMJFGGNWDfNeUa6/LF5uq3VINF3JUl7RL47AgrucoSZJXPA==",
1900
+ "cpu": [
1901
+ "x64"
1902
+ ],
1903
+ "dev": true,
1904
+ "license": "MIT",
1905
+ "optional": true,
1906
+ "os": [
1907
+ "linux"
1908
+ ]
1909
+ },
1910
+ "node_modules/@rspack/binding-linux-x64-musl": {
1911
+ "version": "2.0.8",
1912
+ "resolved": "https://registry.npmjs.org/@rspack/binding-linux-x64-musl/-/binding-linux-x64-musl-2.0.8.tgz",
1913
+ "integrity": "sha512-6CtDaGZjNDvJd9TBp7a9zABbrPORO21W96+3ZcGBn0YNUPUk4ARxIxrTTpeJ/1F41QDM8AYIkGDdqEYMqTYBsA==",
1914
+ "cpu": [
1915
+ "x64"
1916
+ ],
1917
+ "dev": true,
1918
+ "license": "MIT",
1919
+ "optional": true,
1920
+ "os": [
1921
+ "linux"
1922
+ ]
1923
+ },
1924
+ "node_modules/@rspack/binding-wasm32-wasi": {
1925
+ "version": "2.0.8",
1926
+ "resolved": "https://registry.npmjs.org/@rspack/binding-wasm32-wasi/-/binding-wasm32-wasi-2.0.8.tgz",
1927
+ "integrity": "sha512-Yf4SiqTUroT5Ju+te0YAY2xxKOb35tECsO21v7hYyGa705wrgoAK/MmF7enOvs9GR1iZIqgiLD/wxsIxl8GjJw==",
1928
+ "cpu": [
1929
+ "wasm32"
1930
+ ],
1931
+ "dev": true,
1932
+ "license": "MIT",
1933
+ "optional": true,
1934
+ "dependencies": {
1935
+ "@emnapi/core": "1.10.0",
1936
+ "@emnapi/runtime": "1.10.0",
1937
+ "@napi-rs/wasm-runtime": "1.1.4"
1938
+ }
1939
+ },
1940
+ "node_modules/@rspack/binding-wasm32-wasi/node_modules/@emnapi/core": {
1941
+ "version": "1.10.0",
1942
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
1943
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
1944
+ "dev": true,
1945
+ "license": "MIT",
1946
+ "optional": true,
1947
+ "dependencies": {
1948
+ "@emnapi/wasi-threads": "1.2.1",
1949
+ "tslib": "^2.4.0"
1950
+ }
1951
+ },
1952
+ "node_modules/@rspack/binding-wasm32-wasi/node_modules/@emnapi/runtime": {
1953
+ "version": "1.10.0",
1954
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
1955
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
1956
+ "dev": true,
1957
+ "license": "MIT",
1958
+ "optional": true,
1959
+ "dependencies": {
1960
+ "tslib": "^2.4.0"
1961
+ }
1962
+ },
1963
+ "node_modules/@rspack/binding-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
1964
+ "version": "1.2.1",
1965
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
1966
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
1967
+ "dev": true,
1968
+ "license": "MIT",
1969
+ "optional": true,
1970
+ "dependencies": {
1971
+ "tslib": "^2.4.0"
1972
+ }
1973
+ },
1974
+ "node_modules/@rspack/binding-win32-arm64-msvc": {
1975
+ "version": "2.0.8",
1976
+ "resolved": "https://registry.npmjs.org/@rspack/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-2.0.8.tgz",
1977
+ "integrity": "sha512-8NCuiQsAhXrwRBy57QZoypqrws/zLBkaQVGiB8hksr6v++8hNigNjqpQARLbd0iyMuHsQQ++8+auGk6xlDXmzw==",
1978
+ "cpu": [
1979
+ "arm64"
1980
+ ],
1981
+ "dev": true,
1982
+ "license": "MIT",
1983
+ "optional": true,
1984
+ "os": [
1985
+ "win32"
1986
+ ]
1987
+ },
1988
+ "node_modules/@rspack/binding-win32-ia32-msvc": {
1989
+ "version": "2.0.8",
1990
+ "resolved": "https://registry.npmjs.org/@rspack/binding-win32-ia32-msvc/-/binding-win32-ia32-msvc-2.0.8.tgz",
1991
+ "integrity": "sha512-bxiekytbX7V9KFAra+HkwtNWC6pYfHEBBZFpiT0xUs3mCFOmAAFVBsBSQsoCP9AdCEXoMAvNdnrHNw3iov4OZw==",
1992
+ "cpu": [
1993
+ "ia32"
1994
+ ],
1995
+ "dev": true,
1996
+ "license": "MIT",
1997
+ "optional": true,
1998
+ "os": [
1999
+ "win32"
2000
+ ]
2001
+ },
2002
+ "node_modules/@rspack/binding-win32-x64-msvc": {
2003
+ "version": "2.0.8",
2004
+ "resolved": "https://registry.npmjs.org/@rspack/binding-win32-x64-msvc/-/binding-win32-x64-msvc-2.0.8.tgz",
2005
+ "integrity": "sha512-7zPs8YCe/ZVJTwd+5lpB0CP0tkn2pONf/T1ycmVY76u21Nrwt8mXQGc/2yH2eWP4B7fikYBr3hGr7mpR2fajqQ==",
2006
+ "cpu": [
2007
+ "x64"
2008
+ ],
2009
+ "dev": true,
2010
+ "license": "MIT",
2011
+ "optional": true,
2012
+ "os": [
2013
+ "win32"
2014
+ ]
2015
+ },
2016
+ "node_modules/@rspack/cli": {
2017
+ "version": "2.0.8",
2018
+ "resolved": "https://registry.npmjs.org/@rspack/cli/-/cli-2.0.8.tgz",
2019
+ "integrity": "sha512-b7MrVE9kvCs8L7hhPdHR6AvQ5wyD3KeBYD+DZMynt+545rvJYnT11LVNjqQJqAYHrgBTmf+9CNPYmeJvEZesWw==",
2020
+ "dev": true,
2021
+ "license": "MIT",
2022
+ "bin": {
2023
+ "rspack": "bin/rspack.js"
2024
+ },
2025
+ "peerDependencies": {
2026
+ "@rspack/core": "^2.0.0-0",
2027
+ "@rspack/dev-server": "^2.0.0-0"
2028
+ },
2029
+ "peerDependenciesMeta": {
2030
+ "@rspack/dev-server": {
2031
+ "optional": true
2032
+ }
2033
+ }
2034
+ },
2035
+ "node_modules/@rspack/core": {
2036
+ "version": "2.0.8",
2037
+ "resolved": "https://registry.npmjs.org/@rspack/core/-/core-2.0.8.tgz",
2038
+ "integrity": "sha512-+NLGJf8gZxihDmMFzjlly3toc2SMjeDmuvz0/Cai9AMdV4F+Pqcnt2BA9V4e3SY2jmhJQtPwgyyLtR1RiJO77g==",
2039
+ "dev": true,
2040
+ "license": "MIT",
2041
+ "peer": true,
2042
+ "dependencies": {
2043
+ "@rspack/binding": "2.0.8"
2044
+ },
2045
+ "engines": {
2046
+ "node": "^20.19.0 || >=22.12.0"
2047
+ },
2048
+ "peerDependencies": {
2049
+ "@module-federation/runtime-tools": "^0.24.1 || ^2.0.0",
2050
+ "@swc/helpers": "^0.5.23"
2051
+ },
2052
+ "peerDependenciesMeta": {
2053
+ "@module-federation/runtime-tools": {
2054
+ "optional": true
2055
+ },
2056
+ "@swc/helpers": {
2057
+ "optional": true
2058
+ }
2059
+ }
2060
+ },
2061
+ "node_modules/@rspack/dev-middleware": {
2062
+ "version": "2.0.3",
2063
+ "resolved": "https://registry.npmjs.org/@rspack/dev-middleware/-/dev-middleware-2.0.3.tgz",
2064
+ "integrity": "sha512-GxnGj9jy76G3eCPyZei81fwKLAMLZaPEEqFz1/QDYquhwi/qYZX5fekFJ1XVpuwxGEK9KSX3hxZylfwrs4cmLA==",
2065
+ "dev": true,
2066
+ "license": "MIT",
2067
+ "engines": {
2068
+ "node": "^20.19.0 || >=22.12.0"
2069
+ },
2070
+ "peerDependencies": {
2071
+ "@rspack/core": "^2.0.0"
2072
+ },
2073
+ "peerDependenciesMeta": {
2074
+ "@rspack/core": {
2075
+ "optional": true
2076
+ }
2077
+ }
2078
+ },
2079
+ "node_modules/@rspack/dev-server": {
2080
+ "version": "2.1.0",
2081
+ "resolved": "https://registry.npmjs.org/@rspack/dev-server/-/dev-server-2.1.0.tgz",
2082
+ "integrity": "sha512-WkCi6bWThVX5Ziv04srPaRoCoUY5FJolO4gqzE7xPO0XbXShsGnwn0vGD0DFfnYFcw9VSsxlmeCDV799lNYclA==",
2083
+ "dev": true,
2084
+ "license": "MIT",
2085
+ "peer": true,
2086
+ "dependencies": {
2087
+ "@rspack/dev-middleware": "^2.0.3"
2088
+ },
2089
+ "engines": {
2090
+ "node": "^20.19.0 || >=22.12.0"
2091
+ },
2092
+ "peerDependencies": {
2093
+ "@rspack/core": "^2.0.0",
2094
+ "selfsigned": "^5.0.0"
2095
+ },
2096
+ "peerDependenciesMeta": {
2097
+ "selfsigned": {
2098
+ "optional": true
2099
+ }
2100
+ }
2101
+ },
2102
+ "node_modules/@standard-schema/spec": {
2103
+ "version": "1.1.0",
2104
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
2105
+ "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
2106
+ "license": "MIT"
2107
+ },
2108
+ "node_modules/@standard-schema/utils": {
2109
+ "version": "0.3.0",
2110
+ "resolved": "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz",
2111
+ "integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==",
2112
+ "license": "MIT"
2113
+ },
2114
+ "node_modules/@tailwindcss/node": {
2115
+ "version": "4.3.1",
2116
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.1.tgz",
2117
+ "integrity": "sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==",
2118
+ "dev": true,
2119
+ "license": "MIT",
2120
+ "dependencies": {
2121
+ "@jridgewell/remapping": "^2.3.5",
2122
+ "enhanced-resolve": "5.21.6",
2123
+ "jiti": "^2.7.0",
2124
+ "lightningcss": "1.32.0",
2125
+ "magic-string": "^0.30.21",
2126
+ "source-map-js": "^1.2.1",
2127
+ "tailwindcss": "4.3.1"
2128
+ }
2129
+ },
2130
+ "node_modules/@tailwindcss/oxide": {
2131
+ "version": "4.3.1",
2132
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.1.tgz",
2133
+ "integrity": "sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==",
2134
+ "dev": true,
2135
+ "license": "MIT",
2136
+ "engines": {
2137
+ "node": ">= 20"
2138
+ },
2139
+ "optionalDependencies": {
2140
+ "@tailwindcss/oxide-android-arm64": "4.3.1",
2141
+ "@tailwindcss/oxide-darwin-arm64": "4.3.1",
2142
+ "@tailwindcss/oxide-darwin-x64": "4.3.1",
2143
+ "@tailwindcss/oxide-freebsd-x64": "4.3.1",
2144
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.1",
2145
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.3.1",
2146
+ "@tailwindcss/oxide-linux-arm64-musl": "4.3.1",
2147
+ "@tailwindcss/oxide-linux-x64-gnu": "4.3.1",
2148
+ "@tailwindcss/oxide-linux-x64-musl": "4.3.1",
2149
+ "@tailwindcss/oxide-wasm32-wasi": "4.3.1",
2150
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.3.1",
2151
+ "@tailwindcss/oxide-win32-x64-msvc": "4.3.1"
2152
+ }
2153
+ },
2154
+ "node_modules/@tailwindcss/oxide-android-arm64": {
2155
+ "version": "4.3.1",
2156
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.1.tgz",
2157
+ "integrity": "sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==",
2158
+ "cpu": [
2159
+ "arm64"
2160
+ ],
2161
+ "dev": true,
2162
+ "license": "MIT",
2163
+ "optional": true,
2164
+ "os": [
2165
+ "android"
2166
+ ],
2167
+ "engines": {
2168
+ "node": ">= 20"
2169
+ }
2170
+ },
2171
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
2172
+ "version": "4.3.1",
2173
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.1.tgz",
2174
+ "integrity": "sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==",
2175
+ "cpu": [
2176
+ "arm64"
2177
+ ],
2178
+ "dev": true,
2179
+ "license": "MIT",
2180
+ "optional": true,
2181
+ "os": [
2182
+ "darwin"
2183
+ ],
2184
+ "engines": {
2185
+ "node": ">= 20"
2186
+ }
2187
+ },
2188
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
2189
+ "version": "4.3.1",
2190
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.1.tgz",
2191
+ "integrity": "sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==",
2192
+ "cpu": [
2193
+ "x64"
2194
+ ],
2195
+ "dev": true,
2196
+ "license": "MIT",
2197
+ "optional": true,
2198
+ "os": [
2199
+ "darwin"
2200
+ ],
2201
+ "engines": {
2202
+ "node": ">= 20"
2203
+ }
2204
+ },
2205
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
2206
+ "version": "4.3.1",
2207
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.1.tgz",
2208
+ "integrity": "sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==",
2209
+ "cpu": [
2210
+ "x64"
2211
+ ],
2212
+ "dev": true,
2213
+ "license": "MIT",
2214
+ "optional": true,
2215
+ "os": [
2216
+ "freebsd"
2217
+ ],
2218
+ "engines": {
2219
+ "node": ">= 20"
2220
+ }
2221
+ },
2222
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
2223
+ "version": "4.3.1",
2224
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.1.tgz",
2225
+ "integrity": "sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==",
2226
+ "cpu": [
2227
+ "arm"
2228
+ ],
2229
+ "dev": true,
2230
+ "license": "MIT",
2231
+ "optional": true,
2232
+ "os": [
2233
+ "linux"
2234
+ ],
2235
+ "engines": {
2236
+ "node": ">= 20"
2237
+ }
2238
+ },
2239
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
2240
+ "version": "4.3.1",
2241
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.1.tgz",
2242
+ "integrity": "sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==",
2243
+ "cpu": [
2244
+ "arm64"
2245
+ ],
2246
+ "dev": true,
2247
+ "license": "MIT",
2248
+ "optional": true,
2249
+ "os": [
2250
+ "linux"
2251
+ ],
2252
+ "engines": {
2253
+ "node": ">= 20"
2254
+ }
2255
+ },
2256
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
2257
+ "version": "4.3.1",
2258
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.1.tgz",
2259
+ "integrity": "sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==",
2260
+ "cpu": [
2261
+ "arm64"
2262
+ ],
2263
+ "dev": true,
2264
+ "license": "MIT",
2265
+ "optional": true,
2266
+ "os": [
2267
+ "linux"
2268
+ ],
2269
+ "engines": {
2270
+ "node": ">= 20"
2271
+ }
2272
+ },
2273
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
2274
+ "version": "4.3.1",
2275
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.1.tgz",
2276
+ "integrity": "sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==",
2277
+ "cpu": [
2278
+ "x64"
2279
+ ],
2280
+ "dev": true,
2281
+ "license": "MIT",
2282
+ "optional": true,
2283
+ "os": [
2284
+ "linux"
2285
+ ],
2286
+ "engines": {
2287
+ "node": ">= 20"
2288
+ }
2289
+ },
2290
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
2291
+ "version": "4.3.1",
2292
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.1.tgz",
2293
+ "integrity": "sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==",
2294
+ "cpu": [
2295
+ "x64"
2296
+ ],
2297
+ "dev": true,
2298
+ "license": "MIT",
2299
+ "optional": true,
2300
+ "os": [
2301
+ "linux"
2302
+ ],
2303
+ "engines": {
2304
+ "node": ">= 20"
2305
+ }
2306
+ },
2307
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
2308
+ "version": "4.3.1",
2309
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.1.tgz",
2310
+ "integrity": "sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==",
2311
+ "bundleDependencies": [
2312
+ "@napi-rs/wasm-runtime",
2313
+ "@emnapi/core",
2314
+ "@emnapi/runtime",
2315
+ "@tybys/wasm-util",
2316
+ "@emnapi/wasi-threads",
2317
+ "tslib"
2318
+ ],
2319
+ "cpu": [
2320
+ "wasm32"
2321
+ ],
2322
+ "dev": true,
2323
+ "license": "MIT",
2324
+ "optional": true,
2325
+ "dependencies": {
2326
+ "@emnapi/core": "^1.10.0",
2327
+ "@emnapi/runtime": "^1.10.0",
2328
+ "@emnapi/wasi-threads": "^1.2.1",
2329
+ "@napi-rs/wasm-runtime": "^1.1.4",
2330
+ "@tybys/wasm-util": "^0.10.2",
2331
+ "tslib": "^2.8.1"
2332
+ },
2333
+ "engines": {
2334
+ "node": ">=14.0.0"
2335
+ }
2336
+ },
2337
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
2338
+ "version": "4.3.1",
2339
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.1.tgz",
2340
+ "integrity": "sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==",
2341
+ "cpu": [
2342
+ "arm64"
2343
+ ],
2344
+ "dev": true,
2345
+ "license": "MIT",
2346
+ "optional": true,
2347
+ "os": [
2348
+ "win32"
2349
+ ],
2350
+ "engines": {
2351
+ "node": ">= 20"
2352
+ }
2353
+ },
2354
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
2355
+ "version": "4.3.1",
2356
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.1.tgz",
2357
+ "integrity": "sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==",
2358
+ "cpu": [
2359
+ "x64"
2360
+ ],
2361
+ "dev": true,
2362
+ "license": "MIT",
2363
+ "optional": true,
2364
+ "os": [
2365
+ "win32"
2366
+ ],
2367
+ "engines": {
2368
+ "node": ">= 20"
2369
+ }
2370
+ },
2371
+ "node_modules/@tailwindcss/postcss": {
2372
+ "version": "4.3.1",
2373
+ "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.3.1.tgz",
2374
+ "integrity": "sha512-dNJuNbdEJT/SWRuXTYP1WSamelsz3ztkUsdtWQPjrexysrTpaEPM40P/71knXiXLYEojqPOEGitVLLpPMS5T6A==",
2375
+ "dev": true,
2376
+ "license": "MIT",
2377
+ "dependencies": {
2378
+ "@alloc/quick-lru": "^5.2.0",
2379
+ "@tailwindcss/node": "4.3.1",
2380
+ "@tailwindcss/oxide": "4.3.1",
2381
+ "postcss": "8.5.15",
2382
+ "tailwindcss": "4.3.1"
2383
+ }
2384
+ },
2385
+ "node_modules/@tybys/wasm-util": {
2386
+ "version": "0.10.3",
2387
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
2388
+ "integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
2389
+ "dev": true,
2390
+ "license": "MIT",
2391
+ "optional": true,
2392
+ "dependencies": {
2393
+ "tslib": "^2.4.0"
2394
+ }
2395
+ },
2396
+ "node_modules/@types/d3-array": {
2397
+ "version": "3.2.2",
2398
+ "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.2.tgz",
2399
+ "integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==",
2400
+ "license": "MIT"
2401
+ },
2402
+ "node_modules/@types/d3-color": {
2403
+ "version": "3.1.3",
2404
+ "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
2405
+ "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
2406
+ "license": "MIT"
2407
+ },
2408
+ "node_modules/@types/d3-ease": {
2409
+ "version": "3.0.2",
2410
+ "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz",
2411
+ "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==",
2412
+ "license": "MIT"
2413
+ },
2414
+ "node_modules/@types/d3-interpolate": {
2415
+ "version": "3.0.4",
2416
+ "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
2417
+ "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
2418
+ "license": "MIT",
2419
+ "dependencies": {
2420
+ "@types/d3-color": "*"
2421
+ }
2422
+ },
2423
+ "node_modules/@types/d3-path": {
2424
+ "version": "3.1.1",
2425
+ "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.1.tgz",
2426
+ "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==",
2427
+ "license": "MIT"
2428
+ },
2429
+ "node_modules/@types/d3-scale": {
2430
+ "version": "4.0.9",
2431
+ "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.9.tgz",
2432
+ "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==",
2433
+ "license": "MIT",
2434
+ "dependencies": {
2435
+ "@types/d3-time": "*"
2436
+ }
2437
+ },
2438
+ "node_modules/@types/d3-shape": {
2439
+ "version": "3.1.8",
2440
+ "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.8.tgz",
2441
+ "integrity": "sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==",
2442
+ "license": "MIT",
2443
+ "dependencies": {
2444
+ "@types/d3-path": "*"
2445
+ }
2446
+ },
2447
+ "node_modules/@types/d3-time": {
2448
+ "version": "3.0.4",
2449
+ "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.4.tgz",
2450
+ "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==",
2451
+ "license": "MIT"
2452
+ },
2453
+ "node_modules/@types/d3-timer": {
2454
+ "version": "3.0.2",
2455
+ "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz",
2456
+ "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==",
2457
+ "license": "MIT"
2458
+ },
2459
+ "node_modules/@types/react": {
2460
+ "version": "19.2.17",
2461
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
2462
+ "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
2463
+ "devOptional": true,
2464
+ "license": "MIT",
2465
+ "peer": true,
2466
+ "dependencies": {
2467
+ "csstype": "^3.2.2"
2468
+ }
2469
+ },
2470
+ "node_modules/@types/react-dom": {
2471
+ "version": "19.2.3",
2472
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
2473
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
2474
+ "devOptional": true,
2475
+ "license": "MIT",
2476
+ "peer": true,
2477
+ "peerDependencies": {
2478
+ "@types/react": "^19.2.0"
2479
+ }
2480
+ },
2481
+ "node_modules/@types/use-sync-external-store": {
2482
+ "version": "0.0.6",
2483
+ "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz",
2484
+ "integrity": "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==",
2485
+ "license": "MIT"
2486
+ },
2487
+ "node_modules/argparse": {
2488
+ "version": "2.0.1",
2489
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
2490
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
2491
+ "dev": true,
2492
+ "license": "Python-2.0"
2493
+ },
2494
+ "node_modules/aria-hidden": {
2495
+ "version": "1.2.6",
2496
+ "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.6.tgz",
2497
+ "integrity": "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==",
2498
+ "license": "MIT",
2499
+ "dependencies": {
2500
+ "tslib": "^2.0.0"
2501
+ },
2502
+ "engines": {
2503
+ "node": ">=10"
2504
+ }
2505
+ },
2506
+ "node_modules/callsites": {
2507
+ "version": "3.1.0",
2508
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
2509
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
2510
+ "dev": true,
2511
+ "license": "MIT",
2512
+ "engines": {
2513
+ "node": ">=6"
2514
+ }
2515
+ },
2516
+ "node_modules/class-variance-authority": {
2517
+ "version": "0.7.1",
2518
+ "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz",
2519
+ "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==",
2520
+ "license": "Apache-2.0",
2521
+ "dependencies": {
2522
+ "clsx": "^2.1.1"
2523
+ },
2524
+ "funding": {
2525
+ "url": "https://polar.sh/cva"
2526
+ }
2527
+ },
2528
+ "node_modules/clsx": {
2529
+ "version": "2.1.1",
2530
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
2531
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
2532
+ "license": "MIT",
2533
+ "engines": {
2534
+ "node": ">=6"
2535
+ }
2536
+ },
2537
+ "node_modules/cmdk": {
2538
+ "version": "1.1.1",
2539
+ "resolved": "https://registry.npmjs.org/cmdk/-/cmdk-1.1.1.tgz",
2540
+ "integrity": "sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==",
2541
+ "license": "MIT",
2542
+ "dependencies": {
2543
+ "@radix-ui/react-compose-refs": "^1.1.1",
2544
+ "@radix-ui/react-dialog": "^1.1.6",
2545
+ "@radix-ui/react-id": "^1.1.0",
2546
+ "@radix-ui/react-primitive": "^2.0.2"
2547
+ },
2548
+ "peerDependencies": {
2549
+ "react": "^18 || ^19 || ^19.0.0-rc",
2550
+ "react-dom": "^18 || ^19 || ^19.0.0-rc"
2551
+ }
2552
+ },
2553
+ "node_modules/cookie": {
2554
+ "version": "1.1.1",
2555
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
2556
+ "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
2557
+ "license": "MIT",
2558
+ "engines": {
2559
+ "node": ">=18"
2560
+ },
2561
+ "funding": {
2562
+ "type": "opencollective",
2563
+ "url": "https://opencollective.com/express"
2564
+ }
2565
+ },
2566
+ "node_modules/cosmiconfig": {
2567
+ "version": "9.0.2",
2568
+ "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.2.tgz",
2569
+ "integrity": "sha512-gtTZxTDau1wL7Y7zifc2dd8jHSK/k6BTx/2Xp/BpdlAdnlYWFVt7qhJqgwi7637yRwRQ3qL4ZidbB4I8tA5VOg==",
2570
+ "dev": true,
2571
+ "license": "MIT",
2572
+ "dependencies": {
2573
+ "env-paths": "^2.2.1",
2574
+ "import-fresh": "^3.3.0",
2575
+ "js-yaml": "^4.1.0",
2576
+ "parse-json": "^5.2.0"
2577
+ },
2578
+ "engines": {
2579
+ "node": ">=14"
2580
+ },
2581
+ "funding": {
2582
+ "url": "https://github.com/sponsors/d-fischer"
2583
+ },
2584
+ "peerDependencies": {
2585
+ "typescript": ">=4.9.5"
2586
+ },
2587
+ "peerDependenciesMeta": {
2588
+ "typescript": {
2589
+ "optional": true
2590
+ }
2591
+ }
2592
+ },
2593
+ "node_modules/csstype": {
2594
+ "version": "3.2.3",
2595
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
2596
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
2597
+ "devOptional": true,
2598
+ "license": "MIT"
2599
+ },
2600
+ "node_modules/d3-array": {
2601
+ "version": "3.2.4",
2602
+ "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz",
2603
+ "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==",
2604
+ "license": "ISC",
2605
+ "dependencies": {
2606
+ "internmap": "1 - 2"
2607
+ },
2608
+ "engines": {
2609
+ "node": ">=12"
2610
+ }
2611
+ },
2612
+ "node_modules/d3-color": {
2613
+ "version": "3.1.0",
2614
+ "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz",
2615
+ "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==",
2616
+ "license": "ISC",
2617
+ "engines": {
2618
+ "node": ">=12"
2619
+ }
2620
+ },
2621
+ "node_modules/d3-ease": {
2622
+ "version": "3.0.1",
2623
+ "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz",
2624
+ "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==",
2625
+ "license": "BSD-3-Clause",
2626
+ "engines": {
2627
+ "node": ">=12"
2628
+ }
2629
+ },
2630
+ "node_modules/d3-format": {
2631
+ "version": "3.1.2",
2632
+ "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.2.tgz",
2633
+ "integrity": "sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==",
2634
+ "license": "ISC",
2635
+ "engines": {
2636
+ "node": ">=12"
2637
+ }
2638
+ },
2639
+ "node_modules/d3-interpolate": {
2640
+ "version": "3.0.1",
2641
+ "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz",
2642
+ "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==",
2643
+ "license": "ISC",
2644
+ "dependencies": {
2645
+ "d3-color": "1 - 3"
2646
+ },
2647
+ "engines": {
2648
+ "node": ">=12"
2649
+ }
2650
+ },
2651
+ "node_modules/d3-path": {
2652
+ "version": "3.1.0",
2653
+ "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz",
2654
+ "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==",
2655
+ "license": "ISC",
2656
+ "engines": {
2657
+ "node": ">=12"
2658
+ }
2659
+ },
2660
+ "node_modules/d3-scale": {
2661
+ "version": "4.0.2",
2662
+ "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz",
2663
+ "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==",
2664
+ "license": "ISC",
2665
+ "dependencies": {
2666
+ "d3-array": "2.10.0 - 3",
2667
+ "d3-format": "1 - 3",
2668
+ "d3-interpolate": "1.2.0 - 3",
2669
+ "d3-time": "2.1.1 - 3",
2670
+ "d3-time-format": "2 - 4"
2671
+ },
2672
+ "engines": {
2673
+ "node": ">=12"
2674
+ }
2675
+ },
2676
+ "node_modules/d3-shape": {
2677
+ "version": "3.2.0",
2678
+ "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz",
2679
+ "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==",
2680
+ "license": "ISC",
2681
+ "dependencies": {
2682
+ "d3-path": "^3.1.0"
2683
+ },
2684
+ "engines": {
2685
+ "node": ">=12"
2686
+ }
2687
+ },
2688
+ "node_modules/d3-time": {
2689
+ "version": "3.1.0",
2690
+ "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz",
2691
+ "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==",
2692
+ "license": "ISC",
2693
+ "dependencies": {
2694
+ "d3-array": "2 - 3"
2695
+ },
2696
+ "engines": {
2697
+ "node": ">=12"
2698
+ }
2699
+ },
2700
+ "node_modules/d3-time-format": {
2701
+ "version": "4.1.0",
2702
+ "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz",
2703
+ "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==",
2704
+ "license": "ISC",
2705
+ "dependencies": {
2706
+ "d3-time": "1 - 3"
2707
+ },
2708
+ "engines": {
2709
+ "node": ">=12"
2710
+ }
2711
+ },
2712
+ "node_modules/d3-timer": {
2713
+ "version": "3.0.1",
2714
+ "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz",
2715
+ "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==",
2716
+ "license": "ISC",
2717
+ "engines": {
2718
+ "node": ">=12"
2719
+ }
2720
+ },
2721
+ "node_modules/date-fns": {
2722
+ "version": "4.4.0",
2723
+ "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.4.0.tgz",
2724
+ "integrity": "sha512-+1UMbeh68lH1SegH83CGWwpb6OHHbpSgr3+s5Eww5M4CAgswBpoWS0AjTOfEJ33HiYKz1hdj/KTFprzXHmq/6w==",
2725
+ "license": "MIT",
2726
+ "peer": true,
2727
+ "funding": {
2728
+ "type": "github",
2729
+ "url": "https://github.com/sponsors/kossnocorp"
2730
+ }
2731
+ },
2732
+ "node_modules/decimal.js-light": {
2733
+ "version": "2.5.1",
2734
+ "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz",
2735
+ "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==",
2736
+ "license": "MIT"
2737
+ },
2738
+ "node_modules/detect-libc": {
2739
+ "version": "2.1.2",
2740
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
2741
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
2742
+ "dev": true,
2743
+ "license": "Apache-2.0",
2744
+ "engines": {
2745
+ "node": ">=8"
2746
+ }
2747
+ },
2748
+ "node_modules/detect-node-es": {
2749
+ "version": "1.1.0",
2750
+ "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz",
2751
+ "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==",
2752
+ "license": "MIT"
2753
+ },
2754
+ "node_modules/embla-carousel": {
2755
+ "version": "8.6.0",
2756
+ "resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-8.6.0.tgz",
2757
+ "integrity": "sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==",
2758
+ "license": "MIT",
2759
+ "peer": true
2760
+ },
2761
+ "node_modules/embla-carousel-react": {
2762
+ "version": "8.6.0",
2763
+ "resolved": "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-8.6.0.tgz",
2764
+ "integrity": "sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA==",
2765
+ "license": "MIT",
2766
+ "dependencies": {
2767
+ "embla-carousel": "8.6.0",
2768
+ "embla-carousel-reactive-utils": "8.6.0"
2769
+ },
2770
+ "peerDependencies": {
2771
+ "react": "^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
2772
+ }
2773
+ },
2774
+ "node_modules/embla-carousel-reactive-utils": {
2775
+ "version": "8.6.0",
2776
+ "resolved": "https://registry.npmjs.org/embla-carousel-reactive-utils/-/embla-carousel-reactive-utils-8.6.0.tgz",
2777
+ "integrity": "sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==",
2778
+ "license": "MIT",
2779
+ "peerDependencies": {
2780
+ "embla-carousel": "8.6.0"
2781
+ }
2782
+ },
2783
+ "node_modules/enhanced-resolve": {
2784
+ "version": "5.21.6",
2785
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.6.tgz",
2786
+ "integrity": "sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==",
2787
+ "dev": true,
2788
+ "license": "MIT",
2789
+ "dependencies": {
2790
+ "graceful-fs": "^4.2.4",
2791
+ "tapable": "^2.3.3"
2792
+ },
2793
+ "engines": {
2794
+ "node": ">=10.13.0"
2795
+ }
2796
+ },
2797
+ "node_modules/env-paths": {
2798
+ "version": "2.2.1",
2799
+ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
2800
+ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
2801
+ "dev": true,
2802
+ "license": "MIT",
2803
+ "engines": {
2804
+ "node": ">=6"
2805
+ }
2806
+ },
2807
+ "node_modules/error-ex": {
2808
+ "version": "1.3.4",
2809
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz",
2810
+ "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
2811
+ "dev": true,
2812
+ "license": "MIT",
2813
+ "dependencies": {
2814
+ "is-arrayish": "^0.2.1"
2815
+ }
2816
+ },
2817
+ "node_modules/es-toolkit": {
2818
+ "version": "1.48.1",
2819
+ "resolved": "https://registry.npmjs.org/es-toolkit/-/es-toolkit-1.48.1.tgz",
2820
+ "integrity": "sha512-wfnXlwd5I75eXRtdD2vuEs50xHHESECDsGD7yiQnfFVNoa5522NwXEbmgo98LfiukSQHs+mBM7/YG3qKJB9/mQ==",
2821
+ "license": "MIT",
2822
+ "workspaces": [
2823
+ "docs",
2824
+ "benchmarks"
2825
+ ]
2826
+ },
2827
+ "node_modules/eventemitter3": {
2828
+ "version": "5.0.4",
2829
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.4.tgz",
2830
+ "integrity": "sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==",
2831
+ "license": "MIT"
2832
+ },
2833
+ "node_modules/get-nonce": {
2834
+ "version": "1.0.1",
2835
+ "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz",
2836
+ "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==",
2837
+ "license": "MIT",
2838
+ "engines": {
2839
+ "node": ">=6"
2840
+ }
2841
+ },
2842
+ "node_modules/graceful-fs": {
2843
+ "version": "4.2.11",
2844
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2845
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2846
+ "dev": true,
2847
+ "license": "ISC"
2848
+ },
2849
+ "node_modules/immer": {
2850
+ "version": "10.2.0",
2851
+ "resolved": "https://registry.npmjs.org/immer/-/immer-10.2.0.tgz",
2852
+ "integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
2853
+ "license": "MIT",
2854
+ "funding": {
2855
+ "type": "opencollective",
2856
+ "url": "https://opencollective.com/immer"
2857
+ }
2858
+ },
2859
+ "node_modules/import-fresh": {
2860
+ "version": "3.3.1",
2861
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
2862
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
2863
+ "dev": true,
2864
+ "license": "MIT",
2865
+ "dependencies": {
2866
+ "parent-module": "^1.0.0",
2867
+ "resolve-from": "^4.0.0"
2868
+ },
2869
+ "engines": {
2870
+ "node": ">=6"
2871
+ },
2872
+ "funding": {
2873
+ "url": "https://github.com/sponsors/sindresorhus"
2874
+ }
2875
+ },
2876
+ "node_modules/input-otp": {
2877
+ "version": "1.4.2",
2878
+ "resolved": "https://registry.npmjs.org/input-otp/-/input-otp-1.4.2.tgz",
2879
+ "integrity": "sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA==",
2880
+ "license": "MIT",
2881
+ "peerDependencies": {
2882
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc",
2883
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc"
2884
+ }
2885
+ },
2886
+ "node_modules/internmap": {
2887
+ "version": "2.0.3",
2888
+ "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz",
2889
+ "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==",
2890
+ "license": "ISC",
2891
+ "engines": {
2892
+ "node": ">=12"
2893
+ }
2894
+ },
2895
+ "node_modules/is-arrayish": {
2896
+ "version": "0.2.1",
2897
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
2898
+ "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
2899
+ "dev": true,
2900
+ "license": "MIT"
2901
+ },
2902
+ "node_modules/jiti": {
2903
+ "version": "2.7.0",
2904
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
2905
+ "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
2906
+ "dev": true,
2907
+ "license": "MIT",
2908
+ "bin": {
2909
+ "jiti": "lib/jiti-cli.mjs"
2910
+ }
2911
+ },
2912
+ "node_modules/js-tokens": {
2913
+ "version": "4.0.0",
2914
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2915
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2916
+ "dev": true,
2917
+ "license": "MIT"
2918
+ },
2919
+ "node_modules/js-yaml": {
2920
+ "version": "4.2.0",
2921
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.2.0.tgz",
2922
+ "integrity": "sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==",
2923
+ "dev": true,
2924
+ "funding": [
2925
+ {
2926
+ "type": "github",
2927
+ "url": "https://github.com/sponsors/puzrin"
2928
+ },
2929
+ {
2930
+ "type": "github",
2931
+ "url": "https://github.com/sponsors/nodeca"
2932
+ }
2933
+ ],
2934
+ "license": "MIT",
2935
+ "dependencies": {
2936
+ "argparse": "^2.0.1"
2937
+ },
2938
+ "bin": {
2939
+ "js-yaml": "bin/js-yaml.js"
2940
+ }
2941
+ },
2942
+ "node_modules/json-parse-even-better-errors": {
2943
+ "version": "2.3.1",
2944
+ "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
2945
+ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
2946
+ "dev": true,
2947
+ "license": "MIT"
2948
+ },
2949
+ "node_modules/lightningcss": {
2950
+ "version": "1.32.0",
2951
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
2952
+ "integrity": "sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==",
2953
+ "dev": true,
2954
+ "license": "MPL-2.0",
2955
+ "dependencies": {
2956
+ "detect-libc": "^2.0.3"
2957
+ },
2958
+ "engines": {
2959
+ "node": ">= 12.0.0"
2960
+ },
2961
+ "funding": {
2962
+ "type": "opencollective",
2963
+ "url": "https://opencollective.com/parcel"
2964
+ },
2965
+ "optionalDependencies": {
2966
+ "lightningcss-android-arm64": "1.32.0",
2967
+ "lightningcss-darwin-arm64": "1.32.0",
2968
+ "lightningcss-darwin-x64": "1.32.0",
2969
+ "lightningcss-freebsd-x64": "1.32.0",
2970
+ "lightningcss-linux-arm-gnueabihf": "1.32.0",
2971
+ "lightningcss-linux-arm64-gnu": "1.32.0",
2972
+ "lightningcss-linux-arm64-musl": "1.32.0",
2973
+ "lightningcss-linux-x64-gnu": "1.32.0",
2974
+ "lightningcss-linux-x64-musl": "1.32.0",
2975
+ "lightningcss-win32-arm64-msvc": "1.32.0",
2976
+ "lightningcss-win32-x64-msvc": "1.32.0"
2977
+ }
2978
+ },
2979
+ "node_modules/lightningcss-android-arm64": {
2980
+ "version": "1.32.0",
2981
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.32.0.tgz",
2982
+ "integrity": "sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==",
2983
+ "cpu": [
2984
+ "arm64"
2985
+ ],
2986
+ "dev": true,
2987
+ "license": "MPL-2.0",
2988
+ "optional": true,
2989
+ "os": [
2990
+ "android"
2991
+ ],
2992
+ "engines": {
2993
+ "node": ">= 12.0.0"
2994
+ },
2995
+ "funding": {
2996
+ "type": "opencollective",
2997
+ "url": "https://opencollective.com/parcel"
2998
+ }
2999
+ },
3000
+ "node_modules/lightningcss-darwin-arm64": {
3001
+ "version": "1.32.0",
3002
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.32.0.tgz",
3003
+ "integrity": "sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==",
3004
+ "cpu": [
3005
+ "arm64"
3006
+ ],
3007
+ "dev": true,
3008
+ "license": "MPL-2.0",
3009
+ "optional": true,
3010
+ "os": [
3011
+ "darwin"
3012
+ ],
3013
+ "engines": {
3014
+ "node": ">= 12.0.0"
3015
+ },
3016
+ "funding": {
3017
+ "type": "opencollective",
3018
+ "url": "https://opencollective.com/parcel"
3019
+ }
3020
+ },
3021
+ "node_modules/lightningcss-darwin-x64": {
3022
+ "version": "1.32.0",
3023
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.32.0.tgz",
3024
+ "integrity": "sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==",
3025
+ "cpu": [
3026
+ "x64"
3027
+ ],
3028
+ "dev": true,
3029
+ "license": "MPL-2.0",
3030
+ "optional": true,
3031
+ "os": [
3032
+ "darwin"
3033
+ ],
3034
+ "engines": {
3035
+ "node": ">= 12.0.0"
3036
+ },
3037
+ "funding": {
3038
+ "type": "opencollective",
3039
+ "url": "https://opencollective.com/parcel"
3040
+ }
3041
+ },
3042
+ "node_modules/lightningcss-freebsd-x64": {
3043
+ "version": "1.32.0",
3044
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.32.0.tgz",
3045
+ "integrity": "sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==",
3046
+ "cpu": [
3047
+ "x64"
3048
+ ],
3049
+ "dev": true,
3050
+ "license": "MPL-2.0",
3051
+ "optional": true,
3052
+ "os": [
3053
+ "freebsd"
3054
+ ],
3055
+ "engines": {
3056
+ "node": ">= 12.0.0"
3057
+ },
3058
+ "funding": {
3059
+ "type": "opencollective",
3060
+ "url": "https://opencollective.com/parcel"
3061
+ }
3062
+ },
3063
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
3064
+ "version": "1.32.0",
3065
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.32.0.tgz",
3066
+ "integrity": "sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==",
3067
+ "cpu": [
3068
+ "arm"
3069
+ ],
3070
+ "dev": true,
3071
+ "license": "MPL-2.0",
3072
+ "optional": true,
3073
+ "os": [
3074
+ "linux"
3075
+ ],
3076
+ "engines": {
3077
+ "node": ">= 12.0.0"
3078
+ },
3079
+ "funding": {
3080
+ "type": "opencollective",
3081
+ "url": "https://opencollective.com/parcel"
3082
+ }
3083
+ },
3084
+ "node_modules/lightningcss-linux-arm64-gnu": {
3085
+ "version": "1.32.0",
3086
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.32.0.tgz",
3087
+ "integrity": "sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==",
3088
+ "cpu": [
3089
+ "arm64"
3090
+ ],
3091
+ "dev": true,
3092
+ "license": "MPL-2.0",
3093
+ "optional": true,
3094
+ "os": [
3095
+ "linux"
3096
+ ],
3097
+ "engines": {
3098
+ "node": ">= 12.0.0"
3099
+ },
3100
+ "funding": {
3101
+ "type": "opencollective",
3102
+ "url": "https://opencollective.com/parcel"
3103
+ }
3104
+ },
3105
+ "node_modules/lightningcss-linux-arm64-musl": {
3106
+ "version": "1.32.0",
3107
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.32.0.tgz",
3108
+ "integrity": "sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==",
3109
+ "cpu": [
3110
+ "arm64"
3111
+ ],
3112
+ "dev": true,
3113
+ "license": "MPL-2.0",
3114
+ "optional": true,
3115
+ "os": [
3116
+ "linux"
3117
+ ],
3118
+ "engines": {
3119
+ "node": ">= 12.0.0"
3120
+ },
3121
+ "funding": {
3122
+ "type": "opencollective",
3123
+ "url": "https://opencollective.com/parcel"
3124
+ }
3125
+ },
3126
+ "node_modules/lightningcss-linux-x64-gnu": {
3127
+ "version": "1.32.0",
3128
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.32.0.tgz",
3129
+ "integrity": "sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==",
3130
+ "cpu": [
3131
+ "x64"
3132
+ ],
3133
+ "dev": true,
3134
+ "license": "MPL-2.0",
3135
+ "optional": true,
3136
+ "os": [
3137
+ "linux"
3138
+ ],
3139
+ "engines": {
3140
+ "node": ">= 12.0.0"
3141
+ },
3142
+ "funding": {
3143
+ "type": "opencollective",
3144
+ "url": "https://opencollective.com/parcel"
3145
+ }
3146
+ },
3147
+ "node_modules/lightningcss-linux-x64-musl": {
3148
+ "version": "1.32.0",
3149
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.32.0.tgz",
3150
+ "integrity": "sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==",
3151
+ "cpu": [
3152
+ "x64"
3153
+ ],
3154
+ "dev": true,
3155
+ "license": "MPL-2.0",
3156
+ "optional": true,
3157
+ "os": [
3158
+ "linux"
3159
+ ],
3160
+ "engines": {
3161
+ "node": ">= 12.0.0"
3162
+ },
3163
+ "funding": {
3164
+ "type": "opencollective",
3165
+ "url": "https://opencollective.com/parcel"
3166
+ }
3167
+ },
3168
+ "node_modules/lightningcss-win32-arm64-msvc": {
3169
+ "version": "1.32.0",
3170
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.32.0.tgz",
3171
+ "integrity": "sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==",
3172
+ "cpu": [
3173
+ "arm64"
3174
+ ],
3175
+ "dev": true,
3176
+ "license": "MPL-2.0",
3177
+ "optional": true,
3178
+ "os": [
3179
+ "win32"
3180
+ ],
3181
+ "engines": {
3182
+ "node": ">= 12.0.0"
3183
+ },
3184
+ "funding": {
3185
+ "type": "opencollective",
3186
+ "url": "https://opencollective.com/parcel"
3187
+ }
3188
+ },
3189
+ "node_modules/lightningcss-win32-x64-msvc": {
3190
+ "version": "1.32.0",
3191
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.32.0.tgz",
3192
+ "integrity": "sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==",
3193
+ "cpu": [
3194
+ "x64"
3195
+ ],
3196
+ "dev": true,
3197
+ "license": "MPL-2.0",
3198
+ "optional": true,
3199
+ "os": [
3200
+ "win32"
3201
+ ],
3202
+ "engines": {
3203
+ "node": ">= 12.0.0"
3204
+ },
3205
+ "funding": {
3206
+ "type": "opencollective",
3207
+ "url": "https://opencollective.com/parcel"
3208
+ }
3209
+ },
3210
+ "node_modules/lines-and-columns": {
3211
+ "version": "1.2.4",
3212
+ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
3213
+ "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
3214
+ "dev": true,
3215
+ "license": "MIT"
3216
+ },
3217
+ "node_modules/lucide-react": {
3218
+ "version": "1.21.0",
3219
+ "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.21.0.tgz",
3220
+ "integrity": "sha512-reEZMXq8Qdd5jg5XYkQ5TR1fB/GiQ7ih4vcrthYDtgjSDwh0i6/YLiGjsWsIwgN49gpAnd4J2elSNzncMEEUUQ==",
3221
+ "license": "ISC",
3222
+ "peerDependencies": {
3223
+ "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
3224
+ }
3225
+ },
3226
+ "node_modules/magic-string": {
3227
+ "version": "0.30.21",
3228
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
3229
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
3230
+ "dev": true,
3231
+ "license": "MIT",
3232
+ "dependencies": {
3233
+ "@jridgewell/sourcemap-codec": "^1.5.5"
3234
+ }
3235
+ },
3236
+ "node_modules/nanoid": {
3237
+ "version": "3.3.15",
3238
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.15.tgz",
3239
+ "integrity": "sha512-y7Wygv/7mEOvxTuEQDB8StXdMRBWf1kR/tlhAzBRUFkB2jfcLOAxO/SHmOO2zgz1pVgK29/kyupn059/bCHdjA==",
3240
+ "dev": true,
3241
+ "funding": [
3242
+ {
3243
+ "type": "github",
3244
+ "url": "https://github.com/sponsors/ai"
3245
+ }
3246
+ ],
3247
+ "license": "MIT",
3248
+ "bin": {
3249
+ "nanoid": "bin/nanoid.cjs"
3250
+ },
3251
+ "engines": {
3252
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3253
+ }
3254
+ },
3255
+ "node_modules/next-themes": {
3256
+ "version": "0.4.6",
3257
+ "resolved": "https://registry.npmjs.org/next-themes/-/next-themes-0.4.6.tgz",
3258
+ "integrity": "sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==",
3259
+ "license": "MIT",
3260
+ "peerDependencies": {
3261
+ "react": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc",
3262
+ "react-dom": "^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc"
3263
+ }
3264
+ },
3265
+ "node_modules/parent-module": {
3266
+ "version": "1.0.1",
3267
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
3268
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3269
+ "dev": true,
3270
+ "license": "MIT",
3271
+ "dependencies": {
3272
+ "callsites": "^3.0.0"
3273
+ },
3274
+ "engines": {
3275
+ "node": ">=6"
3276
+ }
3277
+ },
3278
+ "node_modules/parse-json": {
3279
+ "version": "5.2.0",
3280
+ "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
3281
+ "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
3282
+ "dev": true,
3283
+ "license": "MIT",
3284
+ "dependencies": {
3285
+ "@babel/code-frame": "^7.0.0",
3286
+ "error-ex": "^1.3.1",
3287
+ "json-parse-even-better-errors": "^2.3.0",
3288
+ "lines-and-columns": "^1.1.6"
3289
+ },
3290
+ "engines": {
3291
+ "node": ">=8"
3292
+ },
3293
+ "funding": {
3294
+ "url": "https://github.com/sponsors/sindresorhus"
3295
+ }
3296
+ },
3297
+ "node_modules/picocolors": {
3298
+ "version": "1.1.1",
3299
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3300
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3301
+ "dev": true,
3302
+ "license": "ISC"
3303
+ },
3304
+ "node_modules/postcss": {
3305
+ "version": "8.5.15",
3306
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
3307
+ "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
3308
+ "dev": true,
3309
+ "funding": [
3310
+ {
3311
+ "type": "opencollective",
3312
+ "url": "https://opencollective.com/postcss/"
3313
+ },
3314
+ {
3315
+ "type": "tidelift",
3316
+ "url": "https://tidelift.com/funding/github/npm/postcss"
3317
+ },
3318
+ {
3319
+ "type": "github",
3320
+ "url": "https://github.com/sponsors/ai"
3321
+ }
3322
+ ],
3323
+ "license": "MIT",
3324
+ "peer": true,
3325
+ "dependencies": {
3326
+ "nanoid": "^3.3.12",
3327
+ "picocolors": "^1.1.1",
3328
+ "source-map-js": "^1.2.1"
3329
+ },
3330
+ "engines": {
3331
+ "node": "^10 || ^12 || >=14"
3332
+ }
3333
+ },
3334
+ "node_modules/postcss-loader": {
3335
+ "version": "8.2.1",
3336
+ "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-8.2.1.tgz",
3337
+ "integrity": "sha512-k98jtRzthjj3f76MYTs9JTpRqV1RaaMhEU0Lpw9OTmQZQdppg4B30VZ74BojuBHt3F4KyubHJoXCMUeM8Bqeow==",
3338
+ "dev": true,
3339
+ "license": "MIT",
3340
+ "dependencies": {
3341
+ "cosmiconfig": "^9.0.0",
3342
+ "jiti": "^2.5.1",
3343
+ "semver": "^7.6.2"
3344
+ },
3345
+ "engines": {
3346
+ "node": ">= 18.12.0"
3347
+ },
3348
+ "funding": {
3349
+ "type": "opencollective",
3350
+ "url": "https://opencollective.com/webpack"
3351
+ },
3352
+ "peerDependencies": {
3353
+ "@rspack/core": "0.x || ^1.0.0 || ^2.0.0-0",
3354
+ "postcss": "^7.0.0 || ^8.0.1",
3355
+ "webpack": "^5.0.0"
3356
+ },
3357
+ "peerDependenciesMeta": {
3358
+ "@rspack/core": {
3359
+ "optional": true
3360
+ },
3361
+ "webpack": {
3362
+ "optional": true
3363
+ }
3364
+ }
3365
+ },
3366
+ "node_modules/radix-ui": {
3367
+ "version": "1.6.0",
3368
+ "resolved": "https://registry.npmjs.org/radix-ui/-/radix-ui-1.6.0.tgz",
3369
+ "integrity": "sha512-EUEC70O03EgxWMP5aoqfBZ6iLC5bczFagGy7zhSYRt8o5DP7IWNiP3ywetse3L9b8843ExB0OGWZvgbYVJuNeg==",
3370
+ "license": "MIT",
3371
+ "dependencies": {
3372
+ "@radix-ui/primitive": "1.1.4",
3373
+ "@radix-ui/react-accessible-icon": "1.1.10",
3374
+ "@radix-ui/react-accordion": "1.2.14",
3375
+ "@radix-ui/react-alert-dialog": "1.1.17",
3376
+ "@radix-ui/react-arrow": "1.1.10",
3377
+ "@radix-ui/react-aspect-ratio": "1.1.10",
3378
+ "@radix-ui/react-avatar": "1.2.0",
3379
+ "@radix-ui/react-checkbox": "1.3.5",
3380
+ "@radix-ui/react-collapsible": "1.1.14",
3381
+ "@radix-ui/react-collection": "1.1.10",
3382
+ "@radix-ui/react-compose-refs": "1.1.3",
3383
+ "@radix-ui/react-context": "1.1.4",
3384
+ "@radix-ui/react-context-menu": "2.3.1",
3385
+ "@radix-ui/react-dialog": "1.1.17",
3386
+ "@radix-ui/react-direction": "1.1.2",
3387
+ "@radix-ui/react-dismissable-layer": "1.1.13",
3388
+ "@radix-ui/react-dropdown-menu": "2.1.18",
3389
+ "@radix-ui/react-focus-guards": "1.1.4",
3390
+ "@radix-ui/react-focus-scope": "1.1.10",
3391
+ "@radix-ui/react-form": "0.1.10",
3392
+ "@radix-ui/react-hover-card": "1.1.17",
3393
+ "@radix-ui/react-label": "2.1.10",
3394
+ "@radix-ui/react-menu": "2.1.18",
3395
+ "@radix-ui/react-menubar": "1.1.18",
3396
+ "@radix-ui/react-navigation-menu": "1.2.16",
3397
+ "@radix-ui/react-one-time-password-field": "0.1.10",
3398
+ "@radix-ui/react-password-toggle-field": "0.1.5",
3399
+ "@radix-ui/react-popover": "1.1.17",
3400
+ "@radix-ui/react-popper": "1.3.1",
3401
+ "@radix-ui/react-portal": "1.1.12",
3402
+ "@radix-ui/react-presence": "1.1.6",
3403
+ "@radix-ui/react-primitive": "2.1.6",
3404
+ "@radix-ui/react-progress": "1.1.10",
3405
+ "@radix-ui/react-radio-group": "1.4.1",
3406
+ "@radix-ui/react-roving-focus": "1.1.13",
3407
+ "@radix-ui/react-scroll-area": "1.2.12",
3408
+ "@radix-ui/react-select": "2.3.1",
3409
+ "@radix-ui/react-separator": "1.1.10",
3410
+ "@radix-ui/react-slider": "1.4.1",
3411
+ "@radix-ui/react-slot": "1.3.0",
3412
+ "@radix-ui/react-switch": "1.3.1",
3413
+ "@radix-ui/react-tabs": "1.1.15",
3414
+ "@radix-ui/react-toast": "1.2.17",
3415
+ "@radix-ui/react-toggle": "1.1.12",
3416
+ "@radix-ui/react-toggle-group": "1.1.13",
3417
+ "@radix-ui/react-toolbar": "1.1.13",
3418
+ "@radix-ui/react-tooltip": "1.2.10",
3419
+ "@radix-ui/react-use-callback-ref": "1.1.2",
3420
+ "@radix-ui/react-use-controllable-state": "1.2.3",
3421
+ "@radix-ui/react-use-effect-event": "0.0.3",
3422
+ "@radix-ui/react-use-escape-keydown": "1.1.2",
3423
+ "@radix-ui/react-use-is-hydrated": "0.1.1",
3424
+ "@radix-ui/react-use-layout-effect": "1.1.2",
3425
+ "@radix-ui/react-use-size": "1.1.2",
3426
+ "@radix-ui/react-visually-hidden": "1.2.6"
3427
+ },
3428
+ "peerDependencies": {
3429
+ "@types/react": "*",
3430
+ "@types/react-dom": "*",
3431
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
3432
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
3433
+ },
3434
+ "peerDependenciesMeta": {
3435
+ "@types/react": {
3436
+ "optional": true
3437
+ },
3438
+ "@types/react-dom": {
3439
+ "optional": true
3440
+ }
3441
+ }
3442
+ },
3443
+ "node_modules/react": {
3444
+ "version": "19.2.7",
3445
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
3446
+ "integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
3447
+ "license": "MIT",
3448
+ "peer": true,
3449
+ "engines": {
3450
+ "node": ">=0.10.0"
3451
+ }
3452
+ },
3453
+ "node_modules/react-day-picker": {
3454
+ "version": "10.0.1",
3455
+ "resolved": "https://registry.npmjs.org/react-day-picker/-/react-day-picker-10.0.1.tgz",
3456
+ "integrity": "sha512-eNh6BlwcYInWaJtRv18mXQ06Ys/H6rdTZAnTaSdOYJuTpwP1JMCHNd1FDRadA+gbeinq+psdULN5Xnowy9mV8w==",
3457
+ "license": "MIT",
3458
+ "dependencies": {
3459
+ "@date-fns/tz": "^1.4.1",
3460
+ "date-fns": "^4.1.0"
3461
+ },
3462
+ "engines": {
3463
+ "node": ">=18"
3464
+ },
3465
+ "funding": {
3466
+ "type": "individual",
3467
+ "url": "https://github.com/sponsors/gpbl"
3468
+ },
3469
+ "peerDependencies": {
3470
+ "@types/react": ">=16.8.0",
3471
+ "react": ">=16.8.0"
3472
+ },
3473
+ "peerDependenciesMeta": {
3474
+ "@types/react": {
3475
+ "optional": true
3476
+ }
3477
+ }
3478
+ },
3479
+ "node_modules/react-dom": {
3480
+ "version": "19.2.7",
3481
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
3482
+ "integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
3483
+ "license": "MIT",
3484
+ "peer": true,
3485
+ "dependencies": {
3486
+ "scheduler": "^0.27.0"
3487
+ },
3488
+ "peerDependencies": {
3489
+ "react": "^19.2.7"
3490
+ }
3491
+ },
3492
+ "node_modules/react-hook-form": {
3493
+ "version": "7.80.0",
3494
+ "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.80.0.tgz",
3495
+ "integrity": "sha512-4P+fk6oXsxY+6xSj7Euhc2sumQD8zQqCuVHoJwoyp9EchP+IUW9OESB7uHFJOKsIBQ4MQqYE84INJFqUCYNoOg==",
3496
+ "license": "MIT",
3497
+ "peer": true,
3498
+ "engines": {
3499
+ "node": ">=18.0.0"
3500
+ },
3501
+ "funding": {
3502
+ "type": "opencollective",
3503
+ "url": "https://opencollective.com/react-hook-form"
3504
+ },
3505
+ "peerDependencies": {
3506
+ "react": "^16.8.0 || ^17 || ^18 || ^19"
3507
+ }
3508
+ },
3509
+ "node_modules/react-is": {
3510
+ "version": "19.2.7",
3511
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.2.7.tgz",
3512
+ "integrity": "sha512-kZFnouyVv7eP/Phmrlo9FK+zcAdriZJvzxXHF1Sl1P377WSGe2G/JxVolhTrB/jeV47lKImhNUsijjHAAbcl/A==",
3513
+ "license": "MIT",
3514
+ "peer": true
3515
+ },
3516
+ "node_modules/react-redux": {
3517
+ "version": "9.3.0",
3518
+ "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-9.3.0.tgz",
3519
+ "integrity": "sha512-KQopgqFo/p/fgmAs5qz6p5RWaNAzq40WAu7fJIXnQpYxFPbJYtsJPWvGeF2rOBaY/kEuV77AVsX8TsQzKm+A/g==",
3520
+ "license": "MIT",
3521
+ "peer": true,
3522
+ "dependencies": {
3523
+ "@types/use-sync-external-store": "^0.0.6",
3524
+ "use-sync-external-store": "^1.4.0"
3525
+ },
3526
+ "peerDependencies": {
3527
+ "@types/react": "^18.2.25 || ^19",
3528
+ "react": "^18.0 || ^19",
3529
+ "redux": "^5.0.0"
3530
+ },
3531
+ "peerDependenciesMeta": {
3532
+ "@types/react": {
3533
+ "optional": true
3534
+ },
3535
+ "redux": {
3536
+ "optional": true
3537
+ }
3538
+ }
3539
+ },
3540
+ "node_modules/react-remove-scroll": {
3541
+ "version": "2.7.2",
3542
+ "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.2.tgz",
3543
+ "integrity": "sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==",
3544
+ "license": "MIT",
3545
+ "dependencies": {
3546
+ "react-remove-scroll-bar": "^2.3.7",
3547
+ "react-style-singleton": "^2.2.3",
3548
+ "tslib": "^2.1.0",
3549
+ "use-callback-ref": "^1.3.3",
3550
+ "use-sidecar": "^1.1.3"
3551
+ },
3552
+ "engines": {
3553
+ "node": ">=10"
3554
+ },
3555
+ "peerDependencies": {
3556
+ "@types/react": "*",
3557
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
3558
+ },
3559
+ "peerDependenciesMeta": {
3560
+ "@types/react": {
3561
+ "optional": true
3562
+ }
3563
+ }
3564
+ },
3565
+ "node_modules/react-remove-scroll-bar": {
3566
+ "version": "2.3.8",
3567
+ "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz",
3568
+ "integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==",
3569
+ "license": "MIT",
3570
+ "dependencies": {
3571
+ "react-style-singleton": "^2.2.2",
3572
+ "tslib": "^2.0.0"
3573
+ },
3574
+ "engines": {
3575
+ "node": ">=10"
3576
+ },
3577
+ "peerDependencies": {
3578
+ "@types/react": "*",
3579
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
3580
+ },
3581
+ "peerDependenciesMeta": {
3582
+ "@types/react": {
3583
+ "optional": true
3584
+ }
3585
+ }
3586
+ },
3587
+ "node_modules/react-resizable-panels": {
3588
+ "version": "4.11.2",
3589
+ "resolved": "https://registry.npmjs.org/react-resizable-panels/-/react-resizable-panels-4.11.2.tgz",
3590
+ "integrity": "sha512-+kfFbDZ8mygc7g0vxOcDzCVGuwiIUOnILqPoUHo6/uP+Mmyx6HzZU+kj1aOPDlktXuobYbr6BtQekvJwHRX4Eg==",
3591
+ "license": "MIT",
3592
+ "peerDependencies": {
3593
+ "react": "^18.0.0 || ^19.0.0",
3594
+ "react-dom": "^18.0.0 || ^19.0.0"
3595
+ }
3596
+ },
3597
+ "node_modules/react-router": {
3598
+ "version": "7.18.0",
3599
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.18.0.tgz",
3600
+ "integrity": "sha512-pTTGt8J+ji1NOmYnjzT+bAJy/1zD+Jp4ziO6cL7T3ZLvXKtusO7BpFqlRXitqpcPVqllsIXFHRMt+2/k3Xn6HQ==",
3601
+ "license": "MIT",
3602
+ "dependencies": {
3603
+ "cookie": "^1.0.1",
3604
+ "set-cookie-parser": "^2.6.0"
3605
+ },
3606
+ "engines": {
3607
+ "node": ">=20.0.0"
3608
+ },
3609
+ "peerDependencies": {
3610
+ "react": ">=18",
3611
+ "react-dom": ">=18"
3612
+ },
3613
+ "peerDependenciesMeta": {
3614
+ "react-dom": {
3615
+ "optional": true
3616
+ }
3617
+ }
3618
+ },
3619
+ "node_modules/react-router-dom": {
3620
+ "version": "7.18.0",
3621
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.18.0.tgz",
3622
+ "integrity": "sha512-Fi0yY6kgtKae/Th2xibdWK0KSdYZ4B53Gyf6wRtomOKWgpNm7H7+DyfDhncdz9FKbpS+1jmDhg3F4WoGJ+yFOA==",
3623
+ "license": "MIT",
3624
+ "dependencies": {
3625
+ "react-router": "7.18.0"
3626
+ },
3627
+ "engines": {
3628
+ "node": ">=20.0.0"
3629
+ },
3630
+ "peerDependencies": {
3631
+ "react": ">=18",
3632
+ "react-dom": ">=18"
3633
+ }
3634
+ },
3635
+ "node_modules/react-style-singleton": {
3636
+ "version": "2.2.3",
3637
+ "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz",
3638
+ "integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==",
3639
+ "license": "MIT",
3640
+ "dependencies": {
3641
+ "get-nonce": "^1.0.0",
3642
+ "tslib": "^2.0.0"
3643
+ },
3644
+ "engines": {
3645
+ "node": ">=10"
3646
+ },
3647
+ "peerDependencies": {
3648
+ "@types/react": "*",
3649
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
3650
+ },
3651
+ "peerDependenciesMeta": {
3652
+ "@types/react": {
3653
+ "optional": true
3654
+ }
3655
+ }
3656
+ },
3657
+ "node_modules/recharts": {
3658
+ "version": "3.8.0",
3659
+ "resolved": "https://registry.npmjs.org/recharts/-/recharts-3.8.0.tgz",
3660
+ "integrity": "sha512-Z/m38DX3L73ExO4Tpc9/iZWHmHnlzWG4njQbxsF5aSjwqmHNDDIm0rdEBArkwsBvR8U6EirlEHiQNYWCVh9sGQ==",
3661
+ "license": "MIT",
3662
+ "workspaces": [
3663
+ "www"
3664
+ ],
3665
+ "dependencies": {
3666
+ "@reduxjs/toolkit": "^1.9.0 || 2.x.x",
3667
+ "clsx": "^2.1.1",
3668
+ "decimal.js-light": "^2.5.1",
3669
+ "es-toolkit": "^1.39.3",
3670
+ "eventemitter3": "^5.0.1",
3671
+ "immer": "^10.1.1",
3672
+ "react-redux": "8.x.x || 9.x.x",
3673
+ "reselect": "5.1.1",
3674
+ "tiny-invariant": "^1.3.3",
3675
+ "use-sync-external-store": "^1.2.2",
3676
+ "victory-vendor": "^37.0.2"
3677
+ },
3678
+ "engines": {
3679
+ "node": ">=18"
3680
+ },
3681
+ "peerDependencies": {
3682
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
3683
+ "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
3684
+ "react-is": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
3685
+ }
3686
+ },
3687
+ "node_modules/recharts/node_modules/reselect": {
3688
+ "version": "5.1.1",
3689
+ "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.1.1.tgz",
3690
+ "integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==",
3691
+ "license": "MIT"
3692
+ },
3693
+ "node_modules/redux": {
3694
+ "version": "5.0.1",
3695
+ "resolved": "https://registry.npmjs.org/redux/-/redux-5.0.1.tgz",
3696
+ "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==",
3697
+ "license": "MIT",
3698
+ "peer": true
3699
+ },
3700
+ "node_modules/redux-thunk": {
3701
+ "version": "3.1.0",
3702
+ "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-3.1.0.tgz",
3703
+ "integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==",
3704
+ "license": "MIT",
3705
+ "peerDependencies": {
3706
+ "redux": "^5.0.0"
3707
+ }
3708
+ },
3709
+ "node_modules/reselect": {
3710
+ "version": "5.2.0",
3711
+ "resolved": "https://registry.npmjs.org/reselect/-/reselect-5.2.0.tgz",
3712
+ "integrity": "sha512-AgZ3UOZm3YndfrJ4OYjgrT7bmCm/1iqkjvEfH/oYjzh6PD2qw4QuT3jjnXIrpdt4MTpMXclMT3lXbmRY+XRakw==",
3713
+ "license": "MIT"
3714
+ },
3715
+ "node_modules/resolve-from": {
3716
+ "version": "4.0.0",
3717
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3718
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3719
+ "dev": true,
3720
+ "license": "MIT",
3721
+ "engines": {
3722
+ "node": ">=4"
3723
+ }
3724
+ },
3725
+ "node_modules/scheduler": {
3726
+ "version": "0.27.0",
3727
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
3728
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
3729
+ "license": "MIT"
3730
+ },
3731
+ "node_modules/semver": {
3732
+ "version": "7.8.5",
3733
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
3734
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
3735
+ "dev": true,
3736
+ "license": "ISC",
3737
+ "bin": {
3738
+ "semver": "bin/semver.js"
3739
+ },
3740
+ "engines": {
3741
+ "node": ">=10"
3742
+ }
3743
+ },
3744
+ "node_modules/set-cookie-parser": {
3745
+ "version": "2.7.2",
3746
+ "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz",
3747
+ "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==",
3748
+ "license": "MIT"
3749
+ },
3750
+ "node_modules/sonner": {
3751
+ "version": "2.0.7",
3752
+ "resolved": "https://registry.npmjs.org/sonner/-/sonner-2.0.7.tgz",
3753
+ "integrity": "sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==",
3754
+ "license": "MIT",
3755
+ "peerDependencies": {
3756
+ "react": "^18.0.0 || ^19.0.0 || ^19.0.0-rc",
3757
+ "react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-rc"
3758
+ }
3759
+ },
3760
+ "node_modules/source-map-js": {
3761
+ "version": "1.2.1",
3762
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3763
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3764
+ "dev": true,
3765
+ "license": "BSD-3-Clause",
3766
+ "engines": {
3767
+ "node": ">=0.10.0"
3768
+ }
3769
+ },
3770
+ "node_modules/tailwind-merge": {
3771
+ "version": "3.6.0",
3772
+ "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.6.0.tgz",
3773
+ "integrity": "sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==",
3774
+ "license": "MIT",
3775
+ "funding": {
3776
+ "type": "github",
3777
+ "url": "https://github.com/sponsors/dcastil"
3778
+ }
3779
+ },
3780
+ "node_modules/tailwindcss": {
3781
+ "version": "4.3.1",
3782
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.1.tgz",
3783
+ "integrity": "sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==",
3784
+ "dev": true,
3785
+ "license": "MIT"
3786
+ },
3787
+ "node_modules/tapable": {
3788
+ "version": "2.3.3",
3789
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.3.tgz",
3790
+ "integrity": "sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==",
3791
+ "dev": true,
3792
+ "license": "MIT",
3793
+ "engines": {
3794
+ "node": ">=6"
3795
+ },
3796
+ "funding": {
3797
+ "type": "opencollective",
3798
+ "url": "https://opencollective.com/webpack"
3799
+ }
3800
+ },
3801
+ "node_modules/tiny-invariant": {
3802
+ "version": "1.3.3",
3803
+ "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz",
3804
+ "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==",
3805
+ "license": "MIT"
3806
+ },
3807
+ "node_modules/tslib": {
3808
+ "version": "2.8.1",
3809
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
3810
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
3811
+ "license": "0BSD"
3812
+ },
3813
+ "node_modules/tw-animate-css": {
3814
+ "version": "1.4.0",
3815
+ "resolved": "https://registry.npmjs.org/tw-animate-css/-/tw-animate-css-1.4.0.tgz",
3816
+ "integrity": "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==",
3817
+ "license": "MIT",
3818
+ "funding": {
3819
+ "url": "https://github.com/sponsors/Wombosvideo"
3820
+ }
3821
+ },
3822
+ "node_modules/typescript": {
3823
+ "version": "6.0.3",
3824
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
3825
+ "integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==",
3826
+ "dev": true,
3827
+ "license": "Apache-2.0",
3828
+ "peer": true,
3829
+ "bin": {
3830
+ "tsc": "bin/tsc",
3831
+ "tsserver": "bin/tsserver"
3832
+ },
3833
+ "engines": {
3834
+ "node": ">=14.17"
3835
+ }
3836
+ },
3837
+ "node_modules/use-callback-ref": {
3838
+ "version": "1.3.3",
3839
+ "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz",
3840
+ "integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==",
3841
+ "license": "MIT",
3842
+ "dependencies": {
3843
+ "tslib": "^2.0.0"
3844
+ },
3845
+ "engines": {
3846
+ "node": ">=10"
3847
+ },
3848
+ "peerDependencies": {
3849
+ "@types/react": "*",
3850
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
3851
+ },
3852
+ "peerDependenciesMeta": {
3853
+ "@types/react": {
3854
+ "optional": true
3855
+ }
3856
+ }
3857
+ },
3858
+ "node_modules/use-sidecar": {
3859
+ "version": "1.1.3",
3860
+ "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.3.tgz",
3861
+ "integrity": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==",
3862
+ "license": "MIT",
3863
+ "dependencies": {
3864
+ "detect-node-es": "^1.1.0",
3865
+ "tslib": "^2.0.0"
3866
+ },
3867
+ "engines": {
3868
+ "node": ">=10"
3869
+ },
3870
+ "peerDependencies": {
3871
+ "@types/react": "*",
3872
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
3873
+ },
3874
+ "peerDependenciesMeta": {
3875
+ "@types/react": {
3876
+ "optional": true
3877
+ }
3878
+ }
3879
+ },
3880
+ "node_modules/use-sync-external-store": {
3881
+ "version": "1.6.0",
3882
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
3883
+ "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
3884
+ "license": "MIT",
3885
+ "peerDependencies": {
3886
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
3887
+ }
3888
+ },
3889
+ "node_modules/vaul": {
3890
+ "version": "1.1.2",
3891
+ "resolved": "https://registry.npmjs.org/vaul/-/vaul-1.1.2.tgz",
3892
+ "integrity": "sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==",
3893
+ "license": "MIT",
3894
+ "dependencies": {
3895
+ "@radix-ui/react-dialog": "^1.1.1"
3896
+ },
3897
+ "peerDependencies": {
3898
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc",
3899
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc"
3900
+ }
3901
+ },
3902
+ "node_modules/victory-vendor": {
3903
+ "version": "37.3.6",
3904
+ "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-37.3.6.tgz",
3905
+ "integrity": "sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==",
3906
+ "license": "MIT AND ISC",
3907
+ "dependencies": {
3908
+ "@types/d3-array": "^3.0.3",
3909
+ "@types/d3-ease": "^3.0.0",
3910
+ "@types/d3-interpolate": "^3.0.1",
3911
+ "@types/d3-scale": "^4.0.2",
3912
+ "@types/d3-shape": "^3.1.0",
3913
+ "@types/d3-time": "^3.0.0",
3914
+ "@types/d3-timer": "^3.0.0",
3915
+ "d3-array": "^3.1.6",
3916
+ "d3-ease": "^3.0.1",
3917
+ "d3-interpolate": "^3.0.1",
3918
+ "d3-scale": "^4.0.2",
3919
+ "d3-shape": "^3.1.0",
3920
+ "d3-time": "^3.0.0",
3921
+ "d3-timer": "^3.0.1"
3922
+ }
3923
+ },
3924
+ "node_modules/zod": {
3925
+ "version": "4.4.3",
3926
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
3927
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
3928
+ "license": "MIT",
3929
+ "funding": {
3930
+ "url": "https://github.com/sponsors/colinhacks"
3931
+ }
3932
+ }
3933
+ }
3934
+ }