@wavemaker/angular-codegen 11.14.0-rc.6276 → 11.14.1-3.6306

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.
@@ -5867,14 +5867,14 @@ function createNgModuleType(meta) {
5867
5867
  if (meta.kind === R3NgModuleMetadataKind.Local) {
5868
5868
  return new ExpressionType$1(meta.type.value);
5869
5869
  }
5870
- const { type: moduleType, declarations, exports, imports, includeImportTypes, publicDeclarationTypes, } = meta;
5870
+ const { type: moduleType, declarations, exports: exports$1, imports, includeImportTypes, publicDeclarationTypes, } = meta;
5871
5871
  return new ExpressionType$1(importExpr(Identifiers.NgModuleDeclaration, [
5872
5872
  new ExpressionType$1(moduleType.type),
5873
5873
  publicDeclarationTypes === null
5874
5874
  ? tupleTypeOf(declarations)
5875
5875
  : tupleOfTypes(publicDeclarationTypes),
5876
5876
  includeImportTypes ? tupleTypeOf(imports) : NONE_TYPE,
5877
- tupleTypeOf(exports),
5877
+ tupleTypeOf(exports$1),
5878
5878
  ]));
5879
5879
  }
5880
5880
  /**
@@ -35417,7 +35417,7 @@ const TABLE_ACTION_DIRECTIVE = [{ from: '@wm/components/data/table', name: 'Tabl
35417
35417
  const TABLE_COLUMN_DIRECTIVE = [{ from: '@wm/components/data/table', name: 'TableColumnDirective' }];
35418
35418
  const TABLE_COLUMN_GROUP_DIRECTIVE = [{ from: '@wm/components/data/table', name: 'TableColumnGroupDirective' }];
35419
35419
  const TABLE_ROW_DIRECTIVE = [{ from: '@wm/components/data/table', name: 'TableRowDirective' }, ...CONTAINER_DIRECTIVE, ...PARTIAL_CONTAINER];
35420
- const TABLE_ROW_ACTION_DIRECTIVE = [{ from: '@wm/components/data/table', name: 'TableRowActionDirective' }, ...BUTTON_COMPONENT];
35420
+ const TABLE_ROW_ACTION_DIRECTIVE = [{ from: '@wm/components/data/table', name: 'TableRowActionDirective' }, ...BUTTON_COMPONENT, ...ANCHOR_COMPONENT];
35421
35421
  const TABLE_COMPONENT = [
35422
35422
  ...NG_FORM_MODULE,
35423
35423
  ...NG_REACTIVE_FORM_MODULE,
@@ -39572,7 +39572,7 @@ var hasRequiredEntities;
39572
39572
  function requireEntities () {
39573
39573
  if (hasRequiredEntities) return entities;
39574
39574
  hasRequiredEntities = 1;
39575
- (function (exports) {
39575
+ (function (exports$1) {
39576
39576
 
39577
39577
  var freeze = requireConventions().freeze;
39578
39578
 
@@ -39583,7 +39583,7 @@ function requireEntities () {
39583
39583
  * @see https://www.w3.org/TR/2008/REC-xml-20081126/#sec-predefined-ent W3C XML 1.0
39584
39584
  * @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Predefined_entities_in_XML Wikipedia
39585
39585
  */
39586
- exports.XML_ENTITIES = freeze({
39586
+ exports$1.XML_ENTITIES = freeze({
39587
39587
  amp: '&',
39588
39588
  apos: "'",
39589
39589
  gt: '>',
@@ -39605,7 +39605,7 @@ function requireEntities () {
39605
39605
  * @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Character_entity_references_in_HTML Wikipedia (HTML)
39606
39606
  * @see https://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references#Entities_representing_special_characters_in_XHTML Wikpedia (XHTML)
39607
39607
  */
39608
- exports.HTML_ENTITIES = freeze({
39608
+ exports$1.HTML_ENTITIES = freeze({
39609
39609
  Aacute: '\u00C1',
39610
39610
  aacute: '\u00E1',
39611
39611
  Abreve: '\u0102',
@@ -41737,7 +41737,7 @@ function requireEntities () {
41737
41737
  * @deprecated use `HTML_ENTITIES` instead
41738
41738
  * @see HTML_ENTITIES
41739
41739
  */
41740
- exports.entityMap = exports.HTML_ENTITIES;
41740
+ exports$1.entityMap = exports$1.HTML_ENTITIES;
41741
41741
  } (entities));
41742
41742
  return entities;
41743
41743
  }
@@ -43545,7 +43545,7 @@ var hasRequiredMoment;
43545
43545
  function requireMoment () {
43546
43546
  if (hasRequiredMoment) return moment$1.exports;
43547
43547
  hasRequiredMoment = 1;
43548
- (function (module, exports) {
43548
+ (function (module, exports$1) {
43549
43549
  (function (global, factory) {
43550
43550
  module.exports = factory() ;
43551
43551
  }(this, (function () {
@@ -81680,7 +81680,7 @@ function verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRo
81680
81680
  verifySemanticsOfNgModuleImport(modOrStandaloneCmpt, moduleType);
81681
81681
  verifySemanticsOfNgModuleDef(modOrStandaloneCmpt, false, moduleType);
81682
81682
  });
81683
- const exports = maybeUnwrapFn(ngModuleDef.exports);
81683
+ const exports$1 = maybeUnwrapFn(ngModuleDef.exports);
81684
81684
  declarations.forEach(verifyDeclarationsHaveDefinitions);
81685
81685
  declarations.forEach(verifyDirectivesHaveSelector);
81686
81686
  declarations.forEach((declarationType) => verifyNotStandalone(declarationType, moduleType));
@@ -81688,7 +81688,7 @@ function verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRo
81688
81688
  ...declarations.map(resolveForwardRef),
81689
81689
  ...flatten(imports.map(computeCombinedExports)).map(resolveForwardRef),
81690
81690
  ];
81691
- exports.forEach(verifyExportsAreDeclaredOrReExported);
81691
+ exports$1.forEach(verifyExportsAreDeclaredOrReExported);
81692
81692
  declarations.forEach((decl) => verifyDeclarationIsUnique(decl, allowDuplicateDeclarationsInRoot));
81693
81693
  const ngModule = getAnnotation(moduleType, 'NgModule');
81694
81694
  if (ngModule) {
@@ -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,220 @@ 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 + ARRAY_INDEX_PLACEHOLDER.length);
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 watchInfo = {
100410
+ fn: fn.bind(null, $scope, $locals),
100303
100411
  listener,
100304
100412
  expr,
100305
100413
  last: FIRST_TIME_WATCH,
100306
100414
  doNotClone,
100307
- isMuted: isMuted
100308
- });
100415
+ isMuted,
100416
+ scopeType,
100417
+ scopeName
100418
+ };
100419
+ // Store in registry
100420
+ const widgetId = getWidgetId(identifier);
100421
+ if (widgetId) {
100422
+ const propertyName = getPropertyName(identifier);
100423
+ if (!registry.has(widgetId)) {
100424
+ registry.set(widgetId, {});
100425
+ }
100426
+ const widgetGroup = registry.get(widgetId);
100427
+ widgetGroup[propertyName] = watchInfo;
100428
+ }
100429
+ else {
100430
+ registry.set(identifier, watchInfo);
100431
+ }
100309
100432
  return () => $unwatch(identifier);
100310
100433
  };
100311
- const $unwatch = identifier => registry.delete(identifier);
100312
- window.watchRegistry = registry;
100434
+ /**
100435
+ * Unwatches a single identifier
100436
+ */
100437
+ const $unwatch = (identifier) => {
100438
+ const widgetId = getWidgetId(identifier);
100439
+ if (widgetId) {
100440
+ const propertyName = getPropertyName(identifier);
100441
+ const widgetGroup = registry.get(widgetId);
100442
+ if (widgetGroup && typeof widgetGroup === 'object' && !widgetGroup.fn) {
100443
+ const watchInfo = widgetGroup[propertyName];
100444
+ if (watchInfo) {
100445
+ delete widgetGroup[propertyName];
100446
+ // Clean up empty widget groups
100447
+ if (Object.keys(widgetGroup).length === 0) {
100448
+ registry.delete(widgetId);
100449
+ }
100450
+ return true;
100451
+ }
100452
+ }
100453
+ }
100454
+ // Fallback to direct lookup
100455
+ if (registry.has(identifier)) {
100456
+ registry.delete(identifier);
100457
+ return true;
100458
+ }
100459
+ return false;
100460
+ };
100313
100461
  const $appDigest = (() => {
100314
- return (force) => {
100462
+ return (force = false) => {
100315
100463
  {
100316
100464
  return;
100317
100465
  }
100318
100466
  };
100319
100467
  })();
100468
+ // Export registry for debugging
100469
+ // (window as any).watchRegistry = registry;
100320
100470
 
100321
100471
  var ComponentType;
100322
100472
  (function (ComponentType) {
@@ -100387,6 +100537,7 @@ const REGEX = {
100387
100537
  SUPPORTED_AUDIO_FORMAT: /\.(mp3|ogg|webm|wma|3gp|wav|m4a)$/i,
100388
100538
  SUPPORTED_VIDEO_FORMAT: /\.(mp4|ogg|webm|wmv|mpeg|mpg|avi|mov)$/i,
100389
100539
  VALID_WEB_URL: /^(http[s]?:\/\/)(www\.){0,1}[a-zA-Z0-9=:?\/\.\-]+(\.[a-zA-Z]{2,5}[\.]{0,1})?/,
100540
+ VALID_IMAGE_URL: /^(https?|blob|data|file|ftp):/i,
100390
100541
  REPLACE_PATTERN: /\$\{([^\}]+)\}/g,
100391
100542
  DATA_URL: /^\s*data:([a-z]+\/[a-z0-9-+.]+(;[a-z-]+=[a-z0-9-]+)?)?(;base64)?,([a-z0-9!$&',()*+;=\-._~:@\/?%\s]*)\s*$/i,
100392
100543
  ISO_DATE_FORMAT: /(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2}:\d{2})(\.\d+)?([+-]\d{2}:?\d{2}|Z)$/
@@ -100609,6 +100760,9 @@ const isVideoFile = (fileName) => {
100609
100760
  const isValidWebURL = (url) => {
100610
100761
  return (REGEX.VALID_WEB_URL).test(url);
100611
100762
  };
100763
+ const isValidImageUrl = (url) => {
100764
+ return (REGEX.VALID_IMAGE_URL).test(url?.trim());
100765
+ };
100612
100766
  /*This function returns the url to the resource after checking the validity of url*/
100613
100767
  const getResourceURL = (urlString) => {
100614
100768
  return urlString;
@@ -101862,6 +102016,7 @@ var Utils = /*#__PURE__*/Object.freeze({
101862
102016
  isPageable: isPageable,
101863
102017
  isSafari: isSafari,
101864
102018
  isTablet: isTablet,
102019
+ isValidImageUrl: isValidImageUrl,
101865
102020
  isValidWebURL: isValidWebURL,
101866
102021
  isVideoFile: isVideoFile,
101867
102022
  loadScript: loadScript,
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@wavemaker/angular-codegen",
3
- "version": "11.14.0-rc.6276",
3
+ "version": "11.14.1-3.6306",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@wavemaker/angular-codegen",
9
- "version": "11.14.0-rc.6276",
9
+ "version": "11.14.1-3.6306",
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
- "@wavemaker/angular-app": "11.14.0-rc.6276",
12
+ "@wavemaker/angular-app": "11.14.1-3.6306",
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": "24.9.1",
1344
- "integrity": "sha512-QoiaXANRkSXK6p0Duvt56W208du4P9Uye9hWLWgGMDTEoKPhuenzNcC4vGUmrNkiOKTlIrBoyNQYNpSwfEZXSg==",
1343
+ "version": "24.10.1",
1344
+ "integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==",
1345
1345
  "dev": true,
1346
1346
  "license": "MIT",
1347
1347
  "dependencies": {
@@ -1361,8 +1361,8 @@
1361
1361
  "license": "MIT"
1362
1362
  },
1363
1363
  "node_modules/@types/yargs": {
1364
- "version": "16.0.10",
1365
- "integrity": "sha512-0xbOE6Ht/oj0MTVVXCCdEZzUk7adwW3YB1Tg1ZBm95jrkrUMI0VA4sf3SgxC1TG8p5aKkn3jxT9A2BDw1mM/TQ==",
1364
+ "version": "16.0.11",
1365
+ "integrity": "sha512-sbtvk8wDN+JvEdabmZExoW/HNr1cB7D/j4LT08rMiuikfA7m/JNJg7ATQcgzs34zHnoScDkY0ZRSl29Fkmk36g==",
1366
1366
  "dev": true,
1367
1367
  "license": "MIT",
1368
1368
  "dependencies": {
@@ -1376,8 +1376,8 @@
1376
1376
  "license": "MIT"
1377
1377
  },
1378
1378
  "node_modules/@wavemaker/angular-app": {
1379
- "version": "11.14.0-rc.6276",
1380
- "integrity": "sha512-V5nOzUqHozYmllIjNiNZjc2D5vKK/tXziWTPm9kc7LghZkU5DS9KgE2MTv3/Y8fYSh7pkfJlwSRoXhvhGqRRvw==",
1379
+ "version": "11.14.1-3.6306",
1380
+ "integrity": "sha512-LqZmbcUwe3zb1+Ugdi8OXcNzYAwEF8AkMW1FI3NGQtt/YD0cgP2g9LPvG0WziZFtTzQT1+NUllG4eKWgxiWxVw==",
1381
1381
  "dependencies": {
1382
1382
  "@angular/animations": "18.2.13",
1383
1383
  "@angular/common": "18.2.13",
@@ -1394,13 +1394,14 @@
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.0-rc.6276",
1398
- "@wavemaker/custom-widgets-m3": "11.14.0-rc.6276",
1397
+ "@wavemaker/app-ng-runtime": "11.14.1-3.6306",
1398
+ "@wavemaker/custom-widgets-m3": "11.14.1-3.6306",
1399
1399
  "@wavemaker/focus-trap": "1.0.1",
1400
- "@wavemaker/foundation-css": "11.14.0-rc.6276",
1401
- "@wavemaker/nvd3": "1.8.13",
1402
- "@wavemaker/variables": "11.14.0-rc.6276",
1400
+ "@wavemaker/foundation-css": "11.14.1-3.6306",
1401
+ "@wavemaker/nvd3": "1.8.15",
1402
+ "@wavemaker/variables": "11.14.1-3.6306",
1403
1403
  "@ztree/ztree_v3": "3.5.48",
1404
+ "acorn": "^8.15.0",
1404
1405
  "angular-imask": "7.6.1",
1405
1406
  "angular2-websocket": "0.9.8",
1406
1407
  "d3": "7.8.5",
@@ -1433,8 +1434,8 @@
1433
1434
  }
1434
1435
  },
1435
1436
  "node_modules/@wavemaker/app-ng-runtime": {
1436
- "version": "11.14.0-rc.6276",
1437
- "integrity": "sha512-9o4yaIJUdG9NMS4hvPlbQTRhkRY34rXfYcrlv5RWYqBfU2antZDV9JMSNbpB0rFOGocVg1BUtQ4PfL9AQ/Nm7g==",
1437
+ "version": "11.14.1-3.6306",
1438
+ "integrity": "sha512-3eDjIgQNOGXgOpxHSRS8PVgwXO59glsYJ6KC3VKBzU3dq5WJDixxSvFLcgiJ/oyNTG6JdMZpb1Hk48xp7KshzA==",
1438
1439
  "license": "MIT",
1439
1440
  "engines": {
1440
1441
  "node": ">=18.16.1",
@@ -1442,8 +1443,8 @@
1442
1443
  }
1443
1444
  },
1444
1445
  "node_modules/@wavemaker/custom-widgets-m3": {
1445
- "version": "11.14.0-rc.6276",
1446
- "integrity": "sha512-F/X7m3ek4UJF+4MVGJ4SgfL0IdFBSq9zYwwvi/foIqJI+HJTUafi/HQK0DVQJq16YPDKii97HSOWSBLaybGXGg==",
1446
+ "version": "11.14.1-3.6306",
1447
+ "integrity": "sha512-w0DzRJunySiLpMrgwJOFr1kf6WlrqvjecsbYIUWIu3He41EPRAPJiQEJOp0Dmgrmh+kZh34Jt1AqlCEsfbHdGA==",
1447
1448
  "license": "ISC"
1448
1449
  },
1449
1450
  "node_modules/@wavemaker/focus-trap": {
@@ -1456,24 +1457,24 @@
1456
1457
  }
1457
1458
  },
1458
1459
  "node_modules/@wavemaker/foundation-css": {
1459
- "version": "11.14.0-rc.6276",
1460
- "integrity": "sha512-j0pbtTE5GLLDjS2z6dZ5Dd9t27HjPxbwgiPYBE3yW4MfuS62qMVVAXt2Jy6D6jRtPwIEMS9f/VrlReUlSkeztg==",
1460
+ "version": "11.14.1-3.6306",
1461
+ "integrity": "sha512-P0bZvOcJJIcD1mAp2DCs4wOtQ1NvdeK1y4kO3dQ07MRkUZhy3iI8c+zk2MfEvK/p51CW03Tc12YhkoMOlSSTgQ==",
1461
1462
  "license": "ISC",
1462
1463
  "dependencies": {
1463
1464
  "chroma-js": "^3.1.2"
1464
1465
  }
1465
1466
  },
1466
1467
  "node_modules/@wavemaker/nvd3": {
1467
- "version": "1.8.13",
1468
- "integrity": "sha512-+CnFQGSxFgoQ+Y2G92i+KnrSOSiTcjxOU3i5zfPlhl58F0XjzRVCC/GtCDC4u0P7HZSqAJLuY91dYNTnHhH6cA==",
1468
+ "version": "1.8.15",
1469
+ "integrity": "sha512-ufRoz09lG1vAMfc+Qc0TC912m/bTmzQYTCJpaQ0T525i6J3+tjmT7dLbTLxRlA1KTsRFRHTaLi410R8RCYMjRg==",
1469
1470
  "license": "Apache-2.0",
1470
1471
  "peerDependencies": {
1471
1472
  "d3": "7.8.5"
1472
1473
  }
1473
1474
  },
1474
1475
  "node_modules/@wavemaker/variables": {
1475
- "version": "11.14.0-rc.6276",
1476
- "integrity": "sha512-EmwtrlI2nM7NaMPzwBGipJ7YzKO9XhBGfEYzSI1A7zt7VWYDIr8YDNgDLVzLl34Qm32J5idkGqPSHxh7kBTcdQ==",
1476
+ "version": "11.14.1-3.6306",
1477
+ "integrity": "sha512-eIhpMOZHQGhbdr+WchXzPltnWFIiQNzEhXn83e7MKlAH1uDQhcdMGuxpM7CcyYrRVB7pqvVuyCjpN/U9A37amw==",
1477
1478
  "license": "ISC",
1478
1479
  "dependencies": {
1479
1480
  "@metrichor/jmespath": "^0.3.1",
@@ -1542,7 +1543,6 @@
1542
1543
  "node_modules/acorn": {
1543
1544
  "version": "8.15.0",
1544
1545
  "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
1545
- "dev": true,
1546
1546
  "license": "MIT",
1547
1547
  "bin": {
1548
1548
  "acorn": "bin/acorn"
@@ -1877,8 +1877,8 @@
1877
1877
  "license": "MIT"
1878
1878
  },
1879
1879
  "node_modules/bare-events": {
1880
- "version": "2.8.1",
1881
- "integrity": "sha512-oxSAxTS1hRfnyit2CL5QpAOS5ixfBjj6ex3yTNvXyY/kE719jQ/IjuESJBK2w5v4wwQRAHGseVJXx9QBYOtFGQ==",
1880
+ "version": "2.8.2",
1881
+ "integrity": "sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==",
1882
1882
  "license": "Apache-2.0",
1883
1883
  "peerDependencies": {
1884
1884
  "bare-abort-controller": "*"
@@ -1909,8 +1909,8 @@
1909
1909
  "license": "MIT"
1910
1910
  },
1911
1911
  "node_modules/baseline-browser-mapping": {
1912
- "version": "2.8.20",
1913
- "integrity": "sha512-JMWsdF+O8Orq3EMukbUN1QfbLK9mX2CkUmQBcW2T0s8OmdAUL5LLM/6wFwSrqXzlXB13yhyK9gTKS1rIizOduQ==",
1912
+ "version": "2.8.31",
1913
+ "integrity": "sha512-a28v2eWrrRWPpJSzxc+mKwm0ZtVx/G8SepdQZDArnXYU/XS+IF6mp8aB/4E+hH1tyGCoDo3KlUCdlSxGDsRkAw==",
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.27.0",
2028
- "integrity": "sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==",
2027
+ "version": "4.28.0",
2028
+ "integrity": "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==",
2029
2029
  "dev": true,
2030
2030
  "funding": [
2031
2031
  {
@@ -2043,10 +2043,10 @@
2043
2043
  ],
2044
2044
  "license": "MIT",
2045
2045
  "dependencies": {
2046
- "baseline-browser-mapping": "^2.8.19",
2047
- "caniuse-lite": "^1.0.30001751",
2048
- "electron-to-chromium": "^1.5.238",
2049
- "node-releases": "^2.0.26",
2046
+ "baseline-browser-mapping": "^2.8.25",
2047
+ "caniuse-lite": "^1.0.30001754",
2048
+ "electron-to-chromium": "^1.5.249",
2049
+ "node-releases": "^2.0.27",
2050
2050
  "update-browserslist-db": "^1.1.4"
2051
2051
  },
2052
2052
  "bin": {
@@ -2190,8 +2190,8 @@
2190
2190
  }
2191
2191
  },
2192
2192
  "node_modules/caniuse-lite": {
2193
- "version": "1.0.30001751",
2194
- "integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==",
2193
+ "version": "1.0.30001757",
2194
+ "integrity": "sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==",
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.46.0",
2537
- "integrity": "sha512-NMCW30bHNofuhwLhYPt66OLOKTMbOhgTTatKVbaQC3KRHpTCiRIBYvtshr+NBYSnBxwAFhjW/RfJ0XbIjS16rw==",
2536
+ "version": "3.47.0",
2537
+ "integrity": "sha512-BcxeDbzUrRnXGYIVAGFtcGQVNpFcUhVjr6W7F8XktvQW2iJP9e66GP6xdKotCRFlrxBvNIBrhwKteRXqMV86Nw==",
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.240",
3281
- "integrity": "sha512-OBwbZjWgrCOH+g6uJsA2/7Twpas2OlepS9uvByJjR2datRDuKGYeD+nP8lBBks2qnB7bGJNHDUx7c/YLaT3QMQ==",
3280
+ "version": "1.5.260",
3281
+ "integrity": "sha512-ov8rBoOBhVawpzdre+Cmz4FB+y66Eqrk6Gwqd8NGxuhv99GQ8XqMAr351KEkOt7gukXWDg6gJWEMKgL2RLMPtA==",
3282
3282
  "dev": true,
3283
3283
  "license": "ISC"
3284
3284
  },
@@ -3822,8 +3822,8 @@
3822
3822
  }
3823
3823
  },
3824
3824
  "node_modules/glob": {
3825
- "version": "10.4.5",
3826
- "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
3825
+ "version": "10.5.0",
3826
+ "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
3827
3827
  "license": "ISC",
3828
3828
  "dependencies": {
3829
3829
  "foreground-child": "^3.1.0",
@@ -5264,8 +5264,8 @@
5264
5264
  "license": "MIT"
5265
5265
  },
5266
5266
  "node_modules/js-yaml": {
5267
- "version": "3.14.1",
5268
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
5267
+ "version": "3.14.2",
5268
+ "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==",
5269
5269
  "dev": true,
5270
5270
  "license": "MIT",
5271
5271
  "dependencies": {
@@ -5777,8 +5777,8 @@
5777
5777
  "license": "MIT"
5778
5778
  },
5779
5779
  "node_modules/node-releases": {
5780
- "version": "2.0.26",
5781
- "integrity": "sha512-S2M9YimhSjBSvYnlr5/+umAnPHE++ODwt5e2Ij6FoX45HA/s4vHdkDx1eax2pAPeAOqu4s9b7ppahsyEFdVqQA==",
5780
+ "version": "2.0.27",
5781
+ "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==",
5782
5782
  "dev": true,
5783
5783
  "license": "MIT"
5784
5784
  },