@indice/ng-components 0.2.174 → 0.3.0

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 (219) hide show
  1. package/_styles.scss +63 -15
  2. package/{esm2020 → esm2022}/indice-ng-components.mjs +4 -4
  3. package/esm2022/lib/controls/advanced-search/advanced-search.component.mjs +156 -0
  4. package/esm2022/lib/controls/advanced-search/models.mjs +109 -0
  5. package/esm2022/lib/controls/avatar-initials/avatar-initials.component.mjs +48 -0
  6. package/{esm2020 → esm2022}/lib/controls/breadcrumb/breadcrumb-item.mjs +14 -14
  7. package/{esm2020 → esm2022}/lib/controls/breadcrumb/breadcrumb.component.mjs +26 -26
  8. package/{esm2020 → esm2022}/lib/controls/collapsible-panel/collapsible-panel.component.mjs +20 -20
  9. package/esm2022/lib/controls/combobox/combobox.component.mjs +121 -0
  10. package/esm2022/lib/controls/content-tile/content-tile-header/content-tile-header.component.mjs +17 -0
  11. package/esm2022/lib/controls/content-tile/content-tile-item/content-tile-item.component.mjs +19 -0
  12. package/esm2022/lib/controls/content-tile/content-tile.component.mjs +63 -0
  13. package/esm2022/lib/controls/date-picker/date-picker.component.mjs +300 -0
  14. package/esm2022/lib/controls/drop-down-menu/drop-down-menu.component.mjs +72 -0
  15. package/{esm2020 → esm2022}/lib/controls/kpi-tile/kpi-tile.component.mjs +43 -43
  16. package/esm2022/lib/controls/language-selection/language-selection.component.mjs +31 -0
  17. package/{esm2020 → esm2022}/lib/controls/list-view/list-column.component.mjs +25 -25
  18. package/{esm2020 → esm2022}/lib/controls/list-view/list-details-section.component.mjs +17 -17
  19. package/{esm2020 → esm2022}/lib/controls/list-view/list-tile.component.mjs +17 -17
  20. package/esm2022/lib/controls/list-view/list-view-empty-state.component.mjs +29 -0
  21. package/esm2022/lib/controls/list-view/list-view.component.mjs +210 -0
  22. package/{esm2020 → esm2022}/lib/controls/nav-links-list/nav-links-list.component.mjs +54 -54
  23. package/esm2022/lib/controls/notifications-indicator/notifications-indicator.component.mjs +79 -0
  24. package/esm2022/lib/controls/pager/pager.component.mjs +130 -0
  25. package/esm2022/lib/controls/progress-bar/progress-bar.component.mjs +46 -0
  26. package/esm2022/lib/controls/side-pane/side-pane.component.mjs +87 -0
  27. package/esm2022/lib/controls/skeleton-loader/skeleton-loader.component.mjs +29 -0
  28. package/esm2022/lib/controls/stats-grid/stats-grid.component.mjs +49 -0
  29. package/{esm2020 → esm2022}/lib/controls/stepper/lib-step-info.directive.mjs +16 -16
  30. package/{esm2020 → esm2022}/lib/controls/stepper/lib-step-label.directive.mjs +16 -16
  31. package/esm2022/lib/controls/stepper/lib-step.component.mjs +81 -0
  32. package/esm2022/lib/controls/stepper/lib-stepper.component.mjs +108 -0
  33. package/{esm2020 → esm2022}/lib/controls/stepper/types/step-selected-event.mjs +3 -3
  34. package/{esm2020 → esm2022}/lib/controls/stepper/types/stepper-type.mjs +11 -11
  35. package/esm2022/lib/controls/tabs/lib-tab-group.component.mjs +66 -0
  36. package/{esm2020 → esm2022}/lib/controls/tabs/lib-tab-label.directive.mjs +16 -16
  37. package/{esm2020 → esm2022}/lib/controls/tabs/lib-tab.component.mjs +57 -57
  38. package/{esm2020 → esm2022}/lib/controls/toaster/toaster-container.component.mjs +28 -28
  39. package/{esm2020 → esm2022}/lib/controls/toaster/toaster.component.mjs +31 -31
  40. package/esm2022/lib/controls/toggle/toggle.component.mjs +64 -0
  41. package/esm2022/lib/controls/toggle-button/toggle-button.component.mjs +87 -0
  42. package/esm2022/lib/controls/toggle-buttons-list/toggle-buttons-list.component.mjs +34 -0
  43. package/esm2022/lib/controls/user-profile-menu/user-profile-menu.component.mjs +71 -0
  44. package/esm2022/lib/directives/click-outside.directive.mjs +189 -0
  45. package/{esm2020 → esm2022}/lib/directives/dynamic-component-host.directive.mjs +17 -17
  46. package/esm2022/lib/helpers/base-list.component.mjs +230 -0
  47. package/esm2022/lib/icons.mjs +36 -0
  48. package/{esm2020 → esm2022}/lib/layouts/shell/shell-footer/shell-footer.component.mjs +19 -19
  49. package/esm2022/lib/layouts/shell/shell-header/shell-header.component.mjs +130 -0
  50. package/esm2022/lib/layouts/shell/shell-layout/shell-layout.component.mjs +90 -0
  51. package/{esm2020 → esm2022}/lib/layouts/shell/shell-sidebar/shell-sidebar.component.mjs +54 -54
  52. package/{esm2020 → esm2022}/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.mjs +45 -45
  53. package/esm2022/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +30 -0
  54. package/{esm2020 → esm2022}/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.mjs +20 -20
  55. package/esm2022/lib/layouts/views/form-layout/form-layout.component.mjs +86 -0
  56. package/esm2022/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +101 -0
  57. package/esm2022/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +106 -0
  58. package/esm2022/lib/layouts/views/view-layout/view-layout.component.mjs +104 -0
  59. package/esm2022/lib/ng-components.module.mjs +320 -0
  60. package/esm2022/lib/pages/auth/auth-callback/auth-callback.component.mjs +30 -0
  61. package/esm2022/lib/pages/auth/auth-renew/auth-renew.component.mjs +31 -0
  62. package/{esm2020 → esm2022}/lib/pages/auth/logged-out/logged-out.component.mjs +28 -28
  63. package/{esm2020 → esm2022}/lib/pages/http-status/error/error.component.mjs +17 -17
  64. package/{esm2020 → esm2022}/lib/pages/http-status/page-not-found/page-not-found.component.mjs +15 -15
  65. package/{esm2020 → esm2022}/lib/pages/http-status/unauthorized/unauthorized.component.mjs +14 -14
  66. package/esm2022/lib/pipes/address.pipe.mjs +21 -0
  67. package/esm2022/lib/pipes/duration-format.pipe.mjs +64 -0
  68. package/esm2022/lib/pipes/short-number.pipe.mjs +43 -0
  69. package/esm2022/lib/services/breadcrumb.service.mjs +174 -0
  70. package/{esm2020 → esm2022}/lib/services/component-loader/component-loader-options.class.mjs +7 -7
  71. package/esm2022/lib/services/component-loader/component-loader.class.mjs +188 -0
  72. package/esm2022/lib/services/component-loader/component-loader.factory.mjs +32 -0
  73. package/{esm2020 → esm2022}/lib/services/component-loader/content-ref.class.mjs +12 -12
  74. package/esm2022/lib/services/modal-service/modal-backdrop-component.mjs +44 -0
  75. package/esm2022/lib/services/modal-service/modal-container-component.mjs +126 -0
  76. package/{esm2020 → esm2022}/lib/services/modal-service/modal-options.class.mjs +35 -35
  77. package/esm2022/lib/services/modal-service/modal-service.mjs +220 -0
  78. package/{esm2020 → esm2022}/lib/services/modal-service/modal-styles.class.mjs +10 -10
  79. package/{esm2020 → esm2022}/lib/services/modal-service/modal.class.mjs +27 -27
  80. package/{esm2020 → esm2022}/lib/services/toaster.service.mjs +26 -26
  81. package/esm2022/lib/services/user-settings.service.mjs +35 -0
  82. package/esm2022/lib/services/utilities.service.mjs +47 -0
  83. package/{esm2020 → esm2022}/lib/tokens.mjs +7 -7
  84. package/esm2022/lib/types.mjs +133 -0
  85. package/{esm2020 → esm2022}/public-api.mjs +78 -70
  86. package/{fesm2020 → fesm2022}/indice-ng-components.mjs +4898 -4592
  87. package/fesm2022/indice-ng-components.mjs.map +1 -0
  88. package/index.d.ts +5 -5
  89. package/lib/controls/advanced-search/advanced-search.component.d.ts +40 -40
  90. package/lib/controls/advanced-search/models.d.ts +91 -91
  91. package/lib/controls/avatar-initials/avatar-initials.component.d.ts +14 -14
  92. package/lib/controls/breadcrumb/breadcrumb-item.d.ts +7 -7
  93. package/lib/controls/breadcrumb/breadcrumb.component.d.ts +12 -12
  94. package/lib/controls/collapsible-panel/collapsible-panel.component.d.ts +10 -10
  95. package/lib/controls/combobox/combobox.component.d.ts +35 -34
  96. package/lib/controls/content-tile/content-tile-header/content-tile-header.component.d.ts +7 -0
  97. package/lib/controls/content-tile/content-tile-item/content-tile-item.component.d.ts +8 -0
  98. package/lib/controls/content-tile/content-tile.component.d.ts +23 -0
  99. package/lib/controls/date-picker/date-picker.component.d.ts +53 -53
  100. package/lib/controls/drop-down-menu/drop-down-menu.component.d.ts +26 -26
  101. package/lib/controls/kpi-tile/kpi-tile.component.d.ts +15 -15
  102. package/lib/controls/language-selection/language-selection.component.d.ts +14 -14
  103. package/lib/controls/list-view/list-column.component.d.ts +9 -9
  104. package/lib/controls/list-view/list-details-section.component.d.ts +7 -7
  105. package/lib/controls/list-view/list-tile.component.d.ts +7 -7
  106. package/lib/controls/list-view/list-view-empty-state.component.d.ts +11 -11
  107. package/lib/controls/list-view/list-view.component.d.ts +62 -61
  108. package/lib/controls/nav-links-list/nav-links-list.component.d.ts +21 -21
  109. package/lib/controls/notifications-indicator/notifications-indicator.component.d.ts +22 -22
  110. package/lib/controls/pager/pager.component.d.ts +36 -36
  111. package/lib/controls/progress-bar/progress-bar.component.d.ts +16 -0
  112. package/lib/controls/side-pane/side-pane.component.d.ts +22 -18
  113. package/lib/controls/skeleton-loader/skeleton-loader.component.d.ts +12 -11
  114. package/lib/controls/stats-grid/stats-grid.component.d.ts +16 -0
  115. package/lib/controls/stepper/lib-step-info.directive.d.ts +8 -8
  116. package/lib/controls/stepper/lib-step-label.directive.d.ts +8 -8
  117. package/lib/controls/stepper/lib-step.component.d.ts +34 -34
  118. package/lib/controls/stepper/lib-stepper.component.d.ts +43 -43
  119. package/lib/controls/stepper/types/step-selected-event.d.ts +12 -12
  120. package/lib/controls/stepper/types/stepper-type.d.ts +10 -10
  121. package/lib/controls/tabs/lib-tab-group.component.d.ts +21 -21
  122. package/lib/controls/tabs/lib-tab-label.directive.d.ts +8 -8
  123. package/lib/controls/tabs/lib-tab.component.d.ts +24 -24
  124. package/lib/controls/toaster/toaster-container.component.d.ts +13 -13
  125. package/lib/controls/toaster/toaster.component.d.ts +15 -15
  126. package/lib/controls/toggle/toggle.component.d.ts +19 -19
  127. package/lib/controls/toggle-button/toggle-button.component.d.ts +25 -25
  128. package/lib/controls/toggle-buttons-list/toggle-buttons-list.component.d.ts +15 -14
  129. package/lib/controls/user-profile-menu/user-profile-menu.component.d.ts +24 -24
  130. package/lib/directives/click-outside.directive.d.ts +40 -40
  131. package/lib/directives/dynamic-component-host.directive.d.ts +9 -9
  132. package/lib/helpers/base-list.component.d.ts +54 -53
  133. package/lib/icons.d.ts +34 -34
  134. package/lib/layouts/shell/shell-footer/shell-footer.component.d.ts +8 -8
  135. package/lib/layouts/shell/shell-header/shell-header.component.d.ts +39 -39
  136. package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +26 -26
  137. package/lib/layouts/shell/shell-sidebar/shell-sidebar.component.d.ts +20 -20
  138. package/lib/layouts/shell/shell-sidebar-header/shell-sidebar-header.component.d.ts +14 -14
  139. package/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.d.ts +15 -15
  140. package/lib/layouts/shell/shell-stacked-layout/shell-stacked-layout.component.d.ts +10 -10
  141. package/lib/layouts/views/form-layout/form-layout.component.d.ts +26 -24
  142. package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +42 -42
  143. package/lib/layouts/views/side-view-layout/side-view-layout.component.d.ts +29 -28
  144. package/lib/layouts/views/view-layout/view-layout.component.d.ts +31 -31
  145. package/lib/ng-components.module.d.ts +71 -65
  146. package/lib/pages/auth/auth-callback/auth-callback.component.d.ts +13 -13
  147. package/lib/pages/auth/auth-renew/auth-renew.component.d.ts +12 -12
  148. package/lib/pages/auth/logged-out/logged-out.component.d.ts +12 -12
  149. package/lib/pages/http-status/error/error.component.d.ts +8 -8
  150. package/lib/pages/http-status/page-not-found/page-not-found.component.d.ts +8 -8
  151. package/lib/pages/http-status/unauthorized/unauthorized.component.d.ts +8 -8
  152. package/lib/pipes/address.pipe.d.ts +8 -8
  153. package/lib/pipes/duration-format.pipe.d.ts +8 -8
  154. package/lib/pipes/short-number.pipe.d.ts +7 -0
  155. package/lib/services/breadcrumb.service.d.ts +29 -29
  156. package/lib/services/component-loader/component-loader-options.class.d.ts +30 -30
  157. package/lib/services/component-loader/component-loader.class.d.ts +92 -92
  158. package/lib/services/component-loader/component-loader.factory.d.ts +24 -24
  159. package/lib/services/component-loader/content-ref.class.d.ts +12 -12
  160. package/lib/services/modal-service/modal-backdrop-component.d.ts +20 -20
  161. package/lib/services/modal-service/modal-container-component.d.ts +33 -33
  162. package/lib/services/modal-service/modal-options.class.d.ts +81 -81
  163. package/lib/services/modal-service/modal-service.d.ts +58 -58
  164. package/lib/services/modal-service/modal-styles.class.d.ts +10 -10
  165. package/lib/services/modal-service/modal.class.d.ts +43 -43
  166. package/lib/services/toaster.service.d.ts +11 -11
  167. package/lib/services/user-settings.service.d.ts +13 -13
  168. package/lib/services/utilities.service.d.ts +11 -11
  169. package/lib/tokens.d.ts +10 -10
  170. package/lib/types.d.ts +179 -177
  171. package/package.json +14 -21
  172. package/public-api.d.ts +68 -60
  173. package/esm2020/lib/controls/advanced-search/advanced-search.component.mjs +0 -156
  174. package/esm2020/lib/controls/advanced-search/models.mjs +0 -109
  175. package/esm2020/lib/controls/avatar-initials/avatar-initials.component.mjs +0 -48
  176. package/esm2020/lib/controls/combobox/combobox.component.mjs +0 -117
  177. package/esm2020/lib/controls/date-picker/date-picker.component.mjs +0 -292
  178. package/esm2020/lib/controls/drop-down-menu/drop-down-menu.component.mjs +0 -72
  179. package/esm2020/lib/controls/language-selection/language-selection.component.mjs +0 -31
  180. package/esm2020/lib/controls/list-view/list-view-empty-state.component.mjs +0 -29
  181. package/esm2020/lib/controls/list-view/list-view.component.mjs +0 -206
  182. package/esm2020/lib/controls/notifications-indicator/notifications-indicator.component.mjs +0 -79
  183. package/esm2020/lib/controls/pager/pager.component.mjs +0 -130
  184. package/esm2020/lib/controls/side-pane/side-pane.component.mjs +0 -72
  185. package/esm2020/lib/controls/skeleton-loader/skeleton-loader.component.mjs +0 -25
  186. package/esm2020/lib/controls/stepper/lib-step.component.mjs +0 -81
  187. package/esm2020/lib/controls/stepper/lib-stepper.component.mjs +0 -108
  188. package/esm2020/lib/controls/tabs/lib-tab-group.component.mjs +0 -66
  189. package/esm2020/lib/controls/toggle/toggle.component.mjs +0 -64
  190. package/esm2020/lib/controls/toggle-button/toggle-button.component.mjs +0 -87
  191. package/esm2020/lib/controls/toggle-buttons-list/toggle-buttons-list.component.mjs +0 -31
  192. package/esm2020/lib/controls/user-profile-menu/user-profile-menu.component.mjs +0 -71
  193. package/esm2020/lib/directives/click-outside.directive.mjs +0 -189
  194. package/esm2020/lib/helpers/base-list.component.mjs +0 -226
  195. package/esm2020/lib/icons.mjs +0 -36
  196. package/esm2020/lib/layouts/shell/shell-header/shell-header.component.mjs +0 -130
  197. package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +0 -90
  198. package/esm2020/lib/layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component.mjs +0 -30
  199. package/esm2020/lib/layouts/views/form-layout/form-layout.component.mjs +0 -80
  200. package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +0 -101
  201. package/esm2020/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +0 -98
  202. package/esm2020/lib/layouts/views/view-layout/view-layout.component.mjs +0 -104
  203. package/esm2020/lib/ng-components.module.mjs +0 -288
  204. package/esm2020/lib/pages/auth/auth-callback/auth-callback.component.mjs +0 -30
  205. package/esm2020/lib/pages/auth/auth-renew/auth-renew.component.mjs +0 -31
  206. package/esm2020/lib/pipes/address.pipe.mjs +0 -21
  207. package/esm2020/lib/pipes/duration-format.pipe.mjs +0 -64
  208. package/esm2020/lib/services/breadcrumb.service.mjs +0 -174
  209. package/esm2020/lib/services/component-loader/component-loader.class.mjs +0 -188
  210. package/esm2020/lib/services/component-loader/component-loader.factory.mjs +0 -32
  211. package/esm2020/lib/services/modal-service/modal-backdrop-component.mjs +0 -44
  212. package/esm2020/lib/services/modal-service/modal-container-component.mjs +0 -126
  213. package/esm2020/lib/services/modal-service/modal-service.mjs +0 -220
  214. package/esm2020/lib/services/user-settings.service.mjs +0 -35
  215. package/esm2020/lib/services/utilities.service.mjs +0 -47
  216. package/esm2020/lib/types.mjs +0 -132
  217. package/fesm2015/indice-ng-components.mjs +0 -4852
  218. package/fesm2015/indice-ng-components.mjs.map +0 -1
  219. package/fesm2020/indice-ng-components.mjs.map +0 -1
@@ -1,42 +1,42 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
2
- import { Location } from '@angular/common';
3
- import { HeaderMetaItem, MenuOption, ViewAction } from '../../../types';
4
- import { ActivatedRoute, Router } from '@angular/router';
5
- import * as i0 from "@angular/core";
6
- export declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
7
- private location;
8
- private router;
9
- private route;
10
- showRightPaneSM: boolean;
11
- title: string;
12
- primary: {
13
- text: string;
14
- link: string;
15
- icon?: string;
16
- exact?: boolean;
17
- }[] | null;
18
- secondary: {
19
- text: string;
20
- link: string;
21
- icon?: string;
22
- exact?: boolean;
23
- }[] | null;
24
- metaItems: HeaderMetaItem[] | null;
25
- icon: string | null;
26
- busy: boolean;
27
- actions: ViewAction[] | null;
28
- private optionsLoaded;
29
- private _options;
30
- selectedTab: any;
31
- private selectedTabSub$;
32
- get tabsOptions(): MenuOption[];
33
- constructor(location: Location, router: Router, route: ActivatedRoute);
34
- ngOnInit(): void;
35
- ngOnDestroy(): void;
36
- onSidePaneActivated($event: any): void;
37
- onSidePaneDeactivated($event: any): void;
38
- closeSidePane(): void;
39
- navigateLink(link: any): void;
40
- static ɵfac: i0.ɵɵFactoryDeclaration<ModelViewLayoutComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": "title"; "primary": "primary-links"; "secondary": "secondary-links"; "metaItems": "meta-items"; "icon": "icon"; "busy": "busy"; "actions": "actions"; }, {}, never, ["*"], false>;
42
- }
1
+ import { OnDestroy, OnInit } from '@angular/core';
2
+ import { Location } from '@angular/common';
3
+ import { HeaderMetaItem, MenuOption, ViewAction } from '../../../types';
4
+ import { ActivatedRoute, Router } from '@angular/router';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ModelViewLayoutComponent implements OnInit, OnDestroy {
7
+ private location;
8
+ private router;
9
+ private route;
10
+ showRightPaneSM: boolean;
11
+ title: string;
12
+ primary: {
13
+ text: string;
14
+ link: string;
15
+ icon?: string;
16
+ exact?: boolean;
17
+ }[] | null;
18
+ secondary: {
19
+ text: string;
20
+ link: string;
21
+ icon?: string;
22
+ exact?: boolean;
23
+ }[] | null;
24
+ metaItems: HeaderMetaItem[] | null;
25
+ icon: string | null;
26
+ busy: boolean;
27
+ actions: ViewAction[] | null;
28
+ private optionsLoaded;
29
+ private _options;
30
+ selectedTab: any;
31
+ private selectedTabSub$;
32
+ get tabsOptions(): MenuOption[];
33
+ constructor(location: Location, router: Router, route: ActivatedRoute);
34
+ ngOnInit(): void;
35
+ ngOnDestroy(): void;
36
+ onSidePaneActivated($event: any): void;
37
+ onSidePaneDeactivated($event: any): void;
38
+ closeSidePane(): void;
39
+ navigateLink(link: any): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelViewLayoutComponent, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": { "alias": "title"; "required": false; }; "primary": { "alias": "primary-links"; "required": false; }; "secondary": { "alias": "secondary-links"; "required": false; }; "metaItems": { "alias": "meta-items"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, {}, never, ["*"], false, never>;
42
+ }
@@ -1,28 +1,29 @@
1
- import { Router } from '@angular/router';
2
- import { OnInit, EventEmitter } from '@angular/core';
3
- import { Location } from '@angular/common';
4
- import * as i0 from "@angular/core";
5
- export declare class SideViewLayoutComponent implements OnInit {
6
- private location;
7
- private router;
8
- title: string | null;
9
- showActions: boolean;
10
- disabled: boolean;
11
- returnPath: string | undefined;
12
- okLabel: string;
13
- okShow: boolean;
14
- closeOnOk: boolean;
15
- cancelLabel: string;
16
- cancelShow: boolean;
17
- forceLocationBack: boolean;
18
- cancel: EventEmitter<boolean>;
19
- ok: EventEmitter<boolean>;
20
- constructor(location: Location, router: Router);
21
- ngOnInit(): void;
22
- closeSidePane(): void;
23
- emitClose(): void;
24
- emitCancel(): void;
25
- emitOK(): void;
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, ["*"], false>;
28
- }
1
+ import { Router } from '@angular/router';
2
+ import { OnInit, EventEmitter } from '@angular/core';
3
+ import { Location } from '@angular/common';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SideViewLayoutComponent implements OnInit {
6
+ private location;
7
+ private router;
8
+ title: string | null;
9
+ showActions: boolean;
10
+ disabled: boolean;
11
+ returnPath: string | undefined;
12
+ okLabel: string;
13
+ okShow: boolean;
14
+ closeOnOk: boolean;
15
+ cancelLabel: string;
16
+ cancelShow: boolean;
17
+ forceLocationBack: boolean;
18
+ redirectOnClose: boolean;
19
+ cancel: EventEmitter<boolean>;
20
+ ok: EventEmitter<boolean>;
21
+ constructor(location: Location, router: Router);
22
+ ngOnInit(): void;
23
+ closeSidePane(): void;
24
+ emitClose(): void;
25
+ emitCancel(): void;
26
+ emitOK(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<SideViewLayoutComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<SideViewLayoutComponent, "lib-side-view-layout", never, { "title": { "alias": "title"; "required": false; }; "showActions": { "alias": "showActions"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "returnPath": { "alias": "return-path"; "required": false; }; "okLabel": { "alias": "ok-label"; "required": false; }; "okShow": { "alias": "ok-show"; "required": false; }; "closeOnOk": { "alias": "ok-close-dialog"; "required": false; }; "cancelLabel": { "alias": "cancel-label"; "required": false; }; "cancelShow": { "alias": "cancel-show"; "required": false; }; "forceLocationBack": { "alias": "force-location-back"; "required": false; }; "redirectOnClose": { "alias": "redirect-on-close"; "required": false; }; }, { "cancel": "cancel"; "ok": "ok"; }, never, ["*"], false, never>;
29
+ }
@@ -1,31 +1,31 @@
1
- import { SwitchViewAction } from '../../../types';
2
- import { ActivatedRoute, Router } from '@angular/router';
3
- import { OnInit, EventEmitter } from '@angular/core';
4
- import { HeaderMetaItem, RouterViewAction, ViewAction } from '../../../types';
5
- import * as i0 from "@angular/core";
6
- export declare class ViewLayoutComponent implements OnInit {
7
- private route$;
8
- private router$;
9
- private searchInput$?;
10
- header: boolean;
11
- fluid: boolean;
12
- title: string;
13
- icon: string | null;
14
- actions: ViewAction[] | null;
15
- busy: boolean;
16
- searchPlaceholder: string | null;
17
- view: string | null;
18
- metaItems: HeaderMetaItem[] | null;
19
- onAction: EventEmitter<ViewAction>;
20
- onSearch: EventEmitter<string>;
21
- constructor(route$: ActivatedRoute, router$: Router);
22
- ngOnInit(): void;
23
- emitActionClick(action: ViewAction): void;
24
- routerLinkActionClick(action: RouterViewAction | any): void;
25
- searchActionClick(action: ViewAction, text: string): void;
26
- searchActionType(text: string): void;
27
- handleClear(event: any): void;
28
- switchViewActionClick(action: SwitchViewAction | any): void;
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, ["*"], false>;
31
- }
1
+ import { SwitchViewAction } from '../../../types';
2
+ import { ActivatedRoute, Router } from '@angular/router';
3
+ import { OnInit, EventEmitter } from '@angular/core';
4
+ import { HeaderMetaItem, RouterViewAction, ViewAction } from '../../../types';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ViewLayoutComponent implements OnInit {
7
+ private route$;
8
+ private router$;
9
+ private searchInput$?;
10
+ header: boolean;
11
+ fluid: boolean;
12
+ title: string;
13
+ icon: string | null;
14
+ actions: ViewAction[] | null;
15
+ busy: boolean;
16
+ searchPlaceholder: string | null;
17
+ view: string | null;
18
+ metaItems: HeaderMetaItem[] | null;
19
+ onAction: EventEmitter<ViewAction>;
20
+ onSearch: EventEmitter<string>;
21
+ constructor(route$: ActivatedRoute, router$: Router);
22
+ ngOnInit(): void;
23
+ emitActionClick(action: ViewAction): void;
24
+ routerLinkActionClick(action: RouterViewAction | any): void;
25
+ searchActionClick(action: ViewAction, text: string): void;
26
+ searchActionType(text: string): void;
27
+ handleClear(event: any): void;
28
+ switchViewActionClick(action: SwitchViewAction | any): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewLayoutComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewLayoutComponent, "lib-view-layout", never, { "header": { "alias": "show-header"; "required": false; }; "fluid": { "alias": "fluid"; "required": false; }; "title": { "alias": "title"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "searchPlaceholder": { "alias": "search-placeholder"; "required": false; }; "view": { "alias": "view"; "required": false; }; "metaItems": { "alias": "meta-items"; "required": false; }; }, { "onAction": "onAction"; "onSearch": "onSearch"; }, never, ["*"], false, never>;
31
+ }
@@ -1,65 +1,71 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "./pipes/address.pipe";
4
- import * as i2 from "./controls/advanced-search/advanced-search.component";
5
- import * as i3 from "./pages/auth/auth-callback/auth-callback.component";
6
- import * as i4 from "./pages/auth/auth-renew/auth-renew.component";
7
- import * as i5 from "./controls/avatar-initials/avatar-initials.component";
8
- import * as i6 from "./controls/breadcrumb/breadcrumb.component";
9
- import * as i7 from "./directives/click-outside.directive";
10
- import * as i8 from "./controls/collapsible-panel/collapsible-panel.component";
11
- import * as i9 from "./controls/combobox/combobox.component";
12
- import * as i10 from "./controls/date-picker/date-picker.component";
13
- import * as i11 from "./controls/drop-down-menu/drop-down-menu.component";
14
- import * as i12 from "./pipes/duration-format.pipe";
15
- import * as i13 from "./directives/dynamic-component-host.directive";
16
- import * as i14 from "./pages/http-status/error/error.component";
17
- import * as i15 from "./layouts/views/form-layout/form-layout.component";
18
- import * as i16 from "./controls/kpi-tile/kpi-tile.component";
19
- import * as i17 from "./controls/language-selection/language-selection.component";
20
- import * as i18 from "./controls/stepper/lib-step.component";
21
- import * as i19 from "./controls/stepper/lib-step-info.directive";
22
- import * as i20 from "./controls/stepper/lib-step-label.directive";
23
- import * as i21 from "./controls/stepper/lib-stepper.component";
24
- import * as i22 from "./controls/tabs/lib-tab.component";
25
- import * as i23 from "./controls/tabs/lib-tab-group.component";
26
- import * as i24 from "./controls/tabs/lib-tab-label.directive";
27
- import * as i25 from "./controls/list-view/list-column.component";
28
- import * as i26 from "./controls/list-view/list-details-section.component";
29
- import * as i27 from "./controls/list-view/list-tile.component";
30
- import * as i28 from "./controls/list-view/list-view.component";
31
- import * as i29 from "./controls/list-view/list-view-empty-state.component";
32
- import * as i30 from "./pages/auth/logged-out/logged-out.component";
33
- import * as i31 from "./layouts/views/model-view-layout/model-view-layout.component";
34
- import * as i32 from "./controls/nav-links-list/nav-links-list.component";
35
- import * as i33 from "./controls/notifications-indicator/notifications-indicator.component";
36
- import * as i34 from "./pages/http-status/page-not-found/page-not-found.component";
37
- import * as i35 from "./controls/pager/pager.component";
38
- import * as i36 from "./layouts/shell/shell-footer/shell-footer.component";
39
- import * as i37 from "./layouts/shell/shell-header/shell-header.component";
40
- import * as i38 from "./layouts/shell/shell-layout/shell-layout.component";
41
- import * as i39 from "./layouts/shell/shell-sidebar/shell-sidebar.component";
42
- import * as i40 from "./layouts/shell/shell-sidebar-header/shell-sidebar-header.component";
43
- import * as i41 from "./layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component";
44
- import * as i42 from "./layouts/shell/shell-stacked-layout/shell-stacked-layout.component";
45
- import * as i43 from "./controls/side-pane/side-pane.component";
46
- import * as i44 from "./layouts/views/side-view-layout/side-view-layout.component";
47
- import * as i45 from "./controls/skeleton-loader/skeleton-loader.component";
48
- import * as i46 from "./controls/toaster/toaster.component";
49
- import * as i47 from "./controls/toaster/toaster-container.component";
50
- import * as i48 from "./controls/toggle/toggle.component";
51
- import * as i49 from "./pages/http-status/unauthorized/unauthorized.component";
52
- import * as i50 from "./controls/user-profile-menu/user-profile-menu.component";
53
- import * as i51 from "./layouts/views/view-layout/view-layout.component";
54
- import * as i52 from "./controls/toggle-button/toggle-button.component";
55
- import * as i53 from "./controls/toggle-buttons-list/toggle-buttons-list.component";
56
- import * as i54 from "@angular/common";
57
- import * as i55 from "@angular/router";
58
- import * as i56 from "@indice/ng-auth";
59
- import * as i57 from "@angular/forms";
60
- export declare class IndiceComponentsModule {
61
- static forRoot(): ModuleWithProviders<IndiceComponentsModule>;
62
- static ɵfac: i0.ɵɵFactoryDeclaration<IndiceComponentsModule, never>;
63
- static ɵmod: i0.ɵɵNgModuleDeclaration<IndiceComponentsModule, [typeof i1.AddressPipe, typeof i2.AdvancedSearchComponent, typeof i3.AuthCallbackComponent, typeof i4.AuthRenewComponent, typeof i5.AvatarInitialsComponent, typeof i6.BreadcrumbComponent, typeof i7.ClickOutsideDirective, typeof i8.CollapsiblePanelComponent, typeof i9.ComboboxComponent, typeof i10.DatepickerComponent, typeof i11.DropDownMenuComponent, typeof i12.DurationFormatPipe, typeof i13.DynamicComponentHostDirective, typeof i14.ErrorComponent, typeof i15.FormLayoutComponent, typeof i16.KpiTileComponent, typeof i17.LanguageSelectionComponent, typeof i18.LibStepComponent, typeof i19.LibStepInfoDirective, typeof i20.LibStepLabelDirective, typeof i21.LibStepperComponent, typeof i22.LibTabComponent, typeof i23.LibTabGroupComponent, typeof i24.LibTabLabelDirective, typeof i25.ListColumnComponent, typeof i26.ListDetailsSectionComponent, typeof i27.ListTileComponent, typeof i28.ListViewComponent, typeof i29.ListViewEmptyStateComponent, typeof i30.LoggedOutComponent, typeof i31.ModelViewLayoutComponent, typeof i32.NavLinksListComponent, typeof i33.NotificationsIndicatorComponent, typeof i34.PageNotFoundComponent, typeof i35.PagerComponent, typeof i36.ShellFooterComponent, typeof i37.ShellHeaderComponent, typeof i38.ShellLayoutComponent, typeof i39.ShellSidebarComponent, typeof i40.ShellSidebarHeaderComponent, typeof i41.ShellSidebarLayoutComponent, typeof i42.ShellStackedLayoutComponent, typeof i43.SidePaneComponent, typeof i44.SideViewLayoutComponent, typeof i45.SkeletonLoaderComponent, typeof i46.ToasterComponent, typeof i47.ToasterContainerComponent, typeof i48.ToggleComponent, typeof i49.UnauthorizedComponent, typeof i50.UserProfileMenuComponent, typeof i51.ViewLayoutComponent, typeof i52.ToggleButtonComponent, typeof i53.ToggleButtonsListComponent], [typeof i54.CommonModule, typeof i55.RouterModule, typeof i56.IndiceAuthModule, typeof i57.FormsModule], [typeof i1.AddressPipe, typeof i3.AuthCallbackComponent, typeof i4.AuthRenewComponent, typeof i5.AvatarInitialsComponent, typeof i6.BreadcrumbComponent, typeof i7.ClickOutsideDirective, typeof i8.CollapsiblePanelComponent, typeof i9.ComboboxComponent, typeof i10.DatepickerComponent, typeof i11.DropDownMenuComponent, typeof i12.DurationFormatPipe, typeof i14.ErrorComponent, typeof i15.FormLayoutComponent, typeof i16.KpiTileComponent, typeof i18.LibStepComponent, typeof i19.LibStepInfoDirective, typeof i20.LibStepLabelDirective, typeof i21.LibStepperComponent, typeof i22.LibTabComponent, typeof i23.LibTabGroupComponent, typeof i24.LibTabLabelDirective, typeof i25.ListColumnComponent, typeof i26.ListDetailsSectionComponent, typeof i27.ListTileComponent, typeof i28.ListViewComponent, typeof i29.ListViewEmptyStateComponent, typeof i30.LoggedOutComponent, typeof i31.ModelViewLayoutComponent, typeof i34.PageNotFoundComponent, typeof i35.PagerComponent, typeof i36.ShellFooterComponent, typeof i37.ShellHeaderComponent, typeof i38.ShellLayoutComponent, typeof i43.SidePaneComponent, typeof i44.SideViewLayoutComponent, typeof i45.SkeletonLoaderComponent, typeof i46.ToasterComponent, typeof i47.ToasterContainerComponent, typeof i48.ToggleComponent, typeof i49.UnauthorizedComponent, typeof i51.ViewLayoutComponent, typeof i52.ToggleButtonComponent, typeof i53.ToggleButtonsListComponent]>;
64
- static ɵinj: i0.ɵɵInjectorDeclaration<IndiceComponentsModule>;
65
- }
1
+ import { ModuleWithProviders } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./pipes/address.pipe";
4
+ import * as i2 from "./controls/advanced-search/advanced-search.component";
5
+ import * as i3 from "./pages/auth/auth-callback/auth-callback.component";
6
+ import * as i4 from "./pages/auth/auth-renew/auth-renew.component";
7
+ import * as i5 from "./controls/avatar-initials/avatar-initials.component";
8
+ import * as i6 from "./controls/breadcrumb/breadcrumb.component";
9
+ import * as i7 from "./directives/click-outside.directive";
10
+ import * as i8 from "./controls/collapsible-panel/collapsible-panel.component";
11
+ import * as i9 from "./controls/combobox/combobox.component";
12
+ import * as i10 from "./controls/date-picker/date-picker.component";
13
+ import * as i11 from "./controls/drop-down-menu/drop-down-menu.component";
14
+ import * as i12 from "./pipes/duration-format.pipe";
15
+ import * as i13 from "./pipes/short-number.pipe";
16
+ import * as i14 from "./directives/dynamic-component-host.directive";
17
+ import * as i15 from "./pages/http-status/error/error.component";
18
+ import * as i16 from "./layouts/views/form-layout/form-layout.component";
19
+ import * as i17 from "./controls/kpi-tile/kpi-tile.component";
20
+ import * as i18 from "./controls/language-selection/language-selection.component";
21
+ import * as i19 from "./controls/stepper/lib-step.component";
22
+ import * as i20 from "./controls/stepper/lib-step-info.directive";
23
+ import * as i21 from "./controls/stepper/lib-step-label.directive";
24
+ import * as i22 from "./controls/stepper/lib-stepper.component";
25
+ import * as i23 from "./controls/tabs/lib-tab.component";
26
+ import * as i24 from "./controls/tabs/lib-tab-group.component";
27
+ import * as i25 from "./controls/tabs/lib-tab-label.directive";
28
+ import * as i26 from "./controls/list-view/list-column.component";
29
+ import * as i27 from "./controls/list-view/list-details-section.component";
30
+ import * as i28 from "./controls/list-view/list-tile.component";
31
+ import * as i29 from "./controls/list-view/list-view.component";
32
+ import * as i30 from "./controls/list-view/list-view-empty-state.component";
33
+ import * as i31 from "./pages/auth/logged-out/logged-out.component";
34
+ import * as i32 from "./layouts/views/model-view-layout/model-view-layout.component";
35
+ import * as i33 from "./controls/nav-links-list/nav-links-list.component";
36
+ import * as i34 from "./controls/notifications-indicator/notifications-indicator.component";
37
+ import * as i35 from "./pages/http-status/page-not-found/page-not-found.component";
38
+ import * as i36 from "./controls/pager/pager.component";
39
+ import * as i37 from "./layouts/shell/shell-footer/shell-footer.component";
40
+ import * as i38 from "./layouts/shell/shell-header/shell-header.component";
41
+ import * as i39 from "./layouts/shell/shell-layout/shell-layout.component";
42
+ import * as i40 from "./layouts/shell/shell-sidebar/shell-sidebar.component";
43
+ import * as i41 from "./layouts/shell/shell-sidebar-header/shell-sidebar-header.component";
44
+ import * as i42 from "./layouts/shell/shell-sidebar-layout/shell-sidebar-layout.component";
45
+ import * as i43 from "./layouts/shell/shell-stacked-layout/shell-stacked-layout.component";
46
+ import * as i44 from "./controls/side-pane/side-pane.component";
47
+ import * as i45 from "./layouts/views/side-view-layout/side-view-layout.component";
48
+ import * as i46 from "./controls/skeleton-loader/skeleton-loader.component";
49
+ import * as i47 from "./controls/toaster/toaster.component";
50
+ import * as i48 from "./controls/toaster/toaster-container.component";
51
+ import * as i49 from "./controls/toggle/toggle.component";
52
+ import * as i50 from "./pages/http-status/unauthorized/unauthorized.component";
53
+ import * as i51 from "./controls/user-profile-menu/user-profile-menu.component";
54
+ import * as i52 from "./layouts/views/view-layout/view-layout.component";
55
+ import * as i53 from "./controls/toggle-button/toggle-button.component";
56
+ import * as i54 from "./controls/toggle-buttons-list/toggle-buttons-list.component";
57
+ import * as i55 from "./controls/content-tile/content-tile.component";
58
+ import * as i56 from "./controls/content-tile/content-tile-item/content-tile-item.component";
59
+ import * as i57 from "./controls/content-tile/content-tile-header/content-tile-header.component";
60
+ import * as i58 from "./controls/stats-grid/stats-grid.component";
61
+ import * as i59 from "./controls/progress-bar/progress-bar.component";
62
+ import * as i60 from "@angular/common";
63
+ import * as i61 from "@angular/router";
64
+ import * as i62 from "@indice/ng-auth";
65
+ import * as i63 from "@angular/forms";
66
+ export declare class IndiceComponentsModule {
67
+ static forRoot(): ModuleWithProviders<IndiceComponentsModule>;
68
+ static ɵfac: i0.ɵɵFactoryDeclaration<IndiceComponentsModule, never>;
69
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IndiceComponentsModule, [typeof i1.AddressPipe, typeof i2.AdvancedSearchComponent, typeof i3.AuthCallbackComponent, typeof i4.AuthRenewComponent, typeof i5.AvatarInitialsComponent, typeof i6.BreadcrumbComponent, typeof i7.ClickOutsideDirective, typeof i8.CollapsiblePanelComponent, typeof i9.ComboboxComponent, typeof i10.DatepickerComponent, typeof i11.DropDownMenuComponent, typeof i12.DurationFormatPipe, typeof i13.ShortNumberPipe, typeof i14.DynamicComponentHostDirective, typeof i15.ErrorComponent, typeof i16.FormLayoutComponent, typeof i17.KpiTileComponent, typeof i18.LanguageSelectionComponent, typeof i19.LibStepComponent, typeof i20.LibStepInfoDirective, typeof i21.LibStepLabelDirective, typeof i22.LibStepperComponent, typeof i23.LibTabComponent, typeof i24.LibTabGroupComponent, typeof i25.LibTabLabelDirective, typeof i26.ListColumnComponent, typeof i27.ListDetailsSectionComponent, typeof i28.ListTileComponent, typeof i29.ListViewComponent, typeof i30.ListViewEmptyStateComponent, typeof i31.LoggedOutComponent, typeof i32.ModelViewLayoutComponent, typeof i33.NavLinksListComponent, typeof i34.NotificationsIndicatorComponent, typeof i35.PageNotFoundComponent, typeof i36.PagerComponent, typeof i37.ShellFooterComponent, typeof i38.ShellHeaderComponent, typeof i39.ShellLayoutComponent, typeof i40.ShellSidebarComponent, typeof i41.ShellSidebarHeaderComponent, typeof i42.ShellSidebarLayoutComponent, typeof i43.ShellStackedLayoutComponent, typeof i44.SidePaneComponent, typeof i45.SideViewLayoutComponent, typeof i46.SkeletonLoaderComponent, typeof i47.ToasterComponent, typeof i48.ToasterContainerComponent, typeof i49.ToggleComponent, typeof i50.UnauthorizedComponent, typeof i51.UserProfileMenuComponent, typeof i52.ViewLayoutComponent, typeof i53.ToggleButtonComponent, typeof i54.ToggleButtonsListComponent, typeof i55.ContentTileComponent, typeof i56.ContentTileItemComponent, typeof i57.ContentTileHeaderComponent, typeof i58.StatsGridComponent, typeof i59.ProgressBarComponent], [typeof i60.CommonModule, typeof i61.RouterModule, typeof i62.IndiceAuthModule, typeof i63.FormsModule], [typeof i1.AddressPipe, typeof i2.AdvancedSearchComponent, typeof i3.AuthCallbackComponent, typeof i4.AuthRenewComponent, typeof i5.AvatarInitialsComponent, typeof i6.BreadcrumbComponent, typeof i7.ClickOutsideDirective, typeof i8.CollapsiblePanelComponent, typeof i9.ComboboxComponent, typeof i10.DatepickerComponent, typeof i11.DropDownMenuComponent, typeof i12.DurationFormatPipe, typeof i13.ShortNumberPipe, typeof i15.ErrorComponent, typeof i16.FormLayoutComponent, typeof i17.KpiTileComponent, typeof i19.LibStepComponent, typeof i20.LibStepInfoDirective, typeof i21.LibStepLabelDirective, typeof i22.LibStepperComponent, typeof i23.LibTabComponent, typeof i24.LibTabGroupComponent, typeof i25.LibTabLabelDirective, typeof i26.ListColumnComponent, typeof i27.ListDetailsSectionComponent, typeof i28.ListTileComponent, typeof i29.ListViewComponent, typeof i30.ListViewEmptyStateComponent, typeof i31.LoggedOutComponent, typeof i32.ModelViewLayoutComponent, typeof i35.PageNotFoundComponent, typeof i36.PagerComponent, typeof i37.ShellFooterComponent, typeof i38.ShellHeaderComponent, typeof i39.ShellLayoutComponent, typeof i44.SidePaneComponent, typeof i45.SideViewLayoutComponent, typeof i46.SkeletonLoaderComponent, typeof i47.ToasterComponent, typeof i48.ToasterContainerComponent, typeof i49.ToggleComponent, typeof i50.UnauthorizedComponent, typeof i52.ViewLayoutComponent, typeof i53.ToggleButtonComponent, typeof i54.ToggleButtonsListComponent, typeof i55.ContentTileComponent, typeof i56.ContentTileItemComponent, typeof i57.ContentTileHeaderComponent, typeof i58.StatsGridComponent, typeof i59.ProgressBarComponent]>;
70
+ static ɵinj: i0.ɵɵInjectorDeclaration<IndiceComponentsModule>;
71
+ }
@@ -1,13 +1,13 @@
1
- import { OnInit } from '@angular/core';
2
- import { Router } from '@angular/router';
3
- import { AuthService } from '@indice/ng-auth';
4
- import * as i0 from "@angular/core";
5
- export declare class AuthCallbackComponent implements OnInit {
6
- private authService;
7
- private router;
8
- constructor(authService: AuthService, router: Router);
9
- status: string;
10
- ngOnInit(): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthCallbackComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<AuthCallbackComponent, "lib-auth-callback", never, {}, {}, never, never, false>;
13
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { AuthService } from '@indice/ng-auth';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AuthCallbackComponent implements OnInit {
6
+ private authService;
7
+ private router;
8
+ constructor(authService: AuthService, router: Router);
9
+ status: string;
10
+ ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthCallbackComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AuthCallbackComponent, "lib-auth-callback", never, {}, {}, never, never, false, never>;
13
+ }
@@ -1,12 +1,12 @@
1
- import { OnInit } from '@angular/core';
2
- import { Router } from '@angular/router';
3
- import { AuthService } from '@indice/ng-auth';
4
- import * as i0 from "@angular/core";
5
- export declare class AuthRenewComponent implements OnInit {
6
- private authService;
7
- private router;
8
- constructor(authService: AuthService, router: Router);
9
- ngOnInit(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthRenewComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<AuthRenewComponent, "lib-auth-renew", never, {}, {}, never, never, false>;
12
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { AuthService } from '@indice/ng-auth';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AuthRenewComponent implements OnInit {
6
+ private authService;
7
+ private router;
8
+ constructor(authService: AuthService, router: Router);
9
+ ngOnInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthRenewComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<AuthRenewComponent, "lib-auth-renew", never, {}, {}, never, never, false, never>;
12
+ }
@@ -1,12 +1,12 @@
1
- import { AuthService } from '@indice/ng-auth';
2
- import { OnInit } from '@angular/core';
3
- import * as i0 from "@angular/core";
4
- export declare class LoggedOutComponent implements OnInit {
5
- private authService;
6
- constructor(authService: AuthService);
7
- status: string;
8
- finished: boolean;
9
- ngOnInit(): void;
10
- static ɵfac: i0.ɵɵFactoryDeclaration<LoggedOutComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<LoggedOutComponent, "lib-logged-out", never, {}, {}, never, never, false>;
12
- }
1
+ import { AuthService } from '@indice/ng-auth';
2
+ import { OnInit } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LoggedOutComponent implements OnInit {
5
+ private authService;
6
+ constructor(authService: AuthService);
7
+ status: string;
8
+ finished: boolean;
9
+ ngOnInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoggedOutComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoggedOutComponent, "lib-logged-out", never, {}, {}, never, never, false, never>;
12
+ }
@@ -1,8 +1,8 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class ErrorComponent implements OnInit {
4
- error: string;
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "lib-error", never, {}, {}, never, never, false>;
8
- }
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ErrorComponent implements OnInit {
4
+ error: string;
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "lib-error", never, {}, {}, never, never, false, never>;
8
+ }
@@ -1,8 +1,8 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class PageNotFoundComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<PageNotFoundComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<PageNotFoundComponent, "lib-page-not-found", never, {}, {}, never, never, false>;
8
- }
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class PageNotFoundComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageNotFoundComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageNotFoundComponent, "lib-page-not-found", never, {}, {}, never, never, false, never>;
8
+ }
@@ -1,8 +1,8 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class UnauthorizedComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<UnauthorizedComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<UnauthorizedComponent, "lib-unauthorized", never, {}, {}, never, never, false>;
8
- }
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class UnauthorizedComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<UnauthorizedComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<UnauthorizedComponent, "lib-unauthorized", never, {}, {}, never, never, false, never>;
8
+ }
@@ -1,8 +1,8 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { IAddress } from '../types';
3
- import * as i0 from "@angular/core";
4
- export declare class AddressPipe implements PipeTransform {
5
- transform(value: IAddress | undefined): string;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<AddressPipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<AddressPipe, "address", false>;
8
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import { IAddress } from '../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AddressPipe implements PipeTransform {
5
+ transform(value: IAddress | undefined): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddressPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<AddressPipe, "address", false>;
8
+ }
@@ -1,8 +1,8 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class DurationFormatPipe implements PipeTransform {
4
- transform(value: any, arg1: any, arg2: any): string;
5
- private format;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<DurationFormatPipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<DurationFormatPipe, "durationFormat", false>;
8
- }
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DurationFormatPipe implements PipeTransform {
4
+ transform(value: any, arg1: any, arg2: any): string;
5
+ private format;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DurationFormatPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<DurationFormatPipe, "durationFormat", false>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ShortNumberPipe implements PipeTransform {
4
+ transform(number: number, args?: any): any;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShortNumberPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ShortNumberPipe, "shortNumber", false>;
7
+ }
@@ -1,29 +1,29 @@
1
- import { Router } from '@angular/router';
2
- import { Observable } from 'rxjs';
3
- import { BreadcrumbItem } from '../controls/breadcrumb/breadcrumb-item';
4
- import { UtilitiesService } from './utilities.service';
5
- import * as i0 from "@angular/core";
6
- export declare class BreadcrumbService {
7
- private _router;
8
- private _utilities;
9
- _shellConfig?: any;
10
- private _defaultHome;
11
- private _breadcrumb$;
12
- constructor(_router: Router, _utilities: UtilitiesService, _shellConfig?: any);
13
- breadcrumb: Observable<BreadcrumbItem[]>;
14
- private _getDefaultHomeItem;
15
- private _getRouteTitle;
16
- private _buildBreadcrumb;
17
- private _findRouteFromUrl;
18
- private _findParentRoutes;
19
- private _flattenRoutes;
20
- private _getBreadcrumbRouteData;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, [null, null, { optional: true; }]>;
22
- static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
23
- }
24
- export declare class BreadcrumbRouteData {
25
- _level: number;
26
- isHome: boolean;
27
- _fullPath?: string | undefined;
28
- constructor(_level: number, isHome: boolean, _fullPath?: string | undefined);
29
- }
1
+ import { Router } from '@angular/router';
2
+ import { Observable } from 'rxjs';
3
+ import { BreadcrumbItem } from '../controls/breadcrumb/breadcrumb-item';
4
+ import { UtilitiesService } from './utilities.service';
5
+ import * as i0 from "@angular/core";
6
+ export declare class BreadcrumbService {
7
+ private _router;
8
+ private _utilities;
9
+ _shellConfig?: any;
10
+ private _defaultHome;
11
+ private _breadcrumb$;
12
+ constructor(_router: Router, _utilities: UtilitiesService, _shellConfig?: any);
13
+ breadcrumb: Observable<BreadcrumbItem[]>;
14
+ private _getDefaultHomeItem;
15
+ private _getRouteTitle;
16
+ private _buildBreadcrumb;
17
+ private _findRouteFromUrl;
18
+ private _findParentRoutes;
19
+ private _flattenRoutes;
20
+ private _getBreadcrumbRouteData;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, [null, null, { optional: true; }]>;
22
+ static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
23
+ }
24
+ export declare class BreadcrumbRouteData {
25
+ _level: number;
26
+ isHome: boolean;
27
+ _fullPath?: string | undefined;
28
+ constructor(_level: number, isHome: boolean, _fullPath?: string | undefined);
29
+ }