@wavemaker/angular-codegen 11.14.1-12.6379 → 11.14.1-14.6394

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-app",
3
- "version": "11.14.1-12.6379",
3
+ "version": "11.14.1-14.6394",
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-12.6379",
39
+ "@wavemaker/custom-widgets-m3": "11.14.1-14.6394",
40
40
  "@wavemaker/focus-trap": "1.0.1",
41
- "@wavemaker/foundation-css": "11.14.1-12.6379",
42
- "@wavemaker/nvd3": "1.8.16",
43
- "@wavemaker/variables": "11.14.1-12.6379",
41
+ "@wavemaker/foundation-css": "11.14.1-14.6394",
42
+ "@wavemaker/nvd3": "1.8.15",
43
+ "@wavemaker/variables": "11.14.1-14.6394",
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-12.6379"
65
+ "@wavemaker/app-ng-runtime": "11.14.1-14.6394"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@ampproject/rollup-plugin-closure-compiler": "^0.27.0",
@@ -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$1(data)) {
147854
+ if (_.isArray(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$1(formattedData[0])) {
147860
- formattedData = flatten$2(formattedData);
147859
+ if (_.isArray(formattedData[0])) {
147860
+ formattedData = _.flatten(formattedData);
147861
147861
  }
147862
147862
  listenerFn(formattedData, oldVal);
147863
147863
  }
@@ -147902,6 +147902,19 @@ 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
+ };*/
147905
147918
  const $appDigest$1 = (() => {
147906
147919
  return (force) => {
147907
147920
  {
@@ -147964,8 +147977,8 @@ var Operation$1;
147964
147977
  const DataSource$1 = {
147965
147978
  Operation: Operation$1
147966
147979
  };
147967
- class App {
147968
- }
147980
+ let App$1 = class App {
147981
+ };
147969
147982
  let AbstractI18nService$1 = class AbstractI18nService {
147970
147983
  };
147971
147984
 
@@ -147983,6 +147996,7 @@ const REGEX$1 = {
147983
147996
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
147984
147997
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
147985
147998
  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,
147986
148000
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
147987
148001
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
147988
148002
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -148205,6 +148219,9 @@ const isVideoFile$1 = (fileName) => {
148205
148219
  const isValidWebURL$1 = (url) => {
148206
148220
  return (REGEX$1.VALID_WEB_URL).test(url);
148207
148221
  };
148222
+ const isValidImageUrl$1 = (url) => {
148223
+ return (REGEX$1.VALID_IMAGE_URL).test(url?.trim());
148224
+ };
148208
148225
  /*This function returns the url to the resource after checking the validity of url*/
148209
148226
  const getResourceURL$1 = (urlString) => {
148210
148227
  return urlString;
@@ -149458,6 +149475,7 @@ var Utils$1 = /*#__PURE__*/Object.freeze({
149458
149475
  isPageable: isPageable$1,
149459
149476
  isSafari: isSafari$1,
149460
149477
  isTablet: isTablet$1,
149478
+ isValidImageUrl: isValidImageUrl$1,
149461
149479
  isValidWebURL: isValidWebURL$1,
149462
149480
  isVideoFile: isVideoFile$1,
149463
149481
  loadScript: loadScript$1,
@@ -150699,7 +150717,7 @@ class ToDatePipe extends WmPipe {
150699
150717
  this.app = app;
150700
150718
  this.customPipeManager = customPipeManager;
150701
150719
  }
150702
- static { this.ɵfac = function ToDatePipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ToDatePipe)(ɵɵdirectiveInject(DatePipe, 16), ɵɵdirectiveInject(AbstractI18nService$1, 16), ɵɵdirectiveInject(App, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
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)); }; }
150703
150721
  static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "toDate", type: ToDatePipe, pure: true, standalone: true }); }
150704
150722
  }
150705
150723
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(ToDatePipe, [{
@@ -150708,7 +150726,7 @@ class ToDatePipe extends WmPipe {
150708
150726
  standalone: true,
150709
150727
  name: 'toDate'
150710
150728
  }]
150711
- }], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: App }, { type: CustomPipeManager$1 }], null); })();
150729
+ }], () => [{ type: DatePipe }, { type: AbstractI18nService$1 }, { type: App$1 }, { type: CustomPipeManager$1 }], null); })();
150712
150730
  class ToNumberPipe {
150713
150731
  transform(data, fracSize) {
150714
150732
  if (fracSize && !String(fracSize).match(/^(\d+)?\.((\d+)(-(\d+))?)?$/)) {
@@ -150818,7 +150836,7 @@ class CustomPipe {
150818
150836
  return data;
150819
150837
  }
150820
150838
  }
150821
- static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(App, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
150839
+ static { this.ɵfac = function CustomPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CustomPipe)(ɵɵdirectiveInject(App$1, 16), ɵɵdirectiveInject(CustomPipeManager$1, 16)); }; }
150822
150840
  static { this.ɵpipe = /*@__PURE__*/ ɵɵdefinePipe({ name: "custom", type: CustomPipe, pure: true, standalone: true }); }
150823
150841
  }
150824
150842
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(CustomPipe, [{
@@ -150827,7 +150845,7 @@ class CustomPipe {
150827
150845
  standalone: true,
150828
150846
  name: 'custom'
150829
150847
  }]
150830
- }], () => [{ type: App }, { type: CustomPipeManager$1 }], null); })();
150848
+ }], () => [{ type: App$1 }, { type: CustomPipeManager$1 }], null); })();
150831
150849
  class TimeFromNowPipe {
150832
150850
  transform(data) {
150833
150851
  let timestamp;
@@ -203461,13 +203479,13 @@ const FIRST_TIME_WATCH = {};
203461
203479
  Object.freeze(FIRST_TIME_WATCH);
203462
203480
  const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
203463
203481
  let data = newVal, formattedData;
203464
- if (isArray(data)) {
203482
+ if (_.isArray(data)) {
203465
203483
  formattedData = data.map(function (datum) {
203466
203484
  return findValueOf(datum, restExpr);
203467
203485
  });
203468
203486
  // If resulting structure is an array of array, flatten it
203469
- if (isArray(formattedData[0])) {
203470
- formattedData = flatten(formattedData);
203487
+ if (_.isArray(formattedData[0])) {
203488
+ formattedData = _.flatten(formattedData);
203471
203489
  }
203472
203490
  listenerFn(formattedData, oldVal);
203473
203491
  }
@@ -203512,6 +203530,19 @@ const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.n
203512
203530
  };
203513
203531
  const $unwatch = identifier => registry.delete(identifier);
203514
203532
  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
+ };*/
203515
203546
  const $appDigest = (() => {
203516
203547
  return (force) => {
203517
203548
  {
@@ -203574,6 +203605,8 @@ var Operation;
203574
203605
  const DataSource = {
203575
203606
  Operation
203576
203607
  };
203608
+ class App {
203609
+ }
203577
203610
  class AbstractI18nService {
203578
203611
  }
203579
203612
 
@@ -203591,6 +203624,7 @@ const REGEX = {
203591
203624
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
203592
203625
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
203593
203626
  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,
203594
203628
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
203595
203629
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
203596
203630
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -203813,6 +203847,9 @@ const isVideoFile = (fileName) => {
203813
203847
  const isValidWebURL = (url) => {
203814
203848
  return (REGEX.VALID_WEB_URL).test(url);
203815
203849
  };
203850
+ const isValidImageUrl = (url) => {
203851
+ return (REGEX.VALID_IMAGE_URL).test(url?.trim());
203852
+ };
203816
203853
  /*This function returns the url to the resource after checking the validity of url*/
203817
203854
  const getResourceURL = (urlString) => {
203818
203855
  return urlString;
@@ -205066,6 +205103,7 @@ var Utils = /*#__PURE__*/Object.freeze({
205066
205103
  isPageable: isPageable,
205067
205104
  isSafari: isSafari,
205068
205105
  isTablet: isTablet,
205106
+ isValidImageUrl: isValidImageUrl,
205069
205107
  isValidWebURL: isValidWebURL,
205070
205108
  isVideoFile: isVideoFile,
205071
205109
  loadScript: loadScript,
@@ -207905,7 +207943,7 @@ class PipeProvider {
207905
207943
  this.preparePipeMeta(CurrencyPipe$1, 'currency', true, [this._locale]),
207906
207944
  this.preparePipeMeta(DatePipe$1, 'date', true, [this._locale]),
207907
207945
  this.preparePipeMeta(ToDatePipe, 'toDate', true, [
207908
- new DatePipe$1(this._locale), undefined, this.injector.get(CustomPipeManager)
207946
+ new DatePipe$1(this._locale), undefined, this.injector.get(App), this.injector.get(CustomPipeManager)
207909
207947
  ]),
207910
207948
  this.preparePipeMeta(ToNumberPipe, 'toNumber', true, [
207911
207949
  new DecimalPipe$1(this._locale),
@@ -207922,7 +207960,7 @@ class PipeProvider {
207922
207960
  new DecimalPipe$1(this._locale)
207923
207961
  ]),
207924
207962
  this.preparePipeMeta(StringToNumberPipe, 'stringToNumber', true),
207925
- this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(CustomPipeManager)]),
207963
+ this.preparePipeMeta(CustomPipe, 'custom', true, [this.injector.get(App), this.injector.get(CustomPipeManager)]),
207926
207964
  this.preparePipeMeta(TrustAsPipe, 'trustAs', true, [this.domSanitizer]),
207927
207965
  this.preparePipeMeta(SanitizePipe, 'sanitize', true, [this.domSanitizer]),
207928
207966
  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$1(formattedData);
100267
+ if (_.isArray(formattedData[0])) {
100268
+ formattedData = _.flatten(formattedData);
100269
100269
  }
100270
100270
  listenerFn(formattedData, oldVal);
100271
100271
  }
@@ -100310,6 +100310,19 @@ 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
+ };*/
100313
100326
  const $appDigest = (() => {
100314
100327
  return (force) => {
100315
100328
  {
@@ -100387,6 +100400,7 @@ const REGEX = {
100387
100400
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
100388
100401
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
100389
100402
  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,
100390
100404
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
100391
100405
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
100392
100406
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -100609,6 +100623,9 @@ const isVideoFile = (fileName) => {
100609
100623
  const isValidWebURL = (url) => {
100610
100624
  return (REGEX.VALID_WEB_URL).test(url);
100611
100625
  };
100626
+ const isValidImageUrl = (url) => {
100627
+ return (REGEX.VALID_IMAGE_URL).test(url?.trim());
100628
+ };
100612
100629
  /*This function returns the url to the resource after checking the validity of url*/
100613
100630
  const getResourceURL = (urlString) => {
100614
100631
  return urlString;
@@ -101862,6 +101879,7 @@ var Utils = /*#__PURE__*/Object.freeze({
101862
101879
  isPageable: isPageable,
101863
101880
  isSafari: isSafari,
101864
101881
  isTablet: isTablet,
101882
+ isValidImageUrl: isValidImageUrl,
101865
101883
  isValidWebURL: isValidWebURL,
101866
101884
  isVideoFile: isVideoFile,
101867
101885
  loadScript: loadScript,
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.14.1-12.6379",
3
+ "version": "11.14.1-14.6394",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-codegen",
9
- "version": "11.14.1-12.6379",
9
+ "version": "11.14.1-14.6394",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "@wavemaker/angular-app": "11.14.1-12.6379",
12
+ "@wavemaker/angular-app": "11.14.1-14.6394",
13
13
  "archiver": "^7.0.1",
14
14
  "cheerio": "1.0.0-rc.12",
15
15
  "decode-uri-component": "^0.2.0",
@@ -1340,8 +1340,8 @@
1340
1340
  }
1341
1341
  },
1342
1342
  "node_modules/@types/node": {
1343
- "version": "25.0.9",
1344
- "integrity": "sha512-/rpCXHlCWeqClNBwUhDcusJxXYDjZTyE8v5oTO7WbL8eij2nKhUeU89/6xgjU7N4/Vh3He0BtyhJdQbDyhiXAw==",
1343
+ "version": "25.1.0",
1344
+ "integrity": "sha512-t7frlewr6+cbx+9Ohpl0NOTKXZNV9xHRmNOvql47BFJKcEG1CxtxlPEEe+gR9uhVWM4DwhnvTF110mIL4yP9RA==",
1345
1345
  "dev": true,
1346
1346
  "license": "MIT",
1347
1347
  "dependencies": {
@@ -1376,8 +1376,8 @@
1376
1376
  "license": "MIT"
1377
1377
  },
1378
1378
  "node_modules/@wavemaker/angular-app": {
1379
- "version": "11.14.1-12.6379",
1380
- "integrity": "sha512-wM4ZIOsr57r0T9LC7IAoqTqZ/es/sldof/UF70Ko5p+vxeuKU47N10dfJ2hXdoBSPW2cZmDoHxSEEKIgXpzxPQ==",
1379
+ "version": "11.14.1-14.6394",
1380
+ "integrity": "sha512-Dadv8uQ2SIKOxpQF6oB3jJ3+S5CSwQsxPcPQRbRE7N7d3wvChxskROtR4k5Vr6hRM9Kfw3U5kESYc6Bfcs45fg==",
1381
1381
  "dependencies": {
1382
1382
  "@angular/animations": "18.2.13",
1383
1383
  "@angular/common": "18.2.13",
@@ -1394,12 +1394,12 @@
1394
1394
  "@fullcalendar/list": "6.1.18",
1395
1395
  "@fullcalendar/timegrid": "6.1.18",
1396
1396
  "@metrichor/jmespath": "0.3.1",
1397
- "@wavemaker/app-ng-runtime": "11.14.1-12.6379",
1398
- "@wavemaker/custom-widgets-m3": "11.14.1-12.6379",
1397
+ "@wavemaker/app-ng-runtime": "11.14.1-14.6394",
1398
+ "@wavemaker/custom-widgets-m3": "11.14.1-14.6394",
1399
1399
  "@wavemaker/focus-trap": "1.0.1",
1400
- "@wavemaker/foundation-css": "11.14.1-12.6379",
1401
- "@wavemaker/nvd3": "1.8.16",
1402
- "@wavemaker/variables": "11.14.1-12.6379",
1400
+ "@wavemaker/foundation-css": "11.14.1-14.6394",
1401
+ "@wavemaker/nvd3": "1.8.15",
1402
+ "@wavemaker/variables": "11.14.1-14.6394",
1403
1403
  "@ztree/ztree_v3": "3.5.48",
1404
1404
  "acorn": "^8.15.0",
1405
1405
  "angular-imask": "7.6.1",
@@ -1434,8 +1434,8 @@
1434
1434
  }
1435
1435
  },
1436
1436
  "node_modules/@wavemaker/app-ng-runtime": {
1437
- "version": "11.14.1-12.6379",
1438
- "integrity": "sha512-YSlyjzLBG9bUgo+fC76rVFWH5w47jpKEUDLKQoO0eF8JJhi9mQoS5738bOGOBQ4mQiXB9gZNO+hokrfwKyvSvg==",
1437
+ "version": "11.14.1-14.6394",
1438
+ "integrity": "sha512-ABxtC0FNPrmxbWJ1p5RT/CS1EA9E5cT+XmmE1InFk8Q6mQtKdNGZGZ2niC0/4J0IYm/Yp/RWzf1LUyGlmm5gFQ==",
1439
1439
  "license": "MIT",
1440
1440
  "engines": {
1441
1441
  "node": ">=18.16.1",
@@ -1443,8 +1443,8 @@
1443
1443
  }
1444
1444
  },
1445
1445
  "node_modules/@wavemaker/custom-widgets-m3": {
1446
- "version": "11.14.1-12.6379",
1447
- "integrity": "sha512-ekISAckzP2LrCM+wi7IcRbg7Lh2CbioMG+uDHAfXkAuPBVjU1rToyH59vxYqhQyX/t1DS7DuQ58ad8rW7Pguwg==",
1446
+ "version": "11.14.1-14.6394",
1447
+ "integrity": "sha512-R028NCFWtopAPxxV4a/EJRPJggqJvzosMZh1yse5sl/CfYcqipplDbZunbyuOk2QzbEKxn3UdLG3CGCgSWK7lQ==",
1448
1448
  "license": "ISC"
1449
1449
  },
1450
1450
  "node_modules/@wavemaker/focus-trap": {
@@ -1457,24 +1457,24 @@
1457
1457
  }
1458
1458
  },
1459
1459
  "node_modules/@wavemaker/foundation-css": {
1460
- "version": "11.14.1-12.6379",
1461
- "integrity": "sha512-8aXjqrXYx4vsQeA0D09OVZvUp+ILrW6GArDzLo/yWtBPN5zmiP6yWJMxjANnimct058cmvx/ysthp7DqYGEu8Q==",
1460
+ "version": "11.14.1-14.6394",
1461
+ "integrity": "sha512-+G6F+EkK6XwCA6xu2kTUwOjG3GFWoxduuPJP8VVFjnLuDcVVVXHc/RLpOMG0gMNGfmNpJ1t97ww+nDOjR6JfFA==",
1462
1462
  "license": "ISC",
1463
1463
  "dependencies": {
1464
1464
  "chroma-js": "^3.1.2"
1465
1465
  }
1466
1466
  },
1467
1467
  "node_modules/@wavemaker/nvd3": {
1468
- "version": "1.8.16",
1469
- "integrity": "sha512-gzgcW3Gr3MYUpYqbhWXVlUq8NhWpBFCz/QKF+Ekvi6pUjTHDLfe264HgiyrPs0PbCPsqN7Z/cFNbQTYJZC+fzQ==",
1468
+ "version": "1.8.15",
1469
+ "integrity": "sha512-ufRoz09lG1vAMfc+Qc0TC912m/bTmzQYTCJpaQ0T525i6J3+tjmT7dLbTLxRlA1KTsRFRHTaLi410R8RCYMjRg==",
1470
1470
  "license": "Apache-2.0",
1471
1471
  "peerDependencies": {
1472
1472
  "d3": "7.8.5"
1473
1473
  }
1474
1474
  },
1475
1475
  "node_modules/@wavemaker/variables": {
1476
- "version": "11.14.1-12.6379",
1477
- "integrity": "sha512-+t9eqICvl3MbIdgmBg4OVAIFXL1XJaNC54sM7EQcY5uSnoaj2oan8zc+2I5cKg/lTUxxPqeW8/wfGBc3YNMDaA==",
1476
+ "version": "11.14.1-14.6394",
1477
+ "integrity": "sha512-pjbpnTDnlBjSgQ2cw65GBKyRT7o7OVAaeIokTjXXAYsdetyrkYOQHQ7Xki7GmDjVSncK8eLzqSNjHRLvaS/M9A==",
1478
1478
  "license": "ISC",
1479
1479
  "dependencies": {
1480
1480
  "@metrichor/jmespath": "^0.3.1",
@@ -1909,8 +1909,8 @@
1909
1909
  "license": "MIT"
1910
1910
  },
1911
1911
  "node_modules/baseline-browser-mapping": {
1912
- "version": "2.9.16",
1913
- "integrity": "sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==",
1912
+ "version": "2.9.19",
1913
+ "integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
1914
1914
  "dev": true,
1915
1915
  "license": "Apache-2.0",
1916
1916
  "bin": {
@@ -2190,8 +2190,8 @@
2190
2190
  }
2191
2191
  },
2192
2192
  "node_modules/caniuse-lite": {
2193
- "version": "1.0.30001765",
2194
- "integrity": "sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==",
2193
+ "version": "1.0.30001766",
2194
+ "integrity": "sha512-4C0lfJ0/YPjJQHagaE9x2Elb69CIqEPZeG0anQt9SIvIoOH4a4uaRl73IavyO+0qZh6MDLH//DrXThEYKHkmYA==",
2195
2195
  "dev": true,
2196
2196
  "funding": [
2197
2197
  {
@@ -2533,8 +2533,8 @@
2533
2533
  "license": "MIT"
2534
2534
  },
2535
2535
  "node_modules/core-js-pure": {
2536
- "version": "3.47.0",
2537
- "integrity": "sha512-BcxeDbzUrRnXGYIVAGFtcGQVNpFcUhVjr6W7F8XktvQW2iJP9e66GP6xdKotCRFlrxBvNIBrhwKteRXqMV86Nw==",
2536
+ "version": "3.48.0",
2537
+ "integrity": "sha512-1slJgk89tWC51HQ1AEqG+s2VuwpTRr8ocu4n20QUcH1v9lAN0RXen0Q0AABa/DK1I7RrNWLucplOHMx8hfTGTw==",
2538
2538
  "hasInstallScript": true,
2539
2539
  "license": "MIT",
2540
2540
  "funding": {
@@ -3277,8 +3277,8 @@
3277
3277
  "license": "MIT"
3278
3278
  },
3279
3279
  "node_modules/electron-to-chromium": {
3280
- "version": "1.5.267",
3281
- "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
3280
+ "version": "1.5.283",
3281
+ "integrity": "sha512-3vifjt1HgrGW/h76UEeny+adYApveS9dH2h3p57JYzBSXJIKUJAvtmIytDKjcSCt9xHfrNCFJ7gts6vkhuq++w==",
3282
3282
  "dev": true,
3283
3283
  "license": "ISC"
3284
3284
  },
@@ -5456,8 +5456,8 @@
5456
5456
  }
5457
5457
  },
5458
5458
  "node_modules/lodash": {
5459
- "version": "4.17.21",
5460
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
5459
+ "version": "4.17.23",
5460
+ "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
5461
5461
  "license": "MIT"
5462
5462
  },
5463
5463
  "node_modules/lodash-es": {
package/package-lock.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.14.1-12.6379",
3
+ "version": "11.14.1-14.6394",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-codegen",
9
- "version": "11.14.1-12.6379",
9
+ "version": "11.14.1-14.6394",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "@wavemaker/angular-app": "11.14.1-12.6379",
12
+ "@wavemaker/angular-app": "11.14.1-14.6394",
13
13
  "archiver": "^7.0.1",
14
14
  "cheerio": "1.0.0-rc.12",
15
15
  "decode-uri-component": "^0.2.0",
@@ -1340,8 +1340,8 @@
1340
1340
  }
1341
1341
  },
1342
1342
  "node_modules/@types/node": {
1343
- "version": "25.0.9",
1344
- "integrity": "sha512-/rpCXHlCWeqClNBwUhDcusJxXYDjZTyE8v5oTO7WbL8eij2nKhUeU89/6xgjU7N4/Vh3He0BtyhJdQbDyhiXAw==",
1343
+ "version": "25.1.0",
1344
+ "integrity": "sha512-t7frlewr6+cbx+9Ohpl0NOTKXZNV9xHRmNOvql47BFJKcEG1CxtxlPEEe+gR9uhVWM4DwhnvTF110mIL4yP9RA==",
1345
1345
  "dev": true,
1346
1346
  "license": "MIT",
1347
1347
  "dependencies": {
@@ -1376,8 +1376,8 @@
1376
1376
  "license": "MIT"
1377
1377
  },
1378
1378
  "node_modules/@wavemaker/angular-app": {
1379
- "version": "11.14.1-12.6379",
1380
- "integrity": "sha512-wM4ZIOsr57r0T9LC7IAoqTqZ/es/sldof/UF70Ko5p+vxeuKU47N10dfJ2hXdoBSPW2cZmDoHxSEEKIgXpzxPQ==",
1379
+ "version": "11.14.1-14.6394",
1380
+ "integrity": "sha512-Dadv8uQ2SIKOxpQF6oB3jJ3+S5CSwQsxPcPQRbRE7N7d3wvChxskROtR4k5Vr6hRM9Kfw3U5kESYc6Bfcs45fg==",
1381
1381
  "dependencies": {
1382
1382
  "@angular/animations": "18.2.13",
1383
1383
  "@angular/common": "18.2.13",
@@ -1394,12 +1394,12 @@
1394
1394
  "@fullcalendar/list": "6.1.18",
1395
1395
  "@fullcalendar/timegrid": "6.1.18",
1396
1396
  "@metrichor/jmespath": "0.3.1",
1397
- "@wavemaker/app-ng-runtime": "11.14.1-12.6379",
1398
- "@wavemaker/custom-widgets-m3": "11.14.1-12.6379",
1397
+ "@wavemaker/app-ng-runtime": "11.14.1-14.6394",
1398
+ "@wavemaker/custom-widgets-m3": "11.14.1-14.6394",
1399
1399
  "@wavemaker/focus-trap": "1.0.1",
1400
- "@wavemaker/foundation-css": "11.14.1-12.6379",
1401
- "@wavemaker/nvd3": "1.8.16",
1402
- "@wavemaker/variables": "11.14.1-12.6379",
1400
+ "@wavemaker/foundation-css": "11.14.1-14.6394",
1401
+ "@wavemaker/nvd3": "1.8.15",
1402
+ "@wavemaker/variables": "11.14.1-14.6394",
1403
1403
  "@ztree/ztree_v3": "3.5.48",
1404
1404
  "acorn": "^8.15.0",
1405
1405
  "angular-imask": "7.6.1",
@@ -1434,8 +1434,8 @@
1434
1434
  }
1435
1435
  },
1436
1436
  "node_modules/@wavemaker/app-ng-runtime": {
1437
- "version": "11.14.1-12.6379",
1438
- "integrity": "sha512-YSlyjzLBG9bUgo+fC76rVFWH5w47jpKEUDLKQoO0eF8JJhi9mQoS5738bOGOBQ4mQiXB9gZNO+hokrfwKyvSvg==",
1437
+ "version": "11.14.1-14.6394",
1438
+ "integrity": "sha512-ABxtC0FNPrmxbWJ1p5RT/CS1EA9E5cT+XmmE1InFk8Q6mQtKdNGZGZ2niC0/4J0IYm/Yp/RWzf1LUyGlmm5gFQ==",
1439
1439
  "license": "MIT",
1440
1440
  "engines": {
1441
1441
  "node": ">=18.16.1",
@@ -1443,8 +1443,8 @@
1443
1443
  }
1444
1444
  },
1445
1445
  "node_modules/@wavemaker/custom-widgets-m3": {
1446
- "version": "11.14.1-12.6379",
1447
- "integrity": "sha512-ekISAckzP2LrCM+wi7IcRbg7Lh2CbioMG+uDHAfXkAuPBVjU1rToyH59vxYqhQyX/t1DS7DuQ58ad8rW7Pguwg==",
1446
+ "version": "11.14.1-14.6394",
1447
+ "integrity": "sha512-R028NCFWtopAPxxV4a/EJRPJggqJvzosMZh1yse5sl/CfYcqipplDbZunbyuOk2QzbEKxn3UdLG3CGCgSWK7lQ==",
1448
1448
  "license": "ISC"
1449
1449
  },
1450
1450
  "node_modules/@wavemaker/focus-trap": {
@@ -1457,24 +1457,24 @@
1457
1457
  }
1458
1458
  },
1459
1459
  "node_modules/@wavemaker/foundation-css": {
1460
- "version": "11.14.1-12.6379",
1461
- "integrity": "sha512-8aXjqrXYx4vsQeA0D09OVZvUp+ILrW6GArDzLo/yWtBPN5zmiP6yWJMxjANnimct058cmvx/ysthp7DqYGEu8Q==",
1460
+ "version": "11.14.1-14.6394",
1461
+ "integrity": "sha512-+G6F+EkK6XwCA6xu2kTUwOjG3GFWoxduuPJP8VVFjnLuDcVVVXHc/RLpOMG0gMNGfmNpJ1t97ww+nDOjR6JfFA==",
1462
1462
  "license": "ISC",
1463
1463
  "dependencies": {
1464
1464
  "chroma-js": "^3.1.2"
1465
1465
  }
1466
1466
  },
1467
1467
  "node_modules/@wavemaker/nvd3": {
1468
- "version": "1.8.16",
1469
- "integrity": "sha512-gzgcW3Gr3MYUpYqbhWXVlUq8NhWpBFCz/QKF+Ekvi6pUjTHDLfe264HgiyrPs0PbCPsqN7Z/cFNbQTYJZC+fzQ==",
1468
+ "version": "1.8.15",
1469
+ "integrity": "sha512-ufRoz09lG1vAMfc+Qc0TC912m/bTmzQYTCJpaQ0T525i6J3+tjmT7dLbTLxRlA1KTsRFRHTaLi410R8RCYMjRg==",
1470
1470
  "license": "Apache-2.0",
1471
1471
  "peerDependencies": {
1472
1472
  "d3": "7.8.5"
1473
1473
  }
1474
1474
  },
1475
1475
  "node_modules/@wavemaker/variables": {
1476
- "version": "11.14.1-12.6379",
1477
- "integrity": "sha512-+t9eqICvl3MbIdgmBg4OVAIFXL1XJaNC54sM7EQcY5uSnoaj2oan8zc+2I5cKg/lTUxxPqeW8/wfGBc3YNMDaA==",
1476
+ "version": "11.14.1-14.6394",
1477
+ "integrity": "sha512-pjbpnTDnlBjSgQ2cw65GBKyRT7o7OVAaeIokTjXXAYsdetyrkYOQHQ7Xki7GmDjVSncK8eLzqSNjHRLvaS/M9A==",
1478
1478
  "license": "ISC",
1479
1479
  "dependencies": {
1480
1480
  "@metrichor/jmespath": "^0.3.1",
@@ -1909,8 +1909,8 @@
1909
1909
  "license": "MIT"
1910
1910
  },
1911
1911
  "node_modules/baseline-browser-mapping": {
1912
- "version": "2.9.16",
1913
- "integrity": "sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==",
1912
+ "version": "2.9.19",
1913
+ "integrity": "sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==",
1914
1914
  "dev": true,
1915
1915
  "license": "Apache-2.0",
1916
1916
  "bin": {
@@ -2190,8 +2190,8 @@
2190
2190
  }
2191
2191
  },
2192
2192
  "node_modules/caniuse-lite": {
2193
- "version": "1.0.30001765",
2194
- "integrity": "sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==",
2193
+ "version": "1.0.30001766",
2194
+ "integrity": "sha512-4C0lfJ0/YPjJQHagaE9x2Elb69CIqEPZeG0anQt9SIvIoOH4a4uaRl73IavyO+0qZh6MDLH//DrXThEYKHkmYA==",
2195
2195
  "dev": true,
2196
2196
  "funding": [
2197
2197
  {
@@ -2533,8 +2533,8 @@
2533
2533
  "license": "MIT"
2534
2534
  },
2535
2535
  "node_modules/core-js-pure": {
2536
- "version": "3.47.0",
2537
- "integrity": "sha512-BcxeDbzUrRnXGYIVAGFtcGQVNpFcUhVjr6W7F8XktvQW2iJP9e66GP6xdKotCRFlrxBvNIBrhwKteRXqMV86Nw==",
2536
+ "version": "3.48.0",
2537
+ "integrity": "sha512-1slJgk89tWC51HQ1AEqG+s2VuwpTRr8ocu4n20QUcH1v9lAN0RXen0Q0AABa/DK1I7RrNWLucplOHMx8hfTGTw==",
2538
2538
  "hasInstallScript": true,
2539
2539
  "license": "MIT",
2540
2540
  "funding": {
@@ -3277,8 +3277,8 @@
3277
3277
  "license": "MIT"
3278
3278
  },
3279
3279
  "node_modules/electron-to-chromium": {
3280
- "version": "1.5.267",
3281
- "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==",
3280
+ "version": "1.5.283",
3281
+ "integrity": "sha512-3vifjt1HgrGW/h76UEeny+adYApveS9dH2h3p57JYzBSXJIKUJAvtmIytDKjcSCt9xHfrNCFJ7gts6vkhuq++w==",
3282
3282
  "dev": true,
3283
3283
  "license": "ISC"
3284
3284
  },
@@ -5456,8 +5456,8 @@
5456
5456
  }
5457
5457
  },
5458
5458
  "node_modules/lodash": {
5459
- "version": "4.17.21",
5460
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
5459
+ "version": "4.17.23",
5460
+ "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
5461
5461
  "license": "MIT"
5462
5462
  },
5463
5463
  "node_modules/lodash-es": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.14.1-12.6379",
3
+ "version": "11.14.1-14.6394",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -15,7 +15,7 @@
15
15
  ".npmrc"
16
16
  ],
17
17
  "dependencies": {
18
- "@wavemaker/angular-app": "11.14.1-12.6379",
18
+ "@wavemaker/angular-app": "11.14.1-14.6394",
19
19
  "archiver": "^7.0.1",
20
20
  "cheerio": "1.0.0-rc.12",
21
21
  "decode-uri-component": "^0.2.0",