create-ec-app 1.8.0 → 1.10.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 (104) hide show
  1. package/README.md +72 -17
  2. package/dist/cssScope.js +3 -5
  3. package/dist/cssScope.js.map +1 -1
  4. package/dist/index.d.ts +46 -1
  5. package/dist/index.d.ts.map +1 -1
  6. package/dist/index.js +129 -53
  7. package/dist/index.js.map +1 -1
  8. package/dist/libFunctions.d.ts +13 -6
  9. package/dist/libFunctions.d.ts.map +1 -1
  10. package/dist/libFunctions.js +24 -9
  11. package/dist/libFunctions.js.map +1 -1
  12. package/dist/pcf.d.ts.map +1 -1
  13. package/dist/pcf.js +4 -1
  14. package/dist/pcf.js.map +1 -1
  15. package/dist/portalContainers.js +7 -5
  16. package/dist/portalContainers.js.map +1 -1
  17. package/package.json +18 -11
  18. package/scripts/build-generated.mjs +59 -0
  19. package/scripts/refresh-shadcn-template.ts +406 -0
  20. package/scripts/smoke-scaffold.mjs +245 -0
  21. package/templates/base/eslint.config.js +1 -1
  22. package/templates/base/package-lock.json +380 -476
  23. package/templates/base/package.json +14 -19
  24. package/templates/pcf/base/package-lock.json +35 -53
  25. package/templates/targets/code-apps/AGENTS.md +43 -1
  26. package/templates/targets/code-apps/CLAUDE.md +1 -0
  27. package/templates/targets/code-apps/package.patch.json +1 -1
  28. package/templates/targets/power-pages/AGENTS.md +43 -1
  29. package/templates/targets/power-pages/CLAUDE.md +1 -0
  30. package/templates/targets/power-pages/README.md +22 -2
  31. package/templates/targets/power-pages/src/App.patch.tsx +3 -1
  32. package/templates/targets/power-pages/src/components/shared/AuthError.tsx +18 -0
  33. package/templates/targets/power-pages/src/context/AuthContext.tsx +0 -4
  34. package/templates/targets/swa/AGENTS.md +42 -0
  35. package/templates/targets/swa/CLAUDE.md +1 -0
  36. package/templates/targets/webresource/AGENTS.md +47 -4
  37. package/templates/targets/webresource/CLAUDE.md +1 -0
  38. package/templates/targets/webresource/README.md +5 -5
  39. package/templates/ui/kendo/package.patch.json +2 -2
  40. package/templates/ui/shadcn-ui/SHADCN_TEMPLATE.md +20 -0
  41. package/templates/ui/shadcn-ui/package.patch.json +18 -9
  42. package/templates/ui/shadcn-ui/src/components/ui/accordion.tsx +79 -0
  43. package/templates/ui/shadcn-ui/src/components/ui/alert-dialog.tsx +199 -0
  44. package/templates/ui/shadcn-ui/src/components/ui/alert.tsx +76 -0
  45. package/templates/ui/shadcn-ui/src/components/ui/aspect-ratio.tsx +11 -0
  46. package/templates/ui/shadcn-ui/src/components/ui/attachment.tsx +206 -0
  47. package/templates/ui/shadcn-ui/src/components/ui/avatar.tsx +110 -0
  48. package/templates/ui/shadcn-ui/src/components/ui/badge.tsx +49 -0
  49. package/templates/ui/shadcn-ui/src/components/ui/breadcrumb.tsx +122 -0
  50. package/templates/ui/shadcn-ui/src/components/ui/bubble.tsx +125 -0
  51. package/templates/ui/shadcn-ui/src/components/ui/button-group.tsx +83 -0
  52. package/templates/ui/shadcn-ui/src/components/ui/button.tsx +67 -0
  53. package/templates/ui/shadcn-ui/src/components/ui/calendar.tsx +222 -0
  54. package/templates/ui/shadcn-ui/src/components/ui/card.tsx +103 -0
  55. package/templates/ui/shadcn-ui/src/components/ui/carousel.tsx +240 -0
  56. package/templates/ui/shadcn-ui/src/components/ui/chart.tsx +373 -0
  57. package/templates/ui/shadcn-ui/src/components/ui/checkbox.tsx +31 -0
  58. package/templates/ui/shadcn-ui/src/components/ui/collapsible.tsx +33 -0
  59. package/templates/ui/shadcn-ui/src/components/ui/combobox.tsx +299 -0
  60. package/templates/ui/shadcn-ui/src/components/ui/command.tsx +195 -0
  61. package/templates/ui/shadcn-ui/src/components/ui/context-menu.tsx +264 -0
  62. package/templates/ui/shadcn-ui/src/components/ui/dialog.tsx +170 -0
  63. package/templates/ui/shadcn-ui/src/components/ui/direction.tsx +22 -0
  64. package/templates/ui/shadcn-ui/src/components/ui/drawer.tsx +134 -0
  65. package/templates/ui/shadcn-ui/src/components/ui/dropdown-menu.tsx +272 -0
  66. package/templates/ui/shadcn-ui/src/components/ui/empty.tsx +104 -0
  67. package/templates/ui/shadcn-ui/src/components/ui/field.tsx +236 -0
  68. package/templates/ui/shadcn-ui/src/components/ui/hover-card.tsx +44 -0
  69. package/templates/ui/shadcn-ui/src/components/ui/input-group.tsx +156 -0
  70. package/templates/ui/shadcn-ui/src/components/ui/input-otp.tsx +87 -0
  71. package/templates/ui/shadcn-ui/src/components/ui/input.tsx +19 -0
  72. package/templates/ui/shadcn-ui/src/components/ui/item.tsx +196 -0
  73. package/templates/ui/shadcn-ui/src/components/ui/kbd.tsx +26 -0
  74. package/templates/ui/shadcn-ui/src/components/ui/label.tsx +22 -0
  75. package/templates/ui/shadcn-ui/src/components/ui/marker.tsx +69 -0
  76. package/templates/ui/shadcn-ui/src/components/ui/menubar.tsx +282 -0
  77. package/templates/ui/shadcn-ui/src/components/ui/message-scroller.tsx +129 -0
  78. package/templates/ui/shadcn-ui/src/components/ui/message.tsx +92 -0
  79. package/templates/ui/shadcn-ui/src/components/ui/native-select.tsx +61 -0
  80. package/templates/ui/shadcn-ui/src/components/ui/navigation-menu.tsx +164 -0
  81. package/templates/ui/shadcn-ui/src/components/ui/pagination.tsx +129 -0
  82. package/templates/ui/shadcn-ui/src/components/ui/popover.tsx +89 -0
  83. package/templates/ui/shadcn-ui/src/components/ui/progress.tsx +31 -0
  84. package/templates/ui/shadcn-ui/src/components/ui/radio-group.tsx +42 -0
  85. package/templates/ui/shadcn-ui/src/components/ui/resizable.tsx +50 -0
  86. package/templates/ui/shadcn-ui/src/components/ui/scroll-area.tsx +53 -0
  87. package/templates/ui/shadcn-ui/src/components/ui/select.tsx +194 -0
  88. package/templates/ui/shadcn-ui/src/components/ui/separator.tsx +26 -0
  89. package/templates/ui/shadcn-ui/src/components/ui/sheet.tsx +149 -0
  90. package/templates/ui/shadcn-ui/src/components/ui/sidebar.tsx +702 -0
  91. package/templates/ui/shadcn-ui/src/components/ui/skeleton.tsx +13 -0
  92. package/templates/ui/shadcn-ui/src/components/ui/slider.tsx +59 -0
  93. package/templates/ui/shadcn-ui/src/components/ui/sonner.tsx +47 -0
  94. package/templates/ui/shadcn-ui/src/components/ui/spinner.tsx +10 -0
  95. package/templates/ui/shadcn-ui/src/components/ui/switch.tsx +33 -0
  96. package/templates/ui/shadcn-ui/src/components/ui/table.tsx +114 -0
  97. package/templates/ui/shadcn-ui/src/components/ui/tabs.tsx +90 -0
  98. package/templates/ui/shadcn-ui/src/components/ui/textarea.tsx +18 -0
  99. package/templates/ui/shadcn-ui/src/components/ui/toggle-group.tsx +87 -0
  100. package/templates/ui/shadcn-ui/src/components/ui/toggle.tsx +45 -0
  101. package/templates/ui/shadcn-ui/src/components/ui/tooltip.tsx +59 -0
  102. package/templates/ui/shadcn-ui/src/index.patch.css +0 -118
  103. package/templates/ui/shadcn-ui/src/runtime/PortalContainer.ts +8 -0
  104. package/templates/base/biome.json +0 -54
@@ -8,39 +8,39 @@
8
8
  "name": "base",
9
9
  "version": "0.1.0",
10
10
  "dependencies": {
11
- "@tailwindcss/vite": "^4.3.0",
12
- "@tanstack/react-query": "^5.100.14",
11
+ "@tailwindcss/vite": "^4.3.1",
12
+ "@tanstack/react-query": "^5.101.2",
13
13
  "@types/xrm": "^9.0.94",
14
14
  "react": "^19.2.7",
15
15
  "react-dom": "^19.2.7",
16
- "tailwindcss": "^4.3.0",
16
+ "tailwindcss": "^4.3.1",
17
17
  "zod": "^4.4.3",
18
18
  "zustand": "^5.0.14"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@eslint/js": "^10.0.1",
22
- "@tanstack/eslint-plugin-query": "^5.100.14",
23
- "@types/node": "^24.12.4",
24
- "@types/react": "^19.2.16",
22
+ "@tanstack/eslint-plugin-query": "^5.101.2",
23
+ "@types/node": "^22.20.0",
24
+ "@types/react": "^19.2.17",
25
25
  "@types/react-dom": "^19.2.3",
26
- "@vitejs/plugin-react": "^6.0.2",
27
- "eslint": "^10.4.1",
26
+ "@vitejs/plugin-react": "^6.0.3",
27
+ "eslint": "^10.6.0",
28
28
  "eslint-plugin-react-hooks": "^7.1.1",
29
- "eslint-plugin-react-refresh": "^0.5.2",
30
- "globals": "^17.6.0",
31
- "typescript": "~6.0.3",
32
- "typescript-eslint": "^8.60.1",
33
- "vite": "^8.0.16"
29
+ "eslint-plugin-react-refresh": "^0.5.3",
30
+ "globals": "^17.7.0",
31
+ "typescript": "^6.0.3",
32
+ "typescript-eslint": "^8.62.0",
33
+ "vite": "^8.1.0"
34
34
  }
35
35
  },
36
36
  "node_modules/@babel/code-frame": {
37
- "version": "7.29.0",
38
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
39
- "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
37
+ "version": "7.29.7",
38
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
39
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
40
40
  "dev": true,
41
41
  "license": "MIT",
42
42
  "dependencies": {
43
- "@babel/helper-validator-identifier": "^7.28.5",
43
+ "@babel/helper-validator-identifier": "^7.29.7",
44
44
  "js-tokens": "^4.0.0",
45
45
  "picocolors": "^1.1.1"
46
46
  },
@@ -49,9 +49,9 @@
49
49
  }
50
50
  },
51
51
  "node_modules/@babel/compat-data": {
52
- "version": "7.29.0",
53
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz",
54
- "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==",
52
+ "version": "7.29.7",
53
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
54
+ "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
55
55
  "dev": true,
56
56
  "license": "MIT",
57
57
  "engines": {
@@ -59,21 +59,21 @@
59
59
  }
60
60
  },
61
61
  "node_modules/@babel/core": {
62
- "version": "7.29.0",
63
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz",
64
- "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
62
+ "version": "7.29.7",
63
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
64
+ "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
65
65
  "dev": true,
66
66
  "license": "MIT",
67
67
  "dependencies": {
68
- "@babel/code-frame": "^7.29.0",
69
- "@babel/generator": "^7.29.0",
70
- "@babel/helper-compilation-targets": "^7.28.6",
71
- "@babel/helper-module-transforms": "^7.28.6",
72
- "@babel/helpers": "^7.28.6",
73
- "@babel/parser": "^7.29.0",
74
- "@babel/template": "^7.28.6",
75
- "@babel/traverse": "^7.29.0",
76
- "@babel/types": "^7.29.0",
68
+ "@babel/code-frame": "^7.29.7",
69
+ "@babel/generator": "^7.29.7",
70
+ "@babel/helper-compilation-targets": "^7.29.7",
71
+ "@babel/helper-module-transforms": "^7.29.7",
72
+ "@babel/helpers": "^7.29.7",
73
+ "@babel/parser": "^7.29.7",
74
+ "@babel/template": "^7.29.7",
75
+ "@babel/traverse": "^7.29.7",
76
+ "@babel/types": "^7.29.7",
77
77
  "@jridgewell/remapping": "^2.3.5",
78
78
  "convert-source-map": "^2.0.0",
79
79
  "debug": "^4.1.0",
@@ -100,14 +100,14 @@
100
100
  }
101
101
  },
102
102
  "node_modules/@babel/generator": {
103
- "version": "7.29.1",
104
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz",
105
- "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==",
103
+ "version": "7.29.7",
104
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
105
+ "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
106
106
  "dev": true,
107
107
  "license": "MIT",
108
108
  "dependencies": {
109
- "@babel/parser": "^7.29.0",
110
- "@babel/types": "^7.29.0",
109
+ "@babel/parser": "^7.29.7",
110
+ "@babel/types": "^7.29.7",
111
111
  "@jridgewell/gen-mapping": "^0.3.12",
112
112
  "@jridgewell/trace-mapping": "^0.3.28",
113
113
  "jsesc": "^3.0.2"
@@ -117,14 +117,14 @@
117
117
  }
118
118
  },
119
119
  "node_modules/@babel/helper-compilation-targets": {
120
- "version": "7.28.6",
121
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz",
122
- "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==",
120
+ "version": "7.29.7",
121
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
122
+ "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
123
123
  "dev": true,
124
124
  "license": "MIT",
125
125
  "dependencies": {
126
- "@babel/compat-data": "^7.28.6",
127
- "@babel/helper-validator-option": "^7.27.1",
126
+ "@babel/compat-data": "^7.29.7",
127
+ "@babel/helper-validator-option": "^7.29.7",
128
128
  "browserslist": "^4.24.0",
129
129
  "lru-cache": "^5.1.1",
130
130
  "semver": "^6.3.1"
@@ -144,9 +144,9 @@
144
144
  }
145
145
  },
146
146
  "node_modules/@babel/helper-globals": {
147
- "version": "7.28.0",
148
- "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
149
- "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
147
+ "version": "7.29.7",
148
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
149
+ "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
150
150
  "dev": true,
151
151
  "license": "MIT",
152
152
  "engines": {
@@ -154,29 +154,29 @@
154
154
  }
155
155
  },
156
156
  "node_modules/@babel/helper-module-imports": {
157
- "version": "7.28.6",
158
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz",
159
- "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==",
157
+ "version": "7.29.7",
158
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
159
+ "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
160
160
  "dev": true,
161
161
  "license": "MIT",
162
162
  "dependencies": {
163
- "@babel/traverse": "^7.28.6",
164
- "@babel/types": "^7.28.6"
163
+ "@babel/traverse": "^7.29.7",
164
+ "@babel/types": "^7.29.7"
165
165
  },
166
166
  "engines": {
167
167
  "node": ">=6.9.0"
168
168
  }
169
169
  },
170
170
  "node_modules/@babel/helper-module-transforms": {
171
- "version": "7.28.6",
172
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz",
173
- "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==",
171
+ "version": "7.29.7",
172
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
173
+ "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
174
174
  "dev": true,
175
175
  "license": "MIT",
176
176
  "dependencies": {
177
- "@babel/helper-module-imports": "^7.28.6",
178
- "@babel/helper-validator-identifier": "^7.28.5",
179
- "@babel/traverse": "^7.28.6"
177
+ "@babel/helper-module-imports": "^7.29.7",
178
+ "@babel/helper-validator-identifier": "^7.29.7",
179
+ "@babel/traverse": "^7.29.7"
180
180
  },
181
181
  "engines": {
182
182
  "node": ">=6.9.0"
@@ -186,9 +186,9 @@
186
186
  }
187
187
  },
188
188
  "node_modules/@babel/helper-string-parser": {
189
- "version": "7.27.1",
190
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
191
- "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
189
+ "version": "7.29.7",
190
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
191
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
192
192
  "dev": true,
193
193
  "license": "MIT",
194
194
  "engines": {
@@ -196,9 +196,9 @@
196
196
  }
197
197
  },
198
198
  "node_modules/@babel/helper-validator-identifier": {
199
- "version": "7.28.5",
200
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
201
- "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
199
+ "version": "7.29.7",
200
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
201
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
202
202
  "dev": true,
203
203
  "license": "MIT",
204
204
  "engines": {
@@ -206,9 +206,9 @@
206
206
  }
207
207
  },
208
208
  "node_modules/@babel/helper-validator-option": {
209
- "version": "7.27.1",
210
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
211
- "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
209
+ "version": "7.29.7",
210
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
211
+ "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
212
212
  "dev": true,
213
213
  "license": "MIT",
214
214
  "engines": {
@@ -216,27 +216,27 @@
216
216
  }
217
217
  },
218
218
  "node_modules/@babel/helpers": {
219
- "version": "7.28.6",
220
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.6.tgz",
221
- "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==",
219
+ "version": "7.29.7",
220
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
221
+ "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
222
222
  "dev": true,
223
223
  "license": "MIT",
224
224
  "dependencies": {
225
- "@babel/template": "^7.28.6",
226
- "@babel/types": "^7.28.6"
225
+ "@babel/template": "^7.29.7",
226
+ "@babel/types": "^7.29.7"
227
227
  },
228
228
  "engines": {
229
229
  "node": ">=6.9.0"
230
230
  }
231
231
  },
232
232
  "node_modules/@babel/parser": {
233
- "version": "7.29.0",
234
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
235
- "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
233
+ "version": "7.29.7",
234
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
235
+ "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
236
236
  "dev": true,
237
237
  "license": "MIT",
238
238
  "dependencies": {
239
- "@babel/types": "^7.29.0"
239
+ "@babel/types": "^7.29.7"
240
240
  },
241
241
  "bin": {
242
242
  "parser": "bin/babel-parser.js"
@@ -246,33 +246,33 @@
246
246
  }
247
247
  },
248
248
  "node_modules/@babel/template": {
249
- "version": "7.28.6",
250
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz",
251
- "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==",
249
+ "version": "7.29.7",
250
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
251
+ "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
252
252
  "dev": true,
253
253
  "license": "MIT",
254
254
  "dependencies": {
255
- "@babel/code-frame": "^7.28.6",
256
- "@babel/parser": "^7.28.6",
257
- "@babel/types": "^7.28.6"
255
+ "@babel/code-frame": "^7.29.7",
256
+ "@babel/parser": "^7.29.7",
257
+ "@babel/types": "^7.29.7"
258
258
  },
259
259
  "engines": {
260
260
  "node": ">=6.9.0"
261
261
  }
262
262
  },
263
263
  "node_modules/@babel/traverse": {
264
- "version": "7.29.0",
265
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz",
266
- "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==",
264
+ "version": "7.29.7",
265
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
266
+ "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
267
267
  "dev": true,
268
268
  "license": "MIT",
269
269
  "dependencies": {
270
- "@babel/code-frame": "^7.29.0",
271
- "@babel/generator": "^7.29.0",
272
- "@babel/helper-globals": "^7.28.0",
273
- "@babel/parser": "^7.29.0",
274
- "@babel/template": "^7.28.6",
275
- "@babel/types": "^7.29.0",
270
+ "@babel/code-frame": "^7.29.7",
271
+ "@babel/generator": "^7.29.7",
272
+ "@babel/helper-globals": "^7.29.7",
273
+ "@babel/parser": "^7.29.7",
274
+ "@babel/template": "^7.29.7",
275
+ "@babel/types": "^7.29.7",
276
276
  "debug": "^4.3.1"
277
277
  },
278
278
  "engines": {
@@ -280,34 +280,34 @@
280
280
  }
281
281
  },
282
282
  "node_modules/@babel/types": {
283
- "version": "7.29.0",
284
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
285
- "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
283
+ "version": "7.29.7",
284
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
285
+ "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
286
286
  "dev": true,
287
287
  "license": "MIT",
288
288
  "dependencies": {
289
- "@babel/helper-string-parser": "^7.27.1",
290
- "@babel/helper-validator-identifier": "^7.28.5"
289
+ "@babel/helper-string-parser": "^7.29.7",
290
+ "@babel/helper-validator-identifier": "^7.29.7"
291
291
  },
292
292
  "engines": {
293
293
  "node": ">=6.9.0"
294
294
  }
295
295
  },
296
296
  "node_modules/@emnapi/core": {
297
- "version": "1.10.0",
298
- "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
299
- "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
297
+ "version": "1.11.1",
298
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.11.1.tgz",
299
+ "integrity": "sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==",
300
300
  "license": "MIT",
301
301
  "optional": true,
302
302
  "dependencies": {
303
- "@emnapi/wasi-threads": "1.2.1",
303
+ "@emnapi/wasi-threads": "1.2.2",
304
304
  "tslib": "^2.4.0"
305
305
  }
306
306
  },
307
307
  "node_modules/@emnapi/runtime": {
308
- "version": "1.10.0",
309
- "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
310
- "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
308
+ "version": "1.11.1",
309
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.1.tgz",
310
+ "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
311
311
  "license": "MIT",
312
312
  "optional": true,
313
313
  "dependencies": {
@@ -315,9 +315,9 @@
315
315
  }
316
316
  },
317
317
  "node_modules/@emnapi/wasi-threads": {
318
- "version": "1.2.1",
319
- "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
320
- "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
318
+ "version": "1.2.2",
319
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.2.tgz",
320
+ "integrity": "sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==",
321
321
  "license": "MIT",
322
322
  "optional": true,
323
323
  "dependencies": {
@@ -537,13 +537,13 @@
537
537
  }
538
538
  },
539
539
  "node_modules/@napi-rs/wasm-runtime": {
540
- "version": "1.1.4",
541
- "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.4.tgz",
542
- "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
540
+ "version": "1.1.6",
541
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz",
542
+ "integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==",
543
543
  "license": "MIT",
544
544
  "optional": true,
545
545
  "dependencies": {
546
- "@tybys/wasm-util": "^0.10.1"
546
+ "@tybys/wasm-util": "^0.10.3"
547
547
  },
548
548
  "funding": {
549
549
  "type": "github",
@@ -555,18 +555,18 @@
555
555
  }
556
556
  },
557
557
  "node_modules/@oxc-project/types": {
558
- "version": "0.133.0",
559
- "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.133.0.tgz",
560
- "integrity": "sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==",
558
+ "version": "0.137.0",
559
+ "resolved": "https://registry.npmjs.org/@oxc-project/types/-/types-0.137.0.tgz",
560
+ "integrity": "sha512-WT+Gb24i8hmvo85AIv2oEYouEXkRlKAlT9WaCa3TfLgNCN+GhrJOGZuIlMouAh38Qe4QOx26eUOVsq70qXrywA==",
561
561
  "license": "MIT",
562
562
  "funding": {
563
563
  "url": "https://github.com/sponsors/Boshen"
564
564
  }
565
565
  },
566
566
  "node_modules/@rolldown/binding-android-arm64": {
567
- "version": "1.0.3",
568
- "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
569
- "integrity": "sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==",
567
+ "version": "1.1.3",
568
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.1.3.tgz",
569
+ "integrity": "sha512-DT6Z3PhvioeHMvxo+xHc3KtqggrI7CCTXCmC2h/5zUlp5jVitv7XEy+9q5/7v8IolhlioawpMo8Kg0EEBy7J0g==",
570
570
  "cpu": [
571
571
  "arm64"
572
572
  ],
@@ -580,9 +580,9 @@
580
580
  }
581
581
  },
582
582
  "node_modules/@rolldown/binding-darwin-arm64": {
583
- "version": "1.0.3",
584
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.0.3.tgz",
585
- "integrity": "sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==",
583
+ "version": "1.1.3",
584
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-arm64/-/binding-darwin-arm64-1.1.3.tgz",
585
+ "integrity": "sha512-0NwgwsjM7LrsuVnXMK3koTpagBNOhloc/BNjKqZjv4V5zI5r13qx69uVhRx+o5Z0yy4Hzq+lpy7TAgUG/ocvrw==",
586
586
  "cpu": [
587
587
  "arm64"
588
588
  ],
@@ -596,9 +596,9 @@
596
596
  }
597
597
  },
598
598
  "node_modules/@rolldown/binding-darwin-x64": {
599
- "version": "1.0.3",
600
- "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.0.3.tgz",
601
- "integrity": "sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==",
599
+ "version": "1.1.3",
600
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-darwin-x64/-/binding-darwin-x64-1.1.3.tgz",
601
+ "integrity": "sha512-YtiBp4disu6V560loT6PjMdiRaWmVvDNrUunAalbiFx2ggeJwxdAsgZMcoGP17uyAsTwAj5V1niksxlHnVQ1Sw==",
602
602
  "cpu": [
603
603
  "x64"
604
604
  ],
@@ -612,9 +612,9 @@
612
612
  }
613
613
  },
614
614
  "node_modules/@rolldown/binding-freebsd-x64": {
615
- "version": "1.0.3",
616
- "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.0.3.tgz",
617
- "integrity": "sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==",
615
+ "version": "1.1.3",
616
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-freebsd-x64/-/binding-freebsd-x64-1.1.3.tgz",
617
+ "integrity": "sha512-yD3EkEdXk2LypPxnf/kSZHirarsI8gcPzc62SukhR9VJTyvV+F9Q/GxWNuCojc7sXyuVC4DxRGhdDK4X8VSsbw==",
618
618
  "cpu": [
619
619
  "x64"
620
620
  ],
@@ -628,9 +628,9 @@
628
628
  }
629
629
  },
630
630
  "node_modules/@rolldown/binding-linux-arm-gnueabihf": {
631
- "version": "1.0.3",
632
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.0.3.tgz",
633
- "integrity": "sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==",
631
+ "version": "1.1.3",
632
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm-gnueabihf/-/binding-linux-arm-gnueabihf-1.1.3.tgz",
633
+ "integrity": "sha512-c+8vieQbsD7HNAHKIA34w0GJ9FedFFuJGD+7E6vz7Q3uqAIugL5p45fhlsj4UaAsHpcmlqugBWMhA0/j7o0sIg==",
634
634
  "cpu": [
635
635
  "arm"
636
636
  ],
@@ -644,15 +644,12 @@
644
644
  }
645
645
  },
646
646
  "node_modules/@rolldown/binding-linux-arm64-gnu": {
647
- "version": "1.0.3",
648
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.0.3.tgz",
649
- "integrity": "sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==",
647
+ "version": "1.1.3",
648
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-gnu/-/binding-linux-arm64-gnu-1.1.3.tgz",
649
+ "integrity": "sha512-50jD0uUwLvur7Zz9LHz17kaAdTPjn5wN93hEgjvmYFRZwiR7ZJYovTd5ipyWJDAnXKvZ+wgc+/Ika6dwSF5OcA==",
650
650
  "cpu": [
651
651
  "arm64"
652
652
  ],
653
- "libc": [
654
- "glibc"
655
- ],
656
653
  "license": "MIT",
657
654
  "optional": true,
658
655
  "os": [
@@ -663,15 +660,12 @@
663
660
  }
664
661
  },
665
662
  "node_modules/@rolldown/binding-linux-arm64-musl": {
666
- "version": "1.0.3",
667
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.0.3.tgz",
668
- "integrity": "sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==",
663
+ "version": "1.1.3",
664
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-arm64-musl/-/binding-linux-arm64-musl-1.1.3.tgz",
665
+ "integrity": "sha512-BO9+oPL8K9poZJBfYPsXNtYjPE5uM3qeehT3aFcW4LITOl+iSqhp0abzjR2nWBUNjIZeKXjAEWBZ64WjNoHd6w==",
669
666
  "cpu": [
670
667
  "arm64"
671
668
  ],
672
- "libc": [
673
- "musl"
674
- ],
675
669
  "license": "MIT",
676
670
  "optional": true,
677
671
  "os": [
@@ -682,15 +676,12 @@
682
676
  }
683
677
  },
684
678
  "node_modules/@rolldown/binding-linux-ppc64-gnu": {
685
- "version": "1.0.3",
686
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.0.3.tgz",
687
- "integrity": "sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==",
679
+ "version": "1.1.3",
680
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-ppc64-gnu/-/binding-linux-ppc64-gnu-1.1.3.tgz",
681
+ "integrity": "sha512-f3VpLB1vQ0Eo6ecr/6cekLnvYMFF4YBFoVGkfkvPLq1bAkbAwHYQPZKoAmG6OJyTcxxoC+AvezGx/S1obNC0Mw==",
688
682
  "cpu": [
689
683
  "ppc64"
690
684
  ],
691
- "libc": [
692
- "glibc"
693
- ],
694
685
  "license": "MIT",
695
686
  "optional": true,
696
687
  "os": [
@@ -701,15 +692,12 @@
701
692
  }
702
693
  },
703
694
  "node_modules/@rolldown/binding-linux-s390x-gnu": {
704
- "version": "1.0.3",
705
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.0.3.tgz",
706
- "integrity": "sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==",
695
+ "version": "1.1.3",
696
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-s390x-gnu/-/binding-linux-s390x-gnu-1.1.3.tgz",
697
+ "integrity": "sha512-AmurZ26Pqx/RI9N1gzEOCklkKXl927yjfXWUUS0O7Puh8ARM/Ob8qfrD3qnWksScdw6cSrW5PSHE9DyLu7+PtA==",
707
698
  "cpu": [
708
699
  "s390x"
709
700
  ],
710
- "libc": [
711
- "glibc"
712
- ],
713
701
  "license": "MIT",
714
702
  "optional": true,
715
703
  "os": [
@@ -720,15 +708,12 @@
720
708
  }
721
709
  },
722
710
  "node_modules/@rolldown/binding-linux-x64-gnu": {
723
- "version": "1.0.3",
724
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.0.3.tgz",
725
- "integrity": "sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==",
711
+ "version": "1.1.3",
712
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-gnu/-/binding-linux-x64-gnu-1.1.3.tgz",
713
+ "integrity": "sha512-JJpqs8bRGITDOdbkNKnlojzBabbOHrqjSvDr0IVsZObE1lBcPjxItUEY9eWIDbxaJ3cGrXPWGfGkIxFijg/URg==",
726
714
  "cpu": [
727
715
  "x64"
728
716
  ],
729
- "libc": [
730
- "glibc"
731
- ],
732
717
  "license": "MIT",
733
718
  "optional": true,
734
719
  "os": [
@@ -739,15 +724,12 @@
739
724
  }
740
725
  },
741
726
  "node_modules/@rolldown/binding-linux-x64-musl": {
742
- "version": "1.0.3",
743
- "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.0.3.tgz",
744
- "integrity": "sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==",
727
+ "version": "1.1.3",
728
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-linux-x64-musl/-/binding-linux-x64-musl-1.1.3.tgz",
729
+ "integrity": "sha512-rSJcdjPxzA/by/6/rYs+v+bXU7UjvnbUWz8MJb6kh6+knqB1dCrtHg0uu7C/4haqJvqdkYHQ5IGn+tCH9GLW/g==",
745
730
  "cpu": [
746
731
  "x64"
747
732
  ],
748
- "libc": [
749
- "musl"
750
- ],
751
733
  "license": "MIT",
752
734
  "optional": true,
753
735
  "os": [
@@ -758,9 +740,9 @@
758
740
  }
759
741
  },
760
742
  "node_modules/@rolldown/binding-openharmony-arm64": {
761
- "version": "1.0.3",
762
- "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.0.3.tgz",
763
- "integrity": "sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==",
743
+ "version": "1.1.3",
744
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-openharmony-arm64/-/binding-openharmony-arm64-1.1.3.tgz",
745
+ "integrity": "sha512-hQ3/PYkDJICgevvyNcVrihVeqq7k1Pp3VZ9lY+dauAYUJKO+auqApvANhvR1An9BhmqYKvW2Mu1F9u4DXSMLxQ==",
764
746
  "cpu": [
765
747
  "arm64"
766
748
  ],
@@ -774,27 +756,27 @@
774
756
  }
775
757
  },
776
758
  "node_modules/@rolldown/binding-wasm32-wasi": {
777
- "version": "1.0.3",
778
- "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.0.3.tgz",
779
- "integrity": "sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==",
759
+ "version": "1.1.3",
760
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-wasm32-wasi/-/binding-wasm32-wasi-1.1.3.tgz",
761
+ "integrity": "sha512-Elcv/BtML9lXrV6JuKITc/grN2kYV9gjsQpW8Jfw4ioK0TOkjBjye0nnyqQNy9STNaI20lXNaQBRrD5gSgR0Yg==",
780
762
  "cpu": [
781
763
  "wasm32"
782
764
  ],
783
765
  "license": "MIT",
784
766
  "optional": true,
785
767
  "dependencies": {
786
- "@emnapi/core": "1.10.0",
787
- "@emnapi/runtime": "1.10.0",
788
- "@napi-rs/wasm-runtime": "^1.1.4"
768
+ "@emnapi/core": "1.11.1",
769
+ "@emnapi/runtime": "1.11.1",
770
+ "@napi-rs/wasm-runtime": "^1.1.6"
789
771
  },
790
772
  "engines": {
791
773
  "node": "^20.19.0 || >=22.12.0"
792
774
  }
793
775
  },
794
776
  "node_modules/@rolldown/binding-win32-arm64-msvc": {
795
- "version": "1.0.3",
796
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.0.3.tgz",
797
- "integrity": "sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==",
777
+ "version": "1.1.3",
778
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-arm64-msvc/-/binding-win32-arm64-msvc-1.1.3.tgz",
779
+ "integrity": "sha512-2DrEfhluH9yhiaFApmsjsjwrSYbNcY1oFTzYSP1a535jDbV98zCFanA/96TBUd0iDFcxGmw9QRExwGCXz3U+/g==",
798
780
  "cpu": [
799
781
  "arm64"
800
782
  ],
@@ -808,9 +790,9 @@
808
790
  }
809
791
  },
810
792
  "node_modules/@rolldown/binding-win32-x64-msvc": {
811
- "version": "1.0.3",
812
- "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.0.3.tgz",
813
- "integrity": "sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==",
793
+ "version": "1.1.3",
794
+ "resolved": "https://registry.npmjs.org/@rolldown/binding-win32-x64-msvc/-/binding-win32-x64-msvc-1.1.3.tgz",
795
+ "integrity": "sha512-OL4OMk7UPXOeVGGd3qo5zJyPIljf4AFgk5QAkPPS+OoLuOOozhuaQGC18MxVTnw/06q93gShAJzlwnSCY9YtqA==",
814
796
  "cpu": [
815
797
  "x64"
816
798
  ],
@@ -830,47 +812,47 @@
830
812
  "license": "MIT"
831
813
  },
832
814
  "node_modules/@tailwindcss/node": {
833
- "version": "4.3.0",
834
- "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.0.tgz",
835
- "integrity": "sha512-aFb4gUhFOgdh9AXo4IzBEOzBkkAxm9VigwDJnMIYv3lcfXCJVesNfbEaBl4BNgVRyid92AmdviqwBUBRKSeY3g==",
815
+ "version": "4.3.1",
816
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.1.tgz",
817
+ "integrity": "sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==",
836
818
  "license": "MIT",
837
819
  "dependencies": {
838
820
  "@jridgewell/remapping": "^2.3.5",
839
- "enhanced-resolve": "^5.21.0",
840
- "jiti": "^2.6.1",
821
+ "enhanced-resolve": "5.21.6",
822
+ "jiti": "^2.7.0",
841
823
  "lightningcss": "1.32.0",
842
824
  "magic-string": "^0.30.21",
843
825
  "source-map-js": "^1.2.1",
844
- "tailwindcss": "4.3.0"
826
+ "tailwindcss": "4.3.1"
845
827
  }
846
828
  },
847
829
  "node_modules/@tailwindcss/oxide": {
848
- "version": "4.3.0",
849
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.0.tgz",
850
- "integrity": "sha512-F7HZGBeN9I0/AuuJS5PwcD8xayx5ri5GhjYUDBEVYUkexyA/giwbDNjRVrxSezE3T250OU2K/wp/ltWx3UOefg==",
830
+ "version": "4.3.1",
831
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.1.tgz",
832
+ "integrity": "sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==",
851
833
  "license": "MIT",
852
834
  "engines": {
853
835
  "node": ">= 20"
854
836
  },
855
837
  "optionalDependencies": {
856
- "@tailwindcss/oxide-android-arm64": "4.3.0",
857
- "@tailwindcss/oxide-darwin-arm64": "4.3.0",
858
- "@tailwindcss/oxide-darwin-x64": "4.3.0",
859
- "@tailwindcss/oxide-freebsd-x64": "4.3.0",
860
- "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.0",
861
- "@tailwindcss/oxide-linux-arm64-gnu": "4.3.0",
862
- "@tailwindcss/oxide-linux-arm64-musl": "4.3.0",
863
- "@tailwindcss/oxide-linux-x64-gnu": "4.3.0",
864
- "@tailwindcss/oxide-linux-x64-musl": "4.3.0",
865
- "@tailwindcss/oxide-wasm32-wasi": "4.3.0",
866
- "@tailwindcss/oxide-win32-arm64-msvc": "4.3.0",
867
- "@tailwindcss/oxide-win32-x64-msvc": "4.3.0"
838
+ "@tailwindcss/oxide-android-arm64": "4.3.1",
839
+ "@tailwindcss/oxide-darwin-arm64": "4.3.1",
840
+ "@tailwindcss/oxide-darwin-x64": "4.3.1",
841
+ "@tailwindcss/oxide-freebsd-x64": "4.3.1",
842
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.1",
843
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.3.1",
844
+ "@tailwindcss/oxide-linux-arm64-musl": "4.3.1",
845
+ "@tailwindcss/oxide-linux-x64-gnu": "4.3.1",
846
+ "@tailwindcss/oxide-linux-x64-musl": "4.3.1",
847
+ "@tailwindcss/oxide-wasm32-wasi": "4.3.1",
848
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.3.1",
849
+ "@tailwindcss/oxide-win32-x64-msvc": "4.3.1"
868
850
  }
869
851
  },
870
852
  "node_modules/@tailwindcss/oxide-android-arm64": {
871
- "version": "4.3.0",
872
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.0.tgz",
873
- "integrity": "sha512-TJPiq67tKlLuObP6RkwvVGDoxCMBVtDgKkLfa/uyj7/FyxvQwHS+UOnVrXXgbEsfUaMgiVvC4KbJnRr26ho4Ng==",
853
+ "version": "4.3.1",
854
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.1.tgz",
855
+ "integrity": "sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==",
874
856
  "cpu": [
875
857
  "arm64"
876
858
  ],
@@ -884,9 +866,9 @@
884
866
  }
885
867
  },
886
868
  "node_modules/@tailwindcss/oxide-darwin-arm64": {
887
- "version": "4.3.0",
888
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.0.tgz",
889
- "integrity": "sha512-oMN/WZRb+SO37BmUElEgeEWuU8E/HXRkiODxJxLe1UTHVXLrdVSgfaJV7pSlhRGMSOiXLuxTIjfsF3wYvz8cgQ==",
869
+ "version": "4.3.1",
870
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.1.tgz",
871
+ "integrity": "sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==",
890
872
  "cpu": [
891
873
  "arm64"
892
874
  ],
@@ -900,9 +882,9 @@
900
882
  }
901
883
  },
902
884
  "node_modules/@tailwindcss/oxide-darwin-x64": {
903
- "version": "4.3.0",
904
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.0.tgz",
905
- "integrity": "sha512-N6CUmu4a6bKVADfw77p+iw6Yd9Q3OBhe0veaDX+QazfuVYlQsHfDgxBrsjQ/IW+zywL8mTrNd0SdJT/zgtvMdA==",
885
+ "version": "4.3.1",
886
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.1.tgz",
887
+ "integrity": "sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==",
906
888
  "cpu": [
907
889
  "x64"
908
890
  ],
@@ -916,9 +898,9 @@
916
898
  }
917
899
  },
918
900
  "node_modules/@tailwindcss/oxide-freebsd-x64": {
919
- "version": "4.3.0",
920
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.0.tgz",
921
- "integrity": "sha512-zDL5hBkQdH5C6MpqbK3gQAgP80tsMwSI26vjOzjJtNCMUo0lFgOItzHKBIupOZNQxt3ouPH7RPhvNhiTfCe5CQ==",
901
+ "version": "4.3.1",
902
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.1.tgz",
903
+ "integrity": "sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==",
922
904
  "cpu": [
923
905
  "x64"
924
906
  ],
@@ -932,9 +914,9 @@
932
914
  }
933
915
  },
934
916
  "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
935
- "version": "4.3.0",
936
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.0.tgz",
937
- "integrity": "sha512-R06HdNi7A7OEoMsf6d4tjZ71RCWnZQPHj2mnotSFURjNLdBC+cIgXQ7l81CqeoiQftjf6OOblxXMInMgN2VzMA==",
917
+ "version": "4.3.1",
918
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.1.tgz",
919
+ "integrity": "sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==",
938
920
  "cpu": [
939
921
  "arm"
940
922
  ],
@@ -948,15 +930,12 @@
948
930
  }
949
931
  },
950
932
  "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
951
- "version": "4.3.0",
952
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.0.tgz",
953
- "integrity": "sha512-qTJHELX8jetjhRQHCLilkVLmybpzNQAtaI/gaoVoidn/ufbNDbAo8KlK2J+yPoc8wQxvDxCmh/5lr8nC1+lTbg==",
933
+ "version": "4.3.1",
934
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.1.tgz",
935
+ "integrity": "sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==",
954
936
  "cpu": [
955
937
  "arm64"
956
938
  ],
957
- "libc": [
958
- "glibc"
959
- ],
960
939
  "license": "MIT",
961
940
  "optional": true,
962
941
  "os": [
@@ -967,15 +946,12 @@
967
946
  }
968
947
  },
969
948
  "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
970
- "version": "4.3.0",
971
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.0.tgz",
972
- "integrity": "sha512-Z6sukiQsngnWO+l39X4pPbiWT81IC+PLKF+PHxIlyZbGNb9MODfYlXEVlFvej5BOZInWX01kVyzeLvHsXhfczQ==",
949
+ "version": "4.3.1",
950
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.1.tgz",
951
+ "integrity": "sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==",
973
952
  "cpu": [
974
953
  "arm64"
975
954
  ],
976
- "libc": [
977
- "musl"
978
- ],
979
955
  "license": "MIT",
980
956
  "optional": true,
981
957
  "os": [
@@ -986,15 +962,12 @@
986
962
  }
987
963
  },
988
964
  "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
989
- "version": "4.3.0",
990
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.0.tgz",
991
- "integrity": "sha512-DRNdQRpSGzRGfARVuVkxvM8Q12nh19l4BF/G7zGA1oe+9wcC6saFBHTISrpIcKzhiXtSrlSrluCfvMuledoCTQ==",
965
+ "version": "4.3.1",
966
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.1.tgz",
967
+ "integrity": "sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==",
992
968
  "cpu": [
993
969
  "x64"
994
970
  ],
995
- "libc": [
996
- "glibc"
997
- ],
998
971
  "license": "MIT",
999
972
  "optional": true,
1000
973
  "os": [
@@ -1005,15 +978,12 @@
1005
978
  }
1006
979
  },
1007
980
  "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1008
- "version": "4.3.0",
1009
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.0.tgz",
1010
- "integrity": "sha512-Z0IADbDo8bh6I7h2IQMx601AdXBLfFpEdUotft86evd/8ZPflZe9COPO8Q1vw+pfLWIUo9zN/JGZvwuAJqduqg==",
981
+ "version": "4.3.1",
982
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.1.tgz",
983
+ "integrity": "sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==",
1011
984
  "cpu": [
1012
985
  "x64"
1013
986
  ],
1014
- "libc": [
1015
- "musl"
1016
- ],
1017
987
  "license": "MIT",
1018
988
  "optional": true,
1019
989
  "os": [
@@ -1024,9 +994,9 @@
1024
994
  }
1025
995
  },
1026
996
  "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1027
- "version": "4.3.0",
1028
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.0.tgz",
1029
- "integrity": "sha512-HNZGOUxEmElksYR7S6sC5jTeNGpobAsy9u7Gu0AskJ8/20FR9GqebUyB+HBcU/ax6BHuiuJi+Oda4B+YX6H1yA==",
997
+ "version": "4.3.1",
998
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.1.tgz",
999
+ "integrity": "sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==",
1030
1000
  "bundleDependencies": [
1031
1001
  "@napi-rs/wasm-runtime",
1032
1002
  "@emnapi/core",
@@ -1045,77 +1015,17 @@
1045
1015
  "@emnapi/runtime": "^1.10.0",
1046
1016
  "@emnapi/wasi-threads": "^1.2.1",
1047
1017
  "@napi-rs/wasm-runtime": "^1.1.4",
1048
- "@tybys/wasm-util": "^0.10.1",
1018
+ "@tybys/wasm-util": "^0.10.2",
1049
1019
  "tslib": "^2.8.1"
1050
1020
  },
1051
1021
  "engines": {
1052
1022
  "node": ">=14.0.0"
1053
1023
  }
1054
1024
  },
1055
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": {
1056
- "version": "1.10.0",
1057
- "inBundle": true,
1058
- "license": "MIT",
1059
- "optional": true,
1060
- "dependencies": {
1061
- "@emnapi/wasi-threads": "1.2.1",
1062
- "tslib": "^2.4.0"
1063
- }
1064
- },
1065
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": {
1066
- "version": "1.10.0",
1067
- "inBundle": true,
1068
- "license": "MIT",
1069
- "optional": true,
1070
- "dependencies": {
1071
- "tslib": "^2.4.0"
1072
- }
1073
- },
1074
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
1075
- "version": "1.2.1",
1076
- "inBundle": true,
1077
- "license": "MIT",
1078
- "optional": true,
1079
- "dependencies": {
1080
- "tslib": "^2.4.0"
1081
- }
1082
- },
1083
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@napi-rs/wasm-runtime": {
1084
- "version": "1.1.4",
1085
- "inBundle": true,
1086
- "license": "MIT",
1087
- "optional": true,
1088
- "dependencies": {
1089
- "@tybys/wasm-util": "^0.10.1"
1090
- },
1091
- "funding": {
1092
- "type": "github",
1093
- "url": "https://github.com/sponsors/Brooooooklyn"
1094
- },
1095
- "peerDependencies": {
1096
- "@emnapi/core": "^1.7.1",
1097
- "@emnapi/runtime": "^1.7.1"
1098
- }
1099
- },
1100
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@tybys/wasm-util": {
1101
- "version": "0.10.1",
1102
- "inBundle": true,
1103
- "license": "MIT",
1104
- "optional": true,
1105
- "dependencies": {
1106
- "tslib": "^2.4.0"
1107
- }
1108
- },
1109
- "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/tslib": {
1110
- "version": "2.8.1",
1111
- "inBundle": true,
1112
- "license": "0BSD",
1113
- "optional": true
1114
- },
1115
1025
  "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1116
- "version": "4.3.0",
1117
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.0.tgz",
1118
- "integrity": "sha512-Pe+RPVTi1T+qymuuRpcdvwSVZjnll/f7n8gBxMMh3xLTctMDKqpdfGimbMyioqtLhUYZxdJ9wGNhV7MKHvgZsQ==",
1026
+ "version": "4.3.1",
1027
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.1.tgz",
1028
+ "integrity": "sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==",
1119
1029
  "cpu": [
1120
1030
  "arm64"
1121
1031
  ],
@@ -1129,9 +1039,9 @@
1129
1039
  }
1130
1040
  },
1131
1041
  "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1132
- "version": "4.3.0",
1133
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.0.tgz",
1134
- "integrity": "sha512-Mvrf2kXW/yeW/OTezZlCGOirXRcUuLIBx/5Y12BaPM7wJoryG6dfS/NJL8aBPqtTEx/Vm4T4vKzFUcKDT+TKUA==",
1042
+ "version": "4.3.1",
1043
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.1.tgz",
1044
+ "integrity": "sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==",
1135
1045
  "cpu": [
1136
1046
  "x64"
1137
1047
  ],
@@ -1145,23 +1055,23 @@
1145
1055
  }
1146
1056
  },
1147
1057
  "node_modules/@tailwindcss/vite": {
1148
- "version": "4.3.0",
1149
- "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.0.tgz",
1150
- "integrity": "sha512-t6J3OrB5Fc0ExuhohouH0fWUGMYL6PTLhW+E7zIk/pdbnJARZDCwjBznFnkh5ynRnIRSI4YjtTH0t6USjJISrw==",
1058
+ "version": "4.3.1",
1059
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.1.tgz",
1060
+ "integrity": "sha512-hItDHuIIlEV61R+faXu66s1K36aTurO/Qw0e45Vskz57gXl9pWOT6eg3zmcEui6CZXddbN7zd41bwmvag4JGwQ==",
1151
1061
  "license": "MIT",
1152
1062
  "dependencies": {
1153
- "@tailwindcss/node": "4.3.0",
1154
- "@tailwindcss/oxide": "4.3.0",
1155
- "tailwindcss": "4.3.0"
1063
+ "@tailwindcss/node": "4.3.1",
1064
+ "@tailwindcss/oxide": "4.3.1",
1065
+ "tailwindcss": "4.3.1"
1156
1066
  },
1157
1067
  "peerDependencies": {
1158
1068
  "vite": "^5.2.0 || ^6 || ^7 || ^8"
1159
1069
  }
1160
1070
  },
1161
1071
  "node_modules/@tanstack/eslint-plugin-query": {
1162
- "version": "5.100.14",
1163
- "resolved": "https://registry.npmjs.org/@tanstack/eslint-plugin-query/-/eslint-plugin-query-5.100.14.tgz",
1164
- "integrity": "sha512-NbpiBCmeHTRuVHeV5+U+1bzmxyTW5Dzp2sCeE6Hx+ZJTJWFK9dsm8VZmRc7LQP9/ZORsF620PvgUk67AwiBo4A==",
1072
+ "version": "5.101.2",
1073
+ "resolved": "https://registry.npmjs.org/@tanstack/eslint-plugin-query/-/eslint-plugin-query-5.101.2.tgz",
1074
+ "integrity": "sha512-cPE99s3XZwlObfn8lCezT4j4JLj2CVzpIEywx0H4hzfPsX/o9QhdwaOwcDXxrQAqx2ds7TbvTinxhB8B/ywb6w==",
1165
1075
  "dev": true,
1166
1076
  "license": "MIT",
1167
1077
  "dependencies": {
@@ -1182,9 +1092,9 @@
1182
1092
  }
1183
1093
  },
1184
1094
  "node_modules/@tanstack/query-core": {
1185
- "version": "5.100.14",
1186
- "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.100.14.tgz",
1187
- "integrity": "sha512-5X41dGpxgeaHISCRW2oYwcSycZeULZzAunaudXT9ov1KOTj9xwt0CH6hbwqP1/z74ZWF7rYFnDpyYH07XFcZew==",
1095
+ "version": "5.101.2",
1096
+ "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.101.2.tgz",
1097
+ "integrity": "sha512-hH5MLoJhF7KaIGd7q3xTXGXvslI+GYlM1Z/35aSHHWaCJWB7XvTSHYuV3eM7tw+aE0mT/xMro4M4Q9rCGHT0lw==",
1188
1098
  "license": "MIT",
1189
1099
  "funding": {
1190
1100
  "type": "github",
@@ -1192,12 +1102,12 @@
1192
1102
  }
1193
1103
  },
1194
1104
  "node_modules/@tanstack/react-query": {
1195
- "version": "5.100.14",
1196
- "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.100.14.tgz",
1197
- "integrity": "sha512-oOr6aRdSFEwWhzxEkD/9ZcItM3+LjBSkeVmadWKwUssAHTsqd/7bOjWrX4AbvEkoEhgAxzN0Xk6H/aYzXiYBAw==",
1105
+ "version": "5.101.2",
1106
+ "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.101.2.tgz",
1107
+ "integrity": "sha512-seDkr6kzGzX1okaaTtZPtgA688CDPlXUz1C6xSg0ESqn04Vuc8tlrYms1s3de+znBqhPVxFRfpAfUf+6XvfPWg==",
1198
1108
  "license": "MIT",
1199
1109
  "dependencies": {
1200
- "@tanstack/query-core": "5.100.14"
1110
+ "@tanstack/query-core": "5.101.2"
1201
1111
  },
1202
1112
  "funding": {
1203
1113
  "type": "github",
@@ -1208,9 +1118,9 @@
1208
1118
  }
1209
1119
  },
1210
1120
  "node_modules/@tybys/wasm-util": {
1211
- "version": "0.10.2",
1212
- "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.2.tgz",
1213
- "integrity": "sha512-RoBvJ2X0wuKlWFIjrwffGw1IqZHKQqzIchKaadZZfnNpsAYp2mM0h36JtPCjNDAHGgYez/15uMBpfGwchhiMgg==",
1121
+ "version": "0.10.3",
1122
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
1123
+ "integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
1214
1124
  "license": "MIT",
1215
1125
  "optional": true,
1216
1126
  "dependencies": {
@@ -1239,19 +1149,19 @@
1239
1149
  "license": "MIT"
1240
1150
  },
1241
1151
  "node_modules/@types/node": {
1242
- "version": "24.12.4",
1243
- "resolved": "https://registry.npmjs.org/@types/node/-/node-24.12.4.tgz",
1244
- "integrity": "sha512-GUUEShf+PBCGW2KaXwcIt3Yk+e3pkKwWKb9GSyM9WQVE+ep2jzmHdGsHzu4wgcZy5fN9FBdVzjpBQsYlpfpgLA==",
1152
+ "version": "22.20.0",
1153
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.0.tgz",
1154
+ "integrity": "sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==",
1245
1155
  "devOptional": true,
1246
1156
  "license": "MIT",
1247
1157
  "dependencies": {
1248
- "undici-types": "~7.16.0"
1158
+ "undici-types": "~6.21.0"
1249
1159
  }
1250
1160
  },
1251
1161
  "node_modules/@types/react": {
1252
- "version": "19.2.16",
1253
- "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.16.tgz",
1254
- "integrity": "sha512-esJiCAnl0kfpNdE69f3So4WJUXy95dLZydX0KwK46riIHDzHM7O9Vtf9xCHW0PXIqvgqNrswl522kA/5yx+F4w==",
1162
+ "version": "19.2.17",
1163
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
1164
+ "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
1255
1165
  "devOptional": true,
1256
1166
  "license": "MIT",
1257
1167
  "dependencies": {
@@ -1275,17 +1185,17 @@
1275
1185
  "license": "MIT"
1276
1186
  },
1277
1187
  "node_modules/@typescript-eslint/eslint-plugin": {
1278
- "version": "8.60.1",
1279
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.60.1.tgz",
1280
- "integrity": "sha512-JQ4S5GB0tfjO8BuJ4fcX+HodkzJjYBV+7OJ+wLygaX7OGQ7FudyHL4NSCA6ob+w3Yn+5MkKIozOwQhXeM7opVg==",
1188
+ "version": "8.62.0",
1189
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.62.0.tgz",
1190
+ "integrity": "sha512-o+mpz7EYiMzXoySXiKmzlabIvTVqUuK5yLrAedRPRDA0IpPFMUV1IXt6OqljIxX/kumN6EjUYp41Hqelh6p/Dw==",
1281
1191
  "dev": true,
1282
1192
  "license": "MIT",
1283
1193
  "dependencies": {
1284
1194
  "@eslint-community/regexpp": "^4.12.2",
1285
- "@typescript-eslint/scope-manager": "8.60.1",
1286
- "@typescript-eslint/type-utils": "8.60.1",
1287
- "@typescript-eslint/utils": "8.60.1",
1288
- "@typescript-eslint/visitor-keys": "8.60.1",
1195
+ "@typescript-eslint/scope-manager": "8.62.0",
1196
+ "@typescript-eslint/type-utils": "8.62.0",
1197
+ "@typescript-eslint/utils": "8.62.0",
1198
+ "@typescript-eslint/visitor-keys": "8.62.0",
1289
1199
  "ignore": "^7.0.5",
1290
1200
  "natural-compare": "^1.4.0",
1291
1201
  "ts-api-utils": "^2.5.0"
@@ -1298,7 +1208,7 @@
1298
1208
  "url": "https://opencollective.com/typescript-eslint"
1299
1209
  },
1300
1210
  "peerDependencies": {
1301
- "@typescript-eslint/parser": "^8.60.1",
1211
+ "@typescript-eslint/parser": "^8.62.0",
1302
1212
  "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
1303
1213
  "typescript": ">=4.8.4 <6.1.0"
1304
1214
  }
@@ -1314,16 +1224,16 @@
1314
1224
  }
1315
1225
  },
1316
1226
  "node_modules/@typescript-eslint/parser": {
1317
- "version": "8.60.1",
1318
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.60.1.tgz",
1319
- "integrity": "sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==",
1227
+ "version": "8.62.0",
1228
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.62.0.tgz",
1229
+ "integrity": "sha512-dzHeT2gySzZtLDsuqxU9AkYgIsQoHAHtRBpOqM+Ofzx1Bwrd2RcCjQJ+6iQbsHOIR6NS33bF2W1k3blN1zLDrA==",
1320
1230
  "dev": true,
1321
1231
  "license": "MIT",
1322
1232
  "dependencies": {
1323
- "@typescript-eslint/scope-manager": "8.60.1",
1324
- "@typescript-eslint/types": "8.60.1",
1325
- "@typescript-eslint/typescript-estree": "8.60.1",
1326
- "@typescript-eslint/visitor-keys": "8.60.1",
1233
+ "@typescript-eslint/scope-manager": "8.62.0",
1234
+ "@typescript-eslint/types": "8.62.0",
1235
+ "@typescript-eslint/typescript-estree": "8.62.0",
1236
+ "@typescript-eslint/visitor-keys": "8.62.0",
1327
1237
  "debug": "^4.4.3"
1328
1238
  },
1329
1239
  "engines": {
@@ -1339,14 +1249,14 @@
1339
1249
  }
1340
1250
  },
1341
1251
  "node_modules/@typescript-eslint/project-service": {
1342
- "version": "8.60.1",
1343
- "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.60.1.tgz",
1344
- "integrity": "sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==",
1252
+ "version": "8.62.0",
1253
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.62.0.tgz",
1254
+ "integrity": "sha512-wexnCqiTg7BOGtbLDftYpRWlmLq4xfoMd7BKFR6Y75sZS3QmRKLdN3yWLhmIYgqMmP/OXWpj3H8odkb5nGURCQ==",
1345
1255
  "dev": true,
1346
1256
  "license": "MIT",
1347
1257
  "dependencies": {
1348
- "@typescript-eslint/tsconfig-utils": "^8.60.1",
1349
- "@typescript-eslint/types": "^8.60.1",
1258
+ "@typescript-eslint/tsconfig-utils": "^8.62.0",
1259
+ "@typescript-eslint/types": "^8.62.0",
1350
1260
  "debug": "^4.4.3"
1351
1261
  },
1352
1262
  "engines": {
@@ -1361,14 +1271,14 @@
1361
1271
  }
1362
1272
  },
1363
1273
  "node_modules/@typescript-eslint/scope-manager": {
1364
- "version": "8.60.1",
1365
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.60.1.tgz",
1366
- "integrity": "sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==",
1274
+ "version": "8.62.0",
1275
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.62.0.tgz",
1276
+ "integrity": "sha512-1lX38kNxXIRb8mEc3lbq5mdHq1Pf2+U0nFU65KfT18mtPxxl0fvjuEE92mHuXPuCtElJhOrddOpyMlM3Z0umEA==",
1367
1277
  "dev": true,
1368
1278
  "license": "MIT",
1369
1279
  "dependencies": {
1370
- "@typescript-eslint/types": "8.60.1",
1371
- "@typescript-eslint/visitor-keys": "8.60.1"
1280
+ "@typescript-eslint/types": "8.62.0",
1281
+ "@typescript-eslint/visitor-keys": "8.62.0"
1372
1282
  },
1373
1283
  "engines": {
1374
1284
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -1379,9 +1289,9 @@
1379
1289
  }
1380
1290
  },
1381
1291
  "node_modules/@typescript-eslint/tsconfig-utils": {
1382
- "version": "8.60.1",
1383
- "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.60.1.tgz",
1384
- "integrity": "sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==",
1292
+ "version": "8.62.0",
1293
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.62.0.tgz",
1294
+ "integrity": "sha512-y2GAdB6ykaXUvuspbYnizQc4oDDz0Tz/Yc7iWrXf9mx8vm/L/0vLHCe0tS2boG96Zy+DivnVDQ9ZUEWoHqqx1g==",
1385
1295
  "dev": true,
1386
1296
  "license": "MIT",
1387
1297
  "engines": {
@@ -1396,15 +1306,15 @@
1396
1306
  }
1397
1307
  },
1398
1308
  "node_modules/@typescript-eslint/type-utils": {
1399
- "version": "8.60.1",
1400
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.60.1.tgz",
1401
- "integrity": "sha512-sdwTrpjosW7ANQYJ39ZBF1ZyEMEGVB2UsikrserVM/30a/F1dTLnu9bGxEdosugyu5caigjLrR2qiD11asjI1A==",
1309
+ "version": "8.62.0",
1310
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.62.0.tgz",
1311
+ "integrity": "sha512-+g5O3j0w2ldzC86Pv6fvbO/xhAonbJFIdf/MKQ1d30gndlsVzUOE83ldfSE15Qrl9fhFjK6AovHs5Wpp6vx86w==",
1402
1312
  "dev": true,
1403
1313
  "license": "MIT",
1404
1314
  "dependencies": {
1405
- "@typescript-eslint/types": "8.60.1",
1406
- "@typescript-eslint/typescript-estree": "8.60.1",
1407
- "@typescript-eslint/utils": "8.60.1",
1315
+ "@typescript-eslint/types": "8.62.0",
1316
+ "@typescript-eslint/typescript-estree": "8.62.0",
1317
+ "@typescript-eslint/utils": "8.62.0",
1408
1318
  "debug": "^4.4.3",
1409
1319
  "ts-api-utils": "^2.5.0"
1410
1320
  },
@@ -1421,9 +1331,9 @@
1421
1331
  }
1422
1332
  },
1423
1333
  "node_modules/@typescript-eslint/types": {
1424
- "version": "8.60.1",
1425
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.60.1.tgz",
1426
- "integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
1334
+ "version": "8.62.0",
1335
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.62.0.tgz",
1336
+ "integrity": "sha512-KvAclkktORPvM54TgLgA4z9HIV1M8zOgw9ZVNXl9f/8dLYfXYX1wkMXP7qmabpijQRV5bHJLOmoyGQbLMaUYeg==",
1427
1337
  "dev": true,
1428
1338
  "license": "MIT",
1429
1339
  "engines": {
@@ -1435,16 +1345,16 @@
1435
1345
  }
1436
1346
  },
1437
1347
  "node_modules/@typescript-eslint/typescript-estree": {
1438
- "version": "8.60.1",
1439
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.60.1.tgz",
1440
- "integrity": "sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==",
1348
+ "version": "8.62.0",
1349
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.62.0.tgz",
1350
+ "integrity": "sha512-+hVbNxtW64pIcZWDPGbyaKF7vp2IBTVY5ma1blwwksrjdsbdqqEKvJWMGbBofei4F6Dovx1M0RJgoFeNu2279A==",
1441
1351
  "dev": true,
1442
1352
  "license": "MIT",
1443
1353
  "dependencies": {
1444
- "@typescript-eslint/project-service": "8.60.1",
1445
- "@typescript-eslint/tsconfig-utils": "8.60.1",
1446
- "@typescript-eslint/types": "8.60.1",
1447
- "@typescript-eslint/visitor-keys": "8.60.1",
1354
+ "@typescript-eslint/project-service": "8.62.0",
1355
+ "@typescript-eslint/tsconfig-utils": "8.62.0",
1356
+ "@typescript-eslint/types": "8.62.0",
1357
+ "@typescript-eslint/visitor-keys": "8.62.0",
1448
1358
  "debug": "^4.4.3",
1449
1359
  "minimatch": "^10.2.2",
1450
1360
  "semver": "^7.7.3",
@@ -1463,16 +1373,16 @@
1463
1373
  }
1464
1374
  },
1465
1375
  "node_modules/@typescript-eslint/utils": {
1466
- "version": "8.60.1",
1467
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.60.1.tgz",
1468
- "integrity": "sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==",
1376
+ "version": "8.62.0",
1377
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.62.0.tgz",
1378
+ "integrity": "sha512-82r66fi9zYwZ+mTq3vKgwjbZ1PVk/DJzrXFLpG6RnBbdvH8TEGVHIs9H4d2drhkOzf0syZuD/OZvvlu6GDbP4g==",
1469
1379
  "dev": true,
1470
1380
  "license": "MIT",
1471
1381
  "dependencies": {
1472
1382
  "@eslint-community/eslint-utils": "^4.9.1",
1473
- "@typescript-eslint/scope-manager": "8.60.1",
1474
- "@typescript-eslint/types": "8.60.1",
1475
- "@typescript-eslint/typescript-estree": "8.60.1"
1383
+ "@typescript-eslint/scope-manager": "8.62.0",
1384
+ "@typescript-eslint/types": "8.62.0",
1385
+ "@typescript-eslint/typescript-estree": "8.62.0"
1476
1386
  },
1477
1387
  "engines": {
1478
1388
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -1487,13 +1397,13 @@
1487
1397
  }
1488
1398
  },
1489
1399
  "node_modules/@typescript-eslint/visitor-keys": {
1490
- "version": "8.60.1",
1491
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.60.1.tgz",
1492
- "integrity": "sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==",
1400
+ "version": "8.62.0",
1401
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.62.0.tgz",
1402
+ "integrity": "sha512-CY3uyFSRbcQv3nnSv8S0+lDftMVz6P963PoRlxrV7ew/Md564g9ut60PYzdLM5qW4jFn93GBF+Soi90ISAN+GQ==",
1493
1403
  "dev": true,
1494
1404
  "license": "MIT",
1495
1405
  "dependencies": {
1496
- "@typescript-eslint/types": "8.60.1",
1406
+ "@typescript-eslint/types": "8.62.0",
1497
1407
  "eslint-visitor-keys": "^5.0.0"
1498
1408
  },
1499
1409
  "engines": {
@@ -1518,13 +1428,13 @@
1518
1428
  }
1519
1429
  },
1520
1430
  "node_modules/@vitejs/plugin-react": {
1521
- "version": "6.0.2",
1522
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.2.tgz",
1523
- "integrity": "sha512-DlSMqo4WhThw4vB8Mpn0Woe9J+Jfq1geJ61AKW0QEgLzGMNwtIMdxbDUzLxcun8W7NbJO0e2Jg/Nxm3cCSVzzg==",
1431
+ "version": "6.0.3",
1432
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-6.0.3.tgz",
1433
+ "integrity": "sha512-vmFvco5/QuC2f9Oj+wTk0+9XeDFkHxSamwZKYc7MxYwKICfvUvlMhqKI0VuICPltGqh1neqBKDvO4kes1ya8vg==",
1524
1434
  "dev": true,
1525
1435
  "license": "MIT",
1526
1436
  "dependencies": {
1527
- "@rolldown/pluginutils": "^1.0.0"
1437
+ "@rolldown/pluginutils": "^1.0.1"
1528
1438
  },
1529
1439
  "engines": {
1530
1440
  "node": "^20.19.0 || >=22.12.0"
@@ -1594,9 +1504,9 @@
1594
1504
  }
1595
1505
  },
1596
1506
  "node_modules/baseline-browser-mapping": {
1597
- "version": "2.10.0",
1598
- "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz",
1599
- "integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==",
1507
+ "version": "2.10.40",
1508
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.40.tgz",
1509
+ "integrity": "sha512-BSSLZ9/Cjjv7Gtj5B68ZzXcXUg8iOf3fme+FCuh8rC/Go+Kmh8cox7M3A8dolou16s64QjLPOSdngh7GxXvkSw==",
1600
1510
  "dev": true,
1601
1511
  "license": "Apache-2.0",
1602
1512
  "bin": {
@@ -1620,9 +1530,9 @@
1620
1530
  }
1621
1531
  },
1622
1532
  "node_modules/browserslist": {
1623
- "version": "4.28.1",
1624
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz",
1625
- "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
1533
+ "version": "4.28.4",
1534
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.4.tgz",
1535
+ "integrity": "sha512-MTc8i/x9jBQd1iMw2CFGS+rwMa07eYjLR0CCTLDACl9xhxy+nIs3KeML/biicXtk9JrZ6dnnTatmc7ErPXIxqw==",
1626
1536
  "dev": true,
1627
1537
  "funding": [
1628
1538
  {
@@ -1640,11 +1550,11 @@
1640
1550
  ],
1641
1551
  "license": "MIT",
1642
1552
  "dependencies": {
1643
- "baseline-browser-mapping": "^2.9.0",
1644
- "caniuse-lite": "^1.0.30001759",
1645
- "electron-to-chromium": "^1.5.263",
1646
- "node-releases": "^2.0.27",
1647
- "update-browserslist-db": "^1.2.0"
1553
+ "baseline-browser-mapping": "^2.10.38",
1554
+ "caniuse-lite": "^1.0.30001799",
1555
+ "electron-to-chromium": "^1.5.376",
1556
+ "node-releases": "^2.0.48",
1557
+ "update-browserslist-db": "^1.2.3"
1648
1558
  },
1649
1559
  "bin": {
1650
1560
  "browserslist": "cli.js"
@@ -1654,9 +1564,9 @@
1654
1564
  }
1655
1565
  },
1656
1566
  "node_modules/caniuse-lite": {
1657
- "version": "1.0.30001775",
1658
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001775.tgz",
1659
- "integrity": "sha512-s3Qv7Lht9zbVKE9XoTyRG6wVDCKdtOFIjBGg3+Yhn6JaytuNKPIjBMTMIY1AnOH3seL5mvF+x33oGAyK3hVt3A==",
1567
+ "version": "1.0.30001799",
1568
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
1569
+ "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
1660
1570
  "dev": true,
1661
1571
  "funding": [
1662
1572
  {
@@ -1738,16 +1648,16 @@
1738
1648
  }
1739
1649
  },
1740
1650
  "node_modules/electron-to-chromium": {
1741
- "version": "1.5.302",
1742
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.302.tgz",
1743
- "integrity": "sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==",
1651
+ "version": "1.5.380",
1652
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.380.tgz",
1653
+ "integrity": "sha512-W6d5AbuEoRayO447cqrg6lKJIlscgRnnxOZl/08kfV71BQDoEBC7Wwis68z87LjyK6f4kWyTaubuDbhHKrZkbA==",
1744
1654
  "dev": true,
1745
1655
  "license": "ISC"
1746
1656
  },
1747
1657
  "node_modules/enhanced-resolve": {
1748
- "version": "5.22.1",
1749
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.22.1.tgz",
1750
- "integrity": "sha512-6QEuw3zoX1SJQc7b87aBXke/no+mG2bTBgw29gWMQonLmpEkWoCAVkl+M49e48AZlWzxiDzDZzYdp6kobcyLww==",
1658
+ "version": "5.21.6",
1659
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.21.6.tgz",
1660
+ "integrity": "sha512-aNnGCvbJ/RIyWo1IuhNdVjnNF+EjH9wpzpNHt+ci/m9He9LJvUN8wrCcXjp9cWsGNAuvSpVFTx/vraAFQ8qGjQ==",
1751
1661
  "license": "MIT",
1752
1662
  "dependencies": {
1753
1663
  "graceful-fs": "^4.2.4",
@@ -1781,11 +1691,14 @@
1781
1691
  }
1782
1692
  },
1783
1693
  "node_modules/eslint": {
1784
- "version": "10.4.1",
1785
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.4.1.tgz",
1786
- "integrity": "sha512-AyIKhnOBuOAdueD7RB3xB+YeAWScb9jHsJBgH2Hcde8InP5JYhqrRR6iTMHyTEwgENK54Cp44e4v8BwNhsuHuw==",
1694
+ "version": "10.6.0",
1695
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.6.0.tgz",
1696
+ "integrity": "sha512-6lVbcqSodALYo+4ELD0heG6lFiFxnLMuLkiMi2qV8LMp54N8tE8FT1GMH+ev4Ti00nFjNze2+Su6DsV5OQW3Dg==",
1787
1697
  "dev": true,
1788
1698
  "license": "MIT",
1699
+ "workspaces": [
1700
+ "packages/*"
1701
+ ],
1789
1702
  "dependencies": {
1790
1703
  "@eslint-community/eslint-utils": "^4.8.0",
1791
1704
  "@eslint-community/regexpp": "^4.12.2",
@@ -1857,9 +1770,9 @@
1857
1770
  }
1858
1771
  },
1859
1772
  "node_modules/eslint-plugin-react-refresh": {
1860
- "version": "0.5.2",
1861
- "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.2.tgz",
1862
- "integrity": "sha512-hmgTH57GfzoTFjVN0yBwTggnsVUF2tcqi7RJZHqi9lIezSs4eFyAMktA68YD4r5kNw1mxyY4dmkyoFDb3FIqrA==",
1773
+ "version": "0.5.3",
1774
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.5.3.tgz",
1775
+ "integrity": "sha512-5EMmLCV98Pi4o/f/3DP/v/tNqLHMIc9I8LKClNDWhZ9JTho89/kQcitCXQBMG7sAfVRK0Ie3T2EDOzp1YXYiVA==",
1863
1776
  "dev": true,
1864
1777
  "license": "MIT",
1865
1778
  "peerDependencies": {
@@ -2115,9 +2028,9 @@
2115
2028
  }
2116
2029
  },
2117
2030
  "node_modules/globals": {
2118
- "version": "17.6.0",
2119
- "resolved": "https://registry.npmjs.org/globals/-/globals-17.6.0.tgz",
2120
- "integrity": "sha512-sepffkT8stwnIYbsMBpoCHJuJM5l98FUF2AnE07hfvE0m/qp3R586hw4jF4uadbhvg1ooIdzuu7CsfD2jzCaNA==",
2031
+ "version": "17.7.0",
2032
+ "resolved": "https://registry.npmjs.org/globals/-/globals-17.7.0.tgz",
2033
+ "integrity": "sha512-Czmyns5dUsq4seFBR/Kdydhmo8y9kC79hiSkPn0YcGtNnYWnrgt0vjrSjx9tspoDGWm2CMarffRuLjM4xUz8xg==",
2121
2034
  "dev": true,
2122
2035
  "license": "MIT",
2123
2036
  "engines": {
@@ -2201,9 +2114,9 @@
2201
2114
  "license": "ISC"
2202
2115
  },
2203
2116
  "node_modules/jiti": {
2204
- "version": "2.6.1",
2205
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
2206
- "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
2117
+ "version": "2.7.0",
2118
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.7.0.tgz",
2119
+ "integrity": "sha512-AC/7JofJvZGrrneWNaEnJeOLUx+JlGt7tNa0wZiRPT4MY1wmfKjt2+6O2p2uz2+skll8OZZmJMNqeke7kKbNgQ==",
2207
2120
  "license": "MIT",
2208
2121
  "bin": {
2209
2122
  "jiti": "lib/jiti-cli.mjs"
@@ -2423,9 +2336,6 @@
2423
2336
  "cpu": [
2424
2337
  "arm64"
2425
2338
  ],
2426
- "libc": [
2427
- "glibc"
2428
- ],
2429
2339
  "license": "MPL-2.0",
2430
2340
  "optional": true,
2431
2341
  "os": [
@@ -2446,9 +2356,6 @@
2446
2356
  "cpu": [
2447
2357
  "arm64"
2448
2358
  ],
2449
- "libc": [
2450
- "musl"
2451
- ],
2452
2359
  "license": "MPL-2.0",
2453
2360
  "optional": true,
2454
2361
  "os": [
@@ -2469,9 +2376,6 @@
2469
2376
  "cpu": [
2470
2377
  "x64"
2471
2378
  ],
2472
- "libc": [
2473
- "glibc"
2474
- ],
2475
2379
  "license": "MPL-2.0",
2476
2380
  "optional": true,
2477
2381
  "os": [
@@ -2492,9 +2396,6 @@
2492
2396
  "cpu": [
2493
2397
  "x64"
2494
2398
  ],
2495
- "libc": [
2496
- "musl"
2497
- ],
2498
2399
  "license": "MPL-2.0",
2499
2400
  "optional": true,
2500
2401
  "os": [
@@ -2632,11 +2533,14 @@
2632
2533
  "license": "MIT"
2633
2534
  },
2634
2535
  "node_modules/node-releases": {
2635
- "version": "2.0.27",
2636
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz",
2637
- "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
2536
+ "version": "2.0.50",
2537
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.50.tgz",
2538
+ "integrity": "sha512-J6l92tKHX6w8Jy5nO1Vuc01NoIiRGi/d6qBKVxh+IQ8Cr3b6HbVNfKiF8ZpFKufTwpwxMmce2W3iQZ861ZRyTg==",
2638
2539
  "dev": true,
2639
- "license": "MIT"
2540
+ "license": "MIT",
2541
+ "engines": {
2542
+ "node": ">=18"
2543
+ }
2640
2544
  },
2641
2545
  "node_modules/optionator": {
2642
2546
  "version": "0.9.4",
@@ -2796,12 +2700,12 @@
2796
2700
  }
2797
2701
  },
2798
2702
  "node_modules/rolldown": {
2799
- "version": "1.0.3",
2800
- "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
2801
- "integrity": "sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==",
2703
+ "version": "1.1.3",
2704
+ "resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.1.3.tgz",
2705
+ "integrity": "sha512-1F1eEtUBtFvcGm1HQ9TiUIUHPQG7mSAODrhIzjxoUEFuo8OcbrGLiVLkevNgj84TE4lnHvnumwFjhJO5Eu135g==",
2802
2706
  "license": "MIT",
2803
2707
  "dependencies": {
2804
- "@oxc-project/types": "=0.133.0",
2708
+ "@oxc-project/types": "=0.137.0",
2805
2709
  "@rolldown/pluginutils": "^1.0.0"
2806
2710
  },
2807
2711
  "bin": {
@@ -2811,21 +2715,21 @@
2811
2715
  "node": "^20.19.0 || >=22.12.0"
2812
2716
  },
2813
2717
  "optionalDependencies": {
2814
- "@rolldown/binding-android-arm64": "1.0.3",
2815
- "@rolldown/binding-darwin-arm64": "1.0.3",
2816
- "@rolldown/binding-darwin-x64": "1.0.3",
2817
- "@rolldown/binding-freebsd-x64": "1.0.3",
2818
- "@rolldown/binding-linux-arm-gnueabihf": "1.0.3",
2819
- "@rolldown/binding-linux-arm64-gnu": "1.0.3",
2820
- "@rolldown/binding-linux-arm64-musl": "1.0.3",
2821
- "@rolldown/binding-linux-ppc64-gnu": "1.0.3",
2822
- "@rolldown/binding-linux-s390x-gnu": "1.0.3",
2823
- "@rolldown/binding-linux-x64-gnu": "1.0.3",
2824
- "@rolldown/binding-linux-x64-musl": "1.0.3",
2825
- "@rolldown/binding-openharmony-arm64": "1.0.3",
2826
- "@rolldown/binding-wasm32-wasi": "1.0.3",
2827
- "@rolldown/binding-win32-arm64-msvc": "1.0.3",
2828
- "@rolldown/binding-win32-x64-msvc": "1.0.3"
2718
+ "@rolldown/binding-android-arm64": "1.1.3",
2719
+ "@rolldown/binding-darwin-arm64": "1.1.3",
2720
+ "@rolldown/binding-darwin-x64": "1.1.3",
2721
+ "@rolldown/binding-freebsd-x64": "1.1.3",
2722
+ "@rolldown/binding-linux-arm-gnueabihf": "1.1.3",
2723
+ "@rolldown/binding-linux-arm64-gnu": "1.1.3",
2724
+ "@rolldown/binding-linux-arm64-musl": "1.1.3",
2725
+ "@rolldown/binding-linux-ppc64-gnu": "1.1.3",
2726
+ "@rolldown/binding-linux-s390x-gnu": "1.1.3",
2727
+ "@rolldown/binding-linux-x64-gnu": "1.1.3",
2728
+ "@rolldown/binding-linux-x64-musl": "1.1.3",
2729
+ "@rolldown/binding-openharmony-arm64": "1.1.3",
2730
+ "@rolldown/binding-wasm32-wasi": "1.1.3",
2731
+ "@rolldown/binding-win32-arm64-msvc": "1.1.3",
2732
+ "@rolldown/binding-win32-x64-msvc": "1.1.3"
2829
2733
  }
2830
2734
  },
2831
2735
  "node_modules/scheduler": {
@@ -2880,9 +2784,9 @@
2880
2784
  }
2881
2785
  },
2882
2786
  "node_modules/tailwindcss": {
2883
- "version": "4.3.0",
2884
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.0.tgz",
2885
- "integrity": "sha512-y6nxMGB1nMW9R6k96e5gdIFzcfL/gTJRNaqGes1YvkLnPVXzWgbqFF2yLC0T8G774n24cx3Pe8XrKoniCOAH+Q==",
2787
+ "version": "4.3.1",
2788
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.1.tgz",
2789
+ "integrity": "sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==",
2886
2790
  "license": "MIT"
2887
2791
  },
2888
2792
  "node_modules/tapable": {
@@ -2962,16 +2866,16 @@
2962
2866
  }
2963
2867
  },
2964
2868
  "node_modules/typescript-eslint": {
2965
- "version": "8.60.1",
2966
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.60.1.tgz",
2967
- "integrity": "sha512-6m5hkkRAp8lKvhVpcprAIn5KkehQEh+47oHH2VGnExEh7dhNxXlg6GPAOIu6TxbVQxhebrJDvjl3020ooiWCMA==",
2869
+ "version": "8.62.0",
2870
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.62.0.tgz",
2871
+ "integrity": "sha512-8QxXi+ZACKX0kaqO4gY8kn0RSD9gFfaHDWwjqtEN48aWCBkX4MJaufWN+c3BzlrXLOxfywDL8CaoqUwcRq4j4Q==",
2968
2872
  "dev": true,
2969
2873
  "license": "MIT",
2970
2874
  "dependencies": {
2971
- "@typescript-eslint/eslint-plugin": "8.60.1",
2972
- "@typescript-eslint/parser": "8.60.1",
2973
- "@typescript-eslint/typescript-estree": "8.60.1",
2974
- "@typescript-eslint/utils": "8.60.1"
2875
+ "@typescript-eslint/eslint-plugin": "8.62.0",
2876
+ "@typescript-eslint/parser": "8.62.0",
2877
+ "@typescript-eslint/typescript-estree": "8.62.0",
2878
+ "@typescript-eslint/utils": "8.62.0"
2975
2879
  },
2976
2880
  "engines": {
2977
2881
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -2986,9 +2890,9 @@
2986
2890
  }
2987
2891
  },
2988
2892
  "node_modules/undici-types": {
2989
- "version": "7.16.0",
2990
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
2991
- "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
2893
+ "version": "6.21.0",
2894
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
2895
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
2992
2896
  "devOptional": true,
2993
2897
  "license": "MIT"
2994
2898
  },
@@ -3034,15 +2938,15 @@
3034
2938
  }
3035
2939
  },
3036
2940
  "node_modules/vite": {
3037
- "version": "8.0.16",
3038
- "resolved": "https://registry.npmjs.org/vite/-/vite-8.0.16.tgz",
3039
- "integrity": "sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==",
2941
+ "version": "8.1.0",
2942
+ "resolved": "https://registry.npmjs.org/vite/-/vite-8.1.0.tgz",
2943
+ "integrity": "sha512-BuJcQK/56NQTWDGn4ABea3q4SSBdNPWwNZKTkkUpcMPnLoquSYH8llRtSUIgoL1KSCpHt5eghLShn50mH36y7Q==",
3040
2944
  "license": "MIT",
3041
2945
  "dependencies": {
3042
2946
  "lightningcss": "^1.32.0",
3043
2947
  "picomatch": "^4.0.4",
3044
2948
  "postcss": "^8.5.15",
3045
- "rolldown": "1.0.3",
2949
+ "rolldown": "~1.1.2",
3046
2950
  "tinyglobby": "^0.2.17"
3047
2951
  },
3048
2952
  "bin": {
@@ -3059,7 +2963,7 @@
3059
2963
  },
3060
2964
  "peerDependencies": {
3061
2965
  "@types/node": "^20.19.0 || >=22.12.0",
3062
- "@vitejs/devtools": "^0.1.18",
2966
+ "@vitejs/devtools": "^0.3.0",
3063
2967
  "esbuild": "^0.27.0 || ^0.28.0",
3064
2968
  "jiti": ">=1.21.0",
3065
2969
  "less": "^4.0.0",