@wavemaker/angular-app 11.14.1-18.6421 → 11.14.1-18.6427

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.
@@ -147851,13 +147851,13 @@ const FIRST_TIME_WATCH$1 = {};
147851
147851
  Object.freeze(FIRST_TIME_WATCH$1);
147852
147852
  const arrayConsumer$1 = (listenerFn, restExpr, newVal, oldVal) => {
147853
147853
  let data = newVal, formattedData;
147854
- if (_.isArray(data)) {
147854
+ if (isArray$1(data)) {
147855
147855
  formattedData = data.map(function (datum) {
147856
147856
  return findValueOf$1(datum, restExpr);
147857
147857
  });
147858
147858
  // If resulting structure is an array of array, flatten it
147859
- if (_.isArray(formattedData[0])) {
147860
- formattedData = _.flatten(formattedData);
147859
+ if (isArray$1(formattedData[0])) {
147860
+ formattedData = flatten$2(formattedData);
147861
147861
  }
147862
147862
  listenerFn(formattedData, oldVal);
147863
147863
  }
@@ -147902,19 +147902,6 @@ const $watch$1 = (expr, $scope, $locals, listener, identifier = watchIdGenerator
147902
147902
  };
147903
147903
  const $unwatch$1 = identifier => registry$1.delete(identifier);
147904
147904
  window.watchRegistry = registry$1;
147905
- window.__WM_DEBUG_WATCHERS__ = false;
147906
- /*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
147907
- if (force) {
147908
- triggerWatchers(ignoreMuted);
147909
- } else {
147910
-
147911
- if (skipWatchers) {
147912
- skipWatchers = false;
147913
- return;
147914
- }
147915
- debouncedTriggerWatchers();
147916
- }
147917
- };*/
147918
147905
  const $appDigest$1 = (() => {
147919
147906
  return (force) => {
147920
147907
  {
@@ -147977,8 +147964,8 @@ var Operation$1;
147977
147964
  const DataSource$1 = {
147978
147965
  Operation: Operation$1
147979
147966
  };
147980
- let App$1 = class App {
147981
- };
147967
+ class App {
147968
+ }
147982
147969
  let AbstractI18nService$1 = class AbstractI18nService {
147983
147970
  };
147984
147971
 
@@ -147996,7 +147983,6 @@ const REGEX$1 = {
147996
147983
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
147997
147984
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
147998
147985
  VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
147999
- VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
148000
147986
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
148001
147987
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
148002
147988
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -148219,9 +148205,6 @@ const isVideoFile$1 = (fileName) => {
148219
148205
  const isValidWebURL$1 = (url) => {
148220
148206
  return (REGEX$1.VALID_WEB_URL).test(url);
148221
148207
  };
148222
- const isValidImageUrl$1 = (url) => {
148223
- return (REGEX$1.VALID_IMAGE_URL).test(url?.trim());
148224
- };
148225
148208
  /*This function returns the url to the resource after checking the validity of url*/
148226
148209
  const getResourceURL$1 = (urlString) => {
148227
148210
  return urlString;
@@ -149475,7 +149458,6 @@ var Utils$1 = /*#__PURE__*/Object.freeze({
149475
149458
  isPageable: isPageable$1,
149476
149459
  isSafari: isSafari$1,
149477
149460
  isTablet: isTablet$1,
149478
- isValidImageUrl: isValidImageUrl$1,
149479
149461
  isValidWebURL: isValidWebURL$1,
149480
149462
  isVideoFile: isVideoFile$1,
149481
149463
  loadScript: loadScript$1,
@@ -150710,14 +150692,14 @@ class ToDatePipe extends WmPipe {
150710
150692
  }
150711
150693
  return this.returnFn('', arguments, this.app.Variables);
150712
150694
  }
150713
- constructor(datePipe, i18nService, app, customPipeManager) {
150695
+ constructor(datePipe, i18nService, customPipeManager) {
150714
150696
  super('toDate', customPipeManager);
150715
150697
  this.datePipe = datePipe;
150716
150698
  this.i18nService = i18nService;
150717
- this.app = app;
150718
150699
  this.customPipeManager = customPipeManager;
150700
+ this.app = inject(App);
150719
150701
  }
150720
- static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(App$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
150702
+ static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
150721
150703
  static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "toDate", type: ToDatePipe, pure: true, standalone: true }); }
150722
150704
  }
150723
150705
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ToDatePipe, [{
@@ -150726,7 +150708,7 @@ class ToDatePipe extends WmPipe {
150726
150708
  standalone: true,
150727
150709
  name: 'toDate'
150728
150710
  }]
150729
- }], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: App$1 }, { type: CustomPipeManager$1 }], null); })();
150711
+ }], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: CustomPipeManager$1 }], null); })();
150730
150712
  class ToNumberPipe {
150731
150713
  transform(data, fracSize) {
150732
150714
  if (fracSize && !String(fracSize).match(/^(\d+)?\.((\d+)(-(\d+))?)?$/)) {
@@ -150814,9 +150796,9 @@ class SuffixPipe {
150814
150796
  * Custom pipe: It is work as interceptor between the user custom pipe function and angular pipe
150815
150797
  */
150816
150798
  class CustomPipe {
150817
- constructor(app, custmeUserPipe) {
150818
- this.app = app;
150799
+ constructor(custmeUserPipe) {
150819
150800
  this.custmeUserPipe = custmeUserPipe;
150801
+ this.app = inject(App);
150820
150802
  }
150821
150803
  transform(data, pipename) {
150822
150804
  let argumentArr = [];
@@ -150836,7 +150818,7 @@ class CustomPipe {
150836
150818
  return data;
150837
150819
  }
150838
150820
  }
150839
- static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(App$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
150821
+ static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
150840
150822
  static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "custom", type: CustomPipe, pure: true, standalone: true }); }
150841
150823
  }
150842
150824
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomPipe, [{
@@ -150845,7 +150827,7 @@ class CustomPipe {
150845
150827
  standalone: true,
150846
150828
  name: 'custom'
150847
150829
  }]
150848
- }], () => [{ type: App$1 }, { type: CustomPipeManager$1 }], null); })();
150830
+ }], () => [{ type: CustomPipeManager$1 }], null); })();
150849
150831
  class TimeFromNowPipe {
150850
150832
  transform(data) {
150851
150833
  let timestamp;
@@ -203479,13 +203461,13 @@ const FIRST_TIME_WATCH = {};
203479
203461
  Object.freeze(FIRST_TIME_WATCH);
203480
203462
  const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
203481
203463
  let data = newVal, formattedData;
203482
- if (_.isArray(data)) {
203464
+ if (isArray(data)) {
203483
203465
  formattedData = data.map(function (datum) {
203484
203466
  return findValueOf(datum, restExpr);
203485
203467
  });
203486
203468
  // If resulting structure is an array of array, flatten it
203487
- if (_.isArray(formattedData[0])) {
203488
- formattedData = _.flatten(formattedData);
203469
+ if (isArray(formattedData[0])) {
203470
+ formattedData = flatten(formattedData);
203489
203471
  }
203490
203472
  listenerFn(formattedData, oldVal);
203491
203473
  }
@@ -203530,19 +203512,6 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
203530
203512
  };
203531
203513
  const $unwatch = identifier => registry.delete(identifier);
203532
203514
  window.watchRegistry = registry;
203533
- window.__WM_DEBUG_WATCHERS__ = false;
203534
- /*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
203535
- if (force) {
203536
- triggerWatchers(ignoreMuted);
203537
- } else {
203538
-
203539
- if (skipWatchers) {
203540
- skipWatchers = false;
203541
- return;
203542
- }
203543
- debouncedTriggerWatchers();
203544
- }
203545
- };*/
203546
203515
  const $appDigest = (() => {
203547
203516
  return (force) => {
203548
203517
  {
@@ -203605,8 +203574,6 @@ var Operation;
203605
203574
  const DataSource = {
203606
203575
  Operation
203607
203576
  };
203608
- class App {
203609
- }
203610
203577
  class AbstractI18nService {
203611
203578
  }
203612
203579
 
@@ -203624,7 +203591,6 @@ const REGEX = {
203624
203591
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
203625
203592
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
203626
203593
  VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
203627
- VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
203628
203594
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
203629
203595
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
203630
203596
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -203847,9 +203813,6 @@ const isVideoFile = (fileName) => {
203847
203813
  const isValidWebURL = (url) => {
203848
203814
  return (REGEX.VALID_WEB_URL).test(url);
203849
203815
  };
203850
- const isValidImageUrl = (url) => {
203851
- return (REGEX.VALID_IMAGE_URL).test(url?.trim());
203852
- };
203853
203816
  /*This function returns the url to the resource after checking the validity of url*/
203854
203817
  const getResourceURL = (urlString) => {
203855
203818
  return urlString;
@@ -205103,7 +205066,6 @@ var Utils = /*#__PURE__*/Object.freeze({
205103
205066
  isPageable: isPageable,
205104
205067
  isSafari: isSafari,
205105
205068
  isTablet: isTablet,
205106
- isValidImageUrl: isValidImageUrl,
205107
205069
  isValidWebURL: isValidWebURL,
205108
205070
  isVideoFile: isVideoFile,
205109
205071
  loadScript: loadScript,
@@ -207943,7 +207905,7 @@ class PipeProvider {
207943
207905
  this.preparePipeMeta(CurrencyPipe$1, 'currency', true, [this._locale]),
207944
207906
  this.preparePipeMeta(DatePipe$1, 'date', true, [this._locale]),
207945
207907
  this.preparePipeMeta(ToDatePipe, 'toDate', true, [
207946
- new DatePipe$1(this._locale), undefined, this.injector.get(App), this.injector.get(CustomPipeManager)
207908
+ new DatePipe$1(this._locale), undefined, this.injector.get(CustomPipeManager)
207947
207909
  ]),
207948
207910
  this.preparePipeMeta(ToNumberPipe, 'toNumber', true, [
207949
207911
  new DecimalPipe$1(this._locale),
@@ -207960,7 +207922,7 @@ class PipeProvider {
207960
207922
  new DecimalPipe$1(this._locale)
207961
207923
  ]),
207962
207924
  this.preparePipeMeta(StringToNumberPipe, 'stringToNumber', true),
207963
- this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(App), this.injector.get(CustomPipeManager)]),
207925
+ this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(CustomPipeManager)]),
207964
207926
  this.preparePipeMeta(TrustAsPipe, 'trustAs', true, [this.domSanitizer]),
207965
207927
  this.preparePipeMeta(SanitizePipe, 'sanitize', true, [this.domSanitizer]),
207966
207928
  this.preparePipeMeta(TemplateReplacePipe, 'templateReplace', true),
@@ -100259,13 +100259,13 @@ const FIRST_TIME_WATCH = {};
100259
100259
  Object.freeze(FIRST_TIME_WATCH);
100260
100260
  const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
100261
100261
  let data = newVal, formattedData;
100262
- if (_.isArray(data)) {
100262
+ if (isArray(data)) {
100263
100263
  formattedData = data.map(function (datum) {
100264
100264
  return findValueOf(datum, restExpr);
100265
100265
  });
100266
100266
  // If resulting structure is an array of array, flatten it
100267
- if (_.isArray(formattedData[0])) {
100268
- formattedData = _.flatten(formattedData);
100267
+ if (isArray(formattedData[0])) {
100268
+ formattedData = flatten$1(formattedData);
100269
100269
  }
100270
100270
  listenerFn(formattedData, oldVal);
100271
100271
  }
@@ -100310,19 +100310,6 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
100310
100310
  };
100311
100311
  const $unwatch = identifier => registry.delete(identifier);
100312
100312
  window.watchRegistry = registry;
100313
- window.__WM_DEBUG_WATCHERS__ = false;
100314
- /*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
100315
- if (force) {
100316
- triggerWatchers(ignoreMuted);
100317
- } else {
100318
-
100319
- if (skipWatchers) {
100320
- skipWatchers = false;
100321
- return;
100322
- }
100323
- debouncedTriggerWatchers();
100324
- }
100325
- };*/
100326
100313
  const $appDigest = (() => {
100327
100314
  return (force) => {
100328
100315
  {
@@ -100400,7 +100387,6 @@ const REGEX = {
100400
100387
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
100401
100388
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
100402
100389
  VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
100403
- VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
100404
100390
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
100405
100391
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
100406
100392
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -100623,9 +100609,6 @@ const isVideoFile = (fileName) => {
100623
100609
  const isValidWebURL = (url) => {
100624
100610
  return (REGEX.VALID_WEB_URL).test(url);
100625
100611
  };
100626
- const isValidImageUrl = (url) => {
100627
- return (REGEX.VALID_IMAGE_URL).test(url?.trim());
100628
- };
100629
100612
  /*This function returns the url to the resource after checking the validity of url*/
100630
100613
  const getResourceURL = (urlString) => {
100631
100614
  return urlString;
@@ -101879,7 +101862,6 @@ var Utils = /*#__PURE__*/Object.freeze({
101879
101862
  isPageable: isPageable,
101880
101863
  isSafari: isSafari,
101881
101864
  isTablet: isTablet,
101882
- isValidImageUrl: isValidImageUrl,
101883
101865
  isValidWebURL: isValidWebURL,
101884
101866
  isVideoFile: isVideoFile,
101885
101867
  loadScript: loadScript,
@@ -69,7 +69,7 @@
69
69
  <body>
70
70
  <div class="header">
71
71
  <h1>Angular Project Dependencies Report</h1>
72
- <p class="timestamp">Generated on: 3/2/2026, 4:03:20 PM</p>
72
+ <p class="timestamp">Generated on: 3/6/2026, 4:54:47 PM</p>
73
73
  </div>
74
74
 
75
75
  <div class="section">
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.14.1-18.6421",
3
+ "version": "11.14.1-18.6427",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-app",
9
- "version": "11.14.1-18.6421",
9
+ "version": "11.14.1-18.6427",
10
10
  "dependencies": {
11
11
  "@angular/animations": "18.2.13",
12
12
  "@angular/common": "18.2.13",
@@ -23,12 +23,12 @@
23
23
  "@fullcalendar/list": "6.1.18",
24
24
  "@fullcalendar/timegrid": "6.1.18",
25
25
  "@metrichor/jmespath": "0.3.1",
26
- "@wavemaker/app-ng-runtime": "11.14.1-18.6421",
27
- "@wavemaker/custom-widgets-m3": "11.14.1-18.6421",
26
+ "@wavemaker/app-ng-runtime": "11.14.1-18.6427",
27
+ "@wavemaker/custom-widgets-m3": "11.14.1-18.6427",
28
28
  "@wavemaker/focus-trap": "1.0.1",
29
- "@wavemaker/foundation-css": "11.14.1-18.6421",
29
+ "@wavemaker/foundation-css": "11.14.1-18.6427",
30
30
  "@wavemaker/nvd3": "1.8.15",
31
- "@wavemaker/variables": "11.14.1-18.6421",
31
+ "@wavemaker/variables": "11.14.1-18.6427",
32
32
  "@ztree/ztree_v3": "3.5.48",
33
33
  "acorn": "^8.15.0",
34
34
  "angular-imask": "7.6.1",
@@ -568,12 +568,12 @@
568
568
  }
569
569
  },
570
570
  "node_modules/@angular-devkit/schematics": {
571
- "version": "20.3.18",
572
- "integrity": "sha512-GRMEGl3YTL/qhQhaxYXLbSQxUTPTYMQ65IlxLQRq5+UKPomN9KVxxVdADXqs7Ss1uQcetr+jc+taVgxOqsAoxg==",
571
+ "version": "20.3.19",
572
+ "integrity": "sha512-7ZwThNeCcdKNuFpmrpQvm049v2Y+7CCCoFOzGg0UnH7F+wmaTSwEwLr+NmGJO0shYCUGl1Q/pcF9y58xs2njiQ==",
573
573
  "dev": true,
574
574
  "license": "MIT",
575
575
  "dependencies": {
576
- "@angular-devkit/core": "20.3.18",
576
+ "@angular-devkit/core": "20.3.19",
577
577
  "jsonc-parser": "3.3.1",
578
578
  "magic-string": "0.30.17",
579
579
  "ora": "8.2.0",
@@ -586,8 +586,8 @@
586
586
  }
587
587
  },
588
588
  "node_modules/@angular-devkit/schematics/node_modules/@angular-devkit/core": {
589
- "version": "20.3.18",
590
- "integrity": "sha512-zGWMjMqE8qXYr8baYCs43k9HlKz9J4Gh3Yx+7XE0uS0Y1LXzzALevSoUw7GIPdSvOriQJAEgtWE6QKssqSGltQ==",
589
+ "version": "20.3.19",
590
+ "integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
591
591
  "dev": true,
592
592
  "license": "MIT",
593
593
  "dependencies": {
@@ -787,12 +787,12 @@
787
787
  }
788
788
  },
789
789
  "node_modules/@angular-eslint/builder/node_modules/@angular-devkit/architect": {
790
- "version": "0.2003.18",
791
- "integrity": "sha512-pPEDby3wQb40YSpH+UrjodJ78Z7q0Qvy3DTkS7mP2EIM4r0WVz8OlxLGS2uAc6tXSbIZe0bPp0B56P6uet3tUw==",
790
+ "version": "0.2003.19",
791
+ "integrity": "sha512-ta8UR4Sh8lolJZw/eE2tMf694FYzZ5NXBo1p5uj4JnqawpLGt1mwJcWX9kZkWAwQko/L51yWsDxX5VjJLPdXcQ==",
792
792
  "dev": true,
793
793
  "license": "MIT",
794
794
  "dependencies": {
795
- "@angular-devkit/core": "20.3.18",
795
+ "@angular-devkit/core": "20.3.19",
796
796
  "rxjs": "7.8.2"
797
797
  },
798
798
  "engines": {
@@ -802,8 +802,8 @@
802
802
  }
803
803
  },
804
804
  "node_modules/@angular-eslint/builder/node_modules/@angular-devkit/core": {
805
- "version": "20.3.18",
806
- "integrity": "sha512-zGWMjMqE8qXYr8baYCs43k9HlKz9J4Gh3Yx+7XE0uS0Y1LXzzALevSoUw7GIPdSvOriQJAEgtWE6QKssqSGltQ==",
805
+ "version": "20.3.19",
806
+ "integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
807
807
  "dev": true,
808
808
  "license": "MIT",
809
809
  "dependencies": {
@@ -922,8 +922,8 @@
922
922
  }
923
923
  },
924
924
  "node_modules/@angular-eslint/schematics/node_modules/@angular-devkit/core": {
925
- "version": "20.3.18",
926
- "integrity": "sha512-zGWMjMqE8qXYr8baYCs43k9HlKz9J4Gh3Yx+7XE0uS0Y1LXzzALevSoUw7GIPdSvOriQJAEgtWE6QKssqSGltQ==",
925
+ "version": "20.3.19",
926
+ "integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
927
927
  "dev": true,
928
928
  "license": "MIT",
929
929
  "dependencies": {
@@ -4274,8 +4274,8 @@
4274
4274
  }
4275
4275
  },
4276
4276
  "node_modules/@compodoc/compodoc/node_modules/fs-extra": {
4277
- "version": "11.3.3",
4278
- "integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
4277
+ "version": "11.3.4",
4278
+ "integrity": "sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==",
4279
4279
  "dev": true,
4280
4280
  "license": "MIT",
4281
4281
  "dependencies": {
@@ -5482,8 +5482,8 @@
5482
5482
  }
5483
5483
  },
5484
5484
  "node_modules/@inquirer/core/node_modules/@types/node": {
5485
- "version": "22.19.13",
5486
- "integrity": "sha512-akNQMv0wW5uyRpD2v2IEyRSZiR+BeGuoB6L310EgGObO44HSMNT8z1xzio28V8qOrgYaopIDNA18YgdXd+qTiw==",
5485
+ "version": "22.19.15",
5486
+ "integrity": "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==",
5487
5487
  "dev": true,
5488
5488
  "license": "MIT",
5489
5489
  "dependencies": {
@@ -6468,13 +6468,13 @@
6468
6468
  }
6469
6469
  },
6470
6470
  "node_modules/@jsonjoy.com/fs-core": {
6471
- "version": "4.56.10",
6472
- "integrity": "sha512-PyAEA/3cnHhsGcdY+AmIU+ZPqTuZkDhCXQ2wkXypdLitSpd6d5Ivxhnq4wa2ETRWFVJGabYynBWxIijOswSmOw==",
6471
+ "version": "4.56.11",
6472
+ "integrity": "sha512-wThHjzUp01ImIjfCwhs+UnFkeGPFAymwLEkOtenHewaKe2pTP12p6r1UuwikA9NEvNf9Vlck92r8fb8n/MWM5w==",
6473
6473
  "dev": true,
6474
6474
  "license": "Apache-2.0",
6475
6475
  "dependencies": {
6476
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
6477
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6476
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
6477
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6478
6478
  "thingies": "^2.5.0"
6479
6479
  },
6480
6480
  "engines": {
@@ -6489,14 +6489,14 @@
6489
6489
  }
6490
6490
  },
6491
6491
  "node_modules/@jsonjoy.com/fs-fsa": {
6492
- "version": "4.56.10",
6493
- "integrity": "sha512-/FVK63ysNzTPOnCCcPoPHt77TOmachdMS422txM4KhxddLdbW1fIbFMYH0AM0ow/YchCyS5gqEjKLNyv71j/5Q==",
6492
+ "version": "4.56.11",
6493
+ "integrity": "sha512-ZYlF3XbMayyp97xEN8ZvYutU99PCHjM64mMZvnCseXkCJXJDVLAwlF8Q/7q/xiWQRsv3pQBj1WXHd9eEyYcaCQ==",
6494
6494
  "dev": true,
6495
6495
  "license": "Apache-2.0",
6496
6496
  "dependencies": {
6497
- "@jsonjoy.com/fs-core": "4.56.10",
6498
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
6499
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6497
+ "@jsonjoy.com/fs-core": "4.56.11",
6498
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
6499
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6500
6500
  "thingies": "^2.5.0"
6501
6501
  },
6502
6502
  "engines": {
@@ -6511,16 +6511,16 @@
6511
6511
  }
6512
6512
  },
6513
6513
  "node_modules/@jsonjoy.com/fs-node": {
6514
- "version": "4.56.10",
6515
- "integrity": "sha512-7R4Gv3tkUdW3dXfXiOkqxkElxKNVdd8BDOWC0/dbERd0pXpPY+s2s1Mino+aTvkGrFPiY+mmVxA7zhskm4Ue4Q==",
6514
+ "version": "4.56.11",
6515
+ "integrity": "sha512-D65YrnP6wRuZyEWoSFnBJSr5zARVpVBGctnhie4rCsMuGXNzX7IHKaOt85/Aj7SSoG1N2+/xlNjWmkLvZ2H3Tg==",
6516
6516
  "dev": true,
6517
6517
  "license": "Apache-2.0",
6518
6518
  "dependencies": {
6519
- "@jsonjoy.com/fs-core": "4.56.10",
6520
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
6521
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6522
- "@jsonjoy.com/fs-print": "4.56.10",
6523
- "@jsonjoy.com/fs-snapshot": "4.56.10",
6519
+ "@jsonjoy.com/fs-core": "4.56.11",
6520
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
6521
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6522
+ "@jsonjoy.com/fs-print": "4.56.11",
6523
+ "@jsonjoy.com/fs-snapshot": "4.56.11",
6524
6524
  "glob-to-regex.js": "^1.0.0",
6525
6525
  "thingies": "^2.5.0"
6526
6526
  },
@@ -6536,8 +6536,8 @@
6536
6536
  }
6537
6537
  },
6538
6538
  "node_modules/@jsonjoy.com/fs-node-builtins": {
6539
- "version": "4.56.10",
6540
- "integrity": "sha512-uUnKz8R0YJyKq5jXpZtkGV9U0pJDt8hmYcLRrPjROheIfjMXsz82kXMgAA/qNg0wrZ1Kv+hrg7azqEZx6XZCVw==",
6539
+ "version": "4.56.11",
6540
+ "integrity": "sha512-CNmt3a0zMCIhniFLXtzPWuUxXFU+U+2VyQiIrgt/rRVeEJNrMQUABaRbVxR0Ouw1LyR9RjaEkPM6nYpED+y43A==",
6541
6541
  "dev": true,
6542
6542
  "license": "Apache-2.0",
6543
6543
  "engines": {
@@ -6552,14 +6552,14 @@
6552
6552
  }
6553
6553
  },
6554
6554
  "node_modules/@jsonjoy.com/fs-node-to-fsa": {
6555
- "version": "4.56.10",
6556
- "integrity": "sha512-oH+O6Y4lhn9NyG6aEoFwIBNKZeYy66toP5LJcDOMBgL99BKQMUf/zWJspdRhMdn/3hbzQsZ8EHHsuekbFLGUWw==",
6555
+ "version": "4.56.11",
6556
+ "integrity": "sha512-5OzGdvJDgZVo+xXWEYo72u81zpOWlxlbG4d4nL+hSiW+LKlua/dldNgPrpWxtvhgyntmdFQad2UTxFyGjJAGhA==",
6557
6557
  "dev": true,
6558
6558
  "license": "Apache-2.0",
6559
6559
  "dependencies": {
6560
- "@jsonjoy.com/fs-fsa": "4.56.10",
6561
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
6562
- "@jsonjoy.com/fs-node-utils": "4.56.10"
6560
+ "@jsonjoy.com/fs-fsa": "4.56.11",
6561
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
6562
+ "@jsonjoy.com/fs-node-utils": "4.56.11"
6563
6563
  },
6564
6564
  "engines": {
6565
6565
  "node": ">=10.0"
@@ -6573,12 +6573,12 @@
6573
6573
  }
6574
6574
  },
6575
6575
  "node_modules/@jsonjoy.com/fs-node-utils": {
6576
- "version": "4.56.10",
6577
- "integrity": "sha512-8EuPBgVI2aDPwFdaNQeNpHsyqPi3rr+85tMNG/lHvQLiVjzoZsvxA//Xd8aB567LUhy4QS03ptT+unkD/DIsNg==",
6576
+ "version": "4.56.11",
6577
+ "integrity": "sha512-JADOZFDA3wRfsuxkT0+MYc4F9hJO2PYDaY66kRTG6NqGX3+bqmKu66YFYAbII/tEmQWPZeHoClUB23rtQM9UPg==",
6578
6578
  "dev": true,
6579
6579
  "license": "Apache-2.0",
6580
6580
  "dependencies": {
6581
- "@jsonjoy.com/fs-node-builtins": "4.56.10"
6581
+ "@jsonjoy.com/fs-node-builtins": "4.56.11"
6582
6582
  },
6583
6583
  "engines": {
6584
6584
  "node": ">=10.0"
@@ -6592,12 +6592,12 @@
6592
6592
  }
6593
6593
  },
6594
6594
  "node_modules/@jsonjoy.com/fs-print": {
6595
- "version": "4.56.10",
6596
- "integrity": "sha512-JW4fp5mAYepzFsSGrQ48ep8FXxpg4niFWHdF78wDrFGof7F3tKDJln72QFDEn/27M1yHd4v7sKHHVPh78aWcEw==",
6595
+ "version": "4.56.11",
6596
+ "integrity": "sha512-rnaKRgCRIn8JGTjxhS0JPE38YM3Pj/H7SW4/tglhIPbfKEkky7dpPayNKV2qy25SZSL15oFVgH/62dMZ/z7cyA==",
6597
6597
  "dev": true,
6598
6598
  "license": "Apache-2.0",
6599
6599
  "dependencies": {
6600
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6600
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6601
6601
  "tree-dump": "^1.1.0"
6602
6602
  },
6603
6603
  "engines": {
@@ -6612,13 +6612,13 @@
6612
6612
  }
6613
6613
  },
6614
6614
  "node_modules/@jsonjoy.com/fs-snapshot": {
6615
- "version": "4.56.10",
6616
- "integrity": "sha512-DkR6l5fj7+qj0+fVKm/OOXMGfDFCGXLfyHkORH3DF8hxkpDgIHbhf/DwncBMs2igu/ST7OEkexn1gIqoU6Y+9g==",
6615
+ "version": "4.56.11",
6616
+ "integrity": "sha512-IIldPX+cIRQuUol9fQzSS3hqyECxVpYMJQMqdU3dCKZFRzEl1rkIkw4P6y7Oh493sI7YdxZlKr/yWdzEWZ1wGQ==",
6617
6617
  "dev": true,
6618
6618
  "license": "Apache-2.0",
6619
6619
  "dependencies": {
6620
6620
  "@jsonjoy.com/buffers": "^17.65.0",
6621
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6621
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6622
6622
  "@jsonjoy.com/json-pack": "^17.65.0",
6623
6623
  "@jsonjoy.com/util": "^17.65.0"
6624
6624
  },
@@ -8389,8 +8389,8 @@
8389
8389
  }
8390
8390
  },
8391
8391
  "node_modules/@types/node": {
8392
- "version": "24.11.0",
8393
- "integrity": "sha512-fPxQqz4VTgPI/IQ+lj9r0h+fDR66bzoeMGHp8ASee+32OSGIkeASsoZuJixsQoVef1QJbeubcPBxKk22QVoWdw==",
8392
+ "version": "24.12.0",
8393
+ "integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
8394
8394
  "dev": true,
8395
8395
  "license": "MIT",
8396
8396
  "dependencies": {
@@ -8407,8 +8407,8 @@
8407
8407
  }
8408
8408
  },
8409
8409
  "node_modules/@types/qs": {
8410
- "version": "6.14.0",
8411
- "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==",
8410
+ "version": "6.15.0",
8411
+ "integrity": "sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==",
8412
8412
  "dev": true,
8413
8413
  "license": "MIT"
8414
8414
  },
@@ -9029,8 +9029,8 @@
9029
9029
  }
9030
9030
  },
9031
9031
  "node_modules/@wavemaker/app-ng-runtime": {
9032
- "version": "11.14.1-18.6421",
9033
- "integrity": "sha512-99ThHiSsrQKzJW52x/u/vMaJG/VAqh5TImVZZVrEzgkoKLaIv4Re6YM/P/F9fX6KPCwuH8ExU0XvHyaIoB8n0g==",
9032
+ "version": "11.14.1-18.6427",
9033
+ "integrity": "sha512-YeAN/S4sRKoAsPIhY6jKUnyldkBAg7SLLPjD14AhiA8Dc4bnHK+Gy/LKVmXBL+1DXFmQNLg9TGkZyDmA49ojVg==",
9034
9034
  "license": "MIT",
9035
9035
  "engines": {
9036
9036
  "node": ">=18.16.1",
@@ -9038,8 +9038,8 @@
9038
9038
  }
9039
9039
  },
9040
9040
  "node_modules/@wavemaker/custom-widgets-m3": {
9041
- "version": "11.14.1-18.6421",
9042
- "integrity": "sha512-oEPfKDmE86RMK2Ldns/kiXNiR2kSPJ6UIVDJbSABPrukhVZRn9SYkyIjdt454GNF5YPoiTxSootS4xuu7qz7hw==",
9041
+ "version": "11.14.1-18.6427",
9042
+ "integrity": "sha512-/hfBUkOP7qaCIFWIrCa5JgURiE1Fy+LkcDr9gUXLrsSdRnUFo5fog7kpX4EsC8h67+I06+tY1JAkMAgaXqgOIg==",
9043
9043
  "license": "ISC"
9044
9044
  },
9045
9045
  "node_modules/@wavemaker/focus-trap": {
@@ -9052,8 +9052,8 @@
9052
9052
  }
9053
9053
  },
9054
9054
  "node_modules/@wavemaker/foundation-css": {
9055
- "version": "11.14.1-18.6421",
9056
- "integrity": "sha512-1GRemYmBP085dFCdAEBbikWBwvfSzDWQDBpMGuOvbC7zIikYAs3FfbCLsTEysKhW6bCCfKVGjhMNYY4yEsrdrg==",
9055
+ "version": "11.14.1-18.6427",
9056
+ "integrity": "sha512-dQ6uK/vi/sxnjuZgSCb0vwR0brZtN14/mJ4EYtHhZu/lbVxiid1NLZDktTu4d6jOgG5cpRbBUyFGKDRZTK5Ygg==",
9057
9057
  "license": "ISC",
9058
9058
  "dependencies": {
9059
9059
  "chroma-js": "^3.1.2"
@@ -9068,8 +9068,8 @@
9068
9068
  }
9069
9069
  },
9070
9070
  "node_modules/@wavemaker/variables": {
9071
- "version": "11.14.1-18.6421",
9072
- "integrity": "sha512-5pX7Hi8/86YAuZOIQdhRITYa+MNwoNC04w2KnHuFXV4wmzS7oRiev6uiOBHSoz6kGbcS1If/5xEvHg1ZBwWpyA==",
9071
+ "version": "11.14.1-18.6427",
9072
+ "integrity": "sha512-J7AgdQHvi5QWGjXHtYEO4TXpIn7zreZU32Fmqzv+QlMjK+3aEz6m+VzKv7hU+9nn97Bl2iG9FRBtM4hdw1Z6YQ==",
9073
9073
  "license": "ISC",
9074
9074
  "dependencies": {
9075
9075
  "@metrichor/jmespath": "^0.3.1",
@@ -10292,8 +10292,8 @@
10292
10292
  }
10293
10293
  },
10294
10294
  "node_modules/caniuse-lite": {
10295
- "version": "1.0.30001775",
10296
- "integrity": "sha512-s3Qv7Lht9zbVKE9XoTyRG6wVDCKdtOFIjBGg3+Yhn6JaytuNKPIjBMTMIY1AnOH3seL5mvF+x33oGAyK3hVt3A==",
10295
+ "version": "1.0.30001777",
10296
+ "integrity": "sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==",
10297
10297
  "dev": true,
10298
10298
  "funding": [
10299
10299
  {
@@ -11030,8 +11030,8 @@
11030
11030
  }
11031
11031
  },
11032
11032
  "node_modules/cosmiconfig": {
11033
- "version": "9.0.0",
11034
- "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
11033
+ "version": "9.0.1",
11034
+ "integrity": "sha512-hr4ihw+DBqcvrsEDioRO31Z17x71pUYoNe/4h6Z0wB72p7MU7/9gH8Q3s12NFhHPfYBBOV3qyfUxmr/Yn3shnQ==",
11035
11035
  "dev": true,
11036
11036
  "license": "MIT",
11037
11037
  "dependencies": {
@@ -11952,8 +11952,8 @@
11952
11952
  "license": "MIT"
11953
11953
  },
11954
11954
  "node_modules/electron-to-chromium": {
11955
- "version": "1.5.302",
11956
- "integrity": "sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==",
11955
+ "version": "1.5.307",
11956
+ "integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==",
11957
11957
  "dev": true,
11958
11958
  "license": "ISC"
11959
11959
  },
@@ -14301,8 +14301,8 @@
14301
14301
  }
14302
14302
  },
14303
14303
  "node_modules/immutable": {
14304
- "version": "4.3.7",
14305
- "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==",
14304
+ "version": "4.3.8",
14305
+ "integrity": "sha512-d/Ld9aLbKpNwyl0KiM2CT1WYvkitQ1TSvmRtkcV8FKStiDoA7Slzgjmb/1G2yhKM1p0XeNOieaTbFZmU1d3Xuw==",
14306
14306
  "dev": true,
14307
14307
  "license": "MIT"
14308
14308
  },
@@ -16912,19 +16912,19 @@
16912
16912
  }
16913
16913
  },
16914
16914
  "node_modules/memfs": {
16915
- "version": "4.56.10",
16916
- "integrity": "sha512-eLvzyrwqLHnLYalJP7YZ3wBe79MXktMdfQbvMrVD80K+NhrIukCVBvgP30zTJYEEDh9hZ/ep9z0KOdD7FSHo7w==",
16915
+ "version": "4.56.11",
16916
+ "integrity": "sha512-/GodtwVeKVIHZKLUSr2ZdOxKBC5hHki4JNCU22DoCGPEHr5o2PD5U721zvESKyWwCfTfavFl9WZYgA13OAYK0g==",
16917
16917
  "dev": true,
16918
16918
  "license": "Apache-2.0",
16919
16919
  "dependencies": {
16920
- "@jsonjoy.com/fs-core": "4.56.10",
16921
- "@jsonjoy.com/fs-fsa": "4.56.10",
16922
- "@jsonjoy.com/fs-node": "4.56.10",
16923
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
16924
- "@jsonjoy.com/fs-node-to-fsa": "4.56.10",
16925
- "@jsonjoy.com/fs-node-utils": "4.56.10",
16926
- "@jsonjoy.com/fs-print": "4.56.10",
16927
- "@jsonjoy.com/fs-snapshot": "4.56.10",
16920
+ "@jsonjoy.com/fs-core": "4.56.11",
16921
+ "@jsonjoy.com/fs-fsa": "4.56.11",
16922
+ "@jsonjoy.com/fs-node": "4.56.11",
16923
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
16924
+ "@jsonjoy.com/fs-node-to-fsa": "4.56.11",
16925
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
16926
+ "@jsonjoy.com/fs-print": "4.56.11",
16927
+ "@jsonjoy.com/fs-snapshot": "4.56.11",
16928
16928
  "@jsonjoy.com/json-pack": "^1.11.0",
16929
16929
  "@jsonjoy.com/util": "^1.9.0",
16930
16930
  "glob-to-regex.js": "^1.0.1",
@@ -18447,8 +18447,8 @@
18447
18447
  "license": "MIT"
18448
18448
  },
18449
18449
  "node_modules/node-releases": {
18450
- "version": "2.0.27",
18451
- "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
18450
+ "version": "2.0.36",
18451
+ "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
18452
18452
  "dev": true,
18453
18453
  "license": "MIT"
18454
18454
  },
@@ -21802,15 +21802,14 @@
21802
21802
  }
21803
21803
  },
21804
21804
  "node_modules/terser-webpack-plugin": {
21805
- "version": "5.3.16",
21806
- "integrity": "sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==",
21805
+ "version": "5.3.17",
21806
+ "integrity": "sha512-YR7PtUp6GMU91BgSJmlaX/rS2lGDbAF7D+Wtq7hRO+MiljNmodYvqslzCFiYVAgW+Qoaaia/QUIP4lGXufjdZw==",
21807
21807
  "dev": true,
21808
21808
  "license": "MIT",
21809
21809
  "dependencies": {
21810
21810
  "@jridgewell/trace-mapping": "^0.3.25",
21811
21811
  "jest-worker": "^27.4.5",
21812
21812
  "schema-utils": "^4.3.0",
21813
- "serialize-javascript": "^6.0.2",
21814
21813
  "terser": "^5.31.1"
21815
21814
  },
21816
21815
  "engines": {
@@ -23203,8 +23202,8 @@
23203
23202
  }
23204
23203
  },
23205
23204
  "node_modules/vite/node_modules/postcss": {
23206
- "version": "8.5.6",
23207
- "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
23205
+ "version": "8.5.8",
23206
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
23208
23207
  "dev": true,
23209
23208
  "funding": [
23210
23209
  {
package/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.14.1-18.6421",
3
+ "version": "11.14.1-18.6427",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-app",
9
- "version": "11.14.1-18.6421",
9
+ "version": "11.14.1-18.6427",
10
10
  "dependencies": {
11
11
  "@angular/animations": "18.2.13",
12
12
  "@angular/common": "18.2.13",
@@ -23,12 +23,12 @@
23
23
  "@fullcalendar/list": "6.1.18",
24
24
  "@fullcalendar/timegrid": "6.1.18",
25
25
  "@metrichor/jmespath": "0.3.1",
26
- "@wavemaker/app-ng-runtime": "11.14.1-18.6421",
27
- "@wavemaker/custom-widgets-m3": "11.14.1-18.6421",
26
+ "@wavemaker/app-ng-runtime": "11.14.1-18.6427",
27
+ "@wavemaker/custom-widgets-m3": "11.14.1-18.6427",
28
28
  "@wavemaker/focus-trap": "1.0.1",
29
- "@wavemaker/foundation-css": "11.14.1-18.6421",
29
+ "@wavemaker/foundation-css": "11.14.1-18.6427",
30
30
  "@wavemaker/nvd3": "1.8.15",
31
- "@wavemaker/variables": "11.14.1-18.6421",
31
+ "@wavemaker/variables": "11.14.1-18.6427",
32
32
  "@ztree/ztree_v3": "3.5.48",
33
33
  "acorn": "^8.15.0",
34
34
  "angular-imask": "7.6.1",
@@ -568,12 +568,12 @@
568
568
  }
569
569
  },
570
570
  "node_modules/@angular-devkit/schematics": {
571
- "version": "20.3.18",
572
- "integrity": "sha512-GRMEGl3YTL/qhQhaxYXLbSQxUTPTYMQ65IlxLQRq5+UKPomN9KVxxVdADXqs7Ss1uQcetr+jc+taVgxOqsAoxg==",
571
+ "version": "20.3.19",
572
+ "integrity": "sha512-7ZwThNeCcdKNuFpmrpQvm049v2Y+7CCCoFOzGg0UnH7F+wmaTSwEwLr+NmGJO0shYCUGl1Q/pcF9y58xs2njiQ==",
573
573
  "dev": true,
574
574
  "license": "MIT",
575
575
  "dependencies": {
576
- "@angular-devkit/core": "20.3.18",
576
+ "@angular-devkit/core": "20.3.19",
577
577
  "jsonc-parser": "3.3.1",
578
578
  "magic-string": "0.30.17",
579
579
  "ora": "8.2.0",
@@ -586,8 +586,8 @@
586
586
  }
587
587
  },
588
588
  "node_modules/@angular-devkit/schematics/node_modules/@angular-devkit/core": {
589
- "version": "20.3.18",
590
- "integrity": "sha512-zGWMjMqE8qXYr8baYCs43k9HlKz9J4Gh3Yx+7XE0uS0Y1LXzzALevSoUw7GIPdSvOriQJAEgtWE6QKssqSGltQ==",
589
+ "version": "20.3.19",
590
+ "integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
591
591
  "dev": true,
592
592
  "license": "MIT",
593
593
  "dependencies": {
@@ -787,12 +787,12 @@
787
787
  }
788
788
  },
789
789
  "node_modules/@angular-eslint/builder/node_modules/@angular-devkit/architect": {
790
- "version": "0.2003.18",
791
- "integrity": "sha512-pPEDby3wQb40YSpH+UrjodJ78Z7q0Qvy3DTkS7mP2EIM4r0WVz8OlxLGS2uAc6tXSbIZe0bPp0B56P6uet3tUw==",
790
+ "version": "0.2003.19",
791
+ "integrity": "sha512-ta8UR4Sh8lolJZw/eE2tMf694FYzZ5NXBo1p5uj4JnqawpLGt1mwJcWX9kZkWAwQko/L51yWsDxX5VjJLPdXcQ==",
792
792
  "dev": true,
793
793
  "license": "MIT",
794
794
  "dependencies": {
795
- "@angular-devkit/core": "20.3.18",
795
+ "@angular-devkit/core": "20.3.19",
796
796
  "rxjs": "7.8.2"
797
797
  },
798
798
  "engines": {
@@ -802,8 +802,8 @@
802
802
  }
803
803
  },
804
804
  "node_modules/@angular-eslint/builder/node_modules/@angular-devkit/core": {
805
- "version": "20.3.18",
806
- "integrity": "sha512-zGWMjMqE8qXYr8baYCs43k9HlKz9J4Gh3Yx+7XE0uS0Y1LXzzALevSoUw7GIPdSvOriQJAEgtWE6QKssqSGltQ==",
805
+ "version": "20.3.19",
806
+ "integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
807
807
  "dev": true,
808
808
  "license": "MIT",
809
809
  "dependencies": {
@@ -922,8 +922,8 @@
922
922
  }
923
923
  },
924
924
  "node_modules/@angular-eslint/schematics/node_modules/@angular-devkit/core": {
925
- "version": "20.3.18",
926
- "integrity": "sha512-zGWMjMqE8qXYr8baYCs43k9HlKz9J4Gh3Yx+7XE0uS0Y1LXzzALevSoUw7GIPdSvOriQJAEgtWE6QKssqSGltQ==",
925
+ "version": "20.3.19",
926
+ "integrity": "sha512-zh5ci/TXy4oDQXC+MSWIbsTJJ10lI8WXM7cGerwvlFJc+/yo+Js8haeEuapUxliTlXont47pyPcvnzb9RTfNVQ==",
927
927
  "dev": true,
928
928
  "license": "MIT",
929
929
  "dependencies": {
@@ -4274,8 +4274,8 @@
4274
4274
  }
4275
4275
  },
4276
4276
  "node_modules/@compodoc/compodoc/node_modules/fs-extra": {
4277
- "version": "11.3.3",
4278
- "integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
4277
+ "version": "11.3.4",
4278
+ "integrity": "sha512-CTXd6rk/M3/ULNQj8FBqBWHYBVYybQ3VPBw0xGKFe3tuH7ytT6ACnvzpIQ3UZtB8yvUKC2cXn1a+x+5EVQLovA==",
4279
4279
  "dev": true,
4280
4280
  "license": "MIT",
4281
4281
  "dependencies": {
@@ -5482,8 +5482,8 @@
5482
5482
  }
5483
5483
  },
5484
5484
  "node_modules/@inquirer/core/node_modules/@types/node": {
5485
- "version": "22.19.13",
5486
- "integrity": "sha512-akNQMv0wW5uyRpD2v2IEyRSZiR+BeGuoB6L310EgGObO44HSMNT8z1xzio28V8qOrgYaopIDNA18YgdXd+qTiw==",
5485
+ "version": "22.19.15",
5486
+ "integrity": "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==",
5487
5487
  "dev": true,
5488
5488
  "license": "MIT",
5489
5489
  "dependencies": {
@@ -6468,13 +6468,13 @@
6468
6468
  }
6469
6469
  },
6470
6470
  "node_modules/@jsonjoy.com/fs-core": {
6471
- "version": "4.56.10",
6472
- "integrity": "sha512-PyAEA/3cnHhsGcdY+AmIU+ZPqTuZkDhCXQ2wkXypdLitSpd6d5Ivxhnq4wa2ETRWFVJGabYynBWxIijOswSmOw==",
6471
+ "version": "4.56.11",
6472
+ "integrity": "sha512-wThHjzUp01ImIjfCwhs+UnFkeGPFAymwLEkOtenHewaKe2pTP12p6r1UuwikA9NEvNf9Vlck92r8fb8n/MWM5w==",
6473
6473
  "dev": true,
6474
6474
  "license": "Apache-2.0",
6475
6475
  "dependencies": {
6476
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
6477
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6476
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
6477
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6478
6478
  "thingies": "^2.5.0"
6479
6479
  },
6480
6480
  "engines": {
@@ -6489,14 +6489,14 @@
6489
6489
  }
6490
6490
  },
6491
6491
  "node_modules/@jsonjoy.com/fs-fsa": {
6492
- "version": "4.56.10",
6493
- "integrity": "sha512-/FVK63ysNzTPOnCCcPoPHt77TOmachdMS422txM4KhxddLdbW1fIbFMYH0AM0ow/YchCyS5gqEjKLNyv71j/5Q==",
6492
+ "version": "4.56.11",
6493
+ "integrity": "sha512-ZYlF3XbMayyp97xEN8ZvYutU99PCHjM64mMZvnCseXkCJXJDVLAwlF8Q/7q/xiWQRsv3pQBj1WXHd9eEyYcaCQ==",
6494
6494
  "dev": true,
6495
6495
  "license": "Apache-2.0",
6496
6496
  "dependencies": {
6497
- "@jsonjoy.com/fs-core": "4.56.10",
6498
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
6499
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6497
+ "@jsonjoy.com/fs-core": "4.56.11",
6498
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
6499
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6500
6500
  "thingies": "^2.5.0"
6501
6501
  },
6502
6502
  "engines": {
@@ -6511,16 +6511,16 @@
6511
6511
  }
6512
6512
  },
6513
6513
  "node_modules/@jsonjoy.com/fs-node": {
6514
- "version": "4.56.10",
6515
- "integrity": "sha512-7R4Gv3tkUdW3dXfXiOkqxkElxKNVdd8BDOWC0/dbERd0pXpPY+s2s1Mino+aTvkGrFPiY+mmVxA7zhskm4Ue4Q==",
6514
+ "version": "4.56.11",
6515
+ "integrity": "sha512-D65YrnP6wRuZyEWoSFnBJSr5zARVpVBGctnhie4rCsMuGXNzX7IHKaOt85/Aj7SSoG1N2+/xlNjWmkLvZ2H3Tg==",
6516
6516
  "dev": true,
6517
6517
  "license": "Apache-2.0",
6518
6518
  "dependencies": {
6519
- "@jsonjoy.com/fs-core": "4.56.10",
6520
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
6521
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6522
- "@jsonjoy.com/fs-print": "4.56.10",
6523
- "@jsonjoy.com/fs-snapshot": "4.56.10",
6519
+ "@jsonjoy.com/fs-core": "4.56.11",
6520
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
6521
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6522
+ "@jsonjoy.com/fs-print": "4.56.11",
6523
+ "@jsonjoy.com/fs-snapshot": "4.56.11",
6524
6524
  "glob-to-regex.js": "^1.0.0",
6525
6525
  "thingies": "^2.5.0"
6526
6526
  },
@@ -6536,8 +6536,8 @@
6536
6536
  }
6537
6537
  },
6538
6538
  "node_modules/@jsonjoy.com/fs-node-builtins": {
6539
- "version": "4.56.10",
6540
- "integrity": "sha512-uUnKz8R0YJyKq5jXpZtkGV9U0pJDt8hmYcLRrPjROheIfjMXsz82kXMgAA/qNg0wrZ1Kv+hrg7azqEZx6XZCVw==",
6539
+ "version": "4.56.11",
6540
+ "integrity": "sha512-CNmt3a0zMCIhniFLXtzPWuUxXFU+U+2VyQiIrgt/rRVeEJNrMQUABaRbVxR0Ouw1LyR9RjaEkPM6nYpED+y43A==",
6541
6541
  "dev": true,
6542
6542
  "license": "Apache-2.0",
6543
6543
  "engines": {
@@ -6552,14 +6552,14 @@
6552
6552
  }
6553
6553
  },
6554
6554
  "node_modules/@jsonjoy.com/fs-node-to-fsa": {
6555
- "version": "4.56.10",
6556
- "integrity": "sha512-oH+O6Y4lhn9NyG6aEoFwIBNKZeYy66toP5LJcDOMBgL99BKQMUf/zWJspdRhMdn/3hbzQsZ8EHHsuekbFLGUWw==",
6555
+ "version": "4.56.11",
6556
+ "integrity": "sha512-5OzGdvJDgZVo+xXWEYo72u81zpOWlxlbG4d4nL+hSiW+LKlua/dldNgPrpWxtvhgyntmdFQad2UTxFyGjJAGhA==",
6557
6557
  "dev": true,
6558
6558
  "license": "Apache-2.0",
6559
6559
  "dependencies": {
6560
- "@jsonjoy.com/fs-fsa": "4.56.10",
6561
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
6562
- "@jsonjoy.com/fs-node-utils": "4.56.10"
6560
+ "@jsonjoy.com/fs-fsa": "4.56.11",
6561
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
6562
+ "@jsonjoy.com/fs-node-utils": "4.56.11"
6563
6563
  },
6564
6564
  "engines": {
6565
6565
  "node": ">=10.0"
@@ -6573,12 +6573,12 @@
6573
6573
  }
6574
6574
  },
6575
6575
  "node_modules/@jsonjoy.com/fs-node-utils": {
6576
- "version": "4.56.10",
6577
- "integrity": "sha512-8EuPBgVI2aDPwFdaNQeNpHsyqPi3rr+85tMNG/lHvQLiVjzoZsvxA//Xd8aB567LUhy4QS03ptT+unkD/DIsNg==",
6576
+ "version": "4.56.11",
6577
+ "integrity": "sha512-JADOZFDA3wRfsuxkT0+MYc4F9hJO2PYDaY66kRTG6NqGX3+bqmKu66YFYAbII/tEmQWPZeHoClUB23rtQM9UPg==",
6578
6578
  "dev": true,
6579
6579
  "license": "Apache-2.0",
6580
6580
  "dependencies": {
6581
- "@jsonjoy.com/fs-node-builtins": "4.56.10"
6581
+ "@jsonjoy.com/fs-node-builtins": "4.56.11"
6582
6582
  },
6583
6583
  "engines": {
6584
6584
  "node": ">=10.0"
@@ -6592,12 +6592,12 @@
6592
6592
  }
6593
6593
  },
6594
6594
  "node_modules/@jsonjoy.com/fs-print": {
6595
- "version": "4.56.10",
6596
- "integrity": "sha512-JW4fp5mAYepzFsSGrQ48ep8FXxpg4niFWHdF78wDrFGof7F3tKDJln72QFDEn/27M1yHd4v7sKHHVPh78aWcEw==",
6595
+ "version": "4.56.11",
6596
+ "integrity": "sha512-rnaKRgCRIn8JGTjxhS0JPE38YM3Pj/H7SW4/tglhIPbfKEkky7dpPayNKV2qy25SZSL15oFVgH/62dMZ/z7cyA==",
6597
6597
  "dev": true,
6598
6598
  "license": "Apache-2.0",
6599
6599
  "dependencies": {
6600
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6600
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6601
6601
  "tree-dump": "^1.1.0"
6602
6602
  },
6603
6603
  "engines": {
@@ -6612,13 +6612,13 @@
6612
6612
  }
6613
6613
  },
6614
6614
  "node_modules/@jsonjoy.com/fs-snapshot": {
6615
- "version": "4.56.10",
6616
- "integrity": "sha512-DkR6l5fj7+qj0+fVKm/OOXMGfDFCGXLfyHkORH3DF8hxkpDgIHbhf/DwncBMs2igu/ST7OEkexn1gIqoU6Y+9g==",
6615
+ "version": "4.56.11",
6616
+ "integrity": "sha512-IIldPX+cIRQuUol9fQzSS3hqyECxVpYMJQMqdU3dCKZFRzEl1rkIkw4P6y7Oh493sI7YdxZlKr/yWdzEWZ1wGQ==",
6617
6617
  "dev": true,
6618
6618
  "license": "Apache-2.0",
6619
6619
  "dependencies": {
6620
6620
  "@jsonjoy.com/buffers": "^17.65.0",
6621
- "@jsonjoy.com/fs-node-utils": "4.56.10",
6621
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
6622
6622
  "@jsonjoy.com/json-pack": "^17.65.0",
6623
6623
  "@jsonjoy.com/util": "^17.65.0"
6624
6624
  },
@@ -8389,8 +8389,8 @@
8389
8389
  }
8390
8390
  },
8391
8391
  "node_modules/@types/node": {
8392
- "version": "24.11.0",
8393
- "integrity": "sha512-fPxQqz4VTgPI/IQ+lj9r0h+fDR66bzoeMGHp8ASee+32OSGIkeASsoZuJixsQoVef1QJbeubcPBxKk22QVoWdw==",
8392
+ "version": "24.12.0",
8393
+ "integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
8394
8394
  "dev": true,
8395
8395
  "license": "MIT",
8396
8396
  "dependencies": {
@@ -8407,8 +8407,8 @@
8407
8407
  }
8408
8408
  },
8409
8409
  "node_modules/@types/qs": {
8410
- "version": "6.14.0",
8411
- "integrity": "sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==",
8410
+ "version": "6.15.0",
8411
+ "integrity": "sha512-JawvT8iBVWpzTrz3EGw9BTQFg3BQNmwERdKE22vlTxawwtbyUSlMppvZYKLZzB5zgACXdXxbD3m1bXaMqP/9ow==",
8412
8412
  "dev": true,
8413
8413
  "license": "MIT"
8414
8414
  },
@@ -9029,8 +9029,8 @@
9029
9029
  }
9030
9030
  },
9031
9031
  "node_modules/@wavemaker/app-ng-runtime": {
9032
- "version": "11.14.1-18.6421",
9033
- "integrity": "sha512-99ThHiSsrQKzJW52x/u/vMaJG/VAqh5TImVZZVrEzgkoKLaIv4Re6YM/P/F9fX6KPCwuH8ExU0XvHyaIoB8n0g==",
9032
+ "version": "11.14.1-18.6427",
9033
+ "integrity": "sha512-YeAN/S4sRKoAsPIhY6jKUnyldkBAg7SLLPjD14AhiA8Dc4bnHK+Gy/LKVmXBL+1DXFmQNLg9TGkZyDmA49ojVg==",
9034
9034
  "license": "MIT",
9035
9035
  "engines": {
9036
9036
  "node": ">=18.16.1",
@@ -9038,8 +9038,8 @@
9038
9038
  }
9039
9039
  },
9040
9040
  "node_modules/@wavemaker/custom-widgets-m3": {
9041
- "version": "11.14.1-18.6421",
9042
- "integrity": "sha512-oEPfKDmE86RMK2Ldns/kiXNiR2kSPJ6UIVDJbSABPrukhVZRn9SYkyIjdt454GNF5YPoiTxSootS4xuu7qz7hw==",
9041
+ "version": "11.14.1-18.6427",
9042
+ "integrity": "sha512-/hfBUkOP7qaCIFWIrCa5JgURiE1Fy+LkcDr9gUXLrsSdRnUFo5fog7kpX4EsC8h67+I06+tY1JAkMAgaXqgOIg==",
9043
9043
  "license": "ISC"
9044
9044
  },
9045
9045
  "node_modules/@wavemaker/focus-trap": {
@@ -9052,8 +9052,8 @@
9052
9052
  }
9053
9053
  },
9054
9054
  "node_modules/@wavemaker/foundation-css": {
9055
- "version": "11.14.1-18.6421",
9056
- "integrity": "sha512-1GRemYmBP085dFCdAEBbikWBwvfSzDWQDBpMGuOvbC7zIikYAs3FfbCLsTEysKhW6bCCfKVGjhMNYY4yEsrdrg==",
9055
+ "version": "11.14.1-18.6427",
9056
+ "integrity": "sha512-dQ6uK/vi/sxnjuZgSCb0vwR0brZtN14/mJ4EYtHhZu/lbVxiid1NLZDktTu4d6jOgG5cpRbBUyFGKDRZTK5Ygg==",
9057
9057
  "license": "ISC",
9058
9058
  "dependencies": {
9059
9059
  "chroma-js": "^3.1.2"
@@ -9068,8 +9068,8 @@
9068
9068
  }
9069
9069
  },
9070
9070
  "node_modules/@wavemaker/variables": {
9071
- "version": "11.14.1-18.6421",
9072
- "integrity": "sha512-5pX7Hi8/86YAuZOIQdhRITYa+MNwoNC04w2KnHuFXV4wmzS7oRiev6uiOBHSoz6kGbcS1If/5xEvHg1ZBwWpyA==",
9071
+ "version": "11.14.1-18.6427",
9072
+ "integrity": "sha512-J7AgdQHvi5QWGjXHtYEO4TXpIn7zreZU32Fmqzv+QlMjK+3aEz6m+VzKv7hU+9nn97Bl2iG9FRBtM4hdw1Z6YQ==",
9073
9073
  "license": "ISC",
9074
9074
  "dependencies": {
9075
9075
  "@metrichor/jmespath": "^0.3.1",
@@ -10292,8 +10292,8 @@
10292
10292
  }
10293
10293
  },
10294
10294
  "node_modules/caniuse-lite": {
10295
- "version": "1.0.30001775",
10296
- "integrity": "sha512-s3Qv7Lht9zbVKE9XoTyRG6wVDCKdtOFIjBGg3+Yhn6JaytuNKPIjBMTMIY1AnOH3seL5mvF+x33oGAyK3hVt3A==",
10295
+ "version": "1.0.30001777",
10296
+ "integrity": "sha512-tmN+fJxroPndC74efCdp12j+0rk0RHwV5Jwa1zWaFVyw2ZxAuPeG8ZgWC3Wz7uSjT3qMRQ5XHZ4COgQmsCMJAQ==",
10297
10297
  "dev": true,
10298
10298
  "funding": [
10299
10299
  {
@@ -11030,8 +11030,8 @@
11030
11030
  }
11031
11031
  },
11032
11032
  "node_modules/cosmiconfig": {
11033
- "version": "9.0.0",
11034
- "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==",
11033
+ "version": "9.0.1",
11034
+ "integrity": "sha512-hr4ihw+DBqcvrsEDioRO31Z17x71pUYoNe/4h6Z0wB72p7MU7/9gH8Q3s12NFhHPfYBBOV3qyfUxmr/Yn3shnQ==",
11035
11035
  "dev": true,
11036
11036
  "license": "MIT",
11037
11037
  "dependencies": {
@@ -11952,8 +11952,8 @@
11952
11952
  "license": "MIT"
11953
11953
  },
11954
11954
  "node_modules/electron-to-chromium": {
11955
- "version": "1.5.302",
11956
- "integrity": "sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==",
11955
+ "version": "1.5.307",
11956
+ "integrity": "sha512-5z3uFKBWjiNR44nFcYdkcXjKMbg5KXNdciu7mhTPo9tB7NbqSNP2sSnGR+fqknZSCwKkBN+oxiiajWs4dT6ORg==",
11957
11957
  "dev": true,
11958
11958
  "license": "ISC"
11959
11959
  },
@@ -14301,8 +14301,8 @@
14301
14301
  }
14302
14302
  },
14303
14303
  "node_modules/immutable": {
14304
- "version": "4.3.7",
14305
- "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==",
14304
+ "version": "4.3.8",
14305
+ "integrity": "sha512-d/Ld9aLbKpNwyl0KiM2CT1WYvkitQ1TSvmRtkcV8FKStiDoA7Slzgjmb/1G2yhKM1p0XeNOieaTbFZmU1d3Xuw==",
14306
14306
  "dev": true,
14307
14307
  "license": "MIT"
14308
14308
  },
@@ -16912,19 +16912,19 @@
16912
16912
  }
16913
16913
  },
16914
16914
  "node_modules/memfs": {
16915
- "version": "4.56.10",
16916
- "integrity": "sha512-eLvzyrwqLHnLYalJP7YZ3wBe79MXktMdfQbvMrVD80K+NhrIukCVBvgP30zTJYEEDh9hZ/ep9z0KOdD7FSHo7w==",
16915
+ "version": "4.56.11",
16916
+ "integrity": "sha512-/GodtwVeKVIHZKLUSr2ZdOxKBC5hHki4JNCU22DoCGPEHr5o2PD5U721zvESKyWwCfTfavFl9WZYgA13OAYK0g==",
16917
16917
  "dev": true,
16918
16918
  "license": "Apache-2.0",
16919
16919
  "dependencies": {
16920
- "@jsonjoy.com/fs-core": "4.56.10",
16921
- "@jsonjoy.com/fs-fsa": "4.56.10",
16922
- "@jsonjoy.com/fs-node": "4.56.10",
16923
- "@jsonjoy.com/fs-node-builtins": "4.56.10",
16924
- "@jsonjoy.com/fs-node-to-fsa": "4.56.10",
16925
- "@jsonjoy.com/fs-node-utils": "4.56.10",
16926
- "@jsonjoy.com/fs-print": "4.56.10",
16927
- "@jsonjoy.com/fs-snapshot": "4.56.10",
16920
+ "@jsonjoy.com/fs-core": "4.56.11",
16921
+ "@jsonjoy.com/fs-fsa": "4.56.11",
16922
+ "@jsonjoy.com/fs-node": "4.56.11",
16923
+ "@jsonjoy.com/fs-node-builtins": "4.56.11",
16924
+ "@jsonjoy.com/fs-node-to-fsa": "4.56.11",
16925
+ "@jsonjoy.com/fs-node-utils": "4.56.11",
16926
+ "@jsonjoy.com/fs-print": "4.56.11",
16927
+ "@jsonjoy.com/fs-snapshot": "4.56.11",
16928
16928
  "@jsonjoy.com/json-pack": "^1.11.0",
16929
16929
  "@jsonjoy.com/util": "^1.9.0",
16930
16930
  "glob-to-regex.js": "^1.0.1",
@@ -18447,8 +18447,8 @@
18447
18447
  "license": "MIT"
18448
18448
  },
18449
18449
  "node_modules/node-releases": {
18450
- "version": "2.0.27",
18451
- "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
18450
+ "version": "2.0.36",
18451
+ "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
18452
18452
  "dev": true,
18453
18453
  "license": "MIT"
18454
18454
  },
@@ -21802,15 +21802,14 @@
21802
21802
  }
21803
21803
  },
21804
21804
  "node_modules/terser-webpack-plugin": {
21805
- "version": "5.3.16",
21806
- "integrity": "sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==",
21805
+ "version": "5.3.17",
21806
+ "integrity": "sha512-YR7PtUp6GMU91BgSJmlaX/rS2lGDbAF7D+Wtq7hRO+MiljNmodYvqslzCFiYVAgW+Qoaaia/QUIP4lGXufjdZw==",
21807
21807
  "dev": true,
21808
21808
  "license": "MIT",
21809
21809
  "dependencies": {
21810
21810
  "@jridgewell/trace-mapping": "^0.3.25",
21811
21811
  "jest-worker": "^27.4.5",
21812
21812
  "schema-utils": "^4.3.0",
21813
- "serialize-javascript": "^6.0.2",
21814
21813
  "terser": "^5.31.1"
21815
21814
  },
21816
21815
  "engines": {
@@ -23203,8 +23202,8 @@
23203
23202
  }
23204
23203
  },
23205
23204
  "node_modules/vite/node_modules/postcss": {
23206
- "version": "8.5.6",
23207
- "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
23205
+ "version": "8.5.8",
23206
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
23208
23207
  "dev": true,
23209
23208
  "funding": [
23210
23209
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.14.1-18.6421",
3
+ "version": "11.14.1-18.6427",
4
4
  "scripts": {
5
5
  "ng": "ng",
6
6
  "start": "./node_modules/.bin/ng serve",
@@ -36,11 +36,11 @@
36
36
  "@fullcalendar/list": "6.1.18",
37
37
  "@fullcalendar/timegrid": "6.1.18",
38
38
  "@metrichor/jmespath": "0.3.1",
39
- "@wavemaker/custom-widgets-m3": "11.14.1-18.6421",
39
+ "@wavemaker/custom-widgets-m3": "11.14.1-18.6427",
40
40
  "@wavemaker/focus-trap": "1.0.1",
41
- "@wavemaker/foundation-css": "11.14.1-18.6421",
41
+ "@wavemaker/foundation-css": "11.14.1-18.6427",
42
42
  "@wavemaker/nvd3": "1.8.15",
43
- "@wavemaker/variables": "11.14.1-18.6421",
43
+ "@wavemaker/variables": "11.14.1-18.6427",
44
44
  "@ztree/ztree_v3": "3.5.48",
45
45
  "acorn": "^8.15.0",
46
46
  "angular-imask": "7.6.1",
@@ -62,7 +62,7 @@
62
62
  "tslib": "2.8.1",
63
63
  "x2js": "3.4.4",
64
64
  "zone.js": "0.15.1",
65
- "@wavemaker/app-ng-runtime": "11.14.1-18.6421"
65
+ "@wavemaker/app-ng-runtime": "11.14.1-18.6427"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",