@wavemaker-ai/react-runtime 1.0.0-rc.324 → 1.0.0-rc.326
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/container/index.js +6 -1
- package/components/container/layout-grid/grid-row/index.js +1 -1
- 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/form-controller/withFormController.js +19 -2
- package/components/data/form/form-field/base-field.js +8 -5
- package/components/data/form/form-field/index.js +11 -7
- 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 +11 -3
- 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 +18 -4
- package/components/data/table/components/TableBody.js +5 -3
- package/components/data/table/components/TableHeader.js +9 -7
- 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.js +0 -1
- 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/index.js +47 -18
- package/components/data/table/live-table/index.js +0 -1
- package/components/data/table/props.d.ts +4 -0
- package/components/data/table/utils/buildSelectionColumns.js +0 -2
- package/components/data/table/utils/columnBuilder.d.ts +16 -2
- package/components/data/table/utils/columnBuilder.js +13 -8
- 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 +14 -2
- package/components/data/table/utils/index.js +45 -19
- package/components/dialogs/dialog/index.js +3 -2
- package/components/input/default/radioset/index.js +2 -1
- package/components/input/select/index.js +1 -2
- package/components/input/textarea/index.js +1 -1
- package/components/navigation/popover/index.js +15 -7
- package/components/page/index.js +1 -1
- package/components/page/page-content/index.js +6 -2
- 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/context/WidgetProvider.js +2 -1
- package/core/proxy-service.d.ts +1 -0
- package/core/proxy-service.js +53 -2
- package/core/util/index.js +3 -1
- package/higherOrder/BasePage.js +25 -4
- package/higherOrder/withBaseWrapper.js +9 -7
- package/package-lock.json +127 -138
- package/package.json +3 -3
- package/runtime-dynamic/components/partial-content.js +3 -1
- package/runtime-dynamic/factories/dynamic-component.js +26 -3
- package/runtime-dynamic/services/css-scoping.d.ts +2 -0
- package/runtime-dynamic/services/css-scoping.js +39 -20
- package/utils/custom-expression/parser.js +11 -8
- package/utils/transformedDataset-utils.d.ts +3 -3
- package/utils/transformedDataset-utils.js +1 -2
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.326",
|
|
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.326",
|
|
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.326",
|
|
32
|
+
"@wavemaker-ai/variables": "1.0.0-rc.326",
|
|
33
33
|
"@wavemaker/nvd3": "1.8.16",
|
|
34
34
|
"axios": "1.15.1",
|
|
35
35
|
"d3": "7.8.5",
|
|
@@ -165,8 +165,8 @@
|
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
167
|
"node_modules/@asamuzakjp/dom-selector/node_modules/lru-cache": {
|
|
168
|
-
"version": "11.5.
|
|
169
|
-
"integrity": "sha512-
|
|
168
|
+
"version": "11.5.2",
|
|
169
|
+
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
170
170
|
"dev": true,
|
|
171
171
|
"license": "BlueOak-1.0.0",
|
|
172
172
|
"engines": {
|
|
@@ -739,8 +739,8 @@
|
|
|
739
739
|
}
|
|
740
740
|
},
|
|
741
741
|
"node_modules/@emnapi/runtime": {
|
|
742
|
-
"version": "1.11.
|
|
743
|
-
"integrity": "sha512-
|
|
742
|
+
"version": "1.11.2",
|
|
743
|
+
"integrity": "sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA==",
|
|
744
744
|
"license": "MIT",
|
|
745
745
|
"optional": true,
|
|
746
746
|
"dependencies": {
|
|
@@ -1384,8 +1384,8 @@
|
|
|
1384
1384
|
}
|
|
1385
1385
|
},
|
|
1386
1386
|
"node_modules/@eslint/eslintrc": {
|
|
1387
|
-
"version": "3.3.
|
|
1388
|
-
"integrity": "sha512-
|
|
1387
|
+
"version": "3.3.6",
|
|
1388
|
+
"integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==",
|
|
1389
1389
|
"dev": true,
|
|
1390
1390
|
"license": "MIT",
|
|
1391
1391
|
"dependencies": {
|
|
@@ -1395,7 +1395,7 @@
|
|
|
1395
1395
|
"globals": "^14.0.0",
|
|
1396
1396
|
"ignore": "^5.2.0",
|
|
1397
1397
|
"import-fresh": "^3.2.1",
|
|
1398
|
-
"js-yaml": "^4.
|
|
1398
|
+
"js-yaml": "^4.3.0",
|
|
1399
1399
|
"minimatch": "^3.1.5",
|
|
1400
1400
|
"strip-json-comments": "^3.1.1"
|
|
1401
1401
|
},
|
|
@@ -1407,8 +1407,8 @@
|
|
|
1407
1407
|
}
|
|
1408
1408
|
},
|
|
1409
1409
|
"node_modules/@eslint/js": {
|
|
1410
|
-
"version": "9.39.
|
|
1411
|
-
"integrity": "sha512-
|
|
1410
|
+
"version": "9.39.5",
|
|
1411
|
+
"integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==",
|
|
1412
1412
|
"dev": true,
|
|
1413
1413
|
"license": "MIT",
|
|
1414
1414
|
"engines": {
|
|
@@ -3597,8 +3597,8 @@
|
|
|
3597
3597
|
"license": "MIT"
|
|
3598
3598
|
},
|
|
3599
3599
|
"node_modules/@sinclair/typebox": {
|
|
3600
|
-
"version": "0.34.
|
|
3601
|
-
"integrity": "sha512-
|
|
3600
|
+
"version": "0.34.51",
|
|
3601
|
+
"integrity": "sha512-Nu4sNPT4G3QgAvxmdUCR/NBmsi23F2tEIcbMOZJVHS+qEgk+rmXxQikEeoKFyaX+UEggAoTvHUvIlj8MfYPzXQ==",
|
|
3602
3602
|
"dev": true,
|
|
3603
3603
|
"license": "MIT"
|
|
3604
3604
|
},
|
|
@@ -3999,8 +3999,8 @@
|
|
|
3999
3999
|
"license": "MIT"
|
|
4000
4000
|
},
|
|
4001
4001
|
"node_modules/@types/d3-random": {
|
|
4002
|
-
"version": "3.0.
|
|
4003
|
-
"integrity": "sha512-
|
|
4002
|
+
"version": "3.0.4",
|
|
4003
|
+
"integrity": "sha512-UHYId5WTCx4L4YNel7NU00XUXXgvgpgZOvp10PuvsQENjMDXhh2RyFc0KBjO7B45ne4Ha1yVH7ii0vnzKkuzWA==",
|
|
4004
4004
|
"dev": true,
|
|
4005
4005
|
"license": "MIT"
|
|
4006
4006
|
},
|
|
@@ -4309,16 +4309,16 @@
|
|
|
4309
4309
|
"license": "MIT"
|
|
4310
4310
|
},
|
|
4311
4311
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4312
|
-
"version": "8.
|
|
4313
|
-
"integrity": "sha512-
|
|
4312
|
+
"version": "8.63.0",
|
|
4313
|
+
"integrity": "sha512-rvwSgqT+DHpWdzfSzPatRLm02a0GlESt++9iy3hLCDY4BgkaLcl8LBi9Yh7XGFBpwcBE/K3024QuXWTpbz4FfQ==",
|
|
4314
4314
|
"dev": true,
|
|
4315
4315
|
"license": "MIT",
|
|
4316
4316
|
"dependencies": {
|
|
4317
4317
|
"@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.
|
|
4318
|
+
"@typescript-eslint/scope-manager": "8.63.0",
|
|
4319
|
+
"@typescript-eslint/type-utils": "8.63.0",
|
|
4320
|
+
"@typescript-eslint/utils": "8.63.0",
|
|
4321
|
+
"@typescript-eslint/visitor-keys": "8.63.0",
|
|
4322
4322
|
"ignore": "^7.0.5",
|
|
4323
4323
|
"natural-compare": "^1.4.0",
|
|
4324
4324
|
"ts-api-utils": "^2.5.0"
|
|
@@ -4331,14 +4331,14 @@
|
|
|
4331
4331
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4332
4332
|
},
|
|
4333
4333
|
"peerDependencies": {
|
|
4334
|
-
"@typescript-eslint/parser": "^8.
|
|
4334
|
+
"@typescript-eslint/parser": "^8.63.0",
|
|
4335
4335
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4336
4336
|
"typescript": ">=4.8.4 <6.1.0"
|
|
4337
4337
|
}
|
|
4338
4338
|
},
|
|
4339
4339
|
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": {
|
|
4340
|
-
"version": "7.0.
|
|
4341
|
-
"integrity": "sha512-
|
|
4340
|
+
"version": "7.0.6",
|
|
4341
|
+
"integrity": "sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==",
|
|
4342
4342
|
"dev": true,
|
|
4343
4343
|
"license": "MIT",
|
|
4344
4344
|
"engines": {
|
|
@@ -4346,15 +4346,15 @@
|
|
|
4346
4346
|
}
|
|
4347
4347
|
},
|
|
4348
4348
|
"node_modules/@typescript-eslint/parser": {
|
|
4349
|
-
"version": "8.
|
|
4350
|
-
"integrity": "sha512-
|
|
4349
|
+
"version": "8.63.0",
|
|
4350
|
+
"integrity": "sha512-gwh4gvvlaVDKKxyfxMG+Gnu1u9X0OQBwyGLkbwB65dIzBKnxeRiJlNFqlI3zwVhNXJIs6qV7mlFCn/BIajlVig==",
|
|
4351
4351
|
"dev": true,
|
|
4352
4352
|
"license": "MIT",
|
|
4353
4353
|
"dependencies": {
|
|
4354
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4355
|
-
"@typescript-eslint/types": "8.
|
|
4356
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4357
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4354
|
+
"@typescript-eslint/scope-manager": "8.63.0",
|
|
4355
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4356
|
+
"@typescript-eslint/typescript-estree": "8.63.0",
|
|
4357
|
+
"@typescript-eslint/visitor-keys": "8.63.0",
|
|
4358
4358
|
"debug": "^4.4.3"
|
|
4359
4359
|
},
|
|
4360
4360
|
"engines": {
|
|
@@ -4370,13 +4370,13 @@
|
|
|
4370
4370
|
}
|
|
4371
4371
|
},
|
|
4372
4372
|
"node_modules/@typescript-eslint/project-service": {
|
|
4373
|
-
"version": "8.
|
|
4374
|
-
"integrity": "sha512-
|
|
4373
|
+
"version": "8.63.0",
|
|
4374
|
+
"integrity": "sha512-e5dh0/UI0ok53AlZ5wRkXCB32z/f2jUZqPR/ygAw5WYaSw8j9EoJWlS7wQjr/dmOaqWjnPIn2m+HhVPCMWGZVQ==",
|
|
4375
4375
|
"dev": true,
|
|
4376
4376
|
"license": "MIT",
|
|
4377
4377
|
"dependencies": {
|
|
4378
|
-
"@typescript-eslint/tsconfig-utils": "^8.
|
|
4379
|
-
"@typescript-eslint/types": "^8.
|
|
4378
|
+
"@typescript-eslint/tsconfig-utils": "^8.63.0",
|
|
4379
|
+
"@typescript-eslint/types": "^8.63.0",
|
|
4380
4380
|
"debug": "^4.4.3"
|
|
4381
4381
|
},
|
|
4382
4382
|
"engines": {
|
|
@@ -4391,13 +4391,13 @@
|
|
|
4391
4391
|
}
|
|
4392
4392
|
},
|
|
4393
4393
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4394
|
-
"version": "8.
|
|
4395
|
-
"integrity": "sha512-
|
|
4394
|
+
"version": "8.63.0",
|
|
4395
|
+
"integrity": "sha512-uUyfMWCnDSN8bCpcrY8nGP2BLkQ9Xn0GsipcONcpIDWhwhO4ZSyHvyS14U3X75mzxWxL3I2UZIrenTzdzcJO8A==",
|
|
4396
4396
|
"dev": true,
|
|
4397
4397
|
"license": "MIT",
|
|
4398
4398
|
"dependencies": {
|
|
4399
|
-
"@typescript-eslint/types": "8.
|
|
4400
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4399
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4400
|
+
"@typescript-eslint/visitor-keys": "8.63.0"
|
|
4401
4401
|
},
|
|
4402
4402
|
"engines": {
|
|
4403
4403
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4408,8 +4408,8 @@
|
|
|
4408
4408
|
}
|
|
4409
4409
|
},
|
|
4410
4410
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4411
|
-
"version": "8.
|
|
4412
|
-
"integrity": "sha512-
|
|
4411
|
+
"version": "8.63.0",
|
|
4412
|
+
"integrity": "sha512-sUAbkulqBAsncKnbRP3+7CtQFRKicexnj7ZwNC6ddCR7EmrXvjvdCYMJbUIqMd6lwoEriZjwLo08aS5tSjVMHg==",
|
|
4413
4413
|
"dev": true,
|
|
4414
4414
|
"license": "MIT",
|
|
4415
4415
|
"engines": {
|
|
@@ -4424,14 +4424,14 @@
|
|
|
4424
4424
|
}
|
|
4425
4425
|
},
|
|
4426
4426
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4427
|
-
"version": "8.
|
|
4428
|
-
"integrity": "sha512
|
|
4427
|
+
"version": "8.63.0",
|
|
4428
|
+
"integrity": "sha512-Nzzh/OGxVCOjObjaj1CQF2RUasyYy2Jfuh+zZ3PjLzG2fYRriAiZLib9UKtO+CpQAS3YHiAS+ckZDclwqI1TPA==",
|
|
4429
4429
|
"dev": true,
|
|
4430
4430
|
"license": "MIT",
|
|
4431
4431
|
"dependencies": {
|
|
4432
|
-
"@typescript-eslint/types": "8.
|
|
4433
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4434
|
-
"@typescript-eslint/utils": "8.
|
|
4432
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4433
|
+
"@typescript-eslint/typescript-estree": "8.63.0",
|
|
4434
|
+
"@typescript-eslint/utils": "8.63.0",
|
|
4435
4435
|
"debug": "^4.4.3",
|
|
4436
4436
|
"ts-api-utils": "^2.5.0"
|
|
4437
4437
|
},
|
|
@@ -4448,8 +4448,8 @@
|
|
|
4448
4448
|
}
|
|
4449
4449
|
},
|
|
4450
4450
|
"node_modules/@typescript-eslint/types": {
|
|
4451
|
-
"version": "8.
|
|
4452
|
-
"integrity": "sha512-
|
|
4451
|
+
"version": "8.63.0",
|
|
4452
|
+
"integrity": "sha512-xyLtl9DUBBFrcJS4x2pIqGLH68/tC2uOa4Z7pUteW09D3bXnnXUom4dyPikzWgB7llmIc1zoeI3aoUdC4rPK/Q==",
|
|
4453
4453
|
"dev": true,
|
|
4454
4454
|
"license": "MIT",
|
|
4455
4455
|
"engines": {
|
|
@@ -4461,15 +4461,15 @@
|
|
|
4461
4461
|
}
|
|
4462
4462
|
},
|
|
4463
4463
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4464
|
-
"version": "8.
|
|
4465
|
-
"integrity": "sha512
|
|
4464
|
+
"version": "8.63.0",
|
|
4465
|
+
"integrity": "sha512-ygBkU+B7ex5UI/gKhaqexWev79uISfIv7XQCRNYO/jmD8rGLPyWLAb3KMRT6nd8Gt9bmUBi9+iX6tBdYfOY81Q==",
|
|
4466
4466
|
"dev": true,
|
|
4467
4467
|
"license": "MIT",
|
|
4468
4468
|
"dependencies": {
|
|
4469
|
-
"@typescript-eslint/project-service": "8.
|
|
4470
|
-
"@typescript-eslint/tsconfig-utils": "8.
|
|
4471
|
-
"@typescript-eslint/types": "8.
|
|
4472
|
-
"@typescript-eslint/visitor-keys": "8.
|
|
4469
|
+
"@typescript-eslint/project-service": "8.63.0",
|
|
4470
|
+
"@typescript-eslint/tsconfig-utils": "8.63.0",
|
|
4471
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4472
|
+
"@typescript-eslint/visitor-keys": "8.63.0",
|
|
4473
4473
|
"debug": "^4.4.3",
|
|
4474
4474
|
"minimatch": "^10.2.2",
|
|
4475
4475
|
"semver": "^7.7.3",
|
|
@@ -4497,8 +4497,8 @@
|
|
|
4497
4497
|
}
|
|
4498
4498
|
},
|
|
4499
4499
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
|
|
4500
|
-
"version": "5.0.
|
|
4501
|
-
"integrity": "sha512-
|
|
4500
|
+
"version": "5.0.7",
|
|
4501
|
+
"integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
|
|
4502
4502
|
"dev": true,
|
|
4503
4503
|
"license": "MIT",
|
|
4504
4504
|
"dependencies": {
|
|
@@ -4536,15 +4536,15 @@
|
|
|
4536
4536
|
}
|
|
4537
4537
|
},
|
|
4538
4538
|
"node_modules/@typescript-eslint/utils": {
|
|
4539
|
-
"version": "8.
|
|
4540
|
-
"integrity": "sha512-
|
|
4539
|
+
"version": "8.63.0",
|
|
4540
|
+
"integrity": "sha512-fUKaeAvrTuQg/Tgt3nliAUSZHJM6DlCcfyEmxCvlX8kieWSStBX+5O5Fnidtc3i2JrH+9c/GL4RY2iasd/GPTA==",
|
|
4541
4541
|
"dev": true,
|
|
4542
4542
|
"license": "MIT",
|
|
4543
4543
|
"dependencies": {
|
|
4544
4544
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4545
|
-
"@typescript-eslint/scope-manager": "8.
|
|
4546
|
-
"@typescript-eslint/types": "8.
|
|
4547
|
-
"@typescript-eslint/typescript-estree": "8.
|
|
4545
|
+
"@typescript-eslint/scope-manager": "8.63.0",
|
|
4546
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4547
|
+
"@typescript-eslint/typescript-estree": "8.63.0"
|
|
4548
4548
|
},
|
|
4549
4549
|
"engines": {
|
|
4550
4550
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4559,12 +4559,12 @@
|
|
|
4559
4559
|
}
|
|
4560
4560
|
},
|
|
4561
4561
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4562
|
-
"version": "8.
|
|
4563
|
-
"integrity": "sha512-
|
|
4562
|
+
"version": "8.63.0",
|
|
4563
|
+
"integrity": "sha512-UexrHGnGTpbuQHct2ExOc2ZcFbGUS9FOesCxxqdBGcpI1BxYu/LZ6U8Aq6/72XtF/qRBk9nhuGHFJIXXMhPMdw==",
|
|
4564
4564
|
"dev": true,
|
|
4565
4565
|
"license": "MIT",
|
|
4566
4566
|
"dependencies": {
|
|
4567
|
-
"@typescript-eslint/types": "8.
|
|
4567
|
+
"@typescript-eslint/types": "8.63.0",
|
|
4568
4568
|
"eslint-visitor-keys": "^5.0.0"
|
|
4569
4569
|
},
|
|
4570
4570
|
"engines": {
|
|
@@ -4984,8 +4984,8 @@
|
|
|
4984
4984
|
}
|
|
4985
4985
|
},
|
|
4986
4986
|
"node_modules/@vitest/pretty-format": {
|
|
4987
|
-
"version": "3.2.
|
|
4988
|
-
"integrity": "sha512-
|
|
4987
|
+
"version": "3.2.7",
|
|
4988
|
+
"integrity": "sha512-KUHlwqVu0sRlhCdyPdQ/wBoTfRahjUky1MubOmYw9fWfIZy1gNoHpuaaQBPAaMaVYdQYHJLurzj8ECCj5OwTqA==",
|
|
4989
4989
|
"dev": true,
|
|
4990
4990
|
"license": "MIT",
|
|
4991
4991
|
"dependencies": {
|
|
@@ -5074,8 +5074,8 @@
|
|
|
5074
5074
|
}
|
|
5075
5075
|
},
|
|
5076
5076
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
5077
|
-
"version": "1.0.0-rc.
|
|
5078
|
-
"integrity": "sha512
|
|
5077
|
+
"version": "1.0.0-rc.326",
|
|
5078
|
+
"integrity": "sha512-KSlbZdNerxfUXy9z8DeB5SOvU8hapDn0SWLB2vXmZGe64HsD6nxZ2RK3Wu25ZVSfmvenJfOGpqbLvx6wTfK9nw==",
|
|
5079
5079
|
"license": "ISC",
|
|
5080
5080
|
"dependencies": {
|
|
5081
5081
|
"@angular/compiler": "12.2.1",
|
|
@@ -5357,8 +5357,8 @@
|
|
|
5357
5357
|
}
|
|
5358
5358
|
},
|
|
5359
5359
|
"node_modules/@wavemaker-ai/variables": {
|
|
5360
|
-
"version": "1.0.0-rc.
|
|
5361
|
-
"integrity": "sha512-
|
|
5360
|
+
"version": "1.0.0-rc.326",
|
|
5361
|
+
"integrity": "sha512-c3T8Eq/X2h5hnb4GU2IkANxBf2uMUH9QHVILLsShoYVnMoee+huuffRzbMp3/isRBnDzG8vsW/qVqoMCPw8SoA==",
|
|
5362
5362
|
"license": "ISC",
|
|
5363
5363
|
"dependencies": {
|
|
5364
5364
|
"@metrichor/jmespath": "^0.3.1",
|
|
@@ -5850,8 +5850,8 @@
|
|
|
5850
5850
|
}
|
|
5851
5851
|
},
|
|
5852
5852
|
"node_modules/bare-fs": {
|
|
5853
|
-
"version": "4.7.
|
|
5854
|
-
"integrity": "sha512-
|
|
5853
|
+
"version": "4.7.4",
|
|
5854
|
+
"integrity": "sha512-y1kC+ffIx/tPLdTE693uNjHfzTfr+ravR5tvWlMXe25nELbkqV400S71qHDwbkAQ1FVEZobB1NFRzFbCCcyBCQ==",
|
|
5855
5855
|
"license": "Apache-2.0",
|
|
5856
5856
|
"dependencies": {
|
|
5857
5857
|
"bare-events": "^2.5.4",
|
|
@@ -5872,21 +5872,10 @@
|
|
|
5872
5872
|
}
|
|
5873
5873
|
}
|
|
5874
5874
|
},
|
|
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
5875
|
"node_modules/bare-path": {
|
|
5884
|
-
"version": "3.
|
|
5885
|
-
"integrity": "sha512-
|
|
5886
|
-
"license": "Apache-2.0"
|
|
5887
|
-
"dependencies": {
|
|
5888
|
-
"bare-os": "^3.0.1"
|
|
5889
|
-
}
|
|
5876
|
+
"version": "3.1.1",
|
|
5877
|
+
"integrity": "sha512-JprUlveX3QjApC1cTpsUOiscADftCGVWkzitbHsRqv84hzYwYHw2mbluddsq5TvI8mH/8Ov1f4BiMAdcB0oYnQ==",
|
|
5878
|
+
"license": "Apache-2.0"
|
|
5890
5879
|
},
|
|
5891
5880
|
"node_modules/bare-stream": {
|
|
5892
5881
|
"version": "2.13.3",
|
|
@@ -5942,8 +5931,8 @@
|
|
|
5942
5931
|
"license": "MIT"
|
|
5943
5932
|
},
|
|
5944
5933
|
"node_modules/baseline-browser-mapping": {
|
|
5945
|
-
"version": "2.10.
|
|
5946
|
-
"integrity": "sha512-
|
|
5934
|
+
"version": "2.10.42",
|
|
5935
|
+
"integrity": "sha512-c/jurFrDLyui7o1J86yLkRu4LMsTYcBohveus7/I2Hzdn9KIP2bdJPTue/lR1KH46enoPbD77GKeSYNdyPoD3Q==",
|
|
5947
5936
|
"license": "Apache-2.0",
|
|
5948
5937
|
"bin": {
|
|
5949
5938
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -5967,8 +5956,8 @@
|
|
|
5967
5956
|
"license": "ISC"
|
|
5968
5957
|
},
|
|
5969
5958
|
"node_modules/brace-expansion": {
|
|
5970
|
-
"version": "1.1.
|
|
5971
|
-
"integrity": "sha512-
|
|
5959
|
+
"version": "1.1.16",
|
|
5960
|
+
"integrity": "sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==",
|
|
5972
5961
|
"license": "MIT",
|
|
5973
5962
|
"dependencies": {
|
|
5974
5963
|
"balanced-match": "^1.0.0",
|
|
@@ -5987,8 +5976,8 @@
|
|
|
5987
5976
|
}
|
|
5988
5977
|
},
|
|
5989
5978
|
"node_modules/browserslist": {
|
|
5990
|
-
"version": "4.28.
|
|
5991
|
-
"integrity": "sha512-
|
|
5979
|
+
"version": "4.28.5",
|
|
5980
|
+
"integrity": "sha512-Cu2E6QejHWzuDMTkuwgpABFgDfZrXLQq5V13YOACZx4mFAG4IwGTbTfHPMr4WtxlHoXSM8FIuRwYYCz5XiabaQ==",
|
|
5992
5981
|
"dev": true,
|
|
5993
5982
|
"funding": [
|
|
5994
5983
|
{
|
|
@@ -6006,10 +5995,10 @@
|
|
|
6006
5995
|
],
|
|
6007
5996
|
"license": "MIT",
|
|
6008
5997
|
"dependencies": {
|
|
6009
|
-
"baseline-browser-mapping": "^2.10.
|
|
6010
|
-
"caniuse-lite": "^1.0.
|
|
6011
|
-
"electron-to-chromium": "^1.5.
|
|
6012
|
-
"node-releases": "^2.0.
|
|
5998
|
+
"baseline-browser-mapping": "^2.10.42",
|
|
5999
|
+
"caniuse-lite": "^1.0.30001800",
|
|
6000
|
+
"electron-to-chromium": "^1.5.387",
|
|
6001
|
+
"node-releases": "^2.0.50",
|
|
6013
6002
|
"update-browserslist-db": "^1.2.3"
|
|
6014
6003
|
},
|
|
6015
6004
|
"bin": {
|
|
@@ -6114,8 +6103,8 @@
|
|
|
6114
6103
|
}
|
|
6115
6104
|
},
|
|
6116
6105
|
"node_modules/caniuse-lite": {
|
|
6117
|
-
"version": "1.0.
|
|
6118
|
-
"integrity": "sha512-
|
|
6106
|
+
"version": "1.0.30001803",
|
|
6107
|
+
"integrity": "sha512-g/uHREV2ZpK9qMalCsWaxmA6ol+DX8GYhuf3T40RKoP+oL7vhRJh8LNt73PCjpnR6l14FzfPrB5Yux4PKm2meg==",
|
|
6119
6108
|
"funding": [
|
|
6120
6109
|
{
|
|
6121
6110
|
"type": "opencollective",
|
|
@@ -6237,8 +6226,8 @@
|
|
|
6237
6226
|
}
|
|
6238
6227
|
},
|
|
6239
6228
|
"node_modules/cli-truncate/node_modules/string-width": {
|
|
6240
|
-
"version": "8.2.
|
|
6241
|
-
"integrity": "sha512-
|
|
6229
|
+
"version": "8.2.2",
|
|
6230
|
+
"integrity": "sha512-GaPUh5gfdrYzqeVNZvUfT23vYYxXzKYidUcnMtJg/3rxRV63EFZy3k6xfKlmfeJD0176lnUV/Usr3XcwSvFzpg==",
|
|
6242
6231
|
"license": "MIT",
|
|
6243
6232
|
"dependencies": {
|
|
6244
6233
|
"get-east-asian-width": "^1.5.0",
|
|
@@ -6573,8 +6562,8 @@
|
|
|
6573
6562
|
}
|
|
6574
6563
|
},
|
|
6575
6564
|
"node_modules/cssstyle/node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
6576
|
-
"version": "1.1.
|
|
6577
|
-
"integrity": "sha512-
|
|
6565
|
+
"version": "1.1.6",
|
|
6566
|
+
"integrity": "sha512-TcJCWFbXLPpJYq6z7bfOyjWYJDiDg2/I4gyUC9pqPNqHFRIey0EB0q0L5cSnQDfWJg8Jd6VadakxdIez/3zkqQ==",
|
|
6578
6567
|
"dev": true,
|
|
6579
6568
|
"funding": [
|
|
6580
6569
|
{
|
|
@@ -6610,8 +6599,8 @@
|
|
|
6610
6599
|
}
|
|
6611
6600
|
},
|
|
6612
6601
|
"node_modules/cssstyle/node_modules/lru-cache": {
|
|
6613
|
-
"version": "11.5.
|
|
6614
|
-
"integrity": "sha512-
|
|
6602
|
+
"version": "11.5.2",
|
|
6603
|
+
"integrity": "sha512-4pfM1Ff0x50o0tQwb5ucw/RzNyD0/YJME6IVcStalZuMWxdt3sR3huStTtxz4PUmvZfRguvDejasvQ2kifR11g==",
|
|
6615
6604
|
"dev": true,
|
|
6616
6605
|
"license": "BlueOak-1.0.0",
|
|
6617
6606
|
"engines": {
|
|
@@ -7288,8 +7277,8 @@
|
|
|
7288
7277
|
"license": "MIT"
|
|
7289
7278
|
},
|
|
7290
7279
|
"node_modules/electron-to-chromium": {
|
|
7291
|
-
"version": "1.5.
|
|
7292
|
-
"integrity": "sha512-
|
|
7280
|
+
"version": "1.5.389",
|
|
7281
|
+
"integrity": "sha512-cEto7aeOqBfU1D+c5py5pE+ooscKE75JifxLBdFUZsqAxRS6y7kebtxAZvICszSl05gPjYHDTjY+lXpyGvpJbg==",
|
|
7293
7282
|
"dev": true,
|
|
7294
7283
|
"license": "ISC"
|
|
7295
7284
|
},
|
|
@@ -7440,8 +7429,8 @@
|
|
|
7440
7429
|
}
|
|
7441
7430
|
},
|
|
7442
7431
|
"node_modules/es-iterator-helpers": {
|
|
7443
|
-
"version": "1.
|
|
7444
|
-
"integrity": "sha512-
|
|
7432
|
+
"version": "1.4.0",
|
|
7433
|
+
"integrity": "sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==",
|
|
7445
7434
|
"dev": true,
|
|
7446
7435
|
"license": "MIT",
|
|
7447
7436
|
"dependencies": {
|
|
@@ -7590,8 +7579,8 @@
|
|
|
7590
7579
|
}
|
|
7591
7580
|
},
|
|
7592
7581
|
"node_modules/eslint": {
|
|
7593
|
-
"version": "9.39.
|
|
7594
|
-
"integrity": "sha512-
|
|
7582
|
+
"version": "9.39.5",
|
|
7583
|
+
"integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
|
|
7595
7584
|
"dev": true,
|
|
7596
7585
|
"license": "MIT",
|
|
7597
7586
|
"dependencies": {
|
|
@@ -7600,8 +7589,8 @@
|
|
|
7600
7589
|
"@eslint/config-array": "^0.21.2",
|
|
7601
7590
|
"@eslint/config-helpers": "^0.4.2",
|
|
7602
7591
|
"@eslint/core": "^0.17.0",
|
|
7603
|
-
"@eslint/eslintrc": "^3.3.
|
|
7604
|
-
"@eslint/js": "9.39.
|
|
7592
|
+
"@eslint/eslintrc": "^3.3.6",
|
|
7593
|
+
"@eslint/js": "9.39.5",
|
|
7605
7594
|
"@eslint/plugin-kit": "^0.4.1",
|
|
7606
7595
|
"@humanfs/node": "^0.16.6",
|
|
7607
7596
|
"@humanwhocodes/module-importer": "^1.0.1",
|
|
@@ -7753,8 +7742,8 @@
|
|
|
7753
7742
|
}
|
|
7754
7743
|
},
|
|
7755
7744
|
"node_modules/eslint-module-utils": {
|
|
7756
|
-
"version": "2.
|
|
7757
|
-
"integrity": "sha512-
|
|
7745
|
+
"version": "2.14.0",
|
|
7746
|
+
"integrity": "sha512-W2WCRZ9Dqntd+2u8jJcVMV2PKulc6RdLgUUoh/yQr3uB6lo/ZOeGx11sv60/8S4QFFKNslAlWhr9u0Ef7ZW6Ig==",
|
|
7758
7747
|
"dev": true,
|
|
7759
7748
|
"license": "MIT",
|
|
7760
7749
|
"dependencies": {
|
|
@@ -8578,8 +8567,8 @@
|
|
|
8578
8567
|
}
|
|
8579
8568
|
},
|
|
8580
8569
|
"node_modules/glob/node_modules/brace-expansion": {
|
|
8581
|
-
"version": "2.1.
|
|
8582
|
-
"integrity": "sha512-
|
|
8570
|
+
"version": "2.1.2",
|
|
8571
|
+
"integrity": "sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==",
|
|
8583
8572
|
"license": "MIT",
|
|
8584
8573
|
"dependencies": {
|
|
8585
8574
|
"balanced-match": "^1.0.0"
|
|
@@ -9840,8 +9829,8 @@
|
|
|
9840
9829
|
}
|
|
9841
9830
|
},
|
|
9842
9831
|
"node_modules/jodit": {
|
|
9843
|
-
"version": "4.12.
|
|
9844
|
-
"integrity": "sha512-
|
|
9832
|
+
"version": "4.12.43",
|
|
9833
|
+
"integrity": "sha512-6rdMmJwPFgymLt2L7Gc6MYLyJonMbTCgaOve3rIWWmtYUjlPvEJlT1J0KtCT7xPVPZezx7hXhyo+5bf4hSXeTg==",
|
|
9845
9834
|
"license": "MIT"
|
|
9846
9835
|
},
|
|
9847
9836
|
"node_modules/jodit-react": {
|
|
@@ -10959,8 +10948,8 @@
|
|
|
10959
10948
|
}
|
|
10960
10949
|
},
|
|
10961
10950
|
"node_modules/node-releases": {
|
|
10962
|
-
"version": "2.0.
|
|
10963
|
-
"integrity": "sha512-
|
|
10951
|
+
"version": "2.0.51",
|
|
10952
|
+
"integrity": "sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==",
|
|
10964
10953
|
"dev": true,
|
|
10965
10954
|
"license": "MIT",
|
|
10966
10955
|
"engines": {
|
|
@@ -11379,8 +11368,8 @@
|
|
|
11379
11368
|
"license": "ISC"
|
|
11380
11369
|
},
|
|
11381
11370
|
"node_modules/picomatch": {
|
|
11382
|
-
"version": "4.0.
|
|
11383
|
-
"integrity": "sha512-
|
|
11371
|
+
"version": "4.0.5",
|
|
11372
|
+
"integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
|
|
11384
11373
|
"license": "MIT",
|
|
11385
11374
|
"engines": {
|
|
11386
11375
|
"node": ">=12"
|
|
@@ -11830,8 +11819,8 @@
|
|
|
11830
11819
|
}
|
|
11831
11820
|
},
|
|
11832
11821
|
"node_modules/readdir-glob/node_modules/brace-expansion": {
|
|
11833
|
-
"version": "2.1.
|
|
11834
|
-
"integrity": "sha512-
|
|
11822
|
+
"version": "2.1.2",
|
|
11823
|
+
"integrity": "sha512-w5JZcKgdhDOgOwm8H+KgbosopHMuGcl6qbulwjtz3SM7I7P3yW1eAjzMPLrIE+NQ9vjgANKHWeMHnrT0OXW1oA==",
|
|
11835
11824
|
"license": "MIT",
|
|
11836
11825
|
"dependencies": {
|
|
11837
11826
|
"balanced-match": "^1.0.0"
|
|
@@ -13011,8 +13000,8 @@
|
|
|
13011
13000
|
}
|
|
13012
13001
|
},
|
|
13013
13002
|
"node_modules/test-exclude/node_modules/brace-expansion": {
|
|
13014
|
-
"version": "5.0.
|
|
13015
|
-
"integrity": "sha512-
|
|
13003
|
+
"version": "5.0.7",
|
|
13004
|
+
"integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
|
|
13016
13005
|
"dev": true,
|
|
13017
13006
|
"license": "MIT",
|
|
13018
13007
|
"dependencies": {
|
|
@@ -13124,20 +13113,20 @@
|
|
|
13124
13113
|
}
|
|
13125
13114
|
},
|
|
13126
13115
|
"node_modules/tldts": {
|
|
13127
|
-
"version": "7.4.
|
|
13128
|
-
"integrity": "sha512-
|
|
13116
|
+
"version": "7.4.8",
|
|
13117
|
+
"integrity": "sha512-htwgN/8KRB3z3vnC0BOETVh2m499g5GmyTK9Wq5JBLX3FNz6tSBveAd+fQhzy9hkjif8vy2jwDMR1sGhLtZl2A==",
|
|
13129
13118
|
"dev": true,
|
|
13130
13119
|
"license": "MIT",
|
|
13131
13120
|
"dependencies": {
|
|
13132
|
-
"tldts-core": "^7.4.
|
|
13121
|
+
"tldts-core": "^7.4.8"
|
|
13133
13122
|
},
|
|
13134
13123
|
"bin": {
|
|
13135
13124
|
"tldts": "bin/cli.js"
|
|
13136
13125
|
}
|
|
13137
13126
|
},
|
|
13138
13127
|
"node_modules/tldts-core": {
|
|
13139
|
-
"version": "7.4.
|
|
13140
|
-
"integrity": "sha512-
|
|
13128
|
+
"version": "7.4.8",
|
|
13129
|
+
"integrity": "sha512-c1P7u0EhACHj7lPy4MJm8iTFEU8+nB0LCtddH0fhP7noaVoXAqafMtOOeX+ulpuPBqnrRgRhw494RICT3mbhnw==",
|
|
13141
13130
|
"dev": true,
|
|
13142
13131
|
"license": "MIT"
|
|
13143
13132
|
},
|
|
@@ -13153,8 +13142,8 @@
|
|
|
13153
13142
|
}
|
|
13154
13143
|
},
|
|
13155
13144
|
"node_modules/tough-cookie": {
|
|
13156
|
-
"version": "6.0.
|
|
13157
|
-
"integrity": "sha512-
|
|
13145
|
+
"version": "6.0.2",
|
|
13146
|
+
"integrity": "sha512-exgYmnmL/sJpR3upZfXG5PoatXQii55xAiXGXzY+sROLZ/Y+SLcp9PgJNI9Vz37HpQ74WvDcLT8eqm+kV3FzrA==",
|
|
13158
13147
|
"dev": true,
|
|
13159
13148
|
"license": "BSD-3-Clause",
|
|
13160
13149
|
"dependencies": {
|
|
@@ -13240,8 +13229,8 @@
|
|
|
13240
13229
|
}
|
|
13241
13230
|
},
|
|
13242
13231
|
"node_modules/type-fest": {
|
|
13243
|
-
"version": "5.
|
|
13244
|
-
"integrity": "sha512-
|
|
13232
|
+
"version": "5.8.0",
|
|
13233
|
+
"integrity": "sha512-YGYEVz3Fm5iy/AybuA0oyNFq7H4CgQNfRp/qfe8nurE1kuCeNm3/vfm9X4Mtl+qLyaKJUh5xrFZwogr41SMjYA==",
|
|
13245
13234
|
"dev": true,
|
|
13246
13235
|
"license": "(MIT OR CC0-1.0)",
|
|
13247
13236
|
"dependencies": {
|
|
@@ -13600,8 +13589,8 @@
|
|
|
13600
13589
|
}
|
|
13601
13590
|
},
|
|
13602
13591
|
"node_modules/vite/node_modules/postcss": {
|
|
13603
|
-
"version": "8.5.
|
|
13604
|
-
"integrity": "sha512-
|
|
13592
|
+
"version": "8.5.16",
|
|
13593
|
+
"integrity": "sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg==",
|
|
13605
13594
|
"dev": true,
|
|
13606
13595
|
"funding": [
|
|
13607
13596
|
{
|