@wavemaker/angular-codegen 11.14.1-6.6324 → 11.14.1-8.6337

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.
@@ -99707,11 +99707,11 @@ const getRowActionAttrs = attrs => {
99707
99707
  return tmpl;
99708
99708
  };
99709
99709
 
99710
- const $RAF$1 = window.requestAnimationFrame;
99710
+ const $RAF = window.requestAnimationFrame;
99711
99711
  const $RAFQueue = [];
99712
99712
  const invokeLater = fn => {
99713
99713
  if (!$RAFQueue.length) {
99714
- $RAF$1(() => {
99714
+ $RAF(() => {
99715
99715
  $RAFQueue.forEach(f => f());
99716
99716
  $RAFQueue.length = 0;
99717
99717
  });
@@ -100253,70 +100253,223 @@ const getFnForEventExpr = (expr) => {
100253
100253
  return fnExecutor(expr, ExpressionType.Action);
100254
100254
  };
100255
100255
 
100256
+ // Constants
100257
+ const WIDGET_ID_REGEX = /^(widget-[^_]+)/;
100258
+ const WIDGET_PROPERTY_REGEX = /^widget-[^_]+_(.+)$/;
100259
+ const ARRAY_INDEX_PLACEHOLDER = '[$i]';
100260
+ const ARRAY_INDEX_ZERO = '[0]';
100256
100261
  const registry = new Map();
100257
100262
  const watchIdGenerator = new IDGenerator('watch-id-');
100258
- const FIRST_TIME_WATCH = {};
100259
- Object.freeze(FIRST_TIME_WATCH);
100263
+ const FIRST_TIME_WATCH = Object.freeze({});
100264
+ /**
100265
+ * Extracts widget ID from identifier (e.g., "widget-id23_eventsource" -> "widget-id23")
100266
+ */
100267
+ const getWidgetId = (identifier) => {
100268
+ if (!identifier || typeof identifier !== 'string') {
100269
+ return null;
100270
+ }
100271
+ const match = identifier.match(WIDGET_ID_REGEX);
100272
+ return match ? match[1] : null;
100273
+ };
100274
+ /**
100275
+ * Extracts property name from identifier (e.g., "widget-id23_eventsource" -> "eventsource")
100276
+ */
100277
+ const getPropertyName = (identifier) => {
100278
+ if (!identifier || typeof identifier !== 'string') {
100279
+ return identifier;
100280
+ }
100281
+ const match = identifier.match(WIDGET_PROPERTY_REGEX);
100282
+ return match ? match[1] : identifier;
100283
+ };
100284
+ /**
100285
+ * Array consumer wrapper for array-based expressions
100286
+ */
100260
100287
  const arrayConsumer = (listenerFn, restExpr, newVal, oldVal) => {
100261
- let data = newVal, formattedData;
100262
- if (isArray(data)) {
100263
- formattedData = data.map(function (datum) {
100264
- return findValueOf(datum, restExpr);
100265
- });
100266
- // If resulting structure is an array of array, flatten it
100267
- if (isArray(formattedData[0])) {
100268
- formattedData = flatten$1(formattedData);
100269
- }
100270
- listenerFn(formattedData, oldVal);
100288
+ if (!isArray(newVal)) {
100289
+ return;
100290
+ }
100291
+ let formattedData = newVal.map(datum => findValueOf(datum, restExpr));
100292
+ // Flatten if result is array of arrays
100293
+ if (isArray(formattedData[0])) {
100294
+ formattedData = flatten$1(formattedData);
100271
100295
  }
100296
+ listenerFn(formattedData, oldVal);
100272
100297
  };
100273
- const getUpdatedWatcInfo = (expr, acceptsArray, listener) => {
100274
- // listener doesn't accept array
100275
- // replace all `[$i]` with `[0]` and return the expression
100276
- let regex = /\[\$i\]/g, $I = '[$i]', $0 = '[0]';
100298
+ /**
100299
+ * Updates watch info for array expressions
100300
+ */
100301
+ const getUpdatedWatchInfo = (expr, acceptsArray, listener) => {
100302
+ const regex = /\[\$i\]/g;
100277
100303
  if (!acceptsArray) {
100278
100304
  return {
100279
- 'expr': expr.replace(regex, $0),
100280
- 'listener': listener
100305
+ expr: expr.replace(regex, ARRAY_INDEX_ZERO),
100306
+ listener
100281
100307
  };
100282
100308
  }
100283
- // listener accepts array
100284
- // replace all except the last `[$i]` with `[0]` and return the expression.
100285
- var index = expr.lastIndexOf($I), _expr = expr.substr(0, index).replace($I, $0), restExpr = expr.substr(index + 5), arrayConsumerFn = listener;
100286
- if (restExpr) {
100287
- arrayConsumerFn = arrayConsumer.bind(undefined, listener, restExpr);
100288
- }
100309
+ const lastIndex = expr.lastIndexOf(ARRAY_INDEX_PLACEHOLDER);
100310
+ const baseExpr = expr.substring(0, lastIndex).replace(ARRAY_INDEX_PLACEHOLDER, ARRAY_INDEX_ZERO);
100311
+ const restExpr = expr.substring(lastIndex + 5);
100312
+ const arrayConsumerFn = restExpr
100313
+ ? arrayConsumer.bind(undefined, listener, restExpr)
100314
+ : listener;
100289
100315
  return {
100290
- 'expr': _expr,
100291
- 'listener': arrayConsumerFn
100316
+ expr: baseExpr,
100317
+ listener: arrayConsumerFn
100292
100318
  };
100293
100319
  };
100320
+ /**
100321
+ * Determines if an expression is static (doesn't need to be watched)
100322
+ */
100323
+ const STATIC_EXPRESSION_NAMES = [
100324
+ "row.getProperty('investment')",
100325
+ "row.getProperty('factsheetLink')",
100326
+ "row.getProperty('isRebalanceEligible')"
100327
+ ];
100328
+ const isStaticExpression = (expr) => {
100329
+ if (typeof expr !== 'string') {
100330
+ return false;
100331
+ }
100332
+ const trimmedExpr = expr.trim();
100333
+ // Expressions that always evaluate to localization strings
100334
+ // if (trimmedExpr.includes('appLocale')) {
100335
+ // return true;
100336
+ // }
100337
+ // Hard-coded static expression names
100338
+ if (STATIC_EXPRESSION_NAMES.includes(trimmedExpr)) {
100339
+ return true;
100340
+ }
100341
+ return false;
100342
+ };
100343
+ /**
100344
+ * Gets the scope type from the scope object
100345
+ */
100346
+ const getScopeType = ($scope) => {
100347
+ if (!$scope) {
100348
+ return null;
100349
+ }
100350
+ if ($scope.pageName)
100351
+ return 'Page';
100352
+ if ($scope.prefabName)
100353
+ return 'Prefab';
100354
+ if ($scope.partialName)
100355
+ return 'Partial';
100356
+ // Check for App scope
100357
+ if ($scope.Variables !== undefined &&
100358
+ $scope.Actions !== undefined &&
100359
+ !$scope.pageName &&
100360
+ !$scope.prefabName &&
100361
+ !$scope.partialName) {
100362
+ return 'App';
100363
+ }
100364
+ if ($scope.constructor?.name === 'AppRef') {
100365
+ return 'App';
100366
+ }
100367
+ return null;
100368
+ };
100369
+ /**
100370
+ * Gets scope name based on scope type
100371
+ */
100372
+ const getScopeName = ($scope, scopeType) => {
100373
+ if (!scopeType || !$scope) {
100374
+ return null;
100375
+ }
100376
+ switch (scopeType) {
100377
+ case 'Prefab': return $scope.prefabName || null;
100378
+ case 'Partial': return $scope.partialName || null;
100379
+ case 'Page': return $scope.pageName || null;
100380
+ default: return null;
100381
+ }
100382
+ };
100383
+ /**
100384
+ * Main watch function
100385
+ */
100294
100386
  const $watch = (expr, $scope, $locals, listener, identifier = watchIdGenerator.nextUid(), doNotClone = false, config = {}, isMuted) => {
100295
- if (expr.indexOf('[$i]') !== -1) {
100296
- let watchInfo = getUpdatedWatcInfo(expr, config && (config.arrayType || config.isList), listener);
100387
+ // Handle array expressions
100388
+ if (expr.includes(ARRAY_INDEX_PLACEHOLDER)) {
100389
+ const watchInfo = getUpdatedWatchInfo(expr, config.arrayType || config.isList || false, listener);
100297
100390
  expr = watchInfo.expr;
100298
100391
  listener = watchInfo.listener;
100299
100392
  }
100393
+ // Handle static expressions
100394
+ if (isStaticExpression(expr)) {
100395
+ try {
100396
+ const fn = $parseExpr(expr);
100397
+ const staticValue = fn($scope, $locals);
100398
+ listener(staticValue, FIRST_TIME_WATCH);
100399
+ }
100400
+ catch (e) {
100401
+ console.warn(`Error evaluating static expression '${expr}':`, e);
100402
+ listener(undefined, FIRST_TIME_WATCH);
100403
+ }
100404
+ return () => { }; // No-op unsubscribe
100405
+ }
100300
100406
  const fn = $parseExpr();
100301
- registry.set(identifier, {
100302
- fn: fn.bind(expr, $scope, $locals),
100407
+ const scopeType = getScopeType($scope);
100408
+ const scopeName = getScopeName($scope, scopeType);
100409
+ const destroyFn = () => $unwatch(identifier);
100410
+ const watchInfo = {
100411
+ fn: fn.bind(null, $scope, $locals),
100303
100412
  listener,
100304
100413
  expr,
100305
100414
  last: FIRST_TIME_WATCH,
100306
100415
  doNotClone,
100307
- isMuted: isMuted
100308
- });
100309
- return () => $unwatch(identifier);
100416
+ isMuted,
100417
+ scopeType,
100418
+ scopeName,
100419
+ destroyFn
100420
+ };
100421
+ // Store in registry
100422
+ const widgetId = getWidgetId(identifier);
100423
+ if (widgetId) {
100424
+ const propertyName = getPropertyName(identifier);
100425
+ if (!registry.has(widgetId)) {
100426
+ registry.set(widgetId, {});
100427
+ }
100428
+ const widgetGroup = registry.get(widgetId);
100429
+ widgetGroup[propertyName] = watchInfo;
100430
+ }
100431
+ else {
100432
+ registry.set(identifier, watchInfo);
100433
+ }
100434
+ return destroyFn;
100435
+ };
100436
+ /**
100437
+ * Unwatches a single identifier
100438
+ */
100439
+ const $unwatch = (identifier) => {
100440
+ const widgetId = getWidgetId(identifier);
100441
+ if (widgetId) {
100442
+ const propertyName = getPropertyName(identifier);
100443
+ const widgetGroup = registry.get(widgetId);
100444
+ //@ts-ignore
100445
+ if (widgetGroup && typeof widgetGroup === 'object' && !widgetGroup.fn) {
100446
+ const watchInfo = widgetGroup[propertyName];
100447
+ if (watchInfo) {
100448
+ delete widgetGroup[propertyName];
100449
+ // Clean up empty widget groups
100450
+ if (Object.keys(widgetGroup).length === 0) {
100451
+ registry.delete(widgetId);
100452
+ }
100453
+ return true;
100454
+ }
100455
+ }
100456
+ }
100457
+ // Fallback to direct lookup
100458
+ if (registry.has(identifier)) {
100459
+ registry.delete(identifier);
100460
+ return true;
100461
+ }
100462
+ return false;
100310
100463
  };
100311
- const $unwatch = identifier => registry.delete(identifier);
100312
- window.watchRegistry = registry;
100313
100464
  const $appDigest = (() => {
100314
- return (force) => {
100465
+ return (force = false) => {
100315
100466
  {
100316
100467
  return;
100317
100468
  }
100318
100469
  };
100319
100470
  })();
100471
+ // Export registry for debugging
100472
+ window.watchRegistry = registry;
100320
100473
 
100321
100474
  var ComponentType;
100322
100475
  (function (ComponentType) {
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.14.1-6.6324",
3
+ "version": "11.14.1-8.6337",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-codegen",
9
- "version": "11.14.1-6.6324",
9
+ "version": "11.14.1-8.6337",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "@wavemaker/angular-app": "11.14.1-6.6324",
12
+ "@wavemaker/angular-app": "11.14.1-8.6337",
13
13
  "archiver": "^7.0.1",
14
14
  "cheerio": "1.0.0-rc.12",
15
15
  "decode-uri-component": "^0.2.0",
@@ -1376,8 +1376,8 @@
1376
1376
  "license": "MIT"
1377
1377
  },
1378
1378
  "node_modules/@wavemaker/angular-app": {
1379
- "version": "11.14.1-6.6324",
1380
- "integrity": "sha512-CYROjBPqKaIGkJq1A0HCY4mLX+jvCbaKZmJWfWadw89bkTbhr0CUaS5BAeR8FNnB4l+WQNu6cFgjy33p+x/Gmw==",
1379
+ "version": "11.14.1-8.6337",
1380
+ "integrity": "sha512-YkDT0UanjWKv53CLXr8v5AMB5aB7UWLT8N59Ozt8RroeBhBD4lbNnUsYf657QogOLtPJhKkj4KjnmuHROBtemw==",
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-6.6324",
1398
- "@wavemaker/custom-widgets-m3": "11.14.1-6.6324",
1397
+ "@wavemaker/app-ng-runtime": "11.14.1-8.6337",
1398
+ "@wavemaker/custom-widgets-m3": "11.14.1-8.6337",
1399
1399
  "@wavemaker/focus-trap": "1.0.1",
1400
- "@wavemaker/foundation-css": "11.14.1-6.6324",
1400
+ "@wavemaker/foundation-css": "11.14.1-8.6337",
1401
1401
  "@wavemaker/nvd3": "1.8.15",
1402
- "@wavemaker/variables": "11.14.1-6.6324",
1402
+ "@wavemaker/variables": "11.14.1-8.6337",
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-6.6324",
1438
- "integrity": "sha512-5KsrfmMmR/CSwHJhSpqRjZXCK5v3K8ym14EtTVqLS2HlnNTRWF29rpHLPaCSCTnteo7jtOYTW4cCsD5ivOFfkg==",
1437
+ "version": "11.14.1-8.6337",
1438
+ "integrity": "sha512-MxNZBps4dQ2jCvnDSgvjUYP35oWNx85tgN94ulgnYWKm50ud4skWs+Bgds7nqpzgAF67zZyMi1gwiu5b03lOlA==",
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-6.6324",
1447
- "integrity": "sha512-k354qE5DvPViKkwkFQppikn+T/RjkpyGrMfcM9phITLINb1Yz2aJZqlUwlN9nY4mewZHLihxDyKzZe83pRGChQ==",
1446
+ "version": "11.14.1-8.6337",
1447
+ "integrity": "sha512-WvAvdZJZ3hCuEA2maP/BLY7ToGUfFYXD8mUzjMrA8fp4Mdb4VyzQvZJh2XZLjPCo9CU78JoMGzFK97jwWKYnrQ==",
1448
1448
  "license": "ISC"
1449
1449
  },
1450
1450
  "node_modules/@wavemaker/focus-trap": {
@@ -1457,8 +1457,8 @@
1457
1457
  }
1458
1458
  },
1459
1459
  "node_modules/@wavemaker/foundation-css": {
1460
- "version": "11.14.1-6.6324",
1461
- "integrity": "sha512-CDLgFjC9jvd7/uRzs03SVxFA9FN9mmL1bzREzepWxTVxIG99tO0d5+pR4ibvIUhx1GDQg7tFzZygMa2pZ+sBGA==",
1460
+ "version": "11.14.1-8.6337",
1461
+ "integrity": "sha512-WkE64qSCQmeIAG8L0Qsqn3mTY2sSQxuoFbftMcuk67G57zuVdVfDIuMwO4DwxZYp5lOvOOQ+xGKwM69BC8xtUA==",
1462
1462
  "license": "ISC",
1463
1463
  "dependencies": {
1464
1464
  "chroma-js": "^3.1.2"
@@ -1473,8 +1473,8 @@
1473
1473
  }
1474
1474
  },
1475
1475
  "node_modules/@wavemaker/variables": {
1476
- "version": "11.14.1-6.6324",
1477
- "integrity": "sha512-BHVnNHaBFnvWGgek5ewCMgQMZcs+7l6DjnG5/YjcnCL+Tj0sNCtAwfzj73DbcArGifQyGsku+0krYvnt3YeAXA==",
1476
+ "version": "11.14.1-8.6337",
1477
+ "integrity": "sha512-zOj4+VktLFY8mm/qIPh+PwK9TEVG0sglfrVM3bUE9l2iU3ei8ldd7E9AikSV1O/UWOYWAvbM9PMmQ9M9LCxOaA==",
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.8.32",
1913
- "integrity": "sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==",
1912
+ "version": "2.9.2",
1913
+ "integrity": "sha512-PxSsosKQjI38iXkmb3d0Y32efqyA0uW4s41u4IVBsLlWLhCiYNpH/AfNOVWRqCQBlD8TFJTz6OUWNd4DFJCnmw==",
1914
1914
  "dev": true,
1915
1915
  "license": "Apache-2.0",
1916
1916
  "bin": {
@@ -2024,8 +2024,8 @@
2024
2024
  "license": "BSD-2-Clause"
2025
2025
  },
2026
2026
  "node_modules/browserslist": {
2027
- "version": "4.28.0",
2028
- "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==",
2027
+ "version": "4.28.1",
2028
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
2029
2029
  "dev": true,
2030
2030
  "funding": [
2031
2031
  {
@@ -2043,11 +2043,11 @@
2043
2043
  ],
2044
2044
  "license": "MIT",
2045
2045
  "dependencies": {
2046
- "baseline-browser-mapping": "^2.8.25",
2047
- "caniuse-lite": "^1.0.30001754",
2048
- "electron-to-chromium": "^1.5.249",
2046
+ "baseline-browser-mapping": "^2.9.0",
2047
+ "caniuse-lite": "^1.0.30001759",
2048
+ "electron-to-chromium": "^1.5.263",
2049
2049
  "node-releases": "^2.0.27",
2050
- "update-browserslist-db": "^1.1.4"
2050
+ "update-browserslist-db": "^1.2.0"
2051
2051
  },
2052
2052
  "bin": {
2053
2053
  "browserslist": "cli.js"
@@ -2190,8 +2190,8 @@
2190
2190
  }
2191
2191
  },
2192
2192
  "node_modules/caniuse-lite": {
2193
- "version": "1.0.30001757",
2194
- "integrity": "sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==",
2193
+ "version": "1.0.30001759",
2194
+ "integrity": "sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw==",
2195
2195
  "dev": true,
2196
2196
  "funding": [
2197
2197
  {
@@ -3277,8 +3277,8 @@
3277
3277
  "license": "MIT"
3278
3278
  },
3279
3279
  "node_modules/electron-to-chromium": {
3280
- "version": "1.5.263",
3281
- "integrity": "sha512-DrqJ11Knd+lo+dv+lltvfMDLU27g14LMdH2b0O3Pio4uk0x+z7OR+JrmyacTPN2M8w3BrZ7/RTwG3R9B7irPlg==",
3280
+ "version": "1.5.265",
3281
+ "integrity": "sha512-B7IkLR1/AE+9jR2LtVF/1/6PFhY5TlnEHnlrKmGk7PvkJibg5jr+mLXLLzq3QYl6PA1T/vLDthQPqIPAlS/PPA==",
3282
3282
  "dev": true,
3283
3283
  "license": "ISC"
3284
3284
  },
@@ -7532,8 +7532,8 @@
7532
7532
  }
7533
7533
  },
7534
7534
  "node_modules/update-browserslist-db": {
7535
- "version": "1.1.4",
7536
- "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==",
7535
+ "version": "1.2.2",
7536
+ "integrity": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==",
7537
7537
  "dev": true,
7538
7538
  "funding": [
7539
7539
  {
package/package-lock.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.14.1-6.6324",
3
+ "version": "11.14.1-8.6337",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-codegen",
9
- "version": "11.14.1-6.6324",
9
+ "version": "11.14.1-8.6337",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "@wavemaker/angular-app": "11.14.1-6.6324",
12
+ "@wavemaker/angular-app": "11.14.1-8.6337",
13
13
  "archiver": "^7.0.1",
14
14
  "cheerio": "1.0.0-rc.12",
15
15
  "decode-uri-component": "^0.2.0",
@@ -1376,8 +1376,8 @@
1376
1376
  "license": "MIT"
1377
1377
  },
1378
1378
  "node_modules/@wavemaker/angular-app": {
1379
- "version": "11.14.1-6.6324",
1380
- "integrity": "sha512-CYROjBPqKaIGkJq1A0HCY4mLX+jvCbaKZmJWfWadw89bkTbhr0CUaS5BAeR8FNnB4l+WQNu6cFgjy33p+x/Gmw==",
1379
+ "version": "11.14.1-8.6337",
1380
+ "integrity": "sha512-YkDT0UanjWKv53CLXr8v5AMB5aB7UWLT8N59Ozt8RroeBhBD4lbNnUsYf657QogOLtPJhKkj4KjnmuHROBtemw==",
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-6.6324",
1398
- "@wavemaker/custom-widgets-m3": "11.14.1-6.6324",
1397
+ "@wavemaker/app-ng-runtime": "11.14.1-8.6337",
1398
+ "@wavemaker/custom-widgets-m3": "11.14.1-8.6337",
1399
1399
  "@wavemaker/focus-trap": "1.0.1",
1400
- "@wavemaker/foundation-css": "11.14.1-6.6324",
1400
+ "@wavemaker/foundation-css": "11.14.1-8.6337",
1401
1401
  "@wavemaker/nvd3": "1.8.15",
1402
- "@wavemaker/variables": "11.14.1-6.6324",
1402
+ "@wavemaker/variables": "11.14.1-8.6337",
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-6.6324",
1438
- "integrity": "sha512-5KsrfmMmR/CSwHJhSpqRjZXCK5v3K8ym14EtTVqLS2HlnNTRWF29rpHLPaCSCTnteo7jtOYTW4cCsD5ivOFfkg==",
1437
+ "version": "11.14.1-8.6337",
1438
+ "integrity": "sha512-MxNZBps4dQ2jCvnDSgvjUYP35oWNx85tgN94ulgnYWKm50ud4skWs+Bgds7nqpzgAF67zZyMi1gwiu5b03lOlA==",
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-6.6324",
1447
- "integrity": "sha512-k354qE5DvPViKkwkFQppikn+T/RjkpyGrMfcM9phITLINb1Yz2aJZqlUwlN9nY4mewZHLihxDyKzZe83pRGChQ==",
1446
+ "version": "11.14.1-8.6337",
1447
+ "integrity": "sha512-WvAvdZJZ3hCuEA2maP/BLY7ToGUfFYXD8mUzjMrA8fp4Mdb4VyzQvZJh2XZLjPCo9CU78JoMGzFK97jwWKYnrQ==",
1448
1448
  "license": "ISC"
1449
1449
  },
1450
1450
  "node_modules/@wavemaker/focus-trap": {
@@ -1457,8 +1457,8 @@
1457
1457
  }
1458
1458
  },
1459
1459
  "node_modules/@wavemaker/foundation-css": {
1460
- "version": "11.14.1-6.6324",
1461
- "integrity": "sha512-CDLgFjC9jvd7/uRzs03SVxFA9FN9mmL1bzREzepWxTVxIG99tO0d5+pR4ibvIUhx1GDQg7tFzZygMa2pZ+sBGA==",
1460
+ "version": "11.14.1-8.6337",
1461
+ "integrity": "sha512-WkE64qSCQmeIAG8L0Qsqn3mTY2sSQxuoFbftMcuk67G57zuVdVfDIuMwO4DwxZYp5lOvOOQ+xGKwM69BC8xtUA==",
1462
1462
  "license": "ISC",
1463
1463
  "dependencies": {
1464
1464
  "chroma-js": "^3.1.2"
@@ -1473,8 +1473,8 @@
1473
1473
  }
1474
1474
  },
1475
1475
  "node_modules/@wavemaker/variables": {
1476
- "version": "11.14.1-6.6324",
1477
- "integrity": "sha512-BHVnNHaBFnvWGgek5ewCMgQMZcs+7l6DjnG5/YjcnCL+Tj0sNCtAwfzj73DbcArGifQyGsku+0krYvnt3YeAXA==",
1476
+ "version": "11.14.1-8.6337",
1477
+ "integrity": "sha512-zOj4+VktLFY8mm/qIPh+PwK9TEVG0sglfrVM3bUE9l2iU3ei8ldd7E9AikSV1O/UWOYWAvbM9PMmQ9M9LCxOaA==",
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.8.32",
1913
- "integrity": "sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==",
1912
+ "version": "2.9.2",
1913
+ "integrity": "sha512-PxSsosKQjI38iXkmb3d0Y32efqyA0uW4s41u4IVBsLlWLhCiYNpH/AfNOVWRqCQBlD8TFJTz6OUWNd4DFJCnmw==",
1914
1914
  "dev": true,
1915
1915
  "license": "Apache-2.0",
1916
1916
  "bin": {
@@ -2024,8 +2024,8 @@
2024
2024
  "license": "BSD-2-Clause"
2025
2025
  },
2026
2026
  "node_modules/browserslist": {
2027
- "version": "4.28.0",
2028
- "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==",
2027
+ "version": "4.28.1",
2028
+ "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==",
2029
2029
  "dev": true,
2030
2030
  "funding": [
2031
2031
  {
@@ -2043,11 +2043,11 @@
2043
2043
  ],
2044
2044
  "license": "MIT",
2045
2045
  "dependencies": {
2046
- "baseline-browser-mapping": "^2.8.25",
2047
- "caniuse-lite": "^1.0.30001754",
2048
- "electron-to-chromium": "^1.5.249",
2046
+ "baseline-browser-mapping": "^2.9.0",
2047
+ "caniuse-lite": "^1.0.30001759",
2048
+ "electron-to-chromium": "^1.5.263",
2049
2049
  "node-releases": "^2.0.27",
2050
- "update-browserslist-db": "^1.1.4"
2050
+ "update-browserslist-db": "^1.2.0"
2051
2051
  },
2052
2052
  "bin": {
2053
2053
  "browserslist": "cli.js"
@@ -2190,8 +2190,8 @@
2190
2190
  }
2191
2191
  },
2192
2192
  "node_modules/caniuse-lite": {
2193
- "version": "1.0.30001757",
2194
- "integrity": "sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==",
2193
+ "version": "1.0.30001759",
2194
+ "integrity": "sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw==",
2195
2195
  "dev": true,
2196
2196
  "funding": [
2197
2197
  {
@@ -3277,8 +3277,8 @@
3277
3277
  "license": "MIT"
3278
3278
  },
3279
3279
  "node_modules/electron-to-chromium": {
3280
- "version": "1.5.263",
3281
- "integrity": "sha512-DrqJ11Knd+lo+dv+lltvfMDLU27g14LMdH2b0O3Pio4uk0x+z7OR+JrmyacTPN2M8w3BrZ7/RTwG3R9B7irPlg==",
3280
+ "version": "1.5.265",
3281
+ "integrity": "sha512-B7IkLR1/AE+9jR2LtVF/1/6PFhY5TlnEHnlrKmGk7PvkJibg5jr+mLXLLzq3QYl6PA1T/vLDthQPqIPAlS/PPA==",
3282
3282
  "dev": true,
3283
3283
  "license": "ISC"
3284
3284
  },
@@ -7532,8 +7532,8 @@
7532
7532
  }
7533
7533
  },
7534
7534
  "node_modules/update-browserslist-db": {
7535
- "version": "1.1.4",
7536
- "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==",
7535
+ "version": "1.2.2",
7536
+ "integrity": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==",
7537
7537
  "dev": true,
7538
7538
  "funding": [
7539
7539
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.14.1-6.6324",
3
+ "version": "11.14.1-8.6337",
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-6.6324",
18
+ "@wavemaker/angular-app": "11.14.1-8.6337",
19
19
  "archiver": "^7.0.1",
20
20
  "cheerio": "1.0.0-rc.12",
21
21
  "decode-uri-component": "^0.2.0",