@wavemaker-ai/react-runtime 1.0.0-rc.309 → 1.0.0-rc.312
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/container/index.js +10 -1
- package/core/util/index.d.ts +5 -0
- package/core/util/index.js +7 -1
- package/core/util/utils.d.ts +4 -0
- package/core/util/utils.js +65 -2
- package/higherOrder/BaseApp.js +11 -9
- package/package-lock.json +148 -126
- package/package.json +3 -3
- package/runtime-dynamic/app-initializer.js +44 -19
- package/runtime-dynamic/components/partial-content.js +1 -4
- package/runtime-dynamic/factories/utils.js +1 -2
- package/runtime-dynamic/services/css-scoping.js +6 -2
- package/runtime-dynamic/services/prefab-resources.js +4 -14
- package/runtime-dynamic/utils/index.d.ts +2 -0
- package/runtime-dynamic/utils/index.js +14 -1
- package/tsconfig.declaration.tsbuildinfo +1 -1
- package/utils/style-utils.d.ts +2 -0
- package/utils/style-utils.js +6 -1
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.312",
|
|
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.312",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@base-ui-components/react": "1.0.0-alpha.8",
|
|
@@ -28,7 +28,7 @@
|
|
|
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.
|
|
31
|
+
"@wavemaker-ai/react-codegen": "1.0.0-rc.312",
|
|
32
32
|
"@wavemaker/nvd3": "1.8.16",
|
|
33
33
|
"axios": "1.15.1",
|
|
34
34
|
"d3": "7.8.5",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"@types/react-dom": "19.2.3",
|
|
80
80
|
"@vitejs/plugin-react": "5.1.4",
|
|
81
81
|
"@vitest/coverage-v8": "3.2.4",
|
|
82
|
-
"@wavemaker-ai/variables": "1.0.0-rc.
|
|
82
|
+
"@wavemaker-ai/variables": "1.0.0-rc.312",
|
|
83
83
|
"axe-core": "4.11.1",
|
|
84
84
|
"babel-plugin-module-resolver": "5.0.2",
|
|
85
85
|
"esbuild": "0.27.5",
|
|
@@ -179,8 +179,8 @@
|
|
|
179
179
|
}
|
|
180
180
|
},
|
|
181
181
|
"node_modules/@asamuzakjp/dom-selector/node_modules/lru-cache": {
|
|
182
|
-
"version": "11.
|
|
183
|
-
"integrity": "sha512-
|
|
182
|
+
"version": "11.4.0",
|
|
183
|
+
"integrity": "sha512-W+R+kFL4HgVxONq2bhXPi3bGpzGe/yEhVOp233qw9wCRtgncJ15P3bC+e4zZMu4Cq7d+WAJjXGW0uUkifhcatA==",
|
|
184
184
|
"dev": true,
|
|
185
185
|
"license": "BlueOak-1.0.0",
|
|
186
186
|
"engines": {
|
|
@@ -4408,15 +4408,21 @@
|
|
|
4408
4408
|
}
|
|
4409
4409
|
},
|
|
4410
4410
|
"node_modules/@napi-rs/wasm-runtime": {
|
|
4411
|
-
"version": "
|
|
4412
|
-
"integrity": "sha512-
|
|
4411
|
+
"version": "1.1.4",
|
|
4412
|
+
"integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
|
|
4413
4413
|
"dev": true,
|
|
4414
4414
|
"license": "MIT",
|
|
4415
4415
|
"optional": true,
|
|
4416
4416
|
"dependencies": {
|
|
4417
|
-
"@
|
|
4418
|
-
|
|
4419
|
-
|
|
4417
|
+
"@tybys/wasm-util": "^0.10.1"
|
|
4418
|
+
},
|
|
4419
|
+
"funding": {
|
|
4420
|
+
"type": "github",
|
|
4421
|
+
"url": "https://github.com/sponsors/Brooooooklyn"
|
|
4422
|
+
},
|
|
4423
|
+
"peerDependencies": {
|
|
4424
|
+
"@emnapi/core": "^1.7.1",
|
|
4425
|
+
"@emnapi/runtime": "^1.7.1"
|
|
4420
4426
|
}
|
|
4421
4427
|
},
|
|
4422
4428
|
"node_modules/@next/env": {
|
|
@@ -5970,16 +5976,16 @@
|
|
|
5970
5976
|
"license": "MIT"
|
|
5971
5977
|
},
|
|
5972
5978
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
5973
|
-
"version": "8.59.
|
|
5974
|
-
"integrity": "sha512-
|
|
5979
|
+
"version": "8.59.4",
|
|
5980
|
+
"integrity": "sha512-PegsU+XfyJJNjd4+u/k6f9yTyp0lEXXiPopUNobZcIAUJFGICFLN+sP0Rb3JehVmiij1Ph0dFGYqODoRo/2+6A==",
|
|
5975
5981
|
"dev": true,
|
|
5976
5982
|
"license": "MIT",
|
|
5977
5983
|
"dependencies": {
|
|
5978
5984
|
"@eslint-community/regexpp": "^4.12.2",
|
|
5979
|
-
"@typescript-eslint/scope-manager": "8.59.
|
|
5980
|
-
"@typescript-eslint/type-utils": "8.59.
|
|
5981
|
-
"@typescript-eslint/utils": "8.59.
|
|
5982
|
-
"@typescript-eslint/visitor-keys": "8.59.
|
|
5985
|
+
"@typescript-eslint/scope-manager": "8.59.4",
|
|
5986
|
+
"@typescript-eslint/type-utils": "8.59.4",
|
|
5987
|
+
"@typescript-eslint/utils": "8.59.4",
|
|
5988
|
+
"@typescript-eslint/visitor-keys": "8.59.4",
|
|
5983
5989
|
"ignore": "^7.0.5",
|
|
5984
5990
|
"natural-compare": "^1.4.0",
|
|
5985
5991
|
"ts-api-utils": "^2.5.0"
|
|
@@ -5992,7 +5998,7 @@
|
|
|
5992
5998
|
"url": "https://opencollective.com/typescript-eslint"
|
|
5993
5999
|
},
|
|
5994
6000
|
"peerDependencies": {
|
|
5995
|
-
"@typescript-eslint/parser": "^8.59.
|
|
6001
|
+
"@typescript-eslint/parser": "^8.59.4",
|
|
5996
6002
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
5997
6003
|
"typescript": ">=4.8.4 <6.1.0"
|
|
5998
6004
|
}
|
|
@@ -6007,15 +6013,15 @@
|
|
|
6007
6013
|
}
|
|
6008
6014
|
},
|
|
6009
6015
|
"node_modules/@typescript-eslint/parser": {
|
|
6010
|
-
"version": "8.59.
|
|
6011
|
-
"integrity": "sha512-
|
|
6016
|
+
"version": "8.59.4",
|
|
6017
|
+
"integrity": "sha512-zORHqO/tuhxY1zWuTvMUqddRxpiFJ72xVfcNoWpqdLjs6lfPbuQBJuW4pk+49/uBMy7Ssr4bzgjiKmmDB1UbZQ==",
|
|
6012
6018
|
"dev": true,
|
|
6013
6019
|
"license": "MIT",
|
|
6014
6020
|
"dependencies": {
|
|
6015
|
-
"@typescript-eslint/scope-manager": "8.59.
|
|
6016
|
-
"@typescript-eslint/types": "8.59.
|
|
6017
|
-
"@typescript-eslint/typescript-estree": "8.59.
|
|
6018
|
-
"@typescript-eslint/visitor-keys": "8.59.
|
|
6021
|
+
"@typescript-eslint/scope-manager": "8.59.4",
|
|
6022
|
+
"@typescript-eslint/types": "8.59.4",
|
|
6023
|
+
"@typescript-eslint/typescript-estree": "8.59.4",
|
|
6024
|
+
"@typescript-eslint/visitor-keys": "8.59.4",
|
|
6019
6025
|
"debug": "^4.4.3"
|
|
6020
6026
|
},
|
|
6021
6027
|
"engines": {
|
|
@@ -6031,13 +6037,13 @@
|
|
|
6031
6037
|
}
|
|
6032
6038
|
},
|
|
6033
6039
|
"node_modules/@typescript-eslint/project-service": {
|
|
6034
|
-
"version": "8.59.
|
|
6035
|
-
"integrity": "sha512-
|
|
6040
|
+
"version": "8.59.4",
|
|
6041
|
+
"integrity": "sha512-Ly00Vu4oAacfDeHp2Zg85ioNG6l8HG+tN1D7J+xTHSxu9y0awYKJ2zH1rFBn8ZSfuGK+7FxK3Cgl3uAz0aZZLg==",
|
|
6036
6042
|
"dev": true,
|
|
6037
6043
|
"license": "MIT",
|
|
6038
6044
|
"dependencies": {
|
|
6039
|
-
"@typescript-eslint/tsconfig-utils": "^8.59.
|
|
6040
|
-
"@typescript-eslint/types": "^8.59.
|
|
6045
|
+
"@typescript-eslint/tsconfig-utils": "^8.59.4",
|
|
6046
|
+
"@typescript-eslint/types": "^8.59.4",
|
|
6041
6047
|
"debug": "^4.4.3"
|
|
6042
6048
|
},
|
|
6043
6049
|
"engines": {
|
|
@@ -6052,13 +6058,13 @@
|
|
|
6052
6058
|
}
|
|
6053
6059
|
},
|
|
6054
6060
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
6055
|
-
"version": "8.59.
|
|
6056
|
-
"integrity": "sha512-
|
|
6061
|
+
"version": "8.59.4",
|
|
6062
|
+
"integrity": "sha512-mUeR/3H1WrTAddJrwut8OoPjfauaztMQmRwV5fQTUyNVJCLiUXXe4lGEyYIL2oFDpP7UtgbGJXCt72wT0z2S3Q==",
|
|
6057
6063
|
"dev": true,
|
|
6058
6064
|
"license": "MIT",
|
|
6059
6065
|
"dependencies": {
|
|
6060
|
-
"@typescript-eslint/types": "8.59.
|
|
6061
|
-
"@typescript-eslint/visitor-keys": "8.59.
|
|
6066
|
+
"@typescript-eslint/types": "8.59.4",
|
|
6067
|
+
"@typescript-eslint/visitor-keys": "8.59.4"
|
|
6062
6068
|
},
|
|
6063
6069
|
"engines": {
|
|
6064
6070
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -6069,8 +6075,8 @@
|
|
|
6069
6075
|
}
|
|
6070
6076
|
},
|
|
6071
6077
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
6072
|
-
"version": "8.59.
|
|
6073
|
-
"integrity": "sha512-
|
|
6078
|
+
"version": "8.59.4",
|
|
6079
|
+
"integrity": "sha512-DLCpnKgD4alVxTBSKulK+gU1KCqOgUXfDRDXh2mZgzokQKa/70ax93I2uVO3m/LLvIAtWZIFoiifudmIqAxpMA==",
|
|
6074
6080
|
"dev": true,
|
|
6075
6081
|
"license": "MIT",
|
|
6076
6082
|
"engines": {
|
|
@@ -6085,14 +6091,14 @@
|
|
|
6085
6091
|
}
|
|
6086
6092
|
},
|
|
6087
6093
|
"node_modules/@typescript-eslint/type-utils": {
|
|
6088
|
-
"version": "8.59.
|
|
6089
|
-
"integrity": "sha512-
|
|
6094
|
+
"version": "8.59.4",
|
|
6095
|
+
"integrity": "sha512-uonTuPAAKr9XaBGqJ3LjYTh72zy5DyGesljO9gtmk/eFW0W1fRHjnwVYKB35Lm8d5Q5CluEW3gPHjTvZTmgrfA==",
|
|
6090
6096
|
"dev": true,
|
|
6091
6097
|
"license": "MIT",
|
|
6092
6098
|
"dependencies": {
|
|
6093
|
-
"@typescript-eslint/types": "8.59.
|
|
6094
|
-
"@typescript-eslint/typescript-estree": "8.59.
|
|
6095
|
-
"@typescript-eslint/utils": "8.59.
|
|
6099
|
+
"@typescript-eslint/types": "8.59.4",
|
|
6100
|
+
"@typescript-eslint/typescript-estree": "8.59.4",
|
|
6101
|
+
"@typescript-eslint/utils": "8.59.4",
|
|
6096
6102
|
"debug": "^4.4.3",
|
|
6097
6103
|
"ts-api-utils": "^2.5.0"
|
|
6098
6104
|
},
|
|
@@ -6109,8 +6115,8 @@
|
|
|
6109
6115
|
}
|
|
6110
6116
|
},
|
|
6111
6117
|
"node_modules/@typescript-eslint/types": {
|
|
6112
|
-
"version": "8.59.
|
|
6113
|
-
"integrity": "sha512-
|
|
6118
|
+
"version": "8.59.4",
|
|
6119
|
+
"integrity": "sha512-F1o7WJcCq+bc8dwcO/YsSEOudAH8RDtaOhM6wcAQhcUsFhnWQl81JKy48q1hoxAU0qrzM89+31GYh1515Zde3Q==",
|
|
6114
6120
|
"dev": true,
|
|
6115
6121
|
"license": "MIT",
|
|
6116
6122
|
"engines": {
|
|
@@ -6122,15 +6128,15 @@
|
|
|
6122
6128
|
}
|
|
6123
6129
|
},
|
|
6124
6130
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
6125
|
-
"version": "8.59.
|
|
6126
|
-
"integrity": "sha512-
|
|
6131
|
+
"version": "8.59.4",
|
|
6132
|
+
"integrity": "sha512-F+RuOmcDXo4+TPdfd/TCLS3m2nw8gE9XXyZLrA3JBfaA5tz9TtdkyD3YJFmPxulyc2cKbEok/CvFE3MgSLWnag==",
|
|
6127
6133
|
"dev": true,
|
|
6128
6134
|
"license": "MIT",
|
|
6129
6135
|
"dependencies": {
|
|
6130
|
-
"@typescript-eslint/project-service": "8.59.
|
|
6131
|
-
"@typescript-eslint/tsconfig-utils": "8.59.
|
|
6132
|
-
"@typescript-eslint/types": "8.59.
|
|
6133
|
-
"@typescript-eslint/visitor-keys": "8.59.
|
|
6136
|
+
"@typescript-eslint/project-service": "8.59.4",
|
|
6137
|
+
"@typescript-eslint/tsconfig-utils": "8.59.4",
|
|
6138
|
+
"@typescript-eslint/types": "8.59.4",
|
|
6139
|
+
"@typescript-eslint/visitor-keys": "8.59.4",
|
|
6134
6140
|
"debug": "^4.4.3",
|
|
6135
6141
|
"minimatch": "^10.2.2",
|
|
6136
6142
|
"semver": "^7.7.3",
|
|
@@ -6197,15 +6203,15 @@
|
|
|
6197
6203
|
}
|
|
6198
6204
|
},
|
|
6199
6205
|
"node_modules/@typescript-eslint/utils": {
|
|
6200
|
-
"version": "8.59.
|
|
6201
|
-
"integrity": "sha512-
|
|
6206
|
+
"version": "8.59.4",
|
|
6207
|
+
"integrity": "sha512-cYXeNAUsG4lJo5dbc1FcKm+JwIWrj1/UpTORsC6tGMjEZ81DYcvIr9/ueikhMa/Y/gDQYGp+YX9/xQrXje5BJw==",
|
|
6202
6208
|
"dev": true,
|
|
6203
6209
|
"license": "MIT",
|
|
6204
6210
|
"dependencies": {
|
|
6205
6211
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
6206
|
-
"@typescript-eslint/scope-manager": "8.59.
|
|
6207
|
-
"@typescript-eslint/types": "8.59.
|
|
6208
|
-
"@typescript-eslint/typescript-estree": "8.59.
|
|
6212
|
+
"@typescript-eslint/scope-manager": "8.59.4",
|
|
6213
|
+
"@typescript-eslint/types": "8.59.4",
|
|
6214
|
+
"@typescript-eslint/typescript-estree": "8.59.4"
|
|
6209
6215
|
},
|
|
6210
6216
|
"engines": {
|
|
6211
6217
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -6220,12 +6226,12 @@
|
|
|
6220
6226
|
}
|
|
6221
6227
|
},
|
|
6222
6228
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
6223
|
-
"version": "8.59.
|
|
6224
|
-
"integrity": "sha512-
|
|
6229
|
+
"version": "8.59.4",
|
|
6230
|
+
"integrity": "sha512-U3gxVaDVnuZKhSspW/MzMxE1kq7zOdc072FcSNoqA1I9p8HyKbBFfEHoWckBAMgNMph4MamwS5iTVzFmrnt8TQ==",
|
|
6225
6231
|
"dev": true,
|
|
6226
6232
|
"license": "MIT",
|
|
6227
6233
|
"dependencies": {
|
|
6228
|
-
"@typescript-eslint/types": "8.59.
|
|
6234
|
+
"@typescript-eslint/types": "8.59.4",
|
|
6229
6235
|
"eslint-visitor-keys": "^5.0.0"
|
|
6230
6236
|
},
|
|
6231
6237
|
"engines": {
|
|
@@ -6249,8 +6255,8 @@
|
|
|
6249
6255
|
}
|
|
6250
6256
|
},
|
|
6251
6257
|
"node_modules/@unrs/resolver-binding-android-arm-eabi": {
|
|
6252
|
-
"version": "1.
|
|
6253
|
-
"integrity": "sha512-
|
|
6258
|
+
"version": "1.12.1",
|
|
6259
|
+
"integrity": "sha512-diBxYrhKMJWZiQMFDgKVRDV4zSRyRTR6PBg+0p6/7zAWP6fqUfl0Be0RKvjLhzfRT0Ye5TCAP04gg4rZHSTvnA==",
|
|
6254
6260
|
"cpu": [
|
|
6255
6261
|
"arm"
|
|
6256
6262
|
],
|
|
@@ -6262,8 +6268,8 @@
|
|
|
6262
6268
|
]
|
|
6263
6269
|
},
|
|
6264
6270
|
"node_modules/@unrs/resolver-binding-android-arm64": {
|
|
6265
|
-
"version": "1.
|
|
6266
|
-
"integrity": "sha512-
|
|
6271
|
+
"version": "1.12.1",
|
|
6272
|
+
"integrity": "sha512-7VQXkWRrq3zFmL1byHilfy8YjCGxf9dKMYbLIGzR6ujAu4+FB3YD8IkesmpgB9vpiitYjMPs/Dk5Sh/P9aoHLQ==",
|
|
6267
6273
|
"cpu": [
|
|
6268
6274
|
"arm64"
|
|
6269
6275
|
],
|
|
@@ -6275,8 +6281,8 @@
|
|
|
6275
6281
|
]
|
|
6276
6282
|
},
|
|
6277
6283
|
"node_modules/@unrs/resolver-binding-darwin-arm64": {
|
|
6278
|
-
"version": "1.
|
|
6279
|
-
"integrity": "sha512-
|
|
6284
|
+
"version": "1.12.1",
|
|
6285
|
+
"integrity": "sha512-SJbHelGnb7hZVLCEWSkbTOpmTC63ZUweZEIPNtRD1D+UkDqYHFynwGUTG1WAjQTdTTaiJ4xab3z5Vk334WeqbA==",
|
|
6280
6286
|
"cpu": [
|
|
6281
6287
|
"arm64"
|
|
6282
6288
|
],
|
|
@@ -6288,8 +6294,8 @@
|
|
|
6288
6294
|
]
|
|
6289
6295
|
},
|
|
6290
6296
|
"node_modules/@unrs/resolver-binding-darwin-x64": {
|
|
6291
|
-
"version": "1.
|
|
6292
|
-
"integrity": "sha512-
|
|
6297
|
+
"version": "1.12.1",
|
|
6298
|
+
"integrity": "sha512-sCCTeB7e2L49YhjPK7IkPfWfCR+NHSfbCbDOy3LqyfkrBpK9qXRRyS1ImCHqEE1LMJxmVN5bAvioI/zTFu48xw==",
|
|
6293
6299
|
"cpu": [
|
|
6294
6300
|
"x64"
|
|
6295
6301
|
],
|
|
@@ -6301,8 +6307,8 @@
|
|
|
6301
6307
|
]
|
|
6302
6308
|
},
|
|
6303
6309
|
"node_modules/@unrs/resolver-binding-freebsd-x64": {
|
|
6304
|
-
"version": "1.
|
|
6305
|
-
"integrity": "sha512-
|
|
6310
|
+
"version": "1.12.1",
|
|
6311
|
+
"integrity": "sha512-rsKJJykPydB+lA/mdeMSYqsQpdRTAjhJiwdQ+jdihPDpbN1h7PaNAo6Fz8PxqWtKd+YC3uGjjW+m+1iPwRwJuA==",
|
|
6306
6312
|
"cpu": [
|
|
6307
6313
|
"x64"
|
|
6308
6314
|
],
|
|
@@ -6314,8 +6320,8 @@
|
|
|
6314
6320
|
]
|
|
6315
6321
|
},
|
|
6316
6322
|
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
|
|
6317
|
-
"version": "1.
|
|
6318
|
-
"integrity": "sha512-
|
|
6323
|
+
"version": "1.12.1",
|
|
6324
|
+
"integrity": "sha512-D6Al5C6j9RdqjGI7Hqa/iVbh09xOEIyZScG60OJGRF0fvf9cy2FdSHG6qLG9Osv8aYe+syWId+PLRwR43soVkA==",
|
|
6319
6325
|
"cpu": [
|
|
6320
6326
|
"arm"
|
|
6321
6327
|
],
|
|
@@ -6327,8 +6333,8 @@
|
|
|
6327
6333
|
]
|
|
6328
6334
|
},
|
|
6329
6335
|
"node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
|
|
6330
|
-
"version": "1.
|
|
6331
|
-
"integrity": "sha512-
|
|
6336
|
+
"version": "1.12.1",
|
|
6337
|
+
"integrity": "sha512-9+yQ/cnoapQ1G+HS6nXQ+4GZ/qKpieZuZxO8GWGJ+F2/1WC5eRzIU2BYUgT029A/y7n3qb0whuT6vvMzB9Zd0g==",
|
|
6332
6338
|
"cpu": [
|
|
6333
6339
|
"arm"
|
|
6334
6340
|
],
|
|
@@ -6340,8 +6346,8 @@
|
|
|
6340
6346
|
]
|
|
6341
6347
|
},
|
|
6342
6348
|
"node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
|
|
6343
|
-
"version": "1.
|
|
6344
|
-
"integrity": "sha512-
|
|
6349
|
+
"version": "1.12.1",
|
|
6350
|
+
"integrity": "sha512-OY/REy8lJgrkZgUpiwhClBvSDLSJNxkvqV7il6I1iNBQFyIEZRpOm1ttV8iMjpcPN2Dl7kjGd7CoKoJUebn6Jw==",
|
|
6345
6351
|
"cpu": [
|
|
6346
6352
|
"arm64"
|
|
6347
6353
|
],
|
|
@@ -6353,8 +6359,8 @@
|
|
|
6353
6359
|
]
|
|
6354
6360
|
},
|
|
6355
6361
|
"node_modules/@unrs/resolver-binding-linux-arm64-musl": {
|
|
6356
|
-
"version": "1.
|
|
6357
|
-
"integrity": "sha512-
|
|
6362
|
+
"version": "1.12.1",
|
|
6363
|
+
"integrity": "sha512-C0nRwuMNgiGU8M5ym7eFe1qOo4oJtZ4TH6g+qAMWIR0hXgMjMs0bsggIv7Sbeia1GI8ZQHzQwrhBEawFiHQIPQ==",
|
|
6358
6364
|
"cpu": [
|
|
6359
6365
|
"arm64"
|
|
6360
6366
|
],
|
|
@@ -6366,8 +6372,8 @@
|
|
|
6366
6372
|
]
|
|
6367
6373
|
},
|
|
6368
6374
|
"node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
|
|
6369
|
-
"version": "1.
|
|
6370
|
-
"integrity": "sha512-
|
|
6375
|
+
"version": "1.12.1",
|
|
6376
|
+
"integrity": "sha512-1GrdTqRuLZMsLa9d6T1BM6WTPGMZxkDKLR4SSzWaUtWpBuOVb33DIShXadhDYrTRESEm7pRN8m7SOM2m8pPT8w==",
|
|
6371
6377
|
"cpu": [
|
|
6372
6378
|
"ppc64"
|
|
6373
6379
|
],
|
|
@@ -6379,8 +6385,8 @@
|
|
|
6379
6385
|
]
|
|
6380
6386
|
},
|
|
6381
6387
|
"node_modules/@unrs/resolver-binding-linux-riscv64-gnu": {
|
|
6382
|
-
"version": "1.
|
|
6383
|
-
"integrity": "sha512-
|
|
6388
|
+
"version": "1.12.1",
|
|
6389
|
+
"integrity": "sha512-q9gc8/37+8jGc8RJahXtonvxgbUisjOHCaiDXrg4Nv8+pk9iKv97drJ61crkZJEms+bIr7lLc54SlZ08qVY9nA==",
|
|
6384
6390
|
"cpu": [
|
|
6385
6391
|
"riscv64"
|
|
6386
6392
|
],
|
|
@@ -6392,8 +6398,8 @@
|
|
|
6392
6398
|
]
|
|
6393
6399
|
},
|
|
6394
6400
|
"node_modules/@unrs/resolver-binding-linux-riscv64-musl": {
|
|
6395
|
-
"version": "1.
|
|
6396
|
-
"integrity": "sha512-
|
|
6401
|
+
"version": "1.12.1",
|
|
6402
|
+
"integrity": "sha512-kLFS/MfGFpeYUrnnsUnmZAxwXMPHZOIPHNp3d4zHnx7/etyX2SSQQ1Kj/Ycaxy4V5dN16YoXpnhrwANjywiJCg==",
|
|
6397
6403
|
"cpu": [
|
|
6398
6404
|
"riscv64"
|
|
6399
6405
|
],
|
|
@@ -6405,8 +6411,8 @@
|
|
|
6405
6411
|
]
|
|
6406
6412
|
},
|
|
6407
6413
|
"node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
|
|
6408
|
-
"version": "1.
|
|
6409
|
-
"integrity": "sha512-
|
|
6414
|
+
"version": "1.12.1",
|
|
6415
|
+
"integrity": "sha512-vKlW4XOJUrpvMBgbIg97t6UEBsFsxGZS5Khi47XkNzC5T1obPhEYWfaGGv9oAe6xXzXib9xaH64CQV8AXN9GiA==",
|
|
6410
6416
|
"cpu": [
|
|
6411
6417
|
"s390x"
|
|
6412
6418
|
],
|
|
@@ -6418,8 +6424,8 @@
|
|
|
6418
6424
|
]
|
|
6419
6425
|
},
|
|
6420
6426
|
"node_modules/@unrs/resolver-binding-linux-x64-gnu": {
|
|
6421
|
-
"version": "1.
|
|
6422
|
-
"integrity": "sha512-
|
|
6427
|
+
"version": "1.12.1",
|
|
6428
|
+
"integrity": "sha512-e9gRaBDEraJLdeScpwBA+WqaJDXnmlHPC7aZTAp9N4BYiEs8BvDfjgeqSVygrc3NZbeMfiKygevINZ9QP271wA==",
|
|
6423
6429
|
"cpu": [
|
|
6424
6430
|
"x64"
|
|
6425
6431
|
],
|
|
@@ -6431,8 +6437,8 @@
|
|
|
6431
6437
|
]
|
|
6432
6438
|
},
|
|
6433
6439
|
"node_modules/@unrs/resolver-binding-linux-x64-musl": {
|
|
6434
|
-
"version": "1.
|
|
6435
|
-
"integrity": "sha512-
|
|
6440
|
+
"version": "1.12.1",
|
|
6441
|
+
"integrity": "sha512-Z7813xEacoT+WRBm1O0wgIkXRgVyTctaRPkKx7T+WgeAfGzMfgWCxhRjAAJh/2LMDPlSXOnapr3vwI1TgDEtTA==",
|
|
6436
6442
|
"cpu": [
|
|
6437
6443
|
"x64"
|
|
6438
6444
|
],
|
|
@@ -6443,9 +6449,22 @@
|
|
|
6443
6449
|
"linux"
|
|
6444
6450
|
]
|
|
6445
6451
|
},
|
|
6452
|
+
"node_modules/@unrs/resolver-binding-openharmony-arm64": {
|
|
6453
|
+
"version": "1.12.1",
|
|
6454
|
+
"integrity": "sha512-GN5YjvnL5nGd5twW4KHWre6iOzLVsIgZwBin3jTT1Pef2Q3l0WgMYA5uo908wL+gsxSFzFXuxkO+AjpsLoOaYw==",
|
|
6455
|
+
"cpu": [
|
|
6456
|
+
"arm64"
|
|
6457
|
+
],
|
|
6458
|
+
"dev": true,
|
|
6459
|
+
"license": "MIT",
|
|
6460
|
+
"optional": true,
|
|
6461
|
+
"os": [
|
|
6462
|
+
"openharmony"
|
|
6463
|
+
]
|
|
6464
|
+
},
|
|
6446
6465
|
"node_modules/@unrs/resolver-binding-wasm32-wasi": {
|
|
6447
|
-
"version": "1.
|
|
6448
|
-
"integrity": "sha512-
|
|
6466
|
+
"version": "1.12.1",
|
|
6467
|
+
"integrity": "sha512-Gue4obXW5E2223qBWqW05S9m1uPcBIEu8cJWs3YqzVVf+h6lNRofgJlhGNxmuqu+C/fSlqaW4T1JHFZdoOgGGQ==",
|
|
6449
6468
|
"cpu": [
|
|
6450
6469
|
"wasm32"
|
|
6451
6470
|
],
|
|
@@ -6453,15 +6472,17 @@
|
|
|
6453
6472
|
"license": "MIT",
|
|
6454
6473
|
"optional": true,
|
|
6455
6474
|
"dependencies": {
|
|
6456
|
-
"@
|
|
6475
|
+
"@emnapi/core": "1.10.0",
|
|
6476
|
+
"@emnapi/runtime": "1.10.0",
|
|
6477
|
+
"@napi-rs/wasm-runtime": "^1.1.4"
|
|
6457
6478
|
},
|
|
6458
6479
|
"engines": {
|
|
6459
6480
|
"node": ">=14.0.0"
|
|
6460
6481
|
}
|
|
6461
6482
|
},
|
|
6462
6483
|
"node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
|
|
6463
|
-
"version": "1.
|
|
6464
|
-
"integrity": "sha512-
|
|
6484
|
+
"version": "1.12.1",
|
|
6485
|
+
"integrity": "sha512-z09l7yiDIOLDTFkW+TEroFjidYAM6JriPqMMpXpM7/EnEe6tehrJZrghlvvPyI/W4JGWAJVDaOs4rl+snJlHwg==",
|
|
6465
6486
|
"cpu": [
|
|
6466
6487
|
"arm64"
|
|
6467
6488
|
],
|
|
@@ -6473,8 +6494,8 @@
|
|
|
6473
6494
|
]
|
|
6474
6495
|
},
|
|
6475
6496
|
"node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
|
|
6476
|
-
"version": "1.
|
|
6477
|
-
"integrity": "sha512-
|
|
6497
|
+
"version": "1.12.1",
|
|
6498
|
+
"integrity": "sha512-RZ9vu5nw+Lgf91LJIZXFx6OrbId+EN2x0HzpAdm0C9oywiPw5x7LBs4uNboZ2Taozo8SiX/7vEDWWyIpKqktgA==",
|
|
6478
6499
|
"cpu": [
|
|
6479
6500
|
"ia32"
|
|
6480
6501
|
],
|
|
@@ -6486,8 +6507,8 @@
|
|
|
6486
6507
|
]
|
|
6487
6508
|
},
|
|
6488
6509
|
"node_modules/@unrs/resolver-binding-win32-x64-msvc": {
|
|
6489
|
-
"version": "1.
|
|
6490
|
-
"integrity": "sha512-
|
|
6510
|
+
"version": "1.12.1",
|
|
6511
|
+
"integrity": "sha512-rXHMTryD4YT8wuGDhV8UevKiD02/wUrdKLyokgNQQf/AcO6BCUEkQu5WGQ9i41bA4tlSfKo02WmAcAgxuP6izA==",
|
|
6491
6512
|
"cpu": [
|
|
6492
6513
|
"x64"
|
|
6493
6514
|
],
|
|
@@ -6669,8 +6690,8 @@
|
|
|
6669
6690
|
}
|
|
6670
6691
|
},
|
|
6671
6692
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
6672
|
-
"version": "1.0.0-rc.
|
|
6673
|
-
"integrity": "sha512-
|
|
6693
|
+
"version": "1.0.0-rc.312",
|
|
6694
|
+
"integrity": "sha512-GqwS+0yyZWJ8KHx4KMeleRGRknVtArKK+lyX6KJEw9bkF1HR95Hz+lmW0ZvTk409vKLWUxrJmhkUw0h+5KIu3g==",
|
|
6674
6695
|
"license": "ISC",
|
|
6675
6696
|
"dependencies": {
|
|
6676
6697
|
"@angular/compiler": "12.2.1",
|
|
@@ -6952,8 +6973,8 @@
|
|
|
6952
6973
|
}
|
|
6953
6974
|
},
|
|
6954
6975
|
"node_modules/@wavemaker-ai/variables": {
|
|
6955
|
-
"version": "1.0.0-rc.
|
|
6956
|
-
"integrity": "sha512-
|
|
6976
|
+
"version": "1.0.0-rc.312",
|
|
6977
|
+
"integrity": "sha512-k/Sv4pGmjSPHqY5MS/l2YKtdyCtQpPPUDA3bQQqWJi9+ec7CYHkG66qpuVkxVrrif3uL6GBosYcSu40nzsHPRA==",
|
|
6957
6978
|
"dev": true,
|
|
6958
6979
|
"license": "ISC",
|
|
6959
6980
|
"dependencies": {
|
|
@@ -7726,8 +7747,8 @@
|
|
|
7726
7747
|
"license": "MIT"
|
|
7727
7748
|
},
|
|
7728
7749
|
"node_modules/baseline-browser-mapping": {
|
|
7729
|
-
"version": "2.10.
|
|
7730
|
-
"integrity": "sha512-
|
|
7750
|
+
"version": "2.10.31",
|
|
7751
|
+
"integrity": "sha512-MujYO3eP72uvmSE0i4wltsodRfIpZATP3jvzRNRGGxgzId7aVocVJJV3nf01qnzzKFGxQVC9bpWxl5cjxTr/7Q==",
|
|
7731
7752
|
"license": "Apache-2.0",
|
|
7732
7753
|
"bin": {
|
|
7733
7754
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -7917,8 +7938,8 @@
|
|
|
7917
7938
|
}
|
|
7918
7939
|
},
|
|
7919
7940
|
"node_modules/caniuse-lite": {
|
|
7920
|
-
"version": "1.0.
|
|
7921
|
-
"integrity": "sha512-
|
|
7941
|
+
"version": "1.0.30001793",
|
|
7942
|
+
"integrity": "sha512-iwSsYWaCOoh26cV8NwNRViHlrfUvYsHDfRVcbtmw0Kg6PJIZZXwMkj1442FYLBGkeUf1juAsU3DTfxW579mrPA==",
|
|
7922
7943
|
"funding": [
|
|
7923
7944
|
{
|
|
7924
7945
|
"type": "opencollective",
|
|
@@ -8415,8 +8436,8 @@
|
|
|
8415
8436
|
}
|
|
8416
8437
|
},
|
|
8417
8438
|
"node_modules/cssstyle/node_modules/lru-cache": {
|
|
8418
|
-
"version": "11.
|
|
8419
|
-
"integrity": "sha512-
|
|
8439
|
+
"version": "11.4.0",
|
|
8440
|
+
"integrity": "sha512-W+R+kFL4HgVxONq2bhXPi3bGpzGe/yEhVOp233qw9wCRtgncJ15P3bC+e4zZMu4Cq7d+WAJjXGW0uUkifhcatA==",
|
|
8420
8441
|
"dev": true,
|
|
8421
8442
|
"license": "BlueOak-1.0.0",
|
|
8422
8443
|
"engines": {
|
|
@@ -15425,37 +15446,38 @@
|
|
|
15425
15446
|
}
|
|
15426
15447
|
},
|
|
15427
15448
|
"node_modules/unrs-resolver": {
|
|
15428
|
-
"version": "1.
|
|
15429
|
-
"integrity": "sha512-
|
|
15449
|
+
"version": "1.12.1",
|
|
15450
|
+
"integrity": "sha512-LmOTmcBbFqxu1rzubnqHT6EZeqDYpenlGYwyFhHj7oc1HdyZE+0cLQ+s9SDSK+KKQQKuoJhUbzHQ89Ubwg2Oxg==",
|
|
15430
15451
|
"dev": true,
|
|
15431
15452
|
"hasInstallScript": true,
|
|
15432
15453
|
"license": "MIT",
|
|
15433
15454
|
"dependencies": {
|
|
15434
|
-
"napi-postinstall": "^0.3.
|
|
15455
|
+
"napi-postinstall": "^0.3.4"
|
|
15435
15456
|
},
|
|
15436
15457
|
"funding": {
|
|
15437
15458
|
"url": "https://opencollective.com/unrs-resolver"
|
|
15438
15459
|
},
|
|
15439
15460
|
"optionalDependencies": {
|
|
15440
|
-
"@unrs/resolver-binding-android-arm-eabi": "1.
|
|
15441
|
-
"@unrs/resolver-binding-android-arm64": "1.
|
|
15442
|
-
"@unrs/resolver-binding-darwin-arm64": "1.
|
|
15443
|
-
"@unrs/resolver-binding-darwin-x64": "1.
|
|
15444
|
-
"@unrs/resolver-binding-freebsd-x64": "1.
|
|
15445
|
-
"@unrs/resolver-binding-linux-arm-gnueabihf": "1.
|
|
15446
|
-
"@unrs/resolver-binding-linux-arm-musleabihf": "1.
|
|
15447
|
-
"@unrs/resolver-binding-linux-arm64-gnu": "1.
|
|
15448
|
-
"@unrs/resolver-binding-linux-arm64-musl": "1.
|
|
15449
|
-
"@unrs/resolver-binding-linux-ppc64-gnu": "1.
|
|
15450
|
-
"@unrs/resolver-binding-linux-riscv64-gnu": "1.
|
|
15451
|
-
"@unrs/resolver-binding-linux-riscv64-musl": "1.
|
|
15452
|
-
"@unrs/resolver-binding-linux-s390x-gnu": "1.
|
|
15453
|
-
"@unrs/resolver-binding-linux-x64-gnu": "1.
|
|
15454
|
-
"@unrs/resolver-binding-linux-x64-musl": "1.
|
|
15455
|
-
"@unrs/resolver-binding-
|
|
15456
|
-
"@unrs/resolver-binding-
|
|
15457
|
-
"@unrs/resolver-binding-win32-
|
|
15458
|
-
"@unrs/resolver-binding-win32-
|
|
15461
|
+
"@unrs/resolver-binding-android-arm-eabi": "1.12.1",
|
|
15462
|
+
"@unrs/resolver-binding-android-arm64": "1.12.1",
|
|
15463
|
+
"@unrs/resolver-binding-darwin-arm64": "1.12.1",
|
|
15464
|
+
"@unrs/resolver-binding-darwin-x64": "1.12.1",
|
|
15465
|
+
"@unrs/resolver-binding-freebsd-x64": "1.12.1",
|
|
15466
|
+
"@unrs/resolver-binding-linux-arm-gnueabihf": "1.12.1",
|
|
15467
|
+
"@unrs/resolver-binding-linux-arm-musleabihf": "1.12.1",
|
|
15468
|
+
"@unrs/resolver-binding-linux-arm64-gnu": "1.12.1",
|
|
15469
|
+
"@unrs/resolver-binding-linux-arm64-musl": "1.12.1",
|
|
15470
|
+
"@unrs/resolver-binding-linux-ppc64-gnu": "1.12.1",
|
|
15471
|
+
"@unrs/resolver-binding-linux-riscv64-gnu": "1.12.1",
|
|
15472
|
+
"@unrs/resolver-binding-linux-riscv64-musl": "1.12.1",
|
|
15473
|
+
"@unrs/resolver-binding-linux-s390x-gnu": "1.12.1",
|
|
15474
|
+
"@unrs/resolver-binding-linux-x64-gnu": "1.12.1",
|
|
15475
|
+
"@unrs/resolver-binding-linux-x64-musl": "1.12.1",
|
|
15476
|
+
"@unrs/resolver-binding-openharmony-arm64": "1.12.1",
|
|
15477
|
+
"@unrs/resolver-binding-wasm32-wasi": "1.12.1",
|
|
15478
|
+
"@unrs/resolver-binding-win32-arm64-msvc": "1.12.1",
|
|
15479
|
+
"@unrs/resolver-binding-win32-ia32-msvc": "1.12.1",
|
|
15480
|
+
"@unrs/resolver-binding-win32-x64-msvc": "1.12.1"
|
|
15459
15481
|
}
|
|
15460
15482
|
},
|
|
15461
15483
|
"node_modules/until-async": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavemaker-ai/react-runtime",
|
|
3
|
-
"version": "1.0.0-rc.
|
|
3
|
+
"version": "1.0.0-rc.312",
|
|
4
4
|
"description": "React runtime package for Wavemaker",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@mui/x-date-pickers": "8.5.3",
|
|
60
60
|
"@reduxjs/toolkit": "2.9.1",
|
|
61
61
|
"@tanstack/react-table": "8.21.3",
|
|
62
|
-
"@wavemaker-ai/react-codegen": "1.0.0-rc.
|
|
62
|
+
"@wavemaker-ai/react-codegen": "1.0.0-rc.312",
|
|
63
63
|
"@wavemaker/nvd3": "1.8.16",
|
|
64
64
|
"axios": "1.15.1",
|
|
65
65
|
"d3": "7.8.5",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"@types/react-dom": "19.2.3",
|
|
111
111
|
"@vitejs/plugin-react": "5.1.4",
|
|
112
112
|
"@vitest/coverage-v8": "3.2.4",
|
|
113
|
-
"@wavemaker-ai/variables": "1.0.0-rc.
|
|
113
|
+
"@wavemaker-ai/variables": "1.0.0-rc.312",
|
|
114
114
|
"axe-core": "4.11.1",
|
|
115
115
|
"babel-plugin-module-resolver": "5.0.2",
|
|
116
116
|
"esbuild": "0.27.5",
|