@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,20 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare const ALERT_TYPE: {
5
+ success: string;
6
+ error: string;
7
+ warning: string;
8
+ info: string;
9
+ };
10
+ export declare class AlertComponent {
11
+ private themesService;
12
+ type: string;
13
+ dismissed: EventEmitter<any>;
14
+ get theType(): string;
15
+ iconName: string;
16
+ constructor(themesService: ThemesService);
17
+ onClose: () => void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "lib-alert", never, { "type": { "alias": "type"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; }, { "dismissed": "dismissed"; }, never, ["*"], false, never>;
20
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./alert.component";
3
+ import * as i2 from "../icon/icon.module";
4
+ export declare class AlertModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<AlertModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AlertModule, [typeof i1.AlertComponent], [typeof i2.IconModule], [typeof i1.AlertComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<AlertModule>;
8
+ }
@@ -0,0 +1,15 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AngularPopupComponent {
5
+ private themesService;
6
+ show: boolean;
7
+ anchor: ElementRef<HTMLElement> | HTMLElement;
8
+ anchorHorizontalAlign: "left" | "center" | "right";
9
+ anchorVerticalAlign: "top" | "center" | "bottom";
10
+ popupHorizontalAlign: "left" | "center" | "right";
11
+ popupVerticalAlign: "top" | "center" | "bottom";
12
+ constructor(themesService: ThemesService);
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<AngularPopupComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<AngularPopupComponent, "lib-angular-popup", never, { "show": { "alias": "show"; "required": false; }; "anchor": { "alias": "anchor"; "required": false; }; "anchorHorizontalAlign": { "alias": "anchorHorizontalAlign"; "required": false; }; "anchorVerticalAlign": { "alias": "anchorVerticalAlign"; "required": false; }; "popupHorizontalAlign": { "alias": "popupHorizontalAlign"; "required": false; }; "popupVerticalAlign": { "alias": "popupVerticalAlign"; "required": false; }; }, {}, never, ["*"], false, never>;
15
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./angular-popup.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-popup";
5
+ import * as i4 from "../container/container.module";
6
+ export declare class AngularPopupModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AngularPopupModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AngularPopupModule, [typeof i1.AngularPopupComponent], [typeof i2.CommonModule, typeof i3.PopupModule, typeof i4.ContainerModule], [typeof i1.AngularPopupComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<AngularPopupModule>;
10
+ }
@@ -0,0 +1,48 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@angular/forms";
4
+ import * as i3 from "./alert/alert.module";
5
+ import * as i4 from "./angular-popup/angular-popup.module";
6
+ import * as i5 from "./avatar/avatar.module";
7
+ import * as i6 from "./breadcrumb/breadcrumb.module";
8
+ import * as i7 from "./button/button.module";
9
+ import * as i8 from "./button-group/button-group.module";
10
+ import * as i9 from "./checkbox/checkbox.module";
11
+ import * as i10 from "./chip/chip.module";
12
+ import * as i11 from "./chip-list/chip-list.module";
13
+ import * as i12 from "./clipboard/clipboard.module";
14
+ import * as i13 from "./container/container.module";
15
+ import * as i14 from "./date-range/date-range.module";
16
+ import * as i15 from "./datepicker/datepicker.module";
17
+ import * as i16 from "./drag-and-drop/drag-and-drop.module";
18
+ import * as i17 from "./dropdown/dropdown.module";
19
+ import * as i18 from "./dropdown-button/dropdown-button.module";
20
+ import * as i19 from "./dropdown-tree/dropdowntree.module";
21
+ import * as i20 from "./expansion-panel/expansion-panel.module";
22
+ import * as i21 from "./icon/icon.module";
23
+ import * as i22 from "./labels/label.module";
24
+ import * as i23 from "./list-views/list-view.module";
25
+ import * as i24 from "./loader/loader.module";
26
+ import * as i25 from "./loading-spinner/loading-spinner.module";
27
+ import * as i26 from "./multi-select-dropdown/multi-select-dropdown.module";
28
+ import * as i27 from "./notification/notification.module";
29
+ import * as i28 from "./numeric-textbox/numeric-textbox.module";
30
+ import * as i29 from "./progress-bar/progress-bar.module";
31
+ import * as i30 from "./radio-button/radio-button.module";
32
+ import * as i31 from "./search-box/search-box.module";
33
+ import * as i32 from "./slider/slider.module";
34
+ import * as i33 from "./stepper/stepper.module";
35
+ import * as i34 from "./switch/switch.module";
36
+ import * as i35 from "./text-area/text-area.module";
37
+ import * as i36 from "./textbox/textbox.module";
38
+ import * as i37 from "./time-picker/time-picker.module";
39
+ import * as i38 from "./timescheduler/timescheduler.module";
40
+ import * as i39 from "./toast-notification/toast-notification.module";
41
+ import * as i40 from "./tooltip/tooltip.module";
42
+ import * as i41 from "./typography/typography.module";
43
+ import * as i42 from "./uploader/uploader.module";
44
+ export declare class AtomsModule {
45
+ static ɵfac: i0.ɵɵFactoryDeclaration<AtomsModule, never>;
46
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.AlertModule, typeof i4.AngularPopupModule, typeof i5.AvatarModule, typeof i6.BreadcrumbModule, typeof i7.ButtonModule, typeof i8.ButtonGroupModule, typeof i9.CheckboxModule, typeof i10.ChipModule, typeof i11.ChipListModule, typeof i12.ClipboardModule, typeof i13.ContainerModule, typeof i14.DateRangeModule, typeof i15.DatepickerModule, typeof i16.DragAndDropModule, typeof i17.DropdownModule, typeof i18.DropdownButtonModule, typeof i19.DropdowntreeModule, typeof i20.ExpansionPanelModule, typeof i21.IconModule, typeof i22.LabelsModule, typeof i23.ListViewsModule, typeof i24.LoaderModule, typeof i25.LoadingSpinnerModule, typeof i26.MultiSelectDropdownModule, typeof i27.NotificationModule, typeof i28.NumericTextboxModule, typeof i29.ProgressBarsModule, typeof i30.RadioButtonModule, typeof i31.SearchBoxModule, typeof i32.SliderModule, typeof i33.StepperModule, typeof i34.SwitchModule, typeof i35.TextAreaModule, typeof i36.TextboxModule, typeof i37.TimePickerModule, typeof i38.TimeschedulerModule, typeof i39.ToastNotificationModule, typeof i40.TooltipModule, typeof i41.TypographyModule, typeof i42.UploaderModule], [typeof i3.AlertModule, typeof i4.AngularPopupModule, typeof i5.AvatarModule, typeof i6.BreadcrumbModule, typeof i7.ButtonModule, typeof i8.ButtonGroupModule, typeof i9.CheckboxModule, typeof i10.ChipModule, typeof i11.ChipListModule, typeof i12.ClipboardModule, typeof i13.ContainerModule, typeof i14.DateRangeModule, typeof i15.DatepickerModule, typeof i16.DragAndDropModule, typeof i17.DropdownModule, typeof i18.DropdownButtonModule, typeof i19.DropdowntreeModule, typeof i20.ExpansionPanelModule, typeof i21.IconModule, typeof i22.LabelsModule, typeof i23.ListViewsModule, typeof i24.LoaderModule, typeof i25.LoadingSpinnerModule, typeof i26.MultiSelectDropdownModule, typeof i27.NotificationModule, typeof i28.NumericTextboxModule, typeof i29.ProgressBarsModule, typeof i30.RadioButtonModule, typeof i31.SearchBoxModule, typeof i32.SliderModule, typeof i33.StepperModule, typeof i34.SwitchModule, typeof i35.TextAreaModule, typeof i36.TextboxModule, typeof i37.TimePickerModule, typeof i38.TimeschedulerModule, typeof i39.ToastNotificationModule, typeof i40.TooltipModule, typeof i41.TypographyModule, typeof i42.UploaderModule]>;
47
+ static ɵinj: i0.ɵɵInjectorDeclaration<AtomsModule>;
48
+ }
@@ -0,0 +1,21 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import { SVGIcon } from '@progress/kendo-svg-icons';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AvatarComponent implements OnInit {
6
+ private themesService;
7
+ letters: string;
8
+ showInitials: boolean;
9
+ imageURL: string;
10
+ size: 'small' | 'medium' | 'large' | 'none';
11
+ rounded: 'small' | 'medium' | 'large' | 'full' | 'none';
12
+ fillMode: 'solid' | 'outline' | 'none';
13
+ themeColor: 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
14
+ name: string;
15
+ userSvg: SVGIcon;
16
+ constructor(themesService: ThemesService);
17
+ ngOnInit(): void;
18
+ getInitials(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "lib-avatar", never, { "showInitials": { "alias": "showInitials"; "required": false; }; "imageURL": { "alias": "imageURL"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
21
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./avatar.component";
3
+ import * as i2 from "@progress/kendo-angular-layout";
4
+ import * as i3 from "../typography/typography.module";
5
+ import * as i4 from "@angular/common";
6
+ export declare class AvatarModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarModule, [typeof i1.AvatarComponent], [typeof i2.LayoutModule, typeof i3.TypographyModule, typeof i4.CommonModule], [typeof i1.AvatarComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<AvatarModule>;
10
+ }
@@ -0,0 +1,17 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import { BreadCrumbItem } from '@progress/kendo-angular-navigation';
4
+ import { SVGIcon } from '@progress/kendo-svg-icons';
5
+ import * as i0 from "@angular/core";
6
+ export declare class BreadcrumbComponent {
7
+ private themesService;
8
+ items: BreadCrumbItem[];
9
+ valueChange: EventEmitter<BreadCrumbItem[]>;
10
+ homeIcon: SVGIcon;
11
+ constructor(themesService: ThemesService);
12
+ onItemClick(item: BreadCrumbItem): void;
13
+ refreshBreadCrumb(): void;
14
+ emitValueChange(itemsToBeEmit: BreadCrumbItem[]): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "lib-breadcrumb", never, { "items": { "alias": "items"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
17
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./breadcrumb.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-navigation";
5
+ import * as i4 from "@progress/kendo-angular-buttons";
6
+ import * as i5 from "@progress/kendo-angular-dropdowns";
7
+ import * as i6 from "@progress/kendo-angular-inputs";
8
+ export declare class BreadcrumbModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<BreadcrumbModule, [typeof i1.BreadcrumbComponent], [typeof i2.CommonModule, typeof i3.NavigationModule, typeof i4.ButtonsModule, typeof i5.DropDownsModule, typeof i6.InputsModule], [typeof i1.BreadcrumbComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<BreadcrumbModule>;
12
+ }
@@ -0,0 +1,29 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import { TypographyType } from '../typography/TypographyType';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ButtonComponent {
6
+ private themesService;
7
+ constructor(themesService: ThemesService);
8
+ size: 'small' | 'medium' | 'large';
9
+ rounded: 'small' | 'medium' | 'large' | 'full' | 'none';
10
+ fillMode: 'solid' | 'flat' | 'outline' | 'clear' | 'link' | 'none';
11
+ themeColor: 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
12
+ label: string;
13
+ iconName: string;
14
+ disabled: boolean;
15
+ toggleable: boolean;
16
+ iconPosition: string;
17
+ fontType: TypographyType;
18
+ width: string;
19
+ buttonClick: EventEmitter<any>;
20
+ iconButton: boolean;
21
+ projectedIcon: boolean;
22
+ formatFn: Function;
23
+ iconFontSize: number;
24
+ onButtonClick(e: any): void;
25
+ button_size(): string;
26
+ toTitleCase(str: any): any;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, { "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "label": { "alias": "label"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "fontType": { "alias": "fontType"; "required": false; }; "width": { "alias": "width"; "required": false; }; "iconButton": { "alias": "iconButton"; "required": false; }; "projectedIcon": { "alias": "projectedIcon"; "required": false; }; "formatFn": { "alias": "formatFn"; "required": false; }; "iconFontSize": { "alias": "iconFontSize"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, false, never>;
29
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./button.component";
3
+ import * as i2 from "@progress/kendo-angular-buttons";
4
+ import * as i3 from "../typography/typography.module";
5
+ import * as i4 from "../icon/icon.module";
6
+ import * as i5 from "@angular/common";
7
+ export declare class ButtonModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonModule, [typeof i1.ButtonComponent], [typeof i2.ButtonsModule, typeof i3.TypographyModule, typeof i4.IconModule, typeof i5.CommonModule], [typeof i1.ButtonComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<ButtonModule>;
11
+ }
@@ -0,0 +1,20 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ButtonGroupComponent {
5
+ private themesService;
6
+ constructor(themesService: ThemesService);
7
+ buttons: any[];
8
+ selection: 'single' | 'multiple';
9
+ size: 'small' | 'medium' | 'large';
10
+ rounded: 'small' | 'medium' | 'large' | 'full' | 'none';
11
+ fillMode: 'solid' | 'flat' | 'outline' | 'clear' | 'link' | 'none';
12
+ themeColor: 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
13
+ label: string;
14
+ disabled: boolean;
15
+ toggleable: boolean;
16
+ buttonClick: EventEmitter<any>;
17
+ onButtonClick(label: string): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonGroupComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonGroupComponent, "lib-button-group", never, { "buttons": { "alias": "buttons"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, ["*"], false, never>;
20
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./button-group.component";
3
+ import * as i2 from "@progress/kendo-angular-buttons";
4
+ import * as i3 from "../typography/typography.module";
5
+ import * as i4 from "../icon/icon.module";
6
+ import * as i5 from "@angular/common";
7
+ export declare class ButtonGroupModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ButtonGroupModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonGroupModule, [typeof i1.ButtonGroupComponent], [typeof i2.ButtonsModule, typeof i3.TypographyModule, typeof i4.IconModule, typeof i5.CommonModule], [typeof i1.ButtonGroupComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<ButtonGroupModule>;
11
+ }
@@ -0,0 +1,21 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import { CheckBoxRounded, InputSize } from '@progress/kendo-angular-inputs';
5
+ import { TypographyType } from '../typography/TypographyType';
6
+ import * as i0 from "@angular/core";
7
+ export declare class CheckboxComponent {
8
+ private themesService;
9
+ control: FormControl;
10
+ elementId: string;
11
+ size: InputSize;
12
+ rounded: CheckBoxRounded;
13
+ label: string;
14
+ labelPosition: 'before' | 'after';
15
+ labelFont: TypographyType;
16
+ modelChange: EventEmitter<boolean>;
17
+ constructor(themesService: ThemesService);
18
+ emitValueChange(ev: boolean): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "lib-checkbox", never, { "control": { "alias": "control"; "required": false; }; "elementId": { "alias": "elementId"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; }, { "modelChange": "modelChange"; }, never, ["*"], false, never>;
21
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./checkbox.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 CheckboxModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CheckboxModule, [typeof i1.CheckboxComponent], [typeof i2.CommonModule, typeof i3.InputsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule], [typeof i1.CheckboxComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<CheckboxModule>;
11
+ }
@@ -0,0 +1,12 @@
1
+ import { ButtonRounded, ButtonSize, ChipFillMode, ChipThemeColor } from '@progress/kendo-angular-buttons';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ChipComponent {
4
+ size: ButtonSize;
5
+ rounded: ButtonRounded;
6
+ fillMode: ChipFillMode;
7
+ themeColor: ChipThemeColor;
8
+ removable: boolean;
9
+ chip: ChipComponent;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChipComponent, "lib-chip", never, { "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, {}, never, ["*"], false, never>;
12
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chip.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-buttons";
5
+ import * as i4 from "@progress/kendo-angular-label";
6
+ import * as i5 from "@angular/forms";
7
+ import * as i6 from "@progress/kendo-angular-dropdowns";
8
+ import * as i7 from "@progress-chef/platform-themes-service";
9
+ export declare class ChipModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChipModule, [typeof i1.ChipComponent], [typeof i2.CommonModule, typeof i3.ButtonsModule, typeof i4.LabelModule, typeof i5.FormsModule, typeof i6.DropDownsModule, typeof i7.ThemesModule], [typeof i1.ChipComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChipModule>;
13
+ }
@@ -0,0 +1,32 @@
1
+ import { ChangeDetectorRef, ElementRef, QueryList, SimpleChanges } from '@angular/core';
2
+ import { ChipComponent } from '@progress/kendo-angular-buttons';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ChipListComponent {
5
+ private cdr;
6
+ list: any;
7
+ chips: QueryList<ChipComponent>;
8
+ wrapper: ElementRef;
9
+ size: string;
10
+ rounded: string;
11
+ fillMode: string;
12
+ themeColor: string;
13
+ removable: boolean;
14
+ totalChipWidth: number;
15
+ _list: any;
16
+ chipWidthList: number[];
17
+ plusChipWidth: number;
18
+ marginRight: number;
19
+ numChipValue: any;
20
+ remainingList: any;
21
+ width: number;
22
+ showFullList: boolean;
23
+ numChipTheme: {};
24
+ showTruncatedItemAsTooltip: boolean;
25
+ constructor(cdr: ChangeDetectorRef);
26
+ ngOnInit(): void;
27
+ ngOnChanges(changes: SimpleChanges): void;
28
+ ngAfterViewInit(): void;
29
+ calculateWidthAndRender(): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipListComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChipListComponent, "lib-chip-list", never, { "list": { "alias": "list"; "required": false; }; "width": { "alias": "width"; "required": false; }; "showFullList": { "alias": "showFullList"; "required": false; }; "numChipTheme": { "alias": "numChipTheme"; "required": false; }; "showTruncatedItemAsTooltip": { "alias": "showTruncatedItemAsTooltip"; "required": false; }; }, {}, never, never, false, never>;
32
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chip-list.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-buttons";
5
+ import * as i4 from "@progress/kendo-angular-label";
6
+ import * as i5 from "@angular/forms";
7
+ import * as i6 from "@progress/kendo-angular-dropdowns";
8
+ import * as i7 from "../chip/chip.module";
9
+ import * as i8 from "../tooltip/tooltip.module";
10
+ import * as i9 from "../typography/typography.module";
11
+ export declare class ChipListModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ChipListModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ChipListModule, [typeof i1.ChipListComponent], [typeof i2.CommonModule, typeof i3.ButtonsModule, typeof i4.LabelModule, typeof i5.FormsModule, typeof i6.DropDownsModule, typeof i7.ChipModule, typeof i8.TooltipModule, typeof i9.TypographyModule], [typeof i1.ChipListComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<ChipListModule>;
15
+ }
@@ -0,0 +1,35 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ClipboardComponent implements OnInit {
5
+ private themesService;
6
+ clipboardData: string;
7
+ tooltipPosition: 'top' | 'bottom' | 'left' | 'right';
8
+ preCopyText: string;
9
+ postCopyText: string;
10
+ tooltipText: string;
11
+ showCopyIcon: boolean;
12
+ iconFontSize: number;
13
+ constructor(themesService: ThemesService);
14
+ ngOnInit(): void;
15
+ copyToClipboard(): Promise<void>;
16
+ /**
17
+ * Asynchronously copies text to the clipboard.
18
+ * @param clipboardData The text to be copied to the clipboard.
19
+ */
20
+ copy(clipboardData: string): Promise<void>;
21
+ /**
22
+ * Asynchronously copies text to the clipboard using the modern Clipboard API.
23
+ * @param clipboardData The text to be copied to the clipboard.
24
+ */
25
+ copyModern(clipboardData: string): Promise<void>;
26
+ /**
27
+ * Asynchronously copies text to the clipboard using a legacy method.
28
+ * @param clipboardData The text to be copied to the clipboard.
29
+ * @returns A Promise that resolves with a boolean indicating success.
30
+ */
31
+ copyLegacy(clipboardData: string): Promise<boolean>;
32
+ revertTooltipText(): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<ClipboardComponent, "lib-clipboard", never, { "clipboardData": { "alias": "clipboardData"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "preCopyText": { "alias": "preCopyText"; "required": false; }; "postCopyText": { "alias": "postCopyText"; "required": false; }; "showCopyIcon": { "alias": "showCopyIcon"; "required": false; }; "iconFontSize": { "alias": "iconFontSize"; "required": false; }; }, {}, never, never, false, never>;
35
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./clipboard.component";
3
+ import * as i2 from "../button/button.module";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "../tooltip/tooltip.module";
6
+ import * as i5 from "../icon/icon.module";
7
+ import * as i6 from "../typography/typography.module";
8
+ export declare class ClipboardModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ClipboardModule, [typeof i1.ClipboardComponent], [typeof i2.ButtonModule, typeof i3.CommonModule, typeof i4.TooltipModule, typeof i5.IconModule, typeof i6.TypographyModule], [typeof i1.ClipboardComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<ClipboardModule>;
12
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class ContainerComponent {
3
+ get class(): string;
4
+ c_class: string;
5
+ padding: string;
6
+ margin: string;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContainerComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContainerComponent, "lib-container", never, { "c_class": { "alias": "c_class"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; }, {}, never, ["*"], false, never>;
9
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./container.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class ContainerModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContainerModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ContainerModule, [typeof i1.ContainerComponent], [typeof i2.CommonModule], [typeof i1.ContainerComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ContainerModule>;
8
+ }
@@ -0,0 +1,24 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DateRangeComponent {
5
+ private themesService;
6
+ range: {
7
+ start: Date;
8
+ end: Date;
9
+ };
10
+ rangeStartLabel: string;
11
+ rangeEndLabel: string;
12
+ isDisabled: boolean;
13
+ size: "small" | "medium" | "large";
14
+ rounded: "small" | "medium" | "large" | "full";
15
+ fillMode: "solid" | "flat" | "outline";
16
+ autoCorrectOn: "blur" | "change" | "none";
17
+ labelStyle: any;
18
+ modelChange: EventEmitter<any>;
19
+ constructor(themesService: ThemesService);
20
+ onStartChange(ev: any): void;
21
+ onEndChange(ev: any): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<DateRangeComponent, "lib-date-range", never, { "range": { "alias": "range"; "required": false; }; "rangeStartLabel": { "alias": "rangeStartLabel"; "required": false; }; "rangeEndLabel": { "alias": "rangeEndLabel"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "autoCorrectOn": { "alias": "autoCorrectOn"; "required": false; }; "labelStyle": { "alias": "labelStyle"; "required": false; }; }, { "modelChange": "modelChange"; }, never, never, false, never>;
24
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./date-range.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
+ import * as i5 from "@progress/kendo-angular-label";
7
+ export declare class DateRangeModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateRangeModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DateRangeModule, [typeof i1.DateRangeComponent], [typeof i2.DateInputsModule, typeof i3.ButtonsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.FloatingLabelModule], [typeof i1.DateRangeComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<DateRangeModule>;
11
+ }
@@ -0,0 +1,32 @@
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 DatepickerComponent implements OnChanges {
6
+ private themesService;
7
+ calendarType: "infinite" | "classic";
8
+ isDisabled: boolean;
9
+ readOnlyInput: boolean;
10
+ disabledDates: any;
11
+ min: Date;
12
+ max: Date;
13
+ format: string;
14
+ placeholder: string;
15
+ incompleteDateValidation: boolean;
16
+ fillMode: "flat" | "solid" | "outline" | "none";
17
+ rounded: "small" | "medium" | "large" | "full" | "none";
18
+ size: "small" | "medium" | "large" | "none";
19
+ modelChange: EventEmitter<any>;
20
+ control: FormControl;
21
+ value: Date;
22
+ navigation: boolean;
23
+ onOpenEvent: EventEmitter<any>;
24
+ onCloseEvent: EventEmitter<any>;
25
+ constructor(themesService: ThemesService);
26
+ ngOnChanges(changes: SimpleChanges): void;
27
+ onValueChange(ev: any): void;
28
+ onOpen(event: any): void;
29
+ onClose(event: any): void;
30
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerComponent, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatepickerComponent, "lib-datepicker", never, { "calendarType": { "alias": "calendarType"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "readOnlyInput": { "alias": "readOnlyInput"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "format": { "alias": "format"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "incompleteDateValidation": { "alias": "incompleteDateValidation"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "control": { "alias": "control"; "required": false; }; "value": { "alias": "value"; "required": false; }; "navigation": { "alias": "navigation"; "required": false; }; }, { "modelChange": "modelChange"; "onOpenEvent": "onOpenEvent"; "onCloseEvent": "onCloseEvent"; }, never, never, false, never>;
32
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./datepicker.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 DatepickerModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<DatepickerModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DatepickerModule, [typeof i1.DatepickerComponent], [typeof i2.DateInputsModule, typeof i3.ButtonsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule], [typeof i1.DatepickerComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<DatepickerModule>;
10
+ }
@@ -0,0 +1,26 @@
1
+ import { AfterViewInit, EventEmitter } from '@angular/core';
2
+ import { DropTargetEvent } from '@progress/kendo-angular-utils';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DragAndDropComponent implements AfterViewInit {
5
+ dragDropContainerClassSelector: string;
6
+ dragDropItemClassSelector: string;
7
+ dragDropContainerIndexAttribute: string;
8
+ dragDropItemIndexAttribute: string;
9
+ dragHandleClassSelector: string;
10
+ set listData(value: any);
11
+ private _listData;
12
+ emitListChangeEv: EventEmitter<any>;
13
+ dragTargetContainer: any;
14
+ dropTargetContainer: any;
15
+ ngAfterViewInit(): void;
16
+ dragData: ({ dragTarget }: any) => {
17
+ fromElement: number;
18
+ fromIndex: number;
19
+ };
20
+ onDrop(e: DropTargetEvent): void;
21
+ setElement(target: HTMLDivElement, selector: any, attribute: string): number;
22
+ updateData(fromCollection: any[], fromIndex: number, toIndex: number, dataFromCollection: any): void;
23
+ calculateDestinationIndex(e: any, fromIndex: any): number;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<DragAndDropComponent, "lib-drag-and-drop", never, { "dragDropContainerClassSelector": { "alias": "dragDropContainerClassSelector"; "required": false; }; "dragDropItemClassSelector": { "alias": "dragDropItemClassSelector"; "required": false; }; "dragDropContainerIndexAttribute": { "alias": "dragDropContainerIndexAttribute"; "required": false; }; "dragDropItemIndexAttribute": { "alias": "dragDropItemIndexAttribute"; "required": false; }; "dragHandleClassSelector": { "alias": "dragHandleClassSelector"; "required": false; }; "listData": { "alias": "listData"; "required": false; }; }, { "emitListChangeEv": "emitListChangeEv"; }, never, ["*"], false, never>;
26
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./drag-and-drop.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-buttons";
5
+ import * as i4 from "@progress/kendo-angular-inputs";
6
+ import * as i5 from "@progress/kendo-angular-utils";
7
+ import * as i6 from "@progress/kendo-angular-listview";
8
+ import * as i7 from "@progress/kendo-angular-icons";
9
+ export declare class DragAndDropModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<DragAndDropModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DragAndDropModule, [typeof i1.DragAndDropComponent], [typeof i2.CommonModule, typeof i3.ButtonsModule, typeof i4.InputsModule, typeof i5.UtilsModule, typeof i6.ListViewModule, typeof i7.IconsModule], [typeof i1.DragAndDropComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<DragAndDropModule>;
13
+ }