@wavemaker/angular-app 11.14.1-19.6462 → 11.14.1-20.6468

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.
@@ -147880,13 +147880,13 @@ const FIRST_TIME_WATCH$1 = {};
147880
147880
  Object.freeze(FIRST_TIME_WATCH$1);
147881
147881
  const arrayConsumer$1 = (listenerFn, restExpr, newVal, oldVal) => {
147882
147882
  let data = newVal, formattedData;
147883
- if (_.isArray(data)) {
147883
+ if (isArray$1(data)) {
147884
147884
  formattedData = data.map(function (datum) {
147885
147885
  return findValueOf$1(datum, restExpr);
147886
147886
  });
147887
147887
  // If resulting structure is an array of array, flatten it
147888
- if (_.isArray(formattedData[0])) {
147889
- formattedData = _.flatten(formattedData);
147888
+ if (isArray$1(formattedData[0])) {
147889
+ formattedData = flatten$2(formattedData);
147890
147890
  }
147891
147891
  listenerFn(formattedData, oldVal);
147892
147892
  }
@@ -147931,19 +147931,6 @@ const $watch$1 = (expr, $scope, $locals, listener, identifier = watchIdGenerator
147931
147931
  };
147932
147932
  const $unwatch$1 = identifier => registry$1.delete(identifier);
147933
147933
  window.watchRegistry = registry$1;
147934
- window.__WM_DEBUG_WATCHERS__ = false;
147935
- /*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
147936
- if (force) {
147937
- triggerWatchers(ignoreMuted);
147938
- } else {
147939
-
147940
- if (skipWatchers) {
147941
- skipWatchers = false;
147942
- return;
147943
- }
147944
- debouncedTriggerWatchers();
147945
- }
147946
- };*/
147947
147934
  const $appDigest$1 = (() => {
147948
147935
  return (force) => {
147949
147936
  {
@@ -148006,8 +147993,8 @@ var Operation$1;
148006
147993
  const DataSource$1 = {
148007
147994
  Operation: Operation$1
148008
147995
  };
148009
- let App$1 = class App {
148010
- };
147996
+ class App {
147997
+ }
148011
147998
  let AbstractI18nService$1 = class AbstractI18nService {
148012
147999
  };
148013
148000
 
@@ -148025,7 +148012,6 @@ const REGEX$1 = {
148025
148012
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
148026
148013
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
148027
148014
  VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
148028
- VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
148029
148015
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
148030
148016
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
148031
148017
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -148248,9 +148234,6 @@ const isVideoFile$1 = (fileName) => {
148248
148234
  const isValidWebURL$1 = (url) => {
148249
148235
  return (REGEX$1.VALID_WEB_URL).test(url);
148250
148236
  };
148251
- const isValidImageUrl$1 = (url) => {
148252
- return (REGEX$1.VALID_IMAGE_URL).test(url?.trim());
148253
- };
148254
148237
  /*This function returns the url to the resource after checking the validity of url*/
148255
148238
  const getResourceURL$1 = (urlString) => {
148256
148239
  return urlString;
@@ -149504,7 +149487,6 @@ var Utils$1 = /*#__PURE__*/Object.freeze({
149504
149487
  isPageable: isPageable$1,
149505
149488
  isSafari: isSafari$1,
149506
149489
  isTablet: isTablet$1,
149507
- isValidImageUrl: isValidImageUrl$1,
149508
149490
  isValidWebURL: isValidWebURL$1,
149509
149491
  isVideoFile: isVideoFile$1,
149510
149492
  loadScript: loadScript$1,
@@ -150739,14 +150721,14 @@ class ToDatePipe extends WmPipe {
150739
150721
  }
150740
150722
  return this.returnFn('', arguments, this.app.Variables);
150741
150723
  }
150742
- constructor(datePipe, i18nService, app, customPipeManager) {
150724
+ constructor(datePipe, i18nService, customPipeManager) {
150743
150725
  super('toDate', customPipeManager);
150744
150726
  this.datePipe = datePipe;
150745
150727
  this.i18nService = i18nService;
150746
- this.app = app;
150747
150728
  this.customPipeManager = customPipeManager;
150729
+ this.app = inject(App);
150748
150730
  }
150749
- 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)); }; }
150731
+ static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
150750
150732
  static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "toDate", type: ToDatePipe, pure: true, standalone: true }); }
150751
150733
  }
150752
150734
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ToDatePipe, [{
@@ -150755,7 +150737,7 @@ class ToDatePipe extends WmPipe {
150755
150737
  standalone: true,
150756
150738
  name: 'toDate'
150757
150739
  }]
150758
- }], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: App$1 }, { type: CustomPipeManager$1 }], null); })();
150740
+ }], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: CustomPipeManager$1 }], null); })();
150759
150741
  class ToNumberPipe {
150760
150742
  transform(data, fracSize) {
150761
150743
  if (fracSize && !String(fracSize).match(/^(\d+)?\.((\d+)(-(\d+))?)?$/)) {
@@ -150843,9 +150825,9 @@ class SuffixPipe {
150843
150825
  * Custom pipe: It is work as interceptor between the user custom pipe function and angular pipe
150844
150826
  */
150845
150827
  class CustomPipe {
150846
- constructor(app, custmeUserPipe) {
150847
- this.app = app;
150828
+ constructor(custmeUserPipe) {
150848
150829
  this.custmeUserPipe = custmeUserPipe;
150830
+ this.app = inject(App);
150849
150831
  }
150850
150832
  transform(data, pipename) {
150851
150833
  let argumentArr = [];
@@ -150865,7 +150847,7 @@ class CustomPipe {
150865
150847
  return data;
150866
150848
  }
150867
150849
  }
150868
- static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(App$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
150850
+ static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
150869
150851
  static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "custom", type: CustomPipe, pure: true, standalone: true }); }
150870
150852
  }
150871
150853
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomPipe, [{
@@ -150874,7 +150856,7 @@ class CustomPipe {
150874
150856
  standalone: true,
150875
150857
  name: 'custom'
150876
150858
  }]
150877
- }], () => [{ type: App$1 }, { type: CustomPipeManager$1 }], null); })();
150859
+ }], () => [{ type: CustomPipeManager$1 }], null); })();
150878
150860
  class TimeFromNowPipe {
150879
150861
  transform(data) {
150880
150862
  let timestamp;
@@ -203537,13 +203519,13 @@ const FIRST_TIME_WATCH = {};
203537
203519
  Object.freeze(FIRST_TIME_WATCH);
203538
203520
  const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
203539
203521
  let data = newVal, formattedData;
203540
- if (_.isArray(data)) {
203522
+ if (isArray(data)) {
203541
203523
  formattedData = data.map(function (datum) {
203542
203524
  return findValueOf(datum, restExpr);
203543
203525
  });
203544
203526
  // If resulting structure is an array of array, flatten it
203545
- if (_.isArray(formattedData[0])) {
203546
- formattedData = _.flatten(formattedData);
203527
+ if (isArray(formattedData[0])) {
203528
+ formattedData = flatten(formattedData);
203547
203529
  }
203548
203530
  listenerFn(formattedData, oldVal);
203549
203531
  }
@@ -203588,19 +203570,6 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
203588
203570
  };
203589
203571
  const $unwatch = identifier => registry.delete(identifier);
203590
203572
  window.watchRegistry = registry;
203591
- window.__WM_DEBUG_WATCHERS__ = false;
203592
- /*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
203593
- if (force) {
203594
- triggerWatchers(ignoreMuted);
203595
- } else {
203596
-
203597
- if (skipWatchers) {
203598
- skipWatchers = false;
203599
- return;
203600
- }
203601
- debouncedTriggerWatchers();
203602
- }
203603
- };*/
203604
203573
  const $appDigest = (() => {
203605
203574
  return (force) => {
203606
203575
  {
@@ -203663,8 +203632,6 @@ var Operation;
203663
203632
  const DataSource = {
203664
203633
  Operation
203665
203634
  };
203666
- class App {
203667
- }
203668
203635
  class AbstractI18nService {
203669
203636
  }
203670
203637
 
@@ -203682,7 +203649,6 @@ const REGEX = {
203682
203649
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
203683
203650
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
203684
203651
  VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
203685
- VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
203686
203652
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
203687
203653
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
203688
203654
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -203905,9 +203871,6 @@ const isVideoFile = (fileName) => {
203905
203871
  const isValidWebURL = (url) => {
203906
203872
  return (REGEX.VALID_WEB_URL).test(url);
203907
203873
  };
203908
- const isValidImageUrl = (url) => {
203909
- return (REGEX.VALID_IMAGE_URL).test(url?.trim());
203910
- };
203911
203874
  /*This function returns the url to the resource after checking the validity of url*/
203912
203875
  const getResourceURL = (urlString) => {
203913
203876
  return urlString;
@@ -205161,7 +205124,6 @@ var Utils = /*#__PURE__*/Object.freeze({
205161
205124
  isPageable: isPageable,
205162
205125
  isSafari: isSafari,
205163
205126
  isTablet: isTablet,
205164
- isValidImageUrl: isValidImageUrl,
205165
205127
  isValidWebURL: isValidWebURL,
205166
205128
  isVideoFile: isVideoFile,
205167
205129
  loadScript: loadScript,
@@ -208001,7 +207963,7 @@ class PipeProvider {
208001
207963
  this.preparePipeMeta(CurrencyPipe$1, 'currency', true, [this._locale]),
208002
207964
  this.preparePipeMeta(DatePipe$1, 'date', true, [this._locale]),
208003
207965
  this.preparePipeMeta(ToDatePipe, 'toDate', true, [
208004
- new DatePipe$1(this._locale), undefined, this.injector.get(App), this.injector.get(CustomPipeManager)
207966
+ new DatePipe$1(this._locale), undefined, this.injector.get(CustomPipeManager)
208005
207967
  ]),
208006
207968
  this.preparePipeMeta(ToNumberPipe, 'toNumber', true, [
208007
207969
  new DecimalPipe$1(this._locale),
@@ -208018,7 +207980,7 @@ class PipeProvider {
208018
207980
  new DecimalPipe$1(this._locale)
208019
207981
  ]),
208020
207982
  this.preparePipeMeta(StringToNumberPipe, 'stringToNumber', true),
208021
- this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(App), this.injector.get(CustomPipeManager)]),
207983
+ this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(CustomPipeManager)]),
208022
207984
  this.preparePipeMeta(TrustAsPipe, 'trustAs', true, [this.domSanitizer]),
208023
207985
  this.preparePipeMeta(SanitizePipe, 'sanitize', true, [this.domSanitizer]),
208024
207986
  this.preparePipeMeta(TemplateReplacePipe, 'templateReplace', true),
@@ -100288,13 +100288,13 @@ const FIRST_TIME_WATCH = {};
100288
100288
  Object.freeze(FIRST_TIME_WATCH);
100289
100289
  const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
100290
100290
  let data = newVal, formattedData;
100291
- if (_.isArray(data)) {
100291
+ if (isArray(data)) {
100292
100292
  formattedData = data.map(function (datum) {
100293
100293
  return findValueOf(datum, restExpr);
100294
100294
  });
100295
100295
  // If resulting structure is an array of array, flatten it
100296
- if (_.isArray(formattedData[0])) {
100297
- formattedData = _.flatten(formattedData);
100296
+ if (isArray(formattedData[0])) {
100297
+ formattedData = flatten$1(formattedData);
100298
100298
  }
100299
100299
  listenerFn(formattedData, oldVal);
100300
100300
  }
@@ -100339,19 +100339,6 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
100339
100339
  };
100340
100340
  const $unwatch = identifier => registry.delete(identifier);
100341
100341
  window.watchRegistry = registry;
100342
- window.__WM_DEBUG_WATCHERS__ = false;
100343
- /*export const $invokeWatchers = (force?: boolean, ignoreMuted?: boolean) => {
100344
- if (force) {
100345
- triggerWatchers(ignoreMuted);
100346
- } else {
100347
-
100348
- if (skipWatchers) {
100349
- skipWatchers = false;
100350
- return;
100351
- }
100352
- debouncedTriggerWatchers();
100353
- }
100354
- };*/
100355
100342
  const $appDigest = (() => {
100356
100343
  return (force) => {
100357
100344
  {
@@ -100429,7 +100416,6 @@ const REGEX = {
100429
100416
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
100430
100417
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
100431
100418
  VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
100432
- VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
100433
100419
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
100434
100420
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
100435
100421
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -100652,9 +100638,6 @@ const isVideoFile = (fileName) => {
100652
100638
  const isValidWebURL = (url) => {
100653
100639
  return (REGEX.VALID_WEB_URL).test(url);
100654
100640
  };
100655
- const isValidImageUrl = (url) => {
100656
- return (REGEX.VALID_IMAGE_URL).test(url?.trim());
100657
- };
100658
100641
  /*This function returns the url to the resource after checking the validity of url*/
100659
100642
  const getResourceURL = (urlString) => {
100660
100643
  return urlString;
@@ -101908,7 +101891,6 @@ var Utils = /*#__PURE__*/Object.freeze({
101908
101891
  isPageable: isPageable,
101909
101892
  isSafari: isSafari,
101910
101893
  isTablet: isTablet,
101911
- isValidImageUrl: isValidImageUrl,
101912
101894
  isValidWebURL: isValidWebURL,
101913
101895
  isVideoFile: isVideoFile,
101914
101896
  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: 4/1/2026, 7:12:30 PM</p>
72
+ <p class="timestamp">Generated on: 4/7/2026, 11:41:59 AM</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-19.6462",
3
+ "version": "11.14.1-20.6468",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-app",
9
- "version": "11.14.1-19.6462",
9
+ "version": "11.14.1-20.6468",
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-19.6462",
27
- "@wavemaker/custom-widgets-m3": "11.14.1-19.6462",
26
+ "@wavemaker/app-ng-runtime": "11.14.1-20.6468",
27
+ "@wavemaker/custom-widgets-m3": "11.14.1-20.6468",
28
28
  "@wavemaker/focus-trap": "1.0.1",
29
- "@wavemaker/foundation-css": "11.14.1-19.6462",
29
+ "@wavemaker/foundation-css": "11.14.1-20.6468",
30
30
  "@wavemaker/nvd3": "1.8.15",
31
- "@wavemaker/variables": "11.14.1-19.6462",
31
+ "@wavemaker/variables": "11.14.1-20.6468",
32
32
  "@ztree/ztree_v3": "3.5.48",
33
33
  "acorn": "^8.15.0",
34
34
  "angular-imask": "7.6.1",
@@ -4782,19 +4782,19 @@
4782
4782
  }
4783
4783
  },
4784
4784
  "node_modules/@emnapi/core": {
4785
- "version": "1.9.1",
4786
- "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==",
4785
+ "version": "1.9.2",
4786
+ "integrity": "sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==",
4787
4787
  "dev": true,
4788
4788
  "license": "MIT",
4789
4789
  "optional": true,
4790
4790
  "dependencies": {
4791
- "@emnapi/wasi-threads": "1.2.0",
4791
+ "@emnapi/wasi-threads": "1.2.1",
4792
4792
  "tslib": "^2.4.0"
4793
4793
  }
4794
4794
  },
4795
4795
  "node_modules/@emnapi/runtime": {
4796
- "version": "1.9.1",
4797
- "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==",
4796
+ "version": "1.9.2",
4797
+ "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==",
4798
4798
  "dev": true,
4799
4799
  "license": "MIT",
4800
4800
  "optional": true,
@@ -4803,8 +4803,8 @@
4803
4803
  }
4804
4804
  },
4805
4805
  "node_modules/@emnapi/wasi-threads": {
4806
- "version": "1.2.0",
4807
- "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==",
4806
+ "version": "1.2.1",
4807
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
4808
4808
  "dev": true,
4809
4809
  "license": "MIT",
4810
4810
  "optional": true,
@@ -5482,8 +5482,8 @@
5482
5482
  }
5483
5483
  },
5484
5484
  "node_modules/@inquirer/core/node_modules/@types/node": {
5485
- "version": "22.19.15",
5486
- "integrity": "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==",
5485
+ "version": "22.19.17",
5486
+ "integrity": "sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q==",
5487
5487
  "dev": true,
5488
5488
  "license": "MIT",
5489
5489
  "dependencies": {
@@ -8028,8 +8028,8 @@
8028
8028
  }
8029
8029
  },
8030
8030
  "node_modules/@sinonjs/fake-timers": {
8031
- "version": "15.2.1",
8032
- "integrity": "sha512-QdfpQFIwYrTK8lFsII4bJ1AO1ZLbw7B+oxfP+/qSsiTrVerFp7aY2O+d2GNGrTxP58ezEbjbf7mTTLMsd7M7XQ==",
8031
+ "version": "15.3.0",
8032
+ "integrity": "sha512-m2xozxSfCIxjDdvbhIWazlP2i2aha/iUmbl94alpsIbd3iLTfeXgfBVbwyWogB6l++istyGZqamgA/EcqYf+Bg==",
8033
8033
  "dev": true,
8034
8034
  "license": "BSD-3-Clause",
8035
8035
  "dependencies": {
@@ -8387,8 +8387,8 @@
8387
8387
  }
8388
8388
  },
8389
8389
  "node_modules/@types/node": {
8390
- "version": "24.12.0",
8391
- "integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
8390
+ "version": "24.12.2",
8391
+ "integrity": "sha512-A1sre26ke7HDIuY/M23nd9gfB+nrmhtYyMINbjI1zHJxYteKR6qSMX56FsmjMcDb3SMcjJg5BiRRgOCC/yBD0g==",
8392
8392
  "dev": true,
8393
8393
  "license": "MIT",
8394
8394
  "dependencies": {
@@ -9027,8 +9027,8 @@
9027
9027
  }
9028
9028
  },
9029
9029
  "node_modules/@wavemaker/app-ng-runtime": {
9030
- "version": "11.14.1-19.6462",
9031
- "integrity": "sha512-Ab1wLtbHV0TCmav5zrRBn1TpAjpp30iA75VvksThy9ENYqG/IZKLujxq9rovhrFwzOVjvxrnZu75tbv4CROkoQ==",
9030
+ "version": "11.14.1-20.6468",
9031
+ "integrity": "sha512-9gujfCGtGA6n2Of9pC2V66Z+KJx1p7oovv+zV2qTiplXS/7cx9t2zx4rGDYxEF7tbT9egq8a3sDUqImw6LTCGQ==",
9032
9032
  "license": "MIT",
9033
9033
  "engines": {
9034
9034
  "node": ">=18.16.1",
@@ -9036,8 +9036,8 @@
9036
9036
  }
9037
9037
  },
9038
9038
  "node_modules/@wavemaker/custom-widgets-m3": {
9039
- "version": "11.14.1-19.6462",
9040
- "integrity": "sha512-eFp+hhYeiDDzvs71MixE211Pby7ADLE/wgUP0Bqgu6fw0/edsJKoVh23p6aGMBTvFgNWGYhAD9yM8LxLDKm2lw==",
9039
+ "version": "11.14.1-20.6468",
9040
+ "integrity": "sha512-N2wyPO+Opiin9zByewYBsrZU2vrtL37vhdmCRbvcpCEuhOI+n2XwjKDoTlToEojxHUMWBn4agYjZufcjuyVopw==",
9041
9041
  "license": "ISC"
9042
9042
  },
9043
9043
  "node_modules/@wavemaker/focus-trap": {
@@ -9050,8 +9050,8 @@
9050
9050
  }
9051
9051
  },
9052
9052
  "node_modules/@wavemaker/foundation-css": {
9053
- "version": "11.14.1-19.6462",
9054
- "integrity": "sha512-lkTdeYX6nb3U/+5XJHfTTWuInGaSEkVznLozkMWbbjLI/7RjJNs4M9I1DOJ8wEu+GiBz8MUORolvHn/xXLFycw==",
9053
+ "version": "11.14.1-20.6468",
9054
+ "integrity": "sha512-uiKQwFYbDrG/iQaGbO3W5H9hwObJJgaDRnWbQiWRQ2iUP6HDU8ZlHURVns0ZcJ2qNuW+19RmAEv5Kpu/RD73Lw==",
9055
9055
  "license": "ISC",
9056
9056
  "dependencies": {
9057
9057
  "chroma-js": "^3.1.2"
@@ -9066,8 +9066,8 @@
9066
9066
  }
9067
9067
  },
9068
9068
  "node_modules/@wavemaker/variables": {
9069
- "version": "11.14.1-19.6462",
9070
- "integrity": "sha512-AYf4eAnRbvN7Cg6i/eay3UBMzyFQHQYeDNgk3kuyYvub46SspekdODDjW6JFJer6EiQIzXvLpU5JKXEsJQv+0w==",
9069
+ "version": "11.14.1-20.6468",
9070
+ "integrity": "sha512-u2WyfAOpcc0yJd3gLdea6Lb8C3RSzpI6PaOkd0AAuO5P4L+GE7DJfhJiv66IxGLv07ldxtgFw/YDY1IlobpRWQ==",
9071
9071
  "license": "ISC",
9072
9072
  "dependencies": {
9073
9073
  "@metrichor/jmespath": "^0.3.1",
@@ -9885,8 +9885,8 @@
9885
9885
  "license": "MIT"
9886
9886
  },
9887
9887
  "node_modules/baseline-browser-mapping": {
9888
- "version": "2.10.13",
9889
- "integrity": "sha512-BL2sTuHOdy0YT1lYieUxTw/QMtPBC3pmlJC6xk8BBYVv6vcw3SGdKemQ+Xsx9ik2F/lYDO9tqsFQH1r9PFuHKw==",
9888
+ "version": "2.10.16",
9889
+ "integrity": "sha512-Lyf3aK28zpsD1yQMiiHD4RvVb6UdMoo8xzG2XzFIfR9luPzOpcBlAsT/qfB1XWS1bxWT+UtE4WmQgsp297FYOA==",
9890
9890
  "dev": true,
9891
9891
  "license": "Apache-2.0",
9892
9892
  "bin": {
@@ -10290,8 +10290,8 @@
10290
10290
  }
10291
10291
  },
10292
10292
  "node_modules/caniuse-lite": {
10293
- "version": "1.0.30001784",
10294
- "integrity": "sha512-WU346nBTklUV9YfUl60fqRbU5ZqyXlqvo1SgigE1OAXK5bFL8LL9q1K7aap3N739l4BvNqnkm3YrGHiY9sfUQw==",
10293
+ "version": "1.0.30001786",
10294
+ "integrity": "sha512-4oxTZEvqmLLrERwxO76yfKM7acZo310U+v4kqexI2TL1DkkUEMT8UijrxxcnVdxR3qkVf5awGRX+4Z6aPHVKrA==",
10295
10295
  "dev": true,
10296
10296
  "funding": [
10297
10297
  {
@@ -11950,8 +11950,8 @@
11950
11950
  "license": "MIT"
11951
11951
  },
11952
11952
  "node_modules/electron-to-chromium": {
11953
- "version": "1.5.330",
11954
- "integrity": "sha512-jFNydB5kFtYUobh4IkWUnXeyDbjf/r9gcUEXe1xcrcUxIGfTdzPXA+ld6zBRbwvgIGVzDll/LTIiDztEtckSnA==",
11953
+ "version": "1.5.331",
11954
+ "integrity": "sha512-IbxXrsTlD3hRodkLnbxAPP4OuJYdWCeM3IOdT+CpcMoIwIoDfCmRpEtSPfwBXxVkg9xmBeY7Lz2Eo2TDn/HC3Q==",
11955
11955
  "dev": true,
11956
11956
  "license": "ISC"
11957
11957
  },
@@ -16544,8 +16544,8 @@
16544
16544
  }
16545
16545
  },
16546
16546
  "node_modules/lodash": {
16547
- "version": "4.17.23",
16548
- "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
16547
+ "version": "4.18.1",
16548
+ "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
16549
16549
  "dev": true,
16550
16550
  "license": "MIT"
16551
16551
  },
@@ -18478,8 +18478,8 @@
18478
18478
  "license": "MIT"
18479
18479
  },
18480
18480
  "node_modules/node-releases": {
18481
- "version": "2.0.36",
18482
- "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
18481
+ "version": "2.0.37",
18482
+ "integrity": "sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==",
18483
18483
  "dev": true,
18484
18484
  "license": "MIT"
18485
18485
  },
@@ -19208,8 +19208,8 @@
19208
19208
  }
19209
19209
  },
19210
19210
  "node_modules/path-scurry/node_modules/lru-cache": {
19211
- "version": "11.2.7",
19212
- "integrity": "sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==",
19211
+ "version": "11.3.2",
19212
+ "integrity": "sha512-wgWa6FWQ3QRRJbIjbsldRJZxdxYngT/dO0I5Ynmlnin8qy7tC6xYzbcJjtN4wHLXtkbVwHzk0C+OejVw1XM+DQ==",
19213
19213
  "dev": true,
19214
19214
  "license": "BlueOak-1.0.0",
19215
19215
  "engines": {
@@ -20031,8 +20031,8 @@
20031
20031
  "license": "MIT"
20032
20032
  },
20033
20033
  "node_modules/regjsparser": {
20034
- "version": "0.13.0",
20035
- "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==",
20034
+ "version": "0.13.1",
20035
+ "integrity": "sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==",
20036
20036
  "dev": true,
20037
20037
  "license": "BSD-2-Clause",
20038
20038
  "dependencies": {
@@ -22168,18 +22168,18 @@
22168
22168
  }
22169
22169
  },
22170
22170
  "node_modules/ts-jest": {
22171
- "version": "29.4.6",
22172
- "integrity": "sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==",
22171
+ "version": "29.4.9",
22172
+ "integrity": "sha512-LTb9496gYPMCqjeDLdPrKuXtncudeV1yRZnF4Wo5l3SFi0RYEnYRNgMrFIdg+FHvfzjCyQk1cLncWVqiSX+EvQ==",
22173
22173
  "dev": true,
22174
22174
  "license": "MIT",
22175
22175
  "dependencies": {
22176
22176
  "bs-logger": "^0.2.6",
22177
22177
  "fast-json-stable-stringify": "^2.1.0",
22178
- "handlebars": "^4.7.8",
22178
+ "handlebars": "^4.7.9",
22179
22179
  "json5": "^2.2.3",
22180
22180
  "lodash.memoize": "^4.1.2",
22181
22181
  "make-error": "^1.3.6",
22182
- "semver": "^7.7.3",
22182
+ "semver": "^7.7.4",
22183
22183
  "type-fest": "^4.41.0",
22184
22184
  "yargs-parser": "^21.1.1"
22185
22185
  },
@@ -22196,7 +22196,7 @@
22196
22196
  "babel-jest": "^29.0.0 || ^30.0.0",
22197
22197
  "jest": "^29.0.0 || ^30.0.0",
22198
22198
  "jest-util": "^29.0.0 || ^30.0.0",
22199
- "typescript": ">=4.3 <6"
22199
+ "typescript": ">=4.3 <7"
22200
22200
  },
22201
22201
  "peerDependenciesMeta": {
22202
22202
  "@babel/core": {
package/package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.14.1-19.6462",
3
+ "version": "11.14.1-20.6468",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-app",
9
- "version": "11.14.1-19.6462",
9
+ "version": "11.14.1-20.6468",
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-19.6462",
27
- "@wavemaker/custom-widgets-m3": "11.14.1-19.6462",
26
+ "@wavemaker/app-ng-runtime": "11.14.1-20.6468",
27
+ "@wavemaker/custom-widgets-m3": "11.14.1-20.6468",
28
28
  "@wavemaker/focus-trap": "1.0.1",
29
- "@wavemaker/foundation-css": "11.14.1-19.6462",
29
+ "@wavemaker/foundation-css": "11.14.1-20.6468",
30
30
  "@wavemaker/nvd3": "1.8.15",
31
- "@wavemaker/variables": "11.14.1-19.6462",
31
+ "@wavemaker/variables": "11.14.1-20.6468",
32
32
  "@ztree/ztree_v3": "3.5.48",
33
33
  "acorn": "^8.15.0",
34
34
  "angular-imask": "7.6.1",
@@ -4782,19 +4782,19 @@
4782
4782
  }
4783
4783
  },
4784
4784
  "node_modules/@emnapi/core": {
4785
- "version": "1.9.1",
4786
- "integrity": "sha512-mukuNALVsoix/w1BJwFzwXBN/dHeejQtuVzcDsfOEsdpCumXb/E9j8w11h5S54tT1xhifGfbbSm/ICrObRb3KA==",
4785
+ "version": "1.9.2",
4786
+ "integrity": "sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==",
4787
4787
  "dev": true,
4788
4788
  "license": "MIT",
4789
4789
  "optional": true,
4790
4790
  "dependencies": {
4791
- "@emnapi/wasi-threads": "1.2.0",
4791
+ "@emnapi/wasi-threads": "1.2.1",
4792
4792
  "tslib": "^2.4.0"
4793
4793
  }
4794
4794
  },
4795
4795
  "node_modules/@emnapi/runtime": {
4796
- "version": "1.9.1",
4797
- "integrity": "sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==",
4796
+ "version": "1.9.2",
4797
+ "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==",
4798
4798
  "dev": true,
4799
4799
  "license": "MIT",
4800
4800
  "optional": true,
@@ -4803,8 +4803,8 @@
4803
4803
  }
4804
4804
  },
4805
4805
  "node_modules/@emnapi/wasi-threads": {
4806
- "version": "1.2.0",
4807
- "integrity": "sha512-N10dEJNSsUx41Z6pZsXU8FjPjpBEplgH24sfkmITrBED1/U2Esum9F3lfLrMjKHHjmi557zQn7kR9R+XWXu5Rg==",
4806
+ "version": "1.2.1",
4807
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
4808
4808
  "dev": true,
4809
4809
  "license": "MIT",
4810
4810
  "optional": true,
@@ -5482,8 +5482,8 @@
5482
5482
  }
5483
5483
  },
5484
5484
  "node_modules/@inquirer/core/node_modules/@types/node": {
5485
- "version": "22.19.15",
5486
- "integrity": "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==",
5485
+ "version": "22.19.17",
5486
+ "integrity": "sha512-wGdMcf+vPYM6jikpS/qhg6WiqSV/OhG+jeeHT/KlVqxYfD40iYJf9/AE1uQxVWFvU7MipKRkRv8NSHiCGgPr8Q==",
5487
5487
  "dev": true,
5488
5488
  "license": "MIT",
5489
5489
  "dependencies": {
@@ -8028,8 +8028,8 @@
8028
8028
  }
8029
8029
  },
8030
8030
  "node_modules/@sinonjs/fake-timers": {
8031
- "version": "15.2.1",
8032
- "integrity": "sha512-QdfpQFIwYrTK8lFsII4bJ1AO1ZLbw7B+oxfP+/qSsiTrVerFp7aY2O+d2GNGrTxP58ezEbjbf7mTTLMsd7M7XQ==",
8031
+ "version": "15.3.0",
8032
+ "integrity": "sha512-m2xozxSfCIxjDdvbhIWazlP2i2aha/iUmbl94alpsIbd3iLTfeXgfBVbwyWogB6l++istyGZqamgA/EcqYf+Bg==",
8033
8033
  "dev": true,
8034
8034
  "license": "BSD-3-Clause",
8035
8035
  "dependencies": {
@@ -8387,8 +8387,8 @@
8387
8387
  }
8388
8388
  },
8389
8389
  "node_modules/@types/node": {
8390
- "version": "24.12.0",
8391
- "integrity": "sha512-GYDxsZi3ChgmckRT9HPU0WEhKLP08ev/Yfcq2AstjrDASOYCSXeyjDsHg4v5t4jOj7cyDX3vmprafKlWIG9MXQ==",
8390
+ "version": "24.12.2",
8391
+ "integrity": "sha512-A1sre26ke7HDIuY/M23nd9gfB+nrmhtYyMINbjI1zHJxYteKR6qSMX56FsmjMcDb3SMcjJg5BiRRgOCC/yBD0g==",
8392
8392
  "dev": true,
8393
8393
  "license": "MIT",
8394
8394
  "dependencies": {
@@ -9027,8 +9027,8 @@
9027
9027
  }
9028
9028
  },
9029
9029
  "node_modules/@wavemaker/app-ng-runtime": {
9030
- "version": "11.14.1-19.6462",
9031
- "integrity": "sha512-Ab1wLtbHV0TCmav5zrRBn1TpAjpp30iA75VvksThy9ENYqG/IZKLujxq9rovhrFwzOVjvxrnZu75tbv4CROkoQ==",
9030
+ "version": "11.14.1-20.6468",
9031
+ "integrity": "sha512-9gujfCGtGA6n2Of9pC2V66Z+KJx1p7oovv+zV2qTiplXS/7cx9t2zx4rGDYxEF7tbT9egq8a3sDUqImw6LTCGQ==",
9032
9032
  "license": "MIT",
9033
9033
  "engines": {
9034
9034
  "node": ">=18.16.1",
@@ -9036,8 +9036,8 @@
9036
9036
  }
9037
9037
  },
9038
9038
  "node_modules/@wavemaker/custom-widgets-m3": {
9039
- "version": "11.14.1-19.6462",
9040
- "integrity": "sha512-eFp+hhYeiDDzvs71MixE211Pby7ADLE/wgUP0Bqgu6fw0/edsJKoVh23p6aGMBTvFgNWGYhAD9yM8LxLDKm2lw==",
9039
+ "version": "11.14.1-20.6468",
9040
+ "integrity": "sha512-N2wyPO+Opiin9zByewYBsrZU2vrtL37vhdmCRbvcpCEuhOI+n2XwjKDoTlToEojxHUMWBn4agYjZufcjuyVopw==",
9041
9041
  "license": "ISC"
9042
9042
  },
9043
9043
  "node_modules/@wavemaker/focus-trap": {
@@ -9050,8 +9050,8 @@
9050
9050
  }
9051
9051
  },
9052
9052
  "node_modules/@wavemaker/foundation-css": {
9053
- "version": "11.14.1-19.6462",
9054
- "integrity": "sha512-lkTdeYX6nb3U/+5XJHfTTWuInGaSEkVznLozkMWbbjLI/7RjJNs4M9I1DOJ8wEu+GiBz8MUORolvHn/xXLFycw==",
9053
+ "version": "11.14.1-20.6468",
9054
+ "integrity": "sha512-uiKQwFYbDrG/iQaGbO3W5H9hwObJJgaDRnWbQiWRQ2iUP6HDU8ZlHURVns0ZcJ2qNuW+19RmAEv5Kpu/RD73Lw==",
9055
9055
  "license": "ISC",
9056
9056
  "dependencies": {
9057
9057
  "chroma-js": "^3.1.2"
@@ -9066,8 +9066,8 @@
9066
9066
  }
9067
9067
  },
9068
9068
  "node_modules/@wavemaker/variables": {
9069
- "version": "11.14.1-19.6462",
9070
- "integrity": "sha512-AYf4eAnRbvN7Cg6i/eay3UBMzyFQHQYeDNgk3kuyYvub46SspekdODDjW6JFJer6EiQIzXvLpU5JKXEsJQv+0w==",
9069
+ "version": "11.14.1-20.6468",
9070
+ "integrity": "sha512-u2WyfAOpcc0yJd3gLdea6Lb8C3RSzpI6PaOkd0AAuO5P4L+GE7DJfhJiv66IxGLv07ldxtgFw/YDY1IlobpRWQ==",
9071
9071
  "license": "ISC",
9072
9072
  "dependencies": {
9073
9073
  "@metrichor/jmespath": "^0.3.1",
@@ -9885,8 +9885,8 @@
9885
9885
  "license": "MIT"
9886
9886
  },
9887
9887
  "node_modules/baseline-browser-mapping": {
9888
- "version": "2.10.13",
9889
- "integrity": "sha512-BL2sTuHOdy0YT1lYieUxTw/QMtPBC3pmlJC6xk8BBYVv6vcw3SGdKemQ+Xsx9ik2F/lYDO9tqsFQH1r9PFuHKw==",
9888
+ "version": "2.10.16",
9889
+ "integrity": "sha512-Lyf3aK28zpsD1yQMiiHD4RvVb6UdMoo8xzG2XzFIfR9luPzOpcBlAsT/qfB1XWS1bxWT+UtE4WmQgsp297FYOA==",
9890
9890
  "dev": true,
9891
9891
  "license": "Apache-2.0",
9892
9892
  "bin": {
@@ -10290,8 +10290,8 @@
10290
10290
  }
10291
10291
  },
10292
10292
  "node_modules/caniuse-lite": {
10293
- "version": "1.0.30001784",
10294
- "integrity": "sha512-WU346nBTklUV9YfUl60fqRbU5ZqyXlqvo1SgigE1OAXK5bFL8LL9q1K7aap3N739l4BvNqnkm3YrGHiY9sfUQw==",
10293
+ "version": "1.0.30001786",
10294
+ "integrity": "sha512-4oxTZEvqmLLrERwxO76yfKM7acZo310U+v4kqexI2TL1DkkUEMT8UijrxxcnVdxR3qkVf5awGRX+4Z6aPHVKrA==",
10295
10295
  "dev": true,
10296
10296
  "funding": [
10297
10297
  {
@@ -11950,8 +11950,8 @@
11950
11950
  "license": "MIT"
11951
11951
  },
11952
11952
  "node_modules/electron-to-chromium": {
11953
- "version": "1.5.330",
11954
- "integrity": "sha512-jFNydB5kFtYUobh4IkWUnXeyDbjf/r9gcUEXe1xcrcUxIGfTdzPXA+ld6zBRbwvgIGVzDll/LTIiDztEtckSnA==",
11953
+ "version": "1.5.331",
11954
+ "integrity": "sha512-IbxXrsTlD3hRodkLnbxAPP4OuJYdWCeM3IOdT+CpcMoIwIoDfCmRpEtSPfwBXxVkg9xmBeY7Lz2Eo2TDn/HC3Q==",
11955
11955
  "dev": true,
11956
11956
  "license": "ISC"
11957
11957
  },
@@ -16544,8 +16544,8 @@
16544
16544
  }
16545
16545
  },
16546
16546
  "node_modules/lodash": {
16547
- "version": "4.17.23",
16548
- "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
16547
+ "version": "4.18.1",
16548
+ "integrity": "sha512-dMInicTPVE8d1e5otfwmmjlxkZoUpiVLwyeTdUsi/Caj/gfzzblBcCE5sRHV/AsjuCmxWrte2TNGSYuCeCq+0Q==",
16549
16549
  "dev": true,
16550
16550
  "license": "MIT"
16551
16551
  },
@@ -18478,8 +18478,8 @@
18478
18478
  "license": "MIT"
18479
18479
  },
18480
18480
  "node_modules/node-releases": {
18481
- "version": "2.0.36",
18482
- "integrity": "sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==",
18481
+ "version": "2.0.37",
18482
+ "integrity": "sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==",
18483
18483
  "dev": true,
18484
18484
  "license": "MIT"
18485
18485
  },
@@ -19208,8 +19208,8 @@
19208
19208
  }
19209
19209
  },
19210
19210
  "node_modules/path-scurry/node_modules/lru-cache": {
19211
- "version": "11.2.7",
19212
- "integrity": "sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==",
19211
+ "version": "11.3.2",
19212
+ "integrity": "sha512-wgWa6FWQ3QRRJbIjbsldRJZxdxYngT/dO0I5Ynmlnin8qy7tC6xYzbcJjtN4wHLXtkbVwHzk0C+OejVw1XM+DQ==",
19213
19213
  "dev": true,
19214
19214
  "license": "BlueOak-1.0.0",
19215
19215
  "engines": {
@@ -20031,8 +20031,8 @@
20031
20031
  "license": "MIT"
20032
20032
  },
20033
20033
  "node_modules/regjsparser": {
20034
- "version": "0.13.0",
20035
- "integrity": "sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==",
20034
+ "version": "0.13.1",
20035
+ "integrity": "sha512-dLsljMd9sqwRkby8zhO1gSg3PnJIBFid8f4CQj/sXx+7cKx+E7u0PKhZ+U4wmhx7EfmtvnA318oVaIkAB1lRJw==",
20036
20036
  "dev": true,
20037
20037
  "license": "BSD-2-Clause",
20038
20038
  "dependencies": {
@@ -22168,18 +22168,18 @@
22168
22168
  }
22169
22169
  },
22170
22170
  "node_modules/ts-jest": {
22171
- "version": "29.4.6",
22172
- "integrity": "sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==",
22171
+ "version": "29.4.9",
22172
+ "integrity": "sha512-LTb9496gYPMCqjeDLdPrKuXtncudeV1yRZnF4Wo5l3SFi0RYEnYRNgMrFIdg+FHvfzjCyQk1cLncWVqiSX+EvQ==",
22173
22173
  "dev": true,
22174
22174
  "license": "MIT",
22175
22175
  "dependencies": {
22176
22176
  "bs-logger": "^0.2.6",
22177
22177
  "fast-json-stable-stringify": "^2.1.0",
22178
- "handlebars": "^4.7.8",
22178
+ "handlebars": "^4.7.9",
22179
22179
  "json5": "^2.2.3",
22180
22180
  "lodash.memoize": "^4.1.2",
22181
22181
  "make-error": "^1.3.6",
22182
- "semver": "^7.7.3",
22182
+ "semver": "^7.7.4",
22183
22183
  "type-fest": "^4.41.0",
22184
22184
  "yargs-parser": "^21.1.1"
22185
22185
  },
@@ -22196,7 +22196,7 @@
22196
22196
  "babel-jest": "^29.0.0 || ^30.0.0",
22197
22197
  "jest": "^29.0.0 || ^30.0.0",
22198
22198
  "jest-util": "^29.0.0 || ^30.0.0",
22199
- "typescript": ">=4.3 <6"
22199
+ "typescript": ">=4.3 <7"
22200
22200
  },
22201
22201
  "peerDependenciesMeta": {
22202
22202
  "@babel/core": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.14.1-19.6462",
3
+ "version": "11.14.1-20.6468",
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-19.6462",
39
+ "@wavemaker/custom-widgets-m3": "11.14.1-20.6468",
40
40
  "@wavemaker/focus-trap": "1.0.1",
41
- "@wavemaker/foundation-css": "11.14.1-19.6462",
41
+ "@wavemaker/foundation-css": "11.14.1-20.6468",
42
42
  "@wavemaker/nvd3": "1.8.15",
43
- "@wavemaker/variables": "11.14.1-19.6462",
43
+ "@wavemaker/variables": "11.14.1-20.6468",
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-19.6462"
65
+ "@wavemaker/app-ng-runtime": "11.14.1-20.6468"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",