ngx-ode-ui 4.6.0-dev-integration.2 → 4.6.0-dev-integration.3

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 (226) hide show
  1. package/esm2020/lib/components/datepicker/datepicker.component.mjs +148 -0
  2. package/esm2020/lib/components/dropdown/dropdown.component.mjs +55 -0
  3. package/esm2020/lib/components/ellipsis/ellipsis.component.mjs +53 -0
  4. package/esm2020/lib/components/form-errors/form-errors.component.mjs +35 -0
  5. package/esm2020/lib/components/form-field/form-field.component.mjs +24 -0
  6. package/esm2020/lib/components/item-tree/item-tree.component.mjs +170 -0
  7. package/esm2020/lib/components/lightbox/lightbox.component.mjs +70 -0
  8. package/esm2020/lib/components/lightbox-confirm/lightbox-confirm.component.mjs +43 -0
  9. package/esm2020/lib/components/list/list.component.mjs +88 -0
  10. package/esm2020/lib/components/list-checkable/list-checkable.component.mjs +79 -0
  11. package/esm2020/lib/components/message-box/message-box.component.mjs +92 -0
  12. package/esm2020/lib/components/message-sticker/message-sticker.component.mjs +51 -0
  13. package/esm2020/lib/components/mono-select/mono-select.component.mjs +83 -0
  14. package/esm2020/lib/components/multi-combo/multi-combo.component.mjs +166 -0
  15. package/esm2020/lib/components/multi-select/multi-select.component.mjs +104 -0
  16. package/esm2020/lib/components/panel-section/panel-section.component.mjs +23 -0
  17. package/esm2020/lib/components/portal/portal.component.mjs +15 -0
  18. package/esm2020/lib/components/push-panel/push-panel.component.mjs +43 -0
  19. package/esm2020/lib/components/search-input/search-input.component.mjs +87 -0
  20. package/esm2020/lib/components/search-toolbar/search-toolbar.component.mjs +56 -0
  21. package/esm2020/lib/components/side-layout/side-layout.component.mjs +23 -0
  22. package/esm2020/lib/components/side-panel/side-panel.component.mjs +41 -0
  23. package/esm2020/lib/components/spinner-cube/spinner-cube.component.mjs +31 -0
  24. package/esm2020/lib/components/table/pager.component.mjs +48 -0
  25. package/esm2020/lib/components/tooltip/tooltip.component.mjs +104 -0
  26. package/esm2020/lib/components/upload-files/upload-files.component.mjs +59 -0
  27. package/esm2020/lib/components/value-editable/simple-select.component.mjs +29 -0
  28. package/esm2020/lib/components/wizard/wizard.component.mjs +152 -0
  29. package/esm2020/lib/directives/anchor.directive.mjs +27 -0
  30. package/esm2020/lib/directives/drag-and-drop-files.directive.mjs +82 -0
  31. package/esm2020/lib/directives/dynamic-component/component-descriptor.model.mjs +15 -0
  32. package/esm2020/lib/directives/dynamic-component/dynamic-component.directive.mjs +58 -0
  33. package/esm2020/lib/directives/dynamictemplate.directive.mjs +83 -0
  34. package/esm2020/lib/directives/object-url.directive.mjs +28 -0
  35. package/esm2020/lib/ngx-ode-ui.module.mjs +282 -0
  36. package/esm2020/lib/pipes/bytes.pipe.mjs +20 -0
  37. package/esm2020/lib/pipes/filter.pipe.mjs +97 -0
  38. package/esm2020/lib/pipes/flattenObjArray.pipe.mjs +35 -0
  39. package/esm2020/lib/pipes/keys.pipe.mjs +20 -0
  40. package/esm2020/lib/pipes/length.pipe.mjs +17 -0
  41. package/esm2020/lib/pipes/limit.pipe.mjs +17 -0
  42. package/esm2020/lib/pipes/localizedDate.pipe.mjs +23 -0
  43. package/esm2020/lib/pipes/orderBy.pipe.mjs +161 -0
  44. package/esm2020/lib/pipes/replace.pipe.mjs +20 -0
  45. package/esm2020/lib/pipes/store.pipe.mjs +17 -0
  46. package/esm2020/lib/services/dynamicModuleImports.service.mjs +13 -0
  47. package/esm2020/lib/services/inputFile.service.mjs +56 -0
  48. package/esm2020/lib/services/labels.service.mjs +32 -0
  49. package/esm2020/lib/services/spinner.service.mjs +76 -0
  50. package/esm2020/lib/utils/math.mjs +19 -0
  51. package/esm2020/lib/utils/string.mjs +11 -0
  52. package/esm2020/lib/utils/testing.mjs +7 -0
  53. package/esm2020/ngx-ode-ui.mjs +5 -0
  54. package/esm2020/public-api.mjs +57 -0
  55. package/fesm2015/ngx-ode-ui.mjs +2954 -0
  56. package/fesm2015/ngx-ode-ui.mjs.map +1 -0
  57. package/fesm2020/ngx-ode-ui.mjs +2952 -0
  58. package/fesm2020/ngx-ode-ui.mjs.map +1 -0
  59. package/index.d.ts +5 -0
  60. package/lib/components/datepicker/datepicker.component.d.ts +7 -2
  61. package/lib/components/dropdown/dropdown.component.d.ts +3 -0
  62. package/lib/components/ellipsis/ellipsis.component.d.ts +4 -1
  63. package/lib/components/form-errors/form-errors.component.d.ts +3 -0
  64. package/lib/components/form-field/form-field.component.d.ts +3 -0
  65. package/lib/components/item-tree/item-tree.component.d.ts +5 -1
  66. package/lib/components/lightbox/lightbox.component.d.ts +5 -1
  67. package/lib/components/lightbox-confirm/lightbox-confirm.component.d.ts +3 -0
  68. package/lib/components/list/list.component.d.ts +5 -1
  69. package/lib/components/list-checkable/list-checkable.component.d.ts +5 -1
  70. package/lib/components/message-box/message-box.component.d.ts +8 -4
  71. package/lib/components/message-sticker/message-sticker.component.d.ts +3 -0
  72. package/lib/components/mono-select/mono-select.component.d.ts +3 -0
  73. package/lib/components/multi-combo/multi-combo.component.d.ts +4 -1
  74. package/lib/components/multi-select/multi-select.component.d.ts +3 -0
  75. package/lib/components/panel-section/panel-section.component.d.ts +3 -0
  76. package/lib/components/portal/portal.component.d.ts +3 -0
  77. package/lib/components/push-panel/push-panel.component.d.ts +4 -1
  78. package/lib/components/search-input/search-input.component.d.ts +5 -1
  79. package/lib/components/search-toolbar/search-toolbar.component.d.ts +3 -0
  80. package/lib/components/side-layout/side-layout.component.d.ts +3 -0
  81. package/lib/components/side-panel/side-panel.component.d.ts +4 -1
  82. package/lib/components/spinner-cube/spinner-cube.component.d.ts +5 -1
  83. package/lib/components/table/pager.component.d.ts +3 -0
  84. package/lib/components/tooltip/tooltip.component.d.ts +3 -0
  85. package/lib/components/upload-files/upload-files.component.d.ts +3 -0
  86. package/lib/components/value-editable/simple-select.component.d.ts +3 -0
  87. package/lib/components/wizard/wizard.component.d.ts +5 -0
  88. package/lib/directives/anchor.directive.d.ts +3 -0
  89. package/lib/directives/drag-and-drop-files.directive.d.ts +3 -0
  90. package/lib/directives/dynamic-component/dynamic-component.directive.d.ts +3 -0
  91. package/lib/directives/dynamictemplate.directive.d.ts +4 -1
  92. package/lib/directives/object-url.directive.d.ts +3 -0
  93. package/lib/ngx-ode-ui.module.d.ts +53 -2
  94. package/lib/pipes/bytes.pipe.d.ts +3 -0
  95. package/lib/pipes/filter.pipe.d.ts +3 -0
  96. package/lib/pipes/flattenObjArray.pipe.d.ts +3 -0
  97. package/lib/pipes/keys.pipe.d.ts +3 -0
  98. package/lib/pipes/length.pipe.d.ts +3 -0
  99. package/lib/pipes/limit.pipe.d.ts +3 -0
  100. package/lib/pipes/localizedDate.pipe.d.ts +3 -0
  101. package/lib/pipes/orderBy.pipe.d.ts +3 -0
  102. package/lib/pipes/replace.pipe.d.ts +8 -0
  103. package/lib/pipes/store.pipe.d.ts +3 -0
  104. package/lib/services/dynamicModuleImports.service.d.ts +3 -0
  105. package/lib/services/inputFile.service.d.ts +3 -0
  106. package/lib/services/labels.service.d.ts +3 -0
  107. package/lib/services/spinner.service.d.ts +4 -1
  108. package/package.json +29 -17
  109. package/public-api.d.ts +3 -0
  110. package/CHANGELOG.md +0 -14
  111. package/bundles/ngx-ode-ui.umd.js +0 -5804
  112. package/bundles/ngx-ode-ui.umd.js.map +0 -1
  113. package/bundles/ngx-ode-ui.umd.min.js +0 -17
  114. package/bundles/ngx-ode-ui.umd.min.js.map +0 -1
  115. package/esm2015/lib/components/datepicker/datepicker.component.js +0 -261
  116. package/esm2015/lib/components/dropdown/dropdown.component.js +0 -76
  117. package/esm2015/lib/components/ellipsis/ellipsis.component.js +0 -98
  118. package/esm2015/lib/components/form-errors/form-errors.component.js +0 -65
  119. package/esm2015/lib/components/form-field/form-field.component.js +0 -40
  120. package/esm2015/lib/components/item-tree/item-tree.component.js +0 -289
  121. package/esm2015/lib/components/lightbox/lightbox.component.js +0 -129
  122. package/esm2015/lib/components/lightbox-confirm/lightbox-confirm.component.js +0 -65
  123. package/esm2015/lib/components/list/list.component.js +0 -140
  124. package/esm2015/lib/components/list-checkable/list-checkable.component.js +0 -137
  125. package/esm2015/lib/components/message-box/message-box.component.js +0 -153
  126. package/esm2015/lib/components/message-sticker/message-sticker.component.js +0 -81
  127. package/esm2015/lib/components/mono-select/mono-select.component.js +0 -164
  128. package/esm2015/lib/components/multi-combo/multi-combo.component.js +0 -255
  129. package/esm2015/lib/components/multi-select/multi-select.component.js +0 -214
  130. package/esm2015/lib/components/panel-section/panel-section.component.js +0 -38
  131. package/esm2015/lib/components/portal/portal.component.js +0 -27
  132. package/esm2015/lib/components/push-panel/push-panel.component.js +0 -81
  133. package/esm2015/lib/components/search-input/search-input.component.js +0 -176
  134. package/esm2015/lib/components/search-toolbar/search-toolbar.component.js +0 -84
  135. package/esm2015/lib/components/side-layout/side-layout.component.js +0 -39
  136. package/esm2015/lib/components/side-panel/side-panel.component.js +0 -76
  137. package/esm2015/lib/components/spinner-cube/spinner-cube.component.js +0 -67
  138. package/esm2015/lib/components/table/pager.component.js +0 -95
  139. package/esm2015/lib/components/tooltip/tooltip.component.js +0 -172
  140. package/esm2015/lib/components/upload-files/upload-files.component.js +0 -112
  141. package/esm2015/lib/components/value-editable/simple-select.component.js +0 -57
  142. package/esm2015/lib/components/wizard/wizard.component.js +0 -225
  143. package/esm2015/lib/directives/anchor.directive.js +0 -34
  144. package/esm2015/lib/directives/drag-and-drop-files.directive.js +0 -126
  145. package/esm2015/lib/directives/dynamic-component/component-descriptor.model.js +0 -34
  146. package/esm2015/lib/directives/dynamic-component/dynamic-component.directive.js +0 -100
  147. package/esm2015/lib/directives/dynamictemplate.directive.js +0 -159
  148. package/esm2015/lib/directives/object-url.directive.js +0 -53
  149. package/esm2015/lib/ngx-ode-ui.module.js +0 -188
  150. package/esm2015/lib/pipes/bytes.pipe.js +0 -27
  151. package/esm2015/lib/pipes/filter.pipe.js +0 -141
  152. package/esm2015/lib/pipes/flattenObjArray.pipe.js +0 -52
  153. package/esm2015/lib/pipes/keys.pipe.js +0 -27
  154. package/esm2015/lib/pipes/length.pipe.js +0 -22
  155. package/esm2015/lib/pipes/limit.pipe.js +0 -24
  156. package/esm2015/lib/pipes/localizedDate.pipe.js +0 -44
  157. package/esm2015/lib/pipes/orderBy.pipe.js +0 -269
  158. package/esm2015/lib/pipes/store.pipe.js +0 -24
  159. package/esm2015/lib/services/dynamicModuleImports.service.js +0 -19
  160. package/esm2015/lib/services/inputFile.service.js +0 -80
  161. package/esm2015/lib/services/labels.service.js +0 -54
  162. package/esm2015/lib/services/spinner.service.js +0 -163
  163. package/esm2015/lib/utils/math.js +0 -49
  164. package/esm2015/lib/utils/string.js +0 -29
  165. package/esm2015/lib/utils/testing.js +0 -20
  166. package/esm2015/ngx-ode-ui.js +0 -12
  167. package/esm2015/public-api.js +0 -59
  168. package/esm5/lib/components/datepicker/datepicker.component.js +0 -292
  169. package/esm5/lib/components/dropdown/dropdown.component.js +0 -81
  170. package/esm5/lib/components/ellipsis/ellipsis.component.js +0 -106
  171. package/esm5/lib/components/form-errors/form-errors.component.js +0 -73
  172. package/esm5/lib/components/form-field/form-field.component.js +0 -41
  173. package/esm5/lib/components/item-tree/item-tree.component.js +0 -345
  174. package/esm5/lib/components/lightbox/lightbox.component.js +0 -141
  175. package/esm5/lib/components/lightbox-confirm/lightbox-confirm.component.js +0 -67
  176. package/esm5/lib/components/list/list.component.js +0 -146
  177. package/esm5/lib/components/list-checkable/list-checkable.component.js +0 -148
  178. package/esm5/lib/components/message-box/message-box.component.js +0 -190
  179. package/esm5/lib/components/message-sticker/message-sticker.component.js +0 -92
  180. package/esm5/lib/components/mono-select/mono-select.component.js +0 -192
  181. package/esm5/lib/components/multi-combo/multi-combo.component.js +0 -294
  182. package/esm5/lib/components/multi-select/multi-select.component.js +0 -258
  183. package/esm5/lib/components/panel-section/panel-section.component.js +0 -40
  184. package/esm5/lib/components/portal/portal.component.js +0 -28
  185. package/esm5/lib/components/push-panel/push-panel.component.js +0 -91
  186. package/esm5/lib/components/search-input/search-input.component.js +0 -199
  187. package/esm5/lib/components/search-toolbar/search-toolbar.component.js +0 -93
  188. package/esm5/lib/components/side-layout/side-layout.component.js +0 -41
  189. package/esm5/lib/components/side-panel/side-panel.component.js +0 -85
  190. package/esm5/lib/components/spinner-cube/spinner-cube.component.js +0 -76
  191. package/esm5/lib/components/table/pager.component.js +0 -113
  192. package/esm5/lib/components/tooltip/tooltip.component.js +0 -188
  193. package/esm5/lib/components/upload-files/upload-files.component.js +0 -133
  194. package/esm5/lib/components/value-editable/simple-select.component.js +0 -59
  195. package/esm5/lib/components/wizard/wizard.component.js +0 -161
  196. package/esm5/lib/directives/anchor.directive.js +0 -39
  197. package/esm5/lib/directives/drag-and-drop-files.directive.js +0 -146
  198. package/esm5/lib/directives/dynamic-component/component-descriptor.model.js +0 -44
  199. package/esm5/lib/directives/dynamic-component/dynamic-component.directive.js +0 -109
  200. package/esm5/lib/directives/dynamictemplate.directive.js +0 -175
  201. package/esm5/lib/directives/object-url.directive.js +0 -62
  202. package/esm5/lib/ngx-ode-ui.module.js +0 -199
  203. package/esm5/lib/pipes/bytes.pipe.js +0 -37
  204. package/esm5/lib/pipes/filter.pipe.js +0 -179
  205. package/esm5/lib/pipes/flattenObjArray.pipe.js +0 -62
  206. package/esm5/lib/pipes/keys.pipe.js +0 -36
  207. package/esm5/lib/pipes/length.pipe.js +0 -30
  208. package/esm5/lib/pipes/limit.pipe.js +0 -35
  209. package/esm5/lib/pipes/localizedDate.pipe.js +0 -49
  210. package/esm5/lib/pipes/orderBy.pipe.js +0 -280
  211. package/esm5/lib/pipes/store.pipe.js +0 -35
  212. package/esm5/lib/services/dynamicModuleImports.service.js +0 -21
  213. package/esm5/lib/services/inputFile.service.js +0 -98
  214. package/esm5/lib/services/labels.service.js +0 -68
  215. package/esm5/lib/services/spinner.service.js +0 -195
  216. package/esm5/lib/utils/math.js +0 -49
  217. package/esm5/lib/utils/string.js +0 -29
  218. package/esm5/lib/utils/testing.js +0 -20
  219. package/esm5/ngx-ode-ui.js +0 -12
  220. package/esm5/public-api.js +0 -59
  221. package/fesm2015/ngx-ode-ui.js +0 -5027
  222. package/fesm2015/ngx-ode-ui.js.map +0 -1
  223. package/fesm5/ngx-ode-ui.js +0 -5560
  224. package/fesm5/ngx-ode-ui.js.map +0 -1
  225. package/ngx-ode-ui.d.ts +0 -6
  226. package/ngx-ode-ui.metadata.json +0 -1
@@ -2,19 +2,22 @@ import { OdeComponent } from 'ngx-ode-core';
2
2
  import { AfterViewInit, ElementRef, EventEmitter, OnDestroy, Renderer2, Injector } from '@angular/core';
3
3
  import { ControlValueAccessor, NgModel } from '@angular/forms';
4
4
  import { LabelsService } from '../../services/labels.service';
5
+ import * as i0 from "@angular/core";
5
6
  export declare const CUSTOM_INPUT_CONTROL_VALUE_ACCESSOR: any;
6
7
  export declare class DatepickerComponent extends OdeComponent implements OnDestroy, AfterViewInit, ControlValueAccessor {
7
8
  private renderer;
8
9
  private labelsService;
9
10
  constructor(renderer: Renderer2, labelsService: LabelsService, injector: Injector);
10
- value: any;
11
+ get value(): any;
12
+ set value(v: any);
11
13
  private innerValue;
12
14
  datePickerElement: ElementRef;
13
15
  inputElement: ElementRef;
14
16
  private datePickerInst;
15
17
  model: NgModel;
16
18
  disabled: boolean;
17
- readonly: boolean;
19
+ set readonly(val: boolean);
20
+ get readonly(): boolean;
18
21
  _readonly: boolean;
19
22
  enableTime: boolean;
20
23
  placeholder: string;
@@ -29,4 +32,6 @@ export declare class DatepickerComponent extends OdeComponent implements OnDestr
29
32
  registerOnChange(fn: any): void;
30
33
  registerOnTouched(fn: any): void;
31
34
  labels(label: any): any;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "ode-date-picker", never, { "disabled": "disabled"; "readonly": "readonly"; "enableTime": "enableTime"; "placeholder": "placeholder"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "changeDate": "changeDate"; }, never, never, false>;
32
37
  }
@@ -1,5 +1,6 @@
1
1
  import { OnInit, EventEmitter, Injector } from '@angular/core';
2
2
  import { OdeComponent } from 'ngx-ode-core';
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * DropdownComponent is an alternative to the MonoSelectComponent.
5
6
  * Accept everything inside <ng-content> but should work with <ode-list> component
@@ -33,4 +34,6 @@ export declare class DropdownComponent extends OdeComponent implements OnInit {
33
34
  isDropdownOpened: boolean;
34
35
  onDropdown: EventEmitter<void>;
35
36
  ngOnInit(): void;
37
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
38
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "ode-dropdown", never, { "name": "name"; "isDropdownOpened": "isDropdownOpened"; }, { "onDropdown": "onDropdown"; }, never, ["*"], false>;
36
39
  }
@@ -1,5 +1,6 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { ElementRef, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  declare type EllipsisBehavior = 'expand' | 'hide';
4
5
  /**
5
6
  * A simple ellipsis component that switches text-overflow on click.
@@ -10,9 +11,11 @@ export declare class EllipsisComponent extends OdeComponent {
10
11
  private eltRef;
11
12
  constructor(eltRef: ElementRef, injector: Injector);
12
13
  private _ellipsis;
13
- ellipsis: EllipsisBehavior;
14
+ set ellipsis(value: EllipsisBehavior);
14
15
  private isExpanded;
15
16
  private initialStyle;
16
17
  onClick(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<EllipsisComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<EllipsisComponent, "[ellipsis]", never, { "ellipsis": "ellipsis"; }, {}, never, ["*"], false>;
17
20
  }
18
21
  export {};
@@ -2,6 +2,7 @@ import { OdeComponent } from 'ngx-ode-core';
2
2
  import { Injector } from '@angular/core';
3
3
  import { AbstractControl } from '@angular/forms';
4
4
  import { LabelsService } from '../../services/labels.service';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class FormErrorsComponent extends OdeComponent {
6
7
  private labelsService;
7
8
  constructor(labelsService: LabelsService, injector: Injector);
@@ -9,4 +10,6 @@ export declare class FormErrorsComponent extends OdeComponent {
9
10
  expectedPatternMsg: string;
10
11
  getErrorsArray(): any[];
11
12
  labels(label: any): any;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormErrorsComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormErrorsComponent, "ode-form-errors", never, { "ref": "control"; "expectedPatternMsg": "expectedPatternMsg"; }, {}, never, never, false>;
12
15
  }
@@ -1,8 +1,11 @@
1
1
  import { Injector } from '@angular/core';
2
2
  import { OdeComponent } from 'ngx-ode-core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class FormFieldComponent extends OdeComponent {
4
5
  label: string;
5
6
  help: string;
6
7
  required: boolean;
7
8
  constructor(injector: Injector);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "ode-form-field", never, { "label": "label"; "help": "help"; "required": "required"; }, {}, never, ["*"], false>;
8
11
  }
@@ -1,5 +1,6 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { EventEmitter, OnInit, TemplateRef, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class ItemTreeComponent<T> extends OdeComponent implements OnInit {
4
5
  constructor(injector: Injector);
5
6
  /**** Inputs ****/
@@ -10,7 +11,8 @@ export declare class ItemTreeComponent<T> extends OdeComponent implements OnInit
10
11
  filter: (Object | string | Function);
11
12
  order: (Array<any> | string | Function);
12
13
  reverse: any;
13
- flatten: Array<string>;
14
+ set flatten(flattenProps: Array<string>);
15
+ get flatten(): Array<string>;
14
16
  private _flattenProps;
15
17
  disableOpener: boolean;
16
18
  checkboxMode: boolean;
@@ -36,4 +38,6 @@ export declare class ItemTreeComponent<T> extends OdeComponent implements OnInit
36
38
  hasChildren(item: any): boolean;
37
39
  isFlattened(): number;
38
40
  private flagIfParent;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItemTreeComponent<any>, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItemTreeComponent<any>, "ode-item-tree", never, { "items": "items"; "childrenProperty": "children"; "displayProperty": "display"; "displayTemplate": "displayTemplate"; "filter": "filter"; "order": "order"; "reverse": "reverse"; "flatten": "flatten"; "disableOpener": "disableOpener"; "checkboxMode": "checkboxMode"; "_lastSelectedItem": "lastSelected"; "_depth": "depth"; }, { "onSelect": "onSelect"; "onCheck": "onCheck"; }, never, never, false>;
39
43
  }
@@ -1,10 +1,12 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { ElementRef, EventEmitter, Renderer2, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class LightBoxComponent extends OdeComponent {
4
5
  private renderer;
5
6
  private host;
6
7
  constructor(injector: Injector, renderer: Renderer2, host: ElementRef);
7
- show: boolean;
8
+ set show(s: boolean);
9
+ get show(): boolean;
8
10
  _show: boolean;
9
11
  showCloseButton: boolean;
10
12
  onClose: EventEmitter<any>;
@@ -13,4 +15,6 @@ export declare class LightBoxComponent extends OdeComponent {
13
15
  private timer;
14
16
  onClick(event: MouseEvent): void;
15
17
  close(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<LightBoxComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<LightBoxComponent, "ode-lightbox", never, { "show": "show"; "showCloseButton": "showCloseButton"; }, { "onClose": "onClose"; }, never, ["*"], false>;
16
20
  }
@@ -1,5 +1,6 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { EventEmitter, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class LightboxConfirmComponent extends OdeComponent {
4
5
  lightboxTitle: string;
5
6
  show: boolean;
@@ -11,4 +12,6 @@ export declare class LightboxConfirmComponent extends OdeComponent {
11
12
  onCancel: EventEmitter<void>;
12
13
  onExtra: EventEmitter<number>;
13
14
  constructor(injector: Injector);
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<LightboxConfirmComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<LightboxConfirmComponent, "ode-lightbox-confirm", never, { "lightboxTitle": "lightboxTitle"; "show": "show"; "cancelText": "cancelText"; "confirmText": "confirmText"; "extraButtons": "extraButtons"; "disableConfirm": "disableConfirm"; }, { "onConfirm": "onConfirm"; "onCancel": "onCancel"; "onExtra": "onExtra"; }, never, ["*"], false>;
14
17
  }
@@ -1,7 +1,9 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { EventEmitter, TemplateRef, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class ListComponent extends OdeComponent {
4
- storedElements: any;
5
+ set storedElements(list: any[]);
6
+ get storedElements(): any[];
5
7
  self: this;
6
8
  _storedElements: any[];
7
9
  model: any;
@@ -26,4 +28,6 @@ export declare class ListComponent extends OdeComponent {
26
28
  isDisabled: (arg?: any) => boolean;
27
29
  ngClass: (arg?: any) => {};
28
30
  constructor(injector: Injector);
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "ode-list", never, { "model": "model"; "filters": "filters"; "inputFilter": "inputFilter"; "sort": "sort"; "limit": "limit"; "searchPlaceholder": "searchPlaceholder"; "noResultsLabel": "noResultsLabel"; "placeholder": "placeholder"; "isSearchActive": "isSearchActive"; "isSearchButtonDisabled": "isSearchButtonDisabled"; "searchInput": "searchInput"; "searchDelay": "searchDelay"; "searchSubmit": "searchSubmit"; "isSelected": "isSelected"; "isDisabled": "isDisabled"; "ngClass": "ngClass"; }, { "inputChange": "inputChange"; "onSelect": "onSelect"; "listChange": "listChange"; "scrolledDown": "scrolledDown"; }, ["templateRef"], ["[toolbar]"], false>;
29
33
  }
@@ -1,5 +1,6 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { EventEmitter, TemplateRef, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * ListCheckableComponent is an alternative to the ListComponent to easily select rows by using a checkbox.
5
6
  *
@@ -48,8 +49,11 @@ export declare class ListCheckableComponent extends OdeComponent {
48
49
  ngClass: (arg?: any) => {};
49
50
  self: this;
50
51
  _storedElements: any[];
51
- storedElements: any;
52
+ set storedElements(list: any[]);
53
+ get storedElements(): any[];
52
54
  constructor(injector: Injector);
53
55
  toggleAll(checkAll: boolean): void;
56
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListCheckableComponent, never>;
57
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListCheckableComponent, "ode-list-checkable", never, { "model": "model"; "filters": "filters"; "sort": "sort"; "limit": "limit"; "noResultsLabel": "noResultsLabel"; "readOnly": "readOnly"; "areAllChecked": "areAllChecked"; "isChecked": "isChecked"; "isDisabled": "isDisabled"; "ngClass": "ngClass"; }, { "onCheck": "onCheck"; "listChange": "listChange"; "scrolledDown": "scrolledDown"; }, ["templateRef"], never, false>;
54
58
  }
55
59
  export {};
@@ -1,5 +1,6 @@
1
1
  import { ElementRef, EventEmitter, OnInit, Injector } from '@angular/core';
2
2
  import { OdeComponent } from 'ngx-ode-core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare type MessageType = 'info' | 'success' | 'warning' | 'danger';
4
5
  export declare const icons: {
5
6
  info: string;
@@ -13,19 +14,22 @@ export declare class MessageBoxComponent extends OdeComponent implements OnInit
13
14
  type: MessageType;
14
15
  header: string;
15
16
  private _messages;
16
- messages: (string | [string, {}])[];
17
+ set messages(value: (string | [string, {}])[]);
18
+ get messages(): (string | [string, {}])[];
17
19
  private _position;
18
- position: 'absolute' | 'inherit';
20
+ set position(value: 'absolute' | 'inherit');
19
21
  /**
20
22
  * `gravity` set the relative position of the message box if its position is 'absolute'.
21
23
  * No effect when position is 'inherit'.
22
24
  */
23
25
  gravity: 'left' | 'right';
24
- readonly isGravityLeft: boolean;
25
- readonly isGravityRight: boolean;
26
+ get isGravityLeft(): boolean;
27
+ get isGravityRight(): boolean;
26
28
  hidden: boolean;
27
29
  hideEvent: EventEmitter<void>;
28
30
  canHide(): boolean;
29
31
  hide(): void;
30
32
  ngOnInit(): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<MessageBoxComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<MessageBoxComponent, "message-box", never, { "type": "type"; "header": "header"; "messages": "messages"; "position": "position"; "gravity": "gravity"; }, { "hideEvent": "onHide"; }, never, never, false>;
31
35
  }
@@ -3,6 +3,7 @@ import { OnInit, Injector } from '@angular/core';
3
3
  import { MessageType } from '../message-box/message-box.component';
4
4
  import { DynamicComponentDirective } from '../../directives/dynamic-component/dynamic-component.directive';
5
5
  import { ComponentDescriptor } from '../../directives/dynamic-component/component-descriptor.model';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class MessageStickerComponent extends OdeComponent implements OnInit {
7
8
  type: MessageType;
8
9
  header: string;
@@ -19,4 +20,6 @@ export declare class MessageStickerComponent extends OdeComponent implements OnI
19
20
  ngOnInit(): void;
20
21
  newMessageBox(): ComponentDescriptor;
21
22
  loadMessageBox(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<MessageStickerComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<MessageStickerComponent, "ode-message-sticker", never, { "type": "type"; "header": "header"; "messages": "messages"; "gravity": "gravity"; }, {}, never, never, false>;
22
25
  }
@@ -2,6 +2,7 @@ import { ElementRef, Injector } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
3
  import { SelectOption } from '../multi-select/multi-select.component';
4
4
  import { OdeComponent } from 'ngx-ode-core';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class MonoSelectComponent<K> extends OdeComponent implements ControlValueAccessor {
6
7
  private elementRef;
7
8
  placeholder: string;
@@ -21,4 +22,6 @@ export declare class MonoSelectComponent<K> extends OdeComponent implements Cont
21
22
  registerOnTouched(fn: any): void;
22
23
  setDisabledState(isDisabled: boolean): void;
23
24
  writeValue(obj: K): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<MonoSelectComponent<any>, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<MonoSelectComponent<any>, "ode-mono-select", never, { "placeholder": "placeholder"; "options": "options"; "trackByFn": "trackByFn"; "translateOptions": "translateOptions"; "disabled": "disabled"; }, {}, never, never, false>;
24
27
  }
@@ -1,11 +1,12 @@
1
1
  import { ElementRef, EventEmitter, Injector } from '@angular/core';
2
2
  import { LabelsService } from '../../services/labels.service';
3
3
  import { OdeComponent } from 'ngx-ode-core';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class MultiComboComponent extends OdeComponent {
5
6
  private _eref;
6
7
  private labelsService;
7
8
  constructor(_eref: ElementRef, labelsService: LabelsService, injector: Injector);
8
- comboModel: any;
9
+ set comboModel(model: any);
9
10
  filteredModel: any[];
10
11
  title: string;
11
12
  display: string | Function;
@@ -37,4 +38,6 @@ export declare class MultiComboComponent extends OdeComponent {
37
38
  displayItem(item: any): any;
38
39
  onClick(event: any): boolean;
39
40
  getFilter(): {};
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiComboComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiComboComponent, "ode-multi-combo", never, { "comboModel": "comboModel"; "filteredModel": "outputModel"; "title": "title"; "display": "display"; "filter": "filter"; "orderBy": "orderBy"; "reverse": "reverse"; "maxSelected": "max"; "disabled": "disabled"; }, { "onSelectItem": "onSelectItem"; "onDeselectItem": "onDeselectItem"; "filteredModelChange": "outputModelChange"; "onOpen": "onOpen"; "onClose": "onClose"; }, never, never, false>;
40
43
  }
@@ -1,6 +1,7 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { ElementRef, Injector } from '@angular/core';
3
3
  import { ControlValueAccessor } from '@angular/forms';
4
+ import * as i0 from "@angular/core";
4
5
  export interface SelectOption<K> {
5
6
  label: string;
6
7
  value: K;
@@ -28,4 +29,6 @@ export declare class MultiSelectComponent<K> extends OdeComponent implements Con
28
29
  registerOnTouched(fn: any): void;
29
30
  setDisabledState(isDisabled: boolean): void;
30
31
  writeValue(obj: Array<K>): void;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectComponent<any>, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectComponent<any>, "ode-multi-select", never, { "label": "label"; "options": "options"; "preview": "preview"; "trackByFn": "trackByFn"; }, {}, never, never, false>;
31
34
  }
@@ -1,7 +1,10 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class PanelSectionComponent extends OdeComponent {
4
5
  sectionTitle: string;
5
6
  folded: boolean;
6
7
  constructor(injector: Injector);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<PanelSectionComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<PanelSectionComponent, "ode-panel-section", never, { "sectionTitle": "section-title"; "folded": "folded"; }, {}, never, ["[panel-section-header-icons]", "*"], false>;
7
10
  }
@@ -1,5 +1,8 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class PortalComponent extends OdeComponent {
4
5
  constructor(injector: Injector);
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<PortalComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<PortalComponent, "ode-portal", never, {}, {}, never, ["[header-left]", "[header-middle]", "[header-right]", "[section]", "[footer]"], false>;
5
8
  }
@@ -1,11 +1,14 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class PushPanelComponent extends OdeComponent {
4
5
  constructor(injector: Injector);
5
- private toggle;
6
+ private set toggle(value);
6
7
  _opened: boolean;
7
8
  private opener;
8
9
  private onClose;
9
10
  private inside;
10
11
  onClick(event: any): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<PushPanelComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<PushPanelComponent, "ode-push-panel", never, { "toggle": "toggle"; "opener": "opener"; }, { "onClose": "onClose"; }, never, ["[inside]", "[companion]"], false>;
11
14
  }
@@ -1,5 +1,6 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { ElementRef, EventEmitter, OnDestroy, OnInit, Renderer2, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class SearchInputComponent extends OdeComponent implements OnInit, OnDestroy {
4
5
  private _elRef;
5
6
  private _renderer;
@@ -8,7 +9,8 @@ export declare class SearchInputComponent extends OdeComponent implements OnInit
8
9
  isSearchButtonDisabled: boolean;
9
10
  searchInput: boolean;
10
11
  searchSubmit: () => void;
11
- delay: number;
12
+ set delay(d: number);
13
+ get delay(): number;
12
14
  private _delay;
13
15
  onChange: EventEmitter<string>;
14
16
  searchBox: ElementRef;
@@ -20,4 +22,6 @@ export declare class SearchInputComponent extends OdeComponent implements OnInit
20
22
  ngOnDestroy(): void;
21
23
  search(str: string): void;
22
24
  handleSubmit(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchInputComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "ode-search-input", never, { "isSearchActive": "isSearchActive"; "isSearchButtonDisabled": "isSearchButtonDisabled"; "searchInput": "searchInput"; "searchSubmit": "searchSubmit"; "delay": "delay"; }, { "onChange": "onChange"; }, never, never, false>;
23
27
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter, Injector } from "@angular/core";
2
2
  import { OdeComponent } from "ngx-ode-core";
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * Search Toolbar component.
5
6
  * Used within List component, Search Toolbar will display following information:
@@ -31,4 +32,6 @@ export declare class SearchToolbarComponent extends OdeComponent {
31
32
  constructor(injector: Injector);
32
33
  ngOnInit(): void;
33
34
  handleSearchTypeClick(searchTypeValue: string): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchToolbarComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchToolbarComponent, "ode-search-toolbar", never, { "label": "label"; "searchTypes": "searchTypes"; "nbItem": "nbItem"; "nbItemLabel": "nbItemLabel"; }, { "selectSearchType": "selectSearchType"; }, never, never, false>;
34
37
  }
@@ -1,7 +1,10 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { EventEmitter, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class SideLayoutComponent extends OdeComponent {
4
5
  showCompanion: boolean;
5
6
  close: EventEmitter<void>;
6
7
  constructor(injector: Injector);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SideLayoutComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<SideLayoutComponent, "ode-side-layout", never, { "showCompanion": "showCompanion"; }, { "close": "closeCompanion"; }, never, ["[side-card]", "[side-companion]"], false>;
7
10
  }
@@ -1,11 +1,14 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { ElementRef, EventEmitter, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class SidePanelComponent extends OdeComponent {
4
5
  private elementRef;
5
6
  opened: boolean;
6
7
  constructor(injector: Injector, elementRef: ElementRef);
7
- toggle: boolean;
8
+ set toggle(toggle: boolean);
8
9
  opener: any;
9
10
  onClose: EventEmitter<boolean>;
10
11
  onClick(event: any): boolean;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SidePanelComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<SidePanelComponent, "ode-side-panel", never, { "toggle": "toggle"; "opener": "opener"; }, { "onClose": "onClose"; }, never, ["*"], false>;
11
14
  }
@@ -1,10 +1,14 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { OnInit, Injector } from '@angular/core';
3
3
  import { SpinnerService } from '../../services/spinner.service';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class SpinnerCubeComponent extends OdeComponent implements OnInit {
5
6
  spinner: SpinnerService;
6
- loadingProp: string;
7
+ set loadingProp(prop: string);
8
+ get loadingProp(): string;
7
9
  private _loadingProp;
8
10
  constructor(injector: Injector, spinner: SpinnerService);
9
11
  ngOnInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerCubeComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerCubeComponent, "ode-spinner-cube", never, { "loadingProp": "waitingFor"; }, {}, never, never, false>;
10
14
  }
@@ -1,6 +1,7 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { EventEmitter, OnInit, Injector } from '@angular/core';
3
3
  import { BundlesService } from 'ngx-ode-sijil';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class PagerComponent extends OdeComponent implements OnInit {
5
6
  private bundles;
6
7
  constructor(injector: Injector, bundles: BundlesService);
@@ -13,4 +14,6 @@ export declare class PagerComponent extends OdeComponent implements OnInit {
13
14
  previousPage(): void;
14
15
  nextPage(): void;
15
16
  offsetLimit(): number;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<PagerComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<PagerComponent, "ode-pager", never, { "limit": "limit"; "offset": "offset"; "total": "total"; }, { "offsetChange": "offsetChange"; }, never, never, false>;
16
19
  }
@@ -1,5 +1,6 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { ElementRef, Renderer2, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class TooltipComponent extends OdeComponent {
4
5
  private ref;
5
6
  private renderer;
@@ -13,4 +14,6 @@ export declare class TooltipComponent extends OdeComponent {
13
14
  onTransitionEnd: () => void;
14
15
  private getPosition;
15
16
  ngOnDestroy(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "[tooltip]", never, { "tooltipContents": "tooltip"; "position": "position"; "offset": "offset"; }, {}, never, ["*"], false>;
16
19
  }
@@ -1,6 +1,7 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { ElementRef, EventEmitter, OnInit, Injector } from '@angular/core';
3
3
  import { InputFileService } from '../../services/inputFile.service';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class UploadFilesComponent extends OdeComponent implements OnInit {
5
6
  inputFileService: InputFileService;
6
7
  fileSrc: string;
@@ -17,4 +18,6 @@ export declare class UploadFilesComponent extends OdeComponent implements OnInit
17
18
  onClickDropzoneInput($event: Event): void;
18
19
  onDragAndDrop($event: File[]): void;
19
20
  onInvalidDragAndDrop($event: string): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploadFilesComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploadFilesComponent, "ode-upload-files", never, { "fileSrc": "fileSrc"; "allowedExtensions": "allowedExtensions"; "maxFilesNumber": "maxFilesNumber"; "disabled": "disabled"; }, { "upload": "upload"; "invalidUpload": "invalidUpload"; }, never, never, false>;
20
23
  }
@@ -1,5 +1,6 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { EventEmitter, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export interface Option {
4
5
  value: string;
5
6
  label: string;
@@ -13,4 +14,6 @@ export declare class SimpleSelectComponent extends OdeComponent {
13
14
  ignoreOption: Option[];
14
15
  selectChange: EventEmitter<string>;
15
16
  constructor(injector: Injector);
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<SimpleSelectComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<SimpleSelectComponent, "ode-simple-select", never, { "selected": "selected"; "model": "model"; "options": "options"; "ignoreOption": "ignoreOption"; }, { "selectChange": "selectChange"; }, never, never, false>;
16
19
  }
@@ -1,10 +1,13 @@
1
1
  import { OdeComponent } from 'ngx-ode-core';
2
2
  import { AfterContentInit, EventEmitter, QueryList, Injector } from '@angular/core';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class StepComponent {
4
5
  name: string;
5
6
  isActived: boolean;
6
7
  hasError: boolean;
7
8
  isFinished: boolean;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepComponent, "ode-step", never, { "name": "name"; "isActived": "isActived"; }, {}, never, ["*"], false>;
8
11
  }
9
12
  export declare class WizardComponent extends OdeComponent implements AfterContentInit {
10
13
  cancel: EventEmitter<{}>;
@@ -20,4 +23,6 @@ export declare class WizardComponent extends OdeComponent implements AfterConten
20
23
  onNextStep(): void;
21
24
  doNextStep(error?: boolean): void;
22
25
  ngAfterContentInit(): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<WizardComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<WizardComponent, "ode-wizard", never, {}, { "cancel": "cancel"; "previousStep": "previousStep"; "nextStep": "nextStep"; }, ["steps"], ["ode-step"], false>;
23
28
  }
@@ -1,5 +1,8 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class AnchorDirective {
2
3
  anchor: string;
3
4
  offset: number;
4
5
  onClick(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<AnchorDirective, never>;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AnchorDirective, "[anchor]", never, { "anchor": "anchor"; "offset": "offset"; }, {}, never, never, false>;
5
8
  }
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { InputFileService } from '../services/inputFile.service';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DragAndDropFilesDirective {
4
5
  private inputFileService;
5
6
  allowedExtensions: Array<string>;
@@ -15,4 +16,6 @@ export declare class DragAndDropFilesDirective {
15
16
  onDrop(event: any): void;
16
17
  private resetColors;
17
18
  private highlightColors;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropFilesDirective, never>;
20
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DragAndDropFilesDirective, "[dragAndDropFiles]", never, { "allowedExtensions": "allowedExtensions"; "maxFilesNumber": "maxFilesNumber"; "disabled": "disabled"; }, { "dragAndDrop": "dragAndDrop"; "invalidDragAndDrop": "invalidDragAndDrop"; }, never, never, false>;
18
21
  }
@@ -1,5 +1,6 @@
1
1
  import { ComponentFactoryResolver, ComponentRef, ViewContainerRef } from '@angular/core';
2
2
  import { ComponentDescriptor } from './component-descriptor.model';
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * Dynamically load the component describe with the @input dynamic-component
5
6
  */
@@ -12,4 +13,6 @@ export declare class DynamicComponentDirective {
12
13
  load(data?: any): void;
13
14
  isLoaded(): boolean;
14
15
  destroy(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentDirective, "[dynamic-component]", never, { "componentDesc": "dynamic-component"; }, {}, never, never, false>;
15
18
  }
@@ -1,15 +1,18 @@
1
1
  import { Compiler, ElementRef, ViewContainerRef } from '@angular/core';
2
2
  import { DynamicModuleImportsService } from '../services/dynamicModuleImports.service';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class DynamicTemplateDirective {
4
5
  private elementRef;
5
6
  private viewContainer;
6
7
  private compiler;
7
8
  private dynamicModuleImports;
8
9
  constructor(elementRef: ElementRef, viewContainer: ViewContainerRef, compiler: Compiler, dynamicModuleImports: DynamicModuleImportsService);
9
- templateContents: string;
10
+ set templateContents(html: string);
10
11
  private _html;
11
12
  private _selector;
12
13
  private context;
13
14
  private _createDynamicComponent;
14
15
  private _createDynamicModule;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTemplateDirective, never>;
17
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicTemplateDirective, "dynamic-template", never, { "templateContents": "template"; "context": "context"; }, {}, never, never, false>;
15
18
  }
@@ -1,4 +1,5 @@
1
1
  import { ElementRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  /**
3
4
  *
4
5
  * see https://developer.mozilla.org/en-US/docs/Web/API/URL/createObjectURL
@@ -8,4 +9,6 @@ export declare class ObjectURLDirective {
8
9
  constructor(elementRef: ElementRef);
9
10
  private objectURL;
10
11
  create(blob: Blob, filename: string): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ObjectURLDirective, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ObjectURLDirective, "[object-url]", never, {}, {}, never, never, false>;
11
14
  }