@indice/ng-components 0.2.148-beta → 0.2.148

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.
Files changed (157) hide show
  1. package/README.md +4 -4
  2. package/_styles.css +3571 -3501
  3. package/{esm2015/indice-ng-components.js → esm2020/indice-ng-components.mjs} +0 -0
  4. package/{esm2015/lib/controls/avatar-initials/avatar-initials.component.js → esm2020/lib/controls/avatar-initials/avatar-initials.component.mjs} +5 -8
  5. package/esm2020/lib/controls/collapsible-panel/collapsible-panel.component.mjs +20 -0
  6. package/esm2020/lib/controls/combobox/combobox.component.mjs +96 -0
  7. package/esm2020/lib/controls/date-picker/date-picker.component.mjs +260 -0
  8. package/esm2020/lib/controls/drop-down-menu/drop-down-menu.component.mjs +68 -0
  9. package/esm2020/lib/controls/kpi-tile/kpi-tile.component.mjs +36 -0
  10. package/esm2020/lib/controls/language-selection/language-selection.component.mjs +31 -0
  11. package/{esm2015/lib/controls/list-view/list-column.component.js → esm2020/lib/controls/list-view/list-column.component.mjs} +4 -4
  12. package/{esm2015/lib/controls/list-view/list-details-section.component.js → esm2020/lib/controls/list-view/list-details-section.component.mjs} +4 -4
  13. package/{esm2015/lib/controls/list-view/list-tile.component.js → esm2020/lib/controls/list-view/list-tile.component.mjs} +4 -4
  14. package/esm2020/lib/controls/list-view/list-view-empty-state.component.mjs +29 -0
  15. package/esm2020/lib/controls/list-view/list-view.component.mjs +183 -0
  16. package/esm2020/lib/controls/nav-links-list/nav-links-list.component.mjs +42 -0
  17. package/esm2020/lib/controls/notifications-indicator/notifications-indicator.component.mjs +73 -0
  18. package/esm2020/lib/controls/pager/pager.component.mjs +130 -0
  19. package/esm2020/lib/controls/side-pane/side-pane.component.mjs +72 -0
  20. package/esm2020/lib/controls/skeleton-loader/skeleton-loader.component.mjs +25 -0
  21. package/esm2020/lib/controls/tabs/lib-tab-group.component.mjs +59 -0
  22. package/esm2020/lib/controls/tabs/lib-tab.component.mjs +57 -0
  23. package/{esm2015/lib/controls/toaster/toaster-container.component.js → esm2020/lib/controls/toaster/toaster-container.component.mjs} +7 -10
  24. package/esm2020/lib/controls/toaster/toaster.component.mjs +31 -0
  25. package/esm2020/lib/controls/toggle/toggle.component.mjs +64 -0
  26. package/esm2020/lib/controls/user-profile-menu/user-profile-menu.component.mjs +71 -0
  27. package/{esm2015/lib/directives/click-outside.directive.js → esm2020/lib/directives/click-outside.directive.mjs} +4 -4
  28. package/{esm2015/lib/directives/dynamic-component-host.directive.js → esm2020/lib/directives/dynamic-component-host.directive.mjs} +4 -4
  29. package/esm2020/lib/helpers/base-list.component.mjs +181 -0
  30. package/esm2020/lib/icons.mjs +34 -0
  31. package/esm2020/lib/layouts/shell/shell-footer/shell-footer.component.mjs +19 -0
  32. package/esm2020/lib/layouts/shell/shell-header/shell-header.component.mjs +131 -0
  33. package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +103 -0
  34. package/esm2020/lib/layouts/shell/shell-sidebar/shell-sidebar.component.mjs +47 -0
  35. package/esm2020/lib/layouts/views/form-layout/form-layout.component.mjs +80 -0
  36. package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +49 -0
  37. package/esm2020/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +98 -0
  38. package/esm2020/lib/layouts/views/view-layout/view-layout.component.mjs +104 -0
  39. package/esm2020/lib/ng-components.module.mjs +245 -0
  40. package/esm2020/lib/pages/auth/auth-callback/auth-callback.component.mjs +30 -0
  41. package/{esm2015/lib/pages/auth/auth-renew/auth-renew.component.js → esm2020/lib/pages/auth/auth-renew/auth-renew.component.mjs} +4 -4
  42. package/{esm2015/lib/pages/auth/logged-out/logged-out.component.js → esm2020/lib/pages/auth/logged-out/logged-out.component.mjs} +5 -9
  43. package/esm2020/lib/pages/http-status/error/error.component.mjs +17 -0
  44. package/esm2020/lib/pages/http-status/page-not-found/page-not-found.component.mjs +15 -0
  45. package/esm2020/lib/pages/http-status/unauthorized/unauthorized.component.mjs +14 -0
  46. package/{esm2015/lib/pipes/address.pipe.js → esm2020/lib/pipes/address.pipe.mjs} +4 -4
  47. package/{esm2015/lib/pipes/duration-format.pipe.js → esm2020/lib/pipes/duration-format.pipe.mjs} +4 -4
  48. package/esm2020/lib/services/component-loader/component-loader-options.class.mjs +8 -0
  49. package/esm2020/lib/services/component-loader/component-loader.class.mjs +188 -0
  50. package/{esm2015/lib/services/component-loader/component-loader.factory.js → esm2020/lib/services/component-loader/component-loader.factory.mjs} +4 -4
  51. package/{esm2015/lib/services/component-loader/content-ref.class.js → esm2020/lib/services/component-loader/content-ref.class.mjs} +1 -1
  52. package/{esm2015/lib/services/modal-service/modal-backdrop-component.js → esm2020/lib/services/modal-service/modal-backdrop-component.mjs} +5 -5
  53. package/esm2020/lib/services/modal-service/modal-container-component.mjs +126 -0
  54. package/esm2020/lib/services/modal-service/modal-options.class.mjs +35 -0
  55. package/esm2020/lib/services/modal-service/modal-service.mjs +219 -0
  56. package/{esm2015/lib/services/modal-service/modal-styles.class.js → esm2020/lib/services/modal-service/modal-styles.class.mjs} +1 -1
  57. package/esm2020/lib/services/modal-service/modal.class.mjs +27 -0
  58. package/{esm2015/lib/services/toaster.service.js → esm2020/lib/services/toaster.service.mjs} +4 -4
  59. package/esm2020/lib/tokens.mjs +7 -0
  60. package/esm2020/lib/types.mjs +123 -0
  61. package/esm2020/public-api.mjs +56 -0
  62. package/fesm2015/indice-ng-components.mjs +3629 -0
  63. package/fesm2015/indice-ng-components.mjs.map +1 -0
  64. package/fesm2020/indice-ng-components.mjs +3572 -0
  65. package/fesm2020/indice-ng-components.mjs.map +1 -0
  66. package/{indice-ng-components.d.ts → index.d.ts} +0 -0
  67. package/lib/controls/avatar-initials/avatar-initials.component.d.ts +1 -1
  68. package/lib/controls/collapsible-panel/collapsible-panel.component.d.ts +1 -1
  69. package/lib/controls/combobox/combobox.component.d.ts +29 -0
  70. package/lib/controls/date-picker/date-picker.component.d.ts +1 -1
  71. package/lib/controls/drop-down-menu/drop-down-menu.component.d.ts +1 -1
  72. package/lib/controls/kpi-tile/kpi-tile.component.d.ts +1 -1
  73. package/lib/controls/language-selection/language-selection.component.d.ts +14 -0
  74. package/lib/controls/list-view/list-column.component.d.ts +1 -1
  75. package/lib/controls/list-view/list-details-section.component.d.ts +1 -1
  76. package/lib/controls/list-view/list-tile.component.d.ts +1 -1
  77. package/lib/controls/list-view/list-view-empty-state.component.d.ts +1 -1
  78. package/lib/controls/list-view/list-view.component.d.ts +1 -1
  79. package/lib/controls/nav-links-list/nav-links-list.component.d.ts +16 -0
  80. package/lib/controls/notifications-indicator/notifications-indicator.component.d.ts +22 -0
  81. package/lib/controls/pager/pager.component.d.ts +1 -1
  82. package/lib/controls/side-pane/side-pane.component.d.ts +1 -1
  83. package/lib/controls/skeleton-loader/skeleton-loader.component.d.ts +1 -1
  84. package/lib/controls/tabs/lib-tab-group.component.d.ts +21 -0
  85. package/lib/controls/tabs/lib-tab.component.d.ts +22 -0
  86. package/lib/controls/toaster/toaster-container.component.d.ts +1 -1
  87. package/lib/controls/toaster/toaster.component.d.ts +1 -1
  88. package/lib/controls/toggle/toggle.component.d.ts +1 -1
  89. package/lib/controls/user-profile-menu/user-profile-menu.component.d.ts +24 -0
  90. package/lib/directives/click-outside.directive.d.ts +1 -1
  91. package/lib/directives/dynamic-component-host.directive.d.ts +1 -1
  92. package/lib/helpers/base-list.component.d.ts +1 -1
  93. package/lib/icons.d.ts +2 -0
  94. package/lib/layouts/shell/shell-footer/shell-footer.component.d.ts +1 -1
  95. package/lib/layouts/shell/shell-header/shell-header.component.d.ts +20 -25
  96. package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +5 -3
  97. package/lib/layouts/shell/shell-sidebar/shell-sidebar.component.d.ts +18 -0
  98. package/lib/layouts/views/form-layout/form-layout.component.d.ts +3 -4
  99. package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +1 -1
  100. package/lib/layouts/views/side-view-layout/side-view-layout.component.d.ts +1 -1
  101. package/lib/layouts/views/view-layout/view-layout.component.d.ts +1 -1
  102. package/lib/ng-components.module.d.ts +31 -24
  103. package/lib/pages/auth/auth-callback/auth-callback.component.d.ts +1 -1
  104. package/lib/pages/auth/auth-renew/auth-renew.component.d.ts +1 -1
  105. package/lib/pages/auth/logged-out/logged-out.component.d.ts +1 -1
  106. package/lib/pages/http-status/error/error.component.d.ts +1 -1
  107. package/lib/pages/http-status/page-not-found/page-not-found.component.d.ts +1 -1
  108. package/lib/pages/http-status/unauthorized/unauthorized.component.d.ts +1 -1
  109. package/lib/pipes/address.pipe.d.ts +1 -1
  110. package/lib/pipes/duration-format.pipe.d.ts +1 -1
  111. package/lib/services/modal-service/modal-backdrop-component.d.ts +1 -1
  112. package/lib/services/modal-service/modal-container-component.d.ts +1 -1
  113. package/lib/tokens.d.ts +5 -1
  114. package/lib/types.d.ts +42 -10
  115. package/modal.css +157 -157
  116. package/package.json +31 -17
  117. package/public-api.d.ts +4 -1
  118. package/bundles/indice-ng-components.umd.js +0 -3788
  119. package/bundles/indice-ng-components.umd.js.map +0 -1
  120. package/esm2015/lib/controls/collapsible-panel/collapsible-panel.component.js +0 -23
  121. package/esm2015/lib/controls/date-picker/date-picker.component.js +0 -269
  122. package/esm2015/lib/controls/drop-down-menu/drop-down-menu.component.js +0 -72
  123. package/esm2015/lib/controls/kpi-tile/kpi-tile.component.js +0 -39
  124. package/esm2015/lib/controls/list-view/list-view-empty-state.component.js +0 -32
  125. package/esm2015/lib/controls/list-view/list-view.component.js +0 -186
  126. package/esm2015/lib/controls/pager/pager.component.js +0 -133
  127. package/esm2015/lib/controls/side-pane/side-pane.component.js +0 -76
  128. package/esm2015/lib/controls/skeleton-loader/skeleton-loader.component.js +0 -29
  129. package/esm2015/lib/controls/toaster/toaster.component.js +0 -34
  130. package/esm2015/lib/controls/toggle/toggle.component.js +0 -68
  131. package/esm2015/lib/helpers/base-list.component.js +0 -182
  132. package/esm2015/lib/icons.js +0 -32
  133. package/esm2015/lib/layouts/shell/shell-footer/shell-footer.component.js +0 -22
  134. package/esm2015/lib/layouts/shell/shell-header/shell-header.component.js +0 -142
  135. package/esm2015/lib/layouts/shell/shell-layout/shell-layout.component.js +0 -101
  136. package/esm2015/lib/layouts/views/form-layout/form-layout.component.js +0 -86
  137. package/esm2015/lib/layouts/views/model-view-layout/model-view-layout.component.js +0 -55
  138. package/esm2015/lib/layouts/views/side-view-layout/side-view-layout.component.js +0 -101
  139. package/esm2015/lib/layouts/views/view-layout/view-layout.component.js +0 -110
  140. package/esm2015/lib/ng-components.module.js +0 -220
  141. package/esm2015/lib/pages/auth/auth-callback/auth-callback.component.js +0 -34
  142. package/esm2015/lib/pages/http-status/error/error.component.js +0 -20
  143. package/esm2015/lib/pages/http-status/page-not-found/page-not-found.component.js +0 -18
  144. package/esm2015/lib/pages/http-status/unauthorized/unauthorized.component.js +0 -17
  145. package/esm2015/lib/pipes/obs-with-status.pipe.js +0 -26
  146. package/esm2015/lib/services/component-loader/component-loader-options.class.js +0 -8
  147. package/esm2015/lib/services/component-loader/component-loader.class.js +0 -192
  148. package/esm2015/lib/services/modal-service/modal-container-component.js +0 -128
  149. package/esm2015/lib/services/modal-service/modal-options.class.js +0 -35
  150. package/esm2015/lib/services/modal-service/modal-service.js +0 -220
  151. package/esm2015/lib/services/modal-service/modal.class.js +0 -27
  152. package/esm2015/lib/tokens.js +0 -4
  153. package/esm2015/lib/types.js +0 -114
  154. package/esm2015/public-api.js +0 -53
  155. package/fesm2015/indice-ng-components.js +0 -3247
  156. package/fesm2015/indice-ng-components.js.map +0 -1
  157. package/lib/pipes/obs-with-status.pipe.d.ts +0 -13
File without changes
@@ -10,5 +10,5 @@ export declare class AvatarInitialsComponent implements OnInit {
10
10
  ngOnInit(): void;
11
11
  private createInititals;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<AvatarInitialsComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<AvatarInitialsComponent, "lib-avatar-initials", never, { "name": "name"; "large": "large"; }, {}, never, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarInitialsComponent, "lib-avatar-initials", never, { "name": "name"; "large": "large"; }, {}, never, never, false>;
14
14
  }
@@ -6,5 +6,5 @@ export declare class CollapsiblePanelComponent implements OnInit {
6
6
  constructor();
7
7
  ngOnInit(): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<CollapsiblePanelComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<CollapsiblePanelComponent, "lib-collapsible-panel", never, { "title": "title"; }, {}, never, ["*"]>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CollapsiblePanelComponent, "lib-collapsible-panel", never, { "title": "title"; }, {}, never, ["*"], false>;
10
10
  }
@@ -0,0 +1,29 @@
1
+ import { EventEmitter, OnInit, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ComboboxComponent implements OnInit {
4
+ private _debouncer;
5
+ private _items;
6
+ private _defaultItemsFilter;
7
+ constructor();
8
+ id: string;
9
+ set items(items: any[]);
10
+ get items(): any[];
11
+ itemTemplate: TemplateRef<HTMLElement> | null;
12
+ selectedItemsFilter: (item: any) => boolean | null;
13
+ selectedItemTemplate: TemplateRef<HTMLElement> | null;
14
+ busy: boolean;
15
+ debounceMs: number;
16
+ onSearch: EventEmitter<string | undefined>;
17
+ onItemSelected: EventEmitter<any>;
18
+ showOptions: boolean;
19
+ selectedItems: any[];
20
+ ngOnInit(): void;
21
+ onInputClick(): void;
22
+ onInputClickOutside(): void;
23
+ onInputKeyUp(event: any): void;
24
+ onListItemSelected(item: any): void;
25
+ removeSelectedItem(item: any): void;
26
+ private emitSearchEvent;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComboboxComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ComboboxComponent, "lib-combobox", never, { "id": "id"; "items": "items"; "itemTemplate": "itemTemplate"; "selectedItemsFilter": "selectedItemsFilter"; "selectedItemTemplate": "selectedItemTemplate"; "busy": "busy"; "debounceMs": "debounceMs"; }, { "onSearch": "onSearch"; "onItemSelected": "onItemSelected"; }, never, never, false>;
29
+ }
@@ -44,5 +44,5 @@ export declare class DatepickerComponent implements OnInit, ControlValueAccessor
44
44
  openCalendar(): void;
45
45
  closeCalendar(): void;
46
46
  static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
47
- static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "lib-date-picker", never, { "readonly": "readonly"; "disabled": "disabled"; "displayFormat": "display-format"; "placeholder": "placeholder"; "value": "value"; }, { "valueChange": "valueChange"; }, never, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "lib-date-picker", never, { "readonly": "readonly"; "disabled": "disabled"; "displayFormat": "display-format"; "placeholder": "placeholder"; "value": "value"; }, { "valueChange": "valueChange"; }, never, never, false>;
48
48
  }
@@ -21,5 +21,5 @@ export declare class DropDownMenuComponent implements OnInit, OnChanges {
21
21
  onClickOutside($event: any): void;
22
22
  selectOption(option: MenuOption): void;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<DropDownMenuComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<DropDownMenuComponent, "lib-drop-down-menu", never, { "options": "options"; "selectedValue": "selected"; "multiple": "multiple"; "placeholder": "placeholder"; }, { "selectedChange": "selectedChange"; "selectedChanged": "selectedChanged"; }, never, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropDownMenuComponent, "lib-drop-down-menu", never, { "options": "options"; "selectedValue": "selected"; "multiple": "multiple"; "placeholder": "placeholder"; }, { "selectedChange": "selectedChange"; "selectedChanged": "selectedChanged"; }, never, never, false>;
25
25
  }
@@ -9,5 +9,5 @@ export declare class KpiTileComponent implements OnInit {
9
9
  ngOnInit(): void;
10
10
  emitTileAction($event: any): boolean;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<KpiTileComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<KpiTileComponent, "lib-kpi-tile", never, { "title": "title"; "busy": "busy"; "kpi": "kpi"; }, { "tileAction": "tile-action"; }, never, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<KpiTileComponent, "lib-kpi-tile", never, { "title": "title"; "busy": "busy"; "kpi": "kpi"; }, { "tileAction": "tile-action"; }, never, never, false>;
13
13
  }
@@ -0,0 +1,14 @@
1
+ import { MenuOption } from './../../types';
2
+ import { OnInit } from '@angular/core';
3
+ import { IAppLanguagesService } from '../../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class LanguageSelectionComponent implements OnInit {
6
+ langsService: IAppLanguagesService | undefined;
7
+ menuExpanded: boolean;
8
+ constructor(langsService: IAppLanguagesService | undefined);
9
+ ngOnInit(): void;
10
+ selectLang(option: MenuOption): void;
11
+ onClickOutside($event: any): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageSelectionComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<LanguageSelectionComponent, "lib-language-selection", never, {}, {}, never, never, false>;
14
+ }
@@ -5,5 +5,5 @@ export declare class ListColumnComponent {
5
5
  template: any | null;
6
6
  constructor();
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<ListColumnComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<ListColumnComponent, "lib-list-column", never, { "title": "title"; "fullWidth": "full-width"; }, {}, ["template"], ["*"]>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListColumnComponent, "lib-list-column", never, { "title": "title"; "fullWidth": "full-width"; }, {}, ["template"], ["*"], false>;
9
9
  }
@@ -3,5 +3,5 @@ export declare class ListDetailsSectionComponent {
3
3
  template: any | null;
4
4
  constructor();
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<ListDetailsSectionComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<ListDetailsSectionComponent, "lib-list-details-section", never, {}, {}, ["template"], ["*"]>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListDetailsSectionComponent, "lib-list-details-section", never, {}, {}, ["template"], ["*"], false>;
7
7
  }
@@ -3,5 +3,5 @@ export declare class ListTileComponent {
3
3
  template: any | null;
4
4
  constructor();
5
5
  static ɵfac: i0.ɵɵFactoryDeclaration<ListTileComponent, never>;
6
- static ɵcmp: i0.ɵɵComponentDeclaration<ListTileComponent, "lib-list-tile", never, {}, {}, ["template"], ["*"]>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListTileComponent, "lib-list-tile", never, {}, {}, ["template"], ["*"], false>;
7
7
  }
@@ -7,5 +7,5 @@ export declare class ListViewEmptyStateComponent implements OnInit {
7
7
  constructor();
8
8
  ngOnInit(): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<ListViewEmptyStateComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<ListViewEmptyStateComponent, "lib-list-view-empty-state", never, { "title": "title"; "subTitle": "sub-title"; "newItemLabel": "new-item-label"; }, {}, never, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListViewEmptyStateComponent, "lib-list-view-empty-state", never, { "title": "title"; "subTitle": "sub-title"; "newItemLabel": "new-item-label"; }, {}, never, never, false>;
11
11
  }
@@ -51,5 +51,5 @@ export declare class ListViewComponent implements OnChanges {
51
51
  toggleDetails(item: any): void;
52
52
  private setTilesDeckClass;
53
53
  static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
54
- static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "lib-list-view", never, { "busy": "busy"; "items": "items"; "showPager": "show-pager"; "count": "count"; "page": "page"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "detailsSectionPropertyCount": "details-section-property-count"; "sortOptions": "sort-options"; "sort": "sort"; "sortdir": "sort-dir"; "view": "view"; "tilesCount": "tiles-count"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "detailsOpened": "detailsOpened"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, ["tiles", "details", "cols"], ["*"]>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "lib-list-view", never, { "busy": "busy"; "items": "items"; "showPager": "show-pager"; "count": "count"; "page": "page"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "detailsSectionPropertyCount": "details-section-property-count"; "sortOptions": "sort-options"; "sort": "sort"; "sortdir": "sort-dir"; "view": "view"; "tilesCount": "tiles-count"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "detailsOpened": "detailsOpened"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, ["tiles", "details", "cols"], ["*"], false>;
55
55
  }
@@ -0,0 +1,16 @@
1
+ import { Observable } from 'rxjs';
2
+ import { OnInit } from '@angular/core';
3
+ import { NavLink } from '../../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class NavLinksListComponent implements OnInit {
6
+ links: Observable<NavLink[]> | undefined;
7
+ activeFragment: Observable<string> | undefined;
8
+ navLinkClass: string | string;
9
+ navLinkActiveClass: string | string[];
10
+ containerClass: string | string[] | undefined;
11
+ showIcons: boolean | undefined;
12
+ constructor();
13
+ ngOnInit(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<NavLinksListComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavLinksListComponent, "lib-nav-links-list", never, { "links": "links"; "activeFragment": "active-fragment"; "navLinkClass": "link-class"; "navLinkActiveClass": "link-active-class"; "containerClass": "container-class"; "showIcons": "show-icons"; }, {}, never, never, false>;
16
+ }
@@ -0,0 +1,22 @@
1
+ import { IAppNotifications, NavLink } from './../../types';
2
+ import { OnInit, OnDestroy } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NotificationsIndicatorComponent implements OnInit, OnDestroy {
5
+ notifications: IAppNotifications;
6
+ links: any;
7
+ menuExpanded: boolean;
8
+ unreadCount: number;
9
+ items: any[];
10
+ allNotificationsLink?: NavLink;
11
+ private notificationsSub$;
12
+ private inboxAction;
13
+ newArrival: boolean;
14
+ constructor(notifications: IAppNotifications, links: any);
15
+ ngOnDestroy(): void;
16
+ ngOnInit(): void;
17
+ doInboxAction(): void;
18
+ removeItem(index: number): void;
19
+ onClickOutside($event: any): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsIndicatorComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsIndicatorComponent, "lib-notifications-indicator", never, {}, {}, never, never, false>;
22
+ }
@@ -32,5 +32,5 @@ export declare class PagerComponent implements OnInit, OnChanges {
32
32
  sortOptionChanged(sort: string): void;
33
33
  toggleSortdir(): void;
34
34
  static ɵfac: i0.ɵɵFactoryDeclaration<PagerComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<PagerComponent, "lib-pager", never, { "busy": "busy"; "count": "count"; "page": "page"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "sortOptions": "sort-options"; "sort": "sort"; "sortdir": "sort-dir"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, never, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<PagerComponent, "lib-pager", never, { "busy": "busy"; "count": "count"; "page": "page"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "sortOptions": "sort-options"; "sort": "sort"; "sortdir": "sort-dir"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, never, never, false>;
36
36
  }
@@ -14,5 +14,5 @@ export declare class SidePaneComponent implements OnInit, OnDestroy {
14
14
  onSidePaneActivated(component: any): void;
15
15
  onSidePaneDeactivated($event: any): void;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<SidePaneComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": "visible"; }, { "onComplete": "onComplete"; }, never, ["*"]>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": "visible"; }, { "onComplete": "onComplete"; }, never, ["*"], false>;
18
18
  }
@@ -7,5 +7,5 @@ export declare class SkeletonLoaderComponent implements OnInit {
7
7
  ngOnInit(): void;
8
8
  counter(i: number): number[];
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonLoaderComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonLoaderComponent, "lib-skeleton-loader", never, { "count": "count"; "type": "type"; }, {}, never, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonLoaderComponent, "lib-skeleton-loader", never, { "count": "count"; "type": "type"; }, {}, never, never, false>;
11
11
  }
@@ -0,0 +1,21 @@
1
+ import { AfterContentChecked, AfterContentInit, EventEmitter, OnInit, QueryList } from '@angular/core';
2
+ import { LibTabComponent } from './lib-tab.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LibTabGroupComponent implements OnInit, AfterContentInit, AfterContentChecked {
5
+ constructor();
6
+ /** The inner tabs of the group. */
7
+ tabs: QueryList<LibTabComponent> | undefined;
8
+ /** Emmited when a step change occurs. */
9
+ tabChanged: EventEmitter<LibTabComponent>;
10
+ /** The current tab. */
11
+ get currentTab(): LibTabComponent | undefined;
12
+ /** The index (starting from zero) of the current tab. */
13
+ get currentΤabIndex(): number | undefined;
14
+ ngOnInit(): void;
15
+ ngAfterContentInit(): void;
16
+ ngAfterContentChecked(): void;
17
+ onTabChanged(selectedTab: LibTabComponent): void;
18
+ onTabSelectChanged(selectedTabIndex: number): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibTabGroupComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibTabGroupComponent, "lib-tab-group", never, {}, { "tabChanged": "tabChanged"; }, ["tabs"], never, false>;
21
+ }
@@ -0,0 +1,22 @@
1
+ import { OnInit, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LibTabComponent implements OnInit {
4
+ readonly _tabGroup?: any;
5
+ private _isActive;
6
+ constructor(_tabGroup?: any);
7
+ /** The content provided for the tab. */
8
+ content: TemplateRef<any>;
9
+ /** A label for the tab header. */
10
+ label: string | undefined;
11
+ /** Indicates the unique id assigned in the tab. */
12
+ id: string;
13
+ /** Indicates the index of the tab. */
14
+ get index(): number | undefined;
15
+ /** Indicates whether the tab is active. */
16
+ get isActive(): boolean;
17
+ /** Setter for LibTabComponent isActive property. */
18
+ set isActive(isActive: boolean);
19
+ ngOnInit(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibTabComponent, [{ optional: true; }]>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibTabComponent, "lib-tab", never, { "label": "label"; "id": "id"; }, {}, never, ["*"], false>;
22
+ }
@@ -9,5 +9,5 @@ export declare class ToasterContainerComponent implements OnInit {
9
9
  ngOnInit(): void;
10
10
  remove(index: number): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<ToasterContainerComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<ToasterContainerComponent, "lib-toaster-container", never, {}, {}, never, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToasterContainerComponent, "lib-toaster-container", never, {}, {}, never, never, false>;
13
13
  }
@@ -11,5 +11,5 @@ export declare class ToasterComponent implements OnInit {
11
11
  ngOnInit(): void;
12
12
  closeToast(index: number): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<ToasterComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<ToasterComponent, "lib-toaster", never, { "toast": "toast"; "i": "i"; }, { "remove": "remove"; }, never, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToasterComponent, "lib-toaster", never, { "toast": "toast"; "i": "i"; }, { "remove": "remove"; }, never, never, false>;
15
15
  }
@@ -15,5 +15,5 @@ export declare class ToggleComponent implements OnInit, ControlValueAccessor {
15
15
  ngOnInit(): void;
16
16
  changeValue(): void;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
18
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "lib-toggle", never, { "value": "value"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "lib-toggle", never, { "value": "value"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never, false>;
19
19
  }
@@ -0,0 +1,24 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { AuthService } from '@indice/ng-auth';
4
+ import { User } from 'oidc-client';
5
+ import { Subscription } from 'rxjs';
6
+ import * as i0 from "@angular/core";
7
+ export declare class UserProfileMenuComponent implements OnInit {
8
+ protected authService: AuthService;
9
+ protected router: Router;
10
+ links: any;
11
+ showUserName: boolean | undefined;
12
+ protected userSub$: Subscription | null;
13
+ protected statusSub$: Subscription | null;
14
+ user: User | null;
15
+ avatarName: string | null;
16
+ userMenuExpanded: boolean;
17
+ constructor(authService: AuthService, router: Router, links: any);
18
+ ngOnInit(): void;
19
+ signin(event: any | null | undefined): void;
20
+ private setCurrentUser;
21
+ onClickOutside($event: any): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileMenuComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileMenuComponent, "lib-user-profile-menu", never, { "showUserName": "show-user-name"; }, {}, never, never, false>;
24
+ }
@@ -36,5 +36,5 @@ export declare class ClickOutsideDirective implements OnInit, OnChanges, OnDestr
36
36
  private _initWindowBlurListener;
37
37
  private _removeWindowBlurListener;
38
38
  static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
39
- static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, { "clickOutsideEnabled": "clickOutsideEnabled"; "attachOutsideOnClick": "attachOutsideOnClick"; "delayClickOutsideInit": "delayClickOutsideInit"; "emitOnBlur": "emitOnBlur"; "exclude": "exclude"; "excludeBeforeClick": "excludeBeforeClick"; "clickOutsideEvents": "clickOutsideEvents"; }, { "clickOutside": "clickOutside"; }, never>;
39
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, { "clickOutsideEnabled": "clickOutsideEnabled"; "attachOutsideOnClick": "attachOutsideOnClick"; "delayClickOutsideInit": "delayClickOutsideInit"; "emitOnBlur": "emitOnBlur"; "exclude": "exclude"; "excludeBeforeClick": "excludeBeforeClick"; "clickOutsideEvents": "clickOutsideEvents"; }, { "clickOutside": "clickOutside"; }, never, never, false>;
40
40
  }
@@ -5,5 +5,5 @@ export declare class DynamicComponentHostDirective {
5
5
  hostName: string;
6
6
  constructor(viewContainerRef: ViewContainerRef);
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentHostDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentHostDirective, "[appDynamicComponentHost]", never, { "hostName": "hostName"; }, {}, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentHostDirective, "[appDynamicComponentHost]", never, { "hostName": "hostName"; }, {}, never, never, false>;
9
9
  }
@@ -38,5 +38,5 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
38
38
  sortdirChanged(sortdir: string): void;
39
39
  searchChanged(searchText: string | null): void;
40
40
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, {}, {}, never, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, {}, {}, never, never, false>;
42
42
  }
package/lib/icons.d.ts CHANGED
@@ -27,4 +27,6 @@ export declare class Icons {
27
27
  static SortAsc: string;
28
28
  static SortDesc: string;
29
29
  static Details: string;
30
+ static Messages: string;
31
+ static MessagesUnread: string;
30
32
  }
@@ -4,5 +4,5 @@ export declare class ShellFooterComponent {
4
4
  links: IAppLinks;
5
5
  constructor(links: IAppLinks);
6
6
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellFooterComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellFooterComponent, "lib-shell-footer", never, {}, {}, never, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellFooterComponent, "lib-shell-footer", never, {}, {}, never, never, false>;
8
8
  }
@@ -1,45 +1,40 @@
1
+ import { ShellLayoutType } from './../../../types';
2
+ import { AuthService } from '@indice/ng-auth';
1
3
  import { OnInit, OnDestroy } from '@angular/core';
2
4
  import { User } from 'oidc-client';
3
- import { Router } from '@angular/router';
4
- import { IShellConfig, NavLink, NotificationNavLink } from '../../../types';
5
- import { Observable, Subscription } from 'rxjs';
6
- import { AuthService } from '@indice/ng-auth';
5
+ import { ActivatedRoute, Event, Router } from '@angular/router';
6
+ import { NavLink } from '../../../types';
7
+ import { Observable } from 'rxjs';
8
+ import { Subscription } from 'rxjs';
7
9
  import * as i0 from "@angular/core";
8
10
  export declare class ShellHeaderComponent implements OnInit, OnDestroy {
9
- private authService;
10
- private router;
11
+ protected authService: AuthService;
12
+ protected router: Router;
13
+ protected route: ActivatedRoute;
14
+ config: any;
11
15
  links: any;
12
16
  sectionLinksPath: string;
13
- notificationLinksPath: string;
14
- allNotificationsLinkPath: string;
15
- config: IShellConfig;
16
- border: boolean;
17
- showNotifications: boolean | undefined;
18
- showUserNameOnHeader: boolean | undefined;
19
- notificationsMenuVisible: boolean;
20
17
  profileMenuVisible: boolean;
18
+ showUserNameOnHeader: boolean | undefined;
19
+ showAlerts: boolean | undefined;
20
+ shellLayout: ShellLayoutType | undefined;
21
+ border: boolean;
21
22
  sectionLinks: Observable<NavLink[]>;
22
- notificationLinks: Observable<NotificationNavLink[]>;
23
- allNotificationsLink: Observable<NavLink>;
24
23
  mobileMenuExpanded: boolean;
25
24
  userMenuExpanded: boolean;
26
- notificationsMenuExpanded: boolean;
27
25
  protected routeSubject: Observable<Event>;
28
26
  protected routerSub$: Subscription | null;
29
27
  protected userSub$: Subscription | null;
30
28
  protected statusSub$: Subscription | null;
31
29
  user: User | null;
32
30
  avatarName: string | null;
33
- notificationsCount: number;
34
- constructor(authService: AuthService, router: Router, links: any);
35
- ngOnDestroy(): void;
31
+ activeFragment: any | null;
32
+ constructor(authService: AuthService, router: Router, route: ActivatedRoute, config: any, links: any);
36
33
  ngOnInit(): void;
37
- private setCurrentUser;
38
- onClickOutsideProfile($event: any): void;
39
- onClickOutsideNotifications($event: any): void;
34
+ ngOnDestroy(): void;
35
+ onClickOutside($event: any): void;
40
36
  signin(event: any | null | undefined): void;
41
- expandUserMenu(): void;
42
- expandNotificationsMenu(): void;
37
+ private setCurrentUser;
43
38
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": "section-links"; "notificationLinksPath": "notification-links"; "allNotificationsLinkPath": "all-notifications"; "config": "config"; "border": "border"; }, {}, never, never>;
39
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": "section-links"; "profileMenuVisible": "profile-menu"; "showUserNameOnHeader": "show-userName"; "showAlerts": "show-alerts"; "shellLayout": "shell-layout"; "border": "border"; }, {}, never, never, false>;
45
40
  }
@@ -6,16 +6,18 @@ import { DynamicComponentHostDirective } from '../../../directives/dynamic-compo
6
6
  import { ComponentLoaderFactory } from '../../../services/component-loader/component-loader.factory';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterViewInit, AfterViewChecked {
9
+ private document;
9
10
  private router;
10
11
  private location;
11
12
  private config;
12
13
  private componentLoaderFactory;
13
14
  dynamicComponentHosts: QueryList<DynamicComponentHostDirective> | null;
14
- private routerSub$;
15
15
  showRightPaneSM: boolean;
16
+ private routerSub$;
16
17
  activeConfig: IShellConfig;
17
18
  loaded: boolean;
18
- constructor(router: Router, location: Location, config: IShellConfig | null, componentLoaderFactory: ComponentLoaderFactory);
19
+ hideSidebar: boolean;
20
+ constructor(document: any, router: Router, location: Location, config: IShellConfig | undefined, componentLoaderFactory: ComponentLoaderFactory);
19
21
  ngAfterViewChecked(): void;
20
22
  ngOnInit(): void;
21
23
  ngAfterViewInit(): void;
@@ -23,5 +25,5 @@ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterVie
23
25
  ngOnDestroy(): void;
24
26
  private loadCustomComponent;
25
27
  static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, {}, {}, never, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, {}, {}, never, never, false>;
27
29
  }
@@ -0,0 +1,18 @@
1
+ import { IShellConfig, NavLink } from './../../../types';
2
+ import { OnInit } from '@angular/core';
3
+ import { Observable } from 'rxjs/internal/Observable';
4
+ import { ActivatedRoute, Router } from '@angular/router';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ShellSidebarComponent implements OnInit {
7
+ protected router: Router;
8
+ protected route: ActivatedRoute;
9
+ links: any;
10
+ sectionLinksPath: string;
11
+ sectionLinks: Observable<NavLink[]>;
12
+ shellConfig: IShellConfig | undefined;
13
+ activeFragment: any | null;
14
+ constructor(router: Router, route: ActivatedRoute, links: any);
15
+ ngOnInit(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarComponent, "lib-shell-sidebar", never, { "sectionLinksPath": "section-links"; "shellConfig": "config"; }, {}, never, never, false>;
18
+ }
@@ -3,7 +3,7 @@ import { Router } from '@angular/router';
3
3
  import { RouterViewAction, ViewAction } from '../../../types';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class FormLayoutComponent implements OnInit {
6
- private _router;
6
+ private router$;
7
7
  private searchInput$?;
8
8
  title: string | null;
9
9
  searchPlaceholder: string | null;
@@ -12,8 +12,7 @@ export declare class FormLayoutComponent implements OnInit {
12
12
  onAction: EventEmitter<ViewAction>;
13
13
  onSearch: EventEmitter<string>;
14
14
  onComplete: EventEmitter<boolean>;
15
- showRightPaneSM: boolean;
16
- constructor(_router: Router);
15
+ constructor(router$: Router);
17
16
  ngOnInit(): void;
18
17
  onSidePaneDeactivated($event: any): void;
19
18
  emitActionClick(action: ViewAction): void;
@@ -21,5 +20,5 @@ export declare class FormLayoutComponent implements OnInit {
21
20
  searchActionType(text: string): void;
22
21
  routerLinkActionClick(action: RouterViewAction | any, relative?: boolean): void;
23
22
  static ɵfac: i0.ɵɵFactoryDeclaration<FormLayoutComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<FormLayoutComponent, "lib-form-layout", never, { "title": "title"; "searchPlaceholder": "search-placeholder"; "actions": "actions"; "subTitle": "sub-title"; }, { "onAction": "onAction"; "onSearch": "onSearch"; "onComplete": "onComplete"; }, never, ["*"]>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormLayoutComponent, "lib-form-layout", never, { "title": "title"; "searchPlaceholder": "search-placeholder"; "actions": "actions"; "subTitle": "sub-title"; }, { "onAction": "onAction"; "onSearch": "onSearch"; "onComplete": "onComplete"; }, never, ["*"], false>;
25
24
  }
@@ -21,5 +21,5 @@ export declare class ModelViewLayoutComponent implements OnInit {
21
21
  onSidePaneDeactivated($event: any): void;
22
22
  closeSidePane(): void;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<ModelViewLayoutComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": "title"; "primary": "primary-links"; "secondary": "secondary-links"; "metaItems": "meta-items"; }, {}, never, ["*"]>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": "title"; "primary": "primary-links"; "secondary": "secondary-links"; "metaItems": "meta-items"; }, {}, never, ["*"], false>;
25
25
  }
@@ -24,5 +24,5 @@ export declare class SideViewLayoutComponent implements OnInit {
24
24
  emitCancel(): void;
25
25
  emitOK(): void;
26
26
  static ɵfac: i0.ɵɵFactoryDeclaration<SideViewLayoutComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<SideViewLayoutComponent, "lib-side-view-layout", never, { "title": "title"; "showActions": "showActions"; "disabled": "disabled"; "returnPath": "return-path"; "okLabel": "ok-label"; "okShow": "ok-show"; "closeOnOk": "ok-close-dialog"; "cancelLabel": "cancel-label"; "cancelShow": "cancel-show"; "forceLocationBack": "force-location-back"; }, { "cancel": "cancel"; "ok": "ok"; }, never, ["*"]>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<SideViewLayoutComponent, "lib-side-view-layout", never, { "title": "title"; "showActions": "showActions"; "disabled": "disabled"; "returnPath": "return-path"; "okLabel": "ok-label"; "okShow": "ok-show"; "closeOnOk": "ok-close-dialog"; "cancelLabel": "cancel-label"; "cancelShow": "cancel-show"; "forceLocationBack": "force-location-back"; }, { "cancel": "cancel"; "ok": "ok"; }, never, ["*"], false>;
28
28
  }
@@ -27,5 +27,5 @@ export declare class ViewLayoutComponent implements OnInit {
27
27
  handleClear(event: any): void;
28
28
  switchViewActionClick(action: SwitchViewAction | any): void;
29
29
  static ɵfac: i0.ɵɵFactoryDeclaration<ViewLayoutComponent, never>;
30
- static ɵcmp: i0.ɵɵComponentDeclaration<ViewLayoutComponent, "lib-view-layout", never, { "header": "show-header"; "fluid": "fluid"; "title": "title"; "icon": "icon"; "actions": "actions"; "busy": "busy"; "searchPlaceholder": "search-placeholder"; "view": "view"; "metaItems": "meta-items"; }, { "onAction": "onAction"; "onSearch": "onSearch"; }, never, ["*"]>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewLayoutComponent, "lib-view-layout", never, { "header": "show-header"; "fluid": "fluid"; "title": "title"; "icon": "icon"; "actions": "actions"; "busy": "busy"; "searchPlaceholder": "search-placeholder"; "view": "view"; "metaItems": "meta-items"; }, { "onAction": "onAction"; "onSearch": "onSearch"; }, never, ["*"], false>;
31
31
  }
@@ -1,4 +1,4 @@
1
- import { ToasterService } from './services/toaster.service';
1
+ import { ModuleWithProviders } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  import * as i1 from "./directives/click-outside.directive";
4
4
  import * as i2 from "./directives/dynamic-component-host.directive";
@@ -16,30 +16,37 @@ import * as i13 from "./controls/side-pane/side-pane.component";
16
16
  import * as i14 from "./controls/date-picker/date-picker.component";
17
17
  import * as i15 from "./controls/avatar-initials/avatar-initials.component";
18
18
  import * as i16 from "./controls/toggle/toggle.component";
19
- import * as i17 from "./controls/toaster/toaster-container.component";
20
- import * as i18 from "./controls/toaster/toaster.component";
21
- import * as i19 from "./layouts/shell/shell-layout/shell-layout.component";
22
- import * as i20 from "./layouts/shell/shell-header/shell-header.component";
23
- import * as i21 from "./layouts/shell/shell-footer/shell-footer.component";
24
- import * as i22 from "./layouts/views/view-layout/view-layout.component";
25
- import * as i23 from "./layouts/views/side-view-layout/side-view-layout.component";
26
- import * as i24 from "./layouts/views/model-view-layout/model-view-layout.component";
27
- import * as i25 from "./layouts/views/form-layout/form-layout.component";
28
- import * as i26 from "./pages/auth/auth-callback/auth-callback.component";
29
- import * as i27 from "./pages/auth/auth-renew/auth-renew.component";
30
- import * as i28 from "./pages/auth/logged-out/logged-out.component";
31
- import * as i29 from "./pages/http-status/error/error.component";
32
- import * as i30 from "./pages/http-status/page-not-found/page-not-found.component";
33
- import * as i31 from "./pages/http-status/unauthorized/unauthorized.component";
34
- import * as i32 from "./pipes/address.pipe";
35
- import * as i33 from "./pipes/duration-format.pipe";
36
- import * as i34 from "./pipes/obs-with-status.pipe";
37
- import * as i35 from "@angular/common";
38
- import * as i36 from "@angular/router";
39
- import * as i37 from "@indice/ng-auth";
19
+ import * as i17 from "./controls/combobox/combobox.component";
20
+ import * as i18 from "./controls/toaster/toaster-container.component";
21
+ import * as i19 from "./controls/toaster/toaster.component";
22
+ import * as i20 from "./layouts/shell/shell-layout/shell-layout.component";
23
+ import * as i21 from "./layouts/shell/shell-header/shell-header.component";
24
+ import * as i22 from "./layouts/shell/shell-footer/shell-footer.component";
25
+ import * as i23 from "./layouts/views/view-layout/view-layout.component";
26
+ import * as i24 from "./layouts/views/side-view-layout/side-view-layout.component";
27
+ import * as i25 from "./layouts/views/model-view-layout/model-view-layout.component";
28
+ import * as i26 from "./layouts/views/form-layout/form-layout.component";
29
+ import * as i27 from "./pages/auth/auth-callback/auth-callback.component";
30
+ import * as i28 from "./pages/auth/auth-renew/auth-renew.component";
31
+ import * as i29 from "./pages/auth/logged-out/logged-out.component";
32
+ import * as i30 from "./pages/http-status/error/error.component";
33
+ import * as i31 from "./pages/http-status/page-not-found/page-not-found.component";
34
+ import * as i32 from "./pages/http-status/unauthorized/unauthorized.component";
35
+ import * as i33 from "./pipes/address.pipe";
36
+ import * as i34 from "./pipes/duration-format.pipe";
37
+ import * as i35 from "./controls/nav-links-list/nav-links-list.component";
38
+ import * as i36 from "./controls/notifications-indicator/notifications-indicator.component";
39
+ import * as i37 from "./controls/language-selection/language-selection.component";
40
+ import * as i38 from "./controls/user-profile-menu/user-profile-menu.component";
41
+ import * as i39 from "./layouts/shell/shell-sidebar/shell-sidebar.component";
42
+ import * as i40 from "./controls/tabs/lib-tab.component";
43
+ import * as i41 from "./controls/tabs/lib-tab-group.component";
44
+ import * as i42 from "@angular/common";
45
+ import * as i43 from "@angular/router";
46
+ import * as i44 from "@indice/ng-auth";
40
47
  export declare class IndiceComponentsModule {
41
- static forRoot(): i0.ModuleWithProviders<IndiceComponentsModule>;
48
+ static forRoot(): ModuleWithProviders<IndiceComponentsModule>;
42
49
  static ɵfac: i0.ɵɵFactoryDeclaration<IndiceComponentsModule, never>;
43
- static ɵmod: i0.ɵɵNgModuleDeclaration<IndiceComponentsModule, [typeof i1.ClickOutsideDirective, typeof i2.DynamicComponentHostDirective, typeof i3.DropDownMenuComponent, typeof i4.PagerComponent, typeof i5.ListViewComponent, typeof i6.ListColumnComponent, typeof i7.ListTileComponent, typeof i8.ListDetailsSectionComponent, typeof i9.ListViewEmptyStateComponent, typeof i10.SkeletonLoaderComponent, typeof i11.CollapsiblePanelComponent, typeof i12.KpiTileComponent, typeof i13.SidePaneComponent, typeof i14.DatepickerComponent, typeof i15.AvatarInitialsComponent, typeof i16.ToggleComponent, typeof i17.ToasterContainerComponent, typeof i18.ToasterComponent, typeof i19.ShellLayoutComponent, typeof i20.ShellHeaderComponent, typeof i21.ShellFooterComponent, typeof i22.ViewLayoutComponent, typeof i23.SideViewLayoutComponent, typeof i24.ModelViewLayoutComponent, typeof i25.FormLayoutComponent, typeof i26.AuthCallbackComponent, typeof i27.AuthRenewComponent, typeof i28.LoggedOutComponent, typeof i29.ErrorComponent, typeof i30.PageNotFoundComponent, typeof i31.UnauthorizedComponent, typeof i32.AddressPipe, typeof i33.DurationFormatPipe, typeof i34.ObsWithStatusPipe], [typeof i35.CommonModule, typeof i36.RouterModule, typeof i37.IndiceAuthModule], [typeof i1.ClickOutsideDirective, typeof i3.DropDownMenuComponent, typeof i4.PagerComponent, typeof i5.ListViewComponent, typeof i6.ListColumnComponent, typeof i7.ListTileComponent, typeof i8.ListDetailsSectionComponent, typeof i9.ListViewEmptyStateComponent, typeof i12.KpiTileComponent, typeof i10.SkeletonLoaderComponent, typeof i19.ShellLayoutComponent, typeof i20.ShellHeaderComponent, typeof i21.ShellFooterComponent, typeof i22.ViewLayoutComponent, typeof i23.SideViewLayoutComponent, typeof i24.ModelViewLayoutComponent, typeof i25.FormLayoutComponent, typeof i26.AuthCallbackComponent, typeof i27.AuthRenewComponent, typeof i28.LoggedOutComponent, typeof i29.ErrorComponent, typeof i30.PageNotFoundComponent, typeof i31.UnauthorizedComponent, typeof i32.AddressPipe, typeof i33.DurationFormatPipe, typeof i34.ObsWithStatusPipe, typeof i11.CollapsiblePanelComponent, typeof i13.SidePaneComponent, typeof i14.DatepickerComponent, typeof i17.ToasterContainerComponent, typeof i18.ToasterComponent, typeof i15.AvatarInitialsComponent, typeof i16.ToggleComponent]>;
50
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IndiceComponentsModule, [typeof i1.ClickOutsideDirective, typeof i2.DynamicComponentHostDirective, typeof i3.DropDownMenuComponent, typeof i4.PagerComponent, typeof i5.ListViewComponent, typeof i6.ListColumnComponent, typeof i7.ListTileComponent, typeof i8.ListDetailsSectionComponent, typeof i9.ListViewEmptyStateComponent, typeof i10.SkeletonLoaderComponent, typeof i11.CollapsiblePanelComponent, typeof i12.KpiTileComponent, typeof i13.SidePaneComponent, typeof i14.DatepickerComponent, typeof i15.AvatarInitialsComponent, typeof i16.ToggleComponent, typeof i17.ComboboxComponent, typeof i18.ToasterContainerComponent, typeof i19.ToasterComponent, typeof i20.ShellLayoutComponent, typeof i21.ShellHeaderComponent, typeof i22.ShellFooterComponent, typeof i23.ViewLayoutComponent, typeof i24.SideViewLayoutComponent, typeof i25.ModelViewLayoutComponent, typeof i26.FormLayoutComponent, typeof i27.AuthCallbackComponent, typeof i28.AuthRenewComponent, typeof i29.LoggedOutComponent, typeof i30.ErrorComponent, typeof i31.PageNotFoundComponent, typeof i32.UnauthorizedComponent, typeof i33.AddressPipe, typeof i34.DurationFormatPipe, typeof i35.NavLinksListComponent, typeof i36.NotificationsIndicatorComponent, typeof i37.LanguageSelectionComponent, typeof i38.UserProfileMenuComponent, typeof i39.ShellSidebarComponent, typeof i40.LibTabComponent, typeof i41.LibTabGroupComponent], [typeof i42.CommonModule, typeof i43.RouterModule, typeof i44.IndiceAuthModule], [typeof i33.AddressPipe, typeof i27.AuthCallbackComponent, typeof i28.AuthRenewComponent, typeof i15.AvatarInitialsComponent, typeof i1.ClickOutsideDirective, typeof i11.CollapsiblePanelComponent, typeof i17.ComboboxComponent, typeof i14.DatepickerComponent, typeof i3.DropDownMenuComponent, typeof i34.DurationFormatPipe, typeof i30.ErrorComponent, typeof i26.FormLayoutComponent, typeof i12.KpiTileComponent, typeof i40.LibTabComponent, typeof i41.LibTabGroupComponent, typeof i6.ListColumnComponent, typeof i8.ListDetailsSectionComponent, typeof i7.ListTileComponent, typeof i5.ListViewComponent, typeof i9.ListViewEmptyStateComponent, typeof i29.LoggedOutComponent, typeof i25.ModelViewLayoutComponent, typeof i31.PageNotFoundComponent, typeof i4.PagerComponent, typeof i22.ShellFooterComponent, typeof i21.ShellHeaderComponent, typeof i20.ShellLayoutComponent, typeof i13.SidePaneComponent, typeof i24.SideViewLayoutComponent, typeof i10.SkeletonLoaderComponent, typeof i19.ToasterComponent, typeof i18.ToasterContainerComponent, typeof i16.ToggleComponent, typeof i32.UnauthorizedComponent, typeof i23.ViewLayoutComponent]>;
44
51
  static ɵinj: i0.ɵɵInjectorDeclaration<IndiceComponentsModule>;
45
52
  }