@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,40 +1,40 @@
1
- import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, NgZone } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class ClickOutsideDirective implements OnInit, OnChanges, OnDestroy {
4
- private _el;
5
- private _ngZone;
6
- private platformId;
7
- clickOutsideEnabled: boolean;
8
- attachOutsideOnClick: boolean;
9
- delayClickOutsideInit: boolean;
10
- emitOnBlur: boolean;
11
- exclude: string;
12
- excludeBeforeClick: boolean;
13
- clickOutsideEvents: string;
14
- clickOutside: EventEmitter<Event>;
15
- private _nodesExcluded;
16
- private _events;
17
- constructor(_el: ElementRef, _ngZone: NgZone, platformId: any);
18
- ngOnInit(): void;
19
- ngOnDestroy(): void;
20
- ngOnChanges(changes: SimpleChanges): void;
21
- private _init;
22
- private _initOnClickBody;
23
- private _excludeCheck;
24
- private _onClickBody;
25
- /**
26
- * Resolves problem with outside click on iframe
27
- * @see https://github.com/arkon/ng-click-outside/issues/32
28
- */
29
- private _onWindowBlur;
30
- private _emit;
31
- private _shouldExclude;
32
- private _initClickOutsideListener;
33
- private _removeClickOutsideListener;
34
- private _initAttachOutsideOnClickListener;
35
- private _removeAttachOutsideOnClickListener;
36
- private _initWindowBlurListener;
37
- private _removeWindowBlurListener;
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, never, false>;
40
- }
1
+ import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, NgZone } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ClickOutsideDirective implements OnInit, OnChanges, OnDestroy {
4
+ private _el;
5
+ private _ngZone;
6
+ private platformId;
7
+ clickOutsideEnabled: boolean;
8
+ attachOutsideOnClick: boolean;
9
+ delayClickOutsideInit: boolean;
10
+ emitOnBlur: boolean;
11
+ exclude: string;
12
+ excludeBeforeClick: boolean;
13
+ clickOutsideEvents: string;
14
+ clickOutside: EventEmitter<Event>;
15
+ private _nodesExcluded;
16
+ private _events;
17
+ constructor(_el: ElementRef, _ngZone: NgZone, platformId: any);
18
+ ngOnInit(): void;
19
+ ngOnDestroy(): void;
20
+ ngOnChanges(changes: SimpleChanges): void;
21
+ private _init;
22
+ private _initOnClickBody;
23
+ private _excludeCheck;
24
+ private _onClickBody;
25
+ /**
26
+ * Resolves problem with outside click on iframe
27
+ * @see https://github.com/arkon/ng-click-outside/issues/32
28
+ */
29
+ private _onWindowBlur;
30
+ private _emit;
31
+ private _shouldExclude;
32
+ private _initClickOutsideListener;
33
+ private _removeClickOutsideListener;
34
+ private _initAttachOutsideOnClickListener;
35
+ private _removeAttachOutsideOnClickListener;
36
+ private _initWindowBlurListener;
37
+ private _removeWindowBlurListener;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClickOutsideDirective, never>;
39
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ClickOutsideDirective, "[clickOutside]", never, { "clickOutsideEnabled": { "alias": "clickOutsideEnabled"; "required": false; }; "attachOutsideOnClick": { "alias": "attachOutsideOnClick"; "required": false; }; "delayClickOutsideInit": { "alias": "delayClickOutsideInit"; "required": false; }; "emitOnBlur": { "alias": "emitOnBlur"; "required": false; }; "exclude": { "alias": "exclude"; "required": false; }; "excludeBeforeClick": { "alias": "excludeBeforeClick"; "required": false; }; "clickOutsideEvents": { "alias": "clickOutsideEvents"; "required": false; }; }, { "clickOutside": "clickOutside"; }, never, never, false, never>;
40
+ }
@@ -1,9 +1,9 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class DynamicComponentHostDirective {
4
- viewContainerRef: ViewContainerRef;
5
- hostName: string;
6
- constructor(viewContainerRef: ViewContainerRef);
7
- static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentHostDirective, never>;
8
- static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentHostDirective, "[appDynamicComponentHost]", never, { "hostName": "hostName"; }, {}, never, never, false>;
9
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DynamicComponentHostDirective {
4
+ viewContainerRef: ViewContainerRef;
5
+ hostName: string;
6
+ constructor(viewContainerRef: ViewContainerRef);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentHostDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentHostDirective, "[appDynamicComponentHost]", never, { "hostName": { "alias": "hostName"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
@@ -1,53 +1,54 @@
1
- import { FilterClause, SearchOption } from './../controls/advanced-search/models';
2
- import { Observable } from 'rxjs';
3
- import { OnInit, OnDestroy } from '@angular/core';
4
- import { ActivatedRoute, Router } from '@angular/router';
5
- import { HeaderMetaItem, IResultSet, MenuOption, ViewAction } from '../types';
6
- import * as i0 from "@angular/core";
7
- export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy {
8
- private route$;
9
- private router$;
10
- items: T[] | null | undefined;
11
- view: string;
12
- title: string | null;
13
- actions: ViewAction[];
14
- loaderItems: any[];
15
- page: number;
16
- pageSize: number;
17
- count: number;
18
- sort: string | null;
19
- sortdir: string | null;
20
- search: string | null;
21
- filters: FilterClause[];
22
- searchOptions: SearchOption[];
23
- sortOptions: MenuOption[];
24
- metaItems: HeaderMetaItem[];
25
- abstract newItemLink: string | null;
26
- private routeSub$;
27
- constructor(route$: ActivatedRoute, router$: Router);
28
- ngOnDestroy(): void;
29
- getViewActions(): Observable<ViewAction[]>;
30
- ngOnInit(): void;
31
- /**
32
- * Get filters from a querystring
33
- * @param queryParamMap
34
- * @returns filters found from a paramMap
35
- */
36
- private getFiltersFrom;
37
- private setRouteParams;
38
- private filterClausesToString;
39
- actionHandler($event: ViewAction): void;
40
- private load;
41
- private updateHeaderMeta;
42
- abstract loadItems(): Observable<IResultSet<T> | null | undefined>;
43
- clear(): void;
44
- refresh(): void;
45
- pageChanged(page: number): void;
46
- pageSizeChanged(pageSize: number): void;
47
- sortChanged(sort: string): void;
48
- sortdirChanged(sortdir: string): void;
49
- advancedSearchChanged(filters: FilterClause[]): void;
50
- searchChanged(searchText: string | null): void;
51
- static ɵfac: i0.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
52
- static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, {}, {}, never, never, false>;
53
- }
1
+ import { FilterClause, SearchOption } from './../controls/advanced-search/models';
2
+ import { Observable } from 'rxjs';
3
+ import { OnInit, OnDestroy } from '@angular/core';
4
+ import { ActivatedRoute, Router } from '@angular/router';
5
+ import { HeaderMetaItem, IResultSet, MenuOption, ViewAction } from '../types';
6
+ import * as i0 from "@angular/core";
7
+ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy {
8
+ private route$;
9
+ private router$;
10
+ items: T[] | null | undefined;
11
+ view: string;
12
+ title: string | null;
13
+ actions: ViewAction[];
14
+ loaderItems: any[];
15
+ page: number;
16
+ pageSize: number;
17
+ count: number;
18
+ sort: string | null;
19
+ sortdir: string | null;
20
+ search: string | null;
21
+ filters: FilterClause[];
22
+ searchOptions: SearchOption[];
23
+ sortOptions: MenuOption[];
24
+ metaItems: HeaderMetaItem[];
25
+ abstract newItemLink: string | null;
26
+ private routeSub$;
27
+ private loadSub$;
28
+ constructor(route$: ActivatedRoute, router$: Router);
29
+ ngOnDestroy(): void;
30
+ getViewActions(): Observable<ViewAction[]>;
31
+ ngOnInit(): void;
32
+ /**
33
+ * Get filters from a querystring
34
+ * @param queryParamMap
35
+ * @returns filters found from a paramMap
36
+ */
37
+ private getFiltersFrom;
38
+ private setRouteParams;
39
+ private filterClausesToString;
40
+ actionHandler($event: ViewAction): void;
41
+ private load;
42
+ private updateHeaderMeta;
43
+ abstract loadItems(): Observable<IResultSet<T> | null | undefined>;
44
+ clear(): void;
45
+ refresh(): void;
46
+ pageChanged(page: number): void;
47
+ pageSizeChanged(pageSize: number): void;
48
+ sortChanged(sort: string): void;
49
+ sortdirChanged(sortdir: string): void;
50
+ advancedSearchChanged(filters: FilterClause[]): void;
51
+ searchChanged(searchText: string | null): void;
52
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, {}, {}, never, never, false, never>;
54
+ }
package/lib/icons.d.ts CHANGED
@@ -1,34 +1,34 @@
1
- export declare class Icons {
2
- static Dashboard: string;
3
- static Locations: string;
4
- static ChargePoints: string;
5
- static Transations: string;
6
- static Badges: string;
7
- static Information: string;
8
- static Refresh: string;
9
- static Search: string;
10
- static Add: string;
11
- static Delete: string;
12
- static SendEmail: string;
13
- static Filter: string;
14
- static Export: string;
15
- static Import: string;
16
- static TilesView: string;
17
- static TableView: string;
18
- static MapView: string;
19
- static EntryView: string;
20
- static Separator: string;
21
- static ItemsCount: string;
22
- static Heart: string;
23
- static HeartBroken: string;
24
- static DateTime: string;
25
- static Expand: string;
26
- static Collapse: string;
27
- static SortAsc: string;
28
- static SortDesc: string;
29
- static Details: string;
30
- static Messages: string;
31
- static MessagesUnread: string;
32
- static External: string;
33
- static Statistics: string;
34
- }
1
+ export declare class Icons {
2
+ static Dashboard: string;
3
+ static Locations: string;
4
+ static ChargePoints: string;
5
+ static Transations: string;
6
+ static Badges: string;
7
+ static Information: string;
8
+ static Refresh: string;
9
+ static Search: string;
10
+ static Add: string;
11
+ static Delete: string;
12
+ static SendEmail: string;
13
+ static Filter: string;
14
+ static Export: string;
15
+ static Import: string;
16
+ static TilesView: string;
17
+ static TableView: string;
18
+ static MapView: string;
19
+ static EntryView: string;
20
+ static Separator: string;
21
+ static ItemsCount: string;
22
+ static Heart: string;
23
+ static HeartBroken: string;
24
+ static DateTime: string;
25
+ static Expand: string;
26
+ static Collapse: string;
27
+ static SortAsc: string;
28
+ static SortDesc: string;
29
+ static Details: string;
30
+ static Messages: string;
31
+ static MessagesUnread: string;
32
+ static External: string;
33
+ static Statistics: string;
34
+ }
@@ -1,8 +1,8 @@
1
- import { IAppLinks } from '../../../types';
2
- import * as i0 from "@angular/core";
3
- export declare class ShellFooterComponent {
4
- links: IAppLinks;
5
- constructor(links: IAppLinks);
6
- static ɵfac: i0.ɵɵFactoryDeclaration<ShellFooterComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellFooterComponent, "lib-shell-footer", never, {}, {}, never, never, false>;
8
- }
1
+ import { IAppLinks } from '../../../types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ShellFooterComponent {
4
+ links: IAppLinks;
5
+ constructor(links: IAppLinks);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellFooterComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellFooterComponent, "lib-shell-footer", never, {}, {}, never, never, false, never>;
8
+ }
@@ -1,39 +1,39 @@
1
- import { AuthService } from '@indice/ng-auth';
2
- import { OnInit, OnDestroy } from '@angular/core';
3
- import { User } from 'oidc-client';
4
- import { ActivatedRoute, Event, Router } from '@angular/router';
5
- import { NavLink } from '../../../types';
6
- import { Observable } from 'rxjs';
7
- import { Subscription } from 'rxjs';
8
- import * as i0 from "@angular/core";
9
- export declare class ShellHeaderComponent implements OnInit, OnDestroy {
10
- protected authService: AuthService;
11
- protected router: Router;
12
- protected route: ActivatedRoute;
13
- config: any;
14
- links: any;
15
- sectionLinksPath: string;
16
- profileMenuVisible: boolean;
17
- showUserNameOnHeader: boolean | undefined;
18
- showAlerts: boolean | undefined;
19
- showLangs: boolean | undefined;
20
- border: boolean;
21
- sectionLinks: Observable<NavLink[]>;
22
- mobileMenuExpanded: boolean;
23
- userMenuExpanded: boolean;
24
- protected routeSubject: Observable<Event>;
25
- protected routerSub$: Subscription | null;
26
- protected userSub$: Subscription | null;
27
- protected statusSub$: Subscription | null;
28
- user: User | null;
29
- avatarName: string | null;
30
- activeFragment: any | null;
31
- constructor(authService: AuthService, router: Router, route: ActivatedRoute, config: any, links: any);
32
- ngOnInit(): void;
33
- ngOnDestroy(): void;
34
- onClickOutside($event: any): void;
35
- signin(event: any | null | undefined): void;
36
- private setCurrentUser;
37
- static ɵfac: i0.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": "section-links"; "profileMenuVisible": "profile-menu"; "showUserNameOnHeader": "show-userName"; "showAlerts": "show-alerts"; "showLangs": "show-langs"; "border": "border"; }, {}, never, never, false>;
39
- }
1
+ import { AuthService } from '@indice/ng-auth';
2
+ import { OnInit, OnDestroy } from '@angular/core';
3
+ import { ActivatedRoute, Event, Router } from '@angular/router';
4
+ import { NavLink } from '../../../types';
5
+ import { Observable } from 'rxjs';
6
+ import { Subscription } from 'rxjs';
7
+ import { User } from 'oidc-client-ts';
8
+ import * as i0 from "@angular/core";
9
+ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
10
+ protected authService: AuthService;
11
+ protected router: Router;
12
+ protected route: ActivatedRoute;
13
+ config: any;
14
+ links: any;
15
+ sectionLinksPath: string;
16
+ profileMenuVisible: boolean;
17
+ showUserNameOnHeader: boolean | undefined;
18
+ showAlerts: boolean | undefined;
19
+ showLangs: boolean | undefined;
20
+ border: boolean;
21
+ sectionLinks: Observable<NavLink[]>;
22
+ mobileMenuExpanded: boolean;
23
+ userMenuExpanded: boolean;
24
+ protected routeSubject: Observable<Event>;
25
+ protected routerSub$: Subscription | null;
26
+ protected userSub$: Subscription | null;
27
+ protected statusSub$: Subscription | null;
28
+ user: User | null;
29
+ avatarName: string | null;
30
+ activeFragment: any | null;
31
+ constructor(authService: AuthService, router: Router, route: ActivatedRoute, config: any, links: any);
32
+ ngOnInit(): void;
33
+ ngOnDestroy(): void;
34
+ onClickOutside($event: any): void;
35
+ signin(event: any | null | undefined): void;
36
+ private setCurrentUser;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; }; "profileMenuVisible": { "alias": "profile-menu"; "required": false; }; "showUserNameOnHeader": { "alias": "show-userName"; "required": false; }; "showAlerts": { "alias": "show-alerts"; "required": false; }; "showLangs": { "alias": "show-langs"; "required": false; }; "border": { "alias": "border"; "required": false; }; }, {}, never, never, false, never>;
39
+ }
@@ -1,26 +1,26 @@
1
- import { AfterViewInit, OnInit, OnDestroy, AfterViewChecked, TemplateRef } from '@angular/core';
2
- import { Router } from '@angular/router';
3
- import { IShellConfig } from './../../../types';
4
- import { ComponentLoaderFactory } from '../../../services/component-loader/component-loader.factory';
5
- import * as i0 from "@angular/core";
6
- export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterViewInit, AfterViewChecked {
7
- private _router;
8
- private _componentLoaderFactory;
9
- private _config;
10
- private _dynamicComponentHosts;
11
- private _routerSub$;
12
- constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _config: IShellConfig | undefined);
13
- sidebarFooterTemplate?: TemplateRef<any>;
14
- showRightPaneSM: boolean;
15
- activeConfig: IShellConfig;
16
- loaded: boolean;
17
- hideSidebar: boolean;
18
- ngAfterViewChecked(): void;
19
- ngOnInit(): void;
20
- ngAfterViewInit(): void;
21
- private initCustomComponents;
22
- ngOnDestroy(): void;
23
- private loadCustomComponent;
24
- static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "sidebarFooterTemplate": "sidebarFooterTemplate"; }, {}, never, never, false>;
26
- }
1
+ import { AfterViewInit, OnInit, OnDestroy, AfterViewChecked, TemplateRef } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { IShellConfig } from './../../../types';
4
+ import { ComponentLoaderFactory } from '../../../services/component-loader/component-loader.factory';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterViewInit, AfterViewChecked {
7
+ private _router;
8
+ private _componentLoaderFactory;
9
+ private _config;
10
+ private _dynamicComponentHosts;
11
+ private _routerSub$;
12
+ constructor(_router: Router, _componentLoaderFactory: ComponentLoaderFactory, _config: IShellConfig | undefined);
13
+ sidebarFooterTemplate?: TemplateRef<any>;
14
+ showRightPaneSM: boolean;
15
+ activeConfig: IShellConfig;
16
+ loaded: boolean;
17
+ hideSidebar: boolean;
18
+ ngAfterViewChecked(): void;
19
+ ngOnInit(): void;
20
+ ngAfterViewInit(): void;
21
+ private initCustomComponents;
22
+ ngOnDestroy(): void;
23
+ private loadCustomComponent;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, { "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
26
+ }
@@ -1,20 +1,20 @@
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
- constructor(router: Router, route: ActivatedRoute, links: any);
11
- sectionLinksPath: string;
12
- shellConfig: IShellConfig | undefined;
13
- sticky: boolean;
14
- sectionLinks: Observable<NavLink[]>;
15
- activeFragment: any | null;
16
- get activeNavLinkClass(): string;
17
- ngOnInit(): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarComponent, "lib-shell-sidebar", never, { "sectionLinksPath": "section-links"; "shellConfig": "config"; "sticky": "sticky"; }, {}, never, never, false>;
20
- }
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
+ constructor(router: Router, route: ActivatedRoute, links: any);
11
+ sectionLinksPath: string;
12
+ shellConfig: IShellConfig | undefined;
13
+ sticky: boolean;
14
+ sectionLinks: Observable<NavLink[]>;
15
+ activeFragment: any | null;
16
+ get activeNavLinkClass(): string;
17
+ ngOnInit(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarComponent, "lib-shell-sidebar", never, { "sectionLinksPath": { "alias": "section-links"; "required": false; }; "shellConfig": { "alias": "config"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; }, {}, never, never, false, never>;
20
+ }
@@ -1,14 +1,14 @@
1
- import { AuthService } from '@indice/ng-auth';
2
- import { ActivatedRoute, Router } from '@angular/router';
3
- import { ShellHeaderComponent } from '../shell-header/shell-header.component';
4
- import * as i0 from "@angular/core";
5
- export declare class ShellSidebarHeaderComponent extends ShellHeaderComponent {
6
- protected authService: AuthService;
7
- protected router: Router;
8
- protected route: ActivatedRoute;
9
- config: any;
10
- links: any;
11
- constructor(authService: AuthService, router: Router, route: ActivatedRoute, config: any, links: any);
12
- static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarHeaderComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarHeaderComponent, "lib-shell-sidebar-header", never, {}, {}, never, never, false>;
14
- }
1
+ import { AuthService } from '@indice/ng-auth';
2
+ import { ActivatedRoute, Router } from '@angular/router';
3
+ import { ShellHeaderComponent } from '../shell-header/shell-header.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ShellSidebarHeaderComponent extends ShellHeaderComponent {
6
+ protected authService: AuthService;
7
+ protected router: Router;
8
+ protected route: ActivatedRoute;
9
+ config: any;
10
+ links: any;
11
+ constructor(authService: AuthService, router: Router, route: ActivatedRoute, config: any, links: any);
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarHeaderComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarHeaderComponent, "lib-shell-sidebar-header", never, {}, {}, never, never, false, never>;
14
+ }
@@ -1,15 +1,15 @@
1
- import { OnInit, TemplateRef } from '@angular/core';
2
- import { IShellConfig } from '../../../types';
3
- import { UserSettingsService } from '../../../services/user-settings.service';
4
- import * as i0 from "@angular/core";
5
- export declare class ShellSidebarLayoutComponent implements OnInit {
6
- private _userSettings;
7
- constructor(_userSettings: UserSettingsService);
8
- config: IShellConfig | undefined;
9
- sidebarFooterTemplate?: TemplateRef<any>;
10
- showMobileSidebar: boolean;
11
- ngOnInit(): void;
12
- toggleMobileSidebar(): void;
13
- static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarLayoutComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": "config"; "sidebarFooterTemplate": "sidebarFooterTemplate"; }, {}, never, never, false>;
15
- }
1
+ import { OnInit, TemplateRef } from '@angular/core';
2
+ import { IShellConfig } from '../../../types';
3
+ import { UserSettingsService } from '../../../services/user-settings.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ShellSidebarLayoutComponent implements OnInit {
6
+ private _userSettings;
7
+ constructor(_userSettings: UserSettingsService);
8
+ config: IShellConfig | undefined;
9
+ sidebarFooterTemplate?: TemplateRef<any>;
10
+ showMobileSidebar: boolean;
11
+ ngOnInit(): void;
12
+ toggleMobileSidebar(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellSidebarLayoutComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellSidebarLayoutComponent, "lib-shell-sidebar-layout", never, { "config": { "alias": "config"; "required": false; }; "sidebarFooterTemplate": { "alias": "sidebarFooterTemplate"; "required": false; }; }, {}, never, never, false, never>;
15
+ }
@@ -1,10 +1,10 @@
1
- import { OnInit } from '@angular/core';
2
- import { IShellConfig } from '../../../types';
3
- import * as i0 from "@angular/core";
4
- export declare class ShellStackedLayoutComponent implements OnInit {
5
- constructor();
6
- config: IShellConfig | undefined;
7
- ngOnInit(): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<ShellStackedLayoutComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<ShellStackedLayoutComponent, "lib-shell-stacked-layout", never, { "config": "config"; }, {}, never, never, false>;
10
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { IShellConfig } from '../../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ShellStackedLayoutComponent implements OnInit {
5
+ constructor();
6
+ config: IShellConfig | undefined;
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellStackedLayoutComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellStackedLayoutComponent, "lib-shell-stacked-layout", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
10
+ }
@@ -1,24 +1,26 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { Router } from '@angular/router';
3
- import { RouterViewAction, ViewAction } from '../../../types';
4
- import * as i0 from "@angular/core";
5
- export declare class FormLayoutComponent implements OnInit {
6
- private router$;
7
- private searchInput$?;
8
- title: string | null;
9
- searchPlaceholder: string | null;
10
- actions: ViewAction[] | null;
11
- subTitle: string | null;
12
- onAction: EventEmitter<ViewAction>;
13
- onSearch: EventEmitter<string>;
14
- onComplete: EventEmitter<boolean>;
15
- constructor(router$: Router);
16
- ngOnInit(): void;
17
- onSidePaneDeactivated($event: any): void;
18
- emitActionClick(action: ViewAction): void;
19
- searchActionClick(action: ViewAction, text: string): void;
20
- searchActionType(text: string): void;
21
- routerLinkActionClick(action: RouterViewAction | any, relative?: boolean): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<FormLayoutComponent, 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>;
24
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { RouterViewAction, ViewAction } from '../../../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class FormLayoutComponent implements OnInit {
6
+ private router$;
7
+ private searchInput$?;
8
+ title: string | null;
9
+ image: string | null;
10
+ icon: string | null;
11
+ searchPlaceholder: string | null;
12
+ actions: ViewAction[] | null;
13
+ subTitle: string | null;
14
+ onAction: EventEmitter<ViewAction>;
15
+ onSearch: EventEmitter<string>;
16
+ onComplete: EventEmitter<boolean>;
17
+ constructor(router$: Router);
18
+ ngOnInit(): void;
19
+ onSidePaneDeactivated($event: any): void;
20
+ emitActionClick(action: ViewAction): void;
21
+ searchActionClick(action: ViewAction, text: string): void;
22
+ searchActionType(text: string): void;
23
+ routerLinkActionClick(action: RouterViewAction | any, relative?: boolean): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormLayoutComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormLayoutComponent, "lib-form-layout", never, { "title": { "alias": "title"; "required": false; }; "image": { "alias": "image"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "searchPlaceholder": { "alias": "search-placeholder"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "subTitle": { "alias": "sub-title"; "required": false; }; }, { "onAction": "onAction"; "onSearch": "onSearch"; "onComplete": "onComplete"; }, never, ["*"], false, never>;
26
+ }