@indice/ng-components 0.2.139 → 0.2.141

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 (228) hide show
  1. package/README.md +4 -4
  2. package/{src/assets/styles/indice-ng-icons-inline.css → _styles.css} +3501 -2286
  3. package/esm2020/indice-ng-components.mjs +5 -0
  4. package/esm2020/lib/controls/avatar-initials/avatar-initials.component.mjs +48 -0
  5. package/esm2020/lib/controls/collapsible-panel/collapsible-panel.component.mjs +20 -0
  6. package/esm2020/lib/controls/date-picker/date-picker.component.mjs +260 -0
  7. package/esm2020/lib/controls/drop-down-menu/drop-down-menu.component.mjs +68 -0
  8. package/esm2020/lib/controls/kpi-tile/kpi-tile.component.mjs +36 -0
  9. package/esm2020/lib/controls/list-view/list-column.component.mjs +25 -0
  10. package/esm2020/lib/controls/list-view/list-details-section.component.mjs +17 -0
  11. package/esm2020/lib/controls/list-view/list-tile.component.mjs +17 -0
  12. package/esm2020/lib/controls/list-view/list-view-empty-state.component.mjs +29 -0
  13. package/esm2020/lib/controls/list-view/list-view.component.mjs +183 -0
  14. package/esm2020/lib/controls/nav-links-list/nav-links-list.component.mjs +37 -0
  15. package/esm2020/lib/controls/notifications-indicator/notifications-indicator.component.mjs +77 -0
  16. package/esm2020/lib/controls/pager/pager.component.mjs +130 -0
  17. package/esm2020/lib/controls/side-pane/side-pane.component.mjs +72 -0
  18. package/esm2020/lib/controls/skeleton-loader/skeleton-loader.component.mjs +25 -0
  19. package/esm2020/lib/controls/toaster/toaster-container.component.mjs +28 -0
  20. package/esm2020/lib/controls/toaster/toaster.component.mjs +31 -0
  21. package/esm2020/lib/controls/toggle/toggle.component.mjs +64 -0
  22. package/esm2020/lib/directives/click-outside.directive.mjs +189 -0
  23. package/esm2020/lib/directives/dynamic-component-host.directive.mjs +17 -0
  24. package/esm2020/lib/helpers/base-list.component.mjs +181 -0
  25. package/esm2020/lib/icons.mjs +32 -0
  26. package/esm2020/lib/layouts/shell/shell-footer/shell-footer.component.mjs +19 -0
  27. package/esm2020/lib/layouts/shell/shell-header/shell-header.component.mjs +135 -0
  28. package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +101 -0
  29. package/esm2020/lib/layouts/views/form-layout/form-layout.component.mjs +80 -0
  30. package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +49 -0
  31. package/esm2020/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +98 -0
  32. package/esm2020/lib/layouts/views/view-layout/view-layout.component.mjs +104 -0
  33. package/esm2020/lib/ng-components.module.mjs +221 -0
  34. package/esm2020/lib/pages/auth/auth-callback/auth-callback.component.mjs +30 -0
  35. package/esm2020/lib/pages/auth/auth-renew/auth-renew.component.mjs +31 -0
  36. package/esm2020/lib/pages/auth/logged-out/logged-out.component.mjs +28 -0
  37. package/esm2020/lib/pages/http-status/error/error.component.mjs +17 -0
  38. package/esm2020/lib/pages/http-status/page-not-found/page-not-found.component.mjs +15 -0
  39. package/esm2020/lib/pages/http-status/unauthorized/unauthorized.component.mjs +14 -0
  40. package/esm2020/lib/pipes/address.pipe.mjs +21 -0
  41. package/esm2020/lib/pipes/duration-format.pipe.mjs +64 -0
  42. package/esm2020/lib/services/component-loader/component-loader-options.class.mjs +8 -0
  43. package/esm2020/lib/services/component-loader/component-loader.class.mjs +188 -0
  44. package/esm2020/lib/services/component-loader/component-loader.factory.mjs +32 -0
  45. package/esm2020/lib/services/component-loader/content-ref.class.mjs +13 -0
  46. package/esm2020/lib/services/modal-service/modal-backdrop-component.mjs +44 -0
  47. package/esm2020/lib/services/modal-service/modal-container-component.mjs +126 -0
  48. package/esm2020/lib/services/modal-service/modal-options.class.mjs +35 -0
  49. package/esm2020/lib/services/modal-service/modal-service.mjs +219 -0
  50. package/esm2020/lib/services/modal-service/modal-styles.class.mjs +11 -0
  51. package/esm2020/lib/services/modal-service/modal.class.mjs +27 -0
  52. package/esm2020/lib/services/toaster.service.mjs +24 -0
  53. package/esm2020/lib/tokens.mjs +5 -0
  54. package/esm2020/lib/types.mjs +117 -0
  55. package/esm2020/public-api.mjs +53 -0
  56. package/fesm2015/indice-ng-components.mjs +3268 -0
  57. package/fesm2015/indice-ng-components.mjs.map +1 -0
  58. package/fesm2020/indice-ng-components.mjs +3225 -0
  59. package/fesm2020/indice-ng-components.mjs.map +1 -0
  60. package/indice-ng-components.d.ts +5 -0
  61. package/lib/controls/avatar-initials/avatar-initials.component.d.ts +14 -0
  62. package/lib/controls/collapsible-panel/collapsible-panel.component.d.ts +10 -0
  63. package/lib/controls/date-picker/date-picker.component.d.ts +48 -0
  64. package/lib/controls/drop-down-menu/drop-down-menu.component.d.ts +25 -0
  65. package/lib/controls/kpi-tile/kpi-tile.component.d.ts +13 -0
  66. package/lib/controls/list-view/list-column.component.d.ts +9 -0
  67. package/lib/controls/list-view/list-details-section.component.d.ts +7 -0
  68. package/lib/controls/list-view/list-tile.component.d.ts +7 -0
  69. package/lib/controls/list-view/list-view-empty-state.component.d.ts +11 -0
  70. package/lib/controls/list-view/list-view.component.d.ts +55 -0
  71. package/lib/controls/nav-links-list/nav-links-list.component.d.ts +15 -0
  72. package/lib/controls/notifications-indicator/notifications-indicator.component.d.ts +23 -0
  73. package/lib/controls/pager/pager.component.d.ts +36 -0
  74. package/lib/controls/side-pane/side-pane.component.d.ts +18 -0
  75. package/lib/controls/skeleton-loader/skeleton-loader.component.d.ts +11 -0
  76. package/lib/controls/toaster/toaster-container.component.d.ts +13 -0
  77. package/lib/controls/toaster/toaster.component.d.ts +15 -0
  78. package/lib/controls/toggle/toggle.component.d.ts +19 -0
  79. package/lib/directives/click-outside.directive.d.ts +40 -0
  80. package/lib/directives/dynamic-component-host.directive.d.ts +9 -0
  81. package/lib/helpers/base-list.component.d.ts +42 -0
  82. package/lib/icons.d.ts +30 -0
  83. package/lib/layouts/shell/shell-footer/shell-footer.component.d.ts +8 -0
  84. package/lib/layouts/shell/shell-header/shell-header.component.d.ts +41 -0
  85. package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +28 -0
  86. package/lib/layouts/views/form-layout/form-layout.component.d.ts +24 -0
  87. package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +25 -0
  88. package/lib/layouts/views/side-view-layout/side-view-layout.component.d.ts +28 -0
  89. package/lib/layouts/views/view-layout/view-layout.component.d.ts +31 -0
  90. package/lib/ng-components.module.d.ts +49 -0
  91. package/lib/pages/auth/auth-callback/auth-callback.component.d.ts +13 -0
  92. package/lib/pages/auth/auth-renew/auth-renew.component.d.ts +12 -0
  93. package/lib/pages/auth/logged-out/logged-out.component.d.ts +12 -0
  94. package/lib/pages/http-status/error/error.component.d.ts +8 -0
  95. package/lib/pages/http-status/page-not-found/page-not-found.component.d.ts +8 -0
  96. package/lib/pages/http-status/unauthorized/unauthorized.component.d.ts +8 -0
  97. package/lib/pipes/address.pipe.d.ts +8 -0
  98. package/lib/pipes/duration-format.pipe.d.ts +8 -0
  99. package/lib/services/component-loader/component-loader-options.class.d.ts +30 -0
  100. package/lib/services/component-loader/component-loader.class.d.ts +92 -0
  101. package/lib/services/component-loader/component-loader.factory.d.ts +24 -0
  102. package/lib/services/component-loader/content-ref.class.d.ts +12 -0
  103. package/lib/services/modal-service/modal-backdrop-component.d.ts +20 -0
  104. package/lib/services/modal-service/modal-container-component.d.ts +33 -0
  105. package/lib/services/modal-service/modal-options.class.d.ts +81 -0
  106. package/lib/services/modal-service/modal-service.d.ts +58 -0
  107. package/lib/services/modal-service/modal-styles.class.d.ts +10 -0
  108. package/lib/services/modal-service/modal.class.d.ts +43 -0
  109. package/lib/services/toaster.service.d.ts +11 -0
  110. package/lib/tokens.d.ts +5 -0
  111. package/lib/types.d.ts +153 -0
  112. package/{src/assets/styles/modal.css → modal.css} +157 -157
  113. package/package.json +24 -20
  114. package/{src/public-api.ts → public-api.d.ts} +43 -60
  115. package/CHANGELOG.md +0 -1
  116. package/karma.conf.js +0 -44
  117. package/ng-package.json +0 -10
  118. package/scripts/css-bundle.ts +0 -33
  119. package/src/_styles.css +0 -36
  120. package/src/_tests/utilities.service.spec.ts +0 -16
  121. package/src/assets/styles/avatar-initials.css +0 -37
  122. package/src/assets/styles/base.css +0 -46
  123. package/src/assets/styles/cards.css +0 -71
  124. package/src/assets/styles/collapsible-panel.css +0 -25
  125. package/src/assets/styles/components.css +0 -34
  126. package/src/assets/styles/date-picker.component.css +0 -0
  127. package/src/assets/styles/drop-down-menu.css +0 -50
  128. package/src/assets/styles/form-layout.css +0 -49
  129. package/src/assets/styles/list-view-empty-state.css +0 -0
  130. package/src/assets/styles/list-view.css +0 -64
  131. package/src/assets/styles/model-view-layout.css +0 -45
  132. package/src/assets/styles/nav-links.css +0 -35
  133. package/src/assets/styles/notifications-indicator.component.css +0 -43
  134. package/src/assets/styles/pager.css +0 -29
  135. package/src/assets/styles/shell-layout.css +0 -232
  136. package/src/assets/styles/side-pane.css +0 -46
  137. package/src/assets/styles/side-view-layout.css +0 -58
  138. package/src/assets/styles/toast.css +0 -72
  139. package/src/assets/styles/toggle.css +0 -26
  140. package/src/assets/styles/view-layout.css +0 -58
  141. package/src/lib/controls/avatar-initials/avatar-initials.component.html +0 -3
  142. package/src/lib/controls/avatar-initials/avatar-initials.component.ts +0 -47
  143. package/src/lib/controls/collapsible-panel/collapsible-panel.component.html +0 -15
  144. package/src/lib/controls/collapsible-panel/collapsible-panel.component.ts +0 -16
  145. package/src/lib/controls/date-picker/date-picker.component.html +0 -133
  146. package/src/lib/controls/date-picker/date-picker.component.ts +0 -258
  147. package/src/lib/controls/drop-down-menu/drop-down-menu.component.html +0 -61
  148. package/src/lib/controls/drop-down-menu/drop-down-menu.component.ts +0 -59
  149. package/src/lib/controls/kpi-tile/kpi-tile.component.html +0 -18
  150. package/src/lib/controls/kpi-tile/kpi-tile.component.ts +0 -26
  151. package/src/lib/controls/list-view/list-column.component.ts +0 -10
  152. package/src/lib/controls/list-view/list-details-section.component.ts +0 -8
  153. package/src/lib/controls/list-view/list-tile.component.ts +0 -8
  154. package/src/lib/controls/list-view/list-view-empty-state.component.html +0 -20
  155. package/src/lib/controls/list-view/list-view-empty-state.component.ts +0 -19
  156. package/src/lib/controls/list-view/list-view.component.html +0 -151
  157. package/src/lib/controls/list-view/list-view.component.ts +0 -146
  158. package/src/lib/controls/nav-links-list/nav-links-list.component.html +0 -27
  159. package/src/lib/controls/nav-links-list/nav-links-list.component.ts +0 -25
  160. package/src/lib/controls/notifications-indicator/notifications-indicator.component.html +0 -78
  161. package/src/lib/controls/notifications-indicator/notifications-indicator.component.ts +0 -75
  162. package/src/lib/controls/pager/pager.component.html +0 -33
  163. package/src/lib/controls/pager/pager.component.ts +0 -106
  164. package/src/lib/controls/side-pane/side-pane.component.html +0 -10
  165. package/src/lib/controls/side-pane/side-pane.component.ts +0 -59
  166. package/src/lib/controls/skeleton-loader/skeleton-loader.component.html +0 -112
  167. package/src/lib/controls/skeleton-loader/skeleton-loader.component.ts +0 -20
  168. package/src/lib/controls/toaster/toaster-container.component.html +0 -1
  169. package/src/lib/controls/toaster/toaster-container.component.ts +0 -27
  170. package/src/lib/controls/toaster/toaster.component.html +0 -103
  171. package/src/lib/controls/toaster/toaster.component.ts +0 -26
  172. package/src/lib/controls/toggle/toggle.component.html +0 -15
  173. package/src/lib/controls/toggle/toggle.component.ts +0 -58
  174. package/src/lib/directives/click-outside.directive.ts +0 -196
  175. package/src/lib/directives/dynamic-component-host.directive.ts +0 -7
  176. package/src/lib/directives/screen-size.directive.ts +0 -67
  177. package/src/lib/helpers/base-list.component.ts +0 -204
  178. package/src/lib/icons.ts +0 -39
  179. package/src/lib/layouts/shell/shell-footer/shell-footer.component.html +0 -71
  180. package/src/lib/layouts/shell/shell-footer/shell-footer.component.ts +0 -14
  181. package/src/lib/layouts/shell/shell-header/shell-header.component.html +0 -199
  182. package/src/lib/layouts/shell/shell-header/shell-header.component.ts +0 -111
  183. package/src/lib/layouts/shell/shell-layout/shell-layout.component.html +0 -36
  184. package/src/lib/layouts/shell/shell-layout/shell-layout.component.ts +0 -91
  185. package/src/lib/layouts/views/form-layout/form-layout.component.html +0 -67
  186. package/src/lib/layouts/views/form-layout/form-layout.component.ts +0 -66
  187. package/src/lib/layouts/views/model-view-layout/model-view-layout.component.html +0 -43
  188. package/src/lib/layouts/views/model-view-layout/model-view-layout.component.ts +0 -37
  189. package/src/lib/layouts/views/side-view-layout/side-view-layout.component.html +0 -36
  190. package/src/lib/layouts/views/side-view-layout/side-view-layout.component.ts +0 -67
  191. package/src/lib/layouts/views/view-layout/view-layout.component.html +0 -68
  192. package/src/lib/layouts/views/view-layout/view-layout.component.ts +0 -82
  193. package/src/lib/ng-components.module.ts +0 -135
  194. package/src/lib/pages/auth/auth-callback/auth-callback.component.html +0 -1
  195. package/src/lib/pages/auth/auth-callback/auth-callback.component.ts +0 -22
  196. package/src/lib/pages/auth/auth-renew/auth-renew.component.ts +0 -20
  197. package/src/lib/pages/auth/logged-out/logged-out.component.html +0 -1
  198. package/src/lib/pages/auth/logged-out/logged-out.component.ts +0 -22
  199. package/src/lib/pages/http-status/error/error.component.html +0 -13
  200. package/src/lib/pages/http-status/error/error.component.ts +0 -13
  201. package/src/lib/pages/http-status/page-not-found/page-not-found.component.html +0 -14
  202. package/src/lib/pages/http-status/page-not-found/page-not-found.component.ts +0 -14
  203. package/src/lib/pages/http-status/unauthorized/unauthorized.component.html +0 -15
  204. package/src/lib/pages/http-status/unauthorized/unauthorized.component.ts +0 -11
  205. package/src/lib/pipes/address.pipe.ts +0 -17
  206. package/src/lib/pipes/duration-format.pipe.ts +0 -67
  207. package/src/lib/services/component-loader/component-loader-options.class.ts +0 -31
  208. package/src/lib/services/component-loader/component-loader.class.ts +0 -226
  209. package/src/lib/services/component-loader/component-loader.factory.ts +0 -27
  210. package/src/lib/services/component-loader/content-ref.class.ts +0 -10
  211. package/src/lib/services/interceptors/bad-request.interceptor.ts +0 -34
  212. package/src/lib/services/modal-service/modal-backdrop-component.ts +0 -40
  213. package/src/lib/services/modal-service/modal-container-component.ts +0 -125
  214. package/src/lib/services/modal-service/modal-options.class.ts +0 -92
  215. package/src/lib/services/modal-service/modal-service.ts +0 -237
  216. package/src/lib/services/modal-service/modal-styles.class.ts +0 -11
  217. package/src/lib/services/modal-service/modal.class.ts +0 -45
  218. package/src/lib/services/shell-state-service.service.ts +0 -10
  219. package/src/lib/services/toaster.service.ts +0 -23
  220. package/src/lib/services/utilities.service.ts +0 -40
  221. package/src/lib/tokens.ts +0 -6
  222. package/src/lib/types.ts +0 -210
  223. package/src/test.ts +0 -28
  224. package/tsconfig.lib.json +0 -26
  225. package/tsconfig.lib.prod.json +0 -10
  226. package/tsconfig.spec.json +0 -17
  227. package/tslint.json +0 -17
  228. package/webpack.config.js +0 -36
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@indice/ng-components" />
5
+ export * from './public-api';
@@ -0,0 +1,14 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AvatarInitialsComponent implements OnInit {
4
+ name: string | null | undefined;
5
+ large: boolean;
6
+ initials?: string;
7
+ circleColor: string;
8
+ private colors;
9
+ constructor();
10
+ ngOnInit(): void;
11
+ private createInititals;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarInitialsComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarInitialsComponent, "lib-avatar-initials", never, { "name": "name"; "large": "large"; }, {}, never, never>;
14
+ }
@@ -0,0 +1,10 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CollapsiblePanelComponent implements OnInit {
4
+ title: string | null;
5
+ visible: boolean;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CollapsiblePanelComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CollapsiblePanelComponent, "lib-collapsible-panel", never, { "title": "title"; }, {}, never, ["*"]>;
10
+ }
@@ -0,0 +1,48 @@
1
+ import { ElementRef, EventEmitter, OnInit } from '@angular/core';
2
+ import { ControlValueAccessor } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DatepickerComponent implements OnInit, ControlValueAccessor {
5
+ readonly: boolean;
6
+ disabled: boolean;
7
+ displayFormat: string | undefined;
8
+ placeholder: string | undefined;
9
+ value: Date | undefined | null;
10
+ valueChange: EventEmitter<Date>;
11
+ dateInput: ElementRef | undefined;
12
+ showCalendar: boolean;
13
+ showYears: boolean;
14
+ monthNames: string[];
15
+ dayNames: string[];
16
+ month: number;
17
+ year: number;
18
+ calendarDates: any[];
19
+ calendarYears: any[];
20
+ showCalendarYears: any[];
21
+ blankDays: any[];
22
+ calendarYearPage: number;
23
+ private yearsPerPage;
24
+ private onChange$;
25
+ private onTouched$;
26
+ ngOnInit(): void;
27
+ constructor();
28
+ writeValue(obj: any): void;
29
+ registerOnChange(fn: (_: any) => void): void;
30
+ registerOnTouched(fn: any): void;
31
+ onBlur(event: any): void;
32
+ selectDateValue(date: any): void;
33
+ selectYearValue(year: any): void;
34
+ previousMonth(): void;
35
+ nextMonth(): void;
36
+ previousYear(): void;
37
+ nextYear(): void;
38
+ private compareDates;
39
+ private calcDays;
40
+ private updateDays;
41
+ private paginate;
42
+ private getDateFromInput;
43
+ openYears(): void;
44
+ openCalendar(): void;
45
+ closeCalendar(): void;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "lib-date-picker", never, { "readonly": "readonly"; "disabled": "disabled"; "displayFormat": "display-format"; "placeholder": "placeholder"; "value": "value"; }, { "valueChange": "valueChange"; }, never, never>;
48
+ }
@@ -0,0 +1,25 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { MenuOption } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DropDownMenuComponent implements OnInit, OnChanges {
5
+ options: MenuOption[];
6
+ selectedValue: any | null;
7
+ multiple: boolean;
8
+ placeholder: string;
9
+ private selectedOption$;
10
+ get selectedOption(): MenuOption | null;
11
+ set selectedOption(option: MenuOption | null);
12
+ selectedChange: EventEmitter<any>;
13
+ selectedChanged: EventEmitter<any>;
14
+ private expanded$;
15
+ get expanded(): boolean;
16
+ set expanded(value: boolean);
17
+ constructor();
18
+ ngOnChanges(changes: SimpleChanges): void;
19
+ ngOnInit(): void;
20
+ isSelected(option: MenuOption): boolean;
21
+ onClickOutside($event: any): void;
22
+ selectOption(option: MenuOption): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropDownMenuComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropDownMenuComponent, "lib-drop-down-menu", never, { "options": "options"; "selectedValue": "selected"; "multiple": "multiple"; "placeholder": "placeholder"; }, { "selectedChange": "selectedChange"; "selectedChanged": "selectedChanged"; }, never, never>;
25
+ }
@@ -0,0 +1,13 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class KpiTileComponent implements OnInit {
4
+ title: string | undefined;
5
+ busy: boolean;
6
+ kpi: any | undefined;
7
+ tileAction: EventEmitter<any>;
8
+ constructor();
9
+ ngOnInit(): void;
10
+ emitTileAction($event: any): boolean;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<KpiTileComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<KpiTileComponent, "lib-kpi-tile", never, { "title": "title"; "busy": "busy"; "kpi": "kpi"; }, { "tileAction": "tile-action"; }, never, never>;
13
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ListColumnComponent {
3
+ title: string | null;
4
+ fullWidth: boolean;
5
+ template: any | null;
6
+ constructor();
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListColumnComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListColumnComponent, "lib-list-column", never, { "title": "title"; "fullWidth": "full-width"; }, {}, ["template"], ["*"]>;
9
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ListDetailsSectionComponent {
3
+ template: any | null;
4
+ constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListDetailsSectionComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListDetailsSectionComponent, "lib-list-details-section", never, {}, {}, ["template"], ["*"]>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ListTileComponent {
3
+ template: any | null;
4
+ constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListTileComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListTileComponent, "lib-list-tile", never, {}, {}, ["template"], ["*"]>;
7
+ }
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ListViewEmptyStateComponent implements OnInit {
4
+ title: string;
5
+ subTitle: string;
6
+ newItemLabel: string;
7
+ constructor();
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListViewEmptyStateComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListViewEmptyStateComponent, "lib-list-view-empty-state", never, { "title": "title"; "subTitle": "sub-title"; "newItemLabel": "new-item-label"; }, {}, never, never>;
11
+ }
@@ -0,0 +1,55 @@
1
+ import { EventEmitter, QueryList, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { MenuOption } from '../../types';
3
+ import { ListTileComponent } from './list-tile.component';
4
+ import { ListColumnComponent } from './list-column.component';
5
+ import { ListDetailsSectionComponent } from './list-details-section.component';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ListViewComponent implements OnChanges {
8
+ busy: boolean;
9
+ expandIcon: string;
10
+ collapseIcon: string;
11
+ items: any[] | null | undefined;
12
+ showPager: boolean;
13
+ count: number | null;
14
+ page: number;
15
+ pageSize: number;
16
+ pageSizeOptions: MenuOption[];
17
+ pageChanged: EventEmitter<number>;
18
+ pageSizeChanged: EventEmitter<number>;
19
+ detailsOpened: EventEmitter<{
20
+ item: any;
21
+ open: boolean;
22
+ }>;
23
+ tableViewSupported: boolean;
24
+ private multipleFullWidth;
25
+ fullWidthTHClass: string;
26
+ fullWidthTDClass: string;
27
+ tilesViewSupported: boolean;
28
+ detailsSectionSupported: boolean;
29
+ loaderItems: any[];
30
+ detailsSectionPropertyCount: string | null;
31
+ sortOptions: MenuOption[];
32
+ sort: string | null;
33
+ sortdir: string | null;
34
+ sortChanged: EventEmitter<string>;
35
+ sortdirChanged: EventEmitter<string>;
36
+ view: string;
37
+ columns: any[];
38
+ set cols(refs: QueryList<ListColumnComponent>);
39
+ tilesDeckClass: string;
40
+ tilesCount: number;
41
+ tileTemplate: any | null | undefined;
42
+ set tiles(ref: ListTileComponent);
43
+ detailsTemplate: any | null | undefined;
44
+ set details(ref: ListDetailsSectionComponent);
45
+ constructor();
46
+ ngOnChanges(changes: SimpleChanges): void;
47
+ emitPageChanged($event: number): void;
48
+ emitPageSizeChanged($event: number): void;
49
+ emitSortChanged($event: string): void;
50
+ emitSortdirChanged($event: string): void;
51
+ toggleDetails(item: any): void;
52
+ private setTilesDeckClass;
53
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "lib-list-view", never, { "busy": "busy"; "items": "items"; "showPager": "show-pager"; "count": "count"; "page": "page"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "detailsSectionPropertyCount": "details-section-property-count"; "sortOptions": "sort-options"; "sort": "sort"; "sortdir": "sort-dir"; "view": "view"; "tilesCount": "tiles-count"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "detailsOpened": "detailsOpened"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, ["tiles", "details", "cols"], ["*"]>;
55
+ }
@@ -0,0 +1,15 @@
1
+ import { Observable } from 'rxjs';
2
+ import { OnInit } from '@angular/core';
3
+ import { NavLink } from '../../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class NavLinksListComponent implements OnInit {
6
+ links: Observable<NavLink[]> | undefined;
7
+ activeFragment: Observable<string> | undefined;
8
+ navLinkClass: string | string;
9
+ navLinkActiveClass: string | string[];
10
+ containerClass: string | string[];
11
+ constructor();
12
+ ngOnInit(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<NavLinksListComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<NavLinksListComponent, "lib-nav-links-list", never, { "links": "links"; "activeFragment": "active-fragment"; "navLinkClass": "link-class"; "navLinkActiveClass": "link-active-class"; "containerClass": "container-class"; }, {}, never, never>;
15
+ }
@@ -0,0 +1,23 @@
1
+ import { IAppNotifications, NavLink } from './../../types';
2
+ import { OnInit, OnDestroy } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class NotificationsIndicatorComponent implements OnInit, OnDestroy {
5
+ notifications: IAppNotifications;
6
+ links: any;
7
+ menuExpanded: boolean;
8
+ unreadCount: number;
9
+ items: any[];
10
+ allNotificationsLink?: NavLink;
11
+ private notificationsSub$;
12
+ private inboxAction;
13
+ newArrival: boolean;
14
+ constructor(notifications: IAppNotifications, links: any);
15
+ ngOnDestroy(): void;
16
+ ngOnInit(): void;
17
+ toggleMenu(): void;
18
+ doInboxAction(): void;
19
+ removeItem(index: number): void;
20
+ onClickOutside($event: any): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationsIndicatorComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationsIndicatorComponent, "lib-notifications-indicator", never, {}, {}, never, never>;
23
+ }
@@ -0,0 +1,36 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { MenuOption } from '../../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class PagerComponent implements OnInit, OnChanges {
6
+ private router;
7
+ busy: boolean;
8
+ count: number | null;
9
+ page: number;
10
+ pageSize: number;
11
+ pageSizeOptions: MenuOption[];
12
+ pages: MenuOption[];
13
+ pageChanged: EventEmitter<number>;
14
+ pageSizeChanged: EventEmitter<number>;
15
+ canPreviousPage: boolean;
16
+ canNextPage: boolean;
17
+ sortOptions: MenuOption[];
18
+ sort: string | null;
19
+ sortdir: string | null;
20
+ sortChanged: EventEmitter<string>;
21
+ sortdirChanged: EventEmitter<string>;
22
+ sortdirIcon: string;
23
+ constructor(router: Router);
24
+ ngOnChanges(changes: SimpleChanges): void;
25
+ ngOnInit(): void;
26
+ private calcPages;
27
+ nextPage(): void;
28
+ previousPage(): void;
29
+ gotoPage(page: number): void;
30
+ pageSizeOptionChanged(pageSize: number): void;
31
+ pageOptionChanged(page: number): void;
32
+ sortOptionChanged(sort: string): void;
33
+ toggleSortdir(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<PagerComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<PagerComponent, "lib-pager", never, { "busy": "busy"; "count": "count"; "page": "page"; "pageSize": "page-size"; "pageSizeOptions": "page-size-options"; "sortOptions": "sort-options"; "sort": "sort"; "sortdir": "sort-dir"; }, { "pageChanged": "pageChanged"; "pageSizeChanged": "pageSizeChanged"; "sortChanged": "sortChanged"; "sortdirChanged": "sortdirChanged"; }, never, never>;
36
+ }
@@ -0,0 +1,18 @@
1
+ import { Router } from '@angular/router';
2
+ import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SidePaneComponent implements OnInit, OnDestroy {
5
+ private router;
6
+ private document;
7
+ showPane: boolean;
8
+ sizeContainerStyle: string;
9
+ overlayStyle: string;
10
+ onComplete: EventEmitter<boolean>;
11
+ constructor(router: Router, document: any);
12
+ ngOnDestroy(): void;
13
+ ngOnInit(): void;
14
+ onSidePaneActivated(component: any): void;
15
+ onSidePaneDeactivated($event: any): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidePaneComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidePaneComponent, "lib-side-pane", never, { "showPane": "visible"; }, { "onComplete": "onComplete"; }, never, ["*"]>;
18
+ }
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class SkeletonLoaderComponent implements OnInit {
4
+ count: number;
5
+ type: string;
6
+ constructor();
7
+ ngOnInit(): void;
8
+ counter(i: number): number[];
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonLoaderComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonLoaderComponent, "lib-skeleton-loader", never, { "count": "count"; "type": "type"; }, {}, never, never>;
11
+ }
@@ -0,0 +1,13 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ToasterService } from '../../services/toaster.service';
3
+ import { Toast } from '../../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ToasterContainerComponent implements OnInit {
6
+ private toaster;
7
+ toasts: Toast[];
8
+ constructor(toaster: ToasterService);
9
+ ngOnInit(): void;
10
+ remove(index: number): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToasterContainerComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToasterContainerComponent, "lib-toaster-container", never, {}, {}, never, never>;
13
+ }
@@ -0,0 +1,15 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { Toast } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ToasterComponent implements OnInit {
5
+ toast: Toast | undefined;
6
+ i: number;
7
+ remove: EventEmitter<number>;
8
+ isMobile: boolean;
9
+ closed: boolean;
10
+ constructor();
11
+ ngOnInit(): void;
12
+ closeToast(index: number): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToasterComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToasterComponent, "lib-toaster", never, { "toast": "toast"; "i": "i"; }, { "remove": "remove"; }, never, never>;
15
+ }
@@ -0,0 +1,19 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ControlValueAccessor } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ToggleComponent implements OnInit, ControlValueAccessor {
5
+ value: boolean | null | undefined;
6
+ disabled: boolean | null | undefined;
7
+ valueChange: EventEmitter<Boolean>;
8
+ private onChange$;
9
+ private onTouched$;
10
+ constructor();
11
+ writeValue(obj: any): void;
12
+ registerOnChange(fn: any): void;
13
+ registerOnTouched(fn: any): void;
14
+ onBlur(event: any): void;
15
+ ngOnInit(): void;
16
+ changeValue(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleComponent, "lib-toggle", never, { "value": "value"; "disabled": "disabled"; }, { "valueChange": "valueChange"; }, never, never>;
19
+ }
@@ -0,0 +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>;
40
+ }
@@ -0,0 +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>;
9
+ }
@@ -0,0 +1,42 @@
1
+ import { Observable } from 'rxjs';
2
+ import { OnInit, OnDestroy } from '@angular/core';
3
+ import { ActivatedRoute, Router } from '@angular/router';
4
+ import { HeaderMetaItem, IResultSet, MenuOption, ViewAction } from '../types';
5
+ import * as i0 from "@angular/core";
6
+ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy {
7
+ private route$;
8
+ private router$;
9
+ items: T[] | null | undefined;
10
+ view: string;
11
+ title: string | null;
12
+ actions: ViewAction[];
13
+ loaderItems: any[];
14
+ page: number;
15
+ pageSize: number;
16
+ count: number;
17
+ sort: string | null;
18
+ sortdir: string | null;
19
+ search: string | null;
20
+ sortOptions: MenuOption[];
21
+ metaItems: HeaderMetaItem[];
22
+ abstract newItemLink: string | null;
23
+ private routeSub$;
24
+ constructor(route$: ActivatedRoute, router$: Router);
25
+ ngOnDestroy(): void;
26
+ getViewActions(): Observable<ViewAction[]>;
27
+ ngOnInit(): void;
28
+ private setRouteParams;
29
+ actionHandler($event: ViewAction): void;
30
+ private load;
31
+ private updateHeaderMeta;
32
+ abstract loadItems(): Observable<IResultSet<T> | null | undefined>;
33
+ clear(): void;
34
+ refresh(): void;
35
+ pageChanged(page: number): void;
36
+ pageSizeChanged(pageSize: number): void;
37
+ sortChanged(sort: string): void;
38
+ sortdirChanged(sortdir: string): void;
39
+ searchChanged(searchText: string | null): void;
40
+ static ɵfac: i0.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
41
+ static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, {}, {}, never, never>;
42
+ }
package/lib/icons.d.ts ADDED
@@ -0,0 +1,30 @@
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
+ }
@@ -0,0 +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>;
8
+ }
@@ -0,0 +1,41 @@
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
+ langs: string[] | undefined;
20
+ currentLang: string | undefined;
21
+ border: boolean;
22
+ sectionLinks: Observable<NavLink[]>;
23
+ mobileMenuExpanded: boolean;
24
+ userMenuExpanded: boolean;
25
+ protected routeSubject: Observable<Event>;
26
+ protected routerSub$: Subscription | null;
27
+ protected userSub$: Subscription | null;
28
+ protected statusSub$: Subscription | null;
29
+ user: User | null;
30
+ avatarName: string | null;
31
+ activeFragment: any | null;
32
+ constructor(authService: AuthService, router: Router, route: ActivatedRoute, config: any, links: any);
33
+ ngOnInit(): void;
34
+ ngOnDestroy(): void;
35
+ onClickOutside($event: any): void;
36
+ signin(event: any | null | undefined): void;
37
+ private setCurrentUser;
38
+ setCurrentLang(lang: any): void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": "section-links"; "profileMenuVisible": "profile-menu"; "showUserNameOnHeader": "show-userName"; "showAlerts": "show-alerts"; "langs": "langs"; "currentLang": "current-lang"; "border": "border"; }, {}, never, never>;
41
+ }
@@ -0,0 +1,28 @@
1
+ import { IShellConfig } from './../../../types';
2
+ import { AfterViewInit, OnInit, OnDestroy, QueryList, AfterViewChecked } from '@angular/core';
3
+ import { Location } from '@angular/common';
4
+ import { Router } from '@angular/router';
5
+ import { DynamicComponentHostDirective } from '../../../directives/dynamic-component-host.directive';
6
+ import { ComponentLoaderFactory } from '../../../services/component-loader/component-loader.factory';
7
+ import * as i0 from "@angular/core";
8
+ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterViewInit, AfterViewChecked {
9
+ private document;
10
+ private router;
11
+ private location;
12
+ private config;
13
+ private componentLoaderFactory;
14
+ dynamicComponentHosts: QueryList<DynamicComponentHostDirective> | null;
15
+ showRightPaneSM: boolean;
16
+ private routerSub$;
17
+ activeConfig: IShellConfig;
18
+ loaded: boolean;
19
+ constructor(document: any, router: Router, location: Location, config: IShellConfig | null, componentLoaderFactory: ComponentLoaderFactory);
20
+ ngAfterViewChecked(): void;
21
+ ngOnInit(): void;
22
+ ngAfterViewInit(): void;
23
+ private initCustomComponents;
24
+ ngOnDestroy(): void;
25
+ private loadCustomComponent;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, {}, {}, never, never>;
28
+ }
@@ -0,0 +1,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
+ 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, ["*"]>;
24
+ }
@@ -0,0 +1,25 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { Location } from '@angular/common';
3
+ import { HeaderMetaItem } from '../../../types';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ModelViewLayoutComponent implements OnInit {
6
+ private location;
7
+ showRightPaneSM: boolean;
8
+ title: string;
9
+ primary: {
10
+ text: string;
11
+ link: string;
12
+ }[] | null;
13
+ secondary: {
14
+ text: string;
15
+ link: string;
16
+ }[] | null;
17
+ metaItems: HeaderMetaItem[] | null;
18
+ constructor(location: Location);
19
+ ngOnInit(): void;
20
+ onSidePaneActivated($event: any): void;
21
+ onSidePaneDeactivated($event: any): void;
22
+ closeSidePane(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModelViewLayoutComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModelViewLayoutComponent, "lib-model-view-layout", never, { "title": "title"; "primary": "primary-links"; "secondary": "secondary-links"; "metaItems": "meta-items"; }, {}, never, ["*"]>;
25
+ }