@progress-chef/platform-shared-components 0.0.111 → 0.0.112

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 (219) 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.module.mjs +23 -8
  108. package/esm2022/public-api.mjs +114 -2
  109. package/fesm2022/progress-chef-platform-shared-components.mjs +5709 -10
  110. package/fesm2022/progress-chef-platform-shared-components.mjs.map +1 -1
  111. package/lib/atoms/alert/alert.component.d.ts +20 -0
  112. package/lib/atoms/alert/alert.module.d.ts +8 -0
  113. package/lib/atoms/angular-popup/angular-popup.component.d.ts +15 -0
  114. package/lib/atoms/angular-popup/angular-popup.module.d.ts +10 -0
  115. package/lib/atoms/atoms.module.d.ts +48 -0
  116. package/lib/atoms/avatar/avatar.component.d.ts +21 -0
  117. package/lib/atoms/avatar/avatar.module.d.ts +10 -0
  118. package/lib/atoms/breadcrumb/breadcrumb.component.d.ts +17 -0
  119. package/lib/atoms/breadcrumb/breadcrumb.module.d.ts +12 -0
  120. package/lib/atoms/button/button.component.d.ts +29 -0
  121. package/lib/atoms/button/button.module.d.ts +11 -0
  122. package/lib/atoms/button-group/button-group.component.d.ts +20 -0
  123. package/lib/atoms/button-group/button-group.module.d.ts +11 -0
  124. package/lib/atoms/checkbox/checkbox.component.d.ts +21 -0
  125. package/lib/atoms/checkbox/checkbox.module.d.ts +11 -0
  126. package/lib/atoms/chip/chip.component.d.ts +12 -0
  127. package/lib/atoms/chip/chip.module.d.ts +13 -0
  128. package/lib/atoms/chip-list/chip-list.component.d.ts +32 -0
  129. package/lib/atoms/chip-list/chip-list.module.d.ts +15 -0
  130. package/lib/atoms/clipboard/clipboard.component.d.ts +35 -0
  131. package/lib/atoms/clipboard/clipboard.module.d.ts +12 -0
  132. package/lib/atoms/container/container.component.d.ts +9 -0
  133. package/lib/atoms/container/container.module.d.ts +8 -0
  134. package/lib/atoms/date-range/date-range.component.d.ts +24 -0
  135. package/lib/atoms/date-range/date-range.module.d.ts +11 -0
  136. package/lib/atoms/datepicker/datepicker.component.d.ts +32 -0
  137. package/lib/atoms/datepicker/datepicker.module.d.ts +10 -0
  138. package/lib/atoms/drag-and-drop/drag-and-drop.component.d.ts +26 -0
  139. package/lib/atoms/drag-and-drop/drag-and-drop.module.d.ts +13 -0
  140. package/lib/atoms/dropdown/dropdown.component.d.ts +67 -0
  141. package/lib/atoms/dropdown/dropdown.module.d.ts +12 -0
  142. package/lib/atoms/dropdown-button/dropdown-button.component.d.ts +17 -0
  143. package/lib/atoms/dropdown-button/dropdown-button.module.d.ts +11 -0
  144. package/lib/atoms/dropdown-tree/dropdowntree.component.d.ts +35 -0
  145. package/lib/atoms/dropdown-tree/dropdowntree.module.d.ts +12 -0
  146. package/lib/atoms/expansion-panel/expansion-panel.component.d.ts +21 -0
  147. package/lib/atoms/expansion-panel/expansion-panel.module.d.ts +16 -0
  148. package/lib/atoms/icon/icon.component.d.ts +14 -0
  149. package/lib/atoms/icon/icon.module.d.ts +7 -0
  150. package/lib/atoms/labels/label.component.d.ts +12 -0
  151. package/lib/atoms/labels/label.module.d.ts +10 -0
  152. package/lib/atoms/list-views/list-view.component.d.ts +32 -0
  153. package/lib/atoms/list-views/list-view.module.d.ts +17 -0
  154. package/lib/atoms/loader/loader.component.d.ts +30 -0
  155. package/lib/atoms/loader/loader.module.d.ts +9 -0
  156. package/lib/atoms/loading-spinner/loading-spinner.component.d.ts +11 -0
  157. package/lib/atoms/loading-spinner/loading-spinner.module.d.ts +8 -0
  158. package/lib/atoms/multi-select-dropdown/multi-select-dropdown.component.d.ts +50 -0
  159. package/lib/atoms/multi-select-dropdown/multi-select-dropdown.module.d.ts +12 -0
  160. package/lib/atoms/notification/notification.component.d.ts +24 -0
  161. package/lib/atoms/notification/notification.module.d.ts +8 -0
  162. package/lib/atoms/numeric-textbox/numeric-textbox.component.d.ts +28 -0
  163. package/lib/atoms/numeric-textbox/numeric-textbox.module.d.ts +10 -0
  164. package/lib/atoms/progress-bar/progress-bar.component.d.ts +9 -0
  165. package/lib/atoms/progress-bar/progress-bar.module.d.ts +8 -0
  166. package/lib/atoms/radio-button/radio-button.component.d.ts +22 -0
  167. package/lib/atoms/radio-button/radio-button.module.d.ts +11 -0
  168. package/lib/atoms/search-box/search-box.component.d.ts +37 -0
  169. package/lib/atoms/search-box/search-box.module.d.ts +12 -0
  170. package/lib/atoms/slider/slider.component.d.ts +18 -0
  171. package/lib/atoms/slider/slider.module.d.ts +9 -0
  172. package/lib/atoms/stepper/stepper.component.d.ts +25 -0
  173. package/lib/atoms/stepper/stepper.module.d.ts +15 -0
  174. package/lib/atoms/switch/switch.component.d.ts +20 -0
  175. package/lib/atoms/switch/switch.module.d.ts +16 -0
  176. package/lib/atoms/text-area/text-area.component.d.ts +35 -0
  177. package/lib/atoms/text-area/text-area.module.d.ts +11 -0
  178. package/lib/atoms/textbox/textbox.component.d.ts +37 -0
  179. package/lib/atoms/textbox/textbox.module.d.ts +12 -0
  180. package/lib/atoms/time-picker/time-picker.component.d.ts +31 -0
  181. package/lib/atoms/time-picker/time-picker.module.d.ts +10 -0
  182. package/lib/atoms/timescheduler/timescheduler.component.d.ts +28 -0
  183. package/lib/atoms/timescheduler/timescheduler.module.d.ts +10 -0
  184. package/lib/atoms/toast-notification/toast-notification.module.d.ts +8 -0
  185. package/lib/atoms/toast-notification/toast-notification.service.d.ts +51 -0
  186. package/lib/atoms/tooltip/tooltip.component.d.ts +17 -0
  187. package/lib/atoms/tooltip/tooltip.module.d.ts +8 -0
  188. package/lib/atoms/typography/TypographyType.d.ts +1 -0
  189. package/lib/atoms/typography/typography.component.d.ts +25 -0
  190. package/lib/atoms/typography/typography.module.d.ts +8 -0
  191. package/lib/atoms/uploader/uploader.component.d.ts +64 -0
  192. package/lib/atoms/uploader/uploader.module.d.ts +14 -0
  193. package/lib/molecules/card/card-actions/card-actions.component.d.ts +8 -0
  194. package/lib/molecules/card/card-body/card-body.component.d.ts +5 -0
  195. package/lib/molecules/card/card-footer/card-footer.component.d.ts +5 -0
  196. package/lib/molecules/card/card-header/card-header.component.d.ts +11 -0
  197. package/lib/molecules/card/card.component.d.ts +7 -0
  198. package/lib/molecules/card/card.module.d.ts +14 -0
  199. package/lib/molecules/dialog/confirmation-dialog/confirmation-dialog.component.d.ts +20 -0
  200. package/lib/molecules/dialog/dialog-actions/dialog-actions.component.d.ts +7 -0
  201. package/lib/molecules/dialog/dialog-titlebar/dialog-titlebar.component.d.ts +16 -0
  202. package/lib/molecules/dialog/dialog.component.d.ts +20 -0
  203. package/lib/molecules/dialog/dialog.module.d.ts +15 -0
  204. package/lib/molecules/grid-form/grid-form.component.d.ts +33 -0
  205. package/lib/molecules/grid-form/grid-form.module.d.ts +16 -0
  206. package/lib/molecules/grid-layout/grid-layout-item/grid-layout-item.component.d.ts +14 -0
  207. package/lib/molecules/grid-layout/grid-layout.component.d.ts +11 -0
  208. package/lib/molecules/grid-layout/grid-layout.module.d.ts +10 -0
  209. package/lib/molecules/grid-pagination/grid-pagination-spacer/grid-pagination-spacer.component.d.ts +5 -0
  210. package/lib/molecules/grid-pagination/grid-pagination.component.d.ts +150 -0
  211. package/lib/molecules/grid-pagination/grid-pagination.module.d.ts +21 -0
  212. package/lib/molecules/grid-pagination/kebab-menu-filter.pipe.d.ts +7 -0
  213. package/lib/molecules/molecules.module.d.ts +14 -0
  214. package/lib/molecules/tabstrip/tabstrip-tab/tabstrip-tab.component.d.ts +10 -0
  215. package/lib/molecules/tabstrip/tabstrip.component.d.ts +15 -0
  216. package/lib/molecules/tabstrip/tabstrip.module.d.ts +10 -0
  217. package/lib/shared.module.d.ts +5 -2
  218. package/package.json +32 -5
  219. package/public-api.d.ts +108 -1
@@ -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 "@progress-chef/typography";
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
+ }
@@ -0,0 +1,20 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ConfirmationDialogComponent implements OnChanges {
4
+ confirmationDialogCloseEvent: EventEmitter<any>;
5
+ popupEvent: EventEmitter<any>;
6
+ title: string;
7
+ secondaryBtnLabel: string;
8
+ btnText: string;
9
+ type: string;
10
+ dialogInfoText: string;
11
+ dialogConfirmationText: string;
12
+ fillMode: 'solid' | 'flat' | 'outline' | 'clear' | 'link' | 'none';
13
+ themeColor: 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
14
+ secondaryBtnFillMode: 'solid' | 'flat' | 'outline' | 'clear' | 'link' | 'none';
15
+ dialogClose(): void;
16
+ eventClicked(): void;
17
+ ngOnChanges(changes: SimpleChanges): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmationDialogComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmationDialogComponent, "lib-confirmation-dialog", never, { "title": { "alias": "title"; "required": false; }; "secondaryBtnLabel": { "alias": "secondaryBtnLabel"; "required": false; }; "btnText": { "alias": "btnText"; "required": false; }; "type": { "alias": "type"; "required": false; }; "dialogInfoText": { "alias": "dialogInfoText"; "required": false; }; "dialogConfirmationText": { "alias": "dialogConfirmationText"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "secondaryBtnFillMode": { "alias": "secondaryBtnFillMode"; "required": false; }; }, { "confirmationDialogCloseEvent": "confirmationDialogCloseEvent"; "popupEvent": "popupEvent"; }, never, never, false, never>;
20
+ }
@@ -0,0 +1,7 @@
1
+ import { ActionsLayout } from '@progress/kendo-angular-dialog';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DialogActionsComponent {
4
+ buttonLayout: ActionsLayout;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogActionsComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogActionsComponent, "lib-dialog-actions", never, { "buttonLayout": { "alias": "buttonLayout"; "required": false; }; }, {}, never, ["*"], false, never>;
7
+ }
@@ -0,0 +1,16 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { DialogComponent } from '../dialog.component';
3
+ import { TypographyType } from '@progress-chef/typography';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DialogTitlebarComponent {
6
+ dialogComponent: DialogComponent;
7
+ title: string;
8
+ titleFont: TypographyType;
9
+ closeDialog: EventEmitter<any>;
10
+ hideCloseIcon: boolean;
11
+ constructor(dialogComponent: DialogComponent);
12
+ close(): void;
13
+ closeBtn(): "dialog-title" | undefined;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogTitlebarComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogTitlebarComponent, "lib-dialog-titlebar", never, { "title": { "alias": "title"; "required": false; }; "titleFont": { "alias": "titleFont"; "required": false; }; "hideCloseIcon": { "alias": "hideCloseIcon"; "required": false; }; }, { "closeDialog": "closeDialog"; }, never, never, false, never>;
16
+ }
@@ -0,0 +1,20 @@
1
+ import { ChangeDetectorRef, ElementRef, Renderer2 } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class DialogComponent {
4
+ private elt;
5
+ private ref;
6
+ private renderer;
7
+ contentRef: ElementRef | undefined;
8
+ dialogRef: ElementRef | undefined;
9
+ width: string | number;
10
+ height: string | number;
11
+ minWidth: string | number;
12
+ maxWidth: string | number;
13
+ minHeight: string | number;
14
+ maxHeight: string | number;
15
+ opened: true | false;
16
+ constructor(elt: ElementRef, ref: ChangeDetectorRef, renderer: Renderer2);
17
+ ngAfterViewInit(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogComponent, "lib-dialog", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; }, {}, never, ["*"], false, never>;
20
+ }
@@ -0,0 +1,15 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dialog.component";
3
+ import * as i2 from "./dialog-titlebar/dialog-titlebar.component";
4
+ import * as i3 from "./dialog-actions/dialog-actions.component";
5
+ import * as i4 from "./confirmation-dialog/confirmation-dialog.component";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@progress/kendo-angular-dialog";
8
+ import * as i7 from "@progress/kendo-angular-buttons";
9
+ import * as i8 from "@progress-chef/typography";
10
+ import * as i9 from "@progress-chef/button";
11
+ export declare class DialogModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DialogModule, [typeof i1.DialogComponent, typeof i2.DialogTitlebarComponent, typeof i3.DialogActionsComponent, typeof i4.ConfirmationDialogComponent], [typeof i5.CommonModule, typeof i6.DialogsModule, typeof i7.ButtonsModule, typeof i8.TypographyModule, typeof i9.ButtonModule], [typeof i1.DialogComponent, typeof i2.DialogTitlebarComponent, typeof i3.DialogActionsComponent, typeof i4.ConfirmationDialogComponent]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<DialogModule>;
15
+ }
@@ -0,0 +1,33 @@
1
+ import { EventEmitter, Renderer2, TemplateRef } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { AddEvent, CancelEvent, EditEvent, RemoveEvent, SaveEvent } from '@progress/kendo-angular-grid';
4
+ import { State } from '@progress/kendo-data-query';
5
+ import * as i0 from "@angular/core";
6
+ export declare class GridFormComponent {
7
+ private renderer;
8
+ showToolbar: boolean;
9
+ noRecordsContent: string;
10
+ showColumns: boolean;
11
+ formGroup: FormGroup | any;
12
+ templateRef1: TemplateRef<any> | null;
13
+ templateRef2: TemplateRef<any> | null;
14
+ gridData: any[];
15
+ columnData: any[];
16
+ controls: any;
17
+ counter: number;
18
+ addOrUpdateRow: EventEmitter<any>;
19
+ deletedRow: EventEmitter<any>;
20
+ private editedRowIndex;
21
+ removeRow: EventEmitter<any>;
22
+ saveRow: EventEmitter<any>;
23
+ constructor(renderer: Renderer2);
24
+ onStateChange(state: State): void;
25
+ addHandler(args: AddEvent): void;
26
+ editHandler(args: EditEvent): void;
27
+ cancelHandler(args: CancelEvent): void;
28
+ saveHandler({ sender, rowIndex, formGroup, isNew }: SaveEvent): void;
29
+ removeHandler(args: RemoveEvent): void;
30
+ private closeEditor;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridFormComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<GridFormComponent, "lib-grid-form", never, { "showToolbar": { "alias": "showToolbar"; "required": false; }; "noRecordsContent": { "alias": "noRecordsContent"; "required": false; }; "gridData": { "alias": "gridData"; "required": false; }; "columnData": { "alias": "columnData"; "required": false; }; "controls": { "alias": "controls"; "required": false; }; }, { "addOrUpdateRow": "addOrUpdateRow"; "deletedRow": "deletedRow"; "removeRow": "removeRow"; "saveRow": "saveRow"; }, ["templateRef1", "templateRef2"], ["header", "div.header-add-btn"], false, never>;
33
+ }
@@ -0,0 +1,16 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./grid-form.component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "@progress-chef/icon";
5
+ import * as i4 from "@progress/kendo-angular-icons";
6
+ import * as i5 from "@progress/kendo-angular-inputs";
7
+ import * as i6 from "@progress-chef/typography";
8
+ import * as i7 from "@progress-chef/tooltip";
9
+ import * as i8 from "@progress/kendo-angular-grid";
10
+ import * as i9 from "@progress-chef/grid-pagination";
11
+ import * as i10 from "@angular/forms";
12
+ export declare class GridFormModule {
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridFormModule, never>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GridFormModule, [typeof i1.GridFormComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof i4.IconsModule, typeof i5.InputsModule, typeof i6.TypographyModule, typeof i7.TooltipModule, typeof i8.GridModule, typeof i9.GridPaginationModule, typeof i10.FormsModule, typeof i10.ReactiveFormsModule], [typeof i1.GridFormComponent]>;
15
+ static ɵinj: i0.ɵɵInjectorDeclaration<GridFormModule>;
16
+ }
@@ -0,0 +1,14 @@
1
+ import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class GridLayoutItemComponent implements AfterViewInit {
4
+ private renderer;
5
+ private elRef;
6
+ rowNumber: number;
7
+ columnNumber: number;
8
+ rowSpan: number;
9
+ colSpan: number;
10
+ constructor(renderer: Renderer2, elRef: ElementRef);
11
+ ngAfterViewInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridLayoutItemComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<GridLayoutItemComponent, "lib-grid-layout-item", never, { "rowNumber": { "alias": "rowNumber"; "required": false; }; "columnNumber": { "alias": "columnNumber"; "required": false; }; "rowSpan": { "alias": "rowSpan"; "required": false; }; "colSpan": { "alias": "colSpan"; "required": false; }; }, {}, never, ["*"], false, never>;
14
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GridLayoutComponent {
3
+ horizontalAlign: "start" | "center" | "end" | "stretch";
4
+ verticalAlign: "top" | "middle" | "bottom" | "stretch";
5
+ rowGap: string | number;
6
+ columnGap: string | number;
7
+ rows: any[];
8
+ columns: any[];
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridLayoutComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<GridLayoutComponent, "lib-grid-layout", never, { "horizontalAlign": { "alias": "horizontalAlign"; "required": false; }; "verticalAlign": { "alias": "verticalAlign"; "required": false; }; "rowGap": { "alias": "rowGap"; "required": false; }; "columnGap": { "alias": "columnGap"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; }, {}, never, ["*"], false, never>;
11
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./grid-layout.component";
3
+ import * as i2 from "./grid-layout-item/grid-layout-item.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@progress/kendo-angular-layout";
6
+ export declare class GridLayoutModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridLayoutModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GridLayoutModule, [typeof i1.GridLayoutComponent, typeof i2.GridLayoutItemComponent], [typeof i3.CommonModule, typeof i4.LayoutModule], [typeof i1.GridLayoutComponent, typeof i2.GridLayoutItemComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<GridLayoutModule>;
10
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class GridPaginationSpacerComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridPaginationSpacerComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<GridPaginationSpacerComponent, "lib-grid-pagination-spacer", never, {}, {}, never, never, false, never>;
5
+ }
@@ -0,0 +1,150 @@
1
+ import { AfterContentInit, AfterViewInit, ChangeDetectorRef, Component, ElementRef, EventEmitter, OnInit, QueryList, Renderer2, TemplateRef } from '@angular/core';
2
+ import { FormGroup } from '@angular/forms';
3
+ import { SortDescriptor } from '@progress/kendo-data-query';
4
+ import { LoaderSize, LoaderThemeColor, LoaderType } from '@progress-chef/loader';
5
+ import { CellClickEvent, CellCloseEvent, GridComponent, GridDataResult, PageChangeEvent, RowClassArgs, SelectAllCheckboxState, SelectableMode, SelectableSettings } from '@progress/kendo-angular-grid';
6
+ import { SVGIcon } from '@progress/kendo-svg-icons';
7
+ import * as i0 from "@angular/core";
8
+ export declare class CustomColumnTemplate {
9
+ template: TemplateRef<Component>;
10
+ type: string;
11
+ constructor(template: TemplateRef<Component>);
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<CustomColumnTemplate, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<CustomColumnTemplate, "ng-template[type]", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
14
+ }
15
+ export declare class GridPaginationComponent implements OnInit, AfterContentInit, AfterViewInit {
16
+ private cdRef;
17
+ private renderer;
18
+ columnTemplates: QueryList<CustomColumnTemplate> | [];
19
+ templateRef: TemplateRef<any> | null;
20
+ detailTemplate: TemplateRef<any> | null;
21
+ impactColumn: TemplateRef<any> | null;
22
+ grid: GridComponent;
23
+ gridElement: ElementRef;
24
+ selectAllCheckbox: ElementRef;
25
+ selectAllMessageElement: ElementRef;
26
+ skip: number;
27
+ itemName: string;
28
+ showSelectAllMessage: boolean;
29
+ allPagesSelected: boolean;
30
+ previousSelectAllState: SelectAllCheckboxState;
31
+ onSelectAllAcrossPages: EventEmitter<boolean>;
32
+ columnData: any;
33
+ pageSize: number;
34
+ pageable: boolean;
35
+ sortable: boolean;
36
+ groupable: boolean;
37
+ reorderable: boolean;
38
+ resizable: boolean;
39
+ checkBoxWidth: number;
40
+ checkBoxColumnResizable: boolean;
41
+ checkBoxColumnMenu: boolean;
42
+ checkBoxColumnShowSelectedAll: boolean;
43
+ checkBoxRequired: boolean;
44
+ columnMenu: boolean;
45
+ mode: SelectableMode | undefined;
46
+ checkboxOnly: boolean;
47
+ dragColumns: boolean;
48
+ navigable: boolean;
49
+ gridHeight: any;
50
+ gridRowSelectByValue: string;
51
+ noRecordsContent: string;
52
+ selectedRowData: EventEmitter<any[]>;
53
+ showToolbar: boolean;
54
+ extractDataItems: any;
55
+ selectableSettings: SelectableSettings;
56
+ kebabList: any;
57
+ showKebab: boolean;
58
+ rowDetails: EventEmitter<any[]>;
59
+ kebabItemClick: EventEmitter<any>;
60
+ icon: SVGIcon;
61
+ kebabColumnWidth: number;
62
+ data: any;
63
+ selectColumn: string;
64
+ rowDataOfClickedCell: EventEmitter<any>;
65
+ _preSelected: any[];
66
+ set preSelected(value: any[]);
67
+ _gridView: GridDataResult;
68
+ set gridView(value: GridDataResult);
69
+ preSelectedRecords: any[];
70
+ onPageChange: EventEmitter<any>;
71
+ ignoreColumnCellClick: number[];
72
+ allowColumnClick: boolean;
73
+ sort: SortDescriptor[];
74
+ hasApiSorting: boolean;
75
+ sortDirection: EventEmitter<any>;
76
+ arrowDownIcon: SVGIcon;
77
+ arrowUpIcon: SVGIcon;
78
+ expandRowIndex: number[];
79
+ customExpandRowColumn: boolean;
80
+ deleteColumnWidth: number;
81
+ expandRowColumnWidth: number;
82
+ deletedRowData: EventEmitter<any>;
83
+ sizes: any[];
84
+ _pageCount: number;
85
+ set pageCount(value: number);
86
+ showDeleteColumn: boolean;
87
+ hideKebabRowIndex: number[];
88
+ loading: boolean;
89
+ loaderType: LoaderType;
90
+ loaderSize: LoaderSize;
91
+ loaderTheme: LoaderThemeColor;
92
+ initialGridHeight: any;
93
+ gridBottomSpace: number;
94
+ resizeHeight: any;
95
+ selectAllState: SelectAllCheckboxState;
96
+ selectedItemCount: number;
97
+ selectedRows: any[];
98
+ disablePreSelectedRows: boolean;
99
+ formGroup: FormGroup | any;
100
+ updatedData: EventEmitter<any>;
101
+ allowEditingCell: boolean;
102
+ columnContentNoWrap: boolean;
103
+ infiniteScrollLoader: boolean;
104
+ onscrollBottom: EventEmitter<any>;
105
+ isInfiniteScrollGrid: boolean;
106
+ gridLoading: boolean;
107
+ selectAllMsgParentElement: any;
108
+ minResizableWidth: number;
109
+ showRefresh: boolean;
110
+ isKebabColumnSticky: boolean;
111
+ isCheckBoxColumnSticky: boolean;
112
+ isDeleteColumnSticky: boolean;
113
+ emitRefreshEvt: EventEmitter<any>;
114
+ isSelectAllCheckboxRequired: boolean;
115
+ constructor(cdRef: ChangeDetectorRef, renderer: Renderer2);
116
+ columnTemplateDict: any;
117
+ ngOnInit(): void;
118
+ scrollBottom(): void;
119
+ getPosition(): any;
120
+ ngAfterContentInit(): void;
121
+ ngAfterViewInit(): void;
122
+ initGrid(): void;
123
+ selectAcrossPages(isSelected: boolean): void;
124
+ triggerSelectAllPagesEvent(isSelected: boolean): void;
125
+ addSelectAllMessage(selectAll: boolean): void;
126
+ pageChange(event: PageChangeEvent): void;
127
+ setSelectableSettings(): void;
128
+ selectedKeysChange(rows: number[]): void;
129
+ getSelectAllState(selectedRowsCount: number): any;
130
+ onKebabClick(item: any, rowDetails: any): void;
131
+ onDetailExpand(rowData: any): void;
132
+ cellClickHandler(args: CellClickEvent): void;
133
+ sortChange(sort: SortDescriptor[]): void;
134
+ loadGridData(): void;
135
+ expandRow(id: number): void;
136
+ collapseRow(id: number): void;
137
+ onDelete(rowDetails: any): void;
138
+ getHeaderHeight(): "hide-header" | "view-header";
139
+ rowClass: (args: RowClassArgs) => "" | {
140
+ 'k-disabled': boolean;
141
+ };
142
+ expandColumnClass(): "" | "expand-row";
143
+ onSelectAllChange(checkedState: SelectAllCheckboxState): void;
144
+ canEnableSelectAll(): boolean;
145
+ cellCloseHandler(args: CellCloseEvent): void;
146
+ saveChanges(): void;
147
+ refreshGridData(): void;
148
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridPaginationComponent, never>;
149
+ static ɵcmp: i0.ɵɵComponentDeclaration<GridPaginationComponent, "lib-grid-pagination", never, { "skip": { "alias": "skip"; "required": false; }; "itemName": { "alias": "itemName"; "required": false; }; "showSelectAllMessage": { "alias": "showSelectAllMessage"; "required": false; }; "columnData": { "alias": "columnData"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "groupable": { "alias": "groupable"; "required": false; }; "reorderable": { "alias": "reorderable"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "checkBoxWidth": { "alias": "checkBoxWidth"; "required": false; }; "checkBoxColumnResizable": { "alias": "checkBoxColumnResizable"; "required": false; }; "checkBoxColumnMenu": { "alias": "checkBoxColumnMenu"; "required": false; }; "checkBoxColumnShowSelectedAll": { "alias": "checkBoxColumnShowSelectedAll"; "required": false; }; "checkBoxRequired": { "alias": "checkBoxRequired"; "required": false; }; "columnMenu": { "alias": "columnMenu"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "checkboxOnly": { "alias": "checkboxOnly"; "required": false; }; "dragColumns": { "alias": "dragColumns"; "required": false; }; "navigable": { "alias": "navigable"; "required": false; }; "gridHeight": { "alias": "gridHeight"; "required": false; }; "gridRowSelectByValue": { "alias": "gridRowSelectByValue"; "required": false; }; "noRecordsContent": { "alias": "noRecordsContent"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "kebabList": { "alias": "kebabList"; "required": false; }; "showKebab": { "alias": "showKebab"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "kebabColumnWidth": { "alias": "kebabColumnWidth"; "required": false; }; "selectColumn": { "alias": "selectColumn"; "required": false; }; "preSelected": { "alias": "preSelected"; "required": false; }; "gridView": { "alias": "gridView"; "required": false; }; "ignoreColumnCellClick": { "alias": "ignoreColumnCellClick"; "required": false; }; "allowColumnClick": { "alias": "allowColumnClick"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; "hasApiSorting": { "alias": "hasApiSorting"; "required": false; }; "expandRowIndex": { "alias": "expandRowIndex"; "required": false; }; "customExpandRowColumn": { "alias": "customExpandRowColumn"; "required": false; }; "deleteColumnWidth": { "alias": "deleteColumnWidth"; "required": false; }; "sizes": { "alias": "sizes"; "required": false; }; "pageCount": { "alias": "pageCount"; "required": false; }; "showDeleteColumn": { "alias": "showDeleteColumn"; "required": false; }; "hideKebabRowIndex": { "alias": "hideKebabRowIndex"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "loaderType": { "alias": "loaderType"; "required": false; }; "loaderSize": { "alias": "loaderSize"; "required": false; }; "loaderTheme": { "alias": "loaderTheme"; "required": false; }; "disablePreSelectedRows": { "alias": "disablePreSelectedRows"; "required": false; }; "allowEditingCell": { "alias": "allowEditingCell"; "required": false; }; "columnContentNoWrap": { "alias": "columnContentNoWrap"; "required": false; }; "infiniteScrollLoader": { "alias": "infiniteScrollLoader"; "required": false; }; "isInfiniteScrollGrid": { "alias": "isInfiniteScrollGrid"; "required": false; }; "gridLoading": { "alias": "gridLoading"; "required": false; }; "minResizableWidth": { "alias": "minResizableWidth"; "required": false; }; "showRefresh": { "alias": "showRefresh"; "required": false; }; "isKebabColumnSticky": { "alias": "isKebabColumnSticky"; "required": false; }; "isCheckBoxColumnSticky": { "alias": "isCheckBoxColumnSticky"; "required": false; }; "isDeleteColumnSticky": { "alias": "isDeleteColumnSticky"; "required": false; }; "isSelectAllCheckboxRequired": { "alias": "isSelectAllCheckboxRequired"; "required": false; }; }, { "onSelectAllAcrossPages": "onSelectAllAcrossPages"; "selectedRowData": "selectedRowData"; "rowDetails": "rowDetails"; "kebabItemClick": "kebabItemClick"; "rowDataOfClickedCell": "rowDataOfClickedCell"; "onPageChange": "onPageChange"; "sortDirection": "sortDirection"; "deletedRowData": "deletedRowData"; "updatedData": "updatedData"; "onscrollBottom": "onscrollBottom"; "emitRefreshEvt": "emitRefreshEvt"; }, ["templateRef", "detailTemplate", "impactColumn", "columnTemplates"], ["*"], false, never>;
150
+ }
@@ -0,0 +1,21 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./grid-pagination.component";
3
+ import * as i2 from "./grid-pagination-spacer/grid-pagination-spacer.component";
4
+ import * as i3 from "./kebab-menu-filter.pipe";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "@progress/kendo-angular-buttons";
7
+ import * as i6 from "@progress-chef/icon";
8
+ import * as i7 from "@progress/kendo-angular-icons";
9
+ import * as i8 from "@progress/kendo-angular-inputs";
10
+ import * as i9 from "@progress/kendo-angular-grid";
11
+ import * as i10 from "@progress/kendo-angular-dialog";
12
+ import * as i11 from "@angular/forms";
13
+ import * as i12 from "@progress-chef/tooltip";
14
+ import * as i13 from "@progress-chef/typography";
15
+ import * as i14 from "@progress-chef/loader";
16
+ import * as i15 from "@progress-chef/button";
17
+ export declare class GridPaginationModule {
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridPaginationModule, never>;
19
+ static ɵmod: i0.ɵɵNgModuleDeclaration<GridPaginationModule, [typeof i1.GridPaginationComponent, typeof i2.GridPaginationSpacerComponent, typeof i1.CustomColumnTemplate, typeof i3.KebabMenuFilterPipe], [typeof i4.CommonModule, typeof i5.ButtonsModule, typeof i6.IconModule, typeof i7.IconsModule, typeof i8.InputsModule, typeof i9.GridModule, typeof i10.DialogModule, typeof i11.FormsModule, typeof i12.TooltipModule, typeof i11.ReactiveFormsModule, typeof i13.TypographyModule, typeof i14.LoaderModule, typeof i15.ButtonModule], [typeof i1.GridPaginationComponent, typeof i2.GridPaginationSpacerComponent, typeof i1.CustomColumnTemplate]>;
20
+ static ɵinj: i0.ɵɵInjectorDeclaration<GridPaginationModule>;
21
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from "@angular/core";
2
+ import * as i0 from "@angular/core";
3
+ export declare class KebabMenuFilterPipe implements PipeTransform {
4
+ transform(menu: any, ...args: any[]): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<KebabMenuFilterPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<KebabMenuFilterPipe, "kebabMenuFilter", false>;
7
+ }
@@ -0,0 +1,14 @@
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 "./card/card.module";
5
+ import * as i4 from "./dialog/dialog.module";
6
+ import * as i5 from "./grid-form/grid-form.module";
7
+ import * as i6 from "./grid-layout/grid-layout.module";
8
+ import * as i7 from "./grid-pagination/grid-pagination.module";
9
+ import * as i8 from "./tabstrip/tabstrip.module";
10
+ export declare class MoleculesModule {
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<MoleculesModule, never>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.CardModule, typeof i4.DialogModule, typeof i5.GridFormModule, typeof i6.GridLayoutModule, typeof i7.GridPaginationModule, typeof i8.TabstripModule], [typeof i3.CardModule, typeof i4.DialogModule, typeof i5.GridFormModule, typeof i6.GridLayoutModule, typeof i7.GridPaginationModule, typeof i8.TabstripModule]>;
13
+ static ɵinj: i0.ɵɵInjectorDeclaration<MoleculesModule>;
14
+ }
@@ -0,0 +1,10 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TabstripTabComponent {
4
+ title: string | null;
5
+ customHeader: boolean;
6
+ titleRef: TemplateRef<any>;
7
+ contentRef: TemplateRef<any>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabstripTabComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabstripTabComponent, "lib-tabstrip-tab", never, { "title": { "alias": "title"; "required": false; }; "customHeader": { "alias": "customHeader"; "required": false; }; }, {}, ["titleRef", "contentRef"], ["*"], false, never>;
10
+ }
@@ -0,0 +1,15 @@
1
+ import { QueryList, EventEmitter } from '@angular/core';
2
+ import { SelectEvent, TabAlignment, TabPosition } from "@progress/kendo-angular-layout";
3
+ import { TabstripTabComponent } from './tabstrip-tab/tabstrip-tab.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class TabstripComponent {
6
+ height: string;
7
+ alignment: TabAlignment;
8
+ position: TabPosition;
9
+ onTabSelect: EventEmitter<any>;
10
+ selectedTab: number;
11
+ tabstripTabComponents: QueryList<TabstripTabComponent>;
12
+ onTabSelectEvent(e: SelectEvent): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabstripComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<TabstripComponent, "lib-tabstrip", never, { "height": { "alias": "height"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "position": { "alias": "position"; "required": false; }; "selectedTab": { "alias": "selectedTab"; "required": false; }; }, { "onTabSelect": "onTabSelect"; }, ["tabstripTabComponents"], never, false, never>;
15
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tabstrip.component";
3
+ import * as i2 from "./tabstrip-tab/tabstrip-tab.component";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "@progress/kendo-angular-layout";
6
+ export declare class TabstripModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TabstripModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<TabstripModule, [typeof i1.TabstripComponent, typeof i2.TabstripTabComponent], [typeof i3.CommonModule, typeof i4.LayoutModule], [typeof i1.TabstripComponent, typeof i2.TabstripTabComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<TabstripModule>;
10
+ }
@@ -1,8 +1,11 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./shared.component";
3
- import * as i2 from "@angular/common";
3
+ import * as i2 from "./atoms/atoms.module";
4
+ import * as i3 from "@angular/common";
5
+ import * as i4 from "./molecules/molecules.module";
6
+ import * as i5 from "@progress-chef/platform-themes-service";
4
7
  export declare class SharedModule {
5
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.SharedComponent], [typeof i2.CommonModule], [typeof i1.SharedComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.SharedComponent], [typeof i2.AtomsModule, typeof i3.CommonModule, typeof i4.MoleculesModule, typeof i5.ThemesModule], [typeof i1.SharedComponent, typeof i2.AtomsModule, typeof i4.MoleculesModule]>;
7
10
  static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
8
11
  }
package/package.json CHANGED
@@ -1,15 +1,42 @@
1
1
  {
2
2
  "name": "@progress-chef/platform-shared-components",
3
- "version": "0.0.111",
3
+ "version": "0.0.112",
4
4
  "peerDependencies": {
5
- "@angular/common": "^16.2.12",
6
- "@angular/core": "^16.2.12",
7
- "@angular/localize": "^16.2.12"
5
+ "@angular/common": "^17.3.12",
6
+ "@angular/core": "^17.3.12",
7
+ "@angular/localize": "^17.3.12"
8
8
  },
9
9
  "dependencies": {
10
10
  "tslib": "^2.3.0",
11
11
  "bootstrap": "^5.2.1",
12
- "material-icons": "^1.13.2"
12
+ "material-icons": "^1.13.2",
13
+ "@progress/kendo-angular-popup": "^14.2.0",
14
+ "@progress/kendo-angular-layout": "^15.5.0",
15
+ "@progress/kendo-angular-navigation": "^14.2.0",
16
+ "@progress/kendo-angular-buttons": "^14.2.0",
17
+ "@progress/kendo-angular-dropdowns": "^14.2.0",
18
+ "@progress/kendo-angular-inputs": "^14.2.0",
19
+ "@progress/kendo-angular-intl": "^14.2.0",
20
+ "@progress/kendo-angular-treeview": "^14.2.0",
21
+ "@progress/kendo-drawing": "^1.19.0",
22
+ "@progress/kendo-angular-label": "^14.2.0",
23
+ "@progress/kendo-angular-dateinputs": "^14.2.0",
24
+ "@progress/kendo-angular-dialog": "^14.2.0",
25
+ "@progress/kendo-angular-utils": "^14.2.0",
26
+ "@progress/kendo-angular-listview": "^14.2.0",
27
+ "@progress/kendo-angular-icons": "^14.2.0",
28
+ "@progress/kendo-angular-pager": "^14.2.0",
29
+ "@progress/kendo-angular-grid": "^14.2.0",
30
+ "@progress/kendo-angular-common": "^14.2.0",
31
+ "@progress/kendo-data-query": "^1.7.0",
32
+ "@progress/kendo-svg-icons": "^2.0.0",
33
+ "@progress/kendo-angular-pdf-export": "^14.2.0",
34
+ "@progress/kendo-angular-excel-export": "^14.2.0",
35
+ "@progress/kendo-angular-indicators": "^14.2.0",
36
+ "@progress/kendo-angular-progressbar": "^14.2.0",
37
+ "@progress/kendo-angular-notification": "^14.2.0",
38
+ "@progress/kendo-angular-tooltip": "^14.2.0",
39
+ "@progress/kendo-angular-upload": "^14.2.0"
13
40
  },
14
41
  "module": "fesm2022/progress-chef-platform-shared-components.mjs",
15
42
  "typings": "index.d.ts",