@progress-chef/platform-shared-components 0.0.1

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 (197) hide show
  1. package/README.md +30 -0
  2. package/assets/IconFont.css +68 -0
  3. package/assets/IconFont.scss +68 -0
  4. package/assets/IconFont.ttf +0 -0
  5. package/assets/IconFont.woff +0 -0
  6. package/assets/IconFont.woff2 +0 -0
  7. package/esm2022/lib/atoms/alert/alert.component.mjs +37 -0
  8. package/esm2022/lib/atoms/alert/alert.module.mjs +20 -0
  9. package/esm2022/lib/atoms/angular-popup/angular-popup.component.mjs +35 -0
  10. package/esm2022/lib/atoms/angular-popup/angular-popup.module.mjs +36 -0
  11. package/esm2022/lib/atoms/atoms.module.mjs +234 -0
  12. package/esm2022/lib/atoms/avatar/avatar.component.mjs +62 -0
  13. package/esm2022/lib/atoms/avatar/avatar.module.mjs +20 -0
  14. package/esm2022/lib/atoms/breadcrumb/breadcrumb.component.mjs +59 -0
  15. package/esm2022/lib/atoms/breadcrumb/breadcrumb.module.mjs +36 -0
  16. package/esm2022/lib/atoms/button/button.component.mjs +72 -0
  17. package/esm2022/lib/atoms/button/button.module.mjs +21 -0
  18. package/esm2022/lib/atoms/button-group/button-group.component.mjs +52 -0
  19. package/esm2022/lib/atoms/button-group/button-group.module.mjs +21 -0
  20. package/esm2022/lib/atoms/checkbox/checkbox.component.mjs +45 -0
  21. package/esm2022/lib/atoms/checkbox/checkbox.module.mjs +32 -0
  22. package/esm2022/lib/atoms/clipboard/clipboard.component.mjs +104 -0
  23. package/esm2022/lib/atoms/clipboard/clipboard.module.mjs +32 -0
  24. package/esm2022/lib/atoms/container/container.component.mjs +29 -0
  25. package/esm2022/lib/atoms/container/container.module.mjs +22 -0
  26. package/esm2022/lib/atoms/dropdown/dropdown.component.mjs +102 -0
  27. package/esm2022/lib/atoms/dropdown/dropdown.module.mjs +39 -0
  28. package/esm2022/lib/atoms/dropdowntree/dropdowntree.component.mjs +103 -0
  29. package/esm2022/lib/atoms/dropdowntree/dropdowntree.module.mjs +43 -0
  30. package/esm2022/lib/atoms/expansion-panel/expansion-panel.component.mjs +38 -0
  31. package/esm2022/lib/atoms/expansion-panel/expansion-panel.module.mjs +56 -0
  32. package/esm2022/lib/atoms/icon/icon.component.mjs +24 -0
  33. package/esm2022/lib/atoms/icon/icon.module.mjs +17 -0
  34. package/esm2022/lib/atoms/label/label.component.mjs +26 -0
  35. package/esm2022/lib/atoms/label/label.module.mjs +20 -0
  36. package/esm2022/lib/atoms/loading-spinner/loading-spinner.component.mjs +26 -0
  37. package/esm2022/lib/atoms/loading-spinner/loading-spinner.module.mjs +18 -0
  38. package/esm2022/lib/atoms/multi-select-dropdown/multi-select-dropdown.component.mjs +101 -0
  39. package/esm2022/lib/atoms/multi-select-dropdown/multi-select-dropdown.module.mjs +39 -0
  40. package/esm2022/lib/atoms/notification/notification.component.mjs +69 -0
  41. package/esm2022/lib/atoms/notification/notification.module.mjs +20 -0
  42. package/esm2022/lib/atoms/numeric-textbox/numeric-textbox.component.mjs +80 -0
  43. package/esm2022/lib/atoms/numeric-textbox/numeric-textbox.module.mjs +35 -0
  44. package/esm2022/lib/atoms/progress-bar/progress-bar.component.mjs +20 -0
  45. package/esm2022/lib/atoms/progress-bar/progress-bar.module.mjs +24 -0
  46. package/esm2022/lib/atoms/radio-button/radio-button.component.mjs +51 -0
  47. package/esm2022/lib/atoms/radio-button/radio-button.module.mjs +39 -0
  48. package/esm2022/lib/atoms/report-summary/report-summary.component.mjs +47 -0
  49. package/esm2022/lib/atoms/report-summary/report-summary.module.mjs +24 -0
  50. package/esm2022/lib/atoms/search-box/search-box.component.mjs +108 -0
  51. package/esm2022/lib/atoms/search-box/search-box.module.mjs +36 -0
  52. package/esm2022/lib/atoms/slider/slider.component.mjs +58 -0
  53. package/esm2022/lib/atoms/slider/slider.module.mjs +28 -0
  54. package/esm2022/lib/atoms/text-area/text-area.component.mjs +43 -0
  55. package/esm2022/lib/atoms/text-area/text-area.module.mjs +28 -0
  56. package/esm2022/lib/atoms/textbox/textbox.component.mjs +102 -0
  57. package/esm2022/lib/atoms/textbox/textbox.module.mjs +21 -0
  58. package/esm2022/lib/atoms/timescheduler/timescheduler.component.mjs +62 -0
  59. package/esm2022/lib/atoms/timescheduler/timescheduler.module.mjs +31 -0
  60. package/esm2022/lib/atoms/toast-notification/toast-notification.module.mjs +19 -0
  61. package/esm2022/lib/atoms/toast-notification/toast-notification.service.mjs +45 -0
  62. package/esm2022/lib/atoms/tooltip/tooltip.component.mjs +35 -0
  63. package/esm2022/lib/atoms/tooltip/tooltip.module.mjs +20 -0
  64. package/esm2022/lib/atoms/typography/TypographyType.mjs +2 -0
  65. package/esm2022/lib/atoms/typography/typography.component.mjs +97 -0
  66. package/esm2022/lib/atoms/typography/typography.module.mjs +24 -0
  67. package/esm2022/lib/molecules/card/card-actions/card-actions.component.mjs +21 -0
  68. package/esm2022/lib/molecules/card/card-body/card-body.component.mjs +14 -0
  69. package/esm2022/lib/molecules/card/card-footer/card-footer.component.mjs +14 -0
  70. package/esm2022/lib/molecules/card/card-header/card-header.component.mjs +32 -0
  71. package/esm2022/lib/molecules/card/card.component.mjs +21 -0
  72. package/esm2022/lib/molecules/card/card.module.mjs +44 -0
  73. package/esm2022/lib/molecules/dialog/dialog-actions/dialog-actions.component.mjs +18 -0
  74. package/esm2022/lib/molecules/dialog/dialog-titlebar/dialog-titlebar.component.mjs +41 -0
  75. package/esm2022/lib/molecules/dialog/dialog.component.mjs +52 -0
  76. package/esm2022/lib/molecules/dialog/dialog.module.mjs +40 -0
  77. package/esm2022/lib/molecules/grid/grid-form/grid-form.component.mjs +112 -0
  78. package/esm2022/lib/molecules/grid/grid-spacer/grid-spacer.component.mjs +15 -0
  79. package/esm2022/lib/molecules/grid/grid.component.mjs +278 -0
  80. package/esm2022/lib/molecules/grid/grid.module.mjs +61 -0
  81. package/esm2022/lib/molecules/grid-layout/grid-layout-item/grid-layout-item.component.mjs +39 -0
  82. package/esm2022/lib/molecules/grid-layout/grid-layout.component.mjs +34 -0
  83. package/esm2022/lib/molecules/grid-layout/grid-layout.module.mjs +33 -0
  84. package/esm2022/lib/molecules/grid-pagination/grid-pagination-spacer/grid-pagination-spacer.component.mjs +15 -0
  85. package/esm2022/lib/molecules/grid-pagination/grid-pagination.component.mjs +380 -0
  86. package/esm2022/lib/molecules/grid-pagination/grid-pagination.module.mjs +69 -0
  87. package/esm2022/lib/molecules/grid-pagination/kebab-menu-filter.pipe.mjs +22 -0
  88. package/esm2022/lib/molecules/molecules.module.mjs +74 -0
  89. package/esm2022/lib/molecules/sidebar/layout/layout.model.mjs +2 -0
  90. package/esm2022/lib/molecules/sidebar/sidebar.component.mjs +43 -0
  91. package/esm2022/lib/molecules/sidebar/sidebar.module.mjs +32 -0
  92. package/esm2022/lib/molecules/tabstrip/tabstrip-tab/tabstrip-tab.component.mjs +25 -0
  93. package/esm2022/lib/molecules/tabstrip/tabstrip.component.mjs +37 -0
  94. package/esm2022/lib/molecules/tabstrip/tabstrip.module.mjs +33 -0
  95. package/esm2022/lib/shared.component.mjs +16 -0
  96. package/esm2022/lib/shared.module.mjs +40 -0
  97. package/esm2022/lib/shared.service.mjs +14 -0
  98. package/esm2022/lib/style-tokens/style-tokens.module.mjs +18 -0
  99. package/esm2022/progress-chef-platform-shared-components.mjs +5 -0
  100. package/esm2022/public-api.mjs +98 -0
  101. package/fesm2022/progress-chef-platform-shared-components.mjs +3970 -0
  102. package/fesm2022/progress-chef-platform-shared-components.mjs.map +1 -0
  103. package/index.d.ts +5 -0
  104. package/lib/atoms/alert/alert.component.d.ts +19 -0
  105. package/lib/atoms/alert/alert.module.d.ts +8 -0
  106. package/lib/atoms/angular-popup/angular-popup.component.d.ts +16 -0
  107. package/lib/atoms/angular-popup/angular-popup.module.d.ts +11 -0
  108. package/lib/atoms/atoms.module.d.ts +38 -0
  109. package/lib/atoms/avatar/avatar.component.d.ts +21 -0
  110. package/lib/atoms/avatar/avatar.module.d.ts +10 -0
  111. package/lib/atoms/breadcrumb/breadcrumb.component.d.ts +18 -0
  112. package/lib/atoms/breadcrumb/breadcrumb.module.d.ts +12 -0
  113. package/lib/atoms/button/button.component.d.ts +26 -0
  114. package/lib/atoms/button/button.module.d.ts +11 -0
  115. package/lib/atoms/button-group/button-group.component.d.ts +21 -0
  116. package/lib/atoms/button-group/button-group.module.d.ts +11 -0
  117. package/lib/atoms/checkbox/checkbox.component.d.ts +20 -0
  118. package/lib/atoms/checkbox/checkbox.module.d.ts +11 -0
  119. package/lib/atoms/clipboard/clipboard.component.d.ts +33 -0
  120. package/lib/atoms/clipboard/clipboard.module.d.ts +11 -0
  121. package/lib/atoms/container/container.component.d.ts +12 -0
  122. package/lib/atoms/container/container.module.d.ts +8 -0
  123. package/lib/atoms/dropdown/dropdown.component.d.ts +38 -0
  124. package/lib/atoms/dropdown/dropdown.module.d.ts +11 -0
  125. package/lib/atoms/dropdowntree/dropdowntree.component.d.ts +36 -0
  126. package/lib/atoms/dropdowntree/dropdowntree.module.d.ts +12 -0
  127. package/lib/atoms/expansion-panel/expansion-panel.component.d.ts +16 -0
  128. package/lib/atoms/expansion-panel/expansion-panel.module.d.ts +17 -0
  129. package/lib/atoms/icon/icon.component.d.ts +13 -0
  130. package/lib/atoms/icon/icon.module.d.ts +7 -0
  131. package/lib/atoms/label/label.component.d.ts +14 -0
  132. package/lib/atoms/label/label.module.d.ts +10 -0
  133. package/lib/atoms/loading-spinner/loading-spinner.component.d.ts +13 -0
  134. package/lib/atoms/loading-spinner/loading-spinner.module.d.ts +8 -0
  135. package/lib/atoms/multi-select-dropdown/multi-select-dropdown.component.d.ts +37 -0
  136. package/lib/atoms/multi-select-dropdown/multi-select-dropdown.module.d.ts +11 -0
  137. package/lib/atoms/notification/notification.component.d.ts +24 -0
  138. package/lib/atoms/notification/notification.module.d.ts +8 -0
  139. package/lib/atoms/numeric-textbox/numeric-textbox.component.d.ts +30 -0
  140. package/lib/atoms/numeric-textbox/numeric-textbox.module.d.ts +10 -0
  141. package/lib/atoms/progress-bar/progress-bar.component.d.ts +11 -0
  142. package/lib/atoms/progress-bar/progress-bar.module.d.ts +8 -0
  143. package/lib/atoms/radio-button/radio-button.component.d.ts +21 -0
  144. package/lib/atoms/radio-button/radio-button.module.d.ts +11 -0
  145. package/lib/atoms/report-summary/report-summary.component.d.ts +23 -0
  146. package/lib/atoms/report-summary/report-summary.module.d.ts +8 -0
  147. package/lib/atoms/search-box/search-box.component.d.ts +37 -0
  148. package/lib/atoms/search-box/search-box.module.d.ts +12 -0
  149. package/lib/atoms/slider/slider.component.d.ts +18 -0
  150. package/lib/atoms/slider/slider.module.d.ts +9 -0
  151. package/lib/atoms/text-area/text-area.component.d.ts +20 -0
  152. package/lib/atoms/text-area/text-area.module.d.ts +10 -0
  153. package/lib/atoms/textbox/textbox.component.d.ts +34 -0
  154. package/lib/atoms/textbox/textbox.module.d.ts +11 -0
  155. package/lib/atoms/timescheduler/timescheduler.component.d.ts +23 -0
  156. package/lib/atoms/timescheduler/timescheduler.module.d.ts +10 -0
  157. package/lib/atoms/toast-notification/toast-notification.module.d.ts +8 -0
  158. package/lib/atoms/toast-notification/toast-notification.service.d.ts +28 -0
  159. package/lib/atoms/tooltip/tooltip.component.d.ts +17 -0
  160. package/lib/atoms/tooltip/tooltip.module.d.ts +8 -0
  161. package/lib/atoms/typography/TypographyType.d.ts +1 -0
  162. package/lib/atoms/typography/typography.component.d.ts +24 -0
  163. package/lib/atoms/typography/typography.module.d.ts +8 -0
  164. package/lib/molecules/card/card-actions/card-actions.component.d.ts +11 -0
  165. package/lib/molecules/card/card-body/card-body.component.d.ts +8 -0
  166. package/lib/molecules/card/card-footer/card-footer.component.d.ts +8 -0
  167. package/lib/molecules/card/card-header/card-header.component.d.ts +14 -0
  168. package/lib/molecules/card/card.component.d.ts +9 -0
  169. package/lib/molecules/card/card.module.d.ts +14 -0
  170. package/lib/molecules/dialog/dialog-actions/dialog-actions.component.d.ts +10 -0
  171. package/lib/molecules/dialog/dialog-titlebar/dialog-titlebar.component.d.ts +17 -0
  172. package/lib/molecules/dialog/dialog.component.d.ts +21 -0
  173. package/lib/molecules/dialog/dialog.module.d.ts +13 -0
  174. package/lib/molecules/grid/grid-form/grid-form.component.d.ts +34 -0
  175. package/lib/molecules/grid/grid-spacer/grid-spacer.component.d.ts +8 -0
  176. package/lib/molecules/grid/grid.component.d.ts +71 -0
  177. package/lib/molecules/grid/grid.module.d.ts +19 -0
  178. package/lib/molecules/grid-layout/grid-layout-item/grid-layout-item.component.d.ts +15 -0
  179. package/lib/molecules/grid-layout/grid-layout.component.d.ts +14 -0
  180. package/lib/molecules/grid-layout/grid-layout.module.d.ts +10 -0
  181. package/lib/molecules/grid-pagination/grid-pagination-spacer/grid-pagination-spacer.component.d.ts +8 -0
  182. package/lib/molecules/grid-pagination/grid-pagination.component.d.ts +90 -0
  183. package/lib/molecules/grid-pagination/grid-pagination.module.d.ts +19 -0
  184. package/lib/molecules/grid-pagination/kebab-menu-filter.pipe.d.ts +7 -0
  185. package/lib/molecules/molecules.module.d.ts +15 -0
  186. package/lib/molecules/sidebar/layout/layout.model.d.ts +20 -0
  187. package/lib/molecules/sidebar/sidebar.component.d.ts +14 -0
  188. package/lib/molecules/sidebar/sidebar.module.d.ts +10 -0
  189. package/lib/molecules/tabstrip/tabstrip-tab/tabstrip-tab.component.d.ts +10 -0
  190. package/lib/molecules/tabstrip/tabstrip.component.d.ts +15 -0
  191. package/lib/molecules/tabstrip/tabstrip.module.d.ts +10 -0
  192. package/lib/shared.component.d.ts +10 -0
  193. package/lib/shared.module.d.ts +11 -0
  194. package/lib/shared.service.d.ts +6 -0
  195. package/lib/style-tokens/style-tokens.module.d.ts +7 -0
  196. package/package.json +55 -0
  197. package/public-api.d.ts +91 -0
@@ -0,0 +1,37 @@
1
+ import { AfterViewInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { TypographyType } from '../typography/TypographyType';
3
+ import { FormControl } from '@angular/forms';
4
+ import { ThemesService } from '@progress-chef/platform-themes-service';
5
+ import { MultiSelectComponent } from '@progress/kendo-angular-dropdowns';
6
+ import * as i0 from "@angular/core";
7
+ export declare class MultiSelectDropdownComponent implements OnChanges, AfterViewInit {
8
+ private themesService;
9
+ label: string;
10
+ id: string;
11
+ data: Array<any>;
12
+ isDisabled: boolean;
13
+ clearButton: boolean;
14
+ fillMode: "flat" | "solid" | "outline" | "none";
15
+ checkboxes: boolean;
16
+ filterable: boolean;
17
+ placeholder: string;
18
+ readonly: boolean;
19
+ rounded: "small" | "medium" | "large" | "full" | "none";
20
+ size: "small" | "medium" | "large" | "none";
21
+ textField: string;
22
+ valueField: any;
23
+ model: any;
24
+ valuePrimitive: boolean;
25
+ modelChange: EventEmitter<any>;
26
+ control: FormControl;
27
+ fontType: TypographyType;
28
+ focus: boolean;
29
+ autoClose: boolean;
30
+ constructor(themesService: ThemesService);
31
+ multiSelect: MultiSelectComponent;
32
+ ngOnChanges(changes: SimpleChanges): void;
33
+ ngAfterViewInit(): void;
34
+ emitModelChange(ev: any): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectDropdownComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectDropdownComponent, "lib-multi-select-dropdown", never, { "label": { "alias": "label"; "required": false; }; "id": { "alias": "id"; "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; }; }, { "modelChange": "modelChange"; }, never, never, false, never>;
37
+ }
@@ -0,0 +1,11 @@
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
+ export declare class MultiSelectDropdownModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectDropdownModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MultiSelectDropdownModule, [typeof i1.MultiSelectDropdownComponent], [typeof i2.CommonModule, typeof i3.DropDownsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule], [typeof i1.MultiSelectDropdownComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<MultiSelectDropdownModule>;
11
+ }
@@ -0,0 +1,24 @@
1
+ import { EventEmitter, AfterViewInit } 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,30 @@
1
+ import { EventEmitter, OnChanges, OnInit, 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 OnInit, OnChanges {
6
+ private themesService;
7
+ id: string;
8
+ autoCorrect: boolean;
9
+ width: number;
10
+ isDisabled: boolean;
11
+ value: number;
12
+ min: number;
13
+ max: number;
14
+ step: number;
15
+ format: string;
16
+ fillMode: "flat" | "solid" | "outline" | "none";
17
+ rounded: "small" | "medium" | "large" | "full" | "none";
18
+ size: "small" | "medium" | "large" | "none";
19
+ readonly: boolean;
20
+ placeholder: string;
21
+ model: any;
22
+ modelChange: EventEmitter<any>;
23
+ control: FormControl;
24
+ constructor(themesService: ThemesService);
25
+ ngOnChanges(changes: SimpleChanges): void;
26
+ ngOnInit(): void;
27
+ emitModelChange(ev: any): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericTextboxComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<NumericTextboxComponent, "lib-numeric-textbox", never, { "id": { "alias": "id"; "required": false; }; "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>;
30
+ }
@@ -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,11 @@
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 ProgressBarComponent implements OnInit {
5
+ private themesService;
6
+ value: number;
7
+ constructor(themesService: ThemesService);
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressBarComponent, "lib-progress-bar", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, never, false, never>;
11
+ }
@@ -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,21 @@
1
+ import { EventEmitter, OnInit } 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 RadioButtonComponent implements OnInit {
6
+ private themesService;
7
+ size: "small" | "medium" | "large" | "none";
8
+ name: string;
9
+ value: string;
10
+ control: FormControl;
11
+ label: string;
12
+ labelPosition: "before" | "after";
13
+ id: string;
14
+ model: string;
15
+ modelChange: EventEmitter<string>;
16
+ constructor(themesService: ThemesService);
17
+ ngOnInit(): void;
18
+ emitModelChange(ev: string): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, never>;
20
+ 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; }; "id": { "alias": "id"; "required": false; }; "model": { "alias": "model"; "required": false; }; }, { "modelChange": "modelChange"; }, never, never, false, never>;
21
+ }
@@ -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
+ }
@@ -0,0 +1,23 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export interface MetaData {
5
+ title: string;
6
+ value: string;
7
+ }
8
+ export declare class ReportSummaryComponent implements OnInit {
9
+ private themesService;
10
+ leftTitle: string;
11
+ rightTitle: string;
12
+ bannerColor: string;
13
+ isCollapsed: boolean;
14
+ leftMetaData: MetaData[];
15
+ rightMetaData: MetaData[];
16
+ isOpened: boolean;
17
+ constructor(themesService: ThemesService);
18
+ ngOnInit(): void;
19
+ toggle(): void;
20
+ expandBox(): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReportSummaryComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReportSummaryComponent, "lib-report-summary", never, { "leftTitle": { "alias": "leftTitle"; "required": false; }; "rightTitle": { "alias": "rightTitle"; "required": false; }; "bannerColor": { "alias": "bannerColor"; "required": false; }; "isCollapsed": { "alias": "isCollapsed"; "required": false; }; "leftMetaData": { "alias": "leftMetaData"; "required": false; }; "rightMetaData": { "alias": "rightMetaData"; "required": false; }; }, {}, never, never, false, never>;
23
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./report-summary.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class ReportSummaryModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReportSummaryModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ReportSummaryModule, [typeof i1.ReportSummaryComponent], [typeof i2.CommonModule], [typeof i1.ReportSummaryComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ReportSummaryModule>;
8
+ }
@@ -0,0 +1,37 @@
1
+ import { AfterViewInit, EventEmitter } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import { AutoCompleteComponent } from '@progress/kendo-angular-dropdowns';
5
+ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
6
+ import * as i0 from "@angular/core";
7
+ export declare class SearchBoxComponent implements AfterViewInit {
8
+ private themesService;
9
+ autocomplete: AutoCompleteComponent;
10
+ textbox: TextBoxComponent;
11
+ source: Array<string>;
12
+ data: Array<string>;
13
+ filterable: boolean;
14
+ size: 'small' | 'medium' | 'large' | 'none';
15
+ rounded: "small" | "medium" | "large" | "full" | "none";
16
+ fillMode: "solid" | "flat" | "outline" | "none";
17
+ clearButton: boolean;
18
+ icon: string;
19
+ autoComplete: boolean;
20
+ placeholder: string;
21
+ width: number;
22
+ suggest: boolean;
23
+ modelChange: EventEmitter<string>;
24
+ searchClick: EventEmitter<any>;
25
+ control: FormControl;
26
+ value: string;
27
+ debounceTimeMs: number;
28
+ private searchSubject;
29
+ private subscription;
30
+ constructor(themesService: ThemesService);
31
+ ngAfterViewInit(): void;
32
+ emitValueChange(ev: string): void;
33
+ onSearchClick(): void;
34
+ ngOnDestroy(): void;
35
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBoxComponent, never>;
36
+ static ɵcmp: i0.ɵɵComponentDeclaration<SearchBoxComponent, "lib-search-box", never, { "source": { "alias": "source"; "required": false; }; "data": { "alias": "data"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "autoComplete": { "alias": "autoComplete"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "width": { "alias": "width"; "required": false; }; "suggest": { "alias": "suggest"; "required": false; }; "control": { "alias": "control"; "required": false; }; "value": { "alias": "value"; "required": false; }; "debounceTimeMs": { "alias": "debounceTimeMs"; "required": false; }; }, { "modelChange": "modelChange"; "searchClick": "searchClick"; }, never, never, false, never>;
37
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./search-box.component";
3
+ import * as i2 from "@progress/kendo-angular-dropdowns";
4
+ import * as i3 from "../icon/icon.module";
5
+ import * as i4 from "@progress/kendo-angular-inputs";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@angular/forms";
8
+ export declare class SearchBoxModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SearchBoxModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SearchBoxModule, [typeof i1.SearchBoxComponent], [typeof i2.AutoCompleteModule, typeof i3.IconModule, typeof i4.InputsModule, typeof i5.CommonModule, typeof i6.ReactiveFormsModule], [typeof i1.SearchBoxComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<SearchBoxModule>;
12
+ }
@@ -0,0 +1,18 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { ThemesService } from '@progress-chef/platform-themes-service';
3
+ import * as i0 from "@angular/core";
4
+ export declare class SliderComponent implements OnInit {
5
+ private themesService;
6
+ opened: boolean;
7
+ title: string;
8
+ frameNumber: number;
9
+ isSlideOpen: boolean;
10
+ sliderClose: EventEmitter<boolean>;
11
+ parentId: string;
12
+ constructor(themesService: ThemesService);
13
+ ngOnInit(): void;
14
+ closeSlider(e: any): void;
15
+ toggleSlide(): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<SliderComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "lib-slider", never, { "opened": { "alias": "opened"; "required": false; }; "title": { "alias": "title"; "required": false; }; "frameNumber": { "alias": "frameNumber"; "required": false; }; "parentId": { "alias": "parentId"; "required": false; }; }, { "sliderClose": "sliderClose"; }, never, ["*"], false, never>;
18
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./slider.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "../typography/typography.module";
5
+ export declare class SliderModule {
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<SliderModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SliderModule, [typeof i1.SliderComponent], [typeof i2.CommonModule, typeof i3.TypographyModule], [typeof i1.SliderComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<SliderModule>;
9
+ }
@@ -0,0 +1,20 @@
1
+ import { EventEmitter, OnInit } 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 TextAreaComponent implements OnInit {
6
+ private themesService;
7
+ placeholder: string;
8
+ resizable: 'vertical' | 'horizontal' | 'both';
9
+ rows: number;
10
+ cols: number;
11
+ width: string;
12
+ value: string;
13
+ control: FormControl;
14
+ inputChange: EventEmitter<String>;
15
+ constructor(themesService: ThemesService);
16
+ ngOnInit(): void;
17
+ emitValueChange(ev: String): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "lib-text-area", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "width": { "alias": "width"; "required": false; }; "value": { "alias": "value"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "inputChange": "inputChange"; }, never, never, false, never>;
20
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./text-area.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-inputs";
5
+ import * as i4 from "@angular/forms";
6
+ export declare class TextAreaModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TextAreaModule, [typeof i1.TextAreaComponent], [typeof i2.CommonModule, typeof i3.InputsModule, typeof i4.ReactiveFormsModule], [typeof i1.TextAreaComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<TextAreaModule>;
10
+ }
@@ -0,0 +1,34 @@
1
+ import { EventEmitter, AfterViewInit, OnChanges, SimpleChanges } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import { TextBoxComponent } from '@progress/kendo-angular-inputs';
5
+ import * as i0 from "@angular/core";
6
+ export declare class TextboxComponent implements AfterViewInit, OnChanges {
7
+ private themesService;
8
+ textbox: TextBoxComponent;
9
+ showPassword: boolean;
10
+ showEyeIcon: boolean;
11
+ clearButton: boolean;
12
+ placeholder: string;
13
+ width: string;
14
+ isDisabled: boolean;
15
+ readonly: boolean;
16
+ size: "small" | "medium" | "large";
17
+ rounded: "small" | "medium" | "large" | "full" | "none";
18
+ fillMode: "solid" | "flat" | "outline" | "none";
19
+ control: FormControl;
20
+ value: string;
21
+ type: string;
22
+ inputChange: EventEmitter<String>;
23
+ focusEvent: EventEmitter<any>;
24
+ blurEvent: EventEmitter<any>;
25
+ constructor(themesService: ThemesService);
26
+ ngOnChanges(changes: SimpleChanges): void;
27
+ ngAfterViewInit(): void;
28
+ toggleVisibility(): void;
29
+ emitValueChange(ev: String): void;
30
+ onFocus(): void;
31
+ onBlur(): void;
32
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextboxComponent, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextboxComponent, "lib-textbox", never, { "showEyeIcon": { "alias": "showEyeIcon"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "width": { "alias": "width"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "control": { "alias": "control"; "required": false; }; "value": { "alias": "value"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "inputChange": "inputChange"; "focusEvent": "focusEvent"; "blurEvent": "blurEvent"; }, never, never, false, never>;
34
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./textbox.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress/kendo-angular-inputs";
5
+ import * as i4 from "@angular/forms";
6
+ import * as i5 from "../icon/icon.module";
7
+ export declare class TextboxModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextboxModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TextboxModule, [typeof i1.TextboxComponent], [typeof i2.CommonModule, typeof i3.InputsModule, typeof i4.ReactiveFormsModule, typeof i5.IconModule], [typeof i1.TextboxComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<TextboxModule>;
11
+ }
@@ -0,0 +1,23 @@
1
+ import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
2
+ import { FormControl } from '@angular/forms';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TimeschedulerComponent implements OnInit, OnChanges {
6
+ private themesService;
7
+ model: Date;
8
+ modelChange: EventEmitter<Date>;
9
+ size: 'small' | 'medium' | 'large' | 'none';
10
+ rounded: 'small' | 'medium' | 'large' | 'full' | 'none';
11
+ fillMode: 'solid' | 'flat' | 'outline' | 'none';
12
+ format: string;
13
+ isDisabled: boolean;
14
+ readonly: boolean;
15
+ placeholder: string;
16
+ control: FormControl;
17
+ constructor(themesService: ThemesService);
18
+ ngOnChanges(changes: SimpleChanges): void;
19
+ ngOnInit(): void;
20
+ emitModelChange(ev: Date): void;
21
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimeschedulerComponent, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimeschedulerComponent, "lib-timescheduler", never, { "model": { "alias": "model"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "format": { "alias": "format"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "modelChange": "modelChange"; }, never, never, false, never>;
23
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./timescheduler.component";
3
+ import * as i2 from "@progress/kendo-angular-dateinputs";
4
+ import * as i3 from "@progress/kendo-angular-buttons";
5
+ import * as i4 from "@angular/forms";
6
+ export declare class TimeSchedulerModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimeSchedulerModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TimeSchedulerModule, [typeof i1.TimeschedulerComponent], [typeof i2.DateInputsModule, typeof i3.ButtonsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule], [typeof i1.TimeschedulerComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<TimeSchedulerModule>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "@progress/kendo-angular-notification";
4
+ export declare class ToastNotificationModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToastNotificationModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ToastNotificationModule, never, [typeof i1.CommonModule, typeof i2.NotificationModule], never>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<ToastNotificationModule>;
8
+ }
@@ -0,0 +1,28 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { NotificationService } from '@progress/kendo-angular-notification';
3
+ import * as i0 from "@angular/core";
4
+ export interface ToastNotification {
5
+ content: string | TemplateRef<any> | Function;
6
+ cssClass?: string | Array<string> | Object;
7
+ animation?: any;
8
+ position?: any;
9
+ type?: any;
10
+ closable?: boolean;
11
+ hideAfter?: number;
12
+ }
13
+ export declare class ToastNotificationService {
14
+ private notificationService;
15
+ constructor(notificationService: NotificationService);
16
+ /**
17
+ * @param notification
18
+ * default notification config:
19
+ * - content: '',
20
+ * - animation: { type: 'slide', duration: 400 },
21
+ * - position: { horizontal: 'center', vertical: 'top' },
22
+ * - type: { style: 'success', icon: true },
23
+ * - hideAfter: 4000,
24
+ */
25
+ showToastNotification(notification: ToastNotification): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToastNotificationService, never>;
27
+ static ɵprov: i0.ɵɵInjectableDeclaration<ToastNotificationService>;
28
+ }
@@ -0,0 +1,17 @@
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 TooltipComponent implements OnInit {
5
+ private themesService;
6
+ position: 'top' | 'bottom' | 'left' | 'right';
7
+ tooltipWidth: number;
8
+ tooltipHeight: number;
9
+ showOn: 'hover' | 'click' | 'none';
10
+ closable: boolean;
11
+ title: string;
12
+ callout: boolean;
13
+ constructor(themesService: ThemesService);
14
+ ngOnInit(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "lib-tooltip", never, { "position": { "alias": "position"; "required": false; }; "tooltipWidth": { "alias": "tooltipWidth"; "required": false; }; "tooltipHeight": { "alias": "tooltipHeight"; "required": false; }; "showOn": { "alias": "showOn"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "title": { "alias": "title"; "required": false; }; "callout": { "alias": "callout"; "required": false; }; }, {}, never, ["*", "div.tooltip-content"], false, never>;
17
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tooltip.component";
3
+ import * as i2 from "@progress/kendo-angular-tooltip";
4
+ export declare class TooltipModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TooltipModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipModule, [typeof i1.TooltipComponent], [typeof i2.TooltipsModule], [typeof i1.TooltipComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<TooltipModule>;
8
+ }
@@ -0,0 +1 @@
1
+ export type TypographyType = 'H1_MULISH_36_BOLD' | 'H1_MULISH_36_REGULAR' | 'H1_MULISH_36_LIGHT' | 'H2_MULISH_24_BOLD' | 'H2_MULISH_24_REGULAR' | 'H2_MULISH_24_LIGHT' | 'H3_MULISH_18_BOLD' | 'H3_MULISH_18_REGULAR' | 'H3_MULISH_18_LIGHT' | 'H4_MULISH_14_BOLD' | 'H5_MULISH_14_REGULAR' | 'H6_MULISH_14_LIGHT' | 'P_MULISH_16_BOLD' | 'P_MULISH_16_REGULAR' | 'P_MULISH_16_REGULAR_ITALIC' | 'P_MULISH_16_LIGHT' | 'P_MULISH_16_LIGHT_ITALIC' | 'P_MULISH_14_BOLD' | 'P_MULISH_14_REGULAR' | 'P_MULISH_14_REGULAR_ITALIC' | 'P_MULISH_14_LIGHT' | 'P_MULISH_14_LIGHT_ITALIC' | 'SMALL_MULISH_12_BOLD' | 'SMALL_MULISH_12_REGULAR' | 'SMALL_MULISH_12_REGULAR_ITALIC' | 'SMALL_MULISH_12_LIGHT' | 'SMALL_MULISH_12_LIGHT_ITALIC' | 'BASE_TEXT_MULISH';
@@ -0,0 +1,24 @@
1
+ import { AfterViewChecked, AfterViewInit, ElementRef, OnChanges } from '@angular/core';
2
+ import { TypographyType } from './TypographyType';
3
+ import { ThemesService } from '@progress-chef/platform-themes-service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TypographyComponent implements AfterViewInit, AfterViewChecked, OnChanges {
6
+ private themesService;
7
+ type: TypographyType;
8
+ defaultText: string;
9
+ isLabel: boolean;
10
+ hiddenLabel: string;
11
+ child: ElementRef | undefined;
12
+ labelChild: ElementRef | undefined;
13
+ showDefaultText: boolean;
14
+ font: string;
15
+ input_id: null;
16
+ constructor(themesService: ThemesService);
17
+ ngAfterViewChecked(): void;
18
+ ngOnChanges(): void;
19
+ ngAfterViewInit(): void;
20
+ checkForLabel(): void;
21
+ checkShowDefaultText(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<TypographyComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<TypographyComponent, "lib-typography", never, { "type": { "alias": "type"; "required": false; }; "defaultText": { "alias": "defaultText"; "required": false; }; "isLabel": { "alias": "isLabel"; "required": false; }; "hiddenLabel": { "alias": "hiddenLabel"; "required": false; }; }, {}, never, ["*", "*"], false, never>;
24
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./typography.component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class TypographyModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<TypographyModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TypographyModule, [typeof i1.TypographyComponent], [typeof i2.CommonModule], [typeof i1.TypographyComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<TypographyModule>;
8
+ }
@@ -0,0 +1,11 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { ActionsLayout, Orientation } from '@progress/kendo-angular-layout';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CardActionsComponent implements OnInit {
5
+ layout: ActionsLayout;
6
+ orientation: Orientation;
7
+ constructor();
8
+ ngOnInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardActionsComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardActionsComponent, "lib-card-actions", never, { "layout": { "alias": "layout"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, ["*"], false, never>;
11
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CardBodyComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardBodyComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardBodyComponent, "lib-card-body", never, {}, {}, never, ["*"], false, never>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CardFooterComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "lib-card-footer", never, {}, {}, never, ["*"], false, never>;
8
+ }
@@ -0,0 +1,14 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { TypographyType } from '../../../atoms/typography/TypographyType';
3
+ import * as i0 from "@angular/core";
4
+ export declare class CardHeaderComponent implements OnInit {
5
+ title: string;
6
+ subtitle: string;
7
+ cardNumber: number;
8
+ titleFont: TypographyType;
9
+ subtitleFont: TypographyType;
10
+ constructor();
11
+ ngOnInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "lib-card-header", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "cardNumber": { "alias": "cardNumber"; "required": false; }; "titleFont": { "alias": "titleFont"; "required": false; }; "subtitleFont": { "alias": "subtitleFont"; "required": false; }; }, {}, never, ["*"], false, never>;
14
+ }
@@ -0,0 +1,9 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CardComponent implements OnInit {
4
+ width: string;
5
+ orientation: 'vertical' | 'horizontal';
6
+ ngOnInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "lib-card", never, { "width": { "alias": "width"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, ["*"], false, never>;
9
+ }
@@ -0,0 +1,14 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./card.component";
3
+ import * as i2 from "./card-header/card-header.component";
4
+ import * as i3 from "./card-footer/card-footer.component";
5
+ import * as i4 from "./card-actions/card-actions.component";
6
+ import * as i5 from "./card-body/card-body.component";
7
+ import * as i6 from "@angular/common";
8
+ import * as i7 from "@progress/kendo-angular-layout";
9
+ import * as i8 from "../../atoms/typography/typography.module";
10
+ export declare class CardModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CardModule, [typeof i1.CardComponent, typeof i2.CardHeaderComponent, typeof i3.CardFooterComponent, typeof i4.CardActionsComponent, typeof i5.CardBodyComponent], [typeof i6.CommonModule, typeof i7.LayoutModule, typeof i8.TypographyModule], [typeof i1.CardComponent, typeof i2.CardHeaderComponent, typeof i3.CardFooterComponent, typeof i4.CardActionsComponent, typeof i5.CardBodyComponent]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<CardModule>;
14
+ }