@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,34 +1,34 @@
1
- import { TemplateRef } from '@angular/core';
2
- import { AbstractControl } from '@angular/forms';
3
- import { LibStepInfoDirective } from './lib-step-info.directive';
4
- import { LibStepLabelDirective } from './lib-step-label.directive';
5
- import * as i0 from "@angular/core";
6
- export declare enum StepState {
7
- Active = "Active",
8
- Completed = "Completed",
9
- Upcoming = "Upcoming"
10
- }
11
- export declare class LibStepComponent {
12
- readonly _stepper?: any;
13
- constructor(_stepper?: any);
14
- /** The content provided for the step. */
15
- content: TemplateRef<any>;
16
- /** The label of the step displayed in header, if applicable. */
17
- stepLabel: LibStepLabelDirective | undefined;
18
- /** The info of the step displayed in header, if applicable. */
19
- stepInfo: LibStepInfoDirective | undefined;
20
- /** An optional CSS class for the step header. */
21
- class: string | undefined;
22
- /** The abstract control of the step. */
23
- stepControl: AbstractControl | undefined;
24
- /** Indicates the index of the step. */
25
- get index(): number;
26
- /** Indicates whether this step is the last step. */
27
- get isLast(): boolean;
28
- /** Indicates whether you can navigate to the step or not. */
29
- get isValid(): boolean;
30
- /** Shows the current state of the step. */
31
- get state(): StepState;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<LibStepComponent, [{ optional: true; }]>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<LibStepComponent, "lib-step", never, { "class": "class"; "stepControl": "stepControl"; }, {}, ["stepLabel", "stepInfo"], ["*"], false>;
34
- }
1
+ import { TemplateRef } from '@angular/core';
2
+ import { AbstractControl } from '@angular/forms';
3
+ import { LibStepInfoDirective } from './lib-step-info.directive';
4
+ import { LibStepLabelDirective } from './lib-step-label.directive';
5
+ import * as i0 from "@angular/core";
6
+ export declare enum StepState {
7
+ Active = "Active",
8
+ Completed = "Completed",
9
+ Upcoming = "Upcoming"
10
+ }
11
+ export declare class LibStepComponent {
12
+ readonly _stepper?: any;
13
+ constructor(_stepper?: any);
14
+ /** The content provided for the step. */
15
+ content: TemplateRef<any>;
16
+ /** The label of the step displayed in header, if applicable. */
17
+ stepLabel: LibStepLabelDirective | undefined;
18
+ /** The info of the step displayed in header, if applicable. */
19
+ stepInfo: LibStepInfoDirective | undefined;
20
+ /** An optional CSS class for the step header. */
21
+ class: string | undefined;
22
+ /** The abstract control of the step. */
23
+ stepControl: AbstractControl | undefined;
24
+ /** Indicates the index of the step. */
25
+ get index(): number;
26
+ /** Indicates whether this step is the last step. */
27
+ get isLast(): boolean;
28
+ /** Indicates whether you can navigate to the step or not. */
29
+ get isValid(): boolean;
30
+ /** Shows the current state of the step. */
31
+ get state(): StepState;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibStepComponent, [{ optional: true; }]>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibStepComponent, "lib-step", never, { "class": { "alias": "class"; "required": false; }; "stepControl": { "alias": "stepControl"; "required": false; }; }, {}, ["stepLabel", "stepInfo"], ["*"], false, never>;
34
+ }
@@ -1,43 +1,43 @@
1
- import { AfterViewChecked, ChangeDetectorRef, EventEmitter, OnInit, QueryList } from '@angular/core';
2
- import { LibStepComponent, StepState } from './lib-step.component';
3
- import { StepperType } from './types/stepper-type';
4
- import { StepSelectedEvent } from './types/step-selected-event';
5
- import * as i0 from "@angular/core";
6
- export declare class LibStepperComponent implements OnInit, AfterViewChecked {
7
- private _changeDetectorRef;
8
- private _currentStepIndex;
9
- private _isCompleted;
10
- constructor(_changeDetectorRef: ChangeDetectorRef);
11
- /** The inner steps of the wizard. */
12
- steps: QueryList<LibStepComponent>;
13
- /** Emmited when a step change occurs. */
14
- readonly stepChanged: EventEmitter<StepSelectedEvent>;
15
- /** Emmited when the stepper navigates away from the final step. Only emits once. */
16
- readonly completed: EventEmitter<void>;
17
- /** Indicates whether each step has to be validated before proceeding to the next. */
18
- linear: boolean;
19
- /** The type of the stepper. */
20
- type: StepperType;
21
- StepState: typeof StepState;
22
- StepperType: typeof StepperType;
23
- /** The current wizard step. */
24
- get currentStep(): LibStepComponent | undefined;
25
- /** The index (starting from zero) of the current wizard step. */
26
- get currentStepIndex(): number;
27
- /** Indicates whether stepper can go a step back. */
28
- get canGoBack(): boolean;
29
- /** Indicates whether stepper can go a step forward. */
30
- get canGoForward(): boolean;
31
- /** Indicates whether */
32
- get isCompleted(): boolean;
33
- ngOnInit(): void;
34
- ngAfterViewChecked(): void;
35
- /** Proceeds to the next step, if any. */
36
- goToNextStep(): void;
37
- /** Proceeds to the previous step, if any. */
38
- goToPreviousStep(): void;
39
- onSelectStep(selectedStep: LibStepComponent): void;
40
- private updateCurrentStepIndex;
41
- static ɵfac: i0.ɵɵFactoryDeclaration<LibStepperComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<LibStepperComponent, "lib-stepper", never, { "linear": "linear"; "type": "type"; }, { "stepChanged": "stepChanged"; "completed": "completed"; }, ["steps"], never, false>;
43
- }
1
+ import { AfterViewChecked, ChangeDetectorRef, EventEmitter, OnInit, QueryList } from '@angular/core';
2
+ import { LibStepComponent, StepState } from './lib-step.component';
3
+ import { StepperType } from './types/stepper-type';
4
+ import { StepSelectedEvent } from './types/step-selected-event';
5
+ import * as i0 from "@angular/core";
6
+ export declare class LibStepperComponent implements OnInit, AfterViewChecked {
7
+ private _changeDetectorRef;
8
+ private _currentStepIndex;
9
+ private _isCompleted;
10
+ constructor(_changeDetectorRef: ChangeDetectorRef);
11
+ /** The inner steps of the wizard. */
12
+ steps: QueryList<LibStepComponent>;
13
+ /** Emmited when a step change occurs. */
14
+ readonly stepChanged: EventEmitter<StepSelectedEvent>;
15
+ /** Emmited when the stepper navigates away from the final step. Only emits once. */
16
+ readonly completed: EventEmitter<void>;
17
+ /** Indicates whether each step has to be validated before proceeding to the next. */
18
+ linear: boolean;
19
+ /** The type of the stepper. */
20
+ type: StepperType;
21
+ StepState: typeof StepState;
22
+ StepperType: typeof StepperType;
23
+ /** The current wizard step. */
24
+ get currentStep(): LibStepComponent | undefined;
25
+ /** The index (starting from zero) of the current wizard step. */
26
+ get currentStepIndex(): number;
27
+ /** Indicates whether stepper can go a step back. */
28
+ get canGoBack(): boolean;
29
+ /** Indicates whether stepper can go a step forward. */
30
+ get canGoForward(): boolean;
31
+ /** Indicates whether */
32
+ get isCompleted(): boolean;
33
+ ngOnInit(): void;
34
+ ngAfterViewChecked(): void;
35
+ /** Proceeds to the next step, if any. */
36
+ goToNextStep(): void;
37
+ /** Proceeds to the previous step, if any. */
38
+ goToPreviousStep(): void;
39
+ onSelectStep(selectedStep: LibStepComponent): void;
40
+ private updateCurrentStepIndex;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibStepperComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibStepperComponent, "lib-stepper", never, { "linear": { "alias": "linear"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "stepChanged": "stepChanged"; "completed": "completed"; }, ["steps"], never, false, never>;
43
+ }
@@ -1,12 +1,12 @@
1
- import { LibStepComponent } from '../lib-step.component';
2
- /** Change event emitted on step changes. */
3
- export declare class StepSelectedEvent {
4
- /** Index of the step now selected. */
5
- selectedIndex: number;
6
- /** Index of the step previously selected. */
7
- previouslySelectedIndex: number | undefined;
8
- /** The step instance now selected. */
9
- selectedStep: LibStepComponent;
10
- /** The step instance previously selected. */
11
- previouslySelectedStep: LibStepComponent | undefined;
12
- }
1
+ import { LibStepComponent } from '../lib-step.component';
2
+ /** Change event emitted on step changes. */
3
+ export declare class StepSelectedEvent {
4
+ /** Index of the step now selected. */
5
+ selectedIndex: number;
6
+ /** Index of the step previously selected. */
7
+ previouslySelectedIndex: number | undefined;
8
+ /** The step instance now selected. */
9
+ selectedStep: LibStepComponent;
10
+ /** The step instance previously selected. */
11
+ previouslySelectedStep: LibStepComponent | undefined;
12
+ }
@@ -1,10 +1,10 @@
1
- export declare enum StepperType {
2
- Bullets = "Bullets",
3
- BulletsAndText = "BulletsAndText",
4
- Circles = "Circles",
5
- CirclesWithText = "CirclesWithText",
6
- Panels = "Panels",
7
- PanelsWithBorder = "PanelsWithBorder",
8
- Progress = "Progress",
9
- Simple = "Simple"
10
- }
1
+ export declare enum StepperType {
2
+ Bullets = "Bullets",
3
+ BulletsAndText = "BulletsAndText",
4
+ Circles = "Circles",
5
+ CirclesWithText = "CirclesWithText",
6
+ Panels = "Panels",
7
+ PanelsWithBorder = "PanelsWithBorder",
8
+ Progress = "Progress",
9
+ Simple = "Simple"
10
+ }
@@ -1,21 +1,21 @@
1
- import { AfterContentChecked, AfterContentInit, EventEmitter, OnInit, QueryList } from '@angular/core';
2
- import { LibTabComponent } from './lib-tab.component';
3
- import * as i0 from "@angular/core";
4
- export declare class LibTabGroupComponent implements OnInit, AfterContentInit, AfterContentChecked {
5
- constructor();
6
- /** The inner tabs of the group. */
7
- tabs: QueryList<LibTabComponent> | undefined;
8
- /** Emmited when a step change occurs. */
9
- protected tabChanged: EventEmitter<LibTabComponent>;
10
- /** The current tab. */
11
- get currentTab(): LibTabComponent | undefined;
12
- /** The index (starting from zero) of the current tab. */
13
- get currentΤabIndex(): number | undefined;
14
- ngOnInit(): void;
15
- protected onTabChanged(selectedTab: LibTabComponent): void;
16
- protected onTabSelectChanged(selectedTabIndex: number): void;
17
- ngAfterContentInit(): void;
18
- ngAfterContentChecked(): void;
19
- static ɵfac: i0.ɵɵFactoryDeclaration<LibTabGroupComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<LibTabGroupComponent, "lib-tab-group", never, {}, { "tabChanged": "tabChanged"; }, ["tabs"], never, false>;
21
- }
1
+ import { AfterContentChecked, AfterContentInit, EventEmitter, OnInit, QueryList } from '@angular/core';
2
+ import { LibTabComponent } from './lib-tab.component';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LibTabGroupComponent implements OnInit, AfterContentInit, AfterContentChecked {
5
+ constructor();
6
+ /** The inner tabs of the group. */
7
+ tabs: QueryList<LibTabComponent> | undefined;
8
+ /** Emmited when a step change occurs. */
9
+ protected tabChanged: EventEmitter<LibTabComponent>;
10
+ /** The current tab. */
11
+ get currentTab(): LibTabComponent | undefined;
12
+ /** The index (starting from zero) of the current tab. */
13
+ get currentΤabIndex(): number | undefined;
14
+ ngOnInit(): void;
15
+ protected onTabChanged(selectedTab: LibTabComponent): void;
16
+ protected onTabSelectChanged(selectedTabIndex: number): void;
17
+ ngAfterContentInit(): void;
18
+ ngAfterContentChecked(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibTabGroupComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibTabGroupComponent, "lib-tab-group", never, {}, { "tabChanged": "tabChanged"; }, ["tabs"], never, false, never>;
21
+ }
@@ -1,8 +1,8 @@
1
- import { TemplateRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class LibTabLabelDirective {
4
- template: TemplateRef<any>;
5
- constructor(template: TemplateRef<any>);
6
- static ɵfac: i0.ɵɵFactoryDeclaration<LibTabLabelDirective, never>;
7
- static ɵdir: i0.ɵɵDirectiveDeclaration<LibTabLabelDirective, "[libTabLabel]", never, {}, {}, never, never, false>;
8
- }
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LibTabLabelDirective {
4
+ template: TemplateRef<any>;
5
+ constructor(template: TemplateRef<any>);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibTabLabelDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<LibTabLabelDirective, "[libTabLabel]", never, {}, {}, never, never, false, never>;
8
+ }
@@ -1,24 +1,24 @@
1
- import { OnInit, TemplateRef } from '@angular/core';
2
- import { LibTabLabelDirective } from './lib-tab-label.directive';
3
- import * as i0 from "@angular/core";
4
- export declare class LibTabComponent implements OnInit {
5
- readonly _tabGroup?: any;
6
- private _isActive;
7
- constructor(_tabGroup?: any);
8
- /** The content provided for the tab. */
9
- content: TemplateRef<any> | null;
10
- /** A label template for the tab header. */
11
- label: LibTabLabelDirective | undefined;
12
- /** Indicates the unique id assigned in the tab. */
13
- id: string | undefined;
14
- labelText: string | undefined;
15
- /** Indicates the index of the tab. */
16
- get index(): number;
17
- /** Indicates whether the tab is active. */
18
- get isActive(): boolean;
19
- /** Setter for LibTabComponent isActive property. */
20
- set isActive(isActive: boolean);
21
- ngOnInit(): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<LibTabComponent, [{ optional: true; }]>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<LibTabComponent, "lib-tab", never, { "id": "id"; "labelText": "labelText"; }, {}, ["label"], ["*"], false>;
24
- }
1
+ import { OnInit, TemplateRef } from '@angular/core';
2
+ import { LibTabLabelDirective } from './lib-tab-label.directive';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LibTabComponent implements OnInit {
5
+ readonly _tabGroup?: any;
6
+ private _isActive;
7
+ constructor(_tabGroup?: any);
8
+ /** The content provided for the tab. */
9
+ content: TemplateRef<any> | null;
10
+ /** A label template for the tab header. */
11
+ label: LibTabLabelDirective | undefined;
12
+ /** Indicates the unique id assigned in the tab. */
13
+ id: string | undefined;
14
+ labelText: string | undefined;
15
+ /** Indicates the index of the tab. */
16
+ get index(): number;
17
+ /** Indicates whether the tab is active. */
18
+ get isActive(): boolean;
19
+ /** Setter for LibTabComponent isActive property. */
20
+ set isActive(isActive: boolean);
21
+ ngOnInit(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibTabComponent, [{ optional: true; }]>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibTabComponent, "lib-tab", never, { "id": { "alias": "id"; "required": false; }; "labelText": { "alias": "labelText"; "required": false; }; }, {}, ["label"], ["*"], false, never>;
24
+ }
@@ -1,13 +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, false>;
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, false, never>;
13
+ }
@@ -1,15 +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, false>;
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": { "alias": "toast"; "required": false; }; "i": { "alias": "i"; "required": false; }; }, { "remove": "remove"; }, never, never, false, never>;
15
+ }
@@ -1,19 +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, false>;
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": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
19
+ }
@@ -1,25 +1,25 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class ToggleButtonComponent implements OnInit {
4
- value: boolean;
5
- disabled: boolean;
6
- icon: boolean;
7
- text: string | null | undefined;
8
- textTrue: string | null | undefined;
9
- textFalse: string | null | undefined;
10
- description: string | null | undefined;
11
- descriptionTrue: string | null | undefined;
12
- descriptionFalse: string | null | undefined;
13
- valueChange: EventEmitter<boolean>;
14
- private onChange$;
15
- private onTouched$;
16
- constructor();
17
- ngOnInit(): void;
18
- writeValue(obj: any): void;
19
- registerOnChange(fn: any): void;
20
- registerOnTouched(fn: any): void;
21
- onBlur(event: any): void;
22
- changeValue(): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent, "lib-toggle-button", never, { "value": "value"; "disabled": "disabled"; "icon": "icon"; "text": "text"; "textTrue": "text-true"; "textFalse": "text-false"; "description": "description"; "descriptionTrue": "description-true"; "descriptionFalse": "description-false"; }, { "valueChange": "valueChange"; }, never, never, false>;
25
- }
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ToggleButtonComponent implements OnInit {
4
+ value: boolean;
5
+ disabled: boolean;
6
+ icon: boolean;
7
+ text: string | null | undefined;
8
+ textTrue: string | null | undefined;
9
+ textFalse: string | null | undefined;
10
+ description: string | null | undefined;
11
+ descriptionTrue: string | null | undefined;
12
+ descriptionFalse: string | null | undefined;
13
+ valueChange: EventEmitter<boolean>;
14
+ private onChange$;
15
+ private onTouched$;
16
+ constructor();
17
+ ngOnInit(): void;
18
+ writeValue(obj: any): void;
19
+ registerOnChange(fn: any): void;
20
+ registerOnTouched(fn: any): void;
21
+ onBlur(event: any): void;
22
+ changeValue(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonComponent, "lib-toggle-button", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "text": { "alias": "text"; "required": false; }; "textTrue": { "alias": "text-true"; "required": false; }; "textFalse": { "alias": "text-false"; "required": false; }; "description": { "alias": "description"; "required": false; }; "descriptionTrue": { "alias": "description-true"; "required": false; }; "descriptionFalse": { "alias": "description-false"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
25
+ }
@@ -1,14 +1,15 @@
1
- import { OnInit, EventEmitter } from '@angular/core';
2
- import { MenuOption } from '../../types';
3
- import * as i0 from "@angular/core";
4
- export declare class ToggleButtonsListComponent implements OnInit {
5
- icon: string | undefined;
6
- options: MenuOption[] | undefined;
7
- value: any | undefined;
8
- valueChange: EventEmitter<any>;
9
- constructor();
10
- ngOnInit(): void;
11
- selectOption(optionValue: any): void;
12
- static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonsListComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonsListComponent, "lib-toggle-buttons-list", never, { "icon": "icon"; "options": "options"; "value": "value"; }, { "valueChange": "valueChange"; }, never, never, false>;
14
- }
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
+ import { MenuOption } from '../../types';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ToggleButtonsListComponent implements OnInit {
5
+ icon: string | undefined;
6
+ options: MenuOption[] | undefined;
7
+ value: any | undefined;
8
+ compact: boolean;
9
+ valueChange: EventEmitter<any>;
10
+ constructor();
11
+ ngOnInit(): void;
12
+ selectOption(optionValue: any): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToggleButtonsListComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToggleButtonsListComponent, "lib-toggle-buttons-list", never, { "icon": { "alias": "icon"; "required": false; }; "options": { "alias": "options"; "required": false; }; "value": { "alias": "value"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
15
+ }
@@ -1,24 +1,24 @@
1
- import { OnInit } from '@angular/core';
2
- import { Router } from '@angular/router';
3
- import { AuthService } from '@indice/ng-auth';
4
- import { User } from 'oidc-client';
5
- import { Subscription } from 'rxjs';
6
- import * as i0 from "@angular/core";
7
- export declare class UserProfileMenuComponent implements OnInit {
8
- protected authService: AuthService;
9
- protected router: Router;
10
- links: any;
11
- showUserName: boolean | undefined;
12
- protected userSub$: Subscription | null;
13
- protected statusSub$: Subscription | null;
14
- user: User | null;
15
- avatarName: string | null;
16
- userMenuExpanded: boolean;
17
- constructor(authService: AuthService, router: Router, links: any);
18
- ngOnInit(): void;
19
- signin(event: any | null | undefined): void;
20
- private setCurrentUser;
21
- onClickOutside($event: any): void;
22
- static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileMenuComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileMenuComponent, "lib-user-profile-menu", never, { "showUserName": "show-user-name"; }, {}, never, never, false>;
24
- }
1
+ import { OnInit } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { AuthService } from '@indice/ng-auth';
4
+ import { Subscription } from 'rxjs';
5
+ import { User } from 'oidc-client-ts';
6
+ import * as i0 from "@angular/core";
7
+ export declare class UserProfileMenuComponent implements OnInit {
8
+ protected authService: AuthService;
9
+ protected router: Router;
10
+ links: any;
11
+ showUserName: boolean | undefined;
12
+ protected userSub$: Subscription | null;
13
+ protected statusSub$: Subscription | null;
14
+ user: User | null;
15
+ avatarName: string | null;
16
+ userMenuExpanded: boolean;
17
+ constructor(authService: AuthService, router: Router, links: any);
18
+ ngOnInit(): void;
19
+ signin(event: any | null | undefined): void;
20
+ private setCurrentUser;
21
+ onClickOutside($event: any): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserProfileMenuComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserProfileMenuComponent, "lib-user-profile-menu", never, { "showUserName": { "alias": "show-user-name"; "required": false; }; }, {}, never, never, false, never>;
24
+ }