@indice/ng-components 0.2.110 → 0.2.113

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 (150) hide show
  1. package/esm2020/indice-ng-components.mjs +5 -0
  2. package/esm2020/lib/controls/avatar-initials/avatar-initials.component.mjs +48 -0
  3. package/esm2020/lib/controls/collapsible-panel/collapsible-panel.component.mjs +20 -0
  4. package/esm2020/lib/controls/date-picker/date-picker.component.mjs +260 -0
  5. package/esm2020/lib/controls/drop-down-menu/drop-down-menu.component.mjs +68 -0
  6. package/esm2020/lib/controls/kpi-tile/kpi-tile.component.mjs +36 -0
  7. package/esm2020/lib/controls/list-view/list-column.component.mjs +25 -0
  8. package/esm2020/lib/controls/list-view/list-details-section.component.mjs +17 -0
  9. package/esm2020/lib/controls/list-view/list-tile.component.mjs +17 -0
  10. package/esm2020/lib/controls/list-view/list-view-empty-state.component.mjs +29 -0
  11. package/esm2020/lib/controls/list-view/list-view.component.mjs +184 -0
  12. package/esm2020/lib/controls/pager/pager.component.mjs +130 -0
  13. package/esm2020/lib/controls/side-pane/side-pane.component.mjs +72 -0
  14. package/esm2020/lib/controls/skeleton-loader/skeleton-loader.component.mjs +25 -0
  15. package/esm2020/lib/controls/toaster/toaster-container.component.mjs +28 -0
  16. package/esm2020/lib/controls/toaster/toaster.component.mjs +31 -0
  17. package/esm2020/lib/controls/toggle/toggle.component.mjs +64 -0
  18. package/esm2020/lib/directives/click-outside.directive.mjs +189 -0
  19. package/esm2020/lib/directives/dynamic-component-host.directive.mjs +17 -0
  20. package/esm2020/lib/helpers/base-list.component.mjs +181 -0
  21. package/{esm2015/lib/icons.js → esm2020/lib/icons.mjs} +0 -0
  22. package/esm2020/lib/layouts/shell/shell-footer/shell-footer.component.mjs +19 -0
  23. package/esm2020/lib/layouts/shell/shell-header/shell-header.component.mjs +113 -0
  24. package/esm2020/lib/layouts/shell/shell-layout/shell-layout.component.mjs +101 -0
  25. package/esm2020/lib/layouts/views/form-layout/form-layout.component.mjs +80 -0
  26. package/esm2020/lib/layouts/views/model-view-layout/model-view-layout.component.mjs +51 -0
  27. package/esm2020/lib/layouts/views/side-view-layout/side-view-layout.component.mjs +98 -0
  28. package/esm2020/lib/layouts/views/view-layout/view-layout.component.mjs +104 -0
  29. package/esm2020/lib/ng-components.module.mjs +215 -0
  30. package/esm2020/lib/pages/auth/auth-callback/auth-callback.component.mjs +30 -0
  31. package/esm2020/lib/pages/auth/auth-renew/auth-renew.component.mjs +31 -0
  32. package/esm2020/lib/pages/auth/logged-out/logged-out.component.mjs +28 -0
  33. package/esm2020/lib/pages/http-status/error/error.component.mjs +17 -0
  34. package/esm2020/lib/pages/http-status/page-not-found/page-not-found.component.mjs +15 -0
  35. package/esm2020/lib/pages/http-status/unauthorized/unauthorized.component.mjs +14 -0
  36. package/esm2020/lib/pipes/address.pipe.mjs +21 -0
  37. package/esm2020/lib/pipes/duration-format.pipe.mjs +64 -0
  38. package/{esm2015/lib/services/component-loader/component-loader-options.class.js → esm2020/lib/services/component-loader/component-loader-options.class.mjs} +0 -0
  39. package/esm2020/lib/services/component-loader/component-loader.class.mjs +188 -0
  40. package/esm2020/lib/services/component-loader/component-loader.factory.mjs +32 -0
  41. package/{esm2015/lib/services/component-loader/content-ref.class.js → esm2020/lib/services/component-loader/content-ref.class.mjs} +0 -0
  42. package/esm2020/lib/services/modal-service/modal-backdrop-component.mjs +44 -0
  43. package/esm2020/lib/services/modal-service/modal-container-component.mjs +126 -0
  44. package/esm2020/lib/services/modal-service/modal-options.class.mjs +34 -0
  45. package/esm2020/lib/services/modal-service/modal-service.mjs +219 -0
  46. package/{esm2015/lib/services/modal-service/modal-styles.class.js → esm2020/lib/services/modal-service/modal-styles.class.mjs} +0 -0
  47. package/esm2020/lib/services/modal-service/modal.class.mjs +27 -0
  48. package/esm2020/lib/services/toaster.service.mjs +24 -0
  49. package/{esm2015/lib/tokens.js → esm2020/lib/tokens.mjs} +0 -0
  50. package/{esm2015/lib/types.js → esm2020/lib/types.mjs} +0 -0
  51. package/esm2020/public-api.mjs +54 -0
  52. package/fesm2015/indice-ng-components.mjs +3129 -0
  53. package/fesm2015/indice-ng-components.mjs.map +1 -0
  54. package/fesm2020/indice-ng-components.mjs +3088 -0
  55. package/fesm2020/indice-ng-components.mjs.map +1 -0
  56. package/indice-ng-components.d.ts +1 -2
  57. package/lib/controls/avatar-initials/avatar-initials.component.d.ts +3 -0
  58. package/lib/controls/collapsible-panel/collapsible-panel.component.d.ts +3 -0
  59. package/lib/controls/date-picker/date-picker.component.d.ts +3 -0
  60. package/lib/controls/drop-down-menu/drop-down-menu.component.d.ts +3 -0
  61. package/lib/controls/kpi-tile/kpi-tile.component.d.ts +3 -0
  62. package/lib/controls/list-view/list-column.component.d.ts +3 -0
  63. package/lib/controls/list-view/list-details-section.component.d.ts +3 -0
  64. package/lib/controls/list-view/list-tile.component.d.ts +3 -0
  65. package/lib/controls/list-view/list-view-empty-state.component.d.ts +3 -0
  66. package/lib/controls/list-view/list-view.component.d.ts +3 -0
  67. package/lib/controls/pager/pager.component.d.ts +3 -0
  68. package/lib/controls/side-pane/side-pane.component.d.ts +3 -0
  69. package/lib/controls/skeleton-loader/skeleton-loader.component.d.ts +3 -0
  70. package/lib/controls/toaster/toaster-container.component.d.ts +3 -0
  71. package/lib/controls/toaster/toaster.component.d.ts +3 -0
  72. package/lib/controls/toggle/toggle.component.d.ts +3 -0
  73. package/lib/directives/click-outside.directive.d.ts +3 -0
  74. package/lib/directives/dynamic-component-host.directive.d.ts +3 -0
  75. package/lib/helpers/base-list.component.d.ts +3 -0
  76. package/lib/layouts/shell/shell-footer/shell-footer.component.d.ts +3 -0
  77. package/lib/layouts/shell/shell-header/shell-header.component.d.ts +3 -0
  78. package/lib/layouts/shell/shell-layout/shell-layout.component.d.ts +3 -0
  79. package/lib/layouts/views/form-layout/form-layout.component.d.ts +3 -0
  80. package/lib/layouts/views/model-view-layout/model-view-layout.component.d.ts +3 -0
  81. package/lib/layouts/views/side-view-layout/side-view-layout.component.d.ts +3 -0
  82. package/lib/layouts/views/view-layout/view-layout.component.d.ts +3 -0
  83. package/lib/ng-components.module.d.ts +40 -0
  84. package/lib/pages/auth/auth-callback/auth-callback.component.d.ts +3 -0
  85. package/lib/pages/auth/auth-renew/auth-renew.component.d.ts +3 -0
  86. package/lib/pages/auth/logged-out/logged-out.component.d.ts +3 -0
  87. package/lib/pages/http-status/error/error.component.d.ts +3 -0
  88. package/lib/pages/http-status/page-not-found/page-not-found.component.d.ts +3 -0
  89. package/lib/pages/http-status/unauthorized/unauthorized.component.d.ts +3 -0
  90. package/lib/pipes/address.pipe.d.ts +3 -0
  91. package/lib/pipes/duration-format.pipe.d.ts +3 -0
  92. package/lib/services/component-loader/component-loader.factory.d.ts +3 -0
  93. package/lib/services/modal-service/modal-backdrop-component.d.ts +3 -0
  94. package/lib/services/modal-service/modal-container-component.d.ts +3 -0
  95. package/lib/services/modal-service/modal-options.class.d.ts +3 -0
  96. package/lib/services/modal-service/modal-service.d.ts +3 -0
  97. package/lib/services/modal-service/modal.class.d.ts +3 -0
  98. package/lib/services/toaster.service.d.ts +3 -0
  99. package/package.json +19 -7
  100. package/public-api.d.ts +1 -0
  101. package/bundles/indice-ng-components.umd.js +0 -3417
  102. package/bundles/indice-ng-components.umd.js.map +0 -1
  103. package/esm2015/indice-ng-components.js +0 -7
  104. package/esm2015/lib/controls/avatar-initials/avatar-initials.component.js +0 -47
  105. package/esm2015/lib/controls/collapsible-panel/collapsible-panel.component.js +0 -20
  106. package/esm2015/lib/controls/date-picker/date-picker.component.js +0 -251
  107. package/esm2015/lib/controls/drop-down-menu/drop-down-menu.component.js +0 -62
  108. package/esm2015/lib/controls/kpi-tile/kpi-tile.component.js +0 -32
  109. package/esm2015/lib/controls/list-view/list-column.component.js +0 -19
  110. package/esm2015/lib/controls/list-view/list-details-section.component.js +0 -14
  111. package/esm2015/lib/controls/list-view/list-tile.component.js +0 -14
  112. package/esm2015/lib/controls/list-view/list-view-empty-state.component.js +0 -25
  113. package/esm2015/lib/controls/list-view/list-view.component.js +0 -150
  114. package/esm2015/lib/controls/pager/pager.component.js +0 -115
  115. package/esm2015/lib/controls/side-pane/side-pane.component.js +0 -71
  116. package/esm2015/lib/controls/skeleton-loader/skeleton-loader.component.js +0 -25
  117. package/esm2015/lib/controls/toaster/toaster-container.component.js +0 -28
  118. package/esm2015/lib/controls/toaster/toaster.component.js +0 -29
  119. package/esm2015/lib/controls/toggle/toggle.component.js +0 -57
  120. package/esm2015/lib/directives/click-outside.directive.js +0 -181
  121. package/esm2015/lib/directives/dynamic-component-host.directive.js +0 -17
  122. package/esm2015/lib/helpers/base-list.component.js +0 -182
  123. package/esm2015/lib/layouts/shell/shell-footer/shell-footer.component.js +0 -17
  124. package/esm2015/lib/layouts/shell/shell-header/shell-header.component.js +0 -99
  125. package/esm2015/lib/layouts/shell/shell-layout/shell-layout.component.js +0 -96
  126. package/esm2015/lib/layouts/views/form-layout/form-layout.component.js +0 -73
  127. package/esm2015/lib/layouts/views/model-view-layout/model-view-layout.component.js +0 -47
  128. package/esm2015/lib/layouts/views/side-view-layout/side-view-layout.component.js +0 -84
  129. package/esm2015/lib/layouts/views/view-layout/view-layout.component.js +0 -95
  130. package/esm2015/lib/ng-components.module.js +0 -133
  131. package/esm2015/lib/pages/auth/auth-callback/auth-callback.component.js +0 -29
  132. package/esm2015/lib/pages/auth/auth-renew/auth-renew.component.js +0 -27
  133. package/esm2015/lib/pages/auth/logged-out/logged-out.component.js +0 -26
  134. package/esm2015/lib/pages/http-status/error/error.component.js +0 -15
  135. package/esm2015/lib/pages/http-status/page-not-found/page-not-found.component.js +0 -14
  136. package/esm2015/lib/pages/http-status/unauthorized/unauthorized.component.js +0 -13
  137. package/esm2015/lib/pipes/address.pipe.js +0 -17
  138. package/esm2015/lib/pipes/duration-format.pipe.js +0 -60
  139. package/esm2015/lib/services/component-loader/component-loader.class.js +0 -192
  140. package/esm2015/lib/services/component-loader/component-loader.factory.js +0 -35
  141. package/esm2015/lib/services/modal-service/modal-backdrop-component.js +0 -44
  142. package/esm2015/lib/services/modal-service/modal-container-component.js +0 -117
  143. package/esm2015/lib/services/modal-service/modal-options.class.js +0 -31
  144. package/esm2015/lib/services/modal-service/modal-service.js +0 -214
  145. package/esm2015/lib/services/modal-service/modal.class.js +0 -24
  146. package/esm2015/lib/services/toaster.service.js +0 -23
  147. package/esm2015/public-api.js +0 -53
  148. package/fesm2015/indice-ng-components.js +0 -2899
  149. package/fesm2015/indice-ng-components.js.map +0 -1
  150. package/indice-ng-components.metadata.json +0 -1
@@ -1,6 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
+ /// <amd-module name="@indice/ng-components" />
4
5
  export * from './public-api';
5
- export { SidePaneComponent as ɵb } from './lib/controls/side-pane/side-pane.component';
6
- export { DynamicComponentHostDirective as ɵa } from './lib/directives/dynamic-component-host.directive';
@@ -1,4 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class AvatarInitialsComponent implements OnInit {
3
4
  name: string | null | undefined;
4
5
  large: boolean;
@@ -8,4 +9,6 @@ export declare class AvatarInitialsComponent implements OnInit {
8
9
  constructor();
9
10
  ngOnInit(): void;
10
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>;
11
14
  }
@@ -1,7 +1,10 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class CollapsiblePanelComponent implements OnInit {
3
4
  title: string | null;
4
5
  visible: boolean;
5
6
  constructor();
6
7
  ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CollapsiblePanelComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CollapsiblePanelComponent, "lib-collapsible-panel", never, { "title": "title"; }, {}, never, ["*"]>;
7
10
  }
@@ -1,5 +1,6 @@
1
1
  import { ElementRef, EventEmitter, OnInit } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DatepickerComponent implements OnInit, ControlValueAccessor {
4
5
  readonly: boolean;
5
6
  disabled: boolean;
@@ -42,4 +43,6 @@ export declare class DatepickerComponent implements OnInit, ControlValueAccessor
42
43
  openYears(): void;
43
44
  openCalendar(): void;
44
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>;
45
48
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { MenuOption } from '../../types';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DropDownMenuComponent implements OnInit, OnChanges {
4
5
  options: MenuOption[];
5
6
  selectedValue: any | null;
@@ -19,4 +20,6 @@ export declare class DropDownMenuComponent implements OnInit, OnChanges {
19
20
  isSelected(option: MenuOption): boolean;
20
21
  onClickOutside($event: any): void;
21
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>;
22
25
  }
@@ -1,4 +1,5 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class KpiTileComponent implements OnInit {
3
4
  title: string | undefined;
4
5
  busy: boolean;
@@ -7,4 +8,6 @@ export declare class KpiTileComponent implements OnInit {
7
8
  constructor();
8
9
  ngOnInit(): void;
9
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>;
10
13
  }
@@ -1,6 +1,9 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class ListColumnComponent {
2
3
  title: string | null;
3
4
  fullWidth: boolean;
4
5
  template: any | null;
5
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"], ["*"]>;
6
9
  }
@@ -1,4 +1,7 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class ListDetailsSectionComponent {
2
3
  template: any | null;
3
4
  constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListDetailsSectionComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListDetailsSectionComponent, "lib-list-details-section", never, {}, {}, ["template"], ["*"]>;
4
7
  }
@@ -1,4 +1,7 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class ListTileComponent {
2
3
  template: any | null;
3
4
  constructor();
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListTileComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListTileComponent, "lib-list-tile", never, {}, {}, ["template"], ["*"]>;
4
7
  }
@@ -1,8 +1,11 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ListViewEmptyStateComponent implements OnInit {
3
4
  title: string;
4
5
  subTitle: string;
5
6
  newItemLabel: string;
6
7
  constructor();
7
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>;
8
11
  }
@@ -3,6 +3,7 @@ import { MenuOption } from '../../types';
3
3
  import { ListTileComponent } from './list-tile.component';
4
4
  import { ListColumnComponent } from './list-column.component';
5
5
  import { ListDetailsSectionComponent } from './list-details-section.component';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class ListViewComponent implements OnChanges {
7
8
  busy: boolean;
8
9
  expandIcon: string;
@@ -49,4 +50,6 @@ export declare class ListViewComponent implements OnChanges {
49
50
  emitSortdirChanged($event: string): void;
50
51
  toggleDetails(item: any): void;
51
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"], ["*"]>;
52
55
  }
@@ -1,6 +1,7 @@
1
1
  import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
3
  import { MenuOption } from '../../types';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class PagerComponent implements OnInit, OnChanges {
5
6
  private router;
6
7
  busy: boolean;
@@ -30,4 +31,6 @@ export declare class PagerComponent implements OnInit, OnChanges {
30
31
  pageOptionChanged(page: number): void;
31
32
  sortOptionChanged(sort: string): void;
32
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>;
33
36
  }
@@ -1,5 +1,6 @@
1
1
  import { Router } from '@angular/router';
2
2
  import { OnInit, OnDestroy, EventEmitter } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class SidePaneComponent implements OnInit, OnDestroy {
4
5
  private router;
5
6
  private document;
@@ -12,4 +13,6 @@ export declare class SidePaneComponent implements OnInit, OnDestroy {
12
13
  ngOnInit(): void;
13
14
  onSidePaneActivated(component: any): void;
14
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, ["*"]>;
15
18
  }
@@ -1,8 +1,11 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class SkeletonLoaderComponent implements OnInit {
3
4
  count: number;
4
5
  type: string;
5
6
  constructor();
6
7
  ngOnInit(): void;
7
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>;
8
11
  }
@@ -1,10 +1,13 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { ToasterService } from '../../services/toaster.service';
3
3
  import { Toast } from '../../types';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class ToasterContainerComponent implements OnInit {
5
6
  private toaster;
6
7
  toasts: Toast[];
7
8
  constructor(toaster: ToasterService);
8
9
  ngOnInit(): void;
9
10
  remove(index: number): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToasterContainerComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<ToasterContainerComponent, "lib-toaster-container", never, {}, {}, never, never>;
10
13
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { Toast } from '../../types';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class ToasterComponent implements OnInit {
4
5
  toast: Toast | undefined;
5
6
  i: number;
@@ -9,4 +10,6 @@ export declare class ToasterComponent implements OnInit {
9
10
  constructor();
10
11
  ngOnInit(): void;
11
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>;
12
15
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class ToggleComponent implements OnInit, ControlValueAccessor {
4
5
  value: boolean | null | undefined;
5
6
  disabled: boolean | null | undefined;
@@ -13,4 +14,6 @@ export declare class ToggleComponent implements OnInit, ControlValueAccessor {
13
14
  onBlur(event: any): void;
14
15
  ngOnInit(): void;
15
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>;
16
19
  }
@@ -1,4 +1,5 @@
1
1
  import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, NgZone } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ClickOutsideDirective implements OnInit, OnChanges, OnDestroy {
3
4
  private _el;
4
5
  private _ngZone;
@@ -34,4 +35,6 @@ export declare class ClickOutsideDirective implements OnInit, OnChanges, OnDestr
34
35
  private _removeAttachOutsideOnClickListener;
35
36
  private _initWindowBlurListener;
36
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>;
37
40
  }
@@ -1,6 +1,9 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class DynamicComponentHostDirective {
3
4
  viewContainerRef: ViewContainerRef;
4
5
  hostName: string;
5
6
  constructor(viewContainerRef: ViewContainerRef);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentHostDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentHostDirective, "[appDynamicComponentHost]", never, { "hostName": "hostName"; }, {}, never>;
6
9
  }
@@ -2,6 +2,7 @@ import { Observable } from 'rxjs';
2
2
  import { OnInit, OnDestroy } from '@angular/core';
3
3
  import { ActivatedRoute, Router } from '@angular/router';
4
4
  import { HeaderMetaItem, IResultSet, MenuOption, ViewAction } from '../types';
5
+ import * as i0 from "@angular/core";
5
6
  export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy {
6
7
  private route$;
7
8
  private router$;
@@ -36,4 +37,6 @@ export declare abstract class BaseListComponent<T> implements OnInit, OnDestroy
36
37
  sortChanged(sort: string): void;
37
38
  sortdirChanged(sortdir: string): void;
38
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>;
39
42
  }
@@ -1,5 +1,8 @@
1
1
  import { IAppLinks } from '../../../types';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ShellFooterComponent {
3
4
  links: IAppLinks;
4
5
  constructor(links: IAppLinks);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellFooterComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellFooterComponent, "lib-shell-footer", never, {}, {}, never, never>;
5
8
  }
@@ -5,6 +5,7 @@ import { Event, Router } from '@angular/router';
5
5
  import { NavLink } from '../../../types';
6
6
  import { Observable } from 'rxjs';
7
7
  import { Subscription } from 'rxjs';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class ShellHeaderComponent implements OnInit, OnDestroy {
9
10
  protected authService: AuthService;
10
11
  protected router: Router;
@@ -29,4 +30,6 @@ export declare class ShellHeaderComponent implements OnInit, OnDestroy {
29
30
  onClickOutside($event: any): void;
30
31
  signin(event: any | null | undefined): void;
31
32
  private setCurrentUser;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellHeaderComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellHeaderComponent, "lib-shell-header", never, { "sectionLinksPath": "section-links"; "profileMenuVisible": "profile-menu"; "showUserNameOnHeader": "show-userName"; "border": "border"; }, {}, never, never>;
32
35
  }
@@ -4,6 +4,7 @@ import { Location } from '@angular/common';
4
4
  import { Router } from '@angular/router';
5
5
  import { DynamicComponentHostDirective } from '../../../directives/dynamic-component-host.directive';
6
6
  import { ComponentLoaderFactory } from '../../../services/component-loader/component-loader.factory';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterViewInit, AfterViewChecked {
8
9
  private document;
9
10
  private router;
@@ -22,4 +23,6 @@ export declare class ShellLayoutComponent implements OnInit, OnDestroy, AfterVie
22
23
  private initCustomComponents;
23
24
  ngOnDestroy(): void;
24
25
  private loadCustomComponent;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShellLayoutComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShellLayoutComponent, "lib-shell-layout", never, {}, {}, never, never>;
25
28
  }
@@ -1,6 +1,7 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
3
  import { RouterViewAction, ViewAction } from '../../../types';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class FormLayoutComponent implements OnInit {
5
6
  private router$;
6
7
  private searchInput$?;
@@ -18,4 +19,6 @@ export declare class FormLayoutComponent implements OnInit {
18
19
  searchActionClick(action: ViewAction, text: string): void;
19
20
  searchActionType(text: string): void;
20
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, ["*"]>;
21
24
  }
@@ -1,6 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { Location } from '@angular/common';
3
3
  import { HeaderMetaItem } from '../../../types';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class ModelViewLayoutComponent implements OnInit {
5
6
  private location;
6
7
  showRightPaneSM: boolean;
@@ -19,4 +20,6 @@ export declare class ModelViewLayoutComponent implements OnInit {
19
20
  onSidePaneActivated($event: any): void;
20
21
  onSidePaneDeactivated($event: any): void;
21
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, ["*"]>;
22
25
  }
@@ -1,6 +1,7 @@
1
1
  import { Router } from '@angular/router';
2
2
  import { OnInit, EventEmitter } from '@angular/core';
3
3
  import { Location } from '@angular/common';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class SideViewLayoutComponent implements OnInit {
5
6
  private location;
6
7
  private router;
@@ -22,4 +23,6 @@ export declare class SideViewLayoutComponent implements OnInit {
22
23
  emitClose(): void;
23
24
  emitCancel(): void;
24
25
  emitOK(): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<SideViewLayoutComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<SideViewLayoutComponent, "lib-side-view-layout", never, { "title": "title"; "showActions": "showActions"; "disabled": "disabled"; "returnPath": "return-path"; "okLabel": "ok-label"; "okShow": "ok-show"; "closeOnOk": "ok-close-dialog"; "cancelLabel": "cancel-label"; "cancelShow": "cancel-show"; "forceLocationBack": "force-location-back"; }, { "cancel": "cancel"; "ok": "ok"; }, never, ["*"]>;
25
28
  }
@@ -2,6 +2,7 @@ import { SwitchViewAction } from '../../../types';
2
2
  import { ActivatedRoute, Router } from '@angular/router';
3
3
  import { OnInit, EventEmitter } from '@angular/core';
4
4
  import { HeaderMetaItem, RouterViewAction, ViewAction } from '../../../types';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class ViewLayoutComponent implements OnInit {
6
7
  private route$;
7
8
  private router$;
@@ -25,4 +26,6 @@ export declare class ViewLayoutComponent implements OnInit {
25
26
  searchActionType(text: string): void;
26
27
  handleClear(event: any): void;
27
28
  switchViewActionClick(action: SwitchViewAction | any): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewLayoutComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<ViewLayoutComponent, "lib-view-layout", never, { "header": "show-header"; "fluid": "fluid"; "title": "title"; "icon": "icon"; "actions": "actions"; "busy": "busy"; "searchPlaceholder": "search-placeholder"; "view": "view"; "metaItems": "meta-items"; }, { "onAction": "onAction"; "onSearch": "onSearch"; }, never, ["*"]>;
28
31
  }
@@ -1,7 +1,47 @@
1
1
  import { ToasterService } from './services/toaster.service';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./directives/click-outside.directive";
4
+ import * as i2 from "./directives/dynamic-component-host.directive";
5
+ import * as i3 from "./controls/drop-down-menu/drop-down-menu.component";
6
+ import * as i4 from "./controls/pager/pager.component";
7
+ import * as i5 from "./controls/list-view/list-view.component";
8
+ import * as i6 from "./controls/list-view/list-column.component";
9
+ import * as i7 from "./controls/list-view/list-tile.component";
10
+ import * as i8 from "./controls/list-view/list-details-section.component";
11
+ import * as i9 from "./controls/list-view/list-view-empty-state.component";
12
+ import * as i10 from "./controls/skeleton-loader/skeleton-loader.component";
13
+ import * as i11 from "./controls/collapsible-panel/collapsible-panel.component";
14
+ import * as i12 from "./controls/kpi-tile/kpi-tile.component";
15
+ import * as i13 from "./controls/side-pane/side-pane.component";
16
+ import * as i14 from "./controls/date-picker/date-picker.component";
17
+ import * as i15 from "./controls/avatar-initials/avatar-initials.component";
18
+ import * as i16 from "./controls/toggle/toggle.component";
19
+ import * as i17 from "./controls/toaster/toaster-container.component";
20
+ import * as i18 from "./controls/toaster/toaster.component";
21
+ import * as i19 from "./layouts/shell/shell-layout/shell-layout.component";
22
+ import * as i20 from "./layouts/shell/shell-header/shell-header.component";
23
+ import * as i21 from "./layouts/shell/shell-footer/shell-footer.component";
24
+ import * as i22 from "./layouts/views/view-layout/view-layout.component";
25
+ import * as i23 from "./layouts/views/side-view-layout/side-view-layout.component";
26
+ import * as i24 from "./layouts/views/model-view-layout/model-view-layout.component";
27
+ import * as i25 from "./layouts/views/form-layout/form-layout.component";
28
+ import * as i26 from "./pages/auth/auth-callback/auth-callback.component";
29
+ import * as i27 from "./pages/auth/auth-renew/auth-renew.component";
30
+ import * as i28 from "./pages/auth/logged-out/logged-out.component";
31
+ import * as i29 from "./pages/http-status/error/error.component";
32
+ import * as i30 from "./pages/http-status/page-not-found/page-not-found.component";
33
+ import * as i31 from "./pages/http-status/unauthorized/unauthorized.component";
34
+ import * as i32 from "./pipes/address.pipe";
35
+ import * as i33 from "./pipes/duration-format.pipe";
36
+ import * as i34 from "@angular/common";
37
+ import * as i35 from "@angular/router";
38
+ import * as i36 from "@indice/ng-auth";
2
39
  export declare class IndiceComponentsModule {
3
40
  static forRoot(): {
4
41
  ngModule: typeof IndiceComponentsModule;
5
42
  providers: (typeof ToasterService)[];
6
43
  };
44
+ static ɵfac: i0.ɵɵFactoryDeclaration<IndiceComponentsModule, never>;
45
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IndiceComponentsModule, [typeof i1.ClickOutsideDirective, typeof i2.DynamicComponentHostDirective, typeof i3.DropDownMenuComponent, typeof i4.PagerComponent, typeof i5.ListViewComponent, typeof i6.ListColumnComponent, typeof i7.ListTileComponent, typeof i8.ListDetailsSectionComponent, typeof i9.ListViewEmptyStateComponent, typeof i10.SkeletonLoaderComponent, typeof i11.CollapsiblePanelComponent, typeof i12.KpiTileComponent, typeof i13.SidePaneComponent, typeof i14.DatepickerComponent, typeof i15.AvatarInitialsComponent, typeof i16.ToggleComponent, typeof i17.ToasterContainerComponent, typeof i18.ToasterComponent, typeof i19.ShellLayoutComponent, typeof i20.ShellHeaderComponent, typeof i21.ShellFooterComponent, typeof i22.ViewLayoutComponent, typeof i23.SideViewLayoutComponent, typeof i24.ModelViewLayoutComponent, typeof i25.FormLayoutComponent, typeof i26.AuthCallbackComponent, typeof i27.AuthRenewComponent, typeof i28.LoggedOutComponent, typeof i29.ErrorComponent, typeof i30.PageNotFoundComponent, typeof i31.UnauthorizedComponent, typeof i32.AddressPipe, typeof i33.DurationFormatPipe], [typeof i34.CommonModule, typeof i35.RouterModule, typeof i36.IndiceAuthModule], [typeof i1.ClickOutsideDirective, typeof i3.DropDownMenuComponent, typeof i4.PagerComponent, typeof i5.ListViewComponent, typeof i6.ListColumnComponent, typeof i7.ListTileComponent, typeof i8.ListDetailsSectionComponent, typeof i9.ListViewEmptyStateComponent, typeof i12.KpiTileComponent, typeof i10.SkeletonLoaderComponent, typeof i19.ShellLayoutComponent, typeof i20.ShellHeaderComponent, typeof i21.ShellFooterComponent, typeof i22.ViewLayoutComponent, typeof i23.SideViewLayoutComponent, typeof i24.ModelViewLayoutComponent, typeof i25.FormLayoutComponent, typeof i26.AuthCallbackComponent, typeof i27.AuthRenewComponent, typeof i28.LoggedOutComponent, typeof i29.ErrorComponent, typeof i30.PageNotFoundComponent, typeof i31.UnauthorizedComponent, typeof i32.AddressPipe, typeof i33.DurationFormatPipe, typeof i11.CollapsiblePanelComponent, typeof i13.SidePaneComponent, typeof i14.DatepickerComponent, typeof i17.ToasterContainerComponent, typeof i18.ToasterComponent, typeof i15.AvatarInitialsComponent, typeof i16.ToggleComponent]>;
46
+ static ɵinj: i0.ɵɵInjectorDeclaration<IndiceComponentsModule>;
7
47
  }
@@ -1,10 +1,13 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
3
  import { AuthService } from '@indice/ng-auth';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class AuthCallbackComponent implements OnInit {
5
6
  private authService;
6
7
  private router;
7
8
  constructor(authService: AuthService, router: Router);
8
9
  status: string;
9
10
  ngOnInit(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthCallbackComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AuthCallbackComponent, "lib-auth-callback", never, {}, {}, never, never>;
10
13
  }
@@ -1,9 +1,12 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { Router } from '@angular/router';
3
3
  import { AuthService } from '@indice/ng-auth';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class AuthRenewComponent implements OnInit {
5
6
  private authService;
6
7
  private router;
7
8
  constructor(authService: AuthService, router: Router);
8
9
  ngOnInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthRenewComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<AuthRenewComponent, "lib-auth-renew", never, {}, {}, never, never>;
9
12
  }
@@ -1,9 +1,12 @@
1
1
  import { AuthService } from '@indice/ng-auth';
2
2
  import { OnInit } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class LoggedOutComponent implements OnInit {
4
5
  private authService;
5
6
  constructor(authService: AuthService);
6
7
  status: string;
7
8
  finished: boolean;
8
9
  ngOnInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoggedOutComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoggedOutComponent, "lib-logged-out", never, {}, {}, never, never>;
9
12
  }
@@ -1,5 +1,8 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ErrorComponent implements OnInit {
3
4
  error: string;
4
5
  ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<ErrorComponent, "lib-error", never, {}, {}, never, never>;
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class PageNotFoundComponent implements OnInit {
3
4
  constructor();
4
5
  ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageNotFoundComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageNotFoundComponent, "lib-page-not-found", never, {}, {}, never, never>;
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class UnauthorizedComponent implements OnInit {
3
4
  constructor();
4
5
  ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<UnauthorizedComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<UnauthorizedComponent, "lib-unauthorized", never, {}, {}, never, never>;
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { IAddress } from '../types';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class AddressPipe implements PipeTransform {
4
5
  transform(value: IAddress | undefined): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddressPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<AddressPipe, "address">;
5
8
  }
@@ -1,5 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class DurationFormatPipe implements PipeTransform {
3
4
  transform(value: any, arg1: any, arg2: any): string;
4
5
  private format;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DurationFormatPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<DurationFormatPipe, "durationFormat">;
5
8
  }
@@ -1,5 +1,6 @@
1
1
  import { ApplicationRef, ComponentFactoryResolver, Injector, ViewContainerRef } from '@angular/core';
2
2
  import { ComponentLoader } from './component-loader.class';
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * Use to create instances of {@link ComponentLoader}.
5
6
  *
@@ -18,4 +19,6 @@ export declare class ComponentLoaderFactory {
18
19
  * @public
19
20
  */
20
21
  createLoader<T>(viewContainerRef?: ViewContainerRef): ComponentLoader<T>;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComponentLoaderFactory, never>;
23
+ static ɵprov: i0.ɵɵInjectableDeclaration<ComponentLoaderFactory>;
21
24
  }
@@ -1,4 +1,5 @@
1
1
  import { ElementRef, OnInit, Renderer2 } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  * Background layer for modals.
4
5
  * Override class name to theme it.
@@ -14,4 +15,6 @@ export declare class ModalBackdropComponent implements OnInit {
14
15
  ngOnInit(): void;
15
16
  hide(): void;
16
17
  reflow(element: any): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalBackdropComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalBackdropComponent, "lib-modal-backdrop", never, {}, {}, never, never>;
17
20
  }
@@ -1,6 +1,7 @@
1
1
  import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
2
2
  import { ModalOptions } from './modal-options.class';
3
3
  import { ModalService } from './modal-service';
4
+ import * as i0 from "@angular/core";
4
5
  /**
5
6
  * Modal container component.
6
7
  * @remarks
@@ -27,4 +28,6 @@ export declare class ModalContainerComponent implements OnInit, OnDestroy {
27
28
  ngOnDestroy(): void;
28
29
  hide(result?: any): void;
29
30
  private _hide;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalContainerComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModalContainerComponent, "lib-modal-container", never, {}, {}, never, ["*"]>;
30
33
  }
@@ -1,4 +1,5 @@
1
1
  import { InjectionToken, StaticProvider } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  * Modals option can be passed to a specific modal from {@link ModalService.show} or set globbaly using the injection token {@link MODAL_CONFIG_DEFAULT_OVERRIDE}.
4
5
  * @remarks
@@ -62,6 +63,8 @@ export declare class ModalOptions<T = Record<string, unknown>> {
62
63
  * aria-describedby attribute value to set on the modal window.
63
64
  */
64
65
  ariaDescribedby?: string;
66
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalOptions<any>, never>;
67
+ static ɵprov: i0.ɵɵInjectableDeclaration<ModalOptions<any>>;
65
68
  }
66
69
  /**
67
70
  * Default option values.
@@ -3,6 +3,7 @@ import { ModalContainerComponent } from './modal-container-component';
3
3
  import { ModalOptions } from './modal-options.class';
4
4
  import { Modal } from './modal.class';
5
5
  import { ComponentLoaderFactory } from '../component-loader/component-loader.factory';
6
+ import * as i0 from "@angular/core";
6
7
  /**
7
8
  * A service for using modals.
8
9
  *
@@ -52,4 +53,6 @@ export declare class ModalService implements OnDestroy {
52
53
  private isScrollBarPresent;
53
54
  private createLoaders;
54
55
  private copyEvent;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModalService, [null, null, null, { optional: true; }]>;
57
+ static ɵprov: i0.ɵɵInjectableDeclaration<ModalService>;
55
58
  }
@@ -1,4 +1,5 @@
1
1
  import { Subject } from 'rxjs';
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  * Modal class.
4
5
  * @remarks
@@ -37,4 +38,6 @@ export declare class Modal<T = any> {
37
38
  * Sets new class to modal window.
38
39
  */
39
40
  setClass: (newClass: string) => void;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<Modal<any>, never>;
42
+ static ɵprov: i0.ɵɵInjectableDeclaration<Modal<any>>;
40
43
  }
@@ -1,8 +1,11 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { Toast, ToastType } from '../types';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class ToasterService {
4
5
  private subject;
5
6
  toast$: Observable<Toast>;
6
7
  constructor();
7
8
  show(type: ToastType, title?: string, body?: string, delay?: number): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToasterService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<ToasterService>;
8
11
  }