@wavemaker-ai/react-runtime 1.0.0-rc.647565 → 1.0.0-rc.647582
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/navigation-action.d.ts +1 -0
- package/actions/navigation-action.js +34 -9
- package/components/auth/RoleAuthGuard.d.ts +6 -0
- package/components/auth/RoleAuthGuard.js +65 -0
- package/components/basic/search/index.js +2 -1
- package/components/basic/search/providers.js +2 -2
- package/components/basic/tree/Components/TreeNodeComponent.d.ts +1 -1
- package/components/basic/tree/Components/TreeNodeComponent.js +14 -8
- package/components/basic/tree/hooks/useTreePersistedState.d.ts +3 -0
- package/components/basic/tree/hooks/useTreePersistedState.js +38 -0
- package/components/basic/tree/index.d.ts +1 -0
- package/components/basic/tree/index.js +105 -30
- package/components/basic/tree/props.d.ts +18 -1
- package/components/basic/tree/utils.d.ts +16 -1
- package/components/basic/tree/utils.js +111 -0
- package/components/chart/src/dataUtils.js +1 -1
- package/components/common/customTemplate/useCustomTemplate.js +1 -1
- package/components/container/layout-grid/grid-column/index.js +2 -1
- package/components/data/form/base-form/index.js +3 -1
- package/components/data/form/form-controller/withFormController.js +3 -7
- package/components/data/pagination/hooks/usePagination.js +0 -1
- package/components/data/table/index.js +5 -2
- package/components/data/table/utils/columnBuilder.d.ts +1 -1
- package/components/data/table/utils/columnBuilder.js +7 -4
- package/components/data/table/utils/crud-handlers.js +10 -10
- package/components/data/table/utils/index.d.ts +9 -8
- package/components/data/table/utils/index.js +73 -9
- package/components/layout/leftnav/index.js +21 -2
- package/components/layout/leftnav/props.d.ts +9 -0
- package/components/layout/leftnav/utils/page-class-util.d.ts +9 -0
- package/components/layout/leftnav/utils/page-class-util.js +28 -0
- package/components/navigation/popover/index.js +1 -0
- package/components/page/index.js +22 -6
- package/components/page/page-context.d.ts +4 -0
- package/components/page/page-context.js +5 -0
- package/components/page/partial-container/index.js +1 -4
- package/higherOrder/BaseApp.js +4 -3
- package/higherOrder/BaseAppProps.d.ts +1 -0
- package/higherOrder/BasePage.js +0 -10
- package/hooks/useDataSourceSubscription.js +1 -1
- package/hooks/useHttp.js +0 -4
- package/package-lock.json +196 -185
- package/package.json +3 -3
- package/runtime-dynamic/app-initializer.js +1 -1
- package/runtime-dynamic/components/use-dynamic-component.js +17 -31
- package/runtime-dynamic/factories/build-base-page-like-component.d.ts +1 -1
- package/runtime-dynamic/factories/dynamic-component.js +9 -1
- package/runtime-dynamic/factories/prefab-factory.d.ts +1 -1
- package/runtime-dynamic/factories/utils.d.ts +1 -1
- package/runtime-dynamic/services/component-ref-provider.d.ts +18 -3
- package/runtime-dynamic/services/component-ref-provider.js +15 -38
- package/runtime-dynamic/services/index.d.ts +2 -3
- package/runtime-dynamic/services/index.js +1 -18
- package/runtime-dynamic/services/resource-manager.d.ts +2 -3
- package/runtime-dynamic/services/resource-manager.js +5 -15
- package/runtime-dynamic/services/script-executor.js +1 -7
- package/runtime-dynamic/services/variable-registry.js +0 -4
- package/utils/attr.js +2 -9
- package/utils/custom-expression/index.js +4 -1
- package/utils/custom-expression/parser.js +4 -2
- package/utils/state-persistance.d.ts +1 -1
- package/runtime-dynamic/services/cache.d.ts +0 -29
- package/runtime-dynamic/services/cache.js +0 -51
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.647582",
|
|
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.647582",
|
|
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.647582",
|
|
32
32
|
"@wavemaker/nvd3": "1.8.16",
|
|
33
33
|
"axios": "1.15.1",
|
|
34
34
|
"d3": "7.8.5",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@types/react-dom": "19.2.3",
|
|
68
68
|
"@vitejs/plugin-react": "5.1.4",
|
|
69
69
|
"@vitest/coverage-v8": "3.2.4",
|
|
70
|
-
"@wavemaker-ai/variables": "1.0.0-rc.
|
|
70
|
+
"@wavemaker-ai/variables": "1.0.0-rc.647582",
|
|
71
71
|
"axe-core": "4.11.1",
|
|
72
72
|
"esbuild": "0.27.5",
|
|
73
73
|
"eslint": "9",
|
|
@@ -739,8 +739,8 @@
|
|
|
739
739
|
}
|
|
740
740
|
},
|
|
741
741
|
"node_modules/@emnapi/runtime": {
|
|
742
|
-
"version": "1.
|
|
743
|
-
"integrity": "sha512-
|
|
742
|
+
"version": "1.11.0",
|
|
743
|
+
"integrity": "sha512-55coeOFKHv1ywEcUXJtWU5f+Jr/W5tZDvZig8DLKSwUN1JpROQ4rk/SNOQiFWmaR/VKF4zuFyW1B8JduOSv6Pg==",
|
|
744
744
|
"license": "MIT",
|
|
745
745
|
"optional": true,
|
|
746
746
|
"dependencies": {
|
|
@@ -3256,8 +3256,8 @@
|
|
|
3256
3256
|
"license": "MIT"
|
|
3257
3257
|
},
|
|
3258
3258
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
3259
|
-
"version": "4.61.
|
|
3260
|
-
"integrity": "sha512-
|
|
3259
|
+
"version": "4.61.1",
|
|
3260
|
+
"integrity": "sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==",
|
|
3261
3261
|
"cpu": [
|
|
3262
3262
|
"arm"
|
|
3263
3263
|
],
|
|
@@ -3269,8 +3269,8 @@
|
|
|
3269
3269
|
]
|
|
3270
3270
|
},
|
|
3271
3271
|
"node_modules/@rollup/rollup-android-arm64": {
|
|
3272
|
-
"version": "4.61.
|
|
3273
|
-
"integrity": "sha512-
|
|
3272
|
+
"version": "4.61.1",
|
|
3273
|
+
"integrity": "sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==",
|
|
3274
3274
|
"cpu": [
|
|
3275
3275
|
"arm64"
|
|
3276
3276
|
],
|
|
@@ -3282,8 +3282,8 @@
|
|
|
3282
3282
|
]
|
|
3283
3283
|
},
|
|
3284
3284
|
"node_modules/@rollup/rollup-darwin-arm64": {
|
|
3285
|
-
"version": "4.61.
|
|
3286
|
-
"integrity": "sha512-
|
|
3285
|
+
"version": "4.61.1",
|
|
3286
|
+
"integrity": "sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==",
|
|
3287
3287
|
"cpu": [
|
|
3288
3288
|
"arm64"
|
|
3289
3289
|
],
|
|
@@ -3295,8 +3295,8 @@
|
|
|
3295
3295
|
]
|
|
3296
3296
|
},
|
|
3297
3297
|
"node_modules/@rollup/rollup-darwin-x64": {
|
|
3298
|
-
"version": "4.61.
|
|
3299
|
-
"integrity": "sha512
|
|
3298
|
+
"version": "4.61.1",
|
|
3299
|
+
"integrity": "sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==",
|
|
3300
3300
|
"cpu": [
|
|
3301
3301
|
"x64"
|
|
3302
3302
|
],
|
|
@@ -3308,8 +3308,8 @@
|
|
|
3308
3308
|
]
|
|
3309
3309
|
},
|
|
3310
3310
|
"node_modules/@rollup/rollup-freebsd-arm64": {
|
|
3311
|
-
"version": "4.61.
|
|
3312
|
-
"integrity": "sha512-
|
|
3311
|
+
"version": "4.61.1",
|
|
3312
|
+
"integrity": "sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==",
|
|
3313
3313
|
"cpu": [
|
|
3314
3314
|
"arm64"
|
|
3315
3315
|
],
|
|
@@ -3321,8 +3321,8 @@
|
|
|
3321
3321
|
]
|
|
3322
3322
|
},
|
|
3323
3323
|
"node_modules/@rollup/rollup-freebsd-x64": {
|
|
3324
|
-
"version": "4.61.
|
|
3325
|
-
"integrity": "sha512-
|
|
3324
|
+
"version": "4.61.1",
|
|
3325
|
+
"integrity": "sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==",
|
|
3326
3326
|
"cpu": [
|
|
3327
3327
|
"x64"
|
|
3328
3328
|
],
|
|
@@ -3334,8 +3334,8 @@
|
|
|
3334
3334
|
]
|
|
3335
3335
|
},
|
|
3336
3336
|
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
|
3337
|
-
"version": "4.61.
|
|
3338
|
-
"integrity": "sha512-
|
|
3337
|
+
"version": "4.61.1",
|
|
3338
|
+
"integrity": "sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==",
|
|
3339
3339
|
"cpu": [
|
|
3340
3340
|
"arm"
|
|
3341
3341
|
],
|
|
@@ -3347,8 +3347,8 @@
|
|
|
3347
3347
|
]
|
|
3348
3348
|
},
|
|
3349
3349
|
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
|
3350
|
-
"version": "4.61.
|
|
3351
|
-
"integrity": "sha512-
|
|
3350
|
+
"version": "4.61.1",
|
|
3351
|
+
"integrity": "sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==",
|
|
3352
3352
|
"cpu": [
|
|
3353
3353
|
"arm"
|
|
3354
3354
|
],
|
|
@@ -3360,8 +3360,8 @@
|
|
|
3360
3360
|
]
|
|
3361
3361
|
},
|
|
3362
3362
|
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
|
3363
|
-
"version": "4.61.
|
|
3364
|
-
"integrity": "sha512-
|
|
3363
|
+
"version": "4.61.1",
|
|
3364
|
+
"integrity": "sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==",
|
|
3365
3365
|
"cpu": [
|
|
3366
3366
|
"arm64"
|
|
3367
3367
|
],
|
|
@@ -3373,8 +3373,8 @@
|
|
|
3373
3373
|
]
|
|
3374
3374
|
},
|
|
3375
3375
|
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
|
3376
|
-
"version": "4.61.
|
|
3377
|
-
"integrity": "sha512-
|
|
3376
|
+
"version": "4.61.1",
|
|
3377
|
+
"integrity": "sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==",
|
|
3378
3378
|
"cpu": [
|
|
3379
3379
|
"arm64"
|
|
3380
3380
|
],
|
|
@@ -3386,8 +3386,8 @@
|
|
|
3386
3386
|
]
|
|
3387
3387
|
},
|
|
3388
3388
|
"node_modules/@rollup/rollup-linux-loong64-gnu": {
|
|
3389
|
-
"version": "4.61.
|
|
3390
|
-
"integrity": "sha512-
|
|
3389
|
+
"version": "4.61.1",
|
|
3390
|
+
"integrity": "sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==",
|
|
3391
3391
|
"cpu": [
|
|
3392
3392
|
"loong64"
|
|
3393
3393
|
],
|
|
@@ -3399,8 +3399,8 @@
|
|
|
3399
3399
|
]
|
|
3400
3400
|
},
|
|
3401
3401
|
"node_modules/@rollup/rollup-linux-loong64-musl": {
|
|
3402
|
-
"version": "4.61.
|
|
3403
|
-
"integrity": "sha512-
|
|
3402
|
+
"version": "4.61.1",
|
|
3403
|
+
"integrity": "sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==",
|
|
3404
3404
|
"cpu": [
|
|
3405
3405
|
"loong64"
|
|
3406
3406
|
],
|
|
@@ -3412,8 +3412,8 @@
|
|
|
3412
3412
|
]
|
|
3413
3413
|
},
|
|
3414
3414
|
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
|
3415
|
-
"version": "4.61.
|
|
3416
|
-
"integrity": "sha512-
|
|
3415
|
+
"version": "4.61.1",
|
|
3416
|
+
"integrity": "sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==",
|
|
3417
3417
|
"cpu": [
|
|
3418
3418
|
"ppc64"
|
|
3419
3419
|
],
|
|
@@ -3425,8 +3425,8 @@
|
|
|
3425
3425
|
]
|
|
3426
3426
|
},
|
|
3427
3427
|
"node_modules/@rollup/rollup-linux-ppc64-musl": {
|
|
3428
|
-
"version": "4.61.
|
|
3429
|
-
"integrity": "sha512
|
|
3428
|
+
"version": "4.61.1",
|
|
3429
|
+
"integrity": "sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==",
|
|
3430
3430
|
"cpu": [
|
|
3431
3431
|
"ppc64"
|
|
3432
3432
|
],
|
|
@@ -3438,8 +3438,8 @@
|
|
|
3438
3438
|
]
|
|
3439
3439
|
},
|
|
3440
3440
|
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
|
3441
|
-
"version": "4.61.
|
|
3442
|
-
"integrity": "sha512-
|
|
3441
|
+
"version": "4.61.1",
|
|
3442
|
+
"integrity": "sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==",
|
|
3443
3443
|
"cpu": [
|
|
3444
3444
|
"riscv64"
|
|
3445
3445
|
],
|
|
@@ -3451,8 +3451,8 @@
|
|
|
3451
3451
|
]
|
|
3452
3452
|
},
|
|
3453
3453
|
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
|
3454
|
-
"version": "4.61.
|
|
3455
|
-
"integrity": "sha512-
|
|
3454
|
+
"version": "4.61.1",
|
|
3455
|
+
"integrity": "sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==",
|
|
3456
3456
|
"cpu": [
|
|
3457
3457
|
"riscv64"
|
|
3458
3458
|
],
|
|
@@ -3464,8 +3464,8 @@
|
|
|
3464
3464
|
]
|
|
3465
3465
|
},
|
|
3466
3466
|
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
|
3467
|
-
"version": "4.61.
|
|
3468
|
-
"integrity": "sha512-
|
|
3467
|
+
"version": "4.61.1",
|
|
3468
|
+
"integrity": "sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==",
|
|
3469
3469
|
"cpu": [
|
|
3470
3470
|
"s390x"
|
|
3471
3471
|
],
|
|
@@ -3477,8 +3477,8 @@
|
|
|
3477
3477
|
]
|
|
3478
3478
|
},
|
|
3479
3479
|
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
|
3480
|
-
"version": "4.61.
|
|
3481
|
-
"integrity": "sha512-
|
|
3480
|
+
"version": "4.61.1",
|
|
3481
|
+
"integrity": "sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==",
|
|
3482
3482
|
"cpu": [
|
|
3483
3483
|
"x64"
|
|
3484
3484
|
],
|
|
@@ -3490,8 +3490,8 @@
|
|
|
3490
3490
|
]
|
|
3491
3491
|
},
|
|
3492
3492
|
"node_modules/@rollup/rollup-linux-x64-musl": {
|
|
3493
|
-
"version": "4.61.
|
|
3494
|
-
"integrity": "sha512-
|
|
3493
|
+
"version": "4.61.1",
|
|
3494
|
+
"integrity": "sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==",
|
|
3495
3495
|
"cpu": [
|
|
3496
3496
|
"x64"
|
|
3497
3497
|
],
|
|
@@ -3503,8 +3503,8 @@
|
|
|
3503
3503
|
]
|
|
3504
3504
|
},
|
|
3505
3505
|
"node_modules/@rollup/rollup-openbsd-x64": {
|
|
3506
|
-
"version": "4.61.
|
|
3507
|
-
"integrity": "sha512-
|
|
3506
|
+
"version": "4.61.1",
|
|
3507
|
+
"integrity": "sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==",
|
|
3508
3508
|
"cpu": [
|
|
3509
3509
|
"x64"
|
|
3510
3510
|
],
|
|
@@ -3516,8 +3516,8 @@
|
|
|
3516
3516
|
]
|
|
3517
3517
|
},
|
|
3518
3518
|
"node_modules/@rollup/rollup-openharmony-arm64": {
|
|
3519
|
-
"version": "4.61.
|
|
3520
|
-
"integrity": "sha512-
|
|
3519
|
+
"version": "4.61.1",
|
|
3520
|
+
"integrity": "sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==",
|
|
3521
3521
|
"cpu": [
|
|
3522
3522
|
"arm64"
|
|
3523
3523
|
],
|
|
@@ -3529,8 +3529,8 @@
|
|
|
3529
3529
|
]
|
|
3530
3530
|
},
|
|
3531
3531
|
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
|
3532
|
-
"version": "4.61.
|
|
3533
|
-
"integrity": "sha512-
|
|
3532
|
+
"version": "4.61.1",
|
|
3533
|
+
"integrity": "sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==",
|
|
3534
3534
|
"cpu": [
|
|
3535
3535
|
"arm64"
|
|
3536
3536
|
],
|
|
@@ -3542,8 +3542,8 @@
|
|
|
3542
3542
|
]
|
|
3543
3543
|
},
|
|
3544
3544
|
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
|
3545
|
-
"version": "4.61.
|
|
3546
|
-
"integrity": "sha512-
|
|
3545
|
+
"version": "4.61.1",
|
|
3546
|
+
"integrity": "sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==",
|
|
3547
3547
|
"cpu": [
|
|
3548
3548
|
"ia32"
|
|
3549
3549
|
],
|
|
@@ -3555,8 +3555,8 @@
|
|
|
3555
3555
|
]
|
|
3556
3556
|
},
|
|
3557
3557
|
"node_modules/@rollup/rollup-win32-x64-gnu": {
|
|
3558
|
-
"version": "4.61.
|
|
3559
|
-
"integrity": "sha512-
|
|
3558
|
+
"version": "4.61.1",
|
|
3559
|
+
"integrity": "sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==",
|
|
3560
3560
|
"cpu": [
|
|
3561
3561
|
"x64"
|
|
3562
3562
|
],
|
|
@@ -3568,8 +3568,8 @@
|
|
|
3568
3568
|
]
|
|
3569
3569
|
},
|
|
3570
3570
|
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
|
3571
|
-
"version": "4.61.
|
|
3572
|
-
"integrity": "sha512-
|
|
3571
|
+
"version": "4.61.1",
|
|
3572
|
+
"integrity": "sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==",
|
|
3573
3573
|
"cpu": [
|
|
3574
3574
|
"x64"
|
|
3575
3575
|
],
|
|
@@ -4204,8 +4204,8 @@
|
|
|
4204
4204
|
}
|
|
4205
4205
|
},
|
|
4206
4206
|
"node_modules/@types/node": {
|
|
4207
|
-
"version": "20.19.
|
|
4208
|
-
"integrity": "sha512-
|
|
4207
|
+
"version": "20.19.42",
|
|
4208
|
+
"integrity": "sha512-5L7SUaFC1RyDraj2yRhyBzHTobyXHmohD100CChNtyPyleoq37Mqab5Gn8XEKI04dfN/oqPdpHk38MgcQWHbZg==",
|
|
4209
4209
|
"dev": true,
|
|
4210
4210
|
"license": "MIT",
|
|
4211
4211
|
"dependencies": {
|
|
@@ -4310,16 +4310,16 @@
|
|
|
4310
4310
|
"license": "MIT"
|
|
4311
4311
|
},
|
|
4312
4312
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
4313
|
-
"version": "8.60.
|
|
4314
|
-
"integrity": "sha512-
|
|
4313
|
+
"version": "8.60.1",
|
|
4314
|
+
"integrity": "sha512-JQ4S5GB0tfjO8BuJ4fcX+HodkzJjYBV+7OJ+wLygaX7OGQ7FudyHL4NSCA6ob+w3Yn+5MkKIozOwQhXeM7opVg==",
|
|
4315
4315
|
"dev": true,
|
|
4316
4316
|
"license": "MIT",
|
|
4317
4317
|
"dependencies": {
|
|
4318
4318
|
"@eslint-community/regexpp": "^4.12.2",
|
|
4319
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
4320
|
-
"@typescript-eslint/type-utils": "8.60.
|
|
4321
|
-
"@typescript-eslint/utils": "8.60.
|
|
4322
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
4319
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
4320
|
+
"@typescript-eslint/type-utils": "8.60.1",
|
|
4321
|
+
"@typescript-eslint/utils": "8.60.1",
|
|
4322
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
4323
4323
|
"ignore": "^7.0.5",
|
|
4324
4324
|
"natural-compare": "^1.4.0",
|
|
4325
4325
|
"ts-api-utils": "^2.5.0"
|
|
@@ -4332,7 +4332,7 @@
|
|
|
4332
4332
|
"url": "https://opencollective.com/typescript-eslint"
|
|
4333
4333
|
},
|
|
4334
4334
|
"peerDependencies": {
|
|
4335
|
-
"@typescript-eslint/parser": "^8.60.
|
|
4335
|
+
"@typescript-eslint/parser": "^8.60.1",
|
|
4336
4336
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
|
4337
4337
|
"typescript": ">=4.8.4 <6.1.0"
|
|
4338
4338
|
}
|
|
@@ -4347,15 +4347,15 @@
|
|
|
4347
4347
|
}
|
|
4348
4348
|
},
|
|
4349
4349
|
"node_modules/@typescript-eslint/parser": {
|
|
4350
|
-
"version": "8.60.
|
|
4351
|
-
"integrity": "sha512-
|
|
4350
|
+
"version": "8.60.1",
|
|
4351
|
+
"integrity": "sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==",
|
|
4352
4352
|
"dev": true,
|
|
4353
4353
|
"license": "MIT",
|
|
4354
4354
|
"dependencies": {
|
|
4355
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
4356
|
-
"@typescript-eslint/types": "8.60.
|
|
4357
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
4358
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
4355
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
4356
|
+
"@typescript-eslint/types": "8.60.1",
|
|
4357
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
4358
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
4359
4359
|
"debug": "^4.4.3"
|
|
4360
4360
|
},
|
|
4361
4361
|
"engines": {
|
|
@@ -4371,13 +4371,13 @@
|
|
|
4371
4371
|
}
|
|
4372
4372
|
},
|
|
4373
4373
|
"node_modules/@typescript-eslint/project-service": {
|
|
4374
|
-
"version": "8.60.
|
|
4375
|
-
"integrity": "sha512-
|
|
4374
|
+
"version": "8.60.1",
|
|
4375
|
+
"integrity": "sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==",
|
|
4376
4376
|
"dev": true,
|
|
4377
4377
|
"license": "MIT",
|
|
4378
4378
|
"dependencies": {
|
|
4379
|
-
"@typescript-eslint/tsconfig-utils": "^8.60.
|
|
4380
|
-
"@typescript-eslint/types": "^8.60.
|
|
4379
|
+
"@typescript-eslint/tsconfig-utils": "^8.60.1",
|
|
4380
|
+
"@typescript-eslint/types": "^8.60.1",
|
|
4381
4381
|
"debug": "^4.4.3"
|
|
4382
4382
|
},
|
|
4383
4383
|
"engines": {
|
|
@@ -4392,13 +4392,13 @@
|
|
|
4392
4392
|
}
|
|
4393
4393
|
},
|
|
4394
4394
|
"node_modules/@typescript-eslint/scope-manager": {
|
|
4395
|
-
"version": "8.60.
|
|
4396
|
-
"integrity": "sha512-
|
|
4395
|
+
"version": "8.60.1",
|
|
4396
|
+
"integrity": "sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==",
|
|
4397
4397
|
"dev": true,
|
|
4398
4398
|
"license": "MIT",
|
|
4399
4399
|
"dependencies": {
|
|
4400
|
-
"@typescript-eslint/types": "8.60.
|
|
4401
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
4400
|
+
"@typescript-eslint/types": "8.60.1",
|
|
4401
|
+
"@typescript-eslint/visitor-keys": "8.60.1"
|
|
4402
4402
|
},
|
|
4403
4403
|
"engines": {
|
|
4404
4404
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4409,8 +4409,8 @@
|
|
|
4409
4409
|
}
|
|
4410
4410
|
},
|
|
4411
4411
|
"node_modules/@typescript-eslint/tsconfig-utils": {
|
|
4412
|
-
"version": "8.60.
|
|
4413
|
-
"integrity": "sha512-
|
|
4412
|
+
"version": "8.60.1",
|
|
4413
|
+
"integrity": "sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==",
|
|
4414
4414
|
"dev": true,
|
|
4415
4415
|
"license": "MIT",
|
|
4416
4416
|
"engines": {
|
|
@@ -4425,14 +4425,14 @@
|
|
|
4425
4425
|
}
|
|
4426
4426
|
},
|
|
4427
4427
|
"node_modules/@typescript-eslint/type-utils": {
|
|
4428
|
-
"version": "8.60.
|
|
4429
|
-
"integrity": "sha512-
|
|
4428
|
+
"version": "8.60.1",
|
|
4429
|
+
"integrity": "sha512-sdwTrpjosW7ANQYJ39ZBF1ZyEMEGVB2UsikrserVM/30a/F1dTLnu9bGxEdosugyu5caigjLrR2qiD11asjI1A==",
|
|
4430
4430
|
"dev": true,
|
|
4431
4431
|
"license": "MIT",
|
|
4432
4432
|
"dependencies": {
|
|
4433
|
-
"@typescript-eslint/types": "8.60.
|
|
4434
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
4435
|
-
"@typescript-eslint/utils": "8.60.
|
|
4433
|
+
"@typescript-eslint/types": "8.60.1",
|
|
4434
|
+
"@typescript-eslint/typescript-estree": "8.60.1",
|
|
4435
|
+
"@typescript-eslint/utils": "8.60.1",
|
|
4436
4436
|
"debug": "^4.4.3",
|
|
4437
4437
|
"ts-api-utils": "^2.5.0"
|
|
4438
4438
|
},
|
|
@@ -4449,8 +4449,8 @@
|
|
|
4449
4449
|
}
|
|
4450
4450
|
},
|
|
4451
4451
|
"node_modules/@typescript-eslint/types": {
|
|
4452
|
-
"version": "8.60.
|
|
4453
|
-
"integrity": "sha512-
|
|
4452
|
+
"version": "8.60.1",
|
|
4453
|
+
"integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
|
|
4454
4454
|
"dev": true,
|
|
4455
4455
|
"license": "MIT",
|
|
4456
4456
|
"engines": {
|
|
@@ -4462,15 +4462,15 @@
|
|
|
4462
4462
|
}
|
|
4463
4463
|
},
|
|
4464
4464
|
"node_modules/@typescript-eslint/typescript-estree": {
|
|
4465
|
-
"version": "8.60.
|
|
4466
|
-
"integrity": "sha512-
|
|
4465
|
+
"version": "8.60.1",
|
|
4466
|
+
"integrity": "sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==",
|
|
4467
4467
|
"dev": true,
|
|
4468
4468
|
"license": "MIT",
|
|
4469
4469
|
"dependencies": {
|
|
4470
|
-
"@typescript-eslint/project-service": "8.60.
|
|
4471
|
-
"@typescript-eslint/tsconfig-utils": "8.60.
|
|
4472
|
-
"@typescript-eslint/types": "8.60.
|
|
4473
|
-
"@typescript-eslint/visitor-keys": "8.60.
|
|
4470
|
+
"@typescript-eslint/project-service": "8.60.1",
|
|
4471
|
+
"@typescript-eslint/tsconfig-utils": "8.60.1",
|
|
4472
|
+
"@typescript-eslint/types": "8.60.1",
|
|
4473
|
+
"@typescript-eslint/visitor-keys": "8.60.1",
|
|
4474
4474
|
"debug": "^4.4.3",
|
|
4475
4475
|
"minimatch": "^10.2.2",
|
|
4476
4476
|
"semver": "^7.7.3",
|
|
@@ -4525,8 +4525,8 @@
|
|
|
4525
4525
|
}
|
|
4526
4526
|
},
|
|
4527
4527
|
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
|
|
4528
|
-
"version": "7.8.
|
|
4529
|
-
"integrity": "sha512-
|
|
4528
|
+
"version": "7.8.2",
|
|
4529
|
+
"integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
|
|
4530
4530
|
"dev": true,
|
|
4531
4531
|
"license": "ISC",
|
|
4532
4532
|
"bin": {
|
|
@@ -4537,15 +4537,15 @@
|
|
|
4537
4537
|
}
|
|
4538
4538
|
},
|
|
4539
4539
|
"node_modules/@typescript-eslint/utils": {
|
|
4540
|
-
"version": "8.60.
|
|
4541
|
-
"integrity": "sha512-
|
|
4540
|
+
"version": "8.60.1",
|
|
4541
|
+
"integrity": "sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==",
|
|
4542
4542
|
"dev": true,
|
|
4543
4543
|
"license": "MIT",
|
|
4544
4544
|
"dependencies": {
|
|
4545
4545
|
"@eslint-community/eslint-utils": "^4.9.1",
|
|
4546
|
-
"@typescript-eslint/scope-manager": "8.60.
|
|
4547
|
-
"@typescript-eslint/types": "8.60.
|
|
4548
|
-
"@typescript-eslint/typescript-estree": "8.60.
|
|
4546
|
+
"@typescript-eslint/scope-manager": "8.60.1",
|
|
4547
|
+
"@typescript-eslint/types": "8.60.1",
|
|
4548
|
+
"@typescript-eslint/typescript-estree": "8.60.1"
|
|
4549
4549
|
},
|
|
4550
4550
|
"engines": {
|
|
4551
4551
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
|
@@ -4560,12 +4560,12 @@
|
|
|
4560
4560
|
}
|
|
4561
4561
|
},
|
|
4562
4562
|
"node_modules/@typescript-eslint/visitor-keys": {
|
|
4563
|
-
"version": "8.60.
|
|
4564
|
-
"integrity": "sha512-
|
|
4563
|
+
"version": "8.60.1",
|
|
4564
|
+
"integrity": "sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==",
|
|
4565
4565
|
"dev": true,
|
|
4566
4566
|
"license": "MIT",
|
|
4567
4567
|
"dependencies": {
|
|
4568
|
-
"@typescript-eslint/types": "8.60.
|
|
4568
|
+
"@typescript-eslint/types": "8.60.1",
|
|
4569
4569
|
"eslint-visitor-keys": "^5.0.0"
|
|
4570
4570
|
},
|
|
4571
4571
|
"engines": {
|
|
@@ -4840,6 +4840,16 @@
|
|
|
4840
4840
|
"node": ">=14.0.0"
|
|
4841
4841
|
}
|
|
4842
4842
|
},
|
|
4843
|
+
"node_modules/@unrs/resolver-binding-wasm32-wasi/node_modules/@emnapi/runtime": {
|
|
4844
|
+
"version": "1.10.0",
|
|
4845
|
+
"integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
|
|
4846
|
+
"dev": true,
|
|
4847
|
+
"license": "MIT",
|
|
4848
|
+
"optional": true,
|
|
4849
|
+
"dependencies": {
|
|
4850
|
+
"tslib": "^2.4.0"
|
|
4851
|
+
}
|
|
4852
|
+
},
|
|
4843
4853
|
"node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
|
|
4844
4854
|
"version": "1.12.2",
|
|
4845
4855
|
"integrity": "sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==",
|
|
@@ -5065,8 +5075,8 @@
|
|
|
5065
5075
|
}
|
|
5066
5076
|
},
|
|
5067
5077
|
"node_modules/@wavemaker-ai/react-codegen": {
|
|
5068
|
-
"version": "1.0.0-rc.
|
|
5069
|
-
"integrity": "sha512-
|
|
5078
|
+
"version": "1.0.0-rc.647582",
|
|
5079
|
+
"integrity": "sha512-fgTuXtSLH3u4dVHzWICNSZlbA3uozk+JATrBPtBOn5SqCOiL2gUolR9Jg4PHqUrXdSiJqukApUGaDs5MA3209w==",
|
|
5070
5080
|
"license": "ISC",
|
|
5071
5081
|
"dependencies": {
|
|
5072
5082
|
"@angular/compiler": "12.2.1",
|
|
@@ -5348,8 +5358,8 @@
|
|
|
5348
5358
|
}
|
|
5349
5359
|
},
|
|
5350
5360
|
"node_modules/@wavemaker-ai/variables": {
|
|
5351
|
-
"version": "1.0.0-rc.
|
|
5352
|
-
"integrity": "sha512-
|
|
5361
|
+
"version": "1.0.0-rc.647582",
|
|
5362
|
+
"integrity": "sha512-iOJaNj/1jrCpYiLXbSzaxKKMqdvXiIIcbsGYin2UblPYnJaBAQhLGEt4aLqzaJiLY9QQcz+CysI5vmPxgU1VkQ==",
|
|
5353
5363
|
"dev": true,
|
|
5354
5364
|
"license": "ISC",
|
|
5355
5365
|
"dependencies": {
|
|
@@ -5830,8 +5840,8 @@
|
|
|
5830
5840
|
"license": "MIT"
|
|
5831
5841
|
},
|
|
5832
5842
|
"node_modules/bare-events": {
|
|
5833
|
-
"version": "2.
|
|
5834
|
-
"integrity": "sha512-
|
|
5843
|
+
"version": "2.9.1",
|
|
5844
|
+
"integrity": "sha512-Z0oHEHAFDZkffN8Qc39zNZjQlMDkPJRyyyZieU1VH7u8c5S+qHZ2S8ixdKIAxEjfHO7FJxXmJWgteOghVanIsg==",
|
|
5835
5845
|
"license": "Apache-2.0",
|
|
5836
5846
|
"peerDependencies": {
|
|
5837
5847
|
"bare-abort-controller": "*"
|
|
@@ -5843,8 +5853,8 @@
|
|
|
5843
5853
|
}
|
|
5844
5854
|
},
|
|
5845
5855
|
"node_modules/bare-fs": {
|
|
5846
|
-
"version": "4.7.
|
|
5847
|
-
"integrity": "sha512-
|
|
5856
|
+
"version": "4.7.2",
|
|
5857
|
+
"integrity": "sha512-aTvMFUWkBmjzKtEQMDGGDNF8bkfpD5N1b/FCwt7A3wrU4t1o/e/85Wzkluh6JlODCjqVESYCkQCdTXqZ9G7VFg==",
|
|
5848
5858
|
"license": "Apache-2.0",
|
|
5849
5859
|
"dependencies": {
|
|
5850
5860
|
"bare-events": "^2.5.4",
|
|
@@ -5874,8 +5884,8 @@
|
|
|
5874
5884
|
}
|
|
5875
5885
|
},
|
|
5876
5886
|
"node_modules/bare-path": {
|
|
5877
|
-
"version": "3.0.
|
|
5878
|
-
"integrity": "sha512-
|
|
5887
|
+
"version": "3.0.1",
|
|
5888
|
+
"integrity": "sha512-ghj2DSK/2e99a1anTVPCV4m4YIYtrbXhfM7V3D7XZLOTsybnYyaJloymGqssQc8l/or0UoDyRtNQkmkEF/ysgQ==",
|
|
5879
5889
|
"license": "Apache-2.0",
|
|
5880
5890
|
"dependencies": {
|
|
5881
5891
|
"bare-os": "^3.0.1"
|
|
@@ -5907,8 +5917,8 @@
|
|
|
5907
5917
|
}
|
|
5908
5918
|
},
|
|
5909
5919
|
"node_modules/bare-url": {
|
|
5910
|
-
"version": "2.4.
|
|
5911
|
-
"integrity": "sha512-
|
|
5920
|
+
"version": "2.4.5",
|
|
5921
|
+
"integrity": "sha512-K+y9xF1tN+CdPu4qWwr0QiK1Al07eFPGYK5M2pDXcmHdMdgC/tT/bpmMe1hrmRHaidKLkXrC+cRNYf3XVDUhSQ==",
|
|
5912
5922
|
"license": "Apache-2.0",
|
|
5913
5923
|
"dependencies": {
|
|
5914
5924
|
"bare-path": "^3.0.0"
|
|
@@ -5934,8 +5944,8 @@
|
|
|
5934
5944
|
"license": "MIT"
|
|
5935
5945
|
},
|
|
5936
5946
|
"node_modules/baseline-browser-mapping": {
|
|
5937
|
-
"version": "2.10.
|
|
5938
|
-
"integrity": "sha512-
|
|
5947
|
+
"version": "2.10.34",
|
|
5948
|
+
"integrity": "sha512-IMDedajPifLnHNY0X9n8hKxRTQ6/eTHwr5bDo04WnuqxyKw6LYtQywCuuqPZwhl3aBXMvQpJov42GLCwRRdQzw==",
|
|
5939
5949
|
"license": "Apache-2.0",
|
|
5940
5950
|
"bin": {
|
|
5941
5951
|
"baseline-browser-mapping": "dist/cli.cjs"
|
|
@@ -6106,8 +6116,8 @@
|
|
|
6106
6116
|
}
|
|
6107
6117
|
},
|
|
6108
6118
|
"node_modules/caniuse-lite": {
|
|
6109
|
-
"version": "1.0.
|
|
6110
|
-
"integrity": "sha512-
|
|
6119
|
+
"version": "1.0.30001797",
|
|
6120
|
+
"integrity": "sha512-l8xKG+gwAIExZGl9FrF7KUwuOmk6wbEPC9Xoy/RtnWv1XG0Q4LFlagaLpUv3Kiza3W/wm27zy0yWJEieYKAP6w==",
|
|
6111
6121
|
"funding": [
|
|
6112
6122
|
{
|
|
6113
6123
|
"type": "opencollective",
|
|
@@ -6565,8 +6575,8 @@
|
|
|
6565
6575
|
}
|
|
6566
6576
|
},
|
|
6567
6577
|
"node_modules/cssstyle/node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
6568
|
-
"version": "1.1.
|
|
6569
|
-
"integrity": "sha512-
|
|
6578
|
+
"version": "1.1.5",
|
|
6579
|
+
"integrity": "sha512-oNjBvzLq2GPZtJphCjLqXow/cHySHSgtxvKZb7OqSZ/xHgw6NWNhfad+6AB9cLeVm6eA9d/qMll3JdEHjy6M+A==",
|
|
6570
6580
|
"dev": true,
|
|
6571
6581
|
"funding": [
|
|
6572
6582
|
{
|
|
@@ -7280,8 +7290,8 @@
|
|
|
7280
7290
|
"license": "MIT"
|
|
7281
7291
|
},
|
|
7282
7292
|
"node_modules/electron-to-chromium": {
|
|
7283
|
-
"version": "1.5.
|
|
7284
|
-
"integrity": "sha512-
|
|
7293
|
+
"version": "1.5.368",
|
|
7294
|
+
"integrity": "sha512-7RckJJK4uESJF9PxvfMWd3TGqIiieUTG4HxnKaKuIpGbcr+r2ZEB3g2gAhCP3Fqm42vJSzLfgab9eva/C4/XVw==",
|
|
7285
7295
|
"dev": true,
|
|
7286
7296
|
"license": "ISC"
|
|
7287
7297
|
},
|
|
@@ -8612,8 +8622,8 @@
|
|
|
8612
8622
|
"license": "ISC"
|
|
8613
8623
|
},
|
|
8614
8624
|
"node_modules/graphql": {
|
|
8615
|
-
"version": "16.14.
|
|
8616
|
-
"integrity": "sha512-
|
|
8625
|
+
"version": "16.14.1",
|
|
8626
|
+
"integrity": "sha512-cQOsSMS/IrDz82PVyRDvf/Q1F/bRbBVjJlh+xYOkI1qw2bWRvWGiWc+m2O0d6l4Bt1fyY+8kzJ8JFWGJqNeDBg==",
|
|
8617
8627
|
"dev": true,
|
|
8618
8628
|
"license": "MIT",
|
|
8619
8629
|
"engines": {
|
|
@@ -9042,8 +9052,8 @@
|
|
|
9042
9052
|
}
|
|
9043
9053
|
},
|
|
9044
9054
|
"node_modules/is-bun-module/node_modules/semver": {
|
|
9045
|
-
"version": "7.8.
|
|
9046
|
-
"integrity": "sha512-
|
|
9055
|
+
"version": "7.8.2",
|
|
9056
|
+
"integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
|
|
9047
9057
|
"dev": true,
|
|
9048
9058
|
"license": "ISC",
|
|
9049
9059
|
"bin": {
|
|
@@ -9793,8 +9803,8 @@
|
|
|
9793
9803
|
}
|
|
9794
9804
|
},
|
|
9795
9805
|
"node_modules/jodit": {
|
|
9796
|
-
"version": "4.12.
|
|
9797
|
-
"integrity": "sha512-
|
|
9806
|
+
"version": "4.12.17",
|
|
9807
|
+
"integrity": "sha512-kL4g4yE+/GmQHzTegU7A9cua+eozS8B29vv5rfHDlqkv7AzZ8A3EaY1mVAn/NnzixctlC6x6X9FW4OwkPyUG3g==",
|
|
9798
9808
|
"license": "MIT"
|
|
9799
9809
|
},
|
|
9800
9810
|
"node_modules/jodit-react": {
|
|
@@ -10394,8 +10404,8 @@
|
|
|
10394
10404
|
}
|
|
10395
10405
|
},
|
|
10396
10406
|
"node_modules/make-dir/node_modules/semver": {
|
|
10397
|
-
"version": "7.8.
|
|
10398
|
-
"integrity": "sha512-
|
|
10407
|
+
"version": "7.8.2",
|
|
10408
|
+
"integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
|
|
10399
10409
|
"dev": true,
|
|
10400
10410
|
"license": "ISC",
|
|
10401
10411
|
"bin": {
|
|
@@ -10912,8 +10922,8 @@
|
|
|
10912
10922
|
}
|
|
10913
10923
|
},
|
|
10914
10924
|
"node_modules/node-releases": {
|
|
10915
|
-
"version": "2.0.
|
|
10916
|
-
"integrity": "sha512-
|
|
10925
|
+
"version": "2.0.47",
|
|
10926
|
+
"integrity": "sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==",
|
|
10917
10927
|
"dev": true,
|
|
10918
10928
|
"license": "MIT",
|
|
10919
10929
|
"engines": {
|
|
@@ -11633,8 +11643,8 @@
|
|
|
11633
11643
|
}
|
|
11634
11644
|
},
|
|
11635
11645
|
"node_modules/react-is": {
|
|
11636
|
-
"version": "19.2.
|
|
11637
|
-
"integrity": "sha512-
|
|
11646
|
+
"version": "19.2.7",
|
|
11647
|
+
"integrity": "sha512-kZFnouyVv7eP/Phmrlo9FK+zcAdriZJvzxXHF1Sl1P377WSGe2G/JxVolhTrB/jeV47lKImhNUsijjHAAbcl/A==",
|
|
11638
11648
|
"license": "MIT"
|
|
11639
11649
|
},
|
|
11640
11650
|
"node_modules/react-is-18": {
|
|
@@ -11646,8 +11656,8 @@
|
|
|
11646
11656
|
},
|
|
11647
11657
|
"node_modules/react-is-19": {
|
|
11648
11658
|
"name": "react-is",
|
|
11649
|
-
"version": "19.2.
|
|
11650
|
-
"integrity": "sha512-
|
|
11659
|
+
"version": "19.2.7",
|
|
11660
|
+
"integrity": "sha512-kZFnouyVv7eP/Phmrlo9FK+zcAdriZJvzxXHF1Sl1P377WSGe2G/JxVolhTrB/jeV47lKImhNUsijjHAAbcl/A==",
|
|
11651
11661
|
"dev": true,
|
|
11652
11662
|
"license": "MIT"
|
|
11653
11663
|
},
|
|
@@ -12005,8 +12015,8 @@
|
|
|
12005
12015
|
"license": "Unlicense"
|
|
12006
12016
|
},
|
|
12007
12017
|
"node_modules/rollup": {
|
|
12008
|
-
"version": "4.61.
|
|
12009
|
-
"integrity": "sha512-
|
|
12018
|
+
"version": "4.61.1",
|
|
12019
|
+
"integrity": "sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==",
|
|
12010
12020
|
"dev": true,
|
|
12011
12021
|
"license": "MIT",
|
|
12012
12022
|
"dependencies": {
|
|
@@ -12020,31 +12030,31 @@
|
|
|
12020
12030
|
"npm": ">=8.0.0"
|
|
12021
12031
|
},
|
|
12022
12032
|
"optionalDependencies": {
|
|
12023
|
-
"@rollup/rollup-android-arm-eabi": "4.61.
|
|
12024
|
-
"@rollup/rollup-android-arm64": "4.61.
|
|
12025
|
-
"@rollup/rollup-darwin-arm64": "4.61.
|
|
12026
|
-
"@rollup/rollup-darwin-x64": "4.61.
|
|
12027
|
-
"@rollup/rollup-freebsd-arm64": "4.61.
|
|
12028
|
-
"@rollup/rollup-freebsd-x64": "4.61.
|
|
12029
|
-
"@rollup/rollup-linux-arm-gnueabihf": "4.61.
|
|
12030
|
-
"@rollup/rollup-linux-arm-musleabihf": "4.61.
|
|
12031
|
-
"@rollup/rollup-linux-arm64-gnu": "4.61.
|
|
12032
|
-
"@rollup/rollup-linux-arm64-musl": "4.61.
|
|
12033
|
-
"@rollup/rollup-linux-loong64-gnu": "4.61.
|
|
12034
|
-
"@rollup/rollup-linux-loong64-musl": "4.61.
|
|
12035
|
-
"@rollup/rollup-linux-ppc64-gnu": "4.61.
|
|
12036
|
-
"@rollup/rollup-linux-ppc64-musl": "4.61.
|
|
12037
|
-
"@rollup/rollup-linux-riscv64-gnu": "4.61.
|
|
12038
|
-
"@rollup/rollup-linux-riscv64-musl": "4.61.
|
|
12039
|
-
"@rollup/rollup-linux-s390x-gnu": "4.61.
|
|
12040
|
-
"@rollup/rollup-linux-x64-gnu": "4.61.
|
|
12041
|
-
"@rollup/rollup-linux-x64-musl": "4.61.
|
|
12042
|
-
"@rollup/rollup-openbsd-x64": "4.61.
|
|
12043
|
-
"@rollup/rollup-openharmony-arm64": "4.61.
|
|
12044
|
-
"@rollup/rollup-win32-arm64-msvc": "4.61.
|
|
12045
|
-
"@rollup/rollup-win32-ia32-msvc": "4.61.
|
|
12046
|
-
"@rollup/rollup-win32-x64-gnu": "4.61.
|
|
12047
|
-
"@rollup/rollup-win32-x64-msvc": "4.61.
|
|
12033
|
+
"@rollup/rollup-android-arm-eabi": "4.61.1",
|
|
12034
|
+
"@rollup/rollup-android-arm64": "4.61.1",
|
|
12035
|
+
"@rollup/rollup-darwin-arm64": "4.61.1",
|
|
12036
|
+
"@rollup/rollup-darwin-x64": "4.61.1",
|
|
12037
|
+
"@rollup/rollup-freebsd-arm64": "4.61.1",
|
|
12038
|
+
"@rollup/rollup-freebsd-x64": "4.61.1",
|
|
12039
|
+
"@rollup/rollup-linux-arm-gnueabihf": "4.61.1",
|
|
12040
|
+
"@rollup/rollup-linux-arm-musleabihf": "4.61.1",
|
|
12041
|
+
"@rollup/rollup-linux-arm64-gnu": "4.61.1",
|
|
12042
|
+
"@rollup/rollup-linux-arm64-musl": "4.61.1",
|
|
12043
|
+
"@rollup/rollup-linux-loong64-gnu": "4.61.1",
|
|
12044
|
+
"@rollup/rollup-linux-loong64-musl": "4.61.1",
|
|
12045
|
+
"@rollup/rollup-linux-ppc64-gnu": "4.61.1",
|
|
12046
|
+
"@rollup/rollup-linux-ppc64-musl": "4.61.1",
|
|
12047
|
+
"@rollup/rollup-linux-riscv64-gnu": "4.61.1",
|
|
12048
|
+
"@rollup/rollup-linux-riscv64-musl": "4.61.1",
|
|
12049
|
+
"@rollup/rollup-linux-s390x-gnu": "4.61.1",
|
|
12050
|
+
"@rollup/rollup-linux-x64-gnu": "4.61.1",
|
|
12051
|
+
"@rollup/rollup-linux-x64-musl": "4.61.1",
|
|
12052
|
+
"@rollup/rollup-openbsd-x64": "4.61.1",
|
|
12053
|
+
"@rollup/rollup-openharmony-arm64": "4.61.1",
|
|
12054
|
+
"@rollup/rollup-win32-arm64-msvc": "4.61.1",
|
|
12055
|
+
"@rollup/rollup-win32-ia32-msvc": "4.61.1",
|
|
12056
|
+
"@rollup/rollup-win32-x64-gnu": "4.61.1",
|
|
12057
|
+
"@rollup/rollup-win32-x64-msvc": "4.61.1",
|
|
12048
12058
|
"fsevents": "~2.3.2"
|
|
12049
12059
|
}
|
|
12050
12060
|
},
|
|
@@ -12282,8 +12292,8 @@
|
|
|
12282
12292
|
}
|
|
12283
12293
|
},
|
|
12284
12294
|
"node_modules/sharp/node_modules/semver": {
|
|
12285
|
-
"version": "7.8.
|
|
12286
|
-
"integrity": "sha512-
|
|
12295
|
+
"version": "7.8.2",
|
|
12296
|
+
"integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
|
|
12287
12297
|
"license": "ISC",
|
|
12288
12298
|
"optional": true,
|
|
12289
12299
|
"bin": {
|
|
@@ -12527,8 +12537,8 @@
|
|
|
12527
12537
|
}
|
|
12528
12538
|
},
|
|
12529
12539
|
"node_modules/streamx": {
|
|
12530
|
-
"version": "2.
|
|
12531
|
-
"integrity": "sha512-
|
|
12540
|
+
"version": "2.27.0",
|
|
12541
|
+
"integrity": "sha512-WZ189TKnHoAokYHvwzaAQMpd55cgUmFIcJFzBSgGcb886jau5DL+XdDhTWV4ps3FLvk+OORp0dLRTPsLZ21CSA==",
|
|
12532
12542
|
"license": "MIT",
|
|
12533
12543
|
"dependencies": {
|
|
12534
12544
|
"events-universal": "^1.0.0",
|
|
@@ -12664,18 +12674,19 @@
|
|
|
12664
12674
|
}
|
|
12665
12675
|
},
|
|
12666
12676
|
"node_modules/string.prototype.trim": {
|
|
12667
|
-
"version": "1.2.
|
|
12668
|
-
"integrity": "sha512-
|
|
12677
|
+
"version": "1.2.11",
|
|
12678
|
+
"integrity": "sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w==",
|
|
12669
12679
|
"dev": true,
|
|
12670
12680
|
"license": "MIT",
|
|
12671
12681
|
"dependencies": {
|
|
12672
|
-
"call-bind": "^1.0.
|
|
12673
|
-
"call-bound": "^1.0.
|
|
12682
|
+
"call-bind": "^1.0.9",
|
|
12683
|
+
"call-bound": "^1.0.4",
|
|
12674
12684
|
"define-data-property": "^1.1.4",
|
|
12675
12685
|
"define-properties": "^1.2.1",
|
|
12676
|
-
"es-abstract": "^1.
|
|
12677
|
-
"es-object-atoms": "^1.
|
|
12678
|
-
"has-property-descriptors": "^1.0.2"
|
|
12686
|
+
"es-abstract": "^1.24.2",
|
|
12687
|
+
"es-object-atoms": "^1.1.2",
|
|
12688
|
+
"has-property-descriptors": "^1.0.2",
|
|
12689
|
+
"safe-regex-test": "^1.1.0"
|
|
12679
12690
|
},
|
|
12680
12691
|
"engines": {
|
|
12681
12692
|
"node": ">= 0.4"
|
|
@@ -12685,15 +12696,15 @@
|
|
|
12685
12696
|
}
|
|
12686
12697
|
},
|
|
12687
12698
|
"node_modules/string.prototype.trimend": {
|
|
12688
|
-
"version": "1.0.
|
|
12689
|
-
"integrity": "sha512-
|
|
12699
|
+
"version": "1.0.10",
|
|
12700
|
+
"integrity": "sha512-2+3aDAOmPTmuFwjDnmJG2ctEkQKVki7vOSqaxkv42Mowj1V6PnvuwFCRrR5lChUux1TBskPjfkeTOhqczDMxTw==",
|
|
12690
12701
|
"dev": true,
|
|
12691
12702
|
"license": "MIT",
|
|
12692
12703
|
"dependencies": {
|
|
12693
|
-
"call-bind": "^1.0.
|
|
12694
|
-
"call-bound": "^1.0.
|
|
12704
|
+
"call-bind": "^1.0.9",
|
|
12705
|
+
"call-bound": "^1.0.4",
|
|
12695
12706
|
"define-properties": "^1.2.1",
|
|
12696
|
-
"es-object-atoms": "^1.
|
|
12707
|
+
"es-object-atoms": "^1.1.2"
|
|
12697
12708
|
},
|
|
12698
12709
|
"engines": {
|
|
12699
12710
|
"node": ">= 0.4"
|
|
@@ -13324,8 +13335,8 @@
|
|
|
13324
13335
|
}
|
|
13325
13336
|
},
|
|
13326
13337
|
"node_modules/undici": {
|
|
13327
|
-
"version": "7.
|
|
13328
|
-
"integrity": "sha512-
|
|
13338
|
+
"version": "7.27.2",
|
|
13339
|
+
"integrity": "sha512-uZsKNuzQxDMUY6M3pIMvy5tvlGmtq8XJ2oLAkfRKGNu+1VQAIvLy2xIVG5ATZl5wDXl/tddByAWCizRbOme+TA==",
|
|
13329
13340
|
"dev": true,
|
|
13330
13341
|
"license": "MIT",
|
|
13331
13342
|
"engines": {
|
|
@@ -13774,8 +13785,8 @@
|
|
|
13774
13785
|
}
|
|
13775
13786
|
},
|
|
13776
13787
|
"node_modules/which-typed-array": {
|
|
13777
|
-
"version": "1.1.
|
|
13778
|
-
"integrity": "sha512-
|
|
13788
|
+
"version": "1.1.22",
|
|
13789
|
+
"integrity": "sha512-fvO4ExWMFsqyhG3AiPAObMuY1lxaqgYcxbc49CNdWDDECOJNgQyvsOWVwbZc+qf3rzRtxojBK+CMEv0Ld5CYpw==",
|
|
13779
13790
|
"dev": true,
|
|
13780
13791
|
"license": "MIT",
|
|
13781
13792
|
"dependencies": {
|