@wavemaker-ai/react-runtime 1.0.0-rc.647655 → 1.0.0-rc.647684
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/notification-action.js +3 -3
- package/actions/toast.js +2 -1
- package/components/basic/icon/index.js +36 -5
- package/components/basic/iframe/index.js +18 -8
- package/components/basic/label/index.js +4 -3
- package/components/basic/message/index.js +1 -0
- package/components/basic/search/index.d.ts +72 -3
- package/components/basic/search/index.js +84 -32
- package/components/basic/search/props.d.ts +4 -0
- package/components/basic/search/providers.d.ts +1 -1
- package/components/basic/search/providers.js +6 -3
- package/components/common/WmAppIcon/index.js +11 -8
- package/components/common/WmAppIcon/props.d.ts +2 -0
- package/components/container/accordion/accordion-pane/index.d.ts +1 -0
- package/components/container/accordion/accordion-pane/index.js +7 -3
- package/components/container/accordion/accordion-pane/props.d.ts +1 -0
- package/components/container/index.js +13 -5
- package/components/container/layout-grid/index.js +1 -0
- package/components/container/linear-layout/index.js +0 -1
- package/components/container/panel/components/panel-header/index.js +1 -3
- package/components/container/tabs/tab-pane/index.d.ts +1 -0
- package/components/container/tabs/tab-pane/index.js +2 -2
- package/components/container/tabs/tab-pane/props.d.ts +1 -0
- package/components/container/wizard/index.js +11 -10
- package/components/container/wizard/utils.js +1 -0
- package/components/data/form/base-form/hooks/useFormOperations.js +9 -15
- package/components/data/form/base-form/index.js +17 -14
- package/components/data/form/base-form/utils.js +5 -4
- package/components/data/form/dynamic-fields/WmxDynamicFormField.d.ts +11 -0
- package/components/data/form/dynamic-fields/WmxDynamicFormField.js +77 -0
- package/components/data/form/dynamic-fields/index.js +12 -1
- package/components/data/form/form-action/index.d.ts +2 -2
- package/components/data/form/form-action/index.js +2 -2
- package/components/data/form/form-context.d.ts +12 -13
- package/components/data/form/form-context.js +4 -6
- package/components/data/form/form-controller/withFormController.js +4 -18
- package/components/data/form/form-field/index.js +10 -6
- package/components/data/list/components/ListItems.js +1 -3
- package/components/data/list/index.js +5 -4
- package/components/data/pagination/hooks/usePagination.js +2 -2
- package/components/data/table/components/RowCells.js +3 -1
- package/components/data/table/components/TableBody.js +2 -1
- package/components/data/table/components/TableDataRow.js +1 -1
- package/components/data/table/components/TableHeader.js +5 -1
- package/components/data/table/hooks/useRowHandlers.d.ts +4 -2
- package/components/data/table/hooks/useRowHandlers.js +23 -11
- package/components/data/table/hooks/useRowSelection.d.ts +1 -1
- package/components/data/table/hooks/useRowSelection.js +93 -74
- package/components/data/table/hooks/useTableColumns.js +5 -5
- package/components/data/table/hooks/useTableState.js +14 -2
- package/components/data/table/index.js +54 -50
- package/components/data/table/props.d.ts +12 -8
- package/components/data/table/utils/buildSelectionColumns.js +31 -31
- package/components/data/table/utils/columnBuilder.js +1 -1
- package/components/data/table/utils/index.d.ts +9 -1
- package/components/data/table/utils/index.js +30 -2
- package/components/data/table/utils/selectionUtils.d.ts +7 -0
- package/components/data/table/utils/selectionUtils.js +28 -1
- package/components/dialogs/dialog-actions/index.js +11 -2
- package/components/dialogs/dialog-header/index.js +1 -1
- package/components/dialogs/index.js +14 -2
- package/components/input/chips/index.js +29 -5
- package/components/input/color-picker/index.js +4 -6
- package/components/input/epoch/date/index.js +3 -2
- package/components/input/epoch/date/utils.js +4 -2
- package/components/input/epoch/datetime/index.js +2 -2
- package/components/input/epoch/datetime/props.d.ts +2 -2
- package/components/input/epoch/time/utils.d.ts +1 -1
- package/components/input/epoch/time/utils.js +2 -2
- package/components/input/fileupload/useFileUpload.js +19 -24
- package/components/input/select/index.js +8 -6
- package/components/input/text/index.js +2 -2
- package/components/input/textarea/index.js +41 -16
- package/components/navbar/nav/index.js +10 -5
- package/components/navigation/breadcrumb/index.js +2 -1
- package/components/navigation/popover/index.d.ts +1 -1
- package/components/navigation/popover/index.js +10 -2
- package/components/navigation/popover/props.d.ts +1 -1
- package/components/page/page-content/index.js +24 -4
- package/components/page/page-content/props.d.ts +1 -0
- package/components/page/partial-container/index.js +1 -1
- package/components/wmx/WmxRenderer.d.ts +8 -0
- package/components/wmx/WmxRenderer.js +57 -0
- package/core/appstore.js +1 -1
- package/core/proxy-service.d.ts +16 -1
- package/core/proxy-service.js +39 -12
- package/core/util/index.d.ts +0 -2
- package/core/util/index.js +0 -29
- package/higherOrder/BaseDateTime.js +8 -1
- package/higherOrder/BasePage.js +31 -65
- package/higherOrder/DataNav.js +4 -1
- package/higherOrder/withBaseWrapper.js +3 -4
- package/hooks/useHttp.js +4 -2
- package/hooks/useLayoutSize.js +1 -1
- package/package-lock.json +360 -696
- package/package.json +3 -3
- package/runtime-dynamic/app-initializer.js +2 -1
- package/runtime-dynamic/components/partial-content.js +2 -1
- package/runtime-dynamic/components/wmx-placeholder.d.ts +18 -0
- package/runtime-dynamic/components/wmx-placeholder.js +48 -0
- package/runtime-dynamic/main.js +6 -0
- package/runtime-dynamic/services/compile-render.js +75 -12
- package/store/slices/i18nSlice.d.ts +0 -1
- package/store/slices/i18nSlice.js +0 -2
- package/utils/layoutsize-util.js +12 -7
- package/utils/style-utils.d.ts +6 -0
- package/utils/style-utils.js +10 -0
- package/utils/wmx.utils.d.ts +6 -0
- package/utils/wmx.utils.js +41 -0
- package/variables/crud-variable.js +1 -1
- package/variables/live-variable.js +1 -1
- package/variables/service-variable.js +6 -3
package/package-lock.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker-ai/react-runtime",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.647684",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@wavemaker-ai/react-runtime",
|
|
9
|
-
"version": "1.0.0-rc.
|
|
9
|
+
"version": "1.0.0-rc.647684",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@base-ui-components/react": "1.0.0-alpha.8",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"@mui/x-date-pickers": "8.5.3",
|
|
29
29
|
"@reduxjs/toolkit": "2.9.1",
|
|
30
30
|
"@tanstack/react-table": "8.21.3",
|
|
31
|
-
"@wavemaker-ai/react-codegen": "1.0.0-rc.
|
|
32
|
-
"@wavemaker-ai/variables": "1.0.0-rc.
|
|
31
|
+
"@wavemaker-ai/react-codegen": "1.0.0-rc.647684",
|
|
32
|
+
"@wavemaker-ai/variables": "1.0.0-rc.647684",
|
|
33
33
|
"@wavemaker/nvd3": "1.8.16",
|
|
34
34
|
"axios": "1.15.1",
|
|
35
35
|
"d3": "7.8.5",
|
|
@@ -151,19 +151,6 @@
|
|
|
151
151
|
"lru-cache": "^11.2.6"
|
|
152
152
|
}
|
|
153
153
|
},
|
|
154
|
-
"node_modules/@asamuzakjp/dom-selector/node_modules/css-tree": {
|
|
155
|
-
"version": "3.2.1",
|
|
156
|
-
"integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
|
|
157
|
-
"dev": true,
|
|
158
|
-
"license": "MIT",
|
|
159
|
-
"dependencies": {
|
|
160
|
-
"mdn-data": "2.27.1",
|
|
161
|
-
"source-map-js": "^1.2.1"
|
|
162
|
-
},
|
|
163
|
-
"engines": {
|
|
164
|
-
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
165
|
-
}
|
|
166
|
-
},
|
|
167
154
|
"node_modules/@asamuzakjp/dom-selector/node_modules/lru-cache": {
|
|
168
155
|
"version": "11.5.2",
|
|
169
156
|
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
@@ -173,12 +160,6 @@
|
|
|
173
160
|
"node": "20 || >=22"
|
|
174
161
|
}
|
|
175
162
|
},
|
|
176
|
-
"node_modules/@asamuzakjp/dom-selector/node_modules/mdn-data": {
|
|
177
|
-
"version": "2.27.1",
|
|
178
|
-
"integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
|
|
179
|
-
"dev": true,
|
|
180
|
-
"license": "CC0-1.0"
|
|
181
|
-
},
|
|
182
163
|
"node_modules/@asamuzakjp/generational-cache": {
|
|
183
164
|
"version": "1.0.1",
|
|
184
165
|
"integrity": "sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg==",
|
|
@@ -253,12 +234,12 @@
|
|
|
253
234
|
"license": "MIT"
|
|
254
235
|
},
|
|
255
236
|
"node_modules/@babel/generator": {
|
|
256
|
-
"version": "7.29.
|
|
257
|
-
"integrity": "sha512-
|
|
237
|
+
"version": "7.29.8",
|
|
238
|
+
"integrity": "sha512-gZbepsdh3WDtgZKWL+vTPh71LSBrm/Y4/QDZBVCcYfmeTEEuoOYwlSy+G1StfJg+/Zy550u/3TATbm7qDbbMtg==",
|
|
258
239
|
"license": "MIT",
|
|
259
240
|
"dependencies": {
|
|
260
|
-
"@babel/parser": "^7.29.
|
|
261
|
-
"@babel/types": "^7.29.
|
|
241
|
+
"@babel/parser": "^7.29.8",
|
|
242
|
+
"@babel/types": "^7.29.8",
|
|
262
243
|
"@jridgewell/gen-mapping": "^0.3.12",
|
|
263
244
|
"@jridgewell/trace-mapping": "^0.3.28",
|
|
264
245
|
"jsesc": "^3.0.2"
|
|
@@ -283,18 +264,6 @@
|
|
|
283
264
|
"node": ">=6.9.0"
|
|
284
265
|
}
|
|
285
266
|
},
|
|
286
|
-
"node_modules/@babel/helper-function-name": {
|
|
287
|
-
"version": "7.24.7",
|
|
288
|
-
"integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==",
|
|
289
|
-
"license": "MIT",
|
|
290
|
-
"dependencies": {
|
|
291
|
-
"@babel/template": "^7.24.7",
|
|
292
|
-
"@babel/types": "^7.24.7"
|
|
293
|
-
},
|
|
294
|
-
"engines": {
|
|
295
|
-
"node": ">=6.9.0"
|
|
296
|
-
}
|
|
297
|
-
},
|
|
298
267
|
"node_modules/@babel/helper-globals": {
|
|
299
268
|
"version": "7.29.7",
|
|
300
269
|
"integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
|
|
@@ -341,17 +310,6 @@
|
|
|
341
310
|
"node": ">=6.9.0"
|
|
342
311
|
}
|
|
343
312
|
},
|
|
344
|
-
"node_modules/@babel/helper-split-export-declaration": {
|
|
345
|
-
"version": "7.24.7",
|
|
346
|
-
"integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==",
|
|
347
|
-
"license": "MIT",
|
|
348
|
-
"dependencies": {
|
|
349
|
-
"@babel/types": "^7.24.7"
|
|
350
|
-
},
|
|
351
|
-
"engines": {
|
|
352
|
-
"node": ">=6.9.0"
|
|
353
|
-
}
|
|
354
|
-
},
|
|
355
313
|
"node_modules/@babel/helper-string-parser": {
|
|
356
314
|
"version": "7.29.7",
|
|
357
315
|
"integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
|
|
@@ -391,11 +349,11 @@
|
|
|
391
349
|
}
|
|
392
350
|
},
|
|
393
351
|
"node_modules/@babel/parser": {
|
|
394
|
-
"version": "7.29.
|
|
395
|
-
"integrity": "sha512-
|
|
352
|
+
"version": "7.29.8",
|
|
353
|
+
"integrity": "sha512-E8lTAYNB1KW+FH+VGJuZM1ioAx2E6oVlvQFRrf5P8ZZmsiJXYAD9vTFV7yyEURNzgh1dFqMZuO6tUwcARbqFCA==",
|
|
396
354
|
"license": "MIT",
|
|
397
355
|
"dependencies": {
|
|
398
|
-
"@babel/types": "^7.29.
|
|
356
|
+
"@babel/types": "^7.29.8"
|
|
399
357
|
},
|
|
400
358
|
"bin": {
|
|
401
359
|
"parser": "bin/babel-parser.js"
|
|
@@ -456,16 +414,16 @@
|
|
|
456
414
|
}
|
|
457
415
|
},
|
|
458
416
|
"node_modules/@babel/traverse": {
|
|
459
|
-
"version": "7.29.
|
|
460
|
-
"integrity": "sha512-
|
|
417
|
+
"version": "7.29.8",
|
|
418
|
+
"integrity": "sha512-I5z7H3bf/41ktsNVLtpN0wAa336HkqIHQ5BuPLEhTkt1jVSyZpeNKIzTgEWmlxjdg81R0IgUCcaE+Ok3NvrfZg==",
|
|
461
419
|
"license": "MIT",
|
|
462
420
|
"dependencies": {
|
|
463
421
|
"@babel/code-frame": "^7.29.7",
|
|
464
|
-
"@babel/generator": "^7.29.
|
|
422
|
+
"@babel/generator": "^7.29.8",
|
|
465
423
|
"@babel/helper-globals": "^7.29.7",
|
|
466
|
-
"@babel/parser": "^7.29.
|
|
424
|
+
"@babel/parser": "^7.29.8",
|
|
467
425
|
"@babel/template": "^7.29.7",
|
|
468
|
-
"@babel/types": "^7.29.
|
|
426
|
+
"@babel/types": "^7.29.8",
|
|
469
427
|
"debug": "^4.3.1"
|
|
470
428
|
},
|
|
471
429
|
"engines": {
|
|
@@ -473,8 +431,8 @@
|
|
|
473
431
|
}
|
|
474
432
|
},
|
|
475
433
|
"node_modules/@babel/types": {
|
|
476
|
-
"version": "7.29.
|
|
477
|
-
"integrity": "sha512-
|
|
434
|
+
"version": "7.29.8",
|
|
435
|
+
"integrity": "sha512-Vj1jF3cPfxg7OAfoI7QnVKLoILlm2JF9pnVHrX8qx7AHMiYWT+NDAA7jChlNgRS4WTLc/fD1lXLmPixluj+3Gg==",
|
|
478
436
|
"license": "MIT",
|
|
479
437
|
"dependencies": {
|
|
480
438
|
"@babel/helper-string-parser": "^7.29.7",
|
|
@@ -536,25 +494,6 @@
|
|
|
536
494
|
"specificity": "bin/cli.js"
|
|
537
495
|
}
|
|
538
496
|
},
|
|
539
|
-
"node_modules/@bramus/specificity/node_modules/css-tree": {
|
|
540
|
-
"version": "3.2.1",
|
|
541
|
-
"integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
|
|
542
|
-
"dev": true,
|
|
543
|
-
"license": "MIT",
|
|
544
|
-
"dependencies": {
|
|
545
|
-
"mdn-data": "2.27.1",
|
|
546
|
-
"source-map-js": "^1.2.1"
|
|
547
|
-
},
|
|
548
|
-
"engines": {
|
|
549
|
-
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
550
|
-
}
|
|
551
|
-
},
|
|
552
|
-
"node_modules/@bramus/specificity/node_modules/mdn-data": {
|
|
553
|
-
"version": "2.27.1",
|
|
554
|
-
"integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
|
|
555
|
-
"dev": true,
|
|
556
|
-
"license": "CC0-1.0"
|
|
557
|
-
},
|
|
558
497
|
"node_modules/@csstools/color-helpers": {
|
|
559
498
|
"version": "6.1.0",
|
|
560
499
|
"integrity": "sha512-064IFJdjTfUqnjpCVpMOdbr8FLQBhinbZj6yRv2An2E41O/pLEXqfFRWqGq/SxlE5PEUYTlvWsG2r8MswAVvkg==",
|
|
@@ -575,8 +514,8 @@
|
|
|
575
514
|
}
|
|
576
515
|
},
|
|
577
516
|
"node_modules/@csstools/css-calc": {
|
|
578
|
-
"version": "3.
|
|
579
|
-
"integrity": "sha512-
|
|
517
|
+
"version": "3.3.0",
|
|
518
|
+
"integrity": "sha512-c5ihYsPkdG6JCkU2zTMm4+k6r7RXuGxtWYhu5DHMIiF1FHzrfmHL5so11AoFpUv/tu61xfcmT4AmKoFfMPoqdQ==",
|
|
580
519
|
"dev": true,
|
|
581
520
|
"funding": [
|
|
582
521
|
{
|
|
@@ -598,8 +537,8 @@
|
|
|
598
537
|
}
|
|
599
538
|
},
|
|
600
539
|
"node_modules/@csstools/css-color-parser": {
|
|
601
|
-
"version": "4.1.
|
|
602
|
-
"integrity": "sha512-
|
|
540
|
+
"version": "4.1.10",
|
|
541
|
+
"integrity": "sha512-UZhQLIUyJaaMepqehrCODwCg2KW25vFvLWBmqYFaPclYvvxzj/sG8LBOhBFCp11i9uE7t1EyS+RAoV9tztPFyw==",
|
|
603
542
|
"dev": true,
|
|
604
543
|
"funding": [
|
|
605
544
|
{
|
|
@@ -614,7 +553,7 @@
|
|
|
614
553
|
"license": "MIT",
|
|
615
554
|
"dependencies": {
|
|
616
555
|
"@csstools/color-helpers": "^6.1.0",
|
|
617
|
-
"@csstools/css-calc": "^3.
|
|
556
|
+
"@csstools/css-calc": "^3.3.0"
|
|
618
557
|
},
|
|
619
558
|
"engines": {
|
|
620
559
|
"node": ">=20.19.0"
|
|
@@ -646,6 +585,30 @@
|
|
|
646
585
|
"@csstools/css-tokenizer": "^4.0.0"
|
|
647
586
|
}
|
|
648
587
|
},
|
|
588
|
+
"node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
589
|
+
"version": "1.1.7",
|
|
590
|
+
"integrity": "sha512-fQ+05118eQS1cofO3aJpB5efgpBZMvIzwr/sbC8kDLVA5XLG8q1kJV5yzrUAI1f7lvhPnm8fgIjzFB8/O/5Dig==",
|
|
591
|
+
"dev": true,
|
|
592
|
+
"funding": [
|
|
593
|
+
{
|
|
594
|
+
"type": "github",
|
|
595
|
+
"url": "https://github.com/sponsors/csstools"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"type": "opencollective",
|
|
599
|
+
"url": "https://opencollective.com/csstools"
|
|
600
|
+
}
|
|
601
|
+
],
|
|
602
|
+
"license": "MIT-0",
|
|
603
|
+
"peerDependencies": {
|
|
604
|
+
"css-tree": "^3.2.1"
|
|
605
|
+
},
|
|
606
|
+
"peerDependenciesMeta": {
|
|
607
|
+
"css-tree": {
|
|
608
|
+
"optional": true
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
},
|
|
649
612
|
"node_modules/@csstools/css-tokenizer": {
|
|
650
613
|
"version": "4.0.0",
|
|
651
614
|
"integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==",
|
|
@@ -739,8 +702,8 @@
|
|
|
739
702
|
}
|
|
740
703
|
},
|
|
741
704
|
"node_modules/@emnapi/runtime": {
|
|
742
|
-
"version": "1.11.
|
|
743
|
-
"integrity": "sha512-
|
|
705
|
+
"version": "1.11.3",
|
|
706
|
+
"integrity": "sha512-Xz4Tpyki7XyrpbUK1jR1AhdAdaXyhhY4lZ3neLodmhpuWfy2PAQN5B46sAiU4liOXGLkHypn/qU+jvfWSCYYLA==",
|
|
744
707
|
"license": "MIT",
|
|
745
708
|
"optional": true,
|
|
746
709
|
"dependencies": {
|
|
@@ -1307,8 +1270,8 @@
|
|
|
1307
1270
|
}
|
|
1308
1271
|
},
|
|
1309
1272
|
"node_modules/@eslint-community/eslint-utils": {
|
|
1310
|
-
"version": "4.
|
|
1311
|
-
"integrity": "sha512-
|
|
1273
|
+
"version": "4.10.1",
|
|
1274
|
+
"integrity": "sha512-cuadcxVFE8sDK6iWJbs8Sn0av2Nrh2QSGQhVlBW9AaAHqHwjWsZHT8LJ4hFGPh7ASBV2deFdM7H/DPjulmh8rg==",
|
|
1312
1275
|
"dev": true,
|
|
1313
1276
|
"license": "MIT",
|
|
1314
1277
|
"dependencies": {
|
|
@@ -1458,29 +1421,29 @@
|
|
|
1458
1421
|
}
|
|
1459
1422
|
},
|
|
1460
1423
|
"node_modules/@floating-ui/core": {
|
|
1461
|
-
"version": "1.
|
|
1462
|
-
"integrity": "sha512-
|
|
1424
|
+
"version": "1.8.0",
|
|
1425
|
+
"integrity": "sha512-0CIZ5itps/8x7BG8dEIhs53BvCUH2PCoogtakwRTut+Arm58sJooJ0AuZhLw2HJYIR5cMLNPBSS728sPho2khQ==",
|
|
1463
1426
|
"license": "MIT",
|
|
1464
1427
|
"dependencies": {
|
|
1465
|
-
"@floating-ui/utils": "^0.2.
|
|
1428
|
+
"@floating-ui/utils": "^0.2.12"
|
|
1466
1429
|
}
|
|
1467
1430
|
},
|
|
1468
1431
|
"node_modules/@floating-ui/dom": {
|
|
1469
|
-
"version": "1.
|
|
1470
|
-
"integrity": "sha512-
|
|
1432
|
+
"version": "1.8.0",
|
|
1433
|
+
"integrity": "sha512-yXSrzeHZBTZadLOlfyhCkJHNeLJnHRnRInwdZ40L7ZiaAtrBwoYlsDrX3v5zB1Utk7CLfzcOVnVVWoXEky7Ceg==",
|
|
1471
1434
|
"license": "MIT",
|
|
1472
1435
|
"dependencies": {
|
|
1473
|
-
"@floating-ui/core": "^1.
|
|
1474
|
-
"@floating-ui/utils": "^0.2.
|
|
1436
|
+
"@floating-ui/core": "^1.8.0",
|
|
1437
|
+
"@floating-ui/utils": "^0.2.12"
|
|
1475
1438
|
}
|
|
1476
1439
|
},
|
|
1477
1440
|
"node_modules/@floating-ui/react": {
|
|
1478
|
-
"version": "0.27.
|
|
1479
|
-
"integrity": "sha512-
|
|
1441
|
+
"version": "0.27.20",
|
|
1442
|
+
"integrity": "sha512-CMqMy7OaXl9W0eq1Uy7L7i2Y/anPvHmFmESd2CEw0t5YvZhcVCeo4MBevAmswRllX7Y2dEidA4ozGPunLSTQpw==",
|
|
1480
1443
|
"license": "MIT",
|
|
1481
1444
|
"dependencies": {
|
|
1482
|
-
"@floating-ui/react-dom": "^2.1.
|
|
1483
|
-
"@floating-ui/utils": "^0.2.
|
|
1445
|
+
"@floating-ui/react-dom": "^2.1.9",
|
|
1446
|
+
"@floating-ui/utils": "^0.2.12",
|
|
1484
1447
|
"tabbable": "^6.0.0"
|
|
1485
1448
|
},
|
|
1486
1449
|
"peerDependencies": {
|
|
@@ -1489,11 +1452,11 @@
|
|
|
1489
1452
|
}
|
|
1490
1453
|
},
|
|
1491
1454
|
"node_modules/@floating-ui/react-dom": {
|
|
1492
|
-
"version": "2.1.
|
|
1493
|
-
"integrity": "sha512-
|
|
1455
|
+
"version": "2.1.9",
|
|
1456
|
+
"integrity": "sha512-JDjEFGCpImxDCA7JJKviA0M9+RtmJdj0m/NVU5IMgBK+AmZouAQQ7/+2GLH0GXXY0YMw9oXPB8hKdbPYg5QLYg==",
|
|
1494
1457
|
"license": "MIT",
|
|
1495
1458
|
"dependencies": {
|
|
1496
|
-
"@floating-ui/dom": "^1.
|
|
1459
|
+
"@floating-ui/dom": "^1.8.0"
|
|
1497
1460
|
},
|
|
1498
1461
|
"peerDependencies": {
|
|
1499
1462
|
"react": ">=16.8.0",
|
|
@@ -1501,8 +1464,8 @@
|
|
|
1501
1464
|
}
|
|
1502
1465
|
},
|
|
1503
1466
|
"node_modules/@floating-ui/utils": {
|
|
1504
|
-
"version": "0.2.
|
|
1505
|
-
"integrity": "sha512-
|
|
1467
|
+
"version": "0.2.12",
|
|
1468
|
+
"integrity": "sha512-HpCo8tmWzLVad5s2d19EhAz5zqrrQ6s69qd6moPMQvkOuSwDT1YgRfWSVuc4ennqrgv3OHppiOGMQ7oC13yIww==",
|
|
1506
1469
|
"license": "MIT"
|
|
1507
1470
|
},
|
|
1508
1471
|
"node_modules/@fullcalendar/core": {
|
|
@@ -2214,8 +2177,8 @@
|
|
|
2214
2177
|
}
|
|
2215
2178
|
},
|
|
2216
2179
|
"node_modules/@internationalized/date": {
|
|
2217
|
-
"version": "3.12.
|
|
2218
|
-
"integrity": "sha512-
|
|
2180
|
+
"version": "3.12.3",
|
|
2181
|
+
"integrity": "sha512-fuLX+3ZKLsxI73y8b01EG/WjHb6gE6weCqlfawPO27kBWGMh9G1yH6Csv1uU7/cac9H2GHmOMt6CjmuQ1aia4Q==",
|
|
2219
2182
|
"license": "Apache-2.0",
|
|
2220
2183
|
"dependencies": {
|
|
2221
2184
|
"@swc/helpers": "^0.5.0"
|
|
@@ -2230,8 +2193,8 @@
|
|
|
2230
2193
|
}
|
|
2231
2194
|
},
|
|
2232
2195
|
"node_modules/@internationalized/string": {
|
|
2233
|
-
"version": "3.2.
|
|
2234
|
-
"integrity": "sha512-
|
|
2196
|
+
"version": "3.2.10",
|
|
2197
|
+
"integrity": "sha512-PDx6//vHSpRnHfxqMqto11zQvhsaU74O3mKv2F/0eicGZcl9NLjQmGlbHz/LsJh5tLKp4A4L7ZVTzN1/MmMTvA==",
|
|
2235
2198
|
"license": "Apache-2.0",
|
|
2236
2199
|
"dependencies": {
|
|
2237
2200
|
"@swc/helpers": "^0.5.0"
|
|
@@ -2335,15 +2298,6 @@
|
|
|
2335
2298
|
"node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0"
|
|
2336
2299
|
}
|
|
2337
2300
|
},
|
|
2338
|
-
"node_modules/@jest/types/node_modules/@types/yargs": {
|
|
2339
|
-
"version": "17.0.35",
|
|
2340
|
-
"integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==",
|
|
2341
|
-
"dev": true,
|
|
2342
|
-
"license": "MIT",
|
|
2343
|
-
"dependencies": {
|
|
2344
|
-
"@types/yargs-parser": "*"
|
|
2345
|
-
}
|
|
2346
|
-
},
|
|
2347
2301
|
"node_modules/@jridgewell/gen-mapping": {
|
|
2348
2302
|
"version": "0.3.13",
|
|
2349
2303
|
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
|
@@ -2966,22 +2920,41 @@
|
|
|
2966
2920
|
}
|
|
2967
2921
|
}
|
|
2968
2922
|
},
|
|
2923
|
+
"node_modules/@napi-rs/lzma-linux-x64-gnu": {
|
|
2924
|
+
"version": "1.5.1",
|
|
2925
|
+
"integrity": "sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==",
|
|
2926
|
+
"cpu": [
|
|
2927
|
+
"x64"
|
|
2928
|
+
],
|
|
2929
|
+
"dev": true,
|
|
2930
|
+
"license": "MIT",
|
|
2931
|
+
"optional": true,
|
|
2932
|
+
"os": [
|
|
2933
|
+
"linux"
|
|
2934
|
+
],
|
|
2935
|
+
"engines": {
|
|
2936
|
+
"node": "^22.20 || ^24.12 || >=25"
|
|
2937
|
+
}
|
|
2938
|
+
},
|
|
2969
2939
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
2970
|
-
"version": "1.
|
|
2971
|
-
"integrity": "sha512-
|
|
2940
|
+
"version": "1.2.2",
|
|
2941
|
+
"integrity": "sha512-JfB4kuJQjaoHuCTseIINHtHWeJnvgEcxjwA5t/Y00ZgaOO1Crz3fjT/p8kT28zA/Caz7oiUMn3d6H2yOVCVwuw==",
|
|
2972
2942
|
"dev": true,
|
|
2973
2943
|
"license": "MIT",
|
|
2974
2944
|
"optional": true,
|
|
2975
2945
|
"dependencies": {
|
|
2976
2946
|
"@tybys/wasm-util": "^0.10.3"
|
|
2977
2947
|
},
|
|
2948
|
+
"engines": {
|
|
2949
|
+
"node": "^20.19.0 || ^22.13.0 || >=23.5.0"
|
|
2950
|
+
},
|
|
2978
2951
|
"funding": {
|
|
2979
2952
|
"type": "github",
|
|
2980
2953
|
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
2981
2954
|
},
|
|
2982
2955
|
"peerDependencies": {
|
|
2983
|
-
"@emnapi/core": "^1.7.1",
|
|
2984
|
-
"@emnapi/runtime": "^1.7.1"
|
|
2956
|
+
"@emnapi/core": "^1.7.1 || ^2.0.0-alpha.3",
|
|
2957
|
+
"@emnapi/runtime": "^1.7.1 || ^2.0.0-alpha.3"
|
|
2985
2958
|
}
|
|
2986
2959
|
},
|
|
2987
2960
|
"node_modules/@next/env": {
|
|
@@ -3216,8 +3189,8 @@
|
|
|
3216
3189
|
}
|
|
3217
3190
|
},
|
|
3218
3191
|
"node_modules/@react-types/shared": {
|
|
3219
|
-
"version": "3.36.
|
|
3220
|
-
"integrity": "sha512-
|
|
3192
|
+
"version": "3.36.1",
|
|
3193
|
+
"integrity": "sha512-AzsuD9OfxTOZMMvTRhlN3oHBwOmFN7tDh27LzqmHt4+uOgPhJT7ZM7/kVs/8/o0WxayMUIk3hBmCFRHv1FUoag==",
|
|
3221
3194
|
"license": "Apache-2.0",
|
|
3222
3195
|
"peerDependencies": {
|
|
3223
3196
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
|
|
@@ -3255,8 +3228,8 @@
|
|
|
3255
3228
|
"license": "MIT"
|
|
3256
3229
|
},
|
|
3257
3230
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
3258
|
-
"version": "4.62.
|
|
3259
|
-
"integrity": "sha512-
|
|
3231
|
+
"version": "4.62.4",
|
|
3232
|
+
"integrity": "sha512-RrPokAb7dmbxFoeO3TloqHyOjgye8RkBhSqmp4aJMIex4c9r46ZstPnleDQOq1t46VOVjwIuwNogIqbodV1Vvg==",
|
|
3260
3233
|
"cpu": [
|
|
3261
3234
|
"arm"
|
|
3262
3235
|
],
|
|
@@ -3268,8 +3241,8 @@
|
|
|
3268
3241
|
]
|
|
3269
3242
|
},
|
|
3270
3243
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
3271
|
-
"version": "4.62.
|
|
3272
|
-
"integrity": "sha512-
|
|
3244
|
+
"version": "4.62.4",
|
|
3245
|
+
"integrity": "sha512-JKuJc+pnpks2pjy7L/N3v/cAkZxYlnmuZoD840ldbMI5KDbC4iO9NKwPKYdjYFCMAIIlBzYSFHxIJVYzRo2/8A==",
|
|
3273
3246
|
"cpu": [
|
|
3274
3247
|
"arm64"
|
|
3275
3248
|
],
|
|
@@ -3281,8 +3254,8 @@
|
|
|
3281
3254
|
]
|
|
3282
3255
|
},
|
|
3283
3256
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
3284
|
-
"version": "4.62.
|
|
3285
|
-
"integrity": "sha512-
|
|
3257
|
+
"version": "4.62.4",
|
|
3258
|
+
"integrity": "sha512-krw5uS2STmvJ02x0uTXHbqQNuz+9eZ1iw+qXk9dmW2gvV4jV7O2hEoOnuhFrpOPiel1mBFtqbxYZZtC46hXLOw==",
|
|
3286
3259
|
"cpu": [
|
|
3287
3260
|
"arm64"
|
|
3288
3261
|
],
|
|
@@ -3294,8 +3267,8 @@
|
|
|
3294
3267
|
]
|
|
3295
3268
|
},
|
|
3296
3269
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
3297
|
-
"version": "4.62.
|
|
3298
|
-
"integrity": "sha512-
|
|
3270
|
+
"version": "4.62.4",
|
|
3271
|
+
"integrity": "sha512-wsTxtgApb4PrOsNJIm0FZ1h3WvCC+k9uxLJ4ad75hgoS4NiRes2SoJFlDAyMwiUY8IssDqGcHbXuN0sx1tfF1A==",
|
|
3299
3272
|
"cpu": [
|
|
3300
3273
|
"x64"
|
|
3301
3274
|
],
|
|
@@ -3307,8 +3280,8 @@
|
|
|
3307
3280
|
]
|
|
3308
3281
|
},
|
|
3309
3282
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
3310
|
-
"version": "4.62.
|
|
3311
|
-
"integrity": "sha512-
|
|
3283
|
+
"version": "4.62.4",
|
|
3284
|
+
"integrity": "sha512-GUOnQlyZe3yAXhWOtOMsn5Qkrv5E5mZXa0thbARWi5Ei2szlVXJFQhddZ4HbAzh8q92w5twp+CQvs/eFanz9YQ==",
|
|
3312
3285
|
"cpu": [
|
|
3313
3286
|
"arm64"
|
|
3314
3287
|
],
|
|
@@ -3320,8 +3293,8 @@
|
|
|
3320
3293
|
]
|
|
3321
3294
|
},
|
|
3322
3295
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
3323
|
-
"version": "4.62.
|
|
3324
|
-
"integrity": "sha512
|
|
3296
|
+
"version": "4.62.4",
|
|
3297
|
+
"integrity": "sha512-/Y7f3QuxjzPKsjA/rfEDa3+0vXqyjmJ50Ln8dPpCmWkKTrUoWHG1cWhTqaAMLob2m2nESWuC7yGrREz019Ztqg==",
|
|
3325
3298
|
"cpu": [
|
|
3326
3299
|
"x64"
|
|
3327
3300
|
],
|
|
@@ -3333,8 +3306,8 @@
|
|
|
3333
3306
|
]
|
|
3334
3307
|
},
|
|
3335
3308
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
3336
|
-
"version": "4.62.
|
|
3337
|
-
"integrity": "sha512-
|
|
3309
|
+
"version": "4.62.4",
|
|
3310
|
+
"integrity": "sha512-81wiiX3v7aqy+T+bT61TJ78yJjRquqFFTTbAPt08imfQQzkPIW8t6aJbkTagtCCrXMNc9D66+geqlK7ydLPNqA==",
|
|
3338
3311
|
"cpu": [
|
|
3339
3312
|
"arm"
|
|
3340
3313
|
],
|
|
@@ -3346,8 +3319,8 @@
|
|
|
3346
3319
|
]
|
|
3347
3320
|
},
|
|
3348
3321
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
3349
|
-
"version": "4.62.
|
|
3350
|
-
"integrity": "sha512-
|
|
3322
|
+
"version": "4.62.4",
|
|
3323
|
+
"integrity": "sha512-9kmDIvNZqdoHOBZgNtpTBeLWYO/LVipM3H/j62P8848/l/VPEQL6N3uxU9pvP1oZAsXyC2MEnFP3ovRjo7WYNQ==",
|
|
3351
3324
|
"cpu": [
|
|
3352
3325
|
"arm"
|
|
3353
3326
|
],
|
|
@@ -3359,8 +3332,8 @@
|
|
|
3359
3332
|
]
|
|
3360
3333
|
},
|
|
3361
3334
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
3362
|
-
"version": "4.62.
|
|
3363
|
-
"integrity": "sha512-
|
|
3335
|
+
"version": "4.62.4",
|
|
3336
|
+
"integrity": "sha512-CcnXHWnXg69g+DX5VWL3FHts3qMRN2uVEHX+BZvGLdd07/gXkn3ePjYtO1LDJvxkGKVHMclKBRa1QUTH+6toYQ==",
|
|
3364
3337
|
"cpu": [
|
|
3365
3338
|
"arm64"
|
|
3366
3339
|
],
|
|
@@ -3372,8 +3345,8 @@
|
|
|
3372
3345
|
]
|
|
3373
3346
|
},
|
|
3374
3347
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
3375
|
-
"version": "4.62.
|
|
3376
|
-
"integrity": "sha512-
|
|
3348
|
+
"version": "4.62.4",
|
|
3349
|
+
"integrity": "sha512-iFOibiHnTRuhrWLlRsOQFdZJJIa7S8OwkneJr4ocALP16u5yk6lWLINFwhHaEqBFMsKDUZofLkGos7+CPzGB3g==",
|
|
3377
3350
|
"cpu": [
|
|
3378
3351
|
"arm64"
|
|
3379
3352
|
],
|
|
@@ -3385,8 +3358,8 @@
|
|
|
3385
3358
|
]
|
|
3386
3359
|
},
|
|
3387
3360
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
3388
|
-
"version": "4.62.
|
|
3389
|
-
"integrity": "sha512-
|
|
3361
|
+
"version": "4.62.4",
|
|
3362
|
+
"integrity": "sha512-XnWYMI7euHlb5a871xPja+Gm7DRCFU+FGRrtS2sMq9N8FvqtpagUy6gD4YOemC5MRk9xbh8+jYMEJbigFQwsgA==",
|
|
3390
3363
|
"cpu": [
|
|
3391
3364
|
"loong64"
|
|
3392
3365
|
],
|
|
@@ -3398,8 +3371,8 @@
|
|
|
3398
3371
|
]
|
|
3399
3372
|
},
|
|
3400
3373
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
3401
|
-
"version": "4.62.
|
|
3402
|
-
"integrity": "sha512-
|
|
3374
|
+
"version": "4.62.4",
|
|
3375
|
+
"integrity": "sha512-qGDAlO0U8xedCcsdRm9oaoQY8DAx/QT7uIxJWhCdx0ceIWX783UC9QSYkdpzAe29wNiVfp24+bZdQmn49o45SQ==",
|
|
3403
3376
|
"cpu": [
|
|
3404
3377
|
"loong64"
|
|
3405
3378
|
],
|
|
@@ -3411,8 +3384,8 @@
|
|
|
3411
3384
|
]
|
|
3412
3385
|
},
|
|
3413
3386
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
3414
|
-
"version": "4.62.
|
|
3415
|
-
"integrity": "sha512-
|
|
3387
|
+
"version": "4.62.4",
|
|
3388
|
+
"integrity": "sha512-ru4H6ezD7ysA5EiEK6qkkaEb4modH8CTej6kUy/gQi20u3kB3G7Zn8snXXkeJSCOFKG/rbPPtM/+9Wgas1961w==",
|
|
3416
3389
|
"cpu": [
|
|
3417
3390
|
"ppc64"
|
|
3418
3391
|
],
|
|
@@ -3424,8 +3397,8 @@
|
|
|
3424
3397
|
]
|
|
3425
3398
|
},
|
|
3426
3399
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
3427
|
-
"version": "4.62.
|
|
3428
|
-
"integrity": "sha512-
|
|
3400
|
+
"version": "4.62.4",
|
|
3401
|
+
"integrity": "sha512-2W4MO5WQVJnbJaZdvDb9rhBDuFU1nKIepPFpJUBsTh2k1YY2g+ODViaWuyOAjQ5cOP7NvrvLzt3wvHOoiAvc7w==",
|
|
3429
3402
|
"cpu": [
|
|
3430
3403
|
"ppc64"
|
|
3431
3404
|
],
|
|
@@ -3437,8 +3410,8 @@
|
|
|
3437
3410
|
]
|
|
3438
3411
|
},
|
|
3439
3412
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
3440
|
-
"version": "4.62.
|
|
3441
|
-
"integrity": "sha512
|
|
3413
|
+
"version": "4.62.4",
|
|
3414
|
+
"integrity": "sha512-+fxjfuoAmVMCYV5QyjoIpu0cp5DOiOTeqYFk1AVaxGr+/ravWLX89XfQmptsoWcaVy/TGf2hexzbUOrCQIL1CQ==",
|
|
3442
3415
|
"cpu": [
|
|
3443
3416
|
"riscv64"
|
|
3444
3417
|
],
|
|
@@ -3450,8 +3423,8 @@
|
|
|
3450
3423
|
]
|
|
3451
3424
|
},
|
|
3452
3425
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
3453
|
-
"version": "4.62.
|
|
3454
|
-
"integrity": "sha512-
|
|
3426
|
+
"version": "4.62.4",
|
|
3427
|
+
"integrity": "sha512-jTn8JfHGL4djjFxPuM06LmNUJDsst2jeVlsd9OmIH6zc5sC9K6rIuO4YajXatLUpBmBKl6b35ro1QZocLi+tcA==",
|
|
3455
3428
|
"cpu": [
|
|
3456
3429
|
"riscv64"
|
|
3457
3430
|
],
|
|
@@ -3463,8 +3436,8 @@
|
|
|
3463
3436
|
]
|
|
3464
3437
|
},
|
|
3465
3438
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
3466
|
-
"version": "4.62.
|
|
3467
|
-
"integrity": "sha512-
|
|
3439
|
+
"version": "4.62.4",
|
|
3440
|
+
"integrity": "sha512-oCJCJL4pXsoDcP2QZ+JVlPTIRc6266zsIaeJJsWImmF7HO0W8nb6HuSgZlMWxJwaPf8ehbSw8yo0EUw925hKsA==",
|
|
3468
3441
|
"cpu": [
|
|
3469
3442
|
"s390x"
|
|
3470
3443
|
],
|
|
@@ -3476,8 +3449,8 @@
|
|
|
3476
3449
|
]
|
|
3477
3450
|
},
|
|
3478
3451
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
3479
|
-
"version": "4.62.
|
|
3480
|
-
"integrity": "sha512-
|
|
3452
|
+
"version": "4.62.4",
|
|
3453
|
+
"integrity": "sha512-W69hukhZ3KKNRCaMIEzKvcFye42hh0FE1+YoYaf5+Ikacuftoco6yO/xouz0hc5d5W/s3yBro5jRiuEE/Q5vUw==",
|
|
3481
3454
|
"cpu": [
|
|
3482
3455
|
"x64"
|
|
3483
3456
|
],
|
|
@@ -3489,8 +3462,8 @@
|
|
|
3489
3462
|
]
|
|
3490
3463
|
},
|
|
3491
3464
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
3492
|
-
"version": "4.62.
|
|
3493
|
-
"integrity": "sha512-
|
|
3465
|
+
"version": "4.62.4",
|
|
3466
|
+
"integrity": "sha512-qiXbGG2jkjXhzXpsFZSR2Xpb8DN/UaxYsbb/STbuR/6fpaDgRmmaq1B/LmtF2wQFOFOSsK2jdE0RZ3a0zHn4QA==",
|
|
3494
3467
|
"cpu": [
|
|
3495
3468
|
"x64"
|
|
3496
3469
|
],
|
|
@@ -3502,8 +3475,8 @@
|
|
|
3502
3475
|
]
|
|
3503
3476
|
},
|
|
3504
3477
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
3505
|
-
"version": "4.62.
|
|
3506
|
-
"integrity": "sha512-
|
|
3478
|
+
"version": "4.62.4",
|
|
3479
|
+
"integrity": "sha512-nWeM//hxv8mIo6jD7Hu4o48DVmV9pbV6gsKaWU+4NFyqHoPKwrkRiZGLKUhOBk8qNmDmpwFtPKg80Bo/Tn4xiQ==",
|
|
3507
3480
|
"cpu": [
|
|
3508
3481
|
"x64"
|
|
3509
3482
|
],
|
|
@@ -3515,8 +3488,8 @@
|
|
|
3515
3488
|
]
|
|
3516
3489
|
},
|
|
3517
3490
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
3518
|
-
"version": "4.62.
|
|
3519
|
-
"integrity": "sha512-
|
|
3491
|
+
"version": "4.62.4",
|
|
3492
|
+
"integrity": "sha512-s62SQ/vgsRSvMwDkOEfTqfgASF0f26ZNaQuTA6Aok5lrikf89yI2W0gFHvZb2Jpgc6N8JnOKZgCK2iciO3CsxQ==",
|
|
3520
3493
|
"cpu": [
|
|
3521
3494
|
"arm64"
|
|
3522
3495
|
],
|
|
@@ -3528,8 +3501,8 @@
|
|
|
3528
3501
|
]
|
|
3529
3502
|
},
|
|
3530
3503
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
3531
|
-
"version": "4.62.
|
|
3532
|
-
"integrity": "sha512-
|
|
3504
|
+
"version": "4.62.4",
|
|
3505
|
+
"integrity": "sha512-J6wGf8TVGbXJq+HH+ttTvrcfNKPbuZecV6KT1B8I18BC5IURUh5kl4Yl5OEP5eFIUoI5BWxCsyYMhFsDx8kekw==",
|
|
3533
3506
|
"cpu": [
|
|
3534
3507
|
"arm64"
|
|
3535
3508
|
],
|
|
@@ -3541,8 +3514,8 @@
|
|
|
3541
3514
|
]
|
|
3542
3515
|
},
|
|
3543
3516
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
3544
|
-
"version": "4.62.
|
|
3545
|
-
"integrity": "sha512-
|
|
3517
|
+
"version": "4.62.4",
|
|
3518
|
+
"integrity": "sha512-zmfrQd/0wu6oJs8Vq8KwY/YtsKSsLtKe/HwAP4Wqy8LhWjeT55fHRAkOhYQ12wI3ayS4Tt12d5CDRD7N96SAYQ==",
|
|
3546
3519
|
"cpu": [
|
|
3547
3520
|
"ia32"
|
|
3548
3521
|
],
|
|
@@ -3554,8 +3527,8 @@
|
|
|
3554
3527
|
]
|
|
3555
3528
|
},
|
|
3556
3529
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
3557
|
-
"version": "4.62.
|
|
3558
|
-
"integrity": "sha512-
|
|
3530
|
+
"version": "4.62.4",
|
|
3531
|
+
"integrity": "sha512-qPzHqdj9rfUD+w79dtE07zi/kFwKyCJqplp5K5ygeLTp7jLpAoc16OAH39HSmRC9UpozaecsleI8uAdEj6v2yw==",
|
|
3559
3532
|
"cpu": [
|
|
3560
3533
|
"x64"
|
|
3561
3534
|
],
|
|
@@ -3567,8 +3540,8 @@
|
|
|
3567
3540
|
]
|
|
3568
3541
|
},
|
|
3569
3542
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
3570
|
-
"version": "4.62.
|
|
3571
|
-
"integrity": "sha512-
|
|
3543
|
+
"version": "4.62.4",
|
|
3544
|
+
"integrity": "sha512-zD6NdeWEByGE9QF9vCrlJ5YQB4oq9q91kPZS37Jwj5hOkvR1lTBSpsKhKDw4IJtbQ35LsTS1HD9DZYGKIshU1Q==",
|
|
3572
3545
|
"cpu": [
|
|
3573
3546
|
"x64"
|
|
3574
3547
|
],
|
|
@@ -3597,8 +3570,8 @@
|
|
|
3597
3570
|
"license": "MIT"
|
|
3598
3571
|
},
|
|
3599
3572
|
"node_modules/@sinclair/typebox": {
|
|
3600
|
-
"version": "0.34.
|
|
3601
|
-
"integrity": "sha512-
|
|
3573
|
+
"version": "0.34.52",
|
|
3574
|
+
"integrity": "sha512-XiMQh7qqVlxZzcVD+kkGMNGMzcTrDMLWI7S4x7z1MkCkbDPrekpZXEUK0eZqZFMuHQg2a2DZOcDIh9o5v3Gonw==",
|
|
3602
3575
|
"dev": true,
|
|
3603
3576
|
"license": "MIT"
|
|
3604
3577
|
},
|
|
@@ -3957,8 +3930,8 @@
|
|
|
3957
3930
|
"license": "MIT"
|
|
3958
3931
|
},
|
|
3959
3932
|
"node_modules/@types/d3-geo": {
|
|
3960
|
-
"version": "3.1.
|
|
3961
|
-
"integrity": "sha512-
|
|
3933
|
+
"version": "3.1.1",
|
|
3934
|
+
"integrity": "sha512-65Emv9fQiQQqphLlRkuQ5ypPsOmWPhtBGCMv61JDPEPMvsx+gzhGf74yw1a78xFKPj6zw4AgQICJoQv0vK9M2w==",
|
|
3962
3935
|
"dev": true,
|
|
3963
3936
|
"license": "MIT",
|
|
3964
3937
|
"dependencies": {
|
|
@@ -4188,8 +4161,8 @@
|
|
|
4188
4161
|
"license": "MIT"
|
|
4189
4162
|
},
|
|
4190
4163
|
"node_modules/@types/lodash": {
|
|
4191
|
-
"version": "4.17.
|
|
4192
|
-
"integrity": "sha512
|
|
4164
|
+
"version": "4.17.25",
|
|
4165
|
+
"integrity": "sha512-+K1NIO8I+F9/wNulfVvu23QYd0Pe9/OCqRrim4NoYIf1VoEDL90Ve4ClzpyqBLc7NpGGWRvYNCKZ1BE/Jpf8dQ==",
|
|
4193
4166
|
"dev": true,
|
|
4194
4167
|
"license": "MIT"
|
|
4195
4168
|
},
|
|
@@ -4216,11 +4189,6 @@
|
|
|
4216
4189
|
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
|
|
4217
4190
|
"license": "MIT"
|
|
4218
4191
|
},
|
|
4219
|
-
"node_modules/@types/prettier": {
|
|
4220
|
-
"version": "2.7.1",
|
|
4221
|
-
"integrity": "sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==",
|
|
4222
|
-
"license": "MIT"
|
|
4223
|
-
},
|
|
4224
4192
|
"node_modules/@types/prop-types": {
|
|
4225
4193
|
"version": "15.7.15",
|
|
4226
4194
|
"integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
|
|
@@ -4296,8 +4264,9 @@
|
|
|
4296
4264
|
"license": "MIT"
|
|
4297
4265
|
},
|
|
4298
4266
|
"node_modules/@types/yargs": {
|
|
4299
|
-
"version": "17.0.
|
|
4300
|
-
"integrity": "sha512-
|
|
4267
|
+
"version": "17.0.35",
|
|
4268
|
+
"integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==",
|
|
4269
|
+
"dev": true,
|
|
4301
4270
|
"license": "MIT",
|
|
4302
4271
|
"dependencies": {
|
|
4303
4272
|
"@types/yargs-parser": "*"
|
|
@@ -4306,19 +4275,20 @@
|
|
|
4306
4275
|
"node_modules/@types/yargs-parser": {
|
|
4307
4276
|
"version": "21.0.3",
|
|
4308
4277
|
"integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
|
|
4278
|
+
"dev": true,
|
|
4309
4279
|
"license": "MIT"
|
|
4310
4280
|
},
|
|
4311
4281
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4312
|
-
"version": "8.
|
|
4313
|
-
"integrity": "sha512-
|
|
4282
|
+
"version": "8.66.0",
|
|
4283
|
+
"integrity": "sha512-p088eaGrzYz1s+7cov0aMOCkNGTJlVxF4jgubf28c8L0Cv9Rloj8YBHnv4hXLq6IIEE1AsjNWavO+k+8kP2Y0A==",
|
|
4314
4284
|
"dev": true,
|
|
4315
4285
|
"license": "MIT",
|
|
4316
4286
|
"dependencies": {
|
|
4317
4287
|
"@eslint-community/regexpp": "^4.12.2",
|
|
4318
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4319
|
-
"@typescript-eslint/type-utils": "8.
|
|
4320
|
-
"@typescript-eslint/utils": "8.
|
|
4321
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4288
|
+
"@typescript-eslint/scope-manager": "8.66.0",
|
|
4289
|
+
"@typescript-eslint/type-utils": "8.66.0",
|
|
4290
|
+
"@typescript-eslint/utils": "8.66.0",
|
|
4291
|
+
"@typescript-eslint/visitor-keys": "8.66.0",
|
|
4322
4292
|
"ignore": "^7.0.5",
|
|
4323
4293
|
"natural-compare": "^1.4.0",
|
|
4324
4294
|
"ts-api-utils": "^2.5.0"
|
|
@@ -4331,7 +4301,7 @@
|
|
|
4331
4301
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4332
4302
|
},
|
|
4333
4303
|
"peerDependencies": {
|
|
4334
|
-
"@typescript-eslint/parser": "^8.
|
|
4304
|
+
"@typescript-eslint/parser": "^8.66.0",
|
|
4335
4305
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4336
4306
|
"typescript": ">=4.8.4 <6.1.0"
|
|
4337
4307
|
}
|
|
@@ -4346,15 +4316,15 @@
|
|
|
4346
4316
|
}
|
|
4347
4317
|
},
|
|
4348
4318
|
"node_modules/@typescript-eslint/parser": {
|
|
4349
|
-
"version": "8.
|
|
4350
|
-
"integrity": "sha512-
|
|
4319
|
+
"version": "8.66.0",
|
|
4320
|
+
"integrity": "sha512-X6ypGChaWYk6PBtUg2BwuTZEFFcHJAtGTVJ9/lCTOufhZ4i9fNolQNnktq+kkMCwMj7V8Svsq7+TxSDslmhE0g==",
|
|
4351
4321
|
"dev": true,
|
|
4352
4322
|
"license": "MIT",
|
|
4353
4323
|
"dependencies": {
|
|
4354
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4355
|
-
"@typescript-eslint/types": "8.
|
|
4356
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4357
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4324
|
+
"@typescript-eslint/scope-manager": "8.66.0",
|
|
4325
|
+
"@typescript-eslint/types": "8.66.0",
|
|
4326
|
+
"@typescript-eslint/typescript-estree": "8.66.0",
|
|
4327
|
+
"@typescript-eslint/visitor-keys": "8.66.0",
|
|
4358
4328
|
"debug": "^4.4.3"
|
|
4359
4329
|
},
|
|
4360
4330
|
"engines": {
|
|
@@ -4370,13 +4340,13 @@
|
|
|
4370
4340
|
}
|
|
4371
4341
|
},
|
|
4372
4342
|
"node_modules/@typescript-eslint/project-service": {
|
|
4373
|
-
"version": "8.
|
|
4374
|
-
"integrity": "sha512-
|
|
4343
|
+
"version": "8.66.0",
|
|
4344
|
+
"integrity": "sha512-7MthGPTt4BP69lSryqpqq8HQqxuzynssckL/jyDyk3+TNMQ3y2jFWkptCrktWvBrP+EH787Nl5N5Qpw7WZg+5g==",
|
|
4375
4345
|
"dev": true,
|
|
4376
4346
|
"license": "MIT",
|
|
4377
4347
|
"dependencies": {
|
|
4378
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4379
|
-
"@typescript-eslint/types": "^8.
|
|
4348
|
+
"@typescript-eslint/tsconfig-utils": "^8.66.0",
|
|
4349
|
+
"@typescript-eslint/types": "^8.66.0",
|
|
4380
4350
|
"debug": "^4.4.3"
|
|
4381
4351
|
},
|
|
4382
4352
|
"engines": {
|
|
@@ -4391,13 +4361,13 @@
|
|
|
4391
4361
|
}
|
|
4392
4362
|
},
|
|
4393
4363
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4394
|
-
"version": "8.
|
|
4395
|
-
"integrity": "sha512-
|
|
4364
|
+
"version": "8.66.0",
|
|
4365
|
+
"integrity": "sha512-8TGcH25j9zqJ/IULB/ppyhRvxA8QYfFEZ7nfbg6/BN9spDgb8fPWQXlE5l8TWBL50EtUx007uZ1o9VOwrq2/9g==",
|
|
4396
4366
|
"dev": true,
|
|
4397
4367
|
"license": "MIT",
|
|
4398
4368
|
"dependencies": {
|
|
4399
|
-
"@typescript-eslint/types": "8.
|
|
4400
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4369
|
+
"@typescript-eslint/types": "8.66.0",
|
|
4370
|
+
"@typescript-eslint/visitor-keys": "8.66.0"
|
|
4401
4371
|
},
|
|
4402
4372
|
"engines": {
|
|
4403
4373
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4408,8 +4378,8 @@
|
|
|
4408
4378
|
}
|
|
4409
4379
|
},
|
|
4410
4380
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4411
|
-
"version": "8.
|
|
4412
|
-
"integrity": "sha512-
|
|
4381
|
+
"version": "8.66.0",
|
|
4382
|
+
"integrity": "sha512-9D5gLYZG4rOjcoag8MQ/fWI8WqA9wcPDyOGyWtWFhvM1lHRbliqUSPIY5J3zqCU1tvSwzXxnnjhQhz5Ne7mJ4g==",
|
|
4413
4383
|
"dev": true,
|
|
4414
4384
|
"license": "MIT",
|
|
4415
4385
|
"engines": {
|
|
@@ -4424,14 +4394,14 @@
|
|
|
4424
4394
|
}
|
|
4425
4395
|
},
|
|
4426
4396
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4427
|
-
"version": "8.
|
|
4428
|
-
"integrity": "sha512-
|
|
4397
|
+
"version": "8.66.0",
|
|
4398
|
+
"integrity": "sha512-LG2dWfjZQQp0ADtAu/EWJVayefGL2UEZ3CDeI44D9v3rXB/WYUqE/jpO28KrEKul5AySrmI+Zh1v6v+xW2U9+g==",
|
|
4429
4399
|
"dev": true,
|
|
4430
4400
|
"license": "MIT",
|
|
4431
4401
|
"dependencies": {
|
|
4432
|
-
"@typescript-eslint/types": "8.
|
|
4433
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4434
|
-
"@typescript-eslint/utils": "8.
|
|
4402
|
+
"@typescript-eslint/types": "8.66.0",
|
|
4403
|
+
"@typescript-eslint/typescript-estree": "8.66.0",
|
|
4404
|
+
"@typescript-eslint/utils": "8.66.0",
|
|
4435
4405
|
"debug": "^4.4.3",
|
|
4436
4406
|
"ts-api-utils": "^2.5.0"
|
|
4437
4407
|
},
|
|
@@ -4448,8 +4418,8 @@
|
|
|
4448
4418
|
}
|
|
4449
4419
|
},
|
|
4450
4420
|
"node_modules/@typescript-eslint/types": {
|
|
4451
|
-
"version": "8.
|
|
4452
|
-
"integrity": "sha512-
|
|
4421
|
+
"version": "8.66.0",
|
|
4422
|
+
"integrity": "sha512-H6gcYaSDOyvL3AD/jHUtUFo2jqGgn/F6nuyuZSu0QTesxL+cP4dQoIMrODRofuJC09g64+WgZ6tE19Y1N2YIFQ==",
|
|
4453
4423
|
"dev": true,
|
|
4454
4424
|
"license": "MIT",
|
|
4455
4425
|
"engines": {
|
|
@@ -4461,15 +4431,15 @@
|
|
|
4461
4431
|
}
|
|
4462
4432
|
},
|
|
4463
4433
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4464
|
-
"version": "8.
|
|
4465
|
-
"integrity": "sha512-
|
|
4434
|
+
"version": "8.66.0",
|
|
4435
|
+
"integrity": "sha512-8/x4INiiQb10jGgXYD7116/zQ+OL84ZIFn0za68wwFHCanT/VLbBEroWht8RV8fn0/ZCAoazHLQgwUC0UQcDfg==",
|
|
4466
4436
|
"dev": true,
|
|
4467
4437
|
"license": "MIT",
|
|
4468
4438
|
"dependencies": {
|
|
4469
|
-
"@typescript-eslint/project-service": "8.
|
|
4470
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4471
|
-
"@typescript-eslint/types": "8.
|
|
4472
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4439
|
+
"@typescript-eslint/project-service": "8.66.0",
|
|
4440
|
+
"@typescript-eslint/tsconfig-utils": "8.66.0",
|
|
4441
|
+
"@typescript-eslint/types": "8.66.0",
|
|
4442
|
+
"@typescript-eslint/visitor-keys": "8.66.0",
|
|
4473
4443
|
"debug": "^4.4.3",
|
|
4474
4444
|
"minimatch": "^10.2.2",
|
|
4475
4445
|
"semver": "^7.7.3",
|
|
@@ -4497,24 +4467,24 @@
|
|
|
4497
4467
|
}
|
|
4498
4468
|
},
|
|
4499
4469
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
4500
|
-
"version": "5.0.
|
|
4501
|
-
"integrity": "sha512-
|
|
4470
|
+
"version": "5.0.9",
|
|
4471
|
+
"integrity": "sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==",
|
|
4502
4472
|
"dev": true,
|
|
4503
4473
|
"license": "MIT",
|
|
4504
4474
|
"dependencies": {
|
|
4505
4475
|
"balanced-match": "^4.0.2"
|
|
4506
4476
|
},
|
|
4507
4477
|
"engines": {
|
|
4508
|
-
"node": "
|
|
4478
|
+
"node": "20 || >=22"
|
|
4509
4479
|
}
|
|
4510
4480
|
},
|
|
4511
4481
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
|
4512
|
-
"version": "10.2.
|
|
4513
|
-
"integrity": "sha512-
|
|
4482
|
+
"version": "10.2.6",
|
|
4483
|
+
"integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==",
|
|
4514
4484
|
"dev": true,
|
|
4515
4485
|
"license": "BlueOak-1.0.0",
|
|
4516
4486
|
"dependencies": {
|
|
4517
|
-
"brace-expansion": "^5.0.
|
|
4487
|
+
"brace-expansion": "^5.0.8"
|
|
4518
4488
|
},
|
|
4519
4489
|
"engines": {
|
|
4520
4490
|
"node": "18 || 20 || >=22"
|
|
@@ -4536,15 +4506,15 @@
|
|
|
4536
4506
|
}
|
|
4537
4507
|
},
|
|
4538
4508
|
"node_modules/@typescript-eslint/utils": {
|
|
4539
|
-
"version": "8.
|
|
4540
|
-
"integrity": "sha512-
|
|
4509
|
+
"version": "8.66.0",
|
|
4510
|
+
"integrity": "sha512-jasearZPolBw5NJNYGMwxzHMF83niVWmMU1VdHzG1CyfI2VS7f7nZltnKtHcg20hW+7Uo5GfK4MeDPoU3qI8EA==",
|
|
4541
4511
|
"dev": true,
|
|
4542
4512
|
"license": "MIT",
|
|
4543
4513
|
"dependencies": {
|
|
4544
4514
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4545
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4546
|
-
"@typescript-eslint/types": "8.
|
|
4547
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4515
|
+
"@typescript-eslint/scope-manager": "8.66.0",
|
|
4516
|
+
"@typescript-eslint/types": "8.66.0",
|
|
4517
|
+
"@typescript-eslint/typescript-estree": "8.66.0"
|
|
4548
4518
|
},
|
|
4549
4519
|
"engines": {
|
|
4550
4520
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4559,12 +4529,12 @@
|
|
|
4559
4529
|
}
|
|
4560
4530
|
},
|
|
4561
4531
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4562
|
-
"version": "8.
|
|
4563
|
-
"integrity": "sha512-
|
|
4532
|
+
"version": "8.66.0",
|
|
4533
|
+
"integrity": "sha512-dkKR8q+lKciskj1Y3vthHktl+3cMLWGyVUP23bRiPZ5O9BRT++4EqDDV+TVeIKBL1VXVEqrJlz8MYbcnvJcAlg==",
|
|
4564
4534
|
"dev": true,
|
|
4565
4535
|
"license": "MIT",
|
|
4566
4536
|
"dependencies": {
|
|
4567
|
-
"@typescript-eslint/types": "8.
|
|
4537
|
+
"@typescript-eslint/types": "8.66.0",
|
|
4568
4538
|
"eslint-visitor-keys": "^5.0.0"
|
|
4569
4539
|
},
|
|
4570
4540
|
"engines": {
|
|
@@ -5074,31 +5044,21 @@
|
|
|
5074
5044
|
}
|
|
5075
5045
|
},
|
|
5076
5046
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
5077
|
-
"version": "1.0.0-rc.
|
|
5078
|
-
"integrity": "sha512-
|
|
5047
|
+
"version": "1.0.0-rc.647684",
|
|
5048
|
+
"integrity": "sha512-e3F7Hobg4yA+O4lDeQi8nxuWrQqQptGZXUKX+kUeQMbDTnDCXyFMpcTq76RSpXtg79q5oIeG2OUr8OaTCkLJnQ==",
|
|
5079
5049
|
"license": "ISC",
|
|
5080
5050
|
"dependencies": {
|
|
5081
5051
|
"@angular/compiler": "12.2.1",
|
|
5082
|
-
"@babel/generator": "7.13.9",
|
|
5083
5052
|
"@babel/parser": "7.13.11",
|
|
5084
|
-
"@babel/traverse": "7.13.0",
|
|
5085
|
-
"@types/lodash": "4.14.191",
|
|
5086
|
-
"@types/node": "18.11.10",
|
|
5087
|
-
"@types/prettier": "2.7.1",
|
|
5088
|
-
"@types/yargs": "17.0.15",
|
|
5089
|
-
"adm-zip": "0.5.9",
|
|
5090
5053
|
"archiver": "7.0.1",
|
|
5091
|
-
"clean-css": "5.1.5",
|
|
5092
|
-
"color": "4.2.3",
|
|
5093
|
-
"css-tree": "2.1.0",
|
|
5094
5054
|
"execa": "5.0.0",
|
|
5095
5055
|
"fs-extra": "9.1.0",
|
|
5096
5056
|
"handlebars": "4.7.7",
|
|
5097
5057
|
"html-entities": "2.3.2",
|
|
5098
|
-
"less": "4.1.1",
|
|
5099
5058
|
"lodash": "4.17.21",
|
|
5100
5059
|
"node-html-parser": "5.0.0",
|
|
5101
5060
|
"rimraf": "3.0.2",
|
|
5061
|
+
"semver": "7.5.0",
|
|
5102
5062
|
"xml2js": "0.6.2",
|
|
5103
5063
|
"yargs": "16.2.0"
|
|
5104
5064
|
},
|
|
@@ -5109,16 +5069,6 @@
|
|
|
5109
5069
|
"node": "22.18.0"
|
|
5110
5070
|
}
|
|
5111
5071
|
},
|
|
5112
|
-
"node_modules/@wavemaker-ai/react-codegen/node_modules/@babel/generator": {
|
|
5113
|
-
"version": "7.13.9",
|
|
5114
|
-
"integrity": "sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==",
|
|
5115
|
-
"license": "MIT",
|
|
5116
|
-
"dependencies": {
|
|
5117
|
-
"@babel/types": "^7.13.0",
|
|
5118
|
-
"jsesc": "^2.5.1",
|
|
5119
|
-
"source-map": "^0.5.0"
|
|
5120
|
-
}
|
|
5121
|
-
},
|
|
5122
5072
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/@babel/parser": {
|
|
5123
5073
|
"version": "7.13.11",
|
|
5124
5074
|
"integrity": "sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q==",
|
|
@@ -5130,32 +5080,6 @@
|
|
|
5130
5080
|
"node": ">=6.0.0"
|
|
5131
5081
|
}
|
|
5132
5082
|
},
|
|
5133
|
-
"node_modules/@wavemaker-ai/react-codegen/node_modules/@babel/traverse": {
|
|
5134
|
-
"version": "7.13.0",
|
|
5135
|
-
"integrity": "sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ==",
|
|
5136
|
-
"license": "MIT",
|
|
5137
|
-
"dependencies": {
|
|
5138
|
-
"@babel/code-frame": "^7.12.13",
|
|
5139
|
-
"@babel/generator": "^7.13.0",
|
|
5140
|
-
"@babel/helper-function-name": "^7.12.13",
|
|
5141
|
-
"@babel/helper-split-export-declaration": "^7.12.13",
|
|
5142
|
-
"@babel/parser": "^7.13.0",
|
|
5143
|
-
"@babel/types": "^7.13.0",
|
|
5144
|
-
"debug": "^4.1.0",
|
|
5145
|
-
"globals": "^11.1.0",
|
|
5146
|
-
"lodash": "^4.17.19"
|
|
5147
|
-
}
|
|
5148
|
-
},
|
|
5149
|
-
"node_modules/@wavemaker-ai/react-codegen/node_modules/@types/lodash": {
|
|
5150
|
-
"version": "4.14.191",
|
|
5151
|
-
"integrity": "sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==",
|
|
5152
|
-
"license": "MIT"
|
|
5153
|
-
},
|
|
5154
|
-
"node_modules/@wavemaker-ai/react-codegen/node_modules/@types/node": {
|
|
5155
|
-
"version": "18.11.10",
|
|
5156
|
-
"integrity": "sha512-juG3RWMBOqcOuXC643OAdSA525V44cVgGV6dUDuiFtss+8Fk5x1hI93Rsld43VeJVIeqlP9I7Fn9/qaVqoEAuQ==",
|
|
5157
|
-
"license": "MIT"
|
|
5158
|
-
},
|
|
5159
5083
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/cliui": {
|
|
5160
5084
|
"version": "7.0.4",
|
|
5161
5085
|
"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
|
|
@@ -5218,14 +5142,6 @@
|
|
|
5218
5142
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5219
5143
|
}
|
|
5220
5144
|
},
|
|
5221
|
-
"node_modules/@wavemaker-ai/react-codegen/node_modules/globals": {
|
|
5222
|
-
"version": "11.12.0",
|
|
5223
|
-
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
|
|
5224
|
-
"license": "MIT",
|
|
5225
|
-
"engines": {
|
|
5226
|
-
"node": ">=4"
|
|
5227
|
-
}
|
|
5228
|
-
},
|
|
5229
5145
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/human-signals": {
|
|
5230
5146
|
"version": "2.1.0",
|
|
5231
5147
|
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
|
|
@@ -5242,15 +5158,15 @@
|
|
|
5242
5158
|
"node": ">=8"
|
|
5243
5159
|
}
|
|
5244
5160
|
},
|
|
5245
|
-
"node_modules/@wavemaker-ai/react-codegen/node_modules/
|
|
5246
|
-
"version": "
|
|
5247
|
-
"integrity": "sha512-
|
|
5248
|
-
"license": "
|
|
5249
|
-
"
|
|
5250
|
-
"
|
|
5161
|
+
"node_modules/@wavemaker-ai/react-codegen/node_modules/lru-cache": {
|
|
5162
|
+
"version": "6.0.0",
|
|
5163
|
+
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
5164
|
+
"license": "ISC",
|
|
5165
|
+
"dependencies": {
|
|
5166
|
+
"yallist": "^4.0.0"
|
|
5251
5167
|
},
|
|
5252
5168
|
"engines": {
|
|
5253
|
-
"node": ">=
|
|
5169
|
+
"node": ">=10"
|
|
5254
5170
|
}
|
|
5255
5171
|
},
|
|
5256
5172
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/npm-run-path": {
|
|
@@ -5278,6 +5194,20 @@
|
|
|
5278
5194
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5279
5195
|
}
|
|
5280
5196
|
},
|
|
5197
|
+
"node_modules/@wavemaker-ai/react-codegen/node_modules/semver": {
|
|
5198
|
+
"version": "7.5.0",
|
|
5199
|
+
"integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
|
|
5200
|
+
"license": "ISC",
|
|
5201
|
+
"dependencies": {
|
|
5202
|
+
"lru-cache": "^6.0.0"
|
|
5203
|
+
},
|
|
5204
|
+
"bin": {
|
|
5205
|
+
"semver": "bin/semver.js"
|
|
5206
|
+
},
|
|
5207
|
+
"engines": {
|
|
5208
|
+
"node": ">=10"
|
|
5209
|
+
}
|
|
5210
|
+
},
|
|
5281
5211
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/signal-exit": {
|
|
5282
5212
|
"version": "3.0.7",
|
|
5283
5213
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
@@ -5331,6 +5261,11 @@
|
|
|
5331
5261
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
5332
5262
|
}
|
|
5333
5263
|
},
|
|
5264
|
+
"node_modules/@wavemaker-ai/react-codegen/node_modules/yallist": {
|
|
5265
|
+
"version": "4.0.0",
|
|
5266
|
+
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
|
5267
|
+
"license": "ISC"
|
|
5268
|
+
},
|
|
5334
5269
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/yargs": {
|
|
5335
5270
|
"version": "16.2.0",
|
|
5336
5271
|
"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
|
|
@@ -5357,8 +5292,8 @@
|
|
|
5357
5292
|
}
|
|
5358
5293
|
},
|
|
5359
5294
|
"node_modules/@wavemaker-ai/variables": {
|
|
5360
|
-
"version": "1.0.0-rc.
|
|
5361
|
-
"integrity": "sha512-
|
|
5295
|
+
"version": "1.0.0-rc.647684",
|
|
5296
|
+
"integrity": "sha512-ez4fTdBCTb8XIU6ZKEFbrVkgi2TyPuhebyVjWKTDveb/gHgOvzl507t7jVjF7xDOjdcZfwndEC6YvA6fDmTcmg==",
|
|
5362
5297
|
"license": "ISC",
|
|
5363
5298
|
"dependencies": {
|
|
5364
5299
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -5396,8 +5331,8 @@
|
|
|
5396
5331
|
}
|
|
5397
5332
|
},
|
|
5398
5333
|
"node_modules/acorn": {
|
|
5399
|
-
"version": "8.
|
|
5400
|
-
"integrity": "sha512-
|
|
5334
|
+
"version": "8.18.0",
|
|
5335
|
+
"integrity": "sha512-lGq+9yr1/GuAWaVYIHRjvvySG5/4VfKIvC8EWxStPdcDh/Ka7FG3twP6v4d5BkravUilhIAsG4Qj83t02LWUPQ==",
|
|
5401
5336
|
"dev": true,
|
|
5402
5337
|
"license": "MIT",
|
|
5403
5338
|
"bin": {
|
|
@@ -5416,14 +5351,6 @@
|
|
|
5416
5351
|
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
5417
5352
|
}
|
|
5418
5353
|
},
|
|
5419
|
-
"node_modules/adm-zip": {
|
|
5420
|
-
"version": "0.5.9",
|
|
5421
|
-
"integrity": "sha512-s+3fXLkeeLjZ2kLjCBwQufpI5fuN+kIGBxu6530nVQZGVol0d7Y/M88/xw9HGGUcJjKf8LutN3VPRUBq6N7Ajg==",
|
|
5422
|
-
"license": "MIT",
|
|
5423
|
-
"engines": {
|
|
5424
|
-
"node": ">=6.0"
|
|
5425
|
-
}
|
|
5426
|
-
},
|
|
5427
5354
|
"node_modules/agent-base": {
|
|
5428
5355
|
"version": "7.1.4",
|
|
5429
5356
|
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
|
|
@@ -5850,8 +5777,8 @@
|
|
|
5850
5777
|
}
|
|
5851
5778
|
},
|
|
5852
5779
|
"node_modules/bare-fs": {
|
|
5853
|
-
"version": "4.
|
|
5854
|
-
"integrity": "sha512-
|
|
5780
|
+
"version": "4.8.0",
|
|
5781
|
+
"integrity": "sha512-fM+MhCvdQhZ7NV6S95a07gPSqjIYKn6mFaXfx266wN3ajZGl/+1AzH+ubkXQ0fFZvOe2nk9VHkzdYkQE5zMV3Q==",
|
|
5855
5782
|
"license": "Apache-2.0",
|
|
5856
5783
|
"dependencies": {
|
|
5857
5784
|
"bare-events": "^2.5.4",
|
|
@@ -5861,7 +5788,7 @@
|
|
|
5861
5788
|
"fast-fifo": "^1.3.2"
|
|
5862
5789
|
},
|
|
5863
5790
|
"engines": {
|
|
5864
|
-
"bare": ">=1.
|
|
5791
|
+
"bare": ">=1.28.0"
|
|
5865
5792
|
},
|
|
5866
5793
|
"peerDependencies": {
|
|
5867
5794
|
"bare-buffer": "*"
|
|
@@ -5904,8 +5831,8 @@
|
|
|
5904
5831
|
}
|
|
5905
5832
|
},
|
|
5906
5833
|
"node_modules/bare-url": {
|
|
5907
|
-
"version": "2.
|
|
5908
|
-
"integrity": "sha512-
|
|
5834
|
+
"version": "2.5.1",
|
|
5835
|
+
"integrity": "sha512-cD5ciQuKlx+eumTCfqbfiL+fhQm+dHbVNB/cX4+d+I/nx4JsVop9VoFEPAs5RJ6I84QR6bZIBjpd2kjDOYeWcg==",
|
|
5909
5836
|
"license": "Apache-2.0",
|
|
5910
5837
|
"dependencies": {
|
|
5911
5838
|
"bare-path": "^3.0.0"
|
|
@@ -5931,8 +5858,8 @@
|
|
|
5931
5858
|
"license": "MIT"
|
|
5932
5859
|
},
|
|
5933
5860
|
"node_modules/baseline-browser-mapping": {
|
|
5934
|
-
"version": "2.
|
|
5935
|
-
"integrity": "sha512-
|
|
5861
|
+
"version": "2.11.12",
|
|
5862
|
+
"integrity": "sha512-r7WnVImvVCeFpf2DOXfy41aPWzeNg3H/A2X4dKmy1QL0MSyyk/e7z8ihJ3N6Nn2PsdhkVlqnEfnUE4a05P2aTA==",
|
|
5936
5863
|
"license": "Apache-2.0",
|
|
5937
5864
|
"bin": {
|
|
5938
5865
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5956,8 +5883,8 @@
|
|
|
5956
5883
|
"license": "ISC"
|
|
5957
5884
|
},
|
|
5958
5885
|
"node_modules/brace-expansion": {
|
|
5959
|
-
"version": "1.1.
|
|
5960
|
-
"integrity": "sha512-
|
|
5886
|
+
"version": "1.1.18",
|
|
5887
|
+
"integrity": "sha512-Edep/X9fGqVNmzKBVsDYIOtD+z1tuezV70LBjdCst9Tqu76lsnvRiZ6oTic1n+/BIwX6QDGAO94PN4N2SADvtw==",
|
|
5961
5888
|
"license": "MIT",
|
|
5962
5889
|
"dependencies": {
|
|
5963
5890
|
"balanced-match": "^1.0.0",
|
|
@@ -5976,8 +5903,8 @@
|
|
|
5976
5903
|
}
|
|
5977
5904
|
},
|
|
5978
5905
|
"node_modules/browserslist": {
|
|
5979
|
-
"version": "4.28.
|
|
5980
|
-
"integrity": "sha512-
|
|
5906
|
+
"version": "4.28.8",
|
|
5907
|
+
"integrity": "sha512-V2NpofLblG64mfOtSgDhOJESZEGogzDMBv/q+W6oc4LXWP/q75eOXoOaaOu1EOadB9U4Bwx/e0yzbvwKH8zalA==",
|
|
5981
5908
|
"dev": true,
|
|
5982
5909
|
"funding": [
|
|
5983
5910
|
{
|
|
@@ -5995,11 +5922,11 @@
|
|
|
5995
5922
|
],
|
|
5996
5923
|
"license": "MIT",
|
|
5997
5924
|
"dependencies": {
|
|
5998
|
-
"baseline-browser-mapping": "^2.
|
|
5999
|
-
"caniuse-lite": "^1.0.
|
|
6000
|
-
"electron-to-chromium": "^1.5.
|
|
6001
|
-
"node-releases": "^2.0.
|
|
6002
|
-
"update-browserslist-db": "^1.
|
|
5925
|
+
"baseline-browser-mapping": "^2.11.12",
|
|
5926
|
+
"caniuse-lite": "^1.0.30001809",
|
|
5927
|
+
"electron-to-chromium": "^1.5.402",
|
|
5928
|
+
"node-releases": "^2.0.53",
|
|
5929
|
+
"update-browserslist-db": "^1.3.0"
|
|
6003
5930
|
},
|
|
6004
5931
|
"bin": {
|
|
6005
5932
|
"browserslist": "cli.js"
|
|
@@ -6103,8 +6030,8 @@
|
|
|
6103
6030
|
}
|
|
6104
6031
|
},
|
|
6105
6032
|
"node_modules/caniuse-lite": {
|
|
6106
|
-
"version": "1.0.
|
|
6107
|
-
"integrity": "sha512-
|
|
6033
|
+
"version": "1.0.30001809",
|
|
6034
|
+
"integrity": "sha512-xxWVywk6a6Arlk+hymeycyn/VgqEfLDxupvhH/xiY5SJ/18kmi9o6MiO320DCUzypORHLtvh0I4i04tUhCNHNQ==",
|
|
6108
6035
|
"funding": [
|
|
6109
6036
|
{
|
|
6110
6037
|
"type": "opencollective",
|
|
@@ -6177,25 +6104,6 @@
|
|
|
6177
6104
|
"node": ">=8"
|
|
6178
6105
|
}
|
|
6179
6106
|
},
|
|
6180
|
-
"node_modules/clean-css": {
|
|
6181
|
-
"version": "5.1.5",
|
|
6182
|
-
"integrity": "sha512-9dr/cU/LjMpU57PXlSvDkVRh0rPxJBXiBtD0+SgYt8ahTCsXtfKjCkNYgIoTC6mBg8CFr5EKhW3DKCaGMUbUfQ==",
|
|
6183
|
-
"license": "MIT",
|
|
6184
|
-
"dependencies": {
|
|
6185
|
-
"source-map": "~0.6.0"
|
|
6186
|
-
},
|
|
6187
|
-
"engines": {
|
|
6188
|
-
"node": ">= 10.0"
|
|
6189
|
-
}
|
|
6190
|
-
},
|
|
6191
|
-
"node_modules/clean-css/node_modules/source-map": {
|
|
6192
|
-
"version": "0.6.1",
|
|
6193
|
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
6194
|
-
"license": "BSD-3-Clause",
|
|
6195
|
-
"engines": {
|
|
6196
|
-
"node": ">=0.10.0"
|
|
6197
|
-
}
|
|
6198
|
-
},
|
|
6199
6107
|
"node_modules/cli-cursor": {
|
|
6200
6108
|
"version": "5.0.0",
|
|
6201
6109
|
"integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
|
|
@@ -6328,18 +6236,6 @@
|
|
|
6328
6236
|
"node": ">=6"
|
|
6329
6237
|
}
|
|
6330
6238
|
},
|
|
6331
|
-
"node_modules/color": {
|
|
6332
|
-
"version": "4.2.3",
|
|
6333
|
-
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
|
|
6334
|
-
"license": "MIT",
|
|
6335
|
-
"dependencies": {
|
|
6336
|
-
"color-convert": "^2.0.1",
|
|
6337
|
-
"color-string": "^1.9.0"
|
|
6338
|
-
},
|
|
6339
|
-
"engines": {
|
|
6340
|
-
"node": ">=12.5.0"
|
|
6341
|
-
}
|
|
6342
|
-
},
|
|
6343
6239
|
"node_modules/color-convert": {
|
|
6344
6240
|
"version": "2.0.1",
|
|
6345
6241
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
@@ -6356,15 +6252,6 @@
|
|
|
6356
6252
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
6357
6253
|
"license": "MIT"
|
|
6358
6254
|
},
|
|
6359
|
-
"node_modules/color-string": {
|
|
6360
|
-
"version": "1.9.1",
|
|
6361
|
-
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
|
|
6362
|
-
"license": "MIT",
|
|
6363
|
-
"dependencies": {
|
|
6364
|
-
"color-name": "^1.0.0",
|
|
6365
|
-
"simple-swizzle": "^0.2.2"
|
|
6366
|
-
}
|
|
6367
|
-
},
|
|
6368
6255
|
"node_modules/colorette": {
|
|
6369
6256
|
"version": "2.0.20",
|
|
6370
6257
|
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
|
|
@@ -6426,17 +6313,6 @@
|
|
|
6426
6313
|
"url": "https://opencollective.com/express"
|
|
6427
6314
|
}
|
|
6428
6315
|
},
|
|
6429
|
-
"node_modules/copy-anything": {
|
|
6430
|
-
"version": "2.0.6",
|
|
6431
|
-
"integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==",
|
|
6432
|
-
"license": "MIT",
|
|
6433
|
-
"dependencies": {
|
|
6434
|
-
"is-what": "^3.14.1"
|
|
6435
|
-
},
|
|
6436
|
-
"funding": {
|
|
6437
|
-
"url": "https://github.com/sponsors/mesqueeb"
|
|
6438
|
-
}
|
|
6439
|
-
},
|
|
6440
6316
|
"node_modules/core-util-is": {
|
|
6441
6317
|
"version": "1.0.3",
|
|
6442
6318
|
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
|
@@ -6517,16 +6393,16 @@
|
|
|
6517
6393
|
}
|
|
6518
6394
|
},
|
|
6519
6395
|
"node_modules/css-tree": {
|
|
6520
|
-
"version": "2.1
|
|
6521
|
-
"integrity": "sha512-
|
|
6396
|
+
"version": "3.2.1",
|
|
6397
|
+
"integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
|
|
6398
|
+
"dev": true,
|
|
6522
6399
|
"license": "MIT",
|
|
6523
6400
|
"dependencies": {
|
|
6524
|
-
"mdn-data": "2.
|
|
6525
|
-
"source-map-js": "^1.
|
|
6401
|
+
"mdn-data": "2.27.1",
|
|
6402
|
+
"source-map-js": "^1.2.1"
|
|
6526
6403
|
},
|
|
6527
6404
|
"engines": {
|
|
6528
|
-
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
6529
|
-
"npm": ">=7.0.0"
|
|
6405
|
+
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
6530
6406
|
}
|
|
6531
6407
|
},
|
|
6532
6408
|
"node_modules/css-what": {
|
|
@@ -6561,43 +6437,6 @@
|
|
|
6561
6437
|
"node": ">=20"
|
|
6562
6438
|
}
|
|
6563
6439
|
},
|
|
6564
|
-
"node_modules/cssstyle/node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
6565
|
-
"version": "1.1.6",
|
|
6566
|
-
"integrity": "sha512-TcJCWFbXLPpJYq6z7bfOyjWYJDiDg2/I4gyUC9pqPNqHFRIey0EB0q0L5cSnQDfWJg8Jd6VadakxdIez/3zkqQ==",
|
|
6567
|
-
"dev": true,
|
|
6568
|
-
"funding": [
|
|
6569
|
-
{
|
|
6570
|
-
"type": "github",
|
|
6571
|
-
"url": "https://github.com/sponsors/csstools"
|
|
6572
|
-
},
|
|
6573
|
-
{
|
|
6574
|
-
"type": "opencollective",
|
|
6575
|
-
"url": "https://opencollective.com/csstools"
|
|
6576
|
-
}
|
|
6577
|
-
],
|
|
6578
|
-
"license": "MIT-0",
|
|
6579
|
-
"peerDependencies": {
|
|
6580
|
-
"css-tree": "^3.2.1"
|
|
6581
|
-
},
|
|
6582
|
-
"peerDependenciesMeta": {
|
|
6583
|
-
"css-tree": {
|
|
6584
|
-
"optional": true
|
|
6585
|
-
}
|
|
6586
|
-
}
|
|
6587
|
-
},
|
|
6588
|
-
"node_modules/cssstyle/node_modules/css-tree": {
|
|
6589
|
-
"version": "3.2.1",
|
|
6590
|
-
"integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
|
|
6591
|
-
"dev": true,
|
|
6592
|
-
"license": "MIT",
|
|
6593
|
-
"dependencies": {
|
|
6594
|
-
"mdn-data": "2.27.1",
|
|
6595
|
-
"source-map-js": "^1.2.1"
|
|
6596
|
-
},
|
|
6597
|
-
"engines": {
|
|
6598
|
-
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
6599
|
-
}
|
|
6600
|
-
},
|
|
6601
6440
|
"node_modules/cssstyle/node_modules/lru-cache": {
|
|
6602
6441
|
"version": "11.5.2",
|
|
6603
6442
|
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
@@ -6607,12 +6446,6 @@
|
|
|
6607
6446
|
"node": "20 || >=22"
|
|
6608
6447
|
}
|
|
6609
6448
|
},
|
|
6610
|
-
"node_modules/cssstyle/node_modules/mdn-data": {
|
|
6611
|
-
"version": "2.27.1",
|
|
6612
|
-
"integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
|
|
6613
|
-
"dev": true,
|
|
6614
|
-
"license": "CC0-1.0"
|
|
6615
|
-
},
|
|
6616
6449
|
"node_modules/csstype": {
|
|
6617
6450
|
"version": "3.2.3",
|
|
6618
6451
|
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
@@ -7277,8 +7110,8 @@
|
|
|
7277
7110
|
"license": "MIT"
|
|
7278
7111
|
},
|
|
7279
7112
|
"node_modules/electron-to-chromium": {
|
|
7280
|
-
"version": "1.5.
|
|
7281
|
-
"integrity": "sha512
|
|
7113
|
+
"version": "1.5.402",
|
|
7114
|
+
"integrity": "sha512-/oOpMaPT6Yg+6/1XQhyIPlzgj7Ye9zf+nNM2Uh6OcE2G2oNptWazFa+qB2Pdqqbsc9KnIDzgAntoYN0dbwOXwA==",
|
|
7282
7115
|
"dev": true,
|
|
7283
7116
|
"license": "ISC"
|
|
7284
7117
|
},
|
|
@@ -7306,18 +7139,6 @@
|
|
|
7306
7139
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
7307
7140
|
}
|
|
7308
7141
|
},
|
|
7309
|
-
"node_modules/errno": {
|
|
7310
|
-
"version": "0.1.8",
|
|
7311
|
-
"integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
|
|
7312
|
-
"license": "MIT",
|
|
7313
|
-
"optional": true,
|
|
7314
|
-
"dependencies": {
|
|
7315
|
-
"prr": "~1.0.1"
|
|
7316
|
-
},
|
|
7317
|
-
"bin": {
|
|
7318
|
-
"errno": "cli.js"
|
|
7319
|
-
}
|
|
7320
|
-
},
|
|
7321
7142
|
"node_modules/error-ex": {
|
|
7322
7143
|
"version": "1.3.4",
|
|
7323
7144
|
"integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
|
|
@@ -8265,8 +8086,8 @@
|
|
|
8265
8086
|
}
|
|
8266
8087
|
},
|
|
8267
8088
|
"node_modules/flatted": {
|
|
8268
|
-
"version": "3.4.
|
|
8269
|
-
"integrity": "sha512-
|
|
8089
|
+
"version": "3.4.4",
|
|
8090
|
+
"integrity": "sha512-5+ybhBZANEJxaH3X5evAFatUxLfEHSr7n6kYJ+1Qd0mUqr4eu9gIf6GDbWHf8RJijHrjjO8G+la14SlL2SeS1Q==",
|
|
8270
8091
|
"dev": true,
|
|
8271
8092
|
"license": "ISC"
|
|
8272
8093
|
},
|
|
@@ -8523,8 +8344,8 @@
|
|
|
8523
8344
|
}
|
|
8524
8345
|
},
|
|
8525
8346
|
"node_modules/get-tsconfig": {
|
|
8526
|
-
"version": "4.14.
|
|
8527
|
-
"integrity": "sha512-
|
|
8347
|
+
"version": "4.14.1",
|
|
8348
|
+
"integrity": "sha512-Dz/6HxkrxgNehhxLVeyv8sad9UzF2xBVeaKBQNDfJ5XiSXmp2gTR0eO0RWiT2NCKS5aGP9jjkOMggTN90qU50A==",
|
|
8528
8349
|
"dev": true,
|
|
8529
8350
|
"license": "MIT",
|
|
8530
8351
|
"dependencies": {
|
|
@@ -8567,8 +8388,8 @@
|
|
|
8567
8388
|
}
|
|
8568
8389
|
},
|
|
8569
8390
|
"node_modules/glob/node_modules/brace-expansion": {
|
|
8570
|
-
"version": "2.1.
|
|
8571
|
-
"integrity": "sha512-
|
|
8391
|
+
"version": "2.1.4",
|
|
8392
|
+
"integrity": "sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==",
|
|
8572
8393
|
"license": "MIT",
|
|
8573
8394
|
"dependencies": {
|
|
8574
8395
|
"balanced-match": "^1.0.0"
|
|
@@ -8890,18 +8711,6 @@
|
|
|
8890
8711
|
"node": ">= 4"
|
|
8891
8712
|
}
|
|
8892
8713
|
},
|
|
8893
|
-
"node_modules/image-size": {
|
|
8894
|
-
"version": "0.5.5",
|
|
8895
|
-
"integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==",
|
|
8896
|
-
"license": "MIT",
|
|
8897
|
-
"optional": true,
|
|
8898
|
-
"bin": {
|
|
8899
|
-
"image-size": "bin/image-size.js"
|
|
8900
|
-
},
|
|
8901
|
-
"engines": {
|
|
8902
|
-
"node": ">=0.10.0"
|
|
8903
|
-
}
|
|
8904
|
-
},
|
|
8905
8714
|
"node_modules/immer": {
|
|
8906
8715
|
"version": "10.2.0",
|
|
8907
8716
|
"integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
|
|
@@ -9446,11 +9255,6 @@
|
|
|
9446
9255
|
"url": "https://github.com/sponsors/ljharb"
|
|
9447
9256
|
}
|
|
9448
9257
|
},
|
|
9449
|
-
"node_modules/is-what": {
|
|
9450
|
-
"version": "3.14.1",
|
|
9451
|
-
"integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==",
|
|
9452
|
-
"license": "MIT"
|
|
9453
|
-
},
|
|
9454
9258
|
"node_modules/isarray": {
|
|
9455
9259
|
"version": "2.0.5",
|
|
9456
9260
|
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
|
|
@@ -9571,8 +9375,8 @@
|
|
|
9571
9375
|
}
|
|
9572
9376
|
},
|
|
9573
9377
|
"node_modules/jest-axe/node_modules/@sinclair/typebox": {
|
|
9574
|
-
"version": "0.27.
|
|
9575
|
-
"integrity": "sha512-
|
|
9378
|
+
"version": "0.27.12",
|
|
9379
|
+
"integrity": "sha512-hhyNJ+nbR6ZR7pToHvllEFun9TL0sbL+tk/ON75lo+Xas054uez98qRbsuNt7MBCyZKK4+8Yli/OAGZhmfBZ/g==",
|
|
9576
9380
|
"dev": true,
|
|
9577
9381
|
"license": "MIT"
|
|
9578
9382
|
},
|
|
@@ -9829,9 +9633,13 @@
|
|
|
9829
9633
|
}
|
|
9830
9634
|
},
|
|
9831
9635
|
"node_modules/jodit": {
|
|
9832
|
-
"version": "4.
|
|
9833
|
-
"integrity": "sha512-
|
|
9834
|
-
"license": "MIT"
|
|
9636
|
+
"version": "4.13.16",
|
|
9637
|
+
"integrity": "sha512-6FrgYid0UdIXtWpq0aG1i4a9qBPFovKcDeL6KEL9pj8xeYtPpPDEuiyj0/Ggd0Nkxjw/UmW2L1yoyawh8C1N/A==",
|
|
9638
|
+
"license": "MIT",
|
|
9639
|
+
"funding": {
|
|
9640
|
+
"type": "commercial",
|
|
9641
|
+
"url": "https://xdsoft.net/jodit/pro/"
|
|
9642
|
+
}
|
|
9835
9643
|
},
|
|
9836
9644
|
"node_modules/jodit-react": {
|
|
9837
9645
|
"version": "5.2.19",
|
|
@@ -9859,8 +9667,8 @@
|
|
|
9859
9667
|
"license": "MIT"
|
|
9860
9668
|
},
|
|
9861
9669
|
"node_modules/js-yaml": {
|
|
9862
|
-
"version": "4.3.
|
|
9863
|
-
"integrity": "sha512-
|
|
9670
|
+
"version": "4.3.1",
|
|
9671
|
+
"integrity": "sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ==",
|
|
9864
9672
|
"dev": true,
|
|
9865
9673
|
"funding": [
|
|
9866
9674
|
{
|
|
@@ -10062,67 +9870,6 @@
|
|
|
10062
9870
|
"safe-buffer": "~5.1.0"
|
|
10063
9871
|
}
|
|
10064
9872
|
},
|
|
10065
|
-
"node_modules/less": {
|
|
10066
|
-
"version": "4.1.1",
|
|
10067
|
-
"integrity": "sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw==",
|
|
10068
|
-
"license": "Apache-2.0",
|
|
10069
|
-
"dependencies": {
|
|
10070
|
-
"copy-anything": "^2.0.1",
|
|
10071
|
-
"parse-node-version": "^1.0.1",
|
|
10072
|
-
"tslib": "^1.10.0"
|
|
10073
|
-
},
|
|
10074
|
-
"bin": {
|
|
10075
|
-
"lessc": "bin/lessc"
|
|
10076
|
-
},
|
|
10077
|
-
"engines": {
|
|
10078
|
-
"node": ">=6"
|
|
10079
|
-
},
|
|
10080
|
-
"optionalDependencies": {
|
|
10081
|
-
"errno": "^0.1.1",
|
|
10082
|
-
"graceful-fs": "^4.1.2",
|
|
10083
|
-
"image-size": "~0.5.0",
|
|
10084
|
-
"make-dir": "^2.1.0",
|
|
10085
|
-
"mime": "^1.4.1",
|
|
10086
|
-
"needle": "^2.5.2",
|
|
10087
|
-
"source-map": "~0.6.0"
|
|
10088
|
-
}
|
|
10089
|
-
},
|
|
10090
|
-
"node_modules/less/node_modules/make-dir": {
|
|
10091
|
-
"version": "2.1.0",
|
|
10092
|
-
"integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
|
|
10093
|
-
"license": "MIT",
|
|
10094
|
-
"optional": true,
|
|
10095
|
-
"dependencies": {
|
|
10096
|
-
"pify": "^4.0.1",
|
|
10097
|
-
"semver": "^5.6.0"
|
|
10098
|
-
},
|
|
10099
|
-
"engines": {
|
|
10100
|
-
"node": ">=6"
|
|
10101
|
-
}
|
|
10102
|
-
},
|
|
10103
|
-
"node_modules/less/node_modules/semver": {
|
|
10104
|
-
"version": "5.7.2",
|
|
10105
|
-
"integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
|
|
10106
|
-
"license": "ISC",
|
|
10107
|
-
"optional": true,
|
|
10108
|
-
"bin": {
|
|
10109
|
-
"semver": "bin/semver"
|
|
10110
|
-
}
|
|
10111
|
-
},
|
|
10112
|
-
"node_modules/less/node_modules/source-map": {
|
|
10113
|
-
"version": "0.6.1",
|
|
10114
|
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
10115
|
-
"license": "BSD-3-Clause",
|
|
10116
|
-
"optional": true,
|
|
10117
|
-
"engines": {
|
|
10118
|
-
"node": ">=0.10.0"
|
|
10119
|
-
}
|
|
10120
|
-
},
|
|
10121
|
-
"node_modules/less/node_modules/tslib": {
|
|
10122
|
-
"version": "1.14.1",
|
|
10123
|
-
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
|
|
10124
|
-
"license": "0BSD"
|
|
10125
|
-
},
|
|
10126
9873
|
"node_modules/levn": {
|
|
10127
9874
|
"version": "0.4.1",
|
|
10128
9875
|
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
|
|
@@ -10455,8 +10202,9 @@
|
|
|
10455
10202
|
}
|
|
10456
10203
|
},
|
|
10457
10204
|
"node_modules/mdn-data": {
|
|
10458
|
-
"version": "2.
|
|
10459
|
-
"integrity": "sha512-
|
|
10205
|
+
"version": "2.27.1",
|
|
10206
|
+
"integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
|
|
10207
|
+
"dev": true,
|
|
10460
10208
|
"license": "CC0-1.0"
|
|
10461
10209
|
},
|
|
10462
10210
|
"node_modules/merge-stream": {
|
|
@@ -10496,18 +10244,6 @@
|
|
|
10496
10244
|
"url": "https://github.com/sponsors/jonschlinkert"
|
|
10497
10245
|
}
|
|
10498
10246
|
},
|
|
10499
|
-
"node_modules/mime": {
|
|
10500
|
-
"version": "1.6.0",
|
|
10501
|
-
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
10502
|
-
"license": "MIT",
|
|
10503
|
-
"optional": true,
|
|
10504
|
-
"bin": {
|
|
10505
|
-
"mime": "cli.js"
|
|
10506
|
-
},
|
|
10507
|
-
"engines": {
|
|
10508
|
-
"node": ">=4"
|
|
10509
|
-
}
|
|
10510
|
-
},
|
|
10511
10247
|
"node_modules/mime-db": {
|
|
10512
10248
|
"version": "1.52.0",
|
|
10513
10249
|
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
@@ -10780,8 +10516,8 @@
|
|
|
10780
10516
|
}
|
|
10781
10517
|
},
|
|
10782
10518
|
"node_modules/nanoid": {
|
|
10783
|
-
"version": "3.3.
|
|
10784
|
-
"integrity": "sha512-
|
|
10519
|
+
"version": "3.3.18",
|
|
10520
|
+
"integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==",
|
|
10785
10521
|
"funding": [
|
|
10786
10522
|
{
|
|
10787
10523
|
"type": "github",
|
|
@@ -10817,44 +10553,6 @@
|
|
|
10817
10553
|
"dev": true,
|
|
10818
10554
|
"license": "MIT"
|
|
10819
10555
|
},
|
|
10820
|
-
"node_modules/needle": {
|
|
10821
|
-
"version": "2.9.1",
|
|
10822
|
-
"integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==",
|
|
10823
|
-
"license": "MIT",
|
|
10824
|
-
"optional": true,
|
|
10825
|
-
"dependencies": {
|
|
10826
|
-
"debug": "^3.2.6",
|
|
10827
|
-
"iconv-lite": "^0.4.4",
|
|
10828
|
-
"sax": "^1.2.4"
|
|
10829
|
-
},
|
|
10830
|
-
"bin": {
|
|
10831
|
-
"needle": "bin/needle"
|
|
10832
|
-
},
|
|
10833
|
-
"engines": {
|
|
10834
|
-
"node": ">= 4.4.x"
|
|
10835
|
-
}
|
|
10836
|
-
},
|
|
10837
|
-
"node_modules/needle/node_modules/debug": {
|
|
10838
|
-
"version": "3.2.7",
|
|
10839
|
-
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
|
|
10840
|
-
"license": "MIT",
|
|
10841
|
-
"optional": true,
|
|
10842
|
-
"dependencies": {
|
|
10843
|
-
"ms": "^2.1.1"
|
|
10844
|
-
}
|
|
10845
|
-
},
|
|
10846
|
-
"node_modules/needle/node_modules/iconv-lite": {
|
|
10847
|
-
"version": "0.4.24",
|
|
10848
|
-
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
|
10849
|
-
"license": "MIT",
|
|
10850
|
-
"optional": true,
|
|
10851
|
-
"dependencies": {
|
|
10852
|
-
"safer-buffer": ">= 2.1.2 < 3"
|
|
10853
|
-
},
|
|
10854
|
-
"engines": {
|
|
10855
|
-
"node": ">=0.10.0"
|
|
10856
|
-
}
|
|
10857
|
-
},
|
|
10858
10556
|
"node_modules/neo-async": {
|
|
10859
10557
|
"version": "2.6.2",
|
|
10860
10558
|
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
|
|
@@ -10948,8 +10646,8 @@
|
|
|
10948
10646
|
}
|
|
10949
10647
|
},
|
|
10950
10648
|
"node_modules/node-releases": {
|
|
10951
|
-
"version": "2.0.
|
|
10952
|
-
"integrity": "sha512-
|
|
10649
|
+
"version": "2.0.53",
|
|
10650
|
+
"integrity": "sha512-D9UOmYG3UH1V+ENW56t5QXBwJw1YEY18ruVeus89Rw+SyIgjPkCO84bRzO3uNIYosJbNwiabWVn48o3uJLjxFQ==",
|
|
10953
10651
|
"dev": true,
|
|
10954
10652
|
"license": "MIT",
|
|
10955
10653
|
"engines": {
|
|
@@ -11161,12 +10859,13 @@
|
|
|
11161
10859
|
"license": "MIT"
|
|
11162
10860
|
},
|
|
11163
10861
|
"node_modules/own-keys": {
|
|
11164
|
-
"version": "1.0.
|
|
11165
|
-
"integrity": "sha512-
|
|
10862
|
+
"version": "1.0.2",
|
|
10863
|
+
"integrity": "sha512-19YVAg7T+WTrxggPukVq7DjTv6+PJ867TmhCvBsYwmbFCsZd344rq2Ld1p0wo8f8Qrrhgp82c6FJRqdXWtSEhg==",
|
|
11166
10864
|
"dev": true,
|
|
11167
10865
|
"license": "MIT",
|
|
11168
10866
|
"dependencies": {
|
|
11169
|
-
"
|
|
10867
|
+
"call-bound": "^1.0.4",
|
|
10868
|
+
"get-intrinsic": "^1.3.0",
|
|
11170
10869
|
"object-keys": "^1.1.1",
|
|
11171
10870
|
"safe-push-apply": "^1.0.0"
|
|
11172
10871
|
},
|
|
@@ -11251,14 +10950,6 @@
|
|
|
11251
10950
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
11252
10951
|
}
|
|
11253
10952
|
},
|
|
11254
|
-
"node_modules/parse-node-version": {
|
|
11255
|
-
"version": "1.0.1",
|
|
11256
|
-
"integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==",
|
|
11257
|
-
"license": "MIT",
|
|
11258
|
-
"engines": {
|
|
11259
|
-
"node": ">= 0.10"
|
|
11260
|
-
}
|
|
11261
|
-
},
|
|
11262
10953
|
"node_modules/parse5": {
|
|
11263
10954
|
"version": "8.0.1",
|
|
11264
10955
|
"integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==",
|
|
@@ -11389,15 +11080,6 @@
|
|
|
11389
11080
|
"node": ">=0.10"
|
|
11390
11081
|
}
|
|
11391
11082
|
},
|
|
11392
|
-
"node_modules/pify": {
|
|
11393
|
-
"version": "4.0.1",
|
|
11394
|
-
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
|
|
11395
|
-
"license": "MIT",
|
|
11396
|
-
"optional": true,
|
|
11397
|
-
"engines": {
|
|
11398
|
-
"node": ">=6"
|
|
11399
|
-
}
|
|
11400
|
-
},
|
|
11401
11083
|
"node_modules/pirates": {
|
|
11402
11084
|
"version": "4.0.7",
|
|
11403
11085
|
"integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
|
|
@@ -11557,12 +11239,6 @@
|
|
|
11557
11239
|
"node": ">=10"
|
|
11558
11240
|
}
|
|
11559
11241
|
},
|
|
11560
|
-
"node_modules/prr": {
|
|
11561
|
-
"version": "1.0.1",
|
|
11562
|
-
"integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==",
|
|
11563
|
-
"license": "MIT",
|
|
11564
|
-
"optional": true
|
|
11565
|
-
},
|
|
11566
11242
|
"node_modules/punycode": {
|
|
11567
11243
|
"version": "2.3.1",
|
|
11568
11244
|
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
@@ -11606,18 +11282,18 @@
|
|
|
11606
11282
|
}
|
|
11607
11283
|
},
|
|
11608
11284
|
"node_modules/react-aria": {
|
|
11609
|
-
"version": "3.
|
|
11610
|
-
"integrity": "sha512-
|
|
11285
|
+
"version": "3.51.0",
|
|
11286
|
+
"integrity": "sha512-AyWLw0XR38cFPwBu/ErgGaVrc5dupLEKmRlMXTGvFKOtbaGRQ2+yQJkjVhpdHhoRhU4+G+tJDFeHDTS8tK3bfQ==",
|
|
11611
11287
|
"license": "Apache-2.0",
|
|
11612
11288
|
"dependencies": {
|
|
11613
|
-
"@internationalized/date": "^3.12.
|
|
11289
|
+
"@internationalized/date": "^3.12.3",
|
|
11614
11290
|
"@internationalized/number": "^3.6.7",
|
|
11615
|
-
"@internationalized/string": "^3.2.
|
|
11616
|
-
"@react-types/shared": "^3.36.
|
|
11291
|
+
"@internationalized/string": "^3.2.10",
|
|
11292
|
+
"@react-types/shared": "^3.36.1",
|
|
11617
11293
|
"@swc/helpers": "^0.5.0",
|
|
11618
11294
|
"aria-hidden": "^1.2.3",
|
|
11619
11295
|
"clsx": "^2.0.0",
|
|
11620
|
-
"react-stately": "3.
|
|
11296
|
+
"react-stately": "3.49.0",
|
|
11621
11297
|
"use-sync-external-store": "^1.6.0"
|
|
11622
11298
|
},
|
|
11623
11299
|
"peerDependencies": {
|
|
@@ -11669,8 +11345,8 @@
|
|
|
11669
11345
|
}
|
|
11670
11346
|
},
|
|
11671
11347
|
"node_modules/react-is": {
|
|
11672
|
-
"version": "19.2.
|
|
11673
|
-
"integrity": "sha512-
|
|
11348
|
+
"version": "19.2.8",
|
|
11349
|
+
"integrity": "sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==",
|
|
11674
11350
|
"license": "MIT"
|
|
11675
11351
|
},
|
|
11676
11352
|
"node_modules/react-is-18": {
|
|
@@ -11682,8 +11358,8 @@
|
|
|
11682
11358
|
},
|
|
11683
11359
|
"node_modules/react-is-19": {
|
|
11684
11360
|
"name": "react-is",
|
|
11685
|
-
"version": "19.2.
|
|
11686
|
-
"integrity": "sha512-
|
|
11361
|
+
"version": "19.2.8",
|
|
11362
|
+
"integrity": "sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==",
|
|
11687
11363
|
"dev": true,
|
|
11688
11364
|
"license": "MIT"
|
|
11689
11365
|
},
|
|
@@ -11757,14 +11433,14 @@
|
|
|
11757
11433
|
}
|
|
11758
11434
|
},
|
|
11759
11435
|
"node_modules/react-stately": {
|
|
11760
|
-
"version": "3.
|
|
11761
|
-
"integrity": "sha512-
|
|
11436
|
+
"version": "3.49.0",
|
|
11437
|
+
"integrity": "sha512-13iNq2KzBrRAzxRc+n53hgROfIistiYY/sPtIhCw1qUB7/kmo+X1xEU2uiS5zcCIrc55AUPwoHqOIIpKWSwB9A==",
|
|
11762
11438
|
"license": "Apache-2.0",
|
|
11763
11439
|
"dependencies": {
|
|
11764
|
-
"@internationalized/date": "^3.12.
|
|
11440
|
+
"@internationalized/date": "^3.12.3",
|
|
11765
11441
|
"@internationalized/number": "^3.6.7",
|
|
11766
|
-
"@internationalized/string": "^3.2.
|
|
11767
|
-
"@react-types/shared": "^3.36.
|
|
11442
|
+
"@internationalized/string": "^3.2.10",
|
|
11443
|
+
"@react-types/shared": "^3.36.1",
|
|
11768
11444
|
"@swc/helpers": "^0.5.0",
|
|
11769
11445
|
"use-sync-external-store": "^1.6.0"
|
|
11770
11446
|
},
|
|
@@ -11819,8 +11495,8 @@
|
|
|
11819
11495
|
}
|
|
11820
11496
|
},
|
|
11821
11497
|
"node_modules/readdir-glob/node_modules/brace-expansion": {
|
|
11822
|
-
"version": "2.1.
|
|
11823
|
-
"integrity": "sha512-
|
|
11498
|
+
"version": "2.1.4",
|
|
11499
|
+
"integrity": "sha512-hGfVzPxthbf3+2yjg/RBs60cB0FhqBS/zvdV/4wn4/BmN0bNMMHPc4V/BbFieqf1TKAGGAHnY4eSjajCl0f2Xg==",
|
|
11824
11500
|
"license": "MIT",
|
|
11825
11501
|
"dependencies": {
|
|
11826
11502
|
"balanced-match": "^1.0.0"
|
|
@@ -12041,8 +11717,8 @@
|
|
|
12041
11717
|
"license": "Unlicense"
|
|
12042
11718
|
},
|
|
12043
11719
|
"node_modules/rollup": {
|
|
12044
|
-
"version": "4.62.
|
|
12045
|
-
"integrity": "sha512-
|
|
11720
|
+
"version": "4.62.4",
|
|
11721
|
+
"integrity": "sha512-RXOqwaPsBGjMNMa4sQjDjHieHEZDFoj/Rdr46l2MU5DfEs16wHJPC2RPTPHWhNl+M3aI472LLqFkFKut4SblOg==",
|
|
12046
11722
|
"dev": true,
|
|
12047
11723
|
"license": "MIT",
|
|
12048
11724
|
"dependencies": {
|
|
@@ -12056,31 +11732,32 @@
|
|
|
12056
11732
|
"npm": ">=8.0.0"
|
|
12057
11733
|
},
|
|
12058
11734
|
"optionalDependencies": {
|
|
12059
|
-
"@
|
|
12060
|
-
"@rollup/rollup-android-
|
|
12061
|
-
"@rollup/rollup-
|
|
12062
|
-
"@rollup/rollup-darwin-
|
|
12063
|
-
"@rollup/rollup-
|
|
12064
|
-
"@rollup/rollup-freebsd-
|
|
12065
|
-
"@rollup/rollup-
|
|
12066
|
-
"@rollup/rollup-linux-arm-
|
|
12067
|
-
"@rollup/rollup-linux-
|
|
12068
|
-
"@rollup/rollup-linux-arm64-
|
|
12069
|
-
"@rollup/rollup-linux-
|
|
12070
|
-
"@rollup/rollup-linux-loong64-
|
|
12071
|
-
"@rollup/rollup-linux-
|
|
12072
|
-
"@rollup/rollup-linux-ppc64-
|
|
12073
|
-
"@rollup/rollup-linux-
|
|
12074
|
-
"@rollup/rollup-linux-riscv64-
|
|
12075
|
-
"@rollup/rollup-linux-
|
|
12076
|
-
"@rollup/rollup-linux-
|
|
12077
|
-
"@rollup/rollup-linux-x64-
|
|
12078
|
-
"@rollup/rollup-
|
|
12079
|
-
"@rollup/rollup-
|
|
12080
|
-
"@rollup/rollup-
|
|
12081
|
-
"@rollup/rollup-win32-
|
|
12082
|
-
"@rollup/rollup-win32-
|
|
12083
|
-
"@rollup/rollup-win32-x64-
|
|
11735
|
+
"@napi-rs/lzma-linux-x64-gnu": "1.5.1",
|
|
11736
|
+
"@rollup/rollup-android-arm-eabi": "4.62.4",
|
|
11737
|
+
"@rollup/rollup-android-arm64": "4.62.4",
|
|
11738
|
+
"@rollup/rollup-darwin-arm64": "4.62.4",
|
|
11739
|
+
"@rollup/rollup-darwin-x64": "4.62.4",
|
|
11740
|
+
"@rollup/rollup-freebsd-arm64": "4.62.4",
|
|
11741
|
+
"@rollup/rollup-freebsd-x64": "4.62.4",
|
|
11742
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.62.4",
|
|
11743
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.62.4",
|
|
11744
|
+
"@rollup/rollup-linux-arm64-gnu": "4.62.4",
|
|
11745
|
+
"@rollup/rollup-linux-arm64-musl": "4.62.4",
|
|
11746
|
+
"@rollup/rollup-linux-loong64-gnu": "4.62.4",
|
|
11747
|
+
"@rollup/rollup-linux-loong64-musl": "4.62.4",
|
|
11748
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.62.4",
|
|
11749
|
+
"@rollup/rollup-linux-ppc64-musl": "4.62.4",
|
|
11750
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.62.4",
|
|
11751
|
+
"@rollup/rollup-linux-riscv64-musl": "4.62.4",
|
|
11752
|
+
"@rollup/rollup-linux-s390x-gnu": "4.62.4",
|
|
11753
|
+
"@rollup/rollup-linux-x64-gnu": "4.62.4",
|
|
11754
|
+
"@rollup/rollup-linux-x64-musl": "4.62.4",
|
|
11755
|
+
"@rollup/rollup-openbsd-x64": "4.62.4",
|
|
11756
|
+
"@rollup/rollup-openharmony-arm64": "4.62.4",
|
|
11757
|
+
"@rollup/rollup-win32-arm64-msvc": "4.62.4",
|
|
11758
|
+
"@rollup/rollup-win32-ia32-msvc": "4.62.4",
|
|
11759
|
+
"@rollup/rollup-win32-x64-gnu": "4.62.4",
|
|
11760
|
+
"@rollup/rollup-win32-x64-msvc": "4.62.4",
|
|
12084
11761
|
"fsevents": "~2.3.2"
|
|
12085
11762
|
}
|
|
12086
11763
|
},
|
|
@@ -12189,8 +11866,8 @@
|
|
|
12189
11866
|
"license": "MIT"
|
|
12190
11867
|
},
|
|
12191
11868
|
"node_modules/sax": {
|
|
12192
|
-
"version": "1.6.
|
|
12193
|
-
"integrity": "sha512-
|
|
11869
|
+
"version": "1.6.1",
|
|
11870
|
+
"integrity": "sha512-42tBVwLWnaQvW5zc4HbZrTuWccECCZfBi92FDuwtqxasH+JbPB3/FOKb1m222K42R4WxuxzzMsTswfzgtSu64Q==",
|
|
12194
11871
|
"license": "BlueOak-1.0.0",
|
|
12195
11872
|
"engines": {
|
|
12196
11873
|
"node": ">=11.0.0"
|
|
@@ -12437,19 +12114,6 @@
|
|
|
12437
12114
|
"url": "https://github.com/sponsors/isaacs"
|
|
12438
12115
|
}
|
|
12439
12116
|
},
|
|
12440
|
-
"node_modules/simple-swizzle": {
|
|
12441
|
-
"version": "0.2.4",
|
|
12442
|
-
"integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
|
|
12443
|
-
"license": "MIT",
|
|
12444
|
-
"dependencies": {
|
|
12445
|
-
"is-arrayish": "^0.3.1"
|
|
12446
|
-
}
|
|
12447
|
-
},
|
|
12448
|
-
"node_modules/simple-swizzle/node_modules/is-arrayish": {
|
|
12449
|
-
"version": "0.3.4",
|
|
12450
|
-
"integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
|
|
12451
|
-
"license": "MIT"
|
|
12452
|
-
},
|
|
12453
12117
|
"node_modules/slash": {
|
|
12454
12118
|
"version": "3.0.0",
|
|
12455
12119
|
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
|
@@ -13000,24 +12664,24 @@
|
|
|
13000
12664
|
}
|
|
13001
12665
|
},
|
|
13002
12666
|
"node_modules/test-exclude/node_modules/brace-expansion": {
|
|
13003
|
-
"version": "5.0.
|
|
13004
|
-
"integrity": "sha512-
|
|
12667
|
+
"version": "5.0.9",
|
|
12668
|
+
"integrity": "sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==",
|
|
13005
12669
|
"dev": true,
|
|
13006
12670
|
"license": "MIT",
|
|
13007
12671
|
"dependencies": {
|
|
13008
12672
|
"balanced-match": "^4.0.2"
|
|
13009
12673
|
},
|
|
13010
12674
|
"engines": {
|
|
13011
|
-
"node": "
|
|
12675
|
+
"node": "20 || >=22"
|
|
13012
12676
|
}
|
|
13013
12677
|
},
|
|
13014
12678
|
"node_modules/test-exclude/node_modules/minimatch": {
|
|
13015
|
-
"version": "10.2.
|
|
13016
|
-
"integrity": "sha512-
|
|
12679
|
+
"version": "10.2.6",
|
|
12680
|
+
"integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==",
|
|
13017
12681
|
"dev": true,
|
|
13018
12682
|
"license": "BlueOak-1.0.0",
|
|
13019
12683
|
"dependencies": {
|
|
13020
|
-
"brace-expansion": "^5.0.
|
|
12684
|
+
"brace-expansion": "^5.0.8"
|
|
13021
12685
|
},
|
|
13022
12686
|
"engines": {
|
|
13023
12687
|
"node": "18 || 20 || >=22"
|
|
@@ -13113,20 +12777,20 @@
|
|
|
13113
12777
|
}
|
|
13114
12778
|
},
|
|
13115
12779
|
"node_modules/tldts": {
|
|
13116
|
-
"version": "7.4.
|
|
13117
|
-
"integrity": "sha512-
|
|
12780
|
+
"version": "7.4.10",
|
|
12781
|
+
"integrity": "sha512-GgouD1B+sWwvkaEq8vXC15DjQitxbvs12oIXELpconwm+Tg3zfcEv4jgzq3vtKverDXsg3VI8aRgNL2Nra0Iog==",
|
|
13118
12782
|
"dev": true,
|
|
13119
12783
|
"license": "MIT",
|
|
13120
12784
|
"dependencies": {
|
|
13121
|
-
"tldts-core": "^7.4.
|
|
12785
|
+
"tldts-core": "^7.4.10"
|
|
13122
12786
|
},
|
|
13123
12787
|
"bin": {
|
|
13124
12788
|
"tldts": "bin/cli.js"
|
|
13125
12789
|
}
|
|
13126
12790
|
},
|
|
13127
12791
|
"node_modules/tldts-core": {
|
|
13128
|
-
"version": "7.4.
|
|
13129
|
-
"integrity": "sha512-
|
|
12792
|
+
"version": "7.4.10",
|
|
12793
|
+
"integrity": "sha512-KnQjp53ZekKgm/r3l+u8kJGGzYgrWdP8+Mql7a4vijh2WE0IrZWspQj/TpTxDho/YxO+AnOZnIjQcCD+q6iJsw==",
|
|
13130
12794
|
"dev": true,
|
|
13131
12795
|
"license": "MIT"
|
|
13132
12796
|
},
|
|
@@ -13361,8 +13025,8 @@
|
|
|
13361
13025
|
}
|
|
13362
13026
|
},
|
|
13363
13027
|
"node_modules/undici": {
|
|
13364
|
-
"version": "7.
|
|
13365
|
-
"integrity": "sha512-
|
|
13028
|
+
"version": "7.29.0",
|
|
13029
|
+
"integrity": "sha512-IDxfleLmmbSskfWSUATiN1nfn2rDuvnMOqb5CWR92iIfojA0Ud+ulOAAEQ57LPr9rWmsreUyf5lwyao+7GNNVw==",
|
|
13366
13030
|
"dev": true,
|
|
13367
13031
|
"license": "MIT",
|
|
13368
13032
|
"engines": {
|
|
@@ -13441,8 +13105,8 @@
|
|
|
13441
13105
|
}
|
|
13442
13106
|
},
|
|
13443
13107
|
"node_modules/update-browserslist-db": {
|
|
13444
|
-
"version": "1.
|
|
13445
|
-
"integrity": "sha512-
|
|
13108
|
+
"version": "1.3.0",
|
|
13109
|
+
"integrity": "sha512-x/M6q3w4Ybp91CNaS4S69UnliqR3BzRpOT6LWbksjth0S/+jhfaPJsWjt/TewpT8j9eLIojUf5jr29WextHroA==",
|
|
13446
13110
|
"dev": true,
|
|
13447
13111
|
"funding": [
|
|
13448
13112
|
{
|
|
@@ -13589,8 +13253,8 @@
|
|
|
13589
13253
|
}
|
|
13590
13254
|
},
|
|
13591
13255
|
"node_modules/vite/node_modules/postcss": {
|
|
13592
|
-
"version": "8.5.
|
|
13593
|
-
"integrity": "sha512-
|
|
13256
|
+
"version": "8.5.26",
|
|
13257
|
+
"integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==",
|
|
13594
13258
|
"dev": true,
|
|
13595
13259
|
"funding": [
|
|
13596
13260
|
{
|
|
@@ -13608,7 +13272,7 @@
|
|
|
13608
13272
|
],
|
|
13609
13273
|
"license": "MIT",
|
|
13610
13274
|
"dependencies": {
|
|
13611
|
-
"nanoid": "^3.3.
|
|
13275
|
+
"nanoid": "^3.3.17",
|
|
13612
13276
|
"picocolors": "^1.1.1",
|
|
13613
13277
|
"source-map-js": "^1.2.1"
|
|
13614
13278
|
},
|
|
@@ -14083,8 +13747,8 @@
|
|
|
14083
13747
|
}
|
|
14084
13748
|
},
|
|
14085
13749
|
"node_modules/yoctocolors": {
|
|
14086
|
-
"version": "2.
|
|
14087
|
-
"integrity": "sha512-
|
|
13750
|
+
"version": "2.2.0",
|
|
13751
|
+
"integrity": "sha512-xYqdZFUK/VYazNl/oCDYN+3WloWQwMfZxBoiNt6qNyk+xfOdi598muWE42rNZFp1kNOiqW936q5RhUdnpqElSg==",
|
|
14088
13752
|
"license": "MIT",
|
|
14089
13753
|
"engines": {
|
|
14090
13754
|
"node": ">=18"
|