@wavemaker-ai/angular-app 1.0.0-rc.317 → 1.0.0-rc.322

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.
@@ -38575,6 +38575,7 @@ const TREE_COMPONENT = [{ from: '@wm/components/basic/tree', name: 'TreeComponen
38575
38575
  const ACCESSROLES_DIRECTIVE = [{ from: '@wm/runtime/base', name: 'AccessrolesDirective' }];
38576
38576
  const SHOW_IN_DEVICE_DIRECTIVE = [{ from: '@wm/components/base', name: 'ShowInDeviceDirective' }];
38577
38577
  const LAZY_LOAD_DIRECTIVE = [{ from: '@wm/components/base', name: 'LazyLoadDirective' }];
38578
+ const SVG_ICON_DIRECTIVE = [{ from: '@wm/components/base', name: 'SvgIconDirective' }];
38578
38579
  // Pipes
38579
38580
  const TO_DATE_PIPE = [{ from: '@wm/components/base', name: 'ToDatePipe' }];
38580
38581
  const TO_CURRENCY_PIPE = [{ from: '@wm/components/base', name: 'ToCurrencyPipe' }];
@@ -38687,6 +38688,7 @@ const WIDGET_IMPORTS = new Map([
38687
38688
  ['accessroles', ACCESSROLES_DIRECTIVE],
38688
38689
  ['showindevice', SHOW_IN_DEVICE_DIRECTIVE],
38689
38690
  ['lazyload', LAZY_LOAD_DIRECTIVE],
38691
+ ['svg-icon', SVG_ICON_DIRECTIVE],
38690
38692
  ['toDate', TO_DATE_PIPE],
38691
38693
  ['toCurrency', TO_CURRENCY_PIPE],
38692
38694
  ['numberToString', NUMBER_TO_STRING_PIPE],
@@ -38737,7 +38739,7 @@ const quoteAttr = v => {
38737
38739
  const registry$1 = new Map();
38738
38740
  const htmlParser = new HtmlParser();
38739
38741
  const empty = () => '';
38740
- const noSpan$1 = {};
38742
+ const noSpan$2 = {};
38741
38743
  /**
38742
38744
  * Creates an Angular Compiler Element for template transpilation.
38743
38745
  * Angular 20: Element constructor requires 9 arguments including proper endSourceSpan for closing tag generation.
@@ -38745,7 +38747,7 @@ const noSpan$1 = {};
38745
38747
  * @returns Element instance with proper source spans for Angular 20 compatibility
38746
38748
  */
38747
38749
  const createCompilerElement = (name) => {
38748
- return new Element$2(name, [], [], [], false, noSpan$1, noSpan$1, noSpan$1, false);
38750
+ return new Element$2(name, [], [], [], false, noSpan$2, noSpan$2, noSpan$2, false);
38749
38751
  };
38750
38752
  const isEvent = name => name[0] === 'o' && name[1] === 'n' && name[2] === '-';
38751
38753
  const getEventName = key => key.substr(3);
@@ -106398,8 +106400,8 @@ const findChild = (node, childName) => {
106398
106400
  const child = node && node.children.find(e => (e instanceof Element$2 && e.name === childName));
106399
106401
  return child;
106400
106402
  };
106401
- const createElement = name => {
106402
- return new Element$2(name, [], [], [], false, noSpan, noSpan, noSpan, false);
106403
+ const createElement$1 = name => {
106404
+ return new Element$2(name, [], [], [], false, noSpan$1, noSpan$1, noSpan$1, false);
106403
106405
  };
106404
106406
  const getElementNode = (name, node) => {
106405
106407
  let elementNode;
@@ -106419,7 +106421,7 @@ const getElementNode = (name, node) => {
106419
106421
  });
106420
106422
  return elementNode;
106421
106423
  };
106422
- const noSpan = {};
106424
+ const noSpan$1 = {};
106423
106425
  const idGen$9 = new IDGenerator('wm_page');
106424
106426
  register('wm-page', () => {
106425
106427
  return {
@@ -106429,7 +106431,7 @@ register('wm-page', () => {
106429
106431
  pageContentNode = getElementNode('wm-page-content', getElementNode('wm-content', node));
106430
106432
  }
106431
106433
  if (pageContentNode) {
106432
- const conditionalNode = createElement('ng-container');
106434
+ const conditionalNode = createElement$1('ng-container');
106433
106435
  const ifOpenText = new Text$1('@if (compilePageContent) {', null, undefined, undefined);
106434
106436
  conditionalNode.children.push(ifOpenText);
106435
106437
  conditionalNode.children = conditionalNode.children.concat(pageContentNode.children);
@@ -106600,14 +106602,23 @@ var rightPanel_build$1 = /*#__PURE__*/Object.freeze({
106600
106602
  });
106601
106603
 
106602
106604
  const tagName$h = 'div';
106605
+ const createElement = name => {
106606
+ return new Element$2(name, [], [], [], false, noSpan, noSpan, noSpan, false);
106607
+ };
106608
+ const noSpan = {};
106603
106609
  register('wm-page-content', () => {
106604
106610
  return {
106605
106611
  template: (node) => {
106606
- // For SPA pages, just append onPageContentReady() without conditional wrapping
106607
106612
  for (let attr of node.attrs) {
106608
106613
  if (attr.name === 'spa' && attr.value === 'true') {
106609
- // No conditional wrapping needed - content should render immediately
106610
- node.children.push(new Text$1('{{onPageContentReady()}}', null, undefined, undefined));
106614
+ const conditionalNode = createElement('ng-container');
106615
+ const ifOpenText = new Text$1('@if (compilePageContent) {', null, undefined, undefined);
106616
+ conditionalNode.children.push(ifOpenText);
106617
+ conditionalNode.children = conditionalNode.children.concat(node.children);
106618
+ conditionalNode.children.push(new Text$1('{{onPageContentReady()}}', null, undefined, undefined));
106619
+ const ifCloseText = new Text$1('}', null, undefined, undefined);
106620
+ conditionalNode.children.push(ifCloseText);
106621
+ node.children = [conditionalNode];
106611
106622
  break;
106612
106623
  }
106613
106624
  }
@@ -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: 6/5/2026, 3:56:42 AM</p>
72
+ <p class="timestamp">Generated on: 6/15/2026, 8:57:53 PM</p>
73
73
  </div>
74
74
 
75
75
  <div class="section">