@progress-chef/platform-shared-components 0.0.111 → 0.0.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 (220) hide show
  1. package/esm2022/lib/atoms/alert/alert.component.mjs +40 -0
  2. package/esm2022/lib/atoms/alert/alert.module.mjs +24 -0
  3. package/esm2022/lib/atoms/angular-popup/angular-popup.component.mjs +34 -0
  4. package/esm2022/lib/atoms/angular-popup/angular-popup.module.mjs +32 -0
  5. package/esm2022/lib/atoms/atoms.module.mjs +304 -0
  6. package/esm2022/lib/atoms/avatar/avatar.component.mjs +62 -0
  7. package/esm2022/lib/atoms/avatar/avatar.module.mjs +32 -0
  8. package/esm2022/lib/atoms/breadcrumb/breadcrumb.component.mjs +58 -0
  9. package/esm2022/lib/atoms/breadcrumb/breadcrumb.module.mjs +40 -0
  10. package/esm2022/lib/atoms/button/button.component.mjs +85 -0
  11. package/esm2022/lib/atoms/button/button.module.mjs +36 -0
  12. package/esm2022/lib/atoms/button-group/button-group.component.mjs +51 -0
  13. package/esm2022/lib/atoms/button-group/button-group.module.mjs +36 -0
  14. package/esm2022/lib/atoms/checkbox/checkbox.component.mjs +47 -0
  15. package/esm2022/lib/atoms/checkbox/checkbox.module.mjs +36 -0
  16. package/esm2022/lib/atoms/chip/chip.component.mjs +32 -0
  17. package/esm2022/lib/atoms/chip/chip.module.mjs +44 -0
  18. package/esm2022/lib/atoms/chip-list/chip-list.component.mjs +87 -0
  19. package/esm2022/lib/atoms/chip-list/chip-list.module.mjs +52 -0
  20. package/esm2022/lib/atoms/clipboard/clipboard.component.mjs +111 -0
  21. package/esm2022/lib/atoms/clipboard/clipboard.module.mjs +40 -0
  22. package/esm2022/lib/atoms/container/container.component.mjs +28 -0
  23. package/esm2022/lib/atoms/container/container.module.mjs +24 -0
  24. package/esm2022/lib/atoms/date-range/date-range.component.mjs +49 -0
  25. package/esm2022/lib/atoms/date-range/date-range.module.mjs +39 -0
  26. package/esm2022/lib/atoms/datepicker/datepicker.component.mjs +91 -0
  27. package/esm2022/lib/atoms/datepicker/datepicker.module.mjs +35 -0
  28. package/esm2022/lib/atoms/drag-and-drop/drag-and-drop.component.mjs +88 -0
  29. package/esm2022/lib/atoms/drag-and-drop/drag-and-drop.module.mjs +44 -0
  30. package/esm2022/lib/atoms/dropdown/dropdown.component.mjs +200 -0
  31. package/esm2022/lib/atoms/dropdown/dropdown.module.mjs +43 -0
  32. package/esm2022/lib/atoms/dropdown-button/dropdown-button.component.mjs +46 -0
  33. package/esm2022/lib/atoms/dropdown-button/dropdown-button.module.mjs +36 -0
  34. package/esm2022/lib/atoms/dropdown-tree/dropdowntree.component.mjs +102 -0
  35. package/esm2022/lib/atoms/dropdown-tree/dropdowntree.module.mjs +43 -0
  36. package/esm2022/lib/atoms/expansion-panel/expansion-panel.component.mjs +51 -0
  37. package/esm2022/lib/atoms/expansion-panel/expansion-panel.module.mjs +56 -0
  38. package/esm2022/lib/atoms/icon/icon.component.mjs +37 -0
  39. package/esm2022/lib/atoms/icon/icon.module.mjs +21 -0
  40. package/esm2022/lib/atoms/labels/label.component.mjs +25 -0
  41. package/esm2022/lib/atoms/labels/label.module.mjs +32 -0
  42. package/esm2022/lib/atoms/list-views/list-view.component.mjs +91 -0
  43. package/esm2022/lib/atoms/list-views/list-view.module.mjs +60 -0
  44. package/esm2022/lib/atoms/loader/loader.component.mjs +48 -0
  45. package/esm2022/lib/atoms/loader/loader.module.mjs +28 -0
  46. package/esm2022/lib/atoms/loading-spinner/loading-spinner.component.mjs +25 -0
  47. package/esm2022/lib/atoms/loading-spinner/loading-spinner.module.mjs +24 -0
  48. package/esm2022/lib/atoms/multi-select-dropdown/multi-select-dropdown.component.mjs +150 -0
  49. package/esm2022/lib/atoms/multi-select-dropdown/multi-select-dropdown.module.mjs +43 -0
  50. package/esm2022/lib/atoms/notification/notification.component.mjs +69 -0
  51. package/esm2022/lib/atoms/notification/notification.module.mjs +24 -0
  52. package/esm2022/lib/atoms/numeric-textbox/numeric-textbox.component.mjs +75 -0
  53. package/esm2022/lib/atoms/numeric-textbox/numeric-textbox.module.mjs +35 -0
  54. package/esm2022/lib/atoms/progress-bar/progress-bar.component.mjs +19 -0
  55. package/esm2022/lib/atoms/progress-bar/progress-bar.module.mjs +24 -0
  56. package/esm2022/lib/atoms/radio-button/radio-button.component.mjs +53 -0
  57. package/esm2022/lib/atoms/radio-button/radio-button.module.mjs +39 -0
  58. package/esm2022/lib/atoms/search-box/search-box.component.mjs +108 -0
  59. package/esm2022/lib/atoms/search-box/search-box.module.mjs +40 -0
  60. package/esm2022/lib/atoms/slider/slider.component.mjs +58 -0
  61. package/esm2022/lib/atoms/slider/slider.module.mjs +28 -0
  62. package/esm2022/lib/atoms/stepper/stepper.component.mjs +38 -0
  63. package/esm2022/lib/atoms/stepper/stepper.module.mjs +52 -0
  64. package/esm2022/lib/atoms/switch/switch.component.mjs +53 -0
  65. package/esm2022/lib/atoms/switch/switch.module.mjs +59 -0
  66. package/esm2022/lib/atoms/text-area/text-area.component.mjs +93 -0
  67. package/esm2022/lib/atoms/text-area/text-area.module.mjs +36 -0
  68. package/esm2022/lib/atoms/textbox/textbox.component.mjs +115 -0
  69. package/esm2022/lib/atoms/textbox/textbox.module.mjs +40 -0
  70. package/esm2022/lib/atoms/time-picker/time-picker.component.mjs +83 -0
  71. package/esm2022/lib/atoms/time-picker/time-picker.module.mjs +35 -0
  72. package/esm2022/lib/atoms/timescheduler/timescheduler.component.mjs +79 -0
  73. package/esm2022/lib/atoms/timescheduler/timescheduler.module.mjs +35 -0
  74. package/esm2022/lib/atoms/toast-notification/toast-notification.module.mjs +31 -0
  75. package/esm2022/lib/atoms/toast-notification/toast-notification.service.mjs +160 -0
  76. package/esm2022/lib/atoms/tooltip/tooltip.component.mjs +48 -0
  77. package/esm2022/lib/atoms/tooltip/tooltip.module.mjs +24 -0
  78. package/esm2022/lib/atoms/typography/TypographyType.mjs +2 -0
  79. package/esm2022/lib/atoms/typography/typography.component.mjs +78 -0
  80. package/esm2022/lib/atoms/typography/typography.module.mjs +24 -0
  81. package/esm2022/lib/atoms/uploader/uploader.component.mjs +213 -0
  82. package/esm2022/lib/atoms/uploader/uploader.module.mjs +53 -0
  83. package/esm2022/lib/molecules/card/card-actions/card-actions.component.mjs +20 -0
  84. package/esm2022/lib/molecules/card/card-body/card-body.component.mjs +12 -0
  85. package/esm2022/lib/molecules/card/card-footer/card-footer.component.mjs +12 -0
  86. package/esm2022/lib/molecules/card/card-header/card-header.component.mjs +31 -0
  87. package/esm2022/lib/molecules/card/card.component.mjs +20 -0
  88. package/esm2022/lib/molecules/card/card.module.mjs +52 -0
  89. package/esm2022/lib/molecules/dialog/confirmation-dialog/confirmation-dialog.component.mjs +81 -0
  90. package/esm2022/lib/molecules/dialog/dialog-actions/dialog-actions.component.mjs +17 -0
  91. package/esm2022/lib/molecules/dialog/dialog-titlebar/dialog-titlebar.component.mjs +40 -0
  92. package/esm2022/lib/molecules/dialog/dialog.component.mjs +53 -0
  93. package/esm2022/lib/molecules/dialog/dialog.module.mjs +55 -0
  94. package/esm2022/lib/molecules/grid-form/grid-form.component.mjs +110 -0
  95. package/esm2022/lib/molecules/grid-form/grid-form.module.mjs +59 -0
  96. package/esm2022/lib/molecules/grid-layout/grid-layout-item/grid-layout-item.component.mjs +37 -0
  97. package/esm2022/lib/molecules/grid-layout/grid-layout.component.mjs +32 -0
  98. package/esm2022/lib/molecules/grid-layout/grid-layout.module.mjs +33 -0
  99. package/esm2022/lib/molecules/grid-pagination/grid-pagination-spacer/grid-pagination-spacer.component.mjs +12 -0
  100. package/esm2022/lib/molecules/grid-pagination/grid-pagination.component.mjs +621 -0
  101. package/esm2022/lib/molecules/grid-pagination/grid-pagination.module.mjs +84 -0
  102. package/esm2022/lib/molecules/grid-pagination/kebab-menu-filter.pipe.mjs +22 -0
  103. package/esm2022/lib/molecules/molecules.module.mjs +66 -0
  104. package/esm2022/lib/molecules/tabstrip/tabstrip-tab/tabstrip-tab.component.mjs +25 -0
  105. package/esm2022/lib/molecules/tabstrip/tabstrip.component.mjs +37 -0
  106. package/esm2022/lib/molecules/tabstrip/tabstrip.module.mjs +33 -0
  107. package/esm2022/lib/shared.component.mjs +4 -4
  108. package/esm2022/lib/shared.module.mjs +25 -10
  109. package/esm2022/public-api.mjs +114 -2
  110. package/fesm2022/progress-chef-platform-shared-components.mjs +5698 -14
  111. package/fesm2022/progress-chef-platform-shared-components.mjs.map +1 -1
  112. package/lib/atoms/alert/alert.component.d.ts +20 -0
  113. package/lib/atoms/alert/alert.module.d.ts +8 -0
  114. package/lib/atoms/angular-popup/angular-popup.component.d.ts +15 -0
  115. package/lib/atoms/angular-popup/angular-popup.module.d.ts +10 -0
  116. package/lib/atoms/atoms.module.d.ts +48 -0
  117. package/lib/atoms/avatar/avatar.component.d.ts +21 -0
  118. package/lib/atoms/avatar/avatar.module.d.ts +10 -0
  119. package/lib/atoms/breadcrumb/breadcrumb.component.d.ts +17 -0
  120. package/lib/atoms/breadcrumb/breadcrumb.module.d.ts +12 -0
  121. package/lib/atoms/button/button.component.d.ts +29 -0
  122. package/lib/atoms/button/button.module.d.ts +11 -0
  123. package/lib/atoms/button-group/button-group.component.d.ts +20 -0
  124. package/lib/atoms/button-group/button-group.module.d.ts +11 -0
  125. package/lib/atoms/checkbox/checkbox.component.d.ts +21 -0
  126. package/lib/atoms/checkbox/checkbox.module.d.ts +11 -0
  127. package/lib/atoms/chip/chip.component.d.ts +12 -0
  128. package/lib/atoms/chip/chip.module.d.ts +13 -0
  129. package/lib/atoms/chip-list/chip-list.component.d.ts +32 -0
  130. package/lib/atoms/chip-list/chip-list.module.d.ts +15 -0
  131. package/lib/atoms/clipboard/clipboard.component.d.ts +35 -0
  132. package/lib/atoms/clipboard/clipboard.module.d.ts +12 -0
  133. package/lib/atoms/container/container.component.d.ts +9 -0
  134. package/lib/atoms/container/container.module.d.ts +8 -0
  135. package/lib/atoms/date-range/date-range.component.d.ts +24 -0
  136. package/lib/atoms/date-range/date-range.module.d.ts +11 -0
  137. package/lib/atoms/datepicker/datepicker.component.d.ts +32 -0
  138. package/lib/atoms/datepicker/datepicker.module.d.ts +10 -0
  139. package/lib/atoms/drag-and-drop/drag-and-drop.component.d.ts +26 -0
  140. package/lib/atoms/drag-and-drop/drag-and-drop.module.d.ts +13 -0
  141. package/lib/atoms/dropdown/dropdown.component.d.ts +67 -0
  142. package/lib/atoms/dropdown/dropdown.module.d.ts +12 -0
  143. package/lib/atoms/dropdown-button/dropdown-button.component.d.ts +17 -0
  144. package/lib/atoms/dropdown-button/dropdown-button.module.d.ts +11 -0
  145. package/lib/atoms/dropdown-tree/dropdowntree.component.d.ts +35 -0
  146. package/lib/atoms/dropdown-tree/dropdowntree.module.d.ts +12 -0
  147. package/lib/atoms/expansion-panel/expansion-panel.component.d.ts +21 -0
  148. package/lib/atoms/expansion-panel/expansion-panel.module.d.ts +16 -0
  149. package/lib/atoms/icon/icon.component.d.ts +14 -0
  150. package/lib/atoms/icon/icon.module.d.ts +7 -0
  151. package/lib/atoms/labels/label.component.d.ts +12 -0
  152. package/lib/atoms/labels/label.module.d.ts +10 -0
  153. package/lib/atoms/list-views/list-view.component.d.ts +32 -0
  154. package/lib/atoms/list-views/list-view.module.d.ts +17 -0
  155. package/lib/atoms/loader/loader.component.d.ts +30 -0
  156. package/lib/atoms/loader/loader.module.d.ts +9 -0
  157. package/lib/atoms/loading-spinner/loading-spinner.component.d.ts +11 -0
  158. package/lib/atoms/loading-spinner/loading-spinner.module.d.ts +8 -0
  159. package/lib/atoms/multi-select-dropdown/multi-select-dropdown.component.d.ts +50 -0
  160. package/lib/atoms/multi-select-dropdown/multi-select-dropdown.module.d.ts +12 -0
  161. package/lib/atoms/notification/notification.component.d.ts +24 -0
  162. package/lib/atoms/notification/notification.module.d.ts +8 -0
  163. package/lib/atoms/numeric-textbox/numeric-textbox.component.d.ts +28 -0
  164. package/lib/atoms/numeric-textbox/numeric-textbox.module.d.ts +10 -0
  165. package/lib/atoms/progress-bar/progress-bar.component.d.ts +9 -0
  166. package/lib/atoms/progress-bar/progress-bar.module.d.ts +8 -0
  167. package/lib/atoms/radio-button/radio-button.component.d.ts +22 -0
  168. package/lib/atoms/radio-button/radio-button.module.d.ts +11 -0
  169. package/lib/atoms/search-box/search-box.component.d.ts +37 -0
  170. package/lib/atoms/search-box/search-box.module.d.ts +12 -0
  171. package/lib/atoms/slider/slider.component.d.ts +18 -0
  172. package/lib/atoms/slider/slider.module.d.ts +9 -0
  173. package/lib/atoms/stepper/stepper.component.d.ts +25 -0
  174. package/lib/atoms/stepper/stepper.module.d.ts +15 -0
  175. package/lib/atoms/switch/switch.component.d.ts +20 -0
  176. package/lib/atoms/switch/switch.module.d.ts +16 -0
  177. package/lib/atoms/text-area/text-area.component.d.ts +35 -0
  178. package/lib/atoms/text-area/text-area.module.d.ts +11 -0
  179. package/lib/atoms/textbox/textbox.component.d.ts +37 -0
  180. package/lib/atoms/textbox/textbox.module.d.ts +12 -0
  181. package/lib/atoms/time-picker/time-picker.component.d.ts +31 -0
  182. package/lib/atoms/time-picker/time-picker.module.d.ts +10 -0
  183. package/lib/atoms/timescheduler/timescheduler.component.d.ts +28 -0
  184. package/lib/atoms/timescheduler/timescheduler.module.d.ts +10 -0
  185. package/lib/atoms/toast-notification/toast-notification.module.d.ts +8 -0
  186. package/lib/atoms/toast-notification/toast-notification.service.d.ts +51 -0
  187. package/lib/atoms/tooltip/tooltip.component.d.ts +17 -0
  188. package/lib/atoms/tooltip/tooltip.module.d.ts +8 -0
  189. package/lib/atoms/typography/TypographyType.d.ts +1 -0
  190. package/lib/atoms/typography/typography.component.d.ts +25 -0
  191. package/lib/atoms/typography/typography.module.d.ts +8 -0
  192. package/lib/atoms/uploader/uploader.component.d.ts +64 -0
  193. package/lib/atoms/uploader/uploader.module.d.ts +14 -0
  194. package/lib/molecules/card/card-actions/card-actions.component.d.ts +8 -0
  195. package/lib/molecules/card/card-body/card-body.component.d.ts +5 -0
  196. package/lib/molecules/card/card-footer/card-footer.component.d.ts +5 -0
  197. package/lib/molecules/card/card-header/card-header.component.d.ts +11 -0
  198. package/lib/molecules/card/card.component.d.ts +7 -0
  199. package/lib/molecules/card/card.module.d.ts +14 -0
  200. package/lib/molecules/dialog/confirmation-dialog/confirmation-dialog.component.d.ts +20 -0
  201. package/lib/molecules/dialog/dialog-actions/dialog-actions.component.d.ts +7 -0
  202. package/lib/molecules/dialog/dialog-titlebar/dialog-titlebar.component.d.ts +16 -0
  203. package/lib/molecules/dialog/dialog.component.d.ts +20 -0
  204. package/lib/molecules/dialog/dialog.module.d.ts +15 -0
  205. package/lib/molecules/grid-form/grid-form.component.d.ts +33 -0
  206. package/lib/molecules/grid-form/grid-form.module.d.ts +16 -0
  207. package/lib/molecules/grid-layout/grid-layout-item/grid-layout-item.component.d.ts +14 -0
  208. package/lib/molecules/grid-layout/grid-layout.component.d.ts +11 -0
  209. package/lib/molecules/grid-layout/grid-layout.module.d.ts +10 -0
  210. package/lib/molecules/grid-pagination/grid-pagination-spacer/grid-pagination-spacer.component.d.ts +5 -0
  211. package/lib/molecules/grid-pagination/grid-pagination.component.d.ts +150 -0
  212. package/lib/molecules/grid-pagination/grid-pagination.module.d.ts +21 -0
  213. package/lib/molecules/grid-pagination/kebab-menu-filter.pipe.d.ts +7 -0
  214. package/lib/molecules/molecules.module.d.ts +14 -0
  215. package/lib/molecules/tabstrip/tabstrip-tab/tabstrip-tab.component.d.ts +10 -0
  216. package/lib/molecules/tabstrip/tabstrip.component.d.ts +15 -0
  217. package/lib/molecules/tabstrip/tabstrip.module.d.ts +10 -0
  218. package/lib/shared.module.d.ts +5 -2
  219. package/package.json +32 -5
  220. package/public-api.d.ts +108 -1
@@ -0,0 +1,37 @@
1
+ import { AfterViewInit, EventEmitter } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import { AutoCompleteComponent } from '@progress/kendo-angular-dropdowns';
5
+ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
6
+ import * as i0 from "@angular/core";
7
+ export declare class SearchBoxComponent implements AfterViewInit {
8
+ private themesService;
9
+ autocomplete: AutoCompleteComponent;
10
+ textbox: TextBoxComponent;
11
+ source: Array<string>;
12
+ data: Array<string>;
13
+ filterable: boolean;
14
+ size: 'small' | 'medium' | 'large' | 'none';
15
+ rounded: "small" | "medium" | "large" | "full" | "none";
16
+ fillMode: "solid" | "flat" | "outline" | "none";
17
+ clearButton: boolean;
18
+ icon: string;
19
+ autoComplete: boolean;
20
+ placeholder: string;
21
+ width: number;
22
+ suggest: boolean;
23
+ modelChange: EventEmitter<string>;
24
+ searchClick: EventEmitter<any>;
25
+ control: FormControl;
26
+ value: string;
27
+ debounceTimeMs: number;
28
+ private searchSubject;
29
+ private subscription;
30
+ constructor(themesService: ThemesService);
31
+ ngAfterViewInit(): void;
32
+ emitValueChange(ev: string): void;
33
+ onSearchClick(): void;
34
+ ngOnDestroy(): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBoxComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBoxComponent, "lib-search-box", never, { "source": { "alias": "source"; "required": false; }; "data": { "alias": "data"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "width": { "alias": "width"; "required": false; }; "suggest": { "alias": "suggest"; "required": false; }; "control": { "alias": "control"; "required": false; }; "value": { "alias": "value"; "required": false; }; "debounceTimeMs": { "alias": "debounceTimeMs"; "required": false; }; }, { "modelChange": "modelChange"; "searchClick": "searchClick"; }, never, never, false, never>;
37
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./search-box.component";
3
+ import * as i2 from "@progress/kendo-angular-dropdowns";
4
+ import * as i3 from "@progress/kendo-angular-inputs";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "@angular/forms";
7
+ import * as i6 from "../icon/icon.module";
8
+ export declare class SearchBoxModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBoxModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SearchBoxModule, [typeof i1.SearchBoxComponent], [typeof i2.AutoCompleteModule, typeof i3.InputsModule, typeof i4.CommonModule, typeof i5.ReactiveFormsModule, typeof i6.IconModule], [typeof i1.SearchBoxComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<SearchBoxModule>;
12
+ }
@@ -0,0 +1,18 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SliderComponent implements OnInit {
5
+ private themesService;
6
+ opened: boolean;
7
+ title: string;
8
+ frameNumber: number;
9
+ isSlideOpen: boolean;
10
+ sliderClose: EventEmitter<boolean>;
11
+ parentId: string;
12
+ constructor(themesService: ThemesService);
13
+ ngOnInit(): void;
14
+ closeSlider(e: any): void;
15
+ toggleSlide(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<SliderComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "lib-slider", never, { "opened": { "alias": "opened"; "required": false; }; "title": { "alias": "title"; "required": false; }; "frameNumber": { "alias": "frameNumber"; "required": false; }; "parentId": { "alias": "parentId"; "required": false; }; }, { "sliderClose": "sliderClose"; }, never, ["*"], false, never>;
18
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./slider.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../typography/typography.module";
5
+ export declare class SliderModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<SliderModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SliderModule, [typeof i1.SliderComponent], [typeof i2.CommonModule, typeof i3.TypographyModule], [typeof i1.SliderComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<SliderModule>;
9
+ }
@@ -0,0 +1,25 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { StepType, StepperOrientation } from '@progress/kendo-angular-layout';
3
+ import * as i0 from "@angular/core";
4
+ interface Steps {
5
+ label: string;
6
+ icon?: string;
7
+ iconClass?: string;
8
+ text?: string;
9
+ optional?: boolean;
10
+ disabled?: boolean;
11
+ isValid?: boolean;
12
+ }
13
+ export declare class StepperComponent {
14
+ steps: Steps[];
15
+ stepType: StepType;
16
+ stepperWidth: number;
17
+ current: number;
18
+ isLinear: boolean;
19
+ orientation: StepperOrientation;
20
+ currentStepChange: EventEmitter<number>;
21
+ emitStepChange(step: number): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "lib-stepper", never, { "steps": { "alias": "steps"; "required": false; }; "stepType": { "alias": "stepType"; "required": false; }; "stepperWidth": { "alias": "stepperWidth"; "required": false; }; "current": { "alias": "current"; "required": false; }; "isLinear": { "alias": "isLinear"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; }, { "currentStepChange": "currentStepChange"; }, never, never, false, never>;
24
+ }
25
+ export {};
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./stepper.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "@progress/kendo-angular-layout";
6
+ import * as i5 from "@progress/kendo-angular-icons";
7
+ import * as i6 from "@progress/kendo-angular-inputs";
8
+ import * as i7 from "@progress/kendo-angular-label";
9
+ import * as i8 from "@progress/kendo-angular-buttons";
10
+ import * as i9 from "@progress/kendo-angular-dropdowns";
11
+ export declare class StepperModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<StepperModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<StepperModule, [typeof i1.StepperComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.LayoutModule, typeof i5.IconsModule, typeof i6.InputsModule, typeof i7.LabelModule, typeof i8.ButtonsModule, typeof i9.DropDownsModule], [typeof i1.StepperComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<StepperModule>;
15
+ }
@@ -0,0 +1,20 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SwitchComponent {
5
+ model: any;
6
+ style: any;
7
+ onLabel: string;
8
+ offLabel: string;
9
+ disabled: boolean;
10
+ readonly: boolean;
11
+ size: "small" | "medium" | "large";
12
+ trackRounded: "small" | "medium" | "large" | "full" | "none";
13
+ thumbRounded: "small" | "medium" | "large" | "full" | "none";
14
+ fillMode: "solid" | "flat" | "outline" | "none";
15
+ control: FormControl;
16
+ valueChange: EventEmitter<any>;
17
+ onChange(event: any): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwitchComponent, "lib-switch", never, { "model": { "alias": "model"; "required": false; }; "style": { "alias": "style"; "required": false; }; "onLabel": { "alias": "onLabel"; "required": false; }; "offLabel": { "alias": "offLabel"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "trackRounded": { "alias": "trackRounded"; "required": false; }; "thumbRounded": { "alias": "thumbRounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
20
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./switch.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "@progress/kendo-angular-inputs";
6
+ import * as i5 from "@progress/kendo-angular-label";
7
+ import * as i6 from "@progress/kendo-angular-buttons";
8
+ import * as i7 from "@progress/kendo-angular-icons";
9
+ import * as i8 from "@progress/kendo-angular-layout";
10
+ import * as i9 from "@progress/kendo-angular-dropdowns";
11
+ import * as i10 from "../typography/typography.module";
12
+ export declare class SwitchModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SwitchModule, [typeof i1.SwitchComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.InputsModule, typeof i5.LabelModule, typeof i6.ButtonsModule, typeof i7.IconsModule, typeof i8.LayoutModule, typeof i9.DropDownsModule, typeof i10.TypographyModule], [typeof i1.SwitchComponent]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<SwitchModule>;
16
+ }
@@ -0,0 +1,35 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import { TextAreaComponent } from '@progress/kendo-angular-inputs';
5
+ import * as i0 from "@angular/core";
6
+ export declare class TextareaComponent {
7
+ private themesService;
8
+ textarea: TextAreaComponent | undefined;
9
+ placeholder: string;
10
+ resizable: 'vertical' | 'horizontal' | 'both' | 'none';
11
+ readonly: boolean;
12
+ disabled: boolean;
13
+ rows: number;
14
+ cols: number;
15
+ width: string;
16
+ value: string;
17
+ showError: boolean;
18
+ errorMessage: string;
19
+ control: FormControl;
20
+ set focus(value: any);
21
+ private _focus;
22
+ fillMode: "solid" | "flat" | "outline" | "none";
23
+ size: "small" | "medium" | "large" | "none";
24
+ rounded: "small" | "medium" | "large" | "full" | "none";
25
+ inputChange: EventEmitter<string>;
26
+ emitOnBlur: EventEmitter<string>;
27
+ emitOnFocus: EventEmitter<string>;
28
+ constructor(themesService: ThemesService);
29
+ emitValueChange(ev: string): void;
30
+ onBlur(): void;
31
+ onFocus(): void;
32
+ customCss(): "custom-fillMode" | undefined;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextareaComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextareaComponent, "lib-text-area", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "width": { "alias": "width"; "required": false; }; "value": { "alias": "value"; "required": false; }; "showError": { "alias": "showError"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "control": { "alias": "control"; "required": false; }; "focus": { "alias": "focus"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; }, { "inputChange": "inputChange"; "emitOnBlur": "emitOnBlur"; "emitOnFocus": "emitOnFocus"; }, never, never, false, never>;
35
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./text-area.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-inputs";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../typography/typography.module";
7
+ export declare class TextAreaModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TextAreaModule, [typeof i1.TextareaComponent], [typeof i2.CommonModule, typeof i3.InputsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule], [typeof i1.TextareaComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<TextAreaModule>;
11
+ }
@@ -0,0 +1,37 @@
1
+ import { AfterViewInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
5
+ import * as i0 from "@angular/core";
6
+ export declare class TextboxComponent implements AfterViewInit, OnChanges {
7
+ private themesService;
8
+ textbox: TextBoxComponent;
9
+ showPassword: boolean;
10
+ showEyeIcon: boolean;
11
+ clearButton: boolean;
12
+ placeholder: string;
13
+ width: string;
14
+ isDisabled: boolean;
15
+ readonly: boolean;
16
+ size: "small" | "medium" | "large";
17
+ rounded: "small" | "medium" | "large" | "full" | "none";
18
+ fillMode: "solid" | "flat" | "outline" | "none";
19
+ control: FormControl;
20
+ value: string;
21
+ type: string;
22
+ showError: boolean;
23
+ errorMessage: string;
24
+ focus: boolean;
25
+ inputChange: EventEmitter<string>;
26
+ focusEvent: EventEmitter<any>;
27
+ blurEvent: EventEmitter<any>;
28
+ constructor(themesService: ThemesService);
29
+ ngOnChanges(changes: SimpleChanges): void;
30
+ ngAfterViewInit(): void;
31
+ toggleVisibility(): void;
32
+ emitValueChange(ev: string): void;
33
+ onFocus(): void;
34
+ onBlur(): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextboxComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "lib-textbox", never, { "showEyeIcon": { "alias": "showEyeIcon"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "width": { "alias": "width"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "control": { "alias": "control"; "required": false; }; "value": { "alias": "value"; "required": false; }; "type": { "alias": "type"; "required": false; }; "showError": { "alias": "showError"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "focus": { "alias": "focus"; "required": false; }; }, { "inputChange": "inputChange"; "focusEvent": "focusEvent"; "blurEvent": "blurEvent"; }, never, never, false, never>;
37
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./textbox.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-inputs";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../icon/icon.module";
7
+ import * as i6 from "../typography/typography.module";
8
+ export declare class TextboxModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextboxModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TextboxModule, [typeof i1.TextboxComponent], [typeof i2.CommonModule, typeof i3.InputsModule, typeof i4.ReactiveFormsModule, typeof i5.IconModule, typeof i6.TypographyModule], [typeof i1.TextboxComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<TextboxModule>;
12
+ }
@@ -0,0 +1,31 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TimePickerComponent implements OnChanges {
6
+ private themesService;
7
+ isDisabled: boolean;
8
+ readonly: boolean;
9
+ incompleteDateValidation: boolean;
10
+ value: Date;
11
+ format: string;
12
+ steps: any;
13
+ allowCaretMode: boolean;
14
+ placeholder: string;
15
+ fillMode: "flat" | "solid" | "outline" | "none";
16
+ rounded: "small" | "medium" | "large" | "full" | "none";
17
+ size: "small" | "medium" | "large" | "none";
18
+ adaptiveMode: "none" | "auto";
19
+ control: FormControl;
20
+ id: any;
21
+ modelChange: EventEmitter<any>;
22
+ onOpenEvent: EventEmitter<any>;
23
+ onCloseEvent: EventEmitter<any>;
24
+ constructor(themesService: ThemesService);
25
+ ngOnChanges(changes: SimpleChanges): void;
26
+ onValueChange(ev: any): void;
27
+ onOpen(event: any): void;
28
+ onClose(event: any): void;
29
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerComponent, never>;
30
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimePickerComponent, "lib-time-picker", never, { "isDisabled": { "alias": "isDisabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "incompleteDateValidation": { "alias": "incompleteDateValidation"; "required": false; }; "value": { "alias": "value"; "required": false; }; "format": { "alias": "format"; "required": false; }; "steps": { "alias": "steps"; "required": false; }; "allowCaretMode": { "alias": "allowCaretMode"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "adaptiveMode": { "alias": "adaptiveMode"; "required": false; }; "control": { "alias": "control"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "modelChange": "modelChange"; "onOpenEvent": "onOpenEvent"; "onCloseEvent": "onCloseEvent"; }, never, never, false, never>;
31
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./time-picker.component";
3
+ import * as i2 from "@progress/kendo-angular-dateinputs";
4
+ import * as i3 from "@progress/kendo-angular-buttons";
5
+ import * as i4 from "@angular/forms";
6
+ export declare class TimePickerModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimePickerModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TimePickerModule, [typeof i1.TimePickerComponent], [typeof i2.DateInputsModule, typeof i3.ButtonsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule], [typeof i1.TimePickerComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<TimePickerModule>;
10
+ }
@@ -0,0 +1,28 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TimeschedulerComponent implements OnChanges {
6
+ private themesService;
7
+ model: Date;
8
+ size: 'small' | 'medium' | 'large' | 'none';
9
+ rounded: 'small' | 'medium' | 'large' | 'full' | 'none';
10
+ fillMode: 'solid' | 'flat' | 'outline' | 'none';
11
+ format: string;
12
+ isDisabled: boolean;
13
+ readonly: boolean;
14
+ placeholder: string;
15
+ control: FormControl;
16
+ min: Date;
17
+ max: Date;
18
+ disabledDates: Date[];
19
+ popupSettings: {};
20
+ modelChange: EventEmitter<Date>;
21
+ onOpenEvent: EventEmitter<any>;
22
+ constructor(themesService: ThemesService);
23
+ ngOnChanges(changes: SimpleChanges): void;
24
+ emitModelChange(ev: Date): void;
25
+ onOpen(event: any): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimeschedulerComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeschedulerComponent, "lib-timescheduler", never, { "model": { "alias": "model"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "format": { "alias": "format"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "control": { "alias": "control"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; }, { "modelChange": "modelChange"; "onOpenEvent": "onOpenEvent"; }, never, never, false, never>;
28
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./timescheduler.component";
3
+ import * as i2 from "@progress/kendo-angular-dateinputs";
4
+ import * as i3 from "@progress/kendo-angular-buttons";
5
+ import * as i4 from "@angular/forms";
6
+ export declare class TimeschedulerModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimeschedulerModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TimeschedulerModule, [typeof i1.TimeschedulerComponent], [typeof i2.DateInputsModule, typeof i3.ButtonsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule], [typeof i1.TimeschedulerComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<TimeschedulerModule>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@progress/kendo-angular-notification";
4
+ export declare class ToastNotificationModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToastNotificationModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ToastNotificationModule, never, [typeof i1.CommonModule, typeof i2.NotificationModule], never>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ToastNotificationModule>;
8
+ }
@@ -0,0 +1,51 @@
1
+ import { OnDestroy, RendererFactory2, TemplateRef } from '@angular/core';
2
+ import { NotificationRef, NotificationService } from '@progress/kendo-angular-notification';
3
+ import { Subscription } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export interface ToastNotification {
6
+ content: string | TemplateRef<any> | Function;
7
+ cssClass?: string | Array<string> | Object;
8
+ animation?: any;
9
+ position?: any;
10
+ type?: any;
11
+ closable?: boolean;
12
+ hideAfter?: number;
13
+ action: any;
14
+ }
15
+ export declare class ToastNotificationService implements OnDestroy {
16
+ private readonly notificationService;
17
+ httpStatusHandledInHttpInterceptor: Set<number>;
18
+ errMessagesSet: Set<unknown>;
19
+ allSubscriptions: Subscription[];
20
+ errorNotifications: NotificationRef[];
21
+ infoNotifications: NotificationRef[];
22
+ toastElement: HTMLElement | null;
23
+ notificationsContainerSelector: string;
24
+ private errNotificationClickListener;
25
+ private documentClickListener;
26
+ private readonly renderer;
27
+ notificationsContainer: any;
28
+ registerClickListenersTimeoutId: any;
29
+ notificationAfterHideSubscription$: Subscription | undefined;
30
+ constructor(notificationService: NotificationService, rendererFactory: RendererFactory2);
31
+ /**
32
+ * @param notification
33
+ * default notification config:
34
+ * - content: '',
35
+ * - animation: { type: 'slide', duration: 400 },
36
+ * - position: { horizontal: 'center', vertical: 'top' },
37
+ * - type: { style: 'success', icon: true },
38
+ * - hideAfter: 4000,
39
+ */
40
+ showToastNotification(notification: ToastNotification): void;
41
+ private processErrorNotification;
42
+ private registerClickListenersErrNotifications;
43
+ private onClickOutCloseErrors;
44
+ hideToastNotifications(filter: 'error' | 'info'): void;
45
+ hideErrorToastNotifications(): void;
46
+ hideInfoToastNotifications(): void;
47
+ private cleanUpListenersAndSubsForErr;
48
+ ngOnDestroy(): void;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToastNotificationService, never>;
50
+ static ɵprov: i0.ɵɵInjectableDeclaration<ToastNotificationService>;
51
+ }
@@ -0,0 +1,17 @@
1
+ import { ThemesService } from '@progress-chef/platform-themes-service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TooltipComponent {
4
+ private themesService;
5
+ position: 'top' | 'bottom' | 'left' | 'right';
6
+ tooltipWidth: number;
7
+ tooltipHeight: number;
8
+ showOn: 'hover' | 'click' | 'none';
9
+ closable: boolean;
10
+ title: string;
11
+ callout: boolean;
12
+ tooltip: any;
13
+ constructor(themesService: ThemesService);
14
+ onDocumentClick($event: any): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "lib-tooltip", never, { "position": { "alias": "position"; "required": false; }; "tooltipWidth": { "alias": "tooltipWidth"; "required": false; }; "tooltipHeight": { "alias": "tooltipHeight"; "required": false; }; "showOn": { "alias": "showOn"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "title": { "alias": "title"; "required": false; }; "callout": { "alias": "callout"; "required": false; }; }, {}, never, ["*", "div.tooltip-content"], false, never>;
17
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tooltip.component";
3
+ import * as i2 from "@progress/kendo-angular-tooltip";
4
+ export declare class TooltipModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, [typeof i1.TooltipComponent], [typeof i2.TooltipsModule], [typeof i1.TooltipComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<TooltipModule>;
8
+ }
@@ -0,0 +1 @@
1
+ export type TypographyType = 'DISPLAY_LARGE' | 'DISPLAY_MEDIUM' | 'DISPLAY_SMALL' | 'HEADING_LARGE' | 'HEADING_MEDIUM' | 'HEADING_SMALL' | 'SUBTITLE_REGULAR' | 'SUBTITLE_SMALL' | 'BODY_LARGE' | 'BODY_MEDIUM' | 'BODY_SMALL' | 'BODY_UNIT_LABEL' | 'OVERLINE_LABEL_REGULAR' | 'OVERLINE_LABEL_SMALL' | 'BUTTON_REGULAR' | 'BUTTON_SMALL';
@@ -0,0 +1,25 @@
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import { TypographyType } from './TypographyType';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TypographyComponent implements AfterViewInit, OnChanges {
6
+ private themesService;
7
+ private cdRef;
8
+ type: TypographyType;
9
+ defaultText: string;
10
+ isLabel: boolean;
11
+ hiddenLabel: string;
12
+ child: ElementRef | undefined;
13
+ labelChild: ElementRef | undefined;
14
+ showDefaultText: boolean;
15
+ font: string;
16
+ input_id: string;
17
+ constructor(themesService: ThemesService, cdRef: ChangeDetectorRef);
18
+ ngAfterViewInit(): void;
19
+ ngOnChanges(): void;
20
+ ngAfterContentChecked(): void;
21
+ checkForLabel(): void;
22
+ checkShowDefaultText(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<TypographyComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<TypographyComponent, "lib-typography", never, { "type": { "alias": "type"; "required": false; }; "defaultText": { "alias": "defaultText"; "required": false; }; "isLabel": { "alias": "isLabel"; "required": false; }; "hiddenLabel": { "alias": "hiddenLabel"; "required": false; }; }, {}, never, ["*"], false, never>;
25
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./typography.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class TypographyModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TypographyModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TypographyModule, [typeof i1.TypographyComponent], [typeof i2.CommonModule], [typeof i1.TypographyComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<TypographyModule>;
8
+ }
@@ -0,0 +1,64 @@
1
+ import { AfterViewInit, ElementRef, EventEmitter, OnChanges, OnInit, Renderer2, SimpleChanges, TemplateRef } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { CancelEvent, ChunkSettings, ErrorEvent, FileInfo, FileRestrictions, PauseEvent, RemoveEvent, ResumeEvent, SelectEvent, SuccessEvent, UploadComponent, UploadEvent, UploadProgressEvent } from '@progress/kendo-angular-upload';
4
+ import * as i0 from "@angular/core";
5
+ export declare class UploaderComponent implements OnChanges, OnInit, AfterViewInit {
6
+ private renderer;
7
+ private elRef;
8
+ uploadSaveUrl: string;
9
+ uploadRemoveUrl: string;
10
+ control: FormControl;
11
+ model: Array<FileInfo>;
12
+ isDisabled: boolean;
13
+ hasExternalDropzone: boolean;
14
+ showFileList: boolean;
15
+ autoUpload: boolean;
16
+ showDefaultActionButtons: boolean;
17
+ actionsLayout: "start" | "center" | "end" | "stretched";
18
+ multiple: boolean;
19
+ batch: boolean;
20
+ concurrent: boolean; /**to upload the files one by one, set this option to false */
21
+ withCredentials: boolean;
22
+ restrictions: FileRestrictions;
23
+ chunkSettings: ChunkSettings | boolean;
24
+ onRemoveEvent: EventEmitter<RemoveEvent>;
25
+ onCancelEvent: EventEmitter<CancelEvent>;
26
+ onUploadEvent: EventEmitter<UploadEvent>;
27
+ onResumeEvent: EventEmitter<ResumeEvent>;
28
+ onSelectEvent: EventEmitter<SelectEvent>;
29
+ onSuccessEvent: EventEmitter<SuccessEvent>;
30
+ onUploadProgressEvent: EventEmitter<UploadProgressEvent>;
31
+ onValueChangeEvent: EventEmitter<FileInfo[]>;
32
+ onErrorEvent: EventEmitter<ErrorEvent>;
33
+ onPauseEvent: EventEmitter<PauseEvent>;
34
+ onCompleteEvent: EventEmitter<any>;
35
+ onBlurEvent: EventEmitter<any>;
36
+ onFocusEvent: EventEmitter<any>;
37
+ onclearEvent: EventEmitter<any>;
38
+ fileTemplate: TemplateRef<any> | null;
39
+ fileInfoTemplate: TemplateRef<any> | null;
40
+ kendoUpload: UploadComponent;
41
+ allowedExtensionsText: string;
42
+ constructor(renderer: Renderer2, elRef: ElementRef);
43
+ ngOnInit(): void;
44
+ ngAfterViewInit(): void;
45
+ updateAllowedExtensionsText(): void;
46
+ ngOnChanges(changes: SimpleChanges): void;
47
+ removeEventHandler(event: RemoveEvent): void;
48
+ cancelEventHandler(event: CancelEvent): void;
49
+ uploadEventHandler(event: UploadEvent): void;
50
+ resumeEventHandler(event: ResumeEvent): void;
51
+ selectEventHandler(event: SelectEvent): void;
52
+ successEventHandler(event: SuccessEvent): void;
53
+ uploadProgressEventHandler(event: UploadProgressEvent): void;
54
+ valueChangeEventHandler(event: FileInfo[]): void;
55
+ errorEventHandler(event: ErrorEvent): void;
56
+ pauseEventHandler(event: PauseEvent): void;
57
+ clearEventHandler(): void;
58
+ completeEventHandler(): void;
59
+ blurHandler(): void;
60
+ focusHandler(): void;
61
+ setActionButtonClass(showDefaultActionButtons?: boolean): void;
62
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploaderComponent, never>;
63
+ static ɵcmp: i0.ɵɵComponentDeclaration<UploaderComponent, "lib-uploader", never, { "uploadSaveUrl": { "alias": "uploadSaveUrl"; "required": false; }; "uploadRemoveUrl": { "alias": "uploadRemoveUrl"; "required": false; }; "control": { "alias": "control"; "required": false; }; "model": { "alias": "model"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "hasExternalDropzone": { "alias": "hasExternalDropzone"; "required": false; }; "showFileList": { "alias": "showFileList"; "required": false; }; "autoUpload": { "alias": "autoUpload"; "required": false; }; "showDefaultActionButtons": { "alias": "showDefaultActionButtons"; "required": false; }; "actionsLayout": { "alias": "actionsLayout"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "batch": { "alias": "batch"; "required": false; }; "concurrent": { "alias": "concurrent"; "required": false; }; "withCredentials": { "alias": "withCredentials"; "required": false; }; "restrictions": { "alias": "restrictions"; "required": false; }; "chunkSettings": { "alias": "chunkSettings"; "required": false; }; }, { "onRemoveEvent": "onRemoveEvent"; "onCancelEvent": "onCancelEvent"; "onUploadEvent": "onUploadEvent"; "onResumeEvent": "onResumeEvent"; "onSelectEvent": "onSelectEvent"; "onSuccessEvent": "onSuccessEvent"; "onUploadProgressEvent": "onUploadProgressEvent"; "onValueChangeEvent": "onValueChangeEvent"; "onErrorEvent": "onErrorEvent"; "onPauseEvent": "onPauseEvent"; "onCompleteEvent": "onCompleteEvent"; "onBlurEvent": "onBlurEvent"; "onFocusEvent": "onFocusEvent"; "onclearEvent": "onclearEvent"; }, ["fileTemplate", "fileInfoTemplate"], never, false, never>;
64
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./uploader.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-upload";
5
+ import * as i4 from "@progress/kendo-angular-buttons";
6
+ import * as i5 from "@angular/forms";
7
+ import * as i6 from "@progress/kendo-angular-layout";
8
+ import * as i7 from "../typography/typography.module";
9
+ import * as i8 from "@angular/common/http";
10
+ export declare class UploaderModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<UploaderModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UploaderModule, [typeof i1.UploaderComponent], [typeof i2.CommonModule, typeof i3.UploadsModule, typeof i4.ButtonsModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i6.LayoutModule, typeof i7.TypographyModule, typeof i8.HttpClientModule], [typeof i1.UploaderComponent, typeof i3.UploadsModule]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<UploaderModule>;
14
+ }
@@ -0,0 +1,8 @@
1
+ import { ActionsLayout, Orientation } from '@progress/kendo-angular-layout';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CardActionsComponent {
4
+ layout: ActionsLayout;
5
+ orientation: Orientation;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardActionsComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardActionsComponent, "lib-card-actions", never, { "layout": { "alias": "layout"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, ["*"], false, never>;
8
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardBodyComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardBodyComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardBodyComponent, "lib-card-body", never, {}, {}, never, ["*"], false, never>;
5
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardFooterComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "lib-card-footer", never, {}, {}, never, ["*"], false, never>;
5
+ }
@@ -0,0 +1,11 @@
1
+ import { TypographyType } from '../../../atoms/typography/TypographyType';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CardHeaderComponent {
4
+ title: string;
5
+ subtitle: string;
6
+ cardNumber: number;
7
+ titleFont: TypographyType;
8
+ subtitleFont: TypographyType;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "lib-card-header", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "cardNumber": { "alias": "cardNumber"; "required": false; }; "titleFont": { "alias": "titleFont"; "required": false; }; "subtitleFont": { "alias": "subtitleFont"; "required": false; }; }, {}, never, ["*"], false, never>;
11
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class CardComponent {
3
+ width: string;
4
+ orientation: 'vertical' | 'horizontal';
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "lib-card", never, { "width": { "alias": "width"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, ["*"], false, never>;
7
+ }