@wavemaker/angular-codegen 11.12.0-next.28188 → 11.12.0-rc.6240

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.12.0-next.28188",
3
+ "version": "11.12.0-rc.6240",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "start": "./node_modules/.bin/ng serve",
@@ -37,11 +37,11 @@
37
37
  "@fullcalendar/list": "6.1.15",
38
38
  "@fullcalendar/timegrid": "6.1.15",
39
39
  "@metrichor/jmespath": "0.3.1",
40
- "@wavemaker/custom-widgets-m3": "11.12.0-next.28188",
40
+ "@wavemaker/custom-widgets-m3": "11.12.0-rc.6240",
41
41
  "@wavemaker/focus-trap": "1.0.1",
42
- "@wavemaker/foundation-css": "11.12.0-next.28188",
42
+ "@wavemaker/foundation-css": "11.12.0-rc.6240",
43
43
  "@wavemaker/nvd3": "1.8.13",
44
- "@wavemaker/variables": "11.12.0-next.28188",
44
+ "@wavemaker/variables": "11.12.0-rc.6240",
45
45
  "@ztree/ztree_v3": "3.5.48",
46
46
  "angular-imask": "^7.6.1",
47
47
  "angular2-websocket": "0.9.7",
@@ -67,7 +67,7 @@
67
67
  "tslib": "2.4.1",
68
68
  "x2js": "3.4.4",
69
69
  "zone.js": "0.14.10",
70
- "@wavemaker/app-ng-runtime": "11.12.0-next.28188"
70
+ "@wavemaker/app-ng-runtime": "11.12.0-rc.6240"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -144030,6 +144030,9 @@ function requireDom$1 () {
144030
144030
  }
144031
144031
  do{
144032
144032
  newFirst.parentNode = parent;
144033
+ // Update ownerDocument for each node being inserted
144034
+ var targetDoc = parent.ownerDocument || parent;
144035
+ _updateOwnerDocument(newFirst, targetDoc);
144033
144036
  }while(newFirst !== newLast && (newFirst= newFirst.nextSibling))
144034
144037
  _onUpdateChild(parent.ownerDocument||parent, parent);
144035
144038
  //console.log(parent.lastChild.nextSibling == null)
@@ -144039,6 +144042,37 @@ function requireDom$1 () {
144039
144042
  return node;
144040
144043
  }
144041
144044
 
144045
+ /**
144046
+ * Recursively updates the ownerDocument property for a node and all its descendants
144047
+ * @param {Node} node
144048
+ * @param {Document} newOwnerDocument
144049
+ * @private
144050
+ */
144051
+ function _updateOwnerDocument(node, newOwnerDocument) {
144052
+ if (node.ownerDocument === newOwnerDocument) {
144053
+ return;
144054
+ }
144055
+
144056
+ node.ownerDocument = newOwnerDocument;
144057
+
144058
+ // Update attributes if this is an element
144059
+ if (node.nodeType === ELEMENT_NODE && node.attributes) {
144060
+ for (var i = 0; i < node.attributes.length; i++) {
144061
+ var attr = node.attributes.item(i);
144062
+ if (attr) {
144063
+ attr.ownerDocument = newOwnerDocument;
144064
+ }
144065
+ }
144066
+ }
144067
+
144068
+ // Recursively update child nodes
144069
+ var child = node.firstChild;
144070
+ while (child) {
144071
+ _updateOwnerDocument(child, newOwnerDocument);
144072
+ child = child.nextSibling;
144073
+ }
144074
+ }
144075
+
144042
144076
  /**
144043
144077
  * Appends `newChild` to `parentNode`.
144044
144078
  * If `newChild` is already connected to a `parentNode` it is first removed from it.
@@ -144064,6 +144098,11 @@ function requireDom$1 () {
144064
144098
  }
144065
144099
  parentNode.lastChild = newChild;
144066
144100
  _onUpdateChild(parentNode.ownerDocument, parentNode, newChild);
144101
+
144102
+ // Update ownerDocument for the new child and all its descendants
144103
+ var targetDoc = parentNode.ownerDocument || parentNode;
144104
+ _updateOwnerDocument(newChild, targetDoc);
144105
+
144067
144106
  return newChild;
144068
144107
  }
144069
144108
 
@@ -144092,7 +144131,7 @@ function requireDom$1 () {
144092
144131
  return newChild;
144093
144132
  }
144094
144133
  _insertBefore(this, newChild, refChild);
144095
- newChild.ownerDocument = this;
144134
+ _updateOwnerDocument(newChild, this);
144096
144135
  if (this.documentElement === null && newChild.nodeType === ELEMENT_NODE) {
144097
144136
  this.documentElement = newChild;
144098
144137
  }
@@ -144108,7 +144147,7 @@ function requireDom$1 () {
144108
144147
  replaceChild: function (newChild, oldChild) {
144109
144148
  //raises
144110
144149
  _insertBefore(this, newChild, oldChild, assertPreReplacementValidityInDocument);
144111
- newChild.ownerDocument = this;
144150
+ _updateOwnerDocument(newChild, this);
144112
144151
  if (oldChild) {
144113
144152
  this.removeChild(oldChild);
144114
144153
  }
@@ -212328,6 +212367,9 @@ function requireDom () {
212328
212367
  }
212329
212368
  do{
212330
212369
  newFirst.parentNode = parent;
212370
+ // Update ownerDocument for each node being inserted
212371
+ var targetDoc = parent.ownerDocument || parent;
212372
+ _updateOwnerDocument(newFirst, targetDoc);
212331
212373
  }while(newFirst !== newLast && (newFirst= newFirst.nextSibling))
212332
212374
  _onUpdateChild(parent.ownerDocument||parent, parent);
212333
212375
  //console.log(parent.lastChild.nextSibling == null)
@@ -212337,6 +212379,37 @@ function requireDom () {
212337
212379
  return node;
212338
212380
  }
212339
212381
 
212382
+ /**
212383
+ * Recursively updates the ownerDocument property for a node and all its descendants
212384
+ * @param {Node} node
212385
+ * @param {Document} newOwnerDocument
212386
+ * @private
212387
+ */
212388
+ function _updateOwnerDocument(node, newOwnerDocument) {
212389
+ if (node.ownerDocument === newOwnerDocument) {
212390
+ return;
212391
+ }
212392
+
212393
+ node.ownerDocument = newOwnerDocument;
212394
+
212395
+ // Update attributes if this is an element
212396
+ if (node.nodeType === ELEMENT_NODE && node.attributes) {
212397
+ for (var i = 0; i < node.attributes.length; i++) {
212398
+ var attr = node.attributes.item(i);
212399
+ if (attr) {
212400
+ attr.ownerDocument = newOwnerDocument;
212401
+ }
212402
+ }
212403
+ }
212404
+
212405
+ // Recursively update child nodes
212406
+ var child = node.firstChild;
212407
+ while (child) {
212408
+ _updateOwnerDocument(child, newOwnerDocument);
212409
+ child = child.nextSibling;
212410
+ }
212411
+ }
212412
+
212340
212413
  /**
212341
212414
  * Appends `newChild` to `parentNode`.
212342
212415
  * If `newChild` is already connected to a `parentNode` it is first removed from it.
@@ -212362,6 +212435,11 @@ function requireDom () {
212362
212435
  }
212363
212436
  parentNode.lastChild = newChild;
212364
212437
  _onUpdateChild(parentNode.ownerDocument, parentNode, newChild);
212438
+
212439
+ // Update ownerDocument for the new child and all its descendants
212440
+ var targetDoc = parentNode.ownerDocument || parentNode;
212441
+ _updateOwnerDocument(newChild, targetDoc);
212442
+
212365
212443
  return newChild;
212366
212444
  }
212367
212445
 
@@ -212390,7 +212468,7 @@ function requireDom () {
212390
212468
  return newChild;
212391
212469
  }
212392
212470
  _insertBefore(this, newChild, refChild);
212393
- newChild.ownerDocument = this;
212471
+ _updateOwnerDocument(newChild, this);
212394
212472
  if (this.documentElement === null && newChild.nodeType === ELEMENT_NODE) {
212395
212473
  this.documentElement = newChild;
212396
212474
  }
@@ -212406,7 +212484,7 @@ function requireDom () {
212406
212484
  replaceChild: function (newChild, oldChild) {
212407
212485
  //raises
212408
212486
  _insertBefore(this, newChild, oldChild, assertPreReplacementValidityInDocument);
212409
- newChild.ownerDocument = this;
212487
+ _updateOwnerDocument(newChild, this);
212410
212488
  if (oldChild) {
212411
212489
  this.removeChild(oldChild);
212412
212490
  }
@@ -49710,6 +49710,9 @@ function requireDom () {
49710
49710
  }
49711
49711
  do{
49712
49712
  newFirst.parentNode = parent;
49713
+ // Update ownerDocument for each node being inserted
49714
+ var targetDoc = parent.ownerDocument || parent;
49715
+ _updateOwnerDocument(newFirst, targetDoc);
49713
49716
  }while(newFirst !== newLast && (newFirst= newFirst.nextSibling))
49714
49717
  _onUpdateChild(parent.ownerDocument||parent, parent);
49715
49718
  //console.log(parent.lastChild.nextSibling == null)
@@ -49719,6 +49722,37 @@ function requireDom () {
49719
49722
  return node;
49720
49723
  }
49721
49724
 
49725
+ /**
49726
+ * Recursively updates the ownerDocument property for a node and all its descendants
49727
+ * @param {Node} node
49728
+ * @param {Document} newOwnerDocument
49729
+ * @private
49730
+ */
49731
+ function _updateOwnerDocument(node, newOwnerDocument) {
49732
+ if (node.ownerDocument === newOwnerDocument) {
49733
+ return;
49734
+ }
49735
+
49736
+ node.ownerDocument = newOwnerDocument;
49737
+
49738
+ // Update attributes if this is an element
49739
+ if (node.nodeType === ELEMENT_NODE && node.attributes) {
49740
+ for (var i = 0; i < node.attributes.length; i++) {
49741
+ var attr = node.attributes.item(i);
49742
+ if (attr) {
49743
+ attr.ownerDocument = newOwnerDocument;
49744
+ }
49745
+ }
49746
+ }
49747
+
49748
+ // Recursively update child nodes
49749
+ var child = node.firstChild;
49750
+ while (child) {
49751
+ _updateOwnerDocument(child, newOwnerDocument);
49752
+ child = child.nextSibling;
49753
+ }
49754
+ }
49755
+
49722
49756
  /**
49723
49757
  * Appends `newChild` to `parentNode`.
49724
49758
  * If `newChild` is already connected to a `parentNode` it is first removed from it.
@@ -49744,6 +49778,11 @@ function requireDom () {
49744
49778
  }
49745
49779
  parentNode.lastChild = newChild;
49746
49780
  _onUpdateChild(parentNode.ownerDocument, parentNode, newChild);
49781
+
49782
+ // Update ownerDocument for the new child and all its descendants
49783
+ var targetDoc = parentNode.ownerDocument || parentNode;
49784
+ _updateOwnerDocument(newChild, targetDoc);
49785
+
49747
49786
  return newChild;
49748
49787
  }
49749
49788
 
@@ -49772,7 +49811,7 @@ function requireDom () {
49772
49811
  return newChild;
49773
49812
  }
49774
49813
  _insertBefore(this, newChild, refChild);
49775
- newChild.ownerDocument = this;
49814
+ _updateOwnerDocument(newChild, this);
49776
49815
  if (this.documentElement === null && newChild.nodeType === ELEMENT_NODE) {
49777
49816
  this.documentElement = newChild;
49778
49817
  }
@@ -49788,7 +49827,7 @@ function requireDom () {
49788
49827
  replaceChild: function (newChild, oldChild) {
49789
49828
  //raises
49790
49829
  _insertBefore(this, newChild, oldChild, assertPreReplacementValidityInDocument);
49791
- newChild.ownerDocument = this;
49830
+ _updateOwnerDocument(newChild, this);
49792
49831
  if (oldChild) {
49793
49832
  this.removeChild(oldChild);
49794
49833
  }
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.12.0-next.28188",
3
+ "version": "11.12.0-rc.6240",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-codegen",
9
- "version": "11.12.0-next.28188",
9
+ "version": "11.12.0-rc.6240",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "@wavemaker/angular-app": "11.12.0-next.28188",
12
+ "@wavemaker/angular-app": "11.12.0-rc.6240",
13
13
  "archiver": "^7.0.1",
14
14
  "cheerio": "1.0.0-rc.12",
15
15
  "decode-uri-component": "^0.2.0",
@@ -225,21 +225,21 @@
225
225
  }
226
226
  },
227
227
  "node_modules/@babel/core": {
228
- "version": "7.28.0",
229
- "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==",
228
+ "version": "7.28.3",
229
+ "integrity": "sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==",
230
230
  "dev": true,
231
231
  "license": "MIT",
232
232
  "dependencies": {
233
233
  "@ampproject/remapping": "^2.2.0",
234
234
  "@babel/code-frame": "^7.27.1",
235
- "@babel/generator": "^7.28.0",
235
+ "@babel/generator": "^7.28.3",
236
236
  "@babel/helper-compilation-targets": "^7.27.2",
237
- "@babel/helper-module-transforms": "^7.27.3",
238
- "@babel/helpers": "^7.27.6",
239
- "@babel/parser": "^7.28.0",
237
+ "@babel/helper-module-transforms": "^7.28.3",
238
+ "@babel/helpers": "^7.28.3",
239
+ "@babel/parser": "^7.28.3",
240
240
  "@babel/template": "^7.27.2",
241
- "@babel/traverse": "^7.28.0",
242
- "@babel/types": "^7.28.0",
241
+ "@babel/traverse": "^7.28.3",
242
+ "@babel/types": "^7.28.2",
243
243
  "convert-source-map": "^2.0.0",
244
244
  "debug": "^4.1.0",
245
245
  "gensync": "^1.0.0-beta.2",
@@ -284,13 +284,13 @@
284
284
  "license": "MIT"
285
285
  },
286
286
  "node_modules/@babel/generator": {
287
- "version": "7.28.0",
288
- "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==",
287
+ "version": "7.28.3",
288
+ "integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==",
289
289
  "dev": true,
290
290
  "license": "MIT",
291
291
  "dependencies": {
292
- "@babel/parser": "^7.28.0",
293
- "@babel/types": "^7.28.0",
292
+ "@babel/parser": "^7.28.3",
293
+ "@babel/types": "^7.28.2",
294
294
  "@jridgewell/gen-mapping": "^0.3.12",
295
295
  "@jridgewell/trace-mapping": "^0.3.28",
296
296
  "jsesc": "^3.0.2"
@@ -338,14 +338,14 @@
338
338
  }
339
339
  },
340
340
  "node_modules/@babel/helper-module-transforms": {
341
- "version": "7.27.3",
342
- "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==",
341
+ "version": "7.28.3",
342
+ "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
343
343
  "dev": true,
344
344
  "license": "MIT",
345
345
  "dependencies": {
346
346
  "@babel/helper-module-imports": "^7.27.1",
347
347
  "@babel/helper-validator-identifier": "^7.27.1",
348
- "@babel/traverse": "^7.27.3"
348
+ "@babel/traverse": "^7.28.3"
349
349
  },
350
350
  "engines": {
351
351
  "node": ">=6.9.0"
@@ -391,8 +391,8 @@
391
391
  }
392
392
  },
393
393
  "node_modules/@babel/helpers": {
394
- "version": "7.28.2",
395
- "integrity": "sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==",
394
+ "version": "7.28.3",
395
+ "integrity": "sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==",
396
396
  "dev": true,
397
397
  "license": "MIT",
398
398
  "dependencies": {
@@ -404,12 +404,12 @@
404
404
  }
405
405
  },
406
406
  "node_modules/@babel/parser": {
407
- "version": "7.28.0",
408
- "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==",
407
+ "version": "7.28.3",
408
+ "integrity": "sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==",
409
409
  "dev": true,
410
410
  "license": "MIT",
411
411
  "dependencies": {
412
- "@babel/types": "^7.28.0"
412
+ "@babel/types": "^7.28.2"
413
413
  },
414
414
  "bin": {
415
415
  "parser": "bin/babel-parser.js"
@@ -637,8 +637,8 @@
637
637
  }
638
638
  },
639
639
  "node_modules/@babel/runtime-corejs3": {
640
- "version": "7.28.2",
641
- "integrity": "sha512-FVFaVs2/dZgD3Y9ZD+AKNKjyGKzwu0C54laAXWUXgLcVXcCX6YZ6GhK2cp7FogSN2OA0Fu+QT8dP3FUdo9ShSQ==",
640
+ "version": "7.28.3",
641
+ "integrity": "sha512-LKYxD2CIfocUFNREQ1yk+dW+8OH8CRqmgatBZYXb+XhuObO8wsDpEoCNri5bKld9cnj8xukqZjxSX8p1YiRF8Q==",
642
642
  "license": "MIT",
643
643
  "dependencies": {
644
644
  "core-js-pure": "^3.43.0"
@@ -662,17 +662,17 @@
662
662
  }
663
663
  },
664
664
  "node_modules/@babel/traverse": {
665
- "version": "7.28.0",
666
- "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==",
665
+ "version": "7.28.3",
666
+ "integrity": "sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==",
667
667
  "dev": true,
668
668
  "license": "MIT",
669
669
  "dependencies": {
670
670
  "@babel/code-frame": "^7.27.1",
671
- "@babel/generator": "^7.28.0",
671
+ "@babel/generator": "^7.28.3",
672
672
  "@babel/helper-globals": "^7.28.0",
673
- "@babel/parser": "^7.28.0",
673
+ "@babel/parser": "^7.28.3",
674
674
  "@babel/template": "^7.27.2",
675
- "@babel/types": "^7.28.0",
675
+ "@babel/types": "^7.28.2",
676
676
  "debug": "^4.3.1"
677
677
  },
678
678
  "engines": {
@@ -1171,8 +1171,8 @@
1171
1171
  }
1172
1172
  },
1173
1173
  "node_modules/@jridgewell/gen-mapping": {
1174
- "version": "0.3.12",
1175
- "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==",
1174
+ "version": "0.3.13",
1175
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
1176
1176
  "dev": true,
1177
1177
  "license": "MIT",
1178
1178
  "dependencies": {
@@ -1190,14 +1190,14 @@
1190
1190
  }
1191
1191
  },
1192
1192
  "node_modules/@jridgewell/sourcemap-codec": {
1193
- "version": "1.5.4",
1194
- "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==",
1193
+ "version": "1.5.5",
1194
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
1195
1195
  "dev": true,
1196
1196
  "license": "MIT"
1197
1197
  },
1198
1198
  "node_modules/@jridgewell/trace-mapping": {
1199
- "version": "0.3.29",
1200
- "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==",
1199
+ "version": "0.3.30",
1200
+ "integrity": "sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==",
1201
1201
  "dev": true,
1202
1202
  "license": "MIT",
1203
1203
  "dependencies": {
@@ -1367,8 +1367,8 @@
1367
1367
  }
1368
1368
  },
1369
1369
  "node_modules/@types/node": {
1370
- "version": "24.2.1",
1371
- "integrity": "sha512-DRh5K+ka5eJic8CjH7td8QpYEV6Zo10gfRkjHCO3weqZHWDtAaSTFtl4+VMqOJ4N5jcuhZ9/l+yy8rVgw7BQeQ==",
1370
+ "version": "24.3.0",
1371
+ "integrity": "sha512-aPTXCrfwnDLj4VvXrm+UUCQjNEvJgNA8s5F1cvwQU+3KNltTOkBm1j30uNLyqqPNe7gE3KFzImYoZEfLhp4Yow==",
1372
1372
  "license": "MIT",
1373
1373
  "dependencies": {
1374
1374
  "undici-types": "~7.10.0"
@@ -1401,8 +1401,8 @@
1401
1401
  "license": "MIT"
1402
1402
  },
1403
1403
  "node_modules/@wavemaker/angular-app": {
1404
- "version": "11.12.0-next.28188",
1405
- "integrity": "sha512-YwWhKKs12rcPrpbHgFOuJyMYCBkHoIJpt5iFJ3BUhbF3USyKIeN3+ew6omuEaVhZrYY15OuJaesf0qJEhRY6Tw==",
1404
+ "version": "11.12.0-rc.6240",
1405
+ "integrity": "sha512-NoQ8SZWDWs0GLzTWZvM9/D7B4EA1woKMb0s6IqIZ6KDP428X0wnm2cuVUK59XBYpO56G1rhLsSTqTGPGmNHDzw==",
1406
1406
  "dependencies": {
1407
1407
  "@angular/animations": "18.2.13",
1408
1408
  "@angular/common": "18.2.13",
@@ -1420,12 +1420,12 @@
1420
1420
  "@fullcalendar/list": "6.1.15",
1421
1421
  "@fullcalendar/timegrid": "6.1.15",
1422
1422
  "@metrichor/jmespath": "0.3.1",
1423
- "@wavemaker/app-ng-runtime": "11.12.0-next.28188",
1424
- "@wavemaker/custom-widgets-m3": "11.12.0-next.28188",
1423
+ "@wavemaker/app-ng-runtime": "11.12.0-rc.6240",
1424
+ "@wavemaker/custom-widgets-m3": "11.12.0-rc.6240",
1425
1425
  "@wavemaker/focus-trap": "1.0.1",
1426
- "@wavemaker/foundation-css": "11.12.0-next.28188",
1426
+ "@wavemaker/foundation-css": "11.12.0-rc.6240",
1427
1427
  "@wavemaker/nvd3": "1.8.13",
1428
- "@wavemaker/variables": "11.12.0-next.28188",
1428
+ "@wavemaker/variables": "11.12.0-rc.6240",
1429
1429
  "@ztree/ztree_v3": "3.5.48",
1430
1430
  "angular-imask": "^7.6.1",
1431
1431
  "angular2-websocket": "0.9.7",
@@ -1464,8 +1464,8 @@
1464
1464
  }
1465
1465
  },
1466
1466
  "node_modules/@wavemaker/app-ng-runtime": {
1467
- "version": "11.12.0-next.28188",
1468
- "integrity": "sha512-kFudgAoGCFDHGtjrgKcxE6pd4BbFMoAtsXm6hQX7TdlEV2oO/POjmYBuT/m6lA8wpSOS35x2fDUK8k83NHCeIg==",
1467
+ "version": "11.12.0-rc.6240",
1468
+ "integrity": "sha512-C2EH23FSli8GRK/9dHut1HL5F+Duh9ocm/SwNdo3whF1D/1lFRM9Zsh/Ks1mpmtmP+RZXR1md685GZwbCwax5g==",
1469
1469
  "license": "MIT",
1470
1470
  "engines": {
1471
1471
  "node": ">=18.16.1",
@@ -1473,8 +1473,8 @@
1473
1473
  }
1474
1474
  },
1475
1475
  "node_modules/@wavemaker/custom-widgets-m3": {
1476
- "version": "11.12.0-next.28188",
1477
- "integrity": "sha512-EAOpq/nqBzGBdf+nJgwQdGqyy7kJ7rvgC/ARcaC3n1f1OJGMzFQuTQxbt+mZs2Kr1eMxLAs3VEji0XlWaHmFKg==",
1476
+ "version": "11.12.0-rc.6240",
1477
+ "integrity": "sha512-N++Xtp1L9GGtHEE1PP4Bo/WOEHGi/5w+rH7Xh8HvOBmRK99EQPu7ufejNKYzrBtydvboA4xiRG9XMmK+utLekQ==",
1478
1478
  "license": "ISC"
1479
1479
  },
1480
1480
  "node_modules/@wavemaker/focus-trap": {
@@ -1487,8 +1487,8 @@
1487
1487
  }
1488
1488
  },
1489
1489
  "node_modules/@wavemaker/foundation-css": {
1490
- "version": "11.12.0-next.28188",
1491
- "integrity": "sha512-4cTG+1RwDDTDZVwFA31O6dO4mbR6TiC/Exf1eY7X3i8EYUEHIhrwUtB4CpC+1jli1XWisx5WCcE0uPjx1eeI7A==",
1490
+ "version": "11.12.0-rc.6240",
1491
+ "integrity": "sha512-peG7rjNpEVhguoLD/cwH3+NQ9D6kGjZLQxLHnH7UcA0Ns4mR2BTPDHG0aXd80H+2FaTP6Arc5x14IoHmEeoTWQ==",
1492
1492
  "license": "ISC",
1493
1493
  "dependencies": {
1494
1494
  "chroma-js": "^3.1.2"
@@ -1503,8 +1503,8 @@
1503
1503
  }
1504
1504
  },
1505
1505
  "node_modules/@wavemaker/variables": {
1506
- "version": "11.12.0-next.28188",
1507
- "integrity": "sha512-DzTN9re6QE9QHoSjD3kibw4h2kFy4qKccXcAAcfKxg/3a+ipuzJCUXO/FnuyVr8iim7xw/am9WiXZsInRceaPA==",
1506
+ "version": "11.12.0-rc.6240",
1507
+ "integrity": "sha512-jG4h91onM+4hNpCogcEMa9EUhya7lU2ISAeECUZC2TOo0zN8OlUhMfYOkttK6hUKydr0L36h1UEkQ7AMV/LnGw==",
1508
1508
  "license": "ISC",
1509
1509
  "dependencies": {
1510
1510
  "@metrichor/jmespath": "^0.3.1",
@@ -1515,8 +1515,8 @@
1515
1515
  }
1516
1516
  },
1517
1517
  "node_modules/@xmldom/xmldom": {
1518
- "version": "0.8.10",
1519
- "integrity": "sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==",
1518
+ "version": "0.8.11",
1519
+ "integrity": "sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==",
1520
1520
  "license": "MIT",
1521
1521
  "engines": {
1522
1522
  "node": ">=10.0.0"
@@ -2036,8 +2036,8 @@
2036
2036
  "license": "BSD-2-Clause"
2037
2037
  },
2038
2038
  "node_modules/browserslist": {
2039
- "version": "4.25.2",
2040
- "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==",
2039
+ "version": "4.25.3",
2040
+ "integrity": "sha512-cDGv1kkDI4/0e5yON9yM5G/0A5u8sf5TnmdX5C9qHzI9PPu++sQ9zjm1k9NiOrf3riY4OkK0zSGqfvJyJsgCBQ==",
2041
2041
  "dev": true,
2042
2042
  "funding": [
2043
2043
  {
@@ -2055,8 +2055,8 @@
2055
2055
  ],
2056
2056
  "license": "MIT",
2057
2057
  "dependencies": {
2058
- "caniuse-lite": "^1.0.30001733",
2059
- "electron-to-chromium": "^1.5.199",
2058
+ "caniuse-lite": "^1.0.30001735",
2059
+ "electron-to-chromium": "^1.5.204",
2060
2060
  "node-releases": "^2.0.19",
2061
2061
  "update-browserslist-db": "^1.1.3"
2062
2062
  },
@@ -2212,8 +2212,8 @@
2212
2212
  }
2213
2213
  },
2214
2214
  "node_modules/caniuse-lite": {
2215
- "version": "1.0.30001734",
2216
- "integrity": "sha512-uhE1Ye5vgqju6OI71HTQqcBCZrvHugk0MjLak7Q+HfoBgoq5Bi+5YnwjP4fjDgrtYr/l8MVRBvzz9dPD4KyK0A==",
2215
+ "version": "1.0.30001737",
2216
+ "integrity": "sha512-BiloLiXtQNrY5UyF0+1nSJLXUENuhka2pzy2Fx5pGxqavdrxSCW4U6Pn/PoG3Efspi2frRbHpBV2XsrPE6EDlw==",
2217
2217
  "dev": true,
2218
2218
  "funding": [
2219
2219
  {
@@ -2563,8 +2563,8 @@
2563
2563
  }
2564
2564
  },
2565
2565
  "node_modules/core-js-pure": {
2566
- "version": "3.45.0",
2567
- "integrity": "sha512-OtwjqcDpY2X/eIIg1ol/n0y/X8A9foliaNt1dSK0gV3J2/zw+89FcNG3mPK+N8YWts4ZFUPxnrAzsxs/lf8yDA==",
2566
+ "version": "3.45.1",
2567
+ "integrity": "sha512-OHnWFKgTUshEU8MK+lOs1H8kC8GkTi9Z1tvNkxrCcw9wl3MJIO7q2ld77wjWn4/xuGrVu2X+nME1iIIPBSdyEQ==",
2568
2568
  "hasInstallScript": true,
2569
2569
  "license": "MIT",
2570
2570
  "funding": {
@@ -3307,8 +3307,8 @@
3307
3307
  "license": "MIT"
3308
3308
  },
3309
3309
  "node_modules/electron-to-chromium": {
3310
- "version": "1.5.200",
3311
- "integrity": "sha512-rFCxROw7aOe4uPTfIAx+rXv9cEcGx+buAF4npnhtTqCJk5KDFRnh3+KYj7rdVh6lsFt5/aPs+Irj9rZ33WMA7w==",
3310
+ "version": "1.5.211",
3311
+ "integrity": "sha512-IGBvimJkotaLzFnwIVgW9/UD/AOJ2tByUmeOrtqBfACSbAw5b1G0XpvdaieKyc7ULmbwXVx+4e4Be8pOPBrYkw==",
3312
3312
  "dev": true,
3313
3313
  "license": "ISC"
3314
3314
  },
@@ -4413,8 +4413,8 @@
4413
4413
  "license": "MIT"
4414
4414
  },
4415
4415
  "node_modules/istanbul-reports": {
4416
- "version": "3.1.7",
4417
- "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==",
4416
+ "version": "3.2.0",
4417
+ "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==",
4418
4418
  "dev": true,
4419
4419
  "license": "BSD-3-Clause",
4420
4420
  "dependencies": {
@@ -7060,8 +7060,8 @@
7060
7060
  }
7061
7061
  },
7062
7062
  "node_modules/strip-ansi/node_modules/ansi-regex": {
7063
- "version": "6.1.0",
7064
- "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
7063
+ "version": "6.2.0",
7064
+ "integrity": "sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==",
7065
7065
  "license": "MIT",
7066
7066
  "engines": {
7067
7067
  "node": ">=12"