@wavemaker-ai/react-runtime 1.0.0-rc.326 → 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/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 +13 -5
- 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/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 +0 -14
- package/components/data/form/form-field/index.js +10 -7
- package/components/data/list/index.js +3 -2
- package/components/data/table/components/RowCells.js +3 -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 +80 -66
- package/components/data/table/hooks/useTableState.js +14 -2
- package/components/data/table/index.js +52 -48
- package/components/data/table/props.d.ts +4 -0
- package/components/data/table/utils/buildSelectionColumns.js +2 -2
- 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 +15 -1
- package/components/data/table/utils/selectionUtils.d.ts +5 -0
- package/components/data/table/utils/selectionUtils.js +5 -0
- 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 +1 -1
- package/components/input/select/index.js +3 -4
- 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.js +9 -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/util/index.d.ts +0 -2
- package/core/util/index.js +0 -29
- package/higherOrder/BasePage.js +24 -63
- package/higherOrder/DataNav.js +4 -1
- package/hooks/useHttp.js +4 -2
- package/hooks/useLayoutSize.js +1 -1
- package/package-lock.json +196 -552
- 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.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,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==",
|
|
@@ -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": {
|
|
@@ -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
|
},
|
|
@@ -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,7 +4282,7 @@
|
|
|
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
|
}
|
|
@@ -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": {
|
|
@@ -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==",
|
|
@@ -5904,8 +5812,8 @@
|
|
|
5904
5812
|
}
|
|
5905
5813
|
},
|
|
5906
5814
|
"node_modules/bare-url": {
|
|
5907
|
-
"version": "2.4.
|
|
5908
|
-
"integrity": "sha512-
|
|
5815
|
+
"version": "2.4.6",
|
|
5816
|
+
"integrity": "sha512-iQxPClE07hETVpbRoX7JXX3v/ZQViCxe/SYCxylRLzdEx1xJAufPptfiOqR8tqiCtmbtMDANKWszzjLu1PMAZQ==",
|
|
5909
5817
|
"license": "Apache-2.0",
|
|
5910
5818
|
"dependencies": {
|
|
5911
5819
|
"bare-path": "^3.0.0"
|
|
@@ -5931,8 +5839,8 @@
|
|
|
5931
5839
|
"license": "MIT"
|
|
5932
5840
|
},
|
|
5933
5841
|
"node_modules/baseline-browser-mapping": {
|
|
5934
|
-
"version": "2.
|
|
5935
|
-
"integrity": "sha512-
|
|
5842
|
+
"version": "2.11.1",
|
|
5843
|
+
"integrity": "sha512-HYXq73DDpCtNzOmrFsm9eSwCvWCql0RzqjpDzXN9EadiLJ4DNat0nsZ/Bzmy+Ud12mb4/zKDY0cQ805ZzN+i0A==",
|
|
5936
5844
|
"license": "Apache-2.0",
|
|
5937
5845
|
"bin": {
|
|
5938
5846
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5976,8 +5884,8 @@
|
|
|
5976
5884
|
}
|
|
5977
5885
|
},
|
|
5978
5886
|
"node_modules/browserslist": {
|
|
5979
|
-
"version": "4.28.
|
|
5980
|
-
"integrity": "sha512-
|
|
5887
|
+
"version": "4.28.7",
|
|
5888
|
+
"integrity": "sha512-JxV13hNrFxqjOc8alRbq9dK1MM79NEXYpma2B2J4wAtpWS5zIEIKqWPGCl7N4o7Uc7B7itylh7SuDujATRyyTw==",
|
|
5981
5889
|
"dev": true,
|
|
5982
5890
|
"funding": [
|
|
5983
5891
|
{
|
|
@@ -5995,10 +5903,10 @@
|
|
|
5995
5903
|
],
|
|
5996
5904
|
"license": "MIT",
|
|
5997
5905
|
"dependencies": {
|
|
5998
|
-
"baseline-browser-mapping": "^2.10.
|
|
5999
|
-
"caniuse-lite": "^1.0.
|
|
6000
|
-
"electron-to-chromium": "^1.5.
|
|
6001
|
-
"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",
|
|
6002
5910
|
"update-browserslist-db": "^1.2.3"
|
|
6003
5911
|
},
|
|
6004
5912
|
"bin": {
|
|
@@ -6103,8 +6011,8 @@
|
|
|
6103
6011
|
}
|
|
6104
6012
|
},
|
|
6105
6013
|
"node_modules/caniuse-lite": {
|
|
6106
|
-
"version": "1.0.
|
|
6107
|
-
"integrity": "sha512-
|
|
6014
|
+
"version": "1.0.30001806",
|
|
6015
|
+
"integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==",
|
|
6108
6016
|
"funding": [
|
|
6109
6017
|
{
|
|
6110
6018
|
"type": "opencollective",
|
|
@@ -6177,25 +6085,6 @@
|
|
|
6177
6085
|
"node": ">=8"
|
|
6178
6086
|
}
|
|
6179
6087
|
},
|
|
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
6088
|
"node_modules/cli-cursor": {
|
|
6200
6089
|
"version": "5.0.0",
|
|
6201
6090
|
"integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==",
|
|
@@ -6328,18 +6217,6 @@
|
|
|
6328
6217
|
"node": ">=6"
|
|
6329
6218
|
}
|
|
6330
6219
|
},
|
|
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
6220
|
"node_modules/color-convert": {
|
|
6344
6221
|
"version": "2.0.1",
|
|
6345
6222
|
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
|
@@ -6356,15 +6233,6 @@
|
|
|
6356
6233
|
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
|
6357
6234
|
"license": "MIT"
|
|
6358
6235
|
},
|
|
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
6236
|
"node_modules/colorette": {
|
|
6369
6237
|
"version": "2.0.20",
|
|
6370
6238
|
"integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
|
|
@@ -6426,17 +6294,6 @@
|
|
|
6426
6294
|
"url": "https://opencollective.com/express"
|
|
6427
6295
|
}
|
|
6428
6296
|
},
|
|
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
6297
|
"node_modules/core-util-is": {
|
|
6441
6298
|
"version": "1.0.3",
|
|
6442
6299
|
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
|
@@ -6517,16 +6374,16 @@
|
|
|
6517
6374
|
}
|
|
6518
6375
|
},
|
|
6519
6376
|
"node_modules/css-tree": {
|
|
6520
|
-
"version": "2.1
|
|
6521
|
-
"integrity": "sha512-
|
|
6377
|
+
"version": "3.2.1",
|
|
6378
|
+
"integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
|
|
6379
|
+
"dev": true,
|
|
6522
6380
|
"license": "MIT",
|
|
6523
6381
|
"dependencies": {
|
|
6524
|
-
"mdn-data": "2.
|
|
6525
|
-
"source-map-js": "^1.
|
|
6382
|
+
"mdn-data": "2.27.1",
|
|
6383
|
+
"source-map-js": "^1.2.1"
|
|
6526
6384
|
},
|
|
6527
6385
|
"engines": {
|
|
6528
|
-
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
6529
|
-
"npm": ">=7.0.0"
|
|
6386
|
+
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
6530
6387
|
}
|
|
6531
6388
|
},
|
|
6532
6389
|
"node_modules/css-what": {
|
|
@@ -6561,43 +6418,6 @@
|
|
|
6561
6418
|
"node": ">=20"
|
|
6562
6419
|
}
|
|
6563
6420
|
},
|
|
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
6421
|
"node_modules/cssstyle/node_modules/lru-cache": {
|
|
6602
6422
|
"version": "11.5.2",
|
|
6603
6423
|
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
@@ -6607,12 +6427,6 @@
|
|
|
6607
6427
|
"node": "20 || >=22"
|
|
6608
6428
|
}
|
|
6609
6429
|
},
|
|
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
6430
|
"node_modules/csstype": {
|
|
6617
6431
|
"version": "3.2.3",
|
|
6618
6432
|
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
@@ -7277,8 +7091,8 @@
|
|
|
7277
7091
|
"license": "MIT"
|
|
7278
7092
|
},
|
|
7279
7093
|
"node_modules/electron-to-chromium": {
|
|
7280
|
-
"version": "1.5.
|
|
7281
|
-
"integrity": "sha512-
|
|
7094
|
+
"version": "1.5.396",
|
|
7095
|
+
"integrity": "sha512-yHiw2Y3C3H9U6TMbOfoWK/BPreiOPXRfTWPBwQBoZG6/8TB6eOPnsy5oaRYuatR7Fw2SJ4kKforgufeo7fq0EQ==",
|
|
7282
7096
|
"dev": true,
|
|
7283
7097
|
"license": "ISC"
|
|
7284
7098
|
},
|
|
@@ -7306,18 +7120,6 @@
|
|
|
7306
7120
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
7307
7121
|
}
|
|
7308
7122
|
},
|
|
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
7123
|
"node_modules/error-ex": {
|
|
7322
7124
|
"version": "1.3.4",
|
|
7323
7125
|
"integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==",
|
|
@@ -8265,8 +8067,8 @@
|
|
|
8265
8067
|
}
|
|
8266
8068
|
},
|
|
8267
8069
|
"node_modules/flatted": {
|
|
8268
|
-
"version": "3.4.
|
|
8269
|
-
"integrity": "sha512
|
|
8070
|
+
"version": "3.4.3",
|
|
8071
|
+
"integrity": "sha512-/zipXxyO6rGvuNGDiULY9MvEGSkb2gaG4GGH4ygMi0ZZzyMHdUZBmntJmx5x1G2VuPytCwGN4xsJP6cw+sK+vQ==",
|
|
8270
8072
|
"dev": true,
|
|
8271
8073
|
"license": "ISC"
|
|
8272
8074
|
},
|
|
@@ -8890,18 +8692,6 @@
|
|
|
8890
8692
|
"node": ">= 4"
|
|
8891
8693
|
}
|
|
8892
8694
|
},
|
|
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
8695
|
"node_modules/immer": {
|
|
8906
8696
|
"version": "10.2.0",
|
|
8907
8697
|
"integrity": "sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==",
|
|
@@ -9446,11 +9236,6 @@
|
|
|
9446
9236
|
"url": "https://github.com/sponsors/ljharb"
|
|
9447
9237
|
}
|
|
9448
9238
|
},
|
|
9449
|
-
"node_modules/is-what": {
|
|
9450
|
-
"version": "3.14.1",
|
|
9451
|
-
"integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==",
|
|
9452
|
-
"license": "MIT"
|
|
9453
|
-
},
|
|
9454
9239
|
"node_modules/isarray": {
|
|
9455
9240
|
"version": "2.0.5",
|
|
9456
9241
|
"integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
|
|
@@ -9571,8 +9356,8 @@
|
|
|
9571
9356
|
}
|
|
9572
9357
|
},
|
|
9573
9358
|
"node_modules/jest-axe/node_modules/@sinclair/typebox": {
|
|
9574
|
-
"version": "0.27.
|
|
9575
|
-
"integrity": "sha512-
|
|
9359
|
+
"version": "0.27.12",
|
|
9360
|
+
"integrity": "sha512-hhyNJ+nbR6ZR7pToHvllEFun9TL0sbL+tk/ON75lo+Xas054uez98qRbsuNt7MBCyZKK4+8Yli/OAGZhmfBZ/g==",
|
|
9576
9361
|
"dev": true,
|
|
9577
9362
|
"license": "MIT"
|
|
9578
9363
|
},
|
|
@@ -9829,9 +9614,13 @@
|
|
|
9829
9614
|
}
|
|
9830
9615
|
},
|
|
9831
9616
|
"node_modules/jodit": {
|
|
9832
|
-
"version": "4.
|
|
9833
|
-
"integrity": "sha512-
|
|
9834
|
-
"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
|
+
}
|
|
9835
9624
|
},
|
|
9836
9625
|
"node_modules/jodit-react": {
|
|
9837
9626
|
"version": "5.2.19",
|
|
@@ -10062,67 +9851,6 @@
|
|
|
10062
9851
|
"safe-buffer": "~5.1.0"
|
|
10063
9852
|
}
|
|
10064
9853
|
},
|
|
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
9854
|
"node_modules/levn": {
|
|
10127
9855
|
"version": "0.4.1",
|
|
10128
9856
|
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
|
|
@@ -10455,8 +10183,9 @@
|
|
|
10455
10183
|
}
|
|
10456
10184
|
},
|
|
10457
10185
|
"node_modules/mdn-data": {
|
|
10458
|
-
"version": "2.
|
|
10459
|
-
"integrity": "sha512-
|
|
10186
|
+
"version": "2.27.1",
|
|
10187
|
+
"integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
|
|
10188
|
+
"dev": true,
|
|
10460
10189
|
"license": "CC0-1.0"
|
|
10461
10190
|
},
|
|
10462
10191
|
"node_modules/merge-stream": {
|
|
@@ -10496,18 +10225,6 @@
|
|
|
10496
10225
|
"url": "https://github.com/sponsors/jonschlinkert"
|
|
10497
10226
|
}
|
|
10498
10227
|
},
|
|
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
10228
|
"node_modules/mime-db": {
|
|
10512
10229
|
"version": "1.52.0",
|
|
10513
10230
|
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
@@ -10780,8 +10497,8 @@
|
|
|
10780
10497
|
}
|
|
10781
10498
|
},
|
|
10782
10499
|
"node_modules/nanoid": {
|
|
10783
|
-
"version": "3.3.
|
|
10784
|
-
"integrity": "sha512-
|
|
10500
|
+
"version": "3.3.16",
|
|
10501
|
+
"integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
|
|
10785
10502
|
"funding": [
|
|
10786
10503
|
{
|
|
10787
10504
|
"type": "github",
|
|
@@ -10817,44 +10534,6 @@
|
|
|
10817
10534
|
"dev": true,
|
|
10818
10535
|
"license": "MIT"
|
|
10819
10536
|
},
|
|
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
10537
|
"node_modules/neo-async": {
|
|
10859
10538
|
"version": "2.6.2",
|
|
10860
10539
|
"integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
|
|
@@ -11161,12 +10840,13 @@
|
|
|
11161
10840
|
"license": "MIT"
|
|
11162
10841
|
},
|
|
11163
10842
|
"node_modules/own-keys": {
|
|
11164
|
-
"version": "1.0.
|
|
11165
|
-
"integrity": "sha512-
|
|
10843
|
+
"version": "1.0.2",
|
|
10844
|
+
"integrity": "sha512-19YVAg7T+WTrxggPukVq7DjTv6+PJ867TmhCvBsYwmbFCsZd344rq2Ld1p0wo8f8Qrrhgp82c6FJRqdXWtSEhg==",
|
|
11166
10845
|
"dev": true,
|
|
11167
10846
|
"license": "MIT",
|
|
11168
10847
|
"dependencies": {
|
|
11169
|
-
"
|
|
10848
|
+
"call-bound": "^1.0.4",
|
|
10849
|
+
"get-intrinsic": "^1.3.0",
|
|
11170
10850
|
"object-keys": "^1.1.1",
|
|
11171
10851
|
"safe-push-apply": "^1.0.0"
|
|
11172
10852
|
},
|
|
@@ -11251,14 +10931,6 @@
|
|
|
11251
10931
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
11252
10932
|
}
|
|
11253
10933
|
},
|
|
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
10934
|
"node_modules/parse5": {
|
|
11263
10935
|
"version": "8.0.1",
|
|
11264
10936
|
"integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==",
|
|
@@ -11389,15 +11061,6 @@
|
|
|
11389
11061
|
"node": ">=0.10"
|
|
11390
11062
|
}
|
|
11391
11063
|
},
|
|
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
11064
|
"node_modules/pirates": {
|
|
11402
11065
|
"version": "4.0.7",
|
|
11403
11066
|
"integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==",
|
|
@@ -11557,12 +11220,6 @@
|
|
|
11557
11220
|
"node": ">=10"
|
|
11558
11221
|
}
|
|
11559
11222
|
},
|
|
11560
|
-
"node_modules/prr": {
|
|
11561
|
-
"version": "1.0.1",
|
|
11562
|
-
"integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==",
|
|
11563
|
-
"license": "MIT",
|
|
11564
|
-
"optional": true
|
|
11565
|
-
},
|
|
11566
11223
|
"node_modules/punycode": {
|
|
11567
11224
|
"version": "2.3.1",
|
|
11568
11225
|
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
@@ -11669,8 +11326,8 @@
|
|
|
11669
11326
|
}
|
|
11670
11327
|
},
|
|
11671
11328
|
"node_modules/react-is": {
|
|
11672
|
-
"version": "19.2.
|
|
11673
|
-
"integrity": "sha512-
|
|
11329
|
+
"version": "19.2.8",
|
|
11330
|
+
"integrity": "sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==",
|
|
11674
11331
|
"license": "MIT"
|
|
11675
11332
|
},
|
|
11676
11333
|
"node_modules/react-is-18": {
|
|
@@ -11682,8 +11339,8 @@
|
|
|
11682
11339
|
},
|
|
11683
11340
|
"node_modules/react-is-19": {
|
|
11684
11341
|
"name": "react-is",
|
|
11685
|
-
"version": "19.2.
|
|
11686
|
-
"integrity": "sha512-
|
|
11342
|
+
"version": "19.2.8",
|
|
11343
|
+
"integrity": "sha512-s5un28nYxKJw5gvUHyW5PCC28CvBqLu9r3cWgzHT4Vo/5fqqkFcdRYsGcKf50WMPpjjFZS5d76fn3YCo2njKwQ==",
|
|
11687
11344
|
"dev": true,
|
|
11688
11345
|
"license": "MIT"
|
|
11689
11346
|
},
|
|
@@ -12189,8 +11846,8 @@
|
|
|
12189
11846
|
"license": "MIT"
|
|
12190
11847
|
},
|
|
12191
11848
|
"node_modules/sax": {
|
|
12192
|
-
"version": "1.6.
|
|
12193
|
-
"integrity": "sha512-
|
|
11849
|
+
"version": "1.6.1",
|
|
11850
|
+
"integrity": "sha512-42tBVwLWnaQvW5zc4HbZrTuWccECCZfBi92FDuwtqxasH+JbPB3/FOKb1m222K42R4WxuxzzMsTswfzgtSu64Q==",
|
|
12194
11851
|
"license": "BlueOak-1.0.0",
|
|
12195
11852
|
"engines": {
|
|
12196
11853
|
"node": ">=11.0.0"
|
|
@@ -12437,19 +12094,6 @@
|
|
|
12437
12094
|
"url": "https://github.com/sponsors/isaacs"
|
|
12438
12095
|
}
|
|
12439
12096
|
},
|
|
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
12097
|
"node_modules/slash": {
|
|
12454
12098
|
"version": "3.0.0",
|
|
12455
12099
|
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
|
@@ -13000,15 +12644,15 @@
|
|
|
13000
12644
|
}
|
|
13001
12645
|
},
|
|
13002
12646
|
"node_modules/test-exclude/node_modules/brace-expansion": {
|
|
13003
|
-
"version": "5.0.
|
|
13004
|
-
"integrity": "sha512-
|
|
12647
|
+
"version": "5.0.8",
|
|
12648
|
+
"integrity": "sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==",
|
|
13005
12649
|
"dev": true,
|
|
13006
12650
|
"license": "MIT",
|
|
13007
12651
|
"dependencies": {
|
|
13008
12652
|
"balanced-match": "^4.0.2"
|
|
13009
12653
|
},
|
|
13010
12654
|
"engines": {
|
|
13011
|
-
"node": "
|
|
12655
|
+
"node": "20 || >=22"
|
|
13012
12656
|
}
|
|
13013
12657
|
},
|
|
13014
12658
|
"node_modules/test-exclude/node_modules/minimatch": {
|
|
@@ -13113,20 +12757,20 @@
|
|
|
13113
12757
|
}
|
|
13114
12758
|
},
|
|
13115
12759
|
"node_modules/tldts": {
|
|
13116
|
-
"version": "7.4.
|
|
13117
|
-
"integrity": "sha512-
|
|
12760
|
+
"version": "7.4.9",
|
|
12761
|
+
"integrity": "sha512-3kZ8wQQ/k5DrChD4X4FVvr2D7E5uoRgAqkPyLpSCGUvqOvqu+JEdr3mwMUaVWb+vMHZaKhF5fp2PBigKsui7hA==",
|
|
13118
12762
|
"dev": true,
|
|
13119
12763
|
"license": "MIT",
|
|
13120
12764
|
"dependencies": {
|
|
13121
|
-
"tldts-core": "^7.4.
|
|
12765
|
+
"tldts-core": "^7.4.9"
|
|
13122
12766
|
},
|
|
13123
12767
|
"bin": {
|
|
13124
12768
|
"tldts": "bin/cli.js"
|
|
13125
12769
|
}
|
|
13126
12770
|
},
|
|
13127
12771
|
"node_modules/tldts-core": {
|
|
13128
|
-
"version": "7.4.
|
|
13129
|
-
"integrity": "sha512-
|
|
12772
|
+
"version": "7.4.9",
|
|
12773
|
+
"integrity": "sha512-DxKfPBI52p2msTEu7MPhdpdDTBhhVQg1a/8PjQckeyAvO13eMYElX545grIp6nnTGIMZlRvFZPvFhvI/WIz2Vg==",
|
|
13130
12774
|
"dev": true,
|
|
13131
12775
|
"license": "MIT"
|
|
13132
12776
|
},
|
|
@@ -13361,8 +13005,8 @@
|
|
|
13361
13005
|
}
|
|
13362
13006
|
},
|
|
13363
13007
|
"node_modules/undici": {
|
|
13364
|
-
"version": "7.
|
|
13365
|
-
"integrity": "sha512-
|
|
13008
|
+
"version": "7.29.0",
|
|
13009
|
+
"integrity": "sha512-IDxfleLmmbSskfWSUATiN1nfn2rDuvnMOqb5CWR92iIfojA0Ud+ulOAAEQ57LPr9rWmsreUyf5lwyao+7GNNVw==",
|
|
13366
13010
|
"dev": true,
|
|
13367
13011
|
"license": "MIT",
|
|
13368
13012
|
"engines": {
|
|
@@ -13589,8 +13233,8 @@
|
|
|
13589
13233
|
}
|
|
13590
13234
|
},
|
|
13591
13235
|
"node_modules/vite/node_modules/postcss": {
|
|
13592
|
-
"version": "8.5.
|
|
13593
|
-
"integrity": "sha512-
|
|
13236
|
+
"version": "8.5.23",
|
|
13237
|
+
"integrity": "sha512-g50586zr4bZmwFiTlflMu8E0bDTb5I5gertgwAKmsdUlTQIhZtunzUlD1WSzwcVWPoAVpsrA6vlfCD7oXvRwgg==",
|
|
13594
13238
|
"dev": true,
|
|
13595
13239
|
"funding": [
|
|
13596
13240
|
{
|
|
@@ -13608,7 +13252,7 @@
|
|
|
13608
13252
|
],
|
|
13609
13253
|
"license": "MIT",
|
|
13610
13254
|
"dependencies": {
|
|
13611
|
-
"nanoid": "^3.3.
|
|
13255
|
+
"nanoid": "^3.3.16",
|
|
13612
13256
|
"picocolors": "^1.1.1",
|
|
13613
13257
|
"source-map-js": "^1.2.1"
|
|
13614
13258
|
},
|