@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,67 @@
1
+ import { AfterViewInit, EventEmitter, OnChanges, Renderer2, SimpleChanges } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { LoaderType, LoaderSize, LoaderThemeColor } from '../loader/loader.component';
4
+ import { ThemesService } from '@progress-chef/platform-themes-service';
5
+ import { TypographyType } from '../typography/TypographyType';
6
+ import { ComboBoxComponent, DropDownListComponent } from '@progress/kendo-angular-dropdowns';
7
+ import * as i0 from "@angular/core";
8
+ export declare class DropdownComponent implements OnChanges, AfterViewInit {
9
+ private themesService;
10
+ private renderer;
11
+ elementId: string;
12
+ label: string;
13
+ data: Array<any>;
14
+ isDisabled: boolean;
15
+ clearButton: boolean;
16
+ fillMode: "flat" | "solid" | "outline" | "none";
17
+ filterable: boolean;
18
+ popupClass: string;
19
+ showDefaultItem: boolean;
20
+ _useAsComboBox: boolean;
21
+ set useAsComboBox(value: boolean);
22
+ _selectedItem: any;
23
+ set selectedItem(value: any);
24
+ readonly: boolean;
25
+ rounded: "small" | "medium" | "large" | "full" | "none";
26
+ size: "small" | "medium" | "large" | "none";
27
+ suggest: boolean;
28
+ textField: string;
29
+ value: any;
30
+ valueField: string;
31
+ valuePrimitive: boolean;
32
+ model: any;
33
+ modelChange: EventEmitter<any>;
34
+ control: FormControl;
35
+ fontType: TypographyType;
36
+ focus: boolean;
37
+ loading: boolean;
38
+ loaderType: LoaderType;
39
+ loaderSize: LoaderSize;
40
+ loaderTheme: LoaderThemeColor;
41
+ width: string;
42
+ infiniteScrollLoader: boolean;
43
+ showError: boolean;
44
+ errorMessage: string;
45
+ defaultItem: any;
46
+ onScrollEnd: EventEmitter<any>;
47
+ scrollListener: any;
48
+ constructor(themesService: ThemesService, renderer: Renderer2);
49
+ comboBox: ComboBoxComponent;
50
+ dropdownList: DropDownListComponent;
51
+ itemDisabled(itemArgs: {
52
+ dataItem: any;
53
+ index: number;
54
+ }): boolean;
55
+ _placeholder: any;
56
+ set placeholder(value: any);
57
+ ngOnChanges(changes: SimpleChanges): void;
58
+ ngAfterViewInit(): void;
59
+ emitModelChange(ev: any): void;
60
+ onScroll(event: any): void;
61
+ onDropdownOpen(): void;
62
+ getDefaultValClass(): "" | "default-text";
63
+ onDropdownClose(): void;
64
+ getDefaultItem(): any;
65
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
66
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "lib-dropdown", never, { "elementId": { "alias": "elementId"; "required": false; }; "label": { "alias": "label"; "required": false; }; "data": { "alias": "data"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "popupClass": { "alias": "popupClass"; "required": false; }; "showDefaultItem": { "alias": "showDefaultItem"; "required": false; }; "useAsComboBox": { "alias": "useAsComboBox"; "required": false; }; "selectedItem": { "alias": "selectedItem"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "suggest": { "alias": "suggest"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "value": { "alias": "value"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "model": { "alias": "model"; "required": false; }; "control": { "alias": "control"; "required": false; }; "fontType": { "alias": "fontType"; "required": false; }; "focus": { "alias": "focus"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loaderType": { "alias": "loaderType"; "required": false; }; "loaderSize": { "alias": "loaderSize"; "required": false; }; "loaderTheme": { "alias": "loaderTheme"; "required": false; }; "width": { "alias": "width"; "required": false; }; "infiniteScrollLoader": { "alias": "infiniteScrollLoader"; "required": false; }; "showError": { "alias": "showError"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "modelChange": "modelChange"; "onScrollEnd": "onScrollEnd"; }, never, ["header"], false, never>;
67
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dropdown.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-dropdowns";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../typography/typography.module";
7
+ import * as i6 from "../loader/loader.module";
8
+ export declare class DropdownModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DropdownModule, [typeof i1.DropdownComponent], [typeof i2.CommonModule, typeof i3.DropDownsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule, typeof i6.LoaderModule], [typeof i1.DropdownComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<DropdownModule>;
12
+ }
@@ -0,0 +1,17 @@
1
+ import { TypographyType } from '../typography/TypographyType';
2
+ import { ButtonSize, ButtonRounded, ButtonFillMode, ButtonThemeColor } from '@progress/kendo-angular-buttons';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DropdownButtonComponent {
5
+ data: any[];
6
+ size: ButtonSize;
7
+ rounded: ButtonRounded;
8
+ fillMode: ButtonFillMode;
9
+ themeColor: ButtonThemeColor;
10
+ dropdownBtnText: string;
11
+ fontType: TypographyType;
12
+ isDisabled: boolean;
13
+ popupSettings: {};
14
+ buttonClass: any;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownButtonComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdownButtonComponent, "lib-dropdown-button", never, { "data": { "alias": "data"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "dropdownBtnText": { "alias": "dropdownBtnText"; "required": false; }; "fontType": { "alias": "fontType"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "popupSettings": { "alias": "popupSettings"; "required": false; }; "buttonClass": { "alias": "buttonClass"; "required": false; }; }, {}, never, never, false, never>;
17
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dropdown-button.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../typography/typography.module";
5
+ import * as i4 from "@progress/kendo-angular-buttons";
6
+ import * as i5 from "../icon/icon.module";
7
+ export declare class DropdownButtonModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdownButtonModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DropdownButtonModule, [typeof i1.DropdownButtonComponent], [typeof i2.CommonModule, typeof i3.TypographyModule, typeof i4.ButtonsModule, typeof i5.IconModule], [typeof i1.DropdownButtonComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<DropdownButtonModule>;
11
+ }
@@ -0,0 +1,35 @@
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 DropdowntreeComponent implements OnChanges {
6
+ private themesService;
7
+ childrenField: string;
8
+ hasDefaultValue: boolean;
9
+ isDisabled: boolean;
10
+ listHeight: number;
11
+ value: any;
12
+ placeholder: string;
13
+ clearButton: boolean;
14
+ expandBy: string;
15
+ expandedKeys: number[];
16
+ data: any[];
17
+ textField: string;
18
+ readonly: boolean;
19
+ valueField: string;
20
+ footerBtnLabel: string;
21
+ footerBtnIcon: string;
22
+ hasFooterBtn: boolean;
23
+ rounded: "small" | "medium" | "large" | "full" | "none";
24
+ fillMode: "flat" | "solid" | "outline" | "none";
25
+ size: "small" | "medium" | "large" | "none";
26
+ control: FormControl;
27
+ selectedItem: EventEmitter<any>;
28
+ buttonClick: EventEmitter<any>;
29
+ constructor(themesService: ThemesService);
30
+ ngOnChanges(changes: SimpleChanges): void;
31
+ valueChange(e: any): void;
32
+ onButtonClick(e: any): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdowntreeComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<DropdowntreeComponent, "lib-dropdowntree", never, { "childrenField": { "alias": "childrenField"; "required": false; }; "hasDefaultValue": { "alias": "hasDefaultValue"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "listHeight": { "alias": "listHeight"; "required": false; }; "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "expandBy": { "alias": "expandBy"; "required": false; }; "expandedKeys": { "alias": "expandedKeys"; "required": false; }; "data": { "alias": "data"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "footerBtnLabel": { "alias": "footerBtnLabel"; "required": false; }; "footerBtnIcon": { "alias": "footerBtnIcon"; "required": false; }; "hasFooterBtn": { "alias": "hasFooterBtn"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "size": { "alias": "size"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "selectedItem": "selectedItem"; "buttonClick": "buttonClick"; }, never, never, false, never>;
35
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dropdowntree.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-dropdowns";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../typography/typography.module";
7
+ import * as i6 from "../button/button.module";
8
+ export declare class DropdowntreeModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<DropdowntreeModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DropdowntreeModule, [typeof i1.DropdowntreeComponent], [typeof i2.CommonModule, typeof i3.DropDownsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule, typeof i6.ButtonModule], [typeof i1.DropdowntreeComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<DropdowntreeModule>;
12
+ }
@@ -0,0 +1,21 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import { ExpansionPanelActionEvent } from '@progress/kendo-angular-layout/expansionpanel/events/action-event';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ExpansionPanelComponent {
6
+ private themesService;
7
+ collapseIcon: any;
8
+ expandIcon: any;
9
+ title: string;
10
+ subtitle: string;
11
+ data: string;
12
+ expanded: true | false;
13
+ customHeader: boolean;
14
+ disabled: boolean;
15
+ expandCollapseAllowed: any;
16
+ action: EventEmitter<any>;
17
+ constructor(themesService: ThemesService);
18
+ onAction(e: ExpansionPanelActionEvent): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExpansionPanelComponent, "lib-expansion-panel", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "data": { "alias": "data"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "customHeader": { "alias": "customHeader"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "expandCollapseAllowed": { "alias": "expandCollapseAllowed"; "required": false; }; }, { "action": "action"; }, never, ["header", "*"], false, never>;
21
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./expansion-panel.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-layout";
5
+ import * as i4 from "@progress/kendo-angular-icons";
6
+ import * as i5 from "@progress/kendo-angular-buttons";
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-dropdowns";
10
+ import * as i9 from "../container/container.module";
11
+ import * as i10 from "../typography/typography.module";
12
+ export declare class ExpansionPanelModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ExpansionPanelModule, [typeof i1.ExpansionPanelComponent], [typeof i2.CommonModule, typeof i3.LayoutModule, typeof i4.IconsModule, typeof i5.ButtonsModule, typeof i6.InputsModule, typeof i7.LabelModule, typeof i8.DropDownsModule, typeof i9.ContainerModule, typeof i10.TypographyModule], [typeof i1.ExpansionPanelComponent]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<ExpansionPanelModule>;
16
+ }
@@ -0,0 +1,14 @@
1
+ import { ThemesService } from '@progress-chef/platform-themes-service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IconComponent {
4
+ private themesService;
5
+ name: string;
6
+ _projectedIcon: boolean;
7
+ set projectedIcon(value: boolean);
8
+ _fontSize: number;
9
+ set fontSize(value: number);
10
+ type: 'success' | 'error';
11
+ constructor(themesService: ThemesService);
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "lib-icon", never, { "name": { "alias": "name"; "required": false; }; "projectedIcon": { "alias": "projectedIcon"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
14
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./icon.component";
3
+ export declare class IconModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IconModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IconModule, [typeof i1.IconComponent], never, [typeof i1.IconComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<IconModule>;
7
+ }
@@ -0,0 +1,12 @@
1
+ import { TypographyType } from '../typography/TypographyType';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class LabelComponent {
5
+ private themesService;
6
+ text: string;
7
+ hiddenLabel: string;
8
+ labelFont: TypographyType;
9
+ constructor(themesService: ThemesService);
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "lib-label", never, { "text": { "alias": "text"; "required": false; }; "hiddenLabel": { "alias": "hiddenLabel"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; }, {}, never, ["*"], false, never>;
12
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./label.component";
3
+ import * as i2 from "@progress/kendo-angular-label";
4
+ import * as i3 from "../typography/typography.module";
5
+ import * as i4 from "@angular/common";
6
+ export declare class LabelsModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<LabelsModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LabelsModule, [typeof i1.LabelComponent], [typeof i2.LabelModule, typeof i3.TypographyModule, typeof i4.CommonModule], [typeof i1.LabelComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<LabelsModule>;
10
+ }
@@ -0,0 +1,32 @@
1
+ import { EventEmitter, OnChanges, OnInit, TemplateRef } from '@angular/core';
2
+ import { PageChangeEvent } from '@progress/kendo-angular-grid';
3
+ import { PageSizeChangeEvent } from '@progress/kendo-angular-pager';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ListViewComponent implements OnInit, OnChanges {
6
+ templateHeader: TemplateRef<any> | null;
7
+ templateFooter: TemplateRef<any> | null;
8
+ tempListItem: TemplateRef<any> | null;
9
+ templateLoader: TemplateRef<any> | null;
10
+ scrollBottom: EventEmitter<any>;
11
+ pageChange: EventEmitter<PageChangeEvent>;
12
+ pageSizeChange: EventEmitter<PageSizeChangeEvent>;
13
+ data: any;
14
+ customHeader: boolean;
15
+ customFooter: boolean;
16
+ height: number;
17
+ enableEndlessScroll: boolean;
18
+ noOfListItems: number;
19
+ listItemStyle: any;
20
+ loading: boolean;
21
+ navigable: boolean;
22
+ containerStyle: any;
23
+ listItemCount: EventEmitter<number>;
24
+ view: any[];
25
+ ngOnInit(): void;
26
+ ngOnChanges(): void;
27
+ onGetListItemCount(): void;
28
+ onScrollToBottom(): void;
29
+ setListItemOnScroll(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListViewComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "lib-list-view", never, { "data": { "alias": "data"; "required": false; }; "customHeader": { "alias": "customHeader"; "required": false; }; "customFooter": { "alias": "customFooter"; "required": false; }; "height": { "alias": "height"; "required": false; }; "enableEndlessScroll": { "alias": "enableEndlessScroll"; "required": false; }; "noOfListItems": { "alias": "noOfListItems"; "required": false; }; "listItemStyle": { "alias": "listItemStyle"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "containerStyle": { "alias": "containerStyle"; "required": false; }; }, { "scrollBottom": "scrollBottom"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; "listItemCount": "listItemCount"; }, ["templateHeader", "templateFooter", "tempListItem", "templateLoader"], never, false, never>;
32
+ }
@@ -0,0 +1,17 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./list-view.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-layout";
5
+ import * as i4 from "@progress/kendo-angular-icons";
6
+ import * as i5 from "@progress/kendo-angular-buttons";
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-dropdowns";
10
+ import * as i9 from "../container/container.module";
11
+ import * as i10 from "../typography/typography.module";
12
+ import * as i11 from "@progress/kendo-angular-listview";
13
+ export declare class ListViewsModule {
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListViewsModule, never>;
15
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ListViewsModule, [typeof i1.ListViewComponent], [typeof i2.CommonModule, typeof i3.LayoutModule, typeof i4.IconsModule, typeof i5.ButtonsModule, typeof i6.InputsModule, typeof i7.LabelModule, typeof i8.DropDownsModule, typeof i9.ContainerModule, typeof i10.TypographyModule, typeof i11.ListViewModule], [typeof i1.ListViewComponent]>;
16
+ static ɵinj: i0.ɵɵInjectorDeclaration<ListViewsModule>;
17
+ }
@@ -0,0 +1,30 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare enum LoaderSize {
3
+ small = "small",
4
+ medium = "medium",
5
+ large = "large"
6
+ }
7
+ export declare enum LoaderType {
8
+ pulsing = "pulsing",
9
+ infiniteSpinner = "infinite-spinner",
10
+ convergingSpinner = "converging-spinner"
11
+ }
12
+ export declare enum LoaderThemeColor {
13
+ primary = "primary",
14
+ secondary = "secondary",
15
+ tertiary = "tertiary",
16
+ info = "info",
17
+ success = "success",
18
+ warning = "warning",
19
+ error = "error",
20
+ dark = "dark",
21
+ light = "light",
22
+ inverse = "inverse"
23
+ }
24
+ export declare class LoaderComponent {
25
+ size: LoaderSize;
26
+ type: LoaderType;
27
+ themeColor: LoaderThemeColor;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoaderComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoaderComponent, "lib-loader", never, { "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; }, {}, never, never, false, never>;
30
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./loader.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-indicators";
5
+ export declare class LoaderModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoaderModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LoaderModule, [typeof i1.LoaderComponent], [typeof i2.CommonModule, typeof i3.IndicatorsModule], [typeof i1.LoaderComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<LoaderModule>;
9
+ }
@@ -0,0 +1,11 @@
1
+ import { ThemesService } from '@progress-chef/platform-themes-service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class LoadingSpinnerComponent {
4
+ private themesService;
5
+ width: number;
6
+ height: number;
7
+ visible: boolean;
8
+ constructor(themesService: ThemesService);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingSpinnerComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoadingSpinnerComponent, "lib-loading-spinner", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, never, false, never>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./loading-spinner.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class LoadingSpinnerModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingSpinnerModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LoadingSpinnerModule, [typeof i1.LoadingSpinnerComponent], [typeof i2.CommonModule], [typeof i1.LoadingSpinnerComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<LoadingSpinnerModule>;
8
+ }
@@ -0,0 +1,50 @@
1
+ import { EventEmitter, Renderer2, SimpleChanges } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import { MultiSelectComponent } from '@progress/kendo-angular-dropdowns';
5
+ import { TypographyType } from '../typography/TypographyType';
6
+ import { LoaderSize, LoaderType, LoaderThemeColor } from '../loader/loader.component';
7
+ import * as i0 from "@angular/core";
8
+ export declare class MultiSelectDropdownComponent {
9
+ private themesService;
10
+ private renderer;
11
+ scrollListener: any;
12
+ label: string;
13
+ elementId: string;
14
+ data: Array<any>;
15
+ isDisabled: boolean;
16
+ clearButton: boolean;
17
+ fillMode: "flat" | "solid" | "outline" | "none";
18
+ checkboxes: boolean;
19
+ filterable: boolean;
20
+ placeholder: string;
21
+ readonly: boolean;
22
+ rounded: "small" | "medium" | "large" | "full" | "none";
23
+ size: "small" | "medium" | "large" | "none";
24
+ textField: string;
25
+ valueField: any;
26
+ model: any;
27
+ valuePrimitive: boolean;
28
+ modelChange: EventEmitter<any>;
29
+ control: FormControl;
30
+ fontType: TypographyType;
31
+ focus: boolean;
32
+ autoClose: boolean;
33
+ loading: boolean;
34
+ loaderType: LoaderType;
35
+ loaderSize: LoaderSize;
36
+ loaderTheme: LoaderThemeColor;
37
+ popupClass: string;
38
+ infiniteScrollLoader: boolean;
39
+ onScrollEnd: EventEmitter<any>;
40
+ constructor(themesService: ThemesService, renderer: Renderer2);
41
+ multiSelect: MultiSelectComponent;
42
+ ngOnChanges(changes: SimpleChanges): void;
43
+ ngAfterViewInit(): void;
44
+ emitModelChange(ev: any): void;
45
+ onScroll(event: any): void;
46
+ onDropdownOpen(): void;
47
+ onDropdownClose(): void;
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectDropdownComponent, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectDropdownComponent, "lib-multi-select-dropdown", never, { "label": { "alias": "label"; "required": false; }; "elementId": { "alias": "elementId"; "required": false; }; "data": { "alias": "data"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "checkboxes": { "alias": "checkboxes"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "model": { "alias": "model"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "control": { "alias": "control"; "required": false; }; "fontType": { "alias": "fontType"; "required": false; }; "focus": { "alias": "focus"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loaderType": { "alias": "loaderType"; "required": false; }; "loaderSize": { "alias": "loaderSize"; "required": false; }; "loaderTheme": { "alias": "loaderTheme"; "required": false; }; "popupClass": { "alias": "popupClass"; "required": false; }; "infiniteScrollLoader": { "alias": "infiniteScrollLoader"; "required": false; }; }, { "modelChange": "modelChange"; "onScrollEnd": "onScrollEnd"; }, never, never, false, never>;
50
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./multi-select-dropdown.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-dropdowns";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../typography/typography.module";
7
+ import * as i6 from "../loader/loader.module";
8
+ export declare class MultiSelectDropdownModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectDropdownModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MultiSelectDropdownModule, [typeof i1.MultiSelectDropdownComponent], [typeof i2.CommonModule, typeof i3.DropDownsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule, typeof i6.LoaderModule], [typeof i1.MultiSelectDropdownComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<MultiSelectDropdownModule>;
12
+ }
@@ -0,0 +1,24 @@
1
+ import { AfterViewInit, EventEmitter } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare enum Type {
5
+ success = "success",
6
+ error = "error",
7
+ warning = "warning",
8
+ info = "info",
9
+ none = "none"
10
+ }
11
+ export declare class NotificationComponent implements AfterViewInit {
12
+ private themesService;
13
+ type: Type;
14
+ timeout: number;
15
+ dismissed: EventEmitter<any>;
16
+ slideDownAnim: any;
17
+ get theType(): Type;
18
+ private timeOutRef;
19
+ constructor(themesService: ThemesService);
20
+ ngAfterViewInit(): void;
21
+ handleClose: () => void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationComponent, "lib-notification", never, { "type": { "alias": "type"; "required": false; }; "timeout": { "alias": "timeout"; "required": false; }; }, { "dismissed": "dismissed"; }, never, ["*"], false, never>;
24
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./notification.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class NotificationModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NotificationModule, [typeof i1.NotificationComponent], [typeof i2.CommonModule], [typeof i1.NotificationComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<NotificationModule>;
8
+ }
@@ -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 NumericTextboxComponent implements OnChanges {
6
+ private themesService;
7
+ autoCorrect: boolean;
8
+ width: number;
9
+ isDisabled: boolean;
10
+ value: number;
11
+ min: number;
12
+ max: number;
13
+ step: number;
14
+ format: string;
15
+ fillMode: "flat" | "solid" | "outline" | "none";
16
+ rounded: "small" | "medium" | "large" | "full" | "none";
17
+ size: "small" | "medium" | "large" | "none";
18
+ readonly: boolean;
19
+ placeholder: string;
20
+ model: any;
21
+ modelChange: EventEmitter<any>;
22
+ control: FormControl;
23
+ constructor(themesService: ThemesService);
24
+ ngOnChanges(changes: SimpleChanges): void;
25
+ emitModelChange(ev: any): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextboxComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<NumericTextboxComponent, "lib-numeric-textbox", never, { "autoCorrect": { "alias": "autoCorrect"; "required": false; }; "width": { "alias": "width"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "format": { "alias": "format"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "model": { "alias": "model"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "modelChange": "modelChange"; }, never, never, false, never>;
28
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./numeric-textbox.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
+ export declare class NumericTextboxModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextboxModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NumericTextboxModule, [typeof i1.NumericTextboxComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i3.ReactiveFormsModule, typeof i4.InputsModule], [typeof i1.NumericTextboxComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<NumericTextboxModule>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import { ThemesService } from '@progress-chef/platform-themes-service';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ProgressBarComponent {
4
+ private themesService;
5
+ value: number;
6
+ constructor(themesService: ThemesService);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "lib-progress-bar", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
9
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./progress-bar.component";
3
+ import * as i2 from "@progress/kendo-angular-progressbar";
4
+ export declare class ProgressBarsModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarsModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressBarsModule, [typeof i1.ProgressBarComponent], [typeof i2.ProgressBarModule], [typeof i1.ProgressBarComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ProgressBarsModule>;
8
+ }
@@ -0,0 +1,22 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import { TypographyType } from '../typography/TypographyType';
5
+ import * as i0 from "@angular/core";
6
+ export declare class RadioButtonComponent {
7
+ private themesService;
8
+ size: "small" | "medium" | "large" | "none";
9
+ name: string;
10
+ value: string;
11
+ control: FormControl;
12
+ label: string;
13
+ labelPosition: "before" | "after";
14
+ labelFont: TypographyType;
15
+ elementId: string;
16
+ model: string;
17
+ modelChange: EventEmitter<string>;
18
+ constructor(themesService: ThemesService);
19
+ emitModelChange(ev: string): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "lib-radio-button", never, { "size": { "alias": "size"; "required": false; }; "name": { "alias": "name"; "required": false; }; "value": { "alias": "value"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; "elementId": { "alias": "elementId"; "required": false; }; "model": { "alias": "model"; "required": false; }; }, { "modelChange": "modelChange"; }, never, ["*"], false, never>;
22
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./radio-button.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 RadioButtonModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<RadioButtonModule, [typeof i1.RadioButtonComponent], [typeof i2.CommonModule, typeof i3.InputsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule, typeof i4.FormsModule], [typeof i1.RadioButtonComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<RadioButtonModule>;
11
+ }