@wavemaker-ai/react-runtime 1.0.0-rc.647582 → 1.0.0-rc.647602

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.
Files changed (163) hide show
  1. package/components/advanced/carousel/index.d.ts +2 -0
  2. package/components/advanced/carousel/template.d.ts +2 -0
  3. package/components/advanced/login/index.d.ts +2 -0
  4. package/components/advanced/marquee/index.d.ts +2 -0
  5. package/components/auth/RoleAuthGuard.js +1 -0
  6. package/components/basic/anchor/index.d.ts +2 -0
  7. package/components/basic/anchor/index.js +1 -1
  8. package/components/basic/audio/index.d.ts +2 -0
  9. package/components/basic/html/index.d.ts +2 -0
  10. package/components/basic/icon/index.d.ts +2 -0
  11. package/components/basic/iframe/index.d.ts +2 -0
  12. package/components/basic/label/index.d.ts +2 -0
  13. package/components/basic/label/index.js +17 -3
  14. package/components/basic/picture/index.d.ts +2 -0
  15. package/components/basic/picture/index.js +20 -1
  16. package/components/basic/progress-bar/index.d.ts +2 -0
  17. package/components/basic/progress-circle/index.d.ts +2 -0
  18. package/components/basic/progress-circle/index.js +2 -1
  19. package/components/basic/richtexteditor/index.d.ts +4 -0
  20. package/components/basic/richtexteditor/index.js +16 -15
  21. package/components/basic/search/index.d.ts +4 -0
  22. package/components/basic/spinner/index.d.ts +2 -0
  23. package/components/basic/tile/index.d.ts +2 -0
  24. package/components/basic/tree/index.d.ts +2 -0
  25. package/components/basic/video/index.d.ts +2 -0
  26. package/components/chart/index.d.ts +2 -0
  27. package/components/common/index.d.ts +2 -0
  28. package/components/common/index.js +5 -1
  29. package/components/common/wm-skeleton.d.ts +95 -0
  30. package/components/common/wm-skeleton.js +346 -0
  31. package/components/container/accordion/accordion-pane/index.d.ts +2 -0
  32. package/components/container/accordion/index.d.ts +4 -0
  33. package/components/container/accordion/index.js +23 -1
  34. package/components/container/accordion/props.d.ts +10 -0
  35. package/components/container/index.d.ts +2 -0
  36. package/components/container/index.js +2 -4
  37. package/components/container/layout-grid/grid-column/index.d.ts +2 -0
  38. package/components/container/layout-grid/grid-row/index.d.ts +2 -0
  39. package/components/container/layout-grid/index.d.ts +2 -0
  40. package/components/container/linear-layout/index.d.ts +2 -0
  41. package/components/container/linear-layout/linear-layout-item/index.d.ts +2 -0
  42. package/components/container/panel/index.d.ts +2 -0
  43. package/components/container/repeat-template/index.d.ts +2 -0
  44. package/components/container/tabs/index.d.ts +4 -0
  45. package/components/container/tabs/index.js +23 -1
  46. package/components/container/tabs/props.d.ts +10 -0
  47. package/components/container/tabs/tab-pane/index.d.ts +2 -0
  48. package/components/container/wizard/index.d.ts +8 -0
  49. package/components/container/wizard/index.js +27 -3
  50. package/components/container/wizard/props.d.ts +10 -0
  51. package/components/container/wizard/wizard-step/index.d.ts +2 -0
  52. package/components/data/card/card-actions/index.d.ts +2 -0
  53. package/components/data/card/card-content/index.d.ts +2 -0
  54. package/components/data/card/card-footer/index.d.ts +2 -0
  55. package/components/data/card/index.d.ts +2 -0
  56. package/components/data/card/index.js +12 -6
  57. package/components/data/form/base-form/hooks/useFormOperations.d.ts +1 -1
  58. package/components/data/form/base-form/hooks/useFormOperations.js +3 -3
  59. package/components/data/form/base-form/index.js +30 -25
  60. package/components/data/form/base-form/props.d.ts +1 -1
  61. package/components/data/form/dynamic-fields/index.js +3 -0
  62. package/components/data/form/form-action/index.d.ts +4 -0
  63. package/components/data/form/form-controller/hooks/index.js +2 -1
  64. package/components/data/form/form-controller/withFormController.js +11 -16
  65. package/components/data/form/form-field/base-field.js +0 -5
  66. package/components/data/form/form-field/index.js +99 -13
  67. package/components/data/form/form-field/props.d.ts +8 -0
  68. package/components/data/form/index.js +13 -0
  69. package/components/data/list/index.d.ts +7 -0
  70. package/components/data/list/index.js +18 -0
  71. package/components/data/list/props.d.ts +7 -0
  72. package/components/data/table/components/RowCells.js +4 -1
  73. package/components/data/table/hooks/useDynamicColumns.js +3 -1
  74. package/components/data/table/hooks/useResponsiveColumns.d.ts +2 -0
  75. package/components/data/table/index.d.ts +8 -0
  76. package/components/data/table/index.js +15 -0
  77. package/components/data/table/live-table/index.d.ts +2 -0
  78. package/components/data/table/props.d.ts +10 -0
  79. package/components/data/table/table-action/index.d.ts +2 -0
  80. package/components/data/table/table-column/index.d.ts +2 -0
  81. package/components/data/table/table-row/index.d.ts +2 -0
  82. package/components/data/table/table-row-action/index.d.ts +2 -0
  83. package/components/data/table/utils/index.d.ts +2 -0
  84. package/components/data/table/utils/index.js +17 -3
  85. package/components/dialogs/alert-dialog/index.d.ts +4 -0
  86. package/components/dialogs/confirm-dialog/index.d.ts +4 -0
  87. package/components/dialogs/dialog/index.d.ts +4 -0
  88. package/components/dialogs/dialog-actions/index.d.ts +2 -0
  89. package/components/dialogs/dialog-body/index.d.ts +2 -0
  90. package/components/dialogs/dialog-content/index.d.ts +2 -0
  91. package/components/dialogs/dialog-header/index.d.ts +2 -0
  92. package/components/dialogs/iframe-dialog/index.d.ts +4 -0
  93. package/components/dialogs/login-dialog/index.d.ts +4 -0
  94. package/components/dialogs/page-dialog/index.d.ts +4 -0
  95. package/components/form/button/index.d.ts +2 -0
  96. package/components/form/button/index.js +10 -1
  97. package/components/form/button-group/index.d.ts +2 -0
  98. package/components/input/calendar/index.d.ts +4 -0
  99. package/components/input/calendar/index.js +2 -1
  100. package/components/input/chips/index.d.ts +4 -0
  101. package/components/input/color-picker/index.d.ts +4 -0
  102. package/components/input/color-picker/index.js +18 -7
  103. package/components/input/composite/index.d.ts +2 -0
  104. package/components/input/currency/index.d.ts +4 -0
  105. package/components/input/default/checkbox/index.d.ts +4 -0
  106. package/components/input/default/checkboxset/index.d.ts +4 -0
  107. package/components/input/default/checkboxset/index.js +7 -5
  108. package/components/input/default/radioset/index.d.ts +4 -0
  109. package/components/input/default/radioset/index.js +2 -1
  110. package/components/input/default/switch/index.d.ts +4 -0
  111. package/components/input/default/switch/index.js +17 -13
  112. package/components/input/epoch/date/index.d.ts +2 -0
  113. package/components/input/epoch/date/index.js +30 -14
  114. package/components/input/epoch/datetime/index.d.ts +2 -0
  115. package/components/input/epoch/datetime/index.js +12 -8
  116. package/components/input/epoch/time/index.d.ts +2 -0
  117. package/components/input/epoch/time/index.js +21 -15
  118. package/components/input/fileupload/index.d.ts +2 -0
  119. package/components/input/number/index.d.ts +4 -0
  120. package/components/input/number/index.js +4 -3
  121. package/components/input/rating/index.d.ts +4 -0
  122. package/components/input/select/index.d.ts +4 -0
  123. package/components/input/slider/index.d.ts +4 -0
  124. package/components/input/slider/index.js +4 -2
  125. package/components/input/text/index.d.ts +4 -0
  126. package/components/input/text/index.js +16 -8
  127. package/components/input/textarea/index.d.ts +4 -0
  128. package/components/input/upload/index.d.ts +4 -0
  129. package/components/input/upload/index.js +6 -4
  130. package/components/navbar/index.d.ts +2 -0
  131. package/components/navbar/nav/index.d.ts +2 -0
  132. package/components/navbar/nav-item/index.d.ts +2 -0
  133. package/components/navigation/breadcrumb/index.d.ts +2 -0
  134. package/components/navigation/menu/index.d.ts +2 -0
  135. package/components/navigation/menu/index.js +2 -2
  136. package/components/navigation/popover/index.d.ts +2 -0
  137. package/components/page/partial/index.d.ts +2 -0
  138. package/context/AppContext.d.ts +2 -0
  139. package/context/AppContext.js +20 -1
  140. package/context/WidgetProvider.js +0 -3
  141. package/core/proxy-service.d.ts +2 -0
  142. package/core/proxy-service.js +25 -0
  143. package/higherOrder/BaseApp.js +1 -3
  144. package/higherOrder/BaseAppProps.d.ts +1 -1
  145. package/higherOrder/BasePage.js +4 -2
  146. package/higherOrder/props.d.ts +10 -0
  147. package/higherOrder/withBaseWrapper.js +3 -0
  148. package/hooks/useAuth.js +3 -0
  149. package/hooks/useLayoutSize.d.ts +6 -0
  150. package/hooks/useLayoutSize.js +12 -0
  151. package/package-lock.json +198 -183
  152. package/package.json +3 -3
  153. package/runtime-dynamic/components/use-dynamic-component.js +6 -11
  154. package/runtime-dynamic/main.js +1 -3
  155. package/runtime-dynamic/services/component-ref-provider.d.ts +1 -1
  156. package/runtime-dynamic/services/component-ref-provider.js +14 -11
  157. package/runtime-dynamic/services/resource-manager.js +10 -4
  158. package/runtime-dynamic/services/script-executor.js +4 -1
  159. package/runtime-dynamic/services/variable-registry.js +3 -0
  160. package/utils/attr.js +0 -1
  161. package/utils/format-util.js +2 -3
  162. package/utils/form-state.util.d.ts +0 -62
  163. package/utils/form-state.util.js +0 -109
package/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@wavemaker-ai/react-runtime",
3
- "version": "1.0.0-rc.647582",
3
+ "version": "1.0.0-rc.647602",
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.647582",
9
+ "version": "1.0.0-rc.647602",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@base-ui-components/react": "1.0.0-alpha.8",
@@ -28,7 +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.647582",
31
+ "@wavemaker-ai/react-codegen": "1.0.0-rc.647602",
32
+ "@wavemaker-ai/variables": "1.0.0-rc.647602",
32
33
  "@wavemaker/nvd3": "1.8.16",
33
34
  "axios": "1.15.1",
34
35
  "d3": "7.8.5",
@@ -67,7 +68,6 @@
67
68
  "@types/react-dom": "19.2.3",
68
69
  "@vitejs/plugin-react": "5.1.4",
69
70
  "@vitest/coverage-v8": "3.2.4",
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",
@@ -598,8 +598,8 @@
598
598
  }
599
599
  },
600
600
  "node_modules/@csstools/css-color-parser": {
601
- "version": "4.1.1",
602
- "integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==",
601
+ "version": "4.1.4",
602
+ "integrity": "sha512-yI8kNhHiOrLb8Rlulsk07DeQz0PwyT69FX9dkz5rAp7p9RUwFKEXnZpBGzURiLHgi66YqIWxOHn1nij8Lrg27Q==",
603
603
  "dev": true,
604
604
  "funding": [
605
605
  {
@@ -739,8 +739,8 @@
739
739
  }
740
740
  },
741
741
  "node_modules/@emnapi/runtime": {
742
- "version": "1.11.0",
743
- "integrity": "sha512-55coeOFKHv1ywEcUXJtWU5f+Jr/W5tZDvZig8DLKSwUN1JpROQ4rk/SNOQiFWmaR/VKF4zuFyW1B8JduOSv6Pg==",
742
+ "version": "1.11.1",
743
+ "integrity": "sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==",
744
744
  "license": "MIT",
745
745
  "optional": true,
746
746
  "dependencies": {
@@ -2388,7 +2388,6 @@
2388
2388
  "node_modules/@metrichor/jmespath": {
2389
2389
  "version": "0.3.1",
2390
2390
  "integrity": "sha512-X/S90FG+VlEWGNEptEpZ15QN7h9aRhdOZm3yjE4lHItig8lSpJbmYDqAPo3iKc4CjUGfUSv4z+VhKrFw6iHBMg==",
2391
- "dev": true,
2392
2391
  "license": "MPL-2.0",
2393
2392
  "engines": {
2394
2393
  "node": ">=10.0.0"
@@ -2968,13 +2967,13 @@
2968
2967
  }
2969
2968
  },
2970
2969
  "node_modules/@napi-rs/wasm-runtime": {
2971
- "version": "1.1.4",
2972
- "integrity": "sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==",
2970
+ "version": "1.1.5",
2971
+ "integrity": "sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==",
2973
2972
  "dev": true,
2974
2973
  "license": "MIT",
2975
2974
  "optional": true,
2976
2975
  "dependencies": {
2977
- "@tybys/wasm-util": "^0.10.1"
2976
+ "@tybys/wasm-util": "^0.10.2"
2978
2977
  },
2979
2978
  "funding": {
2980
2979
  "type": "github",
@@ -3256,8 +3255,8 @@
3256
3255
  "license": "MIT"
3257
3256
  },
3258
3257
  "node_modules/@rollup/rollup-android-arm-eabi": {
3259
- "version": "4.61.1",
3260
- "integrity": "sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==",
3258
+ "version": "4.62.0",
3259
+ "integrity": "sha512-IPIQ55ythEHkfEd9jMEi32OQ7SxURsGA43JI22lj01OLZNt2NUbJX8YUHxkVWyQ6daHPNn0truF5nSj3DQp6YQ==",
3261
3260
  "cpu": [
3262
3261
  "arm"
3263
3262
  ],
@@ -3269,8 +3268,8 @@
3269
3268
  ]
3270
3269
  },
3271
3270
  "node_modules/@rollup/rollup-android-arm64": {
3272
- "version": "4.61.1",
3273
- "integrity": "sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==",
3271
+ "version": "4.62.0",
3272
+ "integrity": "sha512-M6s9cr10MibETyo8JsOkq+Lo1+lU6hcvb1MApnUql5qte/5hMEgzlN8/ReIKNfRV8rrqX50W1BX9zoUhC192RA==",
3274
3273
  "cpu": [
3275
3274
  "arm64"
3276
3275
  ],
@@ -3282,8 +3281,8 @@
3282
3281
  ]
3283
3282
  },
3284
3283
  "node_modules/@rollup/rollup-darwin-arm64": {
3285
- "version": "4.61.1",
3286
- "integrity": "sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==",
3284
+ "version": "4.62.0",
3285
+ "integrity": "sha512-BqCoMoIbn0keKys+dEAdBa70EtOwV1bEsQCUgU9FdiZmmMge/Zk7LlkYGqbrdHR+Frnt0E1FOanly+rlwvvQzw==",
3287
3286
  "cpu": [
3288
3287
  "arm64"
3289
3288
  ],
@@ -3295,8 +3294,8 @@
3295
3294
  ]
3296
3295
  },
3297
3296
  "node_modules/@rollup/rollup-darwin-x64": {
3298
- "version": "4.61.1",
3299
- "integrity": "sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==",
3297
+ "version": "4.62.0",
3298
+ "integrity": "sha512-SIMzST3VFNXDAbeIWDWiFCNM5qncUBDWaEV7NfE7oZbDt2mgfW4MvbKdbYiGOLoM32gbTv608UMd0XktEYSD7w==",
3300
3299
  "cpu": [
3301
3300
  "x64"
3302
3301
  ],
@@ -3308,8 +3307,8 @@
3308
3307
  ]
3309
3308
  },
3310
3309
  "node_modules/@rollup/rollup-freebsd-arm64": {
3311
- "version": "4.61.1",
3312
- "integrity": "sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==",
3310
+ "version": "4.62.0",
3311
+ "integrity": "sha512-ezjfSQMP7ArdUsbBwbQIfwAlhE84I2iVnzQNCFSveqV42q+BmKlzVpf7mxv5EchLcoWU4y6/heFzVg1F+hodUQ==",
3313
3312
  "cpu": [
3314
3313
  "arm64"
3315
3314
  ],
@@ -3321,8 +3320,8 @@
3321
3320
  ]
3322
3321
  },
3323
3322
  "node_modules/@rollup/rollup-freebsd-x64": {
3324
- "version": "4.61.1",
3325
- "integrity": "sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==",
3323
+ "version": "4.62.0",
3324
+ "integrity": "sha512-9+qTWGW9AZRhnUgwtTwzNwcPlL87ngkeN0LA+q1bADvmY9aNvWaF2TFW8BZgnQPYxpDI7+rMVLivcd4V737TAQ==",
3326
3325
  "cpu": [
3327
3326
  "x64"
3328
3327
  ],
@@ -3334,8 +3333,8 @@
3334
3333
  ]
3335
3334
  },
3336
3335
  "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
3337
- "version": "4.61.1",
3338
- "integrity": "sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==",
3336
+ "version": "4.62.0",
3337
+ "integrity": "sha512-T1dMEQhXA/jkJ/jyMIw9IovK8bSUq7A8kLIlvZTb/6YIVsp2zLavr4F3oyllHWo7eIVJRyE5n3tUjQJEbE1IuQ==",
3339
3338
  "cpu": [
3340
3339
  "arm"
3341
3340
  ],
@@ -3347,8 +3346,8 @@
3347
3346
  ]
3348
3347
  },
3349
3348
  "node_modules/@rollup/rollup-linux-arm-musleabihf": {
3350
- "version": "4.61.1",
3351
- "integrity": "sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==",
3349
+ "version": "4.62.0",
3350
+ "integrity": "sha512-2as0LgT7qQpyceQq6VUJYnumUMUrgGQCWIiDIN9DE0/tglsk6o66uCB4f3djRawAltvfCNLyZZrsqbPA6inCsA==",
3352
3351
  "cpu": [
3353
3352
  "arm"
3354
3353
  ],
@@ -3360,8 +3359,8 @@
3360
3359
  ]
3361
3360
  },
3362
3361
  "node_modules/@rollup/rollup-linux-arm64-gnu": {
3363
- "version": "4.61.1",
3364
- "integrity": "sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==",
3362
+ "version": "4.62.0",
3363
+ "integrity": "sha512-bVURMg+6eNN9C/yc0aVjooZcwTTtYF4YW3xta5pP0//r3o1V8gXEHXWCndj47w/HhwsFroZrFhR+6uQP5T0n0g==",
3365
3364
  "cpu": [
3366
3365
  "arm64"
3367
3366
  ],
@@ -3373,8 +3372,8 @@
3373
3372
  ]
3374
3373
  },
3375
3374
  "node_modules/@rollup/rollup-linux-arm64-musl": {
3376
- "version": "4.61.1",
3377
- "integrity": "sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==",
3375
+ "version": "4.62.0",
3376
+ "integrity": "sha512-Ful8pM/2yYI83PViWdFdpZhdI8HJ5qsXANe5atypbHDf+KIBBDsZsbyy8hbXnULVvW9NsTh5DHwbcBftyLTfiw==",
3378
3377
  "cpu": [
3379
3378
  "arm64"
3380
3379
  ],
@@ -3386,8 +3385,8 @@
3386
3385
  ]
3387
3386
  },
3388
3387
  "node_modules/@rollup/rollup-linux-loong64-gnu": {
3389
- "version": "4.61.1",
3390
- "integrity": "sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==",
3388
+ "version": "4.62.0",
3389
+ "integrity": "sha512-9Gp/DgrkzfUBmNPVTyPTvay+4xEP7M/clXpj3efXBcm6uTIVIgDg4rqUpqKXvLEuFRVuEpSAOkhgNeecvaZ4Cg==",
3391
3390
  "cpu": [
3392
3391
  "loong64"
3393
3392
  ],
@@ -3399,8 +3398,8 @@
3399
3398
  ]
3400
3399
  },
3401
3400
  "node_modules/@rollup/rollup-linux-loong64-musl": {
3402
- "version": "4.61.1",
3403
- "integrity": "sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==",
3401
+ "version": "4.62.0",
3402
+ "integrity": "sha512-m9tsJz54LUXkSYM8+8PG81B9IKK5r+2T0clMq4QrS16xFosufU7firBDAZEsDheDs7wTlP7h3++S7lMsU955HA==",
3404
3403
  "cpu": [
3405
3404
  "loong64"
3406
3405
  ],
@@ -3412,8 +3411,8 @@
3412
3411
  ]
3413
3412
  },
3414
3413
  "node_modules/@rollup/rollup-linux-ppc64-gnu": {
3415
- "version": "4.61.1",
3416
- "integrity": "sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==",
3414
+ "version": "4.62.0",
3415
+ "integrity": "sha512-3UvJ5PNVU16aJf6M3tFI24pWzAl2/ynfbyRN3ICyQajK1lSkrnVYNnLz3v04J32qKa0FczJc22zeToc0lr2A3w==",
3417
3416
  "cpu": [
3418
3417
  "ppc64"
3419
3418
  ],
@@ -3425,8 +3424,8 @@
3425
3424
  ]
3426
3425
  },
3427
3426
  "node_modules/@rollup/rollup-linux-ppc64-musl": {
3428
- "version": "4.61.1",
3429
- "integrity": "sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==",
3427
+ "version": "4.62.0",
3428
+ "integrity": "sha512-vRWUAbYLGHBZS6Q8Msb2sfnf1fvJf+47t8l/TwOerM2qArzy+IeNMTHrYLHXh95h8MoatPHI5hhSZNs+mGXKPg==",
3430
3429
  "cpu": [
3431
3430
  "ppc64"
3432
3431
  ],
@@ -3438,8 +3437,8 @@
3438
3437
  ]
3439
3438
  },
3440
3439
  "node_modules/@rollup/rollup-linux-riscv64-gnu": {
3441
- "version": "4.61.1",
3442
- "integrity": "sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==",
3440
+ "version": "4.62.0",
3441
+ "integrity": "sha512-c00T5SYENHAt86cfW47URaP3Us5vLC/4QO7GYud1G5VNRffCwwCuBspwqYrriuJB+5m0WFzClCn9wed0FBjKvg==",
3443
3442
  "cpu": [
3444
3443
  "riscv64"
3445
3444
  ],
@@ -3451,8 +3450,8 @@
3451
3450
  ]
3452
3451
  },
3453
3452
  "node_modules/@rollup/rollup-linux-riscv64-musl": {
3454
- "version": "4.61.1",
3455
- "integrity": "sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==",
3453
+ "version": "4.62.0",
3454
+ "integrity": "sha512-krrCDilhXOwFkSkO3Wm9I/f9H0L92XHHwy2fwxjukxIbh0dem8gZqOW5Y8BsHrpJv5qwlRBV+Wl4ZFyRWhUpwg==",
3456
3455
  "cpu": [
3457
3456
  "riscv64"
3458
3457
  ],
@@ -3464,8 +3463,8 @@
3464
3463
  ]
3465
3464
  },
3466
3465
  "node_modules/@rollup/rollup-linux-s390x-gnu": {
3467
- "version": "4.61.1",
3468
- "integrity": "sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==",
3466
+ "version": "4.62.0",
3467
+ "integrity": "sha512-7pfYFSTc4/rUC/FtAI0Qp6QthDBCIi6/AuP1xYqFk5vanI6KnL5dWKP60OM/05LOsbwTmIcvr6eXC4CJuJ75IA==",
3469
3468
  "cpu": [
3470
3469
  "s390x"
3471
3470
  ],
@@ -3477,8 +3476,8 @@
3477
3476
  ]
3478
3477
  },
3479
3478
  "node_modules/@rollup/rollup-linux-x64-gnu": {
3480
- "version": "4.61.1",
3481
- "integrity": "sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==",
3479
+ "version": "4.62.0",
3480
+ "integrity": "sha512-7SDIalKeIpG0Ifogbbdn58HmSotYMlf23K3dCJEmiVd9Fg36Vmni82iPQec27N3wY4Bvbxftkxz6vSx9OcouTg==",
3482
3481
  "cpu": [
3483
3482
  "x64"
3484
3483
  ],
@@ -3490,8 +3489,8 @@
3490
3489
  ]
3491
3490
  },
3492
3491
  "node_modules/@rollup/rollup-linux-x64-musl": {
3493
- "version": "4.61.1",
3494
- "integrity": "sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==",
3492
+ "version": "4.62.0",
3493
+ "integrity": "sha512-eRZevouTH2i1HeAVLqJuLnt256krQkGY0TN6WsTmsIhuzbh457HuWDMakKwmi0Cjadux983CoSr8Lim2QhUIFw==",
3495
3494
  "cpu": [
3496
3495
  "x64"
3497
3496
  ],
@@ -3503,8 +3502,8 @@
3503
3502
  ]
3504
3503
  },
3505
3504
  "node_modules/@rollup/rollup-openbsd-x64": {
3506
- "version": "4.61.1",
3507
- "integrity": "sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==",
3505
+ "version": "4.62.0",
3506
+ "integrity": "sha512-3oVS7FLGa4U1qcvao9ylGxrjXZyUQqR8UwxEcnUEyPX53O/C/mKDZegNXTdHCP+h3e6ta/f1EN38Yif1mmZHYg==",
3508
3507
  "cpu": [
3509
3508
  "x64"
3510
3509
  ],
@@ -3516,8 +3515,8 @@
3516
3515
  ]
3517
3516
  },
3518
3517
  "node_modules/@rollup/rollup-openharmony-arm64": {
3519
- "version": "4.61.1",
3520
- "integrity": "sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==",
3518
+ "version": "4.62.0",
3519
+ "integrity": "sha512-yTB9TgfWj5wHe5QgktAgXTLLot1gvEjl1NiPPAUiCs4oPrIWFl5V4nC3GrkNdj9LaAU4s94nVrGbGOCqUpyWsg==",
3521
3520
  "cpu": [
3522
3521
  "arm64"
3523
3522
  ],
@@ -3529,8 +3528,8 @@
3529
3528
  ]
3530
3529
  },
3531
3530
  "node_modules/@rollup/rollup-win32-arm64-msvc": {
3532
- "version": "4.61.1",
3533
- "integrity": "sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==",
3531
+ "version": "4.62.0",
3532
+ "integrity": "sha512-5LOhoaesY3doG1c+ac/2JtgREpKoJr5bUHH8tKY0V8di7+uSV6BwLs2PlR0/yzefGOkR+wE7ZolZphHCsyG5Rw==",
3534
3533
  "cpu": [
3535
3534
  "arm64"
3536
3535
  ],
@@ -3542,8 +3541,8 @@
3542
3541
  ]
3543
3542
  },
3544
3543
  "node_modules/@rollup/rollup-win32-ia32-msvc": {
3545
- "version": "4.61.1",
3546
- "integrity": "sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==",
3544
+ "version": "4.62.0",
3545
+ "integrity": "sha512-yYkWHhmbhRTWTnWos5HC4GcPQfjlzzCNbM9e/+GXrLuaBXYA3qSDR9f0Vgufd5S8yX81U8jPKp7ZnAjZFMtRnw==",
3547
3546
  "cpu": [
3548
3547
  "ia32"
3549
3548
  ],
@@ -3555,8 +3554,8 @@
3555
3554
  ]
3556
3555
  },
3557
3556
  "node_modules/@rollup/rollup-win32-x64-gnu": {
3558
- "version": "4.61.1",
3559
- "integrity": "sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==",
3557
+ "version": "4.62.0",
3558
+ "integrity": "sha512-SoTb6lPg25xZlA2ibwQ++ahCCnH+FP0qmEuafMJ4gznZKOlXioKEAeJLgCrqjM98ACziXM9V1amFjICVL4IFoA==",
3560
3559
  "cpu": [
3561
3560
  "x64"
3562
3561
  ],
@@ -3568,8 +3567,8 @@
3568
3567
  ]
3569
3568
  },
3570
3569
  "node_modules/@rollup/rollup-win32-x64-msvc": {
3571
- "version": "4.61.1",
3572
- "integrity": "sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==",
3570
+ "version": "4.62.0",
3571
+ "integrity": "sha512-5L+T1fMX4RIEBoZzT0+sQ0PhTS36NULFmMXtl1TZo44TMAROIMHbZufSOjVWt/Y622BtxgxtaNOokbTDvfsrZA==",
3573
3572
  "cpu": [
3574
3573
  "x64"
3575
3574
  ],
@@ -4204,8 +4203,8 @@
4204
4203
  }
4205
4204
  },
4206
4205
  "node_modules/@types/node": {
4207
- "version": "20.19.42",
4208
- "integrity": "sha512-5L7SUaFC1RyDraj2yRhyBzHTobyXHmohD100CChNtyPyleoq37Mqab5Gn8XEKI04dfN/oqPdpHk38MgcQWHbZg==",
4206
+ "version": "20.19.43",
4207
+ "integrity": "sha512-6oYBAi5ikg4Pl+kGsoYtawUMBT2zZMCvPNF7pVLnHZfd1zf38DRiWn/gT01RYCdUqkv7Fhr+C9ot4/tb+2sVvA==",
4209
4208
  "dev": true,
4210
4209
  "license": "MIT",
4211
4210
  "dependencies": {
@@ -4310,16 +4309,16 @@
4310
4309
  "license": "MIT"
4311
4310
  },
4312
4311
  "node_modules/@typescript-eslint/eslint-plugin": {
4313
- "version": "8.60.1",
4314
- "integrity": "sha512-JQ4S5GB0tfjO8BuJ4fcX+HodkzJjYBV+7OJ+wLygaX7OGQ7FudyHL4NSCA6ob+w3Yn+5MkKIozOwQhXeM7opVg==",
4312
+ "version": "8.61.0",
4313
+ "integrity": "sha512-bFNvl9ZczlVb+wR2Akszf3gHfKVj/8WanXaGJ3UstTA7brNKg0cNdk6X1Psu5V7MZ2oQtzZKOEzIUehaoxbDGw==",
4315
4314
  "dev": true,
4316
4315
  "license": "MIT",
4317
4316
  "dependencies": {
4318
4317
  "@eslint-community/regexpp": "^4.12.2",
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",
4318
+ "@typescript-eslint/scope-manager": "8.61.0",
4319
+ "@typescript-eslint/type-utils": "8.61.0",
4320
+ "@typescript-eslint/utils": "8.61.0",
4321
+ "@typescript-eslint/visitor-keys": "8.61.0",
4323
4322
  "ignore": "^7.0.5",
4324
4323
  "natural-compare": "^1.4.0",
4325
4324
  "ts-api-utils": "^2.5.0"
@@ -4332,7 +4331,7 @@
4332
4331
  "url": "https://opencollective.com/typescript-eslint"
4333
4332
  },
4334
4333
  "peerDependencies": {
4335
- "@typescript-eslint/parser": "^8.60.1",
4334
+ "@typescript-eslint/parser": "^8.61.0",
4336
4335
  "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
4337
4336
  "typescript": ">=4.8.4 <6.1.0"
4338
4337
  }
@@ -4347,15 +4346,15 @@
4347
4346
  }
4348
4347
  },
4349
4348
  "node_modules/@typescript-eslint/parser": {
4350
- "version": "8.60.1",
4351
- "integrity": "sha512-A0M6ua6H252bVjPvvtSgl2QA4+ET9S5Mtkb2GDyTxIhH/C4qDItT7RQNO5PhMC6NXGYXOR9dIalcDDgBKT7oFA==",
4349
+ "version": "8.61.0",
4350
+ "integrity": "sha512-5B7PfA2e1NQGCnDHd/0lW7W3gvp3d59Ryw54FYO8Uswxo9f6ikw3AZV+Xj/TvpImmpsiYyUqAfhC6kJID1jF6w==",
4352
4351
  "dev": true,
4353
4352
  "license": "MIT",
4354
4353
  "dependencies": {
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",
4354
+ "@typescript-eslint/scope-manager": "8.61.0",
4355
+ "@typescript-eslint/types": "8.61.0",
4356
+ "@typescript-eslint/typescript-estree": "8.61.0",
4357
+ "@typescript-eslint/visitor-keys": "8.61.0",
4359
4358
  "debug": "^4.4.3"
4360
4359
  },
4361
4360
  "engines": {
@@ -4371,13 +4370,13 @@
4371
4370
  }
4372
4371
  },
4373
4372
  "node_modules/@typescript-eslint/project-service": {
4374
- "version": "8.60.1",
4375
- "integrity": "sha512-eXkTH2bxmXlqD1RnOPmLZ9ZM9D3VwSx04JOwBnP9RQ+yUA5a2Mu7SfW8uaV2Aon53NJzZlZYuX7tn91Izf+xaw==",
4373
+ "version": "8.61.0",
4374
+ "integrity": "sha512-DV42F7MLJO6Rax7SK1yg43tcnEfGUrurSpSxKuVX+a3RCTzBlH3fuxprrOJXKCJGAaw82xXocikJ0uQaqwXgGA==",
4376
4375
  "dev": true,
4377
4376
  "license": "MIT",
4378
4377
  "dependencies": {
4379
- "@typescript-eslint/tsconfig-utils": "^8.60.1",
4380
- "@typescript-eslint/types": "^8.60.1",
4378
+ "@typescript-eslint/tsconfig-utils": "^8.61.0",
4379
+ "@typescript-eslint/types": "^8.61.0",
4381
4380
  "debug": "^4.4.3"
4382
4381
  },
4383
4382
  "engines": {
@@ -4392,13 +4391,13 @@
4392
4391
  }
4393
4392
  },
4394
4393
  "node_modules/@typescript-eslint/scope-manager": {
4395
- "version": "8.60.1",
4396
- "integrity": "sha512-gvI5OQoptnxQnchOirukCuQ55svJSTuD/4k5+pC267xyBtYry748R9/c3tYUzb/iE6RZfllRz2lVulLCHkTm4w==",
4394
+ "version": "8.61.0",
4395
+ "integrity": "sha512-IWdXFHFSb6mlC3HPc7QsLDm5zYEbUla6trDEHf32D3/dnuUyXd87plScSNXSbm0/RxMvObpI17sv/EDTGrGZkA==",
4397
4396
  "dev": true,
4398
4397
  "license": "MIT",
4399
4398
  "dependencies": {
4400
- "@typescript-eslint/types": "8.60.1",
4401
- "@typescript-eslint/visitor-keys": "8.60.1"
4399
+ "@typescript-eslint/types": "8.61.0",
4400
+ "@typescript-eslint/visitor-keys": "8.61.0"
4402
4401
  },
4403
4402
  "engines": {
4404
4403
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -4409,8 +4408,8 @@
4409
4408
  }
4410
4409
  },
4411
4410
  "node_modules/@typescript-eslint/tsconfig-utils": {
4412
- "version": "8.60.1",
4413
- "integrity": "sha512-nh8w4qAteiKuZu3pSSzG/yGKpw0OlkrKnzFmbVRenKaD4qc+7i1GrmZaLVkr8rk4uipiPGMOW4YsM6WmKZ5CvA==",
4411
+ "version": "8.61.0",
4412
+ "integrity": "sha512-O5Amvdv9ztMpxpf+vmFULGG78IE6Qwdr3bCGvqwG4nwc9H2qXkOYJJnRbRHyMkQTjv1d03olqwwwzHLMqpFePQ==",
4414
4413
  "dev": true,
4415
4414
  "license": "MIT",
4416
4415
  "engines": {
@@ -4425,14 +4424,14 @@
4425
4424
  }
4426
4425
  },
4427
4426
  "node_modules/@typescript-eslint/type-utils": {
4428
- "version": "8.60.1",
4429
- "integrity": "sha512-sdwTrpjosW7ANQYJ39ZBF1ZyEMEGVB2UsikrserVM/30a/F1dTLnu9bGxEdosugyu5caigjLrR2qiD11asjI1A==",
4427
+ "version": "8.61.0",
4428
+ "integrity": "sha512-TuBiQYIkd97yBfInHCTKVYMbX4kvEmpOEuixIuzCU9p8BGT1SfyyO0d0IfDMbPIHcjn/hWnusUX5e8v5Xg+X8A==",
4430
4429
  "dev": true,
4431
4430
  "license": "MIT",
4432
4431
  "dependencies": {
4433
- "@typescript-eslint/types": "8.60.1",
4434
- "@typescript-eslint/typescript-estree": "8.60.1",
4435
- "@typescript-eslint/utils": "8.60.1",
4432
+ "@typescript-eslint/types": "8.61.0",
4433
+ "@typescript-eslint/typescript-estree": "8.61.0",
4434
+ "@typescript-eslint/utils": "8.61.0",
4436
4435
  "debug": "^4.4.3",
4437
4436
  "ts-api-utils": "^2.5.0"
4438
4437
  },
@@ -4449,8 +4448,8 @@
4449
4448
  }
4450
4449
  },
4451
4450
  "node_modules/@typescript-eslint/types": {
4452
- "version": "8.60.1",
4453
- "integrity": "sha512-4h0tY8ppCkdCzcrl2YM5M3my0xsE1Tf8om3owEu5oPWmXwkKRmk0j0LGDzYBGUcAlesEbxBhazqu/K4cu3Ug7w==",
4451
+ "version": "8.61.0",
4452
+ "integrity": "sha512-9QTQpZ5Iin4CdIodfbDQFSeiSJKidgYJYug1P9CC2xWgUTvlmixViqDZNciMjwLBZyJnG4tGmPl97rVAFb1AJg==",
4454
4453
  "dev": true,
4455
4454
  "license": "MIT",
4456
4455
  "engines": {
@@ -4462,15 +4461,15 @@
4462
4461
  }
4463
4462
  },
4464
4463
  "node_modules/@typescript-eslint/typescript-estree": {
4465
- "version": "8.60.1",
4466
- "integrity": "sha512-alpRkfG8hlVE5kdJW2GkfgDgXxold3e8e4l6EnmhRmRLbekgAPCCGDVD++sABy9FcgPFroq+uFcCSM1vR57Cew==",
4464
+ "version": "8.61.0",
4465
+ "integrity": "sha512-42zatd5qSvvcV1JdDBCLxYRznvP4eIHpPoZXdkPFnAmanA4FuZ5dibSnCBggY8hQnqajPpoGjXFdZ7fIJKQnlA==",
4467
4466
  "dev": true,
4468
4467
  "license": "MIT",
4469
4468
  "dependencies": {
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",
4469
+ "@typescript-eslint/project-service": "8.61.0",
4470
+ "@typescript-eslint/tsconfig-utils": "8.61.0",
4471
+ "@typescript-eslint/types": "8.61.0",
4472
+ "@typescript-eslint/visitor-keys": "8.61.0",
4474
4473
  "debug": "^4.4.3",
4475
4474
  "minimatch": "^10.2.2",
4476
4475
  "semver": "^7.7.3",
@@ -4525,8 +4524,8 @@
4525
4524
  }
4526
4525
  },
4527
4526
  "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
4528
- "version": "7.8.2",
4529
- "integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
4527
+ "version": "7.8.4",
4528
+ "integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
4530
4529
  "dev": true,
4531
4530
  "license": "ISC",
4532
4531
  "bin": {
@@ -4537,15 +4536,15 @@
4537
4536
  }
4538
4537
  },
4539
4538
  "node_modules/@typescript-eslint/utils": {
4540
- "version": "8.60.1",
4541
- "integrity": "sha512-h2MPBLoNtjc3qZWfY3Tl51yPorQ2McHn8pJfcMNTcIvrrZrr90Ykffit0yjrPFWQcRcUxzH20+6OcVdW4yHtUg==",
4539
+ "version": "8.61.0",
4540
+ "integrity": "sha512-3bzFt7ImFMW/jVYwJamDoe/dMOdFLSC6pom6rRjdh4SZJEYupyMzem8e7vKZLclLfpHjlwSAXOUxtKxGXUiLqA==",
4542
4541
  "dev": true,
4543
4542
  "license": "MIT",
4544
4543
  "dependencies": {
4545
4544
  "@eslint-community/eslint-utils": "^4.9.1",
4546
- "@typescript-eslint/scope-manager": "8.60.1",
4547
- "@typescript-eslint/types": "8.60.1",
4548
- "@typescript-eslint/typescript-estree": "8.60.1"
4545
+ "@typescript-eslint/scope-manager": "8.61.0",
4546
+ "@typescript-eslint/types": "8.61.0",
4547
+ "@typescript-eslint/typescript-estree": "8.61.0"
4549
4548
  },
4550
4549
  "engines": {
4551
4550
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -4560,12 +4559,12 @@
4560
4559
  }
4561
4560
  },
4562
4561
  "node_modules/@typescript-eslint/visitor-keys": {
4563
- "version": "8.60.1",
4564
- "integrity": "sha512-EbGRQg4FhrmwLodl+t3JNAnXHWVr9Vp+Zl1QBZVPY4ByfkzIT8cX3K6QWODHtkIZqqJVEWvhHSx3v5PDHsaQag==",
4562
+ "version": "8.61.0",
4563
+ "integrity": "sha512-QVLZu3ZPQEE+HICQyAMZ2yLQhxf0meY/wx6Hx14YcTNj13JB3qHlX3lJ02L3fLGHgERRH71kvYDwiXIguT3AjQ==",
4565
4564
  "dev": true,
4566
4565
  "license": "MIT",
4567
4566
  "dependencies": {
4568
- "@typescript-eslint/types": "8.60.1",
4567
+ "@typescript-eslint/types": "8.61.0",
4569
4568
  "eslint-visitor-keys": "^5.0.0"
4570
4569
  },
4571
4570
  "engines": {
@@ -5075,8 +5074,8 @@
5075
5074
  }
5076
5075
  },
5077
5076
  "node_modules/@wavemaker-ai/react-codegen": {
5078
- "version": "1.0.0-rc.647582",
5079
- "integrity": "sha512-fgTuXtSLH3u4dVHzWICNSZlbA3uozk+JATrBPtBOn5SqCOiL2gUolR9Jg4PHqUrXdSiJqukApUGaDs5MA3209w==",
5077
+ "version": "1.0.0-rc.647602",
5078
+ "integrity": "sha512-EVYCPKVUVyB5wmXDr5GYUURBeVs45lkKEXvrEUC5cOM6c7d7tIhqXC+YM/yE3l9+BKxakTVk6S15ouohXGUCpA==",
5080
5079
  "license": "ISC",
5081
5080
  "dependencies": {
5082
5081
  "@angular/compiler": "12.2.1",
@@ -5358,9 +5357,8 @@
5358
5357
  }
5359
5358
  },
5360
5359
  "node_modules/@wavemaker-ai/variables": {
5361
- "version": "1.0.0-rc.647582",
5362
- "integrity": "sha512-iOJaNj/1jrCpYiLXbSzaxKKMqdvXiIIcbsGYin2UblPYnJaBAQhLGEt4aLqzaJiLY9QQcz+CysI5vmPxgU1VkQ==",
5363
- "dev": true,
5360
+ "version": "1.0.0-rc.647602",
5361
+ "integrity": "sha512-Ma0Hz80H3MS82mdNqRa8xs367fVZNDDveY2EloEPumYOTqroGTORMfQj68k2J/OP8D+O2fVdMXTOAKP8r+Nj/w==",
5364
5362
  "license": "ISC",
5365
5363
  "dependencies": {
5366
5364
  "@metrichor/jmespath": "^0.3.1",
@@ -5381,7 +5379,6 @@
5381
5379
  "node_modules/@xmldom/xmldom": {
5382
5380
  "version": "0.8.13",
5383
5381
  "integrity": "sha512-KRYzxepc14G/CEpEGc3Yn+JKaAeT63smlDr+vjB8jRfgTBBI9wRj/nkQEO+ucV8p8I9bfKLWp37uHgFrbntPvw==",
5384
- "dev": true,
5385
5382
  "license": "MIT",
5386
5383
  "engines": {
5387
5384
  "node": ">=10.0.0"
@@ -5399,8 +5396,8 @@
5399
5396
  }
5400
5397
  },
5401
5398
  "node_modules/acorn": {
5402
- "version": "8.16.0",
5403
- "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==",
5399
+ "version": "8.17.0",
5400
+ "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==",
5404
5401
  "dev": true,
5405
5402
  "license": "MIT",
5406
5403
  "bin": {
@@ -5892,10 +5889,11 @@
5892
5889
  }
5893
5890
  },
5894
5891
  "node_modules/bare-stream": {
5895
- "version": "2.13.1",
5896
- "integrity": "sha512-Vp0cnjYyrEC4whYTymQ+YZi6pBpfiICZO3cfRG8sy67ZNWe951urv1x4eW1BKNngw3U+3fPYb5JQvHbCtxH7Ow==",
5892
+ "version": "2.13.3",
5893
+ "integrity": "sha512-Kc+brLqvEqGkjyfiwJmImAOqLZL7OsoLKuavx+hJjgVV3nLTOjloJyPMFxjUPerGGHrNH0fLU06jjykMLWrERQ==",
5897
5894
  "license": "Apache-2.0",
5898
5895
  "dependencies": {
5896
+ "b4a": "^1.8.1",
5899
5897
  "streamx": "^2.25.0",
5900
5898
  "teex": "^1.0.1"
5901
5899
  },
@@ -5944,8 +5942,8 @@
5944
5942
  "license": "MIT"
5945
5943
  },
5946
5944
  "node_modules/baseline-browser-mapping": {
5947
- "version": "2.10.34",
5948
- "integrity": "sha512-IMDedajPifLnHNY0X9n8hKxRTQ6/eTHwr5bDo04WnuqxyKw6LYtQywCuuqPZwhl3aBXMvQpJov42GLCwRRdQzw==",
5945
+ "version": "2.10.37",
5946
+ "integrity": "sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==",
5949
5947
  "license": "Apache-2.0",
5950
5948
  "bin": {
5951
5949
  "baseline-browser-mapping": "dist/cli.cjs"
@@ -6116,8 +6114,8 @@
6116
6114
  }
6117
6115
  },
6118
6116
  "node_modules/caniuse-lite": {
6119
- "version": "1.0.30001797",
6120
- "integrity": "sha512-l8xKG+gwAIExZGl9FrF7KUwuOmk6wbEPC9Xoy/RtnWv1XG0Q4LFlagaLpUv3Kiza3W/wm27zy0yWJEieYKAP6w==",
6117
+ "version": "1.0.30001799",
6118
+ "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
6121
6119
  "funding": [
6122
6120
  {
6123
6121
  "type": "opencollective",
@@ -7290,8 +7288,8 @@
7290
7288
  "license": "MIT"
7291
7289
  },
7292
7290
  "node_modules/electron-to-chromium": {
7293
- "version": "1.5.368",
7294
- "integrity": "sha512-7RckJJK4uESJF9PxvfMWd3TGqIiieUTG4HxnKaKuIpGbcr+r2ZEB3g2gAhCP3Fqm42vJSzLfgab9eva/C4/XVw==",
7291
+ "version": "1.5.372",
7292
+ "integrity": "sha512-M3yhbAlilnwqC8D21t28UCDGHyitShTmmLRU/H+b74P6Ski16Nb9HONYEaVpMj/pwC7BEo5B95FpjODLCWbtfA==",
7295
7293
  "dev": true,
7296
7294
  "license": "ISC"
7297
7295
  },
@@ -7424,8 +7422,8 @@
7424
7422
  }
7425
7423
  },
7426
7424
  "node_modules/es-iterator-helpers": {
7427
- "version": "1.3.2",
7428
- "integrity": "sha512-HVLACW1TppGYjJ8H6/jqH/pqOtKRw6wMlrB23xfExmFWxFquAIWCmwoLsOyN96K4a5KbmOf5At9ZUO3GZbetAw==",
7425
+ "version": "1.3.3",
7426
+ "integrity": "sha512-0PuBxFi+4uPanB97iDxCLWuHeYud2FALrw5HFZGtAF38UpJDbDC8frwp2cnDyae692CQ0dou60UwWfhgsa4U/g==",
7429
7427
  "dev": true,
7430
7428
  "license": "MIT",
7431
7429
  "dependencies": {
@@ -8312,15 +8310,15 @@
8312
8310
  }
8313
8311
  },
8314
8312
  "node_modules/form-data": {
8315
- "version": "4.0.5",
8316
- "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
8313
+ "version": "4.0.6",
8314
+ "integrity": "sha512-vKatAh4SlVfgbv+YtmhiRjhEMJsYpsG1Y2rMQtR+SVSbytsSD1YGzDIcrAJmdFec88u/+VoGmxnl+80gL1tRCQ==",
8317
8315
  "license": "MIT",
8318
8316
  "dependencies": {
8319
8317
  "asynckit": "^0.4.0",
8320
8318
  "combined-stream": "^1.0.8",
8321
8319
  "es-set-tostringtag": "^2.1.0",
8322
- "hasown": "^2.0.2",
8323
- "mime-types": "^2.1.12"
8320
+ "hasown": "^2.0.4",
8321
+ "mime-types": "^2.1.35"
8324
8322
  },
8325
8323
  "engines": {
8326
8324
  "node": ">= 6"
@@ -8368,17 +8366,20 @@
8368
8366
  }
8369
8367
  },
8370
8368
  "node_modules/function.prototype.name": {
8371
- "version": "1.1.8",
8372
- "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==",
8369
+ "version": "1.2.0",
8370
+ "integrity": "sha512-jObKIik1P2QjPHP5nz5BaOtUlfgS0fWo8IUByNXkM+o+02sJOi94em77GwJKQSJ3gfPHdgzLNrHc1uokV4P/ew==",
8373
8371
  "dev": true,
8374
8372
  "license": "MIT",
8375
8373
  "dependencies": {
8376
- "call-bind": "^1.0.8",
8377
- "call-bound": "^1.0.3",
8378
- "define-properties": "^1.2.1",
8374
+ "call-bind": "^1.0.9",
8375
+ "call-bound": "^1.0.4",
8376
+ "es-define-property": "^1.0.1",
8377
+ "es-errors": "^1.3.0",
8379
8378
  "functions-have-names": "^1.2.3",
8380
- "hasown": "^2.0.2",
8381
- "is-callable": "^1.2.7"
8379
+ "has-property-descriptors": "^1.0.2",
8380
+ "hasown": "^2.0.4",
8381
+ "is-callable": "^1.2.7",
8382
+ "is-document.all": "^1.0.0"
8382
8383
  },
8383
8384
  "engines": {
8384
8385
  "node": ">= 0.4"
@@ -8622,8 +8623,8 @@
8622
8623
  "license": "ISC"
8623
8624
  },
8624
8625
  "node_modules/graphql": {
8625
- "version": "16.14.1",
8626
- "integrity": "sha512-cQOsSMS/IrDz82PVyRDvf/Q1F/bRbBVjJlh+xYOkI1qw2bWRvWGiWc+m2O0d6l4Bt1fyY+8kzJ8JFWGJqNeDBg==",
8626
+ "version": "16.14.2",
8627
+ "integrity": "sha512-Chq1s4CY7jmh8gO2qvLIJyfCDIN+EHLFW/9iShnp1z8FjBQMoodWP1kDC36VAMXXIvAjj4ARa7ntfAV2BrjsbA==",
8627
8628
  "dev": true,
8628
8629
  "license": "MIT",
8629
8630
  "engines": {
@@ -9052,8 +9053,8 @@
9052
9053
  }
9053
9054
  },
9054
9055
  "node_modules/is-bun-module/node_modules/semver": {
9055
- "version": "7.8.2",
9056
- "integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
9056
+ "version": "7.8.4",
9057
+ "integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
9057
9058
  "dev": true,
9058
9059
  "license": "ISC",
9059
9060
  "bin": {
@@ -9122,6 +9123,21 @@
9122
9123
  "url": "https://github.com/sponsors/ljharb"
9123
9124
  }
9124
9125
  },
9126
+ "node_modules/is-document.all": {
9127
+ "version": "1.0.0",
9128
+ "integrity": "sha512-+XSoyS05OdBbhFuELhgTCpFNHkpBOJqtsZfUFFpe5QTw+9Sjbh8zitxhQkYAo6wV7e1Vb8cAPvpCk9jGam/82g==",
9129
+ "dev": true,
9130
+ "license": "MIT",
9131
+ "dependencies": {
9132
+ "call-bound": "^1.0.4"
9133
+ },
9134
+ "engines": {
9135
+ "node": ">= 0.4"
9136
+ },
9137
+ "funding": {
9138
+ "url": "https://github.com/sponsors/ljharb"
9139
+ }
9140
+ },
9125
9141
  "node_modules/is-extglob": {
9126
9142
  "version": "2.1.1",
9127
9143
  "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
@@ -9803,8 +9819,8 @@
9803
9819
  }
9804
9820
  },
9805
9821
  "node_modules/jodit": {
9806
- "version": "4.12.17",
9807
- "integrity": "sha512-kL4g4yE+/GmQHzTegU7A9cua+eozS8B29vv5rfHDlqkv7AzZ8A3EaY1mVAn/NnzixctlC6x6X9FW4OwkPyUG3g==",
9822
+ "version": "4.12.25",
9823
+ "integrity": "sha512-ayLkgMuWqzHSplPYnVzf8KuiDkYPbfEO9nfqOx0ReZHKKldcVZPzAuQ2nlAIWMU8zmMsuoToFruTkbZ8Ya8tPg==",
9808
9824
  "license": "MIT"
9809
9825
  },
9810
9826
  "node_modules/jodit-react": {
@@ -10404,8 +10420,8 @@
10404
10420
  }
10405
10421
  },
10406
10422
  "node_modules/make-dir/node_modules/semver": {
10407
- "version": "7.8.2",
10408
- "integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
10423
+ "version": "7.8.4",
10424
+ "integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
10409
10425
  "dev": true,
10410
10426
  "license": "ISC",
10411
10427
  "bin": {
@@ -12015,8 +12031,8 @@
12015
12031
  "license": "Unlicense"
12016
12032
  },
12017
12033
  "node_modules/rollup": {
12018
- "version": "4.61.1",
12019
- "integrity": "sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==",
12034
+ "version": "4.62.0",
12035
+ "integrity": "sha512-nc72Wgq62I7rtDV4izT5/aaS0zxy3kttkinf9586ApknY3jZO9NYsmtc24fUckA0X7Q2v+ML4a15pdUlV5V/jA==",
12020
12036
  "dev": true,
12021
12037
  "license": "MIT",
12022
12038
  "dependencies": {
@@ -12030,31 +12046,31 @@
12030
12046
  "npm": ">=8.0.0"
12031
12047
  },
12032
12048
  "optionalDependencies": {
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",
12049
+ "@rollup/rollup-android-arm-eabi": "4.62.0",
12050
+ "@rollup/rollup-android-arm64": "4.62.0",
12051
+ "@rollup/rollup-darwin-arm64": "4.62.0",
12052
+ "@rollup/rollup-darwin-x64": "4.62.0",
12053
+ "@rollup/rollup-freebsd-arm64": "4.62.0",
12054
+ "@rollup/rollup-freebsd-x64": "4.62.0",
12055
+ "@rollup/rollup-linux-arm-gnueabihf": "4.62.0",
12056
+ "@rollup/rollup-linux-arm-musleabihf": "4.62.0",
12057
+ "@rollup/rollup-linux-arm64-gnu": "4.62.0",
12058
+ "@rollup/rollup-linux-arm64-musl": "4.62.0",
12059
+ "@rollup/rollup-linux-loong64-gnu": "4.62.0",
12060
+ "@rollup/rollup-linux-loong64-musl": "4.62.0",
12061
+ "@rollup/rollup-linux-ppc64-gnu": "4.62.0",
12062
+ "@rollup/rollup-linux-ppc64-musl": "4.62.0",
12063
+ "@rollup/rollup-linux-riscv64-gnu": "4.62.0",
12064
+ "@rollup/rollup-linux-riscv64-musl": "4.62.0",
12065
+ "@rollup/rollup-linux-s390x-gnu": "4.62.0",
12066
+ "@rollup/rollup-linux-x64-gnu": "4.62.0",
12067
+ "@rollup/rollup-linux-x64-musl": "4.62.0",
12068
+ "@rollup/rollup-openbsd-x64": "4.62.0",
12069
+ "@rollup/rollup-openharmony-arm64": "4.62.0",
12070
+ "@rollup/rollup-win32-arm64-msvc": "4.62.0",
12071
+ "@rollup/rollup-win32-ia32-msvc": "4.62.0",
12072
+ "@rollup/rollup-win32-x64-gnu": "4.62.0",
12073
+ "@rollup/rollup-win32-x64-msvc": "4.62.0",
12058
12074
  "fsevents": "~2.3.2"
12059
12075
  }
12060
12076
  },
@@ -12292,8 +12308,8 @@
12292
12308
  }
12293
12309
  },
12294
12310
  "node_modules/sharp/node_modules/semver": {
12295
- "version": "7.8.2",
12296
- "integrity": "sha512-c8jsqUZm3omBOI66G90z1Dyw5z622G8oLG+omfsHBJf3CWQTlOcwOjvOG6wtiNfW6anKm/eA39LMwMtMez2TiQ==",
12311
+ "version": "7.8.4",
12312
+ "integrity": "sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==",
12297
12313
  "license": "ISC",
12298
12314
  "optional": true,
12299
12315
  "bin": {
@@ -12323,14 +12339,14 @@
12323
12339
  }
12324
12340
  },
12325
12341
  "node_modules/side-channel": {
12326
- "version": "1.1.0",
12327
- "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
12342
+ "version": "1.1.1",
12343
+ "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
12328
12344
  "dev": true,
12329
12345
  "license": "MIT",
12330
12346
  "dependencies": {
12331
12347
  "es-errors": "^1.3.0",
12332
- "object-inspect": "^1.13.3",
12333
- "side-channel-list": "^1.0.0",
12348
+ "object-inspect": "^1.13.4",
12349
+ "side-channel-list": "^1.0.1",
12334
12350
  "side-channel-map": "^1.0.1",
12335
12351
  "side-channel-weakmap": "^1.0.2"
12336
12352
  },
@@ -12537,8 +12553,8 @@
12537
12553
  }
12538
12554
  },
12539
12555
  "node_modules/streamx": {
12540
- "version": "2.27.0",
12541
- "integrity": "sha512-WZ189TKnHoAokYHvwzaAQMpd55cgUmFIcJFzBSgGcb886jau5DL+XdDhTWV4ps3FLvk+OORp0dLRTPsLZ21CSA==",
12556
+ "version": "2.28.0",
12557
+ "integrity": "sha512-1Yowhzjf0ivGMrTIkY9hav5TxobO9qIVqUE41fiCGMGgc3CLlf4MY+9AHmZqBWgDTue0fY9zWjYFVyf6Diuobw==",
12542
12558
  "license": "MIT",
12543
12559
  "dependencies": {
12544
12560
  "events-universal": "^1.0.0",
@@ -13924,7 +13940,6 @@
13924
13940
  "node_modules/x2js": {
13925
13941
  "version": "3.4.4",
13926
13942
  "integrity": "sha512-yG/ThaBCgnsa3aoMPAe7QwDpcyU4D70hjXC4Y1lZSfD/Tgd0MpE19FnZZRAjekryw0c8cffpOt9zsPEiqktO6Q==",
13927
- "dev": true,
13928
13943
  "license": "Apache-2.0",
13929
13944
  "dependencies": {
13930
13945
  "@xmldom/xmldom": "^0.8.3"