@wavemaker-ai/react-runtime 1.0.0-rc.324 → 1.0.0-rc.328
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/components/basic/anchor/index.js +3 -0
- 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/search/index.d.ts +72 -3
- package/components/basic/search/index.js +75 -21
- package/components/basic/search/props.d.ts +4 -0
- 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 +18 -5
- package/components/container/layout-grid/grid-row/index.js +1 -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/useFormSubmission.d.ts +1 -1
- package/components/data/form/base-form/hooks/useFormSubmission.js +3 -1
- package/components/data/form/base-form/index.js +11 -14
- package/components/data/form/base-form/props.d.ts +3 -0
- 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-controller/withFormController.js +19 -16
- package/components/data/form/form-field/base-field.js +8 -5
- package/components/data/form/form-field/index.js +15 -8
- package/components/data/form/form-field/props.d.ts +1 -0
- package/components/data/list/components/ListItemWithTemplate.js +5 -2
- package/components/data/list/hooks/useListEffects.js +1 -1
- package/components/data/list/index.js +14 -5
- package/components/data/list/utils/constants.d.ts +0 -1
- package/components/data/list/utils/constants.js +0 -2
- package/components/data/table/components/RowCells.js +20 -4
- package/components/data/table/components/TableBody.js +5 -3
- package/components/data/table/components/TableHeader.js +14 -8
- package/components/data/table/components/TablePanelHeading.js +1 -1
- package/components/data/table/hooks/useDynamicColumns.js +1 -1
- package/components/data/table/hooks/useRowExpansion.js +41 -31
- package/components/data/table/hooks/useRowHandlers.d.ts +4 -2
- package/components/data/table/hooks/useRowHandlers.js +23 -12
- package/components/data/table/hooks/useRowSelection.d.ts +1 -1
- package/components/data/table/hooks/useRowSelection.js +80 -66
- package/components/data/table/hooks/useServerSideSorting.js +0 -1
- package/components/data/table/hooks/useTableColumns.js +16 -8
- package/components/data/table/hooks/useTableData.js +0 -1
- package/components/data/table/hooks/useTableEdit.js +0 -1
- package/components/data/table/hooks/useTableState.js +14 -2
- package/components/data/table/index.js +94 -61
- package/components/data/table/live-table/index.js +0 -1
- package/components/data/table/props.d.ts +8 -0
- package/components/data/table/utils/buildSelectionColumns.js +2 -4
- package/components/data/table/utils/columnBuilder.d.ts +16 -2
- package/components/data/table/utils/columnBuilder.js +14 -9
- package/components/data/table/utils/columnWidthDistribution.js +10 -0
- package/components/data/table/utils/constants.d.ts +0 -4
- package/components/data/table/utils/constants.js +0 -7
- package/components/data/table/utils/dynamic-columns.d.ts +1 -1
- package/components/data/table/utils/dynamic-columns.js +3 -8
- package/components/data/table/utils/expansionColumn.d.ts +23 -0
- package/components/data/table/utils/expansionColumn.js +56 -0
- package/components/data/table/utils/index.d.ts +23 -3
- package/components/data/table/utils/index.js +60 -20
- package/components/data/table/utils/selectionUtils.d.ts +5 -0
- package/components/data/table/utils/selectionUtils.js +5 -0
- package/components/dialogs/dialog/index.js +3 -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/default/radioset/index.js +2 -1
- package/components/input/epoch/date/index.js +1 -1
- package/components/input/select/index.js +3 -5
- package/components/input/text/index.js +2 -2
- package/components/input/textarea/index.js +42 -17
- package/components/navbar/nav/index.js +10 -5
- package/components/navigation/breadcrumb/index.js +2 -1
- package/components/navigation/popover/index.js +24 -8
- package/components/page/index.js +1 -1
- package/components/page/page-content/index.js +30 -6
- package/components/page/page-content/props.d.ts +1 -0
- package/components/page/partial-container/index.js +2 -1
- package/components/prefab/index.js +3 -2
- package/components/prefab/props.d.ts +1 -0
- package/components/wmx/WmxRenderer.d.ts +8 -0
- package/components/wmx/WmxRenderer.js +57 -0
- package/context/WidgetProvider.js +2 -1
- package/core/appstore.js +1 -1
- package/core/proxy-service.d.ts +1 -0
- package/core/proxy-service.js +53 -2
- package/core/util/index.d.ts +0 -2
- package/core/util/index.js +3 -30
- package/higherOrder/BasePage.js +36 -54
- package/higherOrder/DataNav.js +4 -1
- package/higherOrder/withBaseWrapper.js +9 -7
- package/hooks/useHttp.js +4 -2
- package/hooks/useLayoutSize.js +1 -1
- package/package-lock.json +240 -607
- package/package.json +3 -3
- package/runtime-dynamic/app-initializer.js +2 -1
- package/runtime-dynamic/components/partial-content.js +4 -1
- package/runtime-dynamic/components/wmx-placeholder.d.ts +18 -0
- package/runtime-dynamic/components/wmx-placeholder.js +48 -0
- package/runtime-dynamic/factories/dynamic-component.js +26 -3
- package/runtime-dynamic/main.js +6 -0
- package/runtime-dynamic/services/compile-render.js +75 -12
- package/runtime-dynamic/services/css-scoping.d.ts +2 -0
- package/runtime-dynamic/services/css-scoping.js +39 -20
- package/store/slices/i18nSlice.d.ts +0 -1
- package/store/slices/i18nSlice.js +0 -2
- package/utils/custom-expression/parser.js +11 -8
- package/utils/layoutsize-util.js +12 -7
- package/utils/style-utils.d.ts +6 -0
- package/utils/style-utils.js +10 -0
- package/utils/transformedDataset-utils.d.ts +3 -3
- package/utils/transformedDataset-utils.js +1 -2
- 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.328",
|
|
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.328",
|
|
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.328",
|
|
32
|
+
"@wavemaker-ai/variables": "1.0.0-rc.328",
|
|
33
33
|
"@wavemaker/nvd3": "1.8.16",
|
|
34
34
|
"axios": "1.15.1",
|
|
35
35
|
"d3": "7.8.5",
|
|
@@ -151,34 +151,15 @@
|
|
|
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
|
-
"version": "11.5.
|
|
169
|
-
"integrity": "sha512-
|
|
155
|
+
"version": "11.5.2",
|
|
156
|
+
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
170
157
|
"dev": true,
|
|
171
158
|
"license": "BlueOak-1.0.0",
|
|
172
159
|
"engines": {
|
|
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==",
|
|
@@ -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==",
|
|
@@ -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": {
|
|
@@ -1384,8 +1347,8 @@
|
|
|
1384
1347
|
}
|
|
1385
1348
|
},
|
|
1386
1349
|
"node_modules/@eslint/eslintrc": {
|
|
1387
|
-
"version": "3.3.
|
|
1388
|
-
"integrity": "sha512-
|
|
1350
|
+
"version": "3.3.6",
|
|
1351
|
+
"integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==",
|
|
1389
1352
|
"dev": true,
|
|
1390
1353
|
"license": "MIT",
|
|
1391
1354
|
"dependencies": {
|
|
@@ -1395,7 +1358,7 @@
|
|
|
1395
1358
|
"globals": "^14.0.0",
|
|
1396
1359
|
"ignore": "^5.2.0",
|
|
1397
1360
|
"import-fresh": "^3.2.1",
|
|
1398
|
-
"js-yaml": "^4.
|
|
1361
|
+
"js-yaml": "^4.3.0",
|
|
1399
1362
|
"minimatch": "^3.1.5",
|
|
1400
1363
|
"strip-json-comments": "^3.1.1"
|
|
1401
1364
|
},
|
|
@@ -1407,8 +1370,8 @@
|
|
|
1407
1370
|
}
|
|
1408
1371
|
},
|
|
1409
1372
|
"node_modules/@eslint/js": {
|
|
1410
|
-
"version": "9.39.
|
|
1411
|
-
"integrity": "sha512-
|
|
1373
|
+
"version": "9.39.5",
|
|
1374
|
+
"integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==",
|
|
1412
1375
|
"dev": true,
|
|
1413
1376
|
"license": "MIT",
|
|
1414
1377
|
"engines": {
|
|
@@ -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": {
|
|
@@ -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==",
|
|
@@ -3597,8 +3551,8 @@
|
|
|
3597
3551
|
"license": "MIT"
|
|
3598
3552
|
},
|
|
3599
3553
|
"node_modules/@sinclair/typebox": {
|
|
3600
|
-
"version": "0.34.
|
|
3601
|
-
"integrity": "sha512-
|
|
3554
|
+
"version": "0.34.52",
|
|
3555
|
+
"integrity": "sha512-XiMQh7qqVlxZzcVD+kkGMNGMzcTrDMLWI7S4x7z1MkCkbDPrekpZXEUK0eZqZFMuHQg2a2DZOcDIh9o5v3Gonw==",
|
|
3602
3556
|
"dev": true,
|
|
3603
3557
|
"license": "MIT"
|
|
3604
3558
|
},
|
|
@@ -3999,8 +3953,8 @@
|
|
|
3999
3953
|
"license": "MIT"
|
|
4000
3954
|
},
|
|
4001
3955
|
"node_modules/@types/d3-random": {
|
|
4002
|
-
"version": "3.0.
|
|
4003
|
-
"integrity": "sha512-
|
|
3956
|
+
"version": "3.0.4",
|
|
3957
|
+
"integrity": "sha512-UHYId5WTCx4L4YNel7NU00XUXXgvgpgZOvp10PuvsQENjMDXhh2RyFc0KBjO7B45ne4Ha1yVH7ii0vnzKkuzWA==",
|
|
4004
3958
|
"dev": true,
|
|
4005
3959
|
"license": "MIT"
|
|
4006
3960
|
},
|
|
@@ -4216,11 +4170,6 @@
|
|
|
4216
4170
|
"integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==",
|
|
4217
4171
|
"license": "MIT"
|
|
4218
4172
|
},
|
|
4219
|
-
"node_modules/@types/prettier": {
|
|
4220
|
-
"version": "2.7.1",
|
|
4221
|
-
"integrity": "sha512-ri0UmynRRvZiiUJdiz38MmIblKK+oH30MztdBVR95dv/Ubw6neWSb8u1XpRb72L4qsZOhz+L+z9JD40SJmfWow==",
|
|
4222
|
-
"license": "MIT"
|
|
4223
|
-
},
|
|
4224
4173
|
"node_modules/@types/prop-types": {
|
|
4225
4174
|
"version": "15.7.15",
|
|
4226
4175
|
"integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
|
|
@@ -4296,8 +4245,9 @@
|
|
|
4296
4245
|
"license": "MIT"
|
|
4297
4246
|
},
|
|
4298
4247
|
"node_modules/@types/yargs": {
|
|
4299
|
-
"version": "17.0.
|
|
4300
|
-
"integrity": "sha512-
|
|
4248
|
+
"version": "17.0.35",
|
|
4249
|
+
"integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==",
|
|
4250
|
+
"dev": true,
|
|
4301
4251
|
"license": "MIT",
|
|
4302
4252
|
"dependencies": {
|
|
4303
4253
|
"@types/yargs-parser": "*"
|
|
@@ -4306,19 +4256,20 @@
|
|
|
4306
4256
|
"node_modules/@types/yargs-parser": {
|
|
4307
4257
|
"version": "21.0.3",
|
|
4308
4258
|
"integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
|
|
4259
|
+
"dev": true,
|
|
4309
4260
|
"license": "MIT"
|
|
4310
4261
|
},
|
|
4311
4262
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4312
|
-
"version": "8.
|
|
4313
|
-
"integrity": "sha512-
|
|
4263
|
+
"version": "8.65.0",
|
|
4264
|
+
"integrity": "sha512-IEgob78X12rHpUmtcwFsXhZdVGJtwTVP8FiCLZkR6GlYVrl2PcuB+KhCE5BlVC/eQpQnu8WXRtkHZuPar+gCRA==",
|
|
4314
4265
|
"dev": true,
|
|
4315
4266
|
"license": "MIT",
|
|
4316
4267
|
"dependencies": {
|
|
4317
4268
|
"@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.
|
|
4269
|
+
"@typescript-eslint/scope-manager": "8.65.0",
|
|
4270
|
+
"@typescript-eslint/type-utils": "8.65.0",
|
|
4271
|
+
"@typescript-eslint/utils": "8.65.0",
|
|
4272
|
+
"@typescript-eslint/visitor-keys": "8.65.0",
|
|
4322
4273
|
"ignore": "^7.0.5",
|
|
4323
4274
|
"natural-compare": "^1.4.0",
|
|
4324
4275
|
"ts-api-utils": "^2.5.0"
|
|
@@ -4331,14 +4282,14 @@
|
|
|
4331
4282
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4332
4283
|
},
|
|
4333
4284
|
"peerDependencies": {
|
|
4334
|
-
"@typescript-eslint/parser": "^8.
|
|
4285
|
+
"@typescript-eslint/parser": "^8.65.0",
|
|
4335
4286
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4336
4287
|
"typescript": ">=4.8.4 <6.1.0"
|
|
4337
4288
|
}
|
|
4338
4289
|
},
|
|
4339
4290
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
4340
|
-
"version": "7.0.
|
|
4341
|
-
"integrity": "sha512-
|
|
4291
|
+
"version": "7.0.6",
|
|
4292
|
+
"integrity": "sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==",
|
|
4342
4293
|
"dev": true,
|
|
4343
4294
|
"license": "MIT",
|
|
4344
4295
|
"engines": {
|
|
@@ -4346,15 +4297,15 @@
|
|
|
4346
4297
|
}
|
|
4347
4298
|
},
|
|
4348
4299
|
"node_modules/@typescript-eslint/parser": {
|
|
4349
|
-
"version": "8.
|
|
4350
|
-
"integrity": "sha512-
|
|
4300
|
+
"version": "8.65.0",
|
|
4301
|
+
"integrity": "sha512-CZ4nMxWwgu1HEEFNkeaCptra9QCtkmKdgf3sWh1rl1trIhmxLilgTV4cwcbQ4wemnT4sWQN8CaKOmdYx+g2gMA==",
|
|
4351
4302
|
"dev": true,
|
|
4352
4303
|
"license": "MIT",
|
|
4353
4304
|
"dependencies": {
|
|
4354
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4355
|
-
"@typescript-eslint/types": "8.
|
|
4356
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4357
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4305
|
+
"@typescript-eslint/scope-manager": "8.65.0",
|
|
4306
|
+
"@typescript-eslint/types": "8.65.0",
|
|
4307
|
+
"@typescript-eslint/typescript-estree": "8.65.0",
|
|
4308
|
+
"@typescript-eslint/visitor-keys": "8.65.0",
|
|
4358
4309
|
"debug": "^4.4.3"
|
|
4359
4310
|
},
|
|
4360
4311
|
"engines": {
|
|
@@ -4370,13 +4321,13 @@
|
|
|
4370
4321
|
}
|
|
4371
4322
|
},
|
|
4372
4323
|
"node_modules/@typescript-eslint/project-service": {
|
|
4373
|
-
"version": "8.
|
|
4374
|
-
"integrity": "sha512-
|
|
4324
|
+
"version": "8.65.0",
|
|
4325
|
+
"integrity": "sha512-SxnPhbTsGahizDgbu7oqFH/xVtzIqMd/s+WtnSxNxJZJpLbdT5IPdzg8EZxO3+PoKahXmwJLeNQOpKJb3/bi7Q==",
|
|
4375
4326
|
"dev": true,
|
|
4376
4327
|
"license": "MIT",
|
|
4377
4328
|
"dependencies": {
|
|
4378
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4379
|
-
"@typescript-eslint/types": "^8.
|
|
4329
|
+
"@typescript-eslint/tsconfig-utils": "^8.65.0",
|
|
4330
|
+
"@typescript-eslint/types": "^8.65.0",
|
|
4380
4331
|
"debug": "^4.4.3"
|
|
4381
4332
|
},
|
|
4382
4333
|
"engines": {
|
|
@@ -4391,13 +4342,13 @@
|
|
|
4391
4342
|
}
|
|
4392
4343
|
},
|
|
4393
4344
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4394
|
-
"version": "8.
|
|
4395
|
-
"integrity": "sha512-
|
|
4345
|
+
"version": "8.65.0",
|
|
4346
|
+
"integrity": "sha512-Esbl8OSYiVxBokYgWPf7VVWg/BE798wXhimnn9ML9Pt5qoDf8bfQlgjlKXR/k98+AcNzlLKYrpCcrcuZ9DZLgg==",
|
|
4396
4347
|
"dev": true,
|
|
4397
4348
|
"license": "MIT",
|
|
4398
4349
|
"dependencies": {
|
|
4399
|
-
"@typescript-eslint/types": "8.
|
|
4400
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4350
|
+
"@typescript-eslint/types": "8.65.0",
|
|
4351
|
+
"@typescript-eslint/visitor-keys": "8.65.0"
|
|
4401
4352
|
},
|
|
4402
4353
|
"engines": {
|
|
4403
4354
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4408,8 +4359,8 @@
|
|
|
4408
4359
|
}
|
|
4409
4360
|
},
|
|
4410
4361
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4411
|
-
"version": "8.
|
|
4412
|
-
"integrity": "sha512-
|
|
4362
|
+
"version": "8.65.0",
|
|
4363
|
+
"integrity": "sha512-j6GzGqCiRdA7Qhur2VVmKZAkBLfnHFQfx4TaJGL9RMveZqCo48jSHHO0DTgizEnGhtWnqmbtCUSrqSkdiY/0Hg==",
|
|
4413
4364
|
"dev": true,
|
|
4414
4365
|
"license": "MIT",
|
|
4415
4366
|
"engines": {
|
|
@@ -4424,14 +4375,14 @@
|
|
|
4424
4375
|
}
|
|
4425
4376
|
},
|
|
4426
4377
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4427
|
-
"version": "8.
|
|
4428
|
-
"integrity": "sha512
|
|
4378
|
+
"version": "8.65.0",
|
|
4379
|
+
"integrity": "sha512-YjaZ7PRI5qY7ax2L3PbvX0rRyGtipAReCWs0mhhDBHjH/vl0g0BonaGXrKdKpMbIIsMIwDgbk/xzkBTyAltS5g==",
|
|
4429
4380
|
"dev": true,
|
|
4430
4381
|
"license": "MIT",
|
|
4431
4382
|
"dependencies": {
|
|
4432
|
-
"@typescript-eslint/types": "8.
|
|
4433
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4434
|
-
"@typescript-eslint/utils": "8.
|
|
4383
|
+
"@typescript-eslint/types": "8.65.0",
|
|
4384
|
+
"@typescript-eslint/typescript-estree": "8.65.0",
|
|
4385
|
+
"@typescript-eslint/utils": "8.65.0",
|
|
4435
4386
|
"debug": "^4.4.3",
|
|
4436
4387
|
"ts-api-utils": "^2.5.0"
|
|
4437
4388
|
},
|
|
@@ -4448,8 +4399,8 @@
|
|
|
4448
4399
|
}
|
|
4449
4400
|
},
|
|
4450
4401
|
"node_modules/@typescript-eslint/types": {
|
|
4451
|
-
"version": "8.
|
|
4452
|
-
"integrity": "sha512-
|
|
4402
|
+
"version": "8.65.0",
|
|
4403
|
+
"integrity": "sha512-JSSwWNy+H0E/01jJEM+hrX6N0OFDzFzeIhHFSAS01tlVaevpG8cFyYRPhS5yjGOvBUx3sqQHVMjCL1CAZZMxBg==",
|
|
4453
4404
|
"dev": true,
|
|
4454
4405
|
"license": "MIT",
|
|
4455
4406
|
"engines": {
|
|
@@ -4461,15 +4412,15 @@
|
|
|
4461
4412
|
}
|
|
4462
4413
|
},
|
|
4463
4414
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4464
|
-
"version": "8.
|
|
4465
|
-
"integrity": "sha512
|
|
4415
|
+
"version": "8.65.0",
|
|
4416
|
+
"integrity": "sha512-JboAE2swaYt4tb1fHhHTABE2K+OLy09XfcTbhnk4Pw96f9dd2e9iYsJ28gBggHlo5z5x1rkyWvcPoTuNTd4oGg==",
|
|
4466
4417
|
"dev": true,
|
|
4467
4418
|
"license": "MIT",
|
|
4468
4419
|
"dependencies": {
|
|
4469
|
-
"@typescript-eslint/project-service": "8.
|
|
4470
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4471
|
-
"@typescript-eslint/types": "8.
|
|
4472
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4420
|
+
"@typescript-eslint/project-service": "8.65.0",
|
|
4421
|
+
"@typescript-eslint/tsconfig-utils": "8.65.0",
|
|
4422
|
+
"@typescript-eslint/types": "8.65.0",
|
|
4423
|
+
"@typescript-eslint/visitor-keys": "8.65.0",
|
|
4473
4424
|
"debug": "^4.4.3",
|
|
4474
4425
|
"minimatch": "^10.2.2",
|
|
4475
4426
|
"semver": "^7.7.3",
|
|
@@ -4497,15 +4448,15 @@
|
|
|
4497
4448
|
}
|
|
4498
4449
|
},
|
|
4499
4450
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
4500
|
-
"version": "5.0.
|
|
4501
|
-
"integrity": "sha512-
|
|
4451
|
+
"version": "5.0.8",
|
|
4452
|
+
"integrity": "sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==",
|
|
4502
4453
|
"dev": true,
|
|
4503
4454
|
"license": "MIT",
|
|
4504
4455
|
"dependencies": {
|
|
4505
4456
|
"balanced-match": "^4.0.2"
|
|
4506
4457
|
},
|
|
4507
4458
|
"engines": {
|
|
4508
|
-
"node": "
|
|
4459
|
+
"node": "20 || >=22"
|
|
4509
4460
|
}
|
|
4510
4461
|
},
|
|
4511
4462
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
|
|
@@ -4536,15 +4487,15 @@
|
|
|
4536
4487
|
}
|
|
4537
4488
|
},
|
|
4538
4489
|
"node_modules/@typescript-eslint/utils": {
|
|
4539
|
-
"version": "8.
|
|
4540
|
-
"integrity": "sha512-
|
|
4490
|
+
"version": "8.65.0",
|
|
4491
|
+
"integrity": "sha512-gXiwIHsYreboxeJucHKPvgwl7dXt50mF8s1/c00cP/WoVTyWKFdtfhRWwZiXYFU5H2O8vVoSLNrexFZjYS/SGA==",
|
|
4541
4492
|
"dev": true,
|
|
4542
4493
|
"license": "MIT",
|
|
4543
4494
|
"dependencies": {
|
|
4544
4495
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4545
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4546
|
-
"@typescript-eslint/types": "8.
|
|
4547
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4496
|
+
"@typescript-eslint/scope-manager": "8.65.0",
|
|
4497
|
+
"@typescript-eslint/types": "8.65.0",
|
|
4498
|
+
"@typescript-eslint/typescript-estree": "8.65.0"
|
|
4548
4499
|
},
|
|
4549
4500
|
"engines": {
|
|
4550
4501
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4559,12 +4510,12 @@
|
|
|
4559
4510
|
}
|
|
4560
4511
|
},
|
|
4561
4512
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4562
|
-
"version": "8.
|
|
4563
|
-
"integrity": "sha512-
|
|
4513
|
+
"version": "8.65.0",
|
|
4514
|
+
"integrity": "sha512-8C71BQkGjiMmXtop7pHVJu1l2NNShFdkCyD6a2ezzs5vU/L3LRtb69EtcteFwz0mYMPzIgOw0n6OV4VBUWZd7A==",
|
|
4564
4515
|
"dev": true,
|
|
4565
4516
|
"license": "MIT",
|
|
4566
4517
|
"dependencies": {
|
|
4567
|
-
"@typescript-eslint/types": "8.
|
|
4518
|
+
"@typescript-eslint/types": "8.65.0",
|
|
4568
4519
|
"eslint-visitor-keys": "^5.0.0"
|
|
4569
4520
|
},
|
|
4570
4521
|
"engines": {
|
|
@@ -4984,8 +4935,8 @@
|
|
|
4984
4935
|
}
|
|
4985
4936
|
},
|
|
4986
4937
|
"node_modules/@vitest/pretty-format": {
|
|
4987
|
-
"version": "3.2.
|
|
4988
|
-
"integrity": "sha512-
|
|
4938
|
+
"version": "3.2.7",
|
|
4939
|
+
"integrity": "sha512-KUHlwqVu0sRlhCdyPdQ/wBoTfRahjUky1MubOmYw9fWfIZy1gNoHpuaaQBPAaMaVYdQYHJLurzj8ECCj5OwTqA==",
|
|
4989
4940
|
"dev": true,
|
|
4990
4941
|
"license": "MIT",
|
|
4991
4942
|
"dependencies": {
|
|
@@ -5074,31 +5025,21 @@
|
|
|
5074
5025
|
}
|
|
5075
5026
|
},
|
|
5076
5027
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
5077
|
-
"version": "1.0.0-rc.
|
|
5078
|
-
"integrity": "sha512
|
|
5028
|
+
"version": "1.0.0-rc.328",
|
|
5029
|
+
"integrity": "sha512-Wik6oPPl8FfMRp0s6XpIwx3aJ0/nhGRsAqa0eO5QOIGlv7cx7Aq10Rg5GkwuPMj4yfzEGYH4vZ+uMtzPN027IQ==",
|
|
5079
5030
|
"license": "ISC",
|
|
5080
5031
|
"dependencies": {
|
|
5081
5032
|
"@angular/compiler": "12.2.1",
|
|
5082
|
-
"@babel/generator": "7.13.9",
|
|
5083
5033
|
"@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
5034
|
"archiver": "7.0.1",
|
|
5091
|
-
"clean-css": "5.1.5",
|
|
5092
|
-
"color": "4.2.3",
|
|
5093
|
-
"css-tree": "2.1.0",
|
|
5094
5035
|
"execa": "5.0.0",
|
|
5095
5036
|
"fs-extra": "9.1.0",
|
|
5096
5037
|
"handlebars": "4.7.7",
|
|
5097
5038
|
"html-entities": "2.3.2",
|
|
5098
|
-
"less": "4.1.1",
|
|
5099
5039
|
"lodash": "4.17.21",
|
|
5100
5040
|
"node-html-parser": "5.0.0",
|
|
5101
5041
|
"rimraf": "3.0.2",
|
|
5042
|
+
"semver": "7.5.0",
|
|
5102
5043
|
"xml2js": "0.6.2",
|
|
5103
5044
|
"yargs": "16.2.0"
|
|
5104
5045
|
},
|
|
@@ -5109,16 +5050,6 @@
|
|
|
5109
5050
|
"node": "22.18.0"
|
|
5110
5051
|
}
|
|
5111
5052
|
},
|
|
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
5053
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/@babel/parser": {
|
|
5123
5054
|
"version": "7.13.11",
|
|
5124
5055
|
"integrity": "sha512-PhuoqeHoO9fc4ffMEVk4qb/w/s2iOSWohvbHxLtxui0eBg3Lg5gN1U8wp1V1u61hOWkPQJJyJzGH6Y+grwkq8Q==",
|
|
@@ -5130,32 +5061,6 @@
|
|
|
5130
5061
|
"node": ">=6.0.0"
|
|
5131
5062
|
}
|
|
5132
5063
|
},
|
|
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
5064
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/cliui": {
|
|
5160
5065
|
"version": "7.0.4",
|
|
5161
5066
|
"integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
|
|
@@ -5218,14 +5123,6 @@
|
|
|
5218
5123
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5219
5124
|
}
|
|
5220
5125
|
},
|
|
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
5126
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/human-signals": {
|
|
5230
5127
|
"version": "2.1.0",
|
|
5231
5128
|
"integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
|
|
@@ -5242,15 +5139,15 @@
|
|
|
5242
5139
|
"node": ">=8"
|
|
5243
5140
|
}
|
|
5244
5141
|
},
|
|
5245
|
-
"node_modules/@wavemaker-ai/react-codegen/node_modules/
|
|
5246
|
-
"version": "
|
|
5247
|
-
"integrity": "sha512-
|
|
5248
|
-
"license": "
|
|
5249
|
-
"
|
|
5250
|
-
"
|
|
5142
|
+
"node_modules/@wavemaker-ai/react-codegen/node_modules/lru-cache": {
|
|
5143
|
+
"version": "6.0.0",
|
|
5144
|
+
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
|
5145
|
+
"license": "ISC",
|
|
5146
|
+
"dependencies": {
|
|
5147
|
+
"yallist": "^4.0.0"
|
|
5251
5148
|
},
|
|
5252
5149
|
"engines": {
|
|
5253
|
-
"node": ">=
|
|
5150
|
+
"node": ">=10"
|
|
5254
5151
|
}
|
|
5255
5152
|
},
|
|
5256
5153
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/npm-run-path": {
|
|
@@ -5278,6 +5175,20 @@
|
|
|
5278
5175
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5279
5176
|
}
|
|
5280
5177
|
},
|
|
5178
|
+
"node_modules/@wavemaker-ai/react-codegen/node_modules/semver": {
|
|
5179
|
+
"version": "7.5.0",
|
|
5180
|
+
"integrity": "sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==",
|
|
5181
|
+
"license": "ISC",
|
|
5182
|
+
"dependencies": {
|
|
5183
|
+
"lru-cache": "^6.0.0"
|
|
5184
|
+
},
|
|
5185
|
+
"bin": {
|
|
5186
|
+
"semver": "bin/semver.js"
|
|
5187
|
+
},
|
|
5188
|
+
"engines": {
|
|
5189
|
+
"node": ">=10"
|
|
5190
|
+
}
|
|
5191
|
+
},
|
|
5281
5192
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/signal-exit": {
|
|
5282
5193
|
"version": "3.0.7",
|
|
5283
5194
|
"integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
|
|
@@ -5331,6 +5242,11 @@
|
|
|
5331
5242
|
"url": "https://github.com/chalk/wrap-ansi?sponsor=1"
|
|
5332
5243
|
}
|
|
5333
5244
|
},
|
|
5245
|
+
"node_modules/@wavemaker-ai/react-codegen/node_modules/yallist": {
|
|
5246
|
+
"version": "4.0.0",
|
|
5247
|
+
"integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
|
5248
|
+
"license": "ISC"
|
|
5249
|
+
},
|
|
5334
5250
|
"node_modules/@wavemaker-ai/react-codegen/node_modules/yargs": {
|
|
5335
5251
|
"version": "16.2.0",
|
|
5336
5252
|
"integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
|
|
@@ -5357,8 +5273,8 @@
|
|
|
5357
5273
|
}
|
|
5358
5274
|
},
|
|
5359
5275
|
"node_modules/@wavemaker-ai/variables": {
|
|
5360
|
-
"version": "1.0.0-rc.
|
|
5361
|
-
"integrity": "sha512-
|
|
5276
|
+
"version": "1.0.0-rc.328",
|
|
5277
|
+
"integrity": "sha512-DMs80xOqOt+s9GG4Bd5dwClO8oqZDpoBU70HLX9ack6BMdZKN2WX8eAqBTiYUDxoZLYwhBc0e+M3joEroDpGEA==",
|
|
5362
5278
|
"license": "ISC",
|
|
5363
5279
|
"dependencies": {
|
|
5364
5280
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -5416,14 +5332,6 @@
|
|
|
5416
5332
|
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
5417
5333
|
}
|
|
5418
5334
|
},
|
|
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
5335
|
"node_modules/agent-base": {
|
|
5428
5336
|
"version": "7.1.4",
|
|
5429
5337
|
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
|
|
@@ -5850,8 +5758,8 @@
|
|
|
5850
5758
|
}
|
|
5851
5759
|
},
|
|
5852
5760
|
"node_modules/bare-fs": {
|
|
5853
|
-
"version": "4.7.
|
|
5854
|
-
"integrity": "sha512-
|
|
5761
|
+
"version": "4.7.4",
|
|
5762
|
+
"integrity": "sha512-y1kC+ffIx/tPLdTE693uNjHfzTfr+ravR5tvWlMXe25nELbkqV400S71qHDwbkAQ1FVEZobB1NFRzFbCCcyBCQ==",
|
|
5855
5763
|
"license": "Apache-2.0",
|
|
5856
5764
|
"dependencies": {
|
|
5857
5765
|
"bare-events": "^2.5.4",
|
|
@@ -5872,21 +5780,10 @@
|
|
|
5872
5780
|
}
|
|
5873
5781
|
}
|
|
5874
5782
|
},
|
|
5875
|
-
"node_modules/bare-os": {
|
|
5876
|
-
"version": "3.9.2",
|
|
5877
|
-
"integrity": "sha512-h530JsrkYi8518ZfR57GHaLoI5YzXkGGEV0Y+mf4KYPBn4OnNajiznwkDq7FgE+Vnmyss9Utnzi44y7sowiAXA==",
|
|
5878
|
-
"license": "Apache-2.0",
|
|
5879
|
-
"engines": {
|
|
5880
|
-
"bare": ">=1.14.0"
|
|
5881
|
-
}
|
|
5882
|
-
},
|
|
5883
5783
|
"node_modules/bare-path": {
|
|
5884
|
-
"version": "3.
|
|
5885
|
-
"integrity": "sha512-
|
|
5886
|
-
"license": "Apache-2.0"
|
|
5887
|
-
"dependencies": {
|
|
5888
|
-
"bare-os": "^3.0.1"
|
|
5889
|
-
}
|
|
5784
|
+
"version": "3.1.1",
|
|
5785
|
+
"integrity": "sha512-JprUlveX3QjApC1cTpsUOiscADftCGVWkzitbHsRqv84hzYwYHw2mbluddsq5TvI8mH/8Ov1f4BiMAdcB0oYnQ==",
|
|
5786
|
+
"license": "Apache-2.0"
|
|
5890
5787
|
},
|
|
5891
5788
|
"node_modules/bare-stream": {
|
|
5892
5789
|
"version": "2.13.3",
|
|
@@ -5915,8 +5812,8 @@
|
|
|
5915
5812
|
}
|
|
5916
5813
|
},
|
|
5917
5814
|
"node_modules/bare-url": {
|
|
5918
|
-
"version": "2.4.
|
|
5919
|
-
"integrity": "sha512-
|
|
5815
|
+
"version": "2.4.6",
|
|
5816
|
+
"integrity": "sha512-iQxPClE07hETVpbRoX7JXX3v/ZQViCxe/SYCxylRLzdEx1xJAufPptfiOqR8tqiCtmbtMDANKWszzjLu1PMAZQ==",
|
|
5920
5817
|
"license": "Apache-2.0",
|
|
5921
5818
|
"dependencies": {
|
|
5922
5819
|
"bare-path": "^3.0.0"
|
|
@@ -5942,8 +5839,8 @@
|
|
|
5942
5839
|
"license": "MIT"
|
|
5943
5840
|
},
|
|
5944
5841
|
"node_modules/baseline-browser-mapping": {
|
|
5945
|
-
"version": "2.
|
|
5946
|
-
"integrity": "sha512-
|
|
5842
|
+
"version": "2.11.1",
|
|
5843
|
+
"integrity": "sha512-HYXq73DDpCtNzOmrFsm9eSwCvWCql0RzqjpDzXN9EadiLJ4DNat0nsZ/Bzmy+Ud12mb4/zKDY0cQ805ZzN+i0A==",
|
|
5947
5844
|
"license": "Apache-2.0",
|
|
5948
5845
|
"bin": {
|
|
5949
5846
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5967,8 +5864,8 @@
|
|
|
5967
5864
|
"license": "ISC"
|
|
5968
5865
|
},
|
|
5969
5866
|
"node_modules/brace-expansion": {
|
|
5970
|
-
"version": "1.1.
|
|
5971
|
-
"integrity": "sha512-
|
|
5867
|
+
"version": "1.1.16",
|
|
5868
|
+
"integrity": "sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==",
|
|
5972
5869
|
"license": "MIT",
|
|
5973
5870
|
"dependencies": {
|
|
5974
5871
|
"balanced-match": "^1.0.0",
|
|
@@ -5987,8 +5884,8 @@
|
|
|
5987
5884
|
}
|
|
5988
5885
|
},
|
|
5989
5886
|
"node_modules/browserslist": {
|
|
5990
|
-
"version": "4.28.
|
|
5991
|
-
"integrity": "sha512-
|
|
5887
|
+
"version": "4.28.7",
|
|
5888
|
+
"integrity": "sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw==",
|
|
5992
5889
|
"dev": true,
|
|
5993
5890
|
"funding": [
|
|
5994
5891
|
{
|
|
@@ -6006,10 +5903,10 @@
|
|
|
6006
5903
|
],
|
|
6007
5904
|
"license": "MIT",
|
|
6008
5905
|
"dependencies": {
|
|
6009
|
-
"baseline-browser-mapping": "^2.10.
|
|
6010
|
-
"caniuse-lite": "^1.0.
|
|
6011
|
-
"electron-to-chromium": "^1.5.
|
|
6012
|
-
"node-releases": "^2.0.
|
|
5906
|
+
"baseline-browser-mapping": "^2.10.44",
|
|
5907
|
+
"caniuse-lite": "^1.0.30001806",
|
|
5908
|
+
"electron-to-chromium": "^1.5.393",
|
|
5909
|
+
"node-releases": "^2.0.51",
|
|
6013
5910
|
"update-browserslist-db": "^1.2.3"
|
|
6014
5911
|
},
|
|
6015
5912
|
"bin": {
|
|
@@ -6114,8 +6011,8 @@
|
|
|
6114
6011
|
}
|
|
6115
6012
|
},
|
|
6116
6013
|
"node_modules/caniuse-lite": {
|
|
6117
|
-
"version": "1.0.
|
|
6118
|
-
"integrity": "sha512-
|
|
6014
|
+
"version": "1.0.30001806",
|
|
6015
|
+
"integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==",
|
|
6119
6016
|
"funding": [
|
|
6120
6017
|
{
|
|
6121
6018
|
"type": "opencollective",
|
|
@@ -6188,25 +6085,6 @@
|
|
|
6188
6085
|
"node": ">=8"
|
|
6189
6086
|
}
|
|
6190
6087
|
},
|
|
6191
|
-
"node_modules/clean-css": {
|
|
6192
|
-
"version": "5.1.5",
|
|
6193
|
-
"integrity": "sha512-9dr/cU/LjMpU57PXlSvDkVRh0rPxJBXiBtD0+SgYt8ahTCsXtfKjCkNYgIoTC6mBg8CFr5EKhW3DKCaGMUbUfQ==",
|
|
6194
|
-
"license": "MIT",
|
|
6195
|
-
"dependencies": {
|
|
6196
|
-
"source-map": "~0.6.0"
|
|
6197
|
-
},
|
|
6198
|
-
"engines": {
|
|
6199
|
-
"node": ">= 10.0"
|
|
6200
|
-
}
|
|
6201
|
-
},
|
|
6202
|
-
"node_modules/clean-css/node_modules/source-map": {
|
|
6203
|
-
"version": "0.6.1",
|
|
6204
|
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
6205
|
-
"license": "BSD-3-Clause",
|
|
6206
|
-
"engines": {
|
|
6207
|
-
"node": ">=0.10.0"
|
|
6208
|
-
}
|
|
6209
|
-
},
|
|
6210
6088
|
"node_modules/cli-cursor": {
|
|
6211
6089
|
"version": "5.0.0",
|
|
6212
6090
|
"integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
|
|
@@ -6237,8 +6115,8 @@
|
|
|
6237
6115
|
}
|
|
6238
6116
|
},
|
|
6239
6117
|
"node_modules/cli-truncate/node_modules/string-width": {
|
|
6240
|
-
"version": "8.2.
|
|
6241
|
-
"integrity": "sha512-
|
|
6118
|
+
"version": "8.2.2",
|
|
6119
|
+
"integrity": "sha512-GaPUh5gfdrYzqeVNZvUfT23vYYxXzKYidUcnMtJg/3rxRV63EFZy3k6xfKlmfeJD0176lnUV/Usr3XcwSvFzpg==",
|
|
6242
6120
|
"license": "MIT",
|
|
6243
6121
|
"dependencies": {
|
|
6244
6122
|
"get-east-asian-width": "^1.5.0",
|
|
@@ -6339,18 +6217,6 @@
|
|
|
6339
6217
|
"node": ">=6"
|
|
6340
6218
|
}
|
|
6341
6219
|
},
|
|
6342
|
-
"node_modules/color": {
|
|
6343
|
-
"version": "4.2.3",
|
|
6344
|
-
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
|
|
6345
|
-
"license": "MIT",
|
|
6346
|
-
"dependencies": {
|
|
6347
|
-
"color-convert": "^2.0.1",
|
|
6348
|
-
"color-string": "^1.9.0"
|
|
6349
|
-
},
|
|
6350
|
-
"engines": {
|
|
6351
|
-
"node": ">=12.5.0"
|
|
6352
|
-
}
|
|
6353
|
-
},
|
|
6354
6220
|
"node_modules/color-convert": {
|
|
6355
6221
|
"version": "2.0.1",
|
|
6356
6222
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
@@ -6367,15 +6233,6 @@
|
|
|
6367
6233
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
6368
6234
|
"license": "MIT"
|
|
6369
6235
|
},
|
|
6370
|
-
"node_modules/color-string": {
|
|
6371
|
-
"version": "1.9.1",
|
|
6372
|
-
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
|
|
6373
|
-
"license": "MIT",
|
|
6374
|
-
"dependencies": {
|
|
6375
|
-
"color-name": "^1.0.0",
|
|
6376
|
-
"simple-swizzle": "^0.2.2"
|
|
6377
|
-
}
|
|
6378
|
-
},
|
|
6379
6236
|
"node_modules/colorette": {
|
|
6380
6237
|
"version": "2.0.20",
|
|
6381
6238
|
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
|
|
@@ -6437,17 +6294,6 @@
|
|
|
6437
6294
|
"url": "https://opencollective.com/express"
|
|
6438
6295
|
}
|
|
6439
6296
|
},
|
|
6440
|
-
"node_modules/copy-anything": {
|
|
6441
|
-
"version": "2.0.6",
|
|
6442
|
-
"integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==",
|
|
6443
|
-
"license": "MIT",
|
|
6444
|
-
"dependencies": {
|
|
6445
|
-
"is-what": "^3.14.1"
|
|
6446
|
-
},
|
|
6447
|
-
"funding": {
|
|
6448
|
-
"url": "https://github.com/sponsors/mesqueeb"
|
|
6449
|
-
}
|
|
6450
|
-
},
|
|
6451
6297
|
"node_modules/core-util-is": {
|
|
6452
6298
|
"version": "1.0.3",
|
|
6453
6299
|
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
|
@@ -6528,16 +6374,16 @@
|
|
|
6528
6374
|
}
|
|
6529
6375
|
},
|
|
6530
6376
|
"node_modules/css-tree": {
|
|
6531
|
-
"version": "2.1
|
|
6532
|
-
"integrity": "sha512-
|
|
6377
|
+
"version": "3.2.1",
|
|
6378
|
+
"integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
|
|
6379
|
+
"dev": true,
|
|
6533
6380
|
"license": "MIT",
|
|
6534
6381
|
"dependencies": {
|
|
6535
|
-
"mdn-data": "2.
|
|
6536
|
-
"source-map-js": "^1.
|
|
6382
|
+
"mdn-data": "2.27.1",
|
|
6383
|
+
"source-map-js": "^1.2.1"
|
|
6537
6384
|
},
|
|
6538
6385
|
"engines": {
|
|
6539
|
-
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
6540
|
-
"npm": ">=7.0.0"
|
|
6386
|
+
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
6541
6387
|
}
|
|
6542
6388
|
},
|
|
6543
6389
|
"node_modules/css-what": {
|
|
@@ -6572,58 +6418,15 @@
|
|
|
6572
6418
|
"node": ">=20"
|
|
6573
6419
|
}
|
|
6574
6420
|
},
|
|
6575
|
-
"node_modules/cssstyle/node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
6576
|
-
"version": "1.1.5",
|
|
6577
|
-
"integrity": "sha512-oNjBvzLq2GPZtJphCjLqXow/cHySHSgtxvKZb7OqSZ/xHgw6NWNhfad+6AB9cLeVm6eA9d/qMll3JdEHjy6M+A==",
|
|
6578
|
-
"dev": true,
|
|
6579
|
-
"funding": [
|
|
6580
|
-
{
|
|
6581
|
-
"type": "github",
|
|
6582
|
-
"url": "https://github.com/sponsors/csstools"
|
|
6583
|
-
},
|
|
6584
|
-
{
|
|
6585
|
-
"type": "opencollective",
|
|
6586
|
-
"url": "https://opencollective.com/csstools"
|
|
6587
|
-
}
|
|
6588
|
-
],
|
|
6589
|
-
"license": "MIT-0",
|
|
6590
|
-
"peerDependencies": {
|
|
6591
|
-
"css-tree": "^3.2.1"
|
|
6592
|
-
},
|
|
6593
|
-
"peerDependenciesMeta": {
|
|
6594
|
-
"css-tree": {
|
|
6595
|
-
"optional": true
|
|
6596
|
-
}
|
|
6597
|
-
}
|
|
6598
|
-
},
|
|
6599
|
-
"node_modules/cssstyle/node_modules/css-tree": {
|
|
6600
|
-
"version": "3.2.1",
|
|
6601
|
-
"integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
|
|
6602
|
-
"dev": true,
|
|
6603
|
-
"license": "MIT",
|
|
6604
|
-
"dependencies": {
|
|
6605
|
-
"mdn-data": "2.27.1",
|
|
6606
|
-
"source-map-js": "^1.2.1"
|
|
6607
|
-
},
|
|
6608
|
-
"engines": {
|
|
6609
|
-
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
6610
|
-
}
|
|
6611
|
-
},
|
|
6612
6421
|
"node_modules/cssstyle/node_modules/lru-cache": {
|
|
6613
|
-
"version": "11.5.
|
|
6614
|
-
"integrity": "sha512-
|
|
6422
|
+
"version": "11.5.2",
|
|
6423
|
+
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
6615
6424
|
"dev": true,
|
|
6616
6425
|
"license": "BlueOak-1.0.0",
|
|
6617
6426
|
"engines": {
|
|
6618
6427
|
"node": "20 || >=22"
|
|
6619
6428
|
}
|
|
6620
6429
|
},
|
|
6621
|
-
"node_modules/cssstyle/node_modules/mdn-data": {
|
|
6622
|
-
"version": "2.27.1",
|
|
6623
|
-
"integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
|
|
6624
|
-
"dev": true,
|
|
6625
|
-
"license": "CC0-1.0"
|
|
6626
|
-
},
|
|
6627
6430
|
"node_modules/csstype": {
|
|
6628
6431
|
"version": "3.2.3",
|
|
6629
6432
|
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
@@ -7288,8 +7091,8 @@
|
|
|
7288
7091
|
"license": "MIT"
|
|
7289
7092
|
},
|
|
7290
7093
|
"node_modules/electron-to-chromium": {
|
|
7291
|
-
"version": "1.5.
|
|
7292
|
-
"integrity": "sha512-
|
|
7094
|
+
"version": "1.5.396",
|
|
7095
|
+
"integrity": "sha512-yHiw2Y3C3H9U6TMbOfoWK/BPreiOPXRfTWPBwQBoZG6/8TB6eOPnsy5oaRYuatR7Fw2SJ4kKforgufeo7fq0EQ==",
|
|
7293
7096
|
"dev": true,
|
|
7294
7097
|
"license": "ISC"
|
|
7295
7098
|
},
|
|
@@ -7317,18 +7120,6 @@
|
|
|
7317
7120
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
7318
7121
|
}
|
|
7319
7122
|
},
|
|
7320
|
-
"node_modules/errno": {
|
|
7321
|
-
"version": "0.1.8",
|
|
7322
|
-
"integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==",
|
|
7323
|
-
"license": "MIT",
|
|
7324
|
-
"optional": true,
|
|
7325
|
-
"dependencies": {
|
|
7326
|
-
"prr": "~1.0.1"
|
|
7327
|
-
},
|
|
7328
|
-
"bin": {
|
|
7329
|
-
"errno": "cli.js"
|
|
7330
|
-
}
|
|
7331
|
-
},
|
|
7332
7123
|
"node_modules/error-ex": {
|
|
7333
7124
|
"version": "1.3.4",
|
|
7334
7125
|
"integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
|
|
@@ -7440,8 +7231,8 @@
|
|
|
7440
7231
|
}
|
|
7441
7232
|
},
|
|
7442
7233
|
"node_modules/es-iterator-helpers": {
|
|
7443
|
-
"version": "1.
|
|
7444
|
-
"integrity": "sha512-
|
|
7234
|
+
"version": "1.4.0",
|
|
7235
|
+
"integrity": "sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==",
|
|
7445
7236
|
"dev": true,
|
|
7446
7237
|
"license": "MIT",
|
|
7447
7238
|
"dependencies": {
|
|
@@ -7590,8 +7381,8 @@
|
|
|
7590
7381
|
}
|
|
7591
7382
|
},
|
|
7592
7383
|
"node_modules/eslint": {
|
|
7593
|
-
"version": "9.39.
|
|
7594
|
-
"integrity": "sha512-
|
|
7384
|
+
"version": "9.39.5",
|
|
7385
|
+
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
7595
7386
|
"dev": true,
|
|
7596
7387
|
"license": "MIT",
|
|
7597
7388
|
"dependencies": {
|
|
@@ -7600,8 +7391,8 @@
|
|
|
7600
7391
|
"@eslint/config-array": "^0.21.2",
|
|
7601
7392
|
"@eslint/config-helpers": "^0.4.2",
|
|
7602
7393
|
"@eslint/core": "^0.17.0",
|
|
7603
|
-
"@eslint/eslintrc": "^3.3.
|
|
7604
|
-
"@eslint/js": "9.39.
|
|
7394
|
+
"@eslint/eslintrc": "^3.3.6",
|
|
7395
|
+
"@eslint/js": "9.39.5",
|
|
7605
7396
|
"@eslint/plugin-kit": "^0.4.1",
|
|
7606
7397
|
"@humanfs/node": "^0.16.6",
|
|
7607
7398
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -7753,8 +7544,8 @@
|
|
|
7753
7544
|
}
|
|
7754
7545
|
},
|
|
7755
7546
|
"node_modules/eslint-module-utils": {
|
|
7756
|
-
"version": "2.
|
|
7757
|
-
"integrity": "sha512-
|
|
7547
|
+
"version": "2.14.0",
|
|
7548
|
+
"integrity": "sha512-W2WCRZ9Dqntd+2u8jJcVMV2PKulc6RdLgUUoh/yQr3uB6lo/ZOeGx11sv60/8S4QFFKNslAlWhr9u0Ef7ZW6Ig==",
|
|
7758
7549
|
"dev": true,
|
|
7759
7550
|
"license": "MIT",
|
|
7760
7551
|
"dependencies": {
|
|
@@ -8276,8 +8067,8 @@
|
|
|
8276
8067
|
}
|
|
8277
8068
|
},
|
|
8278
8069
|
"node_modules/flatted": {
|
|
8279
|
-
"version": "3.4.
|
|
8280
|
-
"integrity": "sha512
|
|
8070
|
+
"version": "3.4.3",
|
|
8071
|
+
"integrity": "sha512-/zipXxyO6rGvuNGDiULY9MvEGSkb2gaG4GGH4ygMi0ZZzyMHdUZBmntJmx5x1G2VuPytCwGN4xsJP6cw+sK+vQ==",
|
|
8281
8072
|
"dev": true,
|
|
8282
8073
|
"license": "ISC"
|
|
8283
8074
|
},
|
|
@@ -8578,8 +8369,8 @@
|
|
|
8578
8369
|
}
|
|
8579
8370
|
},
|
|
8580
8371
|
"node_modules/glob/node_modules/brace-expansion": {
|
|
8581
|
-
"version": "2.1.
|
|
8582
|
-
"integrity": "sha512-
|
|
8372
|
+
"version": "2.1.2",
|
|
8373
|
+
"integrity": "sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==",
|
|
8583
8374
|
"license": "MIT",
|
|
8584
8375
|
"dependencies": {
|
|
8585
8376
|
"balanced-match": "^1.0.0"
|
|
@@ -8901,18 +8692,6 @@
|
|
|
8901
8692
|
"node": ">= 4"
|
|
8902
8693
|
}
|
|
8903
8694
|
},
|
|
8904
|
-
"node_modules/image-size": {
|
|
8905
|
-
"version": "0.5.5",
|
|
8906
|
-
"integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==",
|
|
8907
|
-
"license": "MIT",
|
|
8908
|
-
"optional": true,
|
|
8909
|
-
"bin": {
|
|
8910
|
-
"image-size": "bin/image-size.js"
|
|
8911
|
-
},
|
|
8912
|
-
"engines": {
|
|
8913
|
-
"node": ">=0.10.0"
|
|
8914
|
-
}
|
|
8915
|
-
},
|
|
8916
8695
|
"node_modules/immer": {
|
|
8917
8696
|
"version": "10.2.0",
|
|
8918
8697
|
"integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
|
|
@@ -9457,11 +9236,6 @@
|
|
|
9457
9236
|
"url": "https://github.com/sponsors/ljharb"
|
|
9458
9237
|
}
|
|
9459
9238
|
},
|
|
9460
|
-
"node_modules/is-what": {
|
|
9461
|
-
"version": "3.14.1",
|
|
9462
|
-
"integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==",
|
|
9463
|
-
"license": "MIT"
|
|
9464
|
-
},
|
|
9465
9239
|
"node_modules/isarray": {
|
|
9466
9240
|
"version": "2.0.5",
|
|
9467
9241
|
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
|
|
@@ -9582,8 +9356,8 @@
|
|
|
9582
9356
|
}
|
|
9583
9357
|
},
|
|
9584
9358
|
"node_modules/jest-axe/node_modules/@sinclair/typebox": {
|
|
9585
|
-
"version": "0.27.
|
|
9586
|
-
"integrity": "sha512-
|
|
9359
|
+
"version": "0.27.12",
|
|
9360
|
+
"integrity": "sha512-hhyNJ+nbR6ZR7pToHvllEFun9TL0sbL+tk/ON75lo+Xas054uez98qRbsuNt7MBCyZKK4+8Yli/OAGZhmfBZ/g==",
|
|
9587
9361
|
"dev": true,
|
|
9588
9362
|
"license": "MIT"
|
|
9589
9363
|
},
|
|
@@ -9840,9 +9614,13 @@
|
|
|
9840
9614
|
}
|
|
9841
9615
|
},
|
|
9842
9616
|
"node_modules/jodit": {
|
|
9843
|
-
"version": "4.
|
|
9844
|
-
"integrity": "sha512-
|
|
9845
|
-
"license": "MIT"
|
|
9617
|
+
"version": "4.13.10",
|
|
9618
|
+
"integrity": "sha512-GMtBILt+UcaHFmLY5nx8hEtWu/ZHzb2Ozs1sYIN7Iyy07XCA102Y8L2ViHgTn9N1s7+Bq5KNAqB4NlAg8JDlxw==",
|
|
9619
|
+
"license": "MIT",
|
|
9620
|
+
"funding": {
|
|
9621
|
+
"type": "commercial",
|
|
9622
|
+
"url": "https://xdsoft.net/jodit/pro/"
|
|
9623
|
+
}
|
|
9846
9624
|
},
|
|
9847
9625
|
"node_modules/jodit-react": {
|
|
9848
9626
|
"version": "5.2.19",
|
|
@@ -10073,67 +9851,6 @@
|
|
|
10073
9851
|
"safe-buffer": "~5.1.0"
|
|
10074
9852
|
}
|
|
10075
9853
|
},
|
|
10076
|
-
"node_modules/less": {
|
|
10077
|
-
"version": "4.1.1",
|
|
10078
|
-
"integrity": "sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw==",
|
|
10079
|
-
"license": "Apache-2.0",
|
|
10080
|
-
"dependencies": {
|
|
10081
|
-
"copy-anything": "^2.0.1",
|
|
10082
|
-
"parse-node-version": "^1.0.1",
|
|
10083
|
-
"tslib": "^1.10.0"
|
|
10084
|
-
},
|
|
10085
|
-
"bin": {
|
|
10086
|
-
"lessc": "bin/lessc"
|
|
10087
|
-
},
|
|
10088
|
-
"engines": {
|
|
10089
|
-
"node": ">=6"
|
|
10090
|
-
},
|
|
10091
|
-
"optionalDependencies": {
|
|
10092
|
-
"errno": "^0.1.1",
|
|
10093
|
-
"graceful-fs": "^4.1.2",
|
|
10094
|
-
"image-size": "~0.5.0",
|
|
10095
|
-
"make-dir": "^2.1.0",
|
|
10096
|
-
"mime": "^1.4.1",
|
|
10097
|
-
"needle": "^2.5.2",
|
|
10098
|
-
"source-map": "~0.6.0"
|
|
10099
|
-
}
|
|
10100
|
-
},
|
|
10101
|
-
"node_modules/less/node_modules/make-dir": {
|
|
10102
|
-
"version": "2.1.0",
|
|
10103
|
-
"integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
|
|
10104
|
-
"license": "MIT",
|
|
10105
|
-
"optional": true,
|
|
10106
|
-
"dependencies": {
|
|
10107
|
-
"pify": "^4.0.1",
|
|
10108
|
-
"semver": "^5.6.0"
|
|
10109
|
-
},
|
|
10110
|
-
"engines": {
|
|
10111
|
-
"node": ">=6"
|
|
10112
|
-
}
|
|
10113
|
-
},
|
|
10114
|
-
"node_modules/less/node_modules/semver": {
|
|
10115
|
-
"version": "5.7.2",
|
|
10116
|
-
"integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
|
|
10117
|
-
"license": "ISC",
|
|
10118
|
-
"optional": true,
|
|
10119
|
-
"bin": {
|
|
10120
|
-
"semver": "bin/semver"
|
|
10121
|
-
}
|
|
10122
|
-
},
|
|
10123
|
-
"node_modules/less/node_modules/source-map": {
|
|
10124
|
-
"version": "0.6.1",
|
|
10125
|
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
|
10126
|
-
"license": "BSD-3-Clause",
|
|
10127
|
-
"optional": true,
|
|
10128
|
-
"engines": {
|
|
10129
|
-
"node": ">=0.10.0"
|
|
10130
|
-
}
|
|
10131
|
-
},
|
|
10132
|
-
"node_modules/less/node_modules/tslib": {
|
|
10133
|
-
"version": "1.14.1",
|
|
10134
|
-
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
|
|
10135
|
-
"license": "0BSD"
|
|
10136
|
-
},
|
|
10137
9854
|
"node_modules/levn": {
|
|
10138
9855
|
"version": "0.4.1",
|
|
10139
9856
|
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
|
|
@@ -10466,8 +10183,9 @@
|
|
|
10466
10183
|
}
|
|
10467
10184
|
},
|
|
10468
10185
|
"node_modules/mdn-data": {
|
|
10469
|
-
"version": "2.
|
|
10470
|
-
"integrity": "sha512-
|
|
10186
|
+
"version": "2.27.1",
|
|
10187
|
+
"integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
|
|
10188
|
+
"dev": true,
|
|
10471
10189
|
"license": "CC0-1.0"
|
|
10472
10190
|
},
|
|
10473
10191
|
"node_modules/merge-stream": {
|
|
@@ -10507,18 +10225,6 @@
|
|
|
10507
10225
|
"url": "https://github.com/sponsors/jonschlinkert"
|
|
10508
10226
|
}
|
|
10509
10227
|
},
|
|
10510
|
-
"node_modules/mime": {
|
|
10511
|
-
"version": "1.6.0",
|
|
10512
|
-
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
|
10513
|
-
"license": "MIT",
|
|
10514
|
-
"optional": true,
|
|
10515
|
-
"bin": {
|
|
10516
|
-
"mime": "cli.js"
|
|
10517
|
-
},
|
|
10518
|
-
"engines": {
|
|
10519
|
-
"node": ">=4"
|
|
10520
|
-
}
|
|
10521
|
-
},
|
|
10522
10228
|
"node_modules/mime-db": {
|
|
10523
10229
|
"version": "1.52.0",
|
|
10524
10230
|
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
@@ -10791,8 +10497,8 @@
|
|
|
10791
10497
|
}
|
|
10792
10498
|
},
|
|
10793
10499
|
"node_modules/nanoid": {
|
|
10794
|
-
"version": "3.3.
|
|
10795
|
-
"integrity": "sha512-
|
|
10500
|
+
"version": "3.3.16",
|
|
10501
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
10796
10502
|
"funding": [
|
|
10797
10503
|
{
|
|
10798
10504
|
"type": "github",
|
|
@@ -10828,44 +10534,6 @@
|
|
|
10828
10534
|
"dev": true,
|
|
10829
10535
|
"license": "MIT"
|
|
10830
10536
|
},
|
|
10831
|
-
"node_modules/needle": {
|
|
10832
|
-
"version": "2.9.1",
|
|
10833
|
-
"integrity": "sha512-6R9fqJ5Zcmf+uYaFgdIHmLwNldn5HbK8L5ybn7Uz+ylX/rnOsSp1AHcvQSrCaFN+qNM1wpymHqD7mVasEOlHGQ==",
|
|
10834
|
-
"license": "MIT",
|
|
10835
|
-
"optional": true,
|
|
10836
|
-
"dependencies": {
|
|
10837
|
-
"debug": "^3.2.6",
|
|
10838
|
-
"iconv-lite": "^0.4.4",
|
|
10839
|
-
"sax": "^1.2.4"
|
|
10840
|
-
},
|
|
10841
|
-
"bin": {
|
|
10842
|
-
"needle": "bin/needle"
|
|
10843
|
-
},
|
|
10844
|
-
"engines": {
|
|
10845
|
-
"node": ">= 4.4.x"
|
|
10846
|
-
}
|
|
10847
|
-
},
|
|
10848
|
-
"node_modules/needle/node_modules/debug": {
|
|
10849
|
-
"version": "3.2.7",
|
|
10850
|
-
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
|
|
10851
|
-
"license": "MIT",
|
|
10852
|
-
"optional": true,
|
|
10853
|
-
"dependencies": {
|
|
10854
|
-
"ms": "^2.1.1"
|
|
10855
|
-
}
|
|
10856
|
-
},
|
|
10857
|
-
"node_modules/needle/node_modules/iconv-lite": {
|
|
10858
|
-
"version": "0.4.24",
|
|
10859
|
-
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
|
10860
|
-
"license": "MIT",
|
|
10861
|
-
"optional": true,
|
|
10862
|
-
"dependencies": {
|
|
10863
|
-
"safer-buffer": ">= 2.1.2 < 3"
|
|
10864
|
-
},
|
|
10865
|
-
"engines": {
|
|
10866
|
-
"node": ">=0.10.0"
|
|
10867
|
-
}
|
|
10868
|
-
},
|
|
10869
10537
|
"node_modules/neo-async": {
|
|
10870
10538
|
"version": "2.6.2",
|
|
10871
10539
|
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
|
|
@@ -10959,8 +10627,8 @@
|
|
|
10959
10627
|
}
|
|
10960
10628
|
},
|
|
10961
10629
|
"node_modules/node-releases": {
|
|
10962
|
-
"version": "2.0.
|
|
10963
|
-
"integrity": "sha512-
|
|
10630
|
+
"version": "2.0.51",
|
|
10631
|
+
"integrity": "sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==",
|
|
10964
10632
|
"dev": true,
|
|
10965
10633
|
"license": "MIT",
|
|
10966
10634
|
"engines": {
|
|
@@ -11172,12 +10840,13 @@
|
|
|
11172
10840
|
"license": "MIT"
|
|
11173
10841
|
},
|
|
11174
10842
|
"node_modules/own-keys": {
|
|
11175
|
-
"version": "1.0.
|
|
11176
|
-
"integrity": "sha512-
|
|
10843
|
+
"version": "1.0.2",
|
|
10844
|
+
"integrity": "sha512-19YVAg7T+WTrxggPukVq7DjTv6+PJ867TmhCvBsYwmbFCsZd344rq2Ld1p0wo8f8Qrrhgp82c6FJRqdXWtSEhg==",
|
|
11177
10845
|
"dev": true,
|
|
11178
10846
|
"license": "MIT",
|
|
11179
10847
|
"dependencies": {
|
|
11180
|
-
"
|
|
10848
|
+
"call-bound": "^1.0.4",
|
|
10849
|
+
"get-intrinsic": "^1.3.0",
|
|
11181
10850
|
"object-keys": "^1.1.1",
|
|
11182
10851
|
"safe-push-apply": "^1.0.0"
|
|
11183
10852
|
},
|
|
@@ -11262,14 +10931,6 @@
|
|
|
11262
10931
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
11263
10932
|
}
|
|
11264
10933
|
},
|
|
11265
|
-
"node_modules/parse-node-version": {
|
|
11266
|
-
"version": "1.0.1",
|
|
11267
|
-
"integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==",
|
|
11268
|
-
"license": "MIT",
|
|
11269
|
-
"engines": {
|
|
11270
|
-
"node": ">= 0.10"
|
|
11271
|
-
}
|
|
11272
|
-
},
|
|
11273
10934
|
"node_modules/parse5": {
|
|
11274
10935
|
"version": "8.0.1",
|
|
11275
10936
|
"integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==",
|
|
@@ -11379,8 +11040,8 @@
|
|
|
11379
11040
|
"license": "ISC"
|
|
11380
11041
|
},
|
|
11381
11042
|
"node_modules/picomatch": {
|
|
11382
|
-
"version": "4.0.
|
|
11383
|
-
"integrity": "sha512-
|
|
11043
|
+
"version": "4.0.5",
|
|
11044
|
+
"integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
|
|
11384
11045
|
"license": "MIT",
|
|
11385
11046
|
"engines": {
|
|
11386
11047
|
"node": ">=12"
|
|
@@ -11400,15 +11061,6 @@
|
|
|
11400
11061
|
"node": ">=0.10"
|
|
11401
11062
|
}
|
|
11402
11063
|
},
|
|
11403
|
-
"node_modules/pify": {
|
|
11404
|
-
"version": "4.0.1",
|
|
11405
|
-
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
|
|
11406
|
-
"license": "MIT",
|
|
11407
|
-
"optional": true,
|
|
11408
|
-
"engines": {
|
|
11409
|
-
"node": ">=6"
|
|
11410
|
-
}
|
|
11411
|
-
},
|
|
11412
11064
|
"node_modules/pirates": {
|
|
11413
11065
|
"version": "4.0.7",
|
|
11414
11066
|
"integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
|
|
@@ -11568,12 +11220,6 @@
|
|
|
11568
11220
|
"node": ">=10"
|
|
11569
11221
|
}
|
|
11570
11222
|
},
|
|
11571
|
-
"node_modules/prr": {
|
|
11572
|
-
"version": "1.0.1",
|
|
11573
|
-
"integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==",
|
|
11574
|
-
"license": "MIT",
|
|
11575
|
-
"optional": true
|
|
11576
|
-
},
|
|
11577
11223
|
"node_modules/punycode": {
|
|
11578
11224
|
"version": "2.3.1",
|
|
11579
11225
|
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
@@ -11680,8 +11326,8 @@
|
|
|
11680
11326
|
}
|
|
11681
11327
|
},
|
|
11682
11328
|
"node_modules/react-is": {
|
|
11683
|
-
"version": "19.2.
|
|
11684
|
-
"integrity": "sha512-
|
|
11329
|
+
"version": "19.2.8",
|
|
11330
|
+
"integrity": "sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==",
|
|
11685
11331
|
"license": "MIT"
|
|
11686
11332
|
},
|
|
11687
11333
|
"node_modules/react-is-18": {
|
|
@@ -11693,8 +11339,8 @@
|
|
|
11693
11339
|
},
|
|
11694
11340
|
"node_modules/react-is-19": {
|
|
11695
11341
|
"name": "react-is",
|
|
11696
|
-
"version": "19.2.
|
|
11697
|
-
"integrity": "sha512-
|
|
11342
|
+
"version": "19.2.8",
|
|
11343
|
+
"integrity": "sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==",
|
|
11698
11344
|
"dev": true,
|
|
11699
11345
|
"license": "MIT"
|
|
11700
11346
|
},
|
|
@@ -11830,8 +11476,8 @@
|
|
|
11830
11476
|
}
|
|
11831
11477
|
},
|
|
11832
11478
|
"node_modules/readdir-glob/node_modules/brace-expansion": {
|
|
11833
|
-
"version": "2.1.
|
|
11834
|
-
"integrity": "sha512-
|
|
11479
|
+
"version": "2.1.2",
|
|
11480
|
+
"integrity": "sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==",
|
|
11835
11481
|
"license": "MIT",
|
|
11836
11482
|
"dependencies": {
|
|
11837
11483
|
"balanced-match": "^1.0.0"
|
|
@@ -12200,8 +11846,8 @@
|
|
|
12200
11846
|
"license": "MIT"
|
|
12201
11847
|
},
|
|
12202
11848
|
"node_modules/sax": {
|
|
12203
|
-
"version": "1.6.
|
|
12204
|
-
"integrity": "sha512-
|
|
11849
|
+
"version": "1.6.1",
|
|
11850
|
+
"integrity": "sha512-42tBVwLWnaQvW5zc4HbZrTuWccECCZfBi92FDuwtqxasH+JbPB3/FOKb1m222K42R4WxuxzzMsTswfzgtSu64Q==",
|
|
12205
11851
|
"license": "BlueOak-1.0.0",
|
|
12206
11852
|
"engines": {
|
|
12207
11853
|
"node": ">=11.0.0"
|
|
@@ -12448,19 +12094,6 @@
|
|
|
12448
12094
|
"url": "https://github.com/sponsors/isaacs"
|
|
12449
12095
|
}
|
|
12450
12096
|
},
|
|
12451
|
-
"node_modules/simple-swizzle": {
|
|
12452
|
-
"version": "0.2.4",
|
|
12453
|
-
"integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
|
|
12454
|
-
"license": "MIT",
|
|
12455
|
-
"dependencies": {
|
|
12456
|
-
"is-arrayish": "^0.3.1"
|
|
12457
|
-
}
|
|
12458
|
-
},
|
|
12459
|
-
"node_modules/simple-swizzle/node_modules/is-arrayish": {
|
|
12460
|
-
"version": "0.3.4",
|
|
12461
|
-
"integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
|
|
12462
|
-
"license": "MIT"
|
|
12463
|
-
},
|
|
12464
12097
|
"node_modules/slash": {
|
|
12465
12098
|
"version": "3.0.0",
|
|
12466
12099
|
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
|
@@ -13011,15 +12644,15 @@
|
|
|
13011
12644
|
}
|
|
13012
12645
|
},
|
|
13013
12646
|
"node_modules/test-exclude/node_modules/brace-expansion": {
|
|
13014
|
-
"version": "5.0.
|
|
13015
|
-
"integrity": "sha512-
|
|
12647
|
+
"version": "5.0.8",
|
|
12648
|
+
"integrity": "sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==",
|
|
13016
12649
|
"dev": true,
|
|
13017
12650
|
"license": "MIT",
|
|
13018
12651
|
"dependencies": {
|
|
13019
12652
|
"balanced-match": "^4.0.2"
|
|
13020
12653
|
},
|
|
13021
12654
|
"engines": {
|
|
13022
|
-
"node": "
|
|
12655
|
+
"node": "20 || >=22"
|
|
13023
12656
|
}
|
|
13024
12657
|
},
|
|
13025
12658
|
"node_modules/test-exclude/node_modules/minimatch": {
|
|
@@ -13124,20 +12757,20 @@
|
|
|
13124
12757
|
}
|
|
13125
12758
|
},
|
|
13126
12759
|
"node_modules/tldts": {
|
|
13127
|
-
"version": "7.4.
|
|
13128
|
-
"integrity": "sha512-
|
|
12760
|
+
"version": "7.4.9",
|
|
12761
|
+
"integrity": "sha512-3kZ8wQQ/k5DrChD4X4FVvr2D7E5uoRgAqkPyLpSCGUvqOvqu+JEdr3mwMUaVWb+vMHZaKhF5fp2PBigKsui7hA==",
|
|
13129
12762
|
"dev": true,
|
|
13130
12763
|
"license": "MIT",
|
|
13131
12764
|
"dependencies": {
|
|
13132
|
-
"tldts-core": "^7.4.
|
|
12765
|
+
"tldts-core": "^7.4.9"
|
|
13133
12766
|
},
|
|
13134
12767
|
"bin": {
|
|
13135
12768
|
"tldts": "bin/cli.js"
|
|
13136
12769
|
}
|
|
13137
12770
|
},
|
|
13138
12771
|
"node_modules/tldts-core": {
|
|
13139
|
-
"version": "7.4.
|
|
13140
|
-
"integrity": "sha512-
|
|
12772
|
+
"version": "7.4.9",
|
|
12773
|
+
"integrity": "sha512-DxKfPBI52p2msTEu7MPhdpdDTBhhVQg1a/8PjQckeyAvO13eMYElX545grIp6nnTGIMZlRvFZPvFhvI/WIz2Vg==",
|
|
13141
12774
|
"dev": true,
|
|
13142
12775
|
"license": "MIT"
|
|
13143
12776
|
},
|
|
@@ -13153,8 +12786,8 @@
|
|
|
13153
12786
|
}
|
|
13154
12787
|
},
|
|
13155
12788
|
"node_modules/tough-cookie": {
|
|
13156
|
-
"version": "6.0.
|
|
13157
|
-
"integrity": "sha512-
|
|
12789
|
+
"version": "6.0.2",
|
|
12790
|
+
"integrity": "sha512-exgYmnmL/sJpR3upZfXG5PoatXQii55xAiXGXzY+sROLZ/Y+SLcp9PgJNI9Vz37HpQ74WvDcLT8eqm+kV3FzrA==",
|
|
13158
12791
|
"dev": true,
|
|
13159
12792
|
"license": "BSD-3-Clause",
|
|
13160
12793
|
"dependencies": {
|
|
@@ -13240,8 +12873,8 @@
|
|
|
13240
12873
|
}
|
|
13241
12874
|
},
|
|
13242
12875
|
"node_modules/type-fest": {
|
|
13243
|
-
"version": "5.
|
|
13244
|
-
"integrity": "sha512-
|
|
12876
|
+
"version": "5.8.0",
|
|
12877
|
+
"integrity": "sha512-YGYEVz3Fm5iy/AybuA0oyNFq7H4CgQNfRp/qfe8nurE1kuCeNm3/vfm9X4Mtl+qLyaKJUh5xrFZwogr41SMjYA==",
|
|
13245
12878
|
"dev": true,
|
|
13246
12879
|
"license": "(MIT OR CC0-1.0)",
|
|
13247
12880
|
"dependencies": {
|
|
@@ -13372,8 +13005,8 @@
|
|
|
13372
13005
|
}
|
|
13373
13006
|
},
|
|
13374
13007
|
"node_modules/undici": {
|
|
13375
|
-
"version": "7.
|
|
13376
|
-
"integrity": "sha512-
|
|
13008
|
+
"version": "7.29.0",
|
|
13009
|
+
"integrity": "sha512-IDxfleLmmbSskfWSUATiN1nfn2rDuvnMOqb5CWR92iIfojA0Ud+ulOAAEQ57LPr9rWmsreUyf5lwyao+7GNNVw==",
|
|
13377
13010
|
"dev": true,
|
|
13378
13011
|
"license": "MIT",
|
|
13379
13012
|
"engines": {
|
|
@@ -13600,8 +13233,8 @@
|
|
|
13600
13233
|
}
|
|
13601
13234
|
},
|
|
13602
13235
|
"node_modules/vite/node_modules/postcss": {
|
|
13603
|
-
"version": "8.5.
|
|
13604
|
-
"integrity": "sha512-
|
|
13236
|
+
"version": "8.5.23",
|
|
13237
|
+
"integrity": "sha512-g50586zr4bZmwFiTlflMu8E0bDTb5I5gertgwAKmsdUlTQIhZtunzUlD1WSzwcVWPoAVpsrA6vlfCD7oXvRwgg==",
|
|
13605
13238
|
"dev": true,
|
|
13606
13239
|
"funding": [
|
|
13607
13240
|
{
|
|
@@ -13619,7 +13252,7 @@
|
|
|
13619
13252
|
],
|
|
13620
13253
|
"license": "MIT",
|
|
13621
13254
|
"dependencies": {
|
|
13622
|
-
"nanoid": "^3.3.
|
|
13255
|
+
"nanoid": "^3.3.16",
|
|
13623
13256
|
"picocolors": "^1.1.1",
|
|
13624
13257
|
"source-map-js": "^1.2.1"
|
|
13625
13258
|
},
|