ngx-sp-infra 5.2.14 → 5.2.15

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.
@@ -10477,11 +10477,11 @@ class ListComponent {
10477
10477
  this.telasItem = [];
10478
10478
  }
10479
10479
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10480
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: ListComponent, isStandalone: true, selector: "app-list", inputs: { telasItem: "telasItem" }, ngImport: i0, template: "<ul class=\"nav flex-column mt-3\">\n @if(telasItem.length) {\n @for(clickLink of telasItem; track $index) {\n <li class=\"nav-item\">\n <a class=\"nav-link\" href=\"#{{ clickLink.urlPath }}\">{{ clickLink.titulo }}</a>\n </li>\n }\n }\n</ul>", styles: ["a{color:#3e5154}\n"] }); }
10480
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: ListComponent, isStandalone: true, selector: "app-list", inputs: { telasItem: "telasItem" }, ngImport: i0, template: "<ul class=\"nav flex-column mt-3\">\n @if(telasItem.length) {\n @for(clickLink of telasItem; track $index) {\n <li class=\"nav-item\">\n <a class=\"nav-link\" [target]=\"clickLink.IsExternal ? '_blank' : '_self'\" [href]=\"clickLink.IsExternal ? ('/' + clickLink.urlPath) : ('/SisproErpCloud/' + clickLink.urlPath)\">{{ clickLink.titulo }}</a>\n </li>\n }\n }\n</ul>\n", styles: ["a{color:#3e5154}\n"] }); }
10481
10481
  }
10482
10482
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: ListComponent, decorators: [{
10483
10483
  type: Component,
10484
- args: [{ selector: 'app-list', imports: [], standalone: true, template: "<ul class=\"nav flex-column mt-3\">\n @if(telasItem.length) {\n @for(clickLink of telasItem; track $index) {\n <li class=\"nav-item\">\n <a class=\"nav-link\" href=\"#{{ clickLink.urlPath }}\">{{ clickLink.titulo }}</a>\n </li>\n }\n }\n</ul>", styles: ["a{color:#3e5154}\n"] }]
10484
+ args: [{ selector: 'app-list', imports: [], standalone: true, template: "<ul class=\"nav flex-column mt-3\">\n @if(telasItem.length) {\n @for(clickLink of telasItem; track $index) {\n <li class=\"nav-item\">\n <a class=\"nav-link\" [target]=\"clickLink.IsExternal ? '_blank' : '_self'\" [href]=\"clickLink.IsExternal ? ('/' + clickLink.urlPath) : ('/SisproErpCloud/' + clickLink.urlPath)\">{{ clickLink.titulo }}</a>\n </li>\n }\n }\n</ul>\n", styles: ["a{color:#3e5154}\n"] }]
10485
10485
  }], propDecorators: { telasItem: [{
10486
10486
  type: Input
10487
10487
  }] } });
@@ -10532,6 +10532,7 @@ class TelaItem {
10532
10532
  constructor() {
10533
10533
  this.titulo = '';
10534
10534
  this.urlPath = '';
10535
+ this.IsExternal = false;
10535
10536
  }
10536
10537
  }
10537
10538
  class SubMenuComponent {
@@ -10556,7 +10557,7 @@ class SubMenuComponent {
10556
10557
  }
10557
10558
  }
10558
10559
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: SubMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
10559
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: SubMenuComponent, isStandalone: true, selector: "app-nav-sub-menu", inputs: { navSubmenus: "navSubmenus", isProduction: "isProduction", hostname: "hostname" }, ngImport: i0, template: "<lib-container>\n <div class=\"px-5 mt-4\" innerContent1>\n @for(subMenu of navSubmenus; track $index) {\n <lib-icon class=\"bold engrenagem-ajustada\" iconName=\"{{ subMenu.icon ? subMenu.icon : 'engrenagem'}}\"></lib-icon>\n <span class=\"fw-bold fs-4 ms-1\">{{ subMenu.titulo }}</span>\n \n <app-nav-tabs [subMenus]=\"navSubmenus[$index].subMenuItem\"></app-nav-tabs>\n <hr>\n }\n </div>\n</lib-container>", styles: [".engrenagem-ajustada{position:relative;top:-4px}\n"], dependencies: [{ kind: "component", type: NavTabsComponent, selector: "app-nav-tabs", inputs: ["subMenus"] }, { kind: "component", type: LibIconsComponent, selector: "lib-icon", inputs: ["iconName", "iconColor", "iconSize", "iconFill"] }, { kind: "component", type: ContentContainerComponent, selector: "lib-container", inputs: ["documentation", "tabs", "advancedTabs", "containerTitle", "currentTab"], outputs: ["onChangeTab"] }] }); }
10560
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.14", type: SubMenuComponent, isStandalone: true, selector: "app-nav-sub-menu", inputs: { navSubmenus: "navSubmenus", isProduction: "isProduction", hostname: "hostname" }, ngImport: i0, template: "<lib-container>\n <div class=\"px-5 mt-4\" innerContent1>\n @for(subMenu of navSubmenus; track $index) {\n <lib-icon class=\"bold engrenagem-ajustada\" iconName=\"{{ subMenu.icon ? subMenu.icon : ''}}\"></lib-icon>\n <span class=\"fw-bold fs-4 ms-1\">{{ subMenu.titulo }}</span>\n\n <app-nav-tabs [subMenus]=\"navSubmenus[$index].subMenuItem\"></app-nav-tabs>\n <hr>\n }\n </div>\n</lib-container>\n", styles: [".engrenagem-ajustada{position:relative;top:-4px}\n"], dependencies: [{ kind: "component", type: NavTabsComponent, selector: "app-nav-tabs", inputs: ["subMenus"] }, { kind: "component", type: LibIconsComponent, selector: "lib-icon", inputs: ["iconName", "iconColor", "iconSize", "iconFill"] }, { kind: "component", type: ContentContainerComponent, selector: "lib-container", inputs: ["documentation", "tabs", "advancedTabs", "containerTitle", "currentTab"], outputs: ["onChangeTab"] }] }); }
10560
10561
  }
10561
10562
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImport: i0, type: SubMenuComponent, decorators: [{
10562
10563
  type: Component,
@@ -10564,7 +10565,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
10564
10565
  NavTabsComponent,
10565
10566
  LibIconsComponent,
10566
10567
  ContentContainerComponent
10567
- ], standalone: true, template: "<lib-container>\n <div class=\"px-5 mt-4\" innerContent1>\n @for(subMenu of navSubmenus; track $index) {\n <lib-icon class=\"bold engrenagem-ajustada\" iconName=\"{{ subMenu.icon ? subMenu.icon : 'engrenagem'}}\"></lib-icon>\n <span class=\"fw-bold fs-4 ms-1\">{{ subMenu.titulo }}</span>\n \n <app-nav-tabs [subMenus]=\"navSubmenus[$index].subMenuItem\"></app-nav-tabs>\n <hr>\n }\n </div>\n</lib-container>", styles: [".engrenagem-ajustada{position:relative;top:-4px}\n"] }]
10568
+ ], standalone: true, template: "<lib-container>\n <div class=\"px-5 mt-4\" innerContent1>\n @for(subMenu of navSubmenus; track $index) {\n <lib-icon class=\"bold engrenagem-ajustada\" iconName=\"{{ subMenu.icon ? subMenu.icon : ''}}\"></lib-icon>\n <span class=\"fw-bold fs-4 ms-1\">{{ subMenu.titulo }}</span>\n\n <app-nav-tabs [subMenus]=\"navSubmenus[$index].subMenuItem\"></app-nav-tabs>\n <hr>\n }\n </div>\n</lib-container>\n", styles: [".engrenagem-ajustada{position:relative;top:-4px}\n"] }]
10568
10569
  }], propDecorators: { navSubmenus: [{
10569
10570
  type: Input
10570
10571
  }], isProduction: [{