@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.
- package/README.md +30 -0
- package/assets/IconFont.css +68 -0
- package/assets/IconFont.scss +68 -0
- package/assets/IconFont.ttf +0 -0
- package/assets/IconFont.woff +0 -0
- package/assets/IconFont.woff2 +0 -0
- package/esm2022/lib/atoms/alert/alert.component.mjs +37 -0
- package/esm2022/lib/atoms/alert/alert.module.mjs +20 -0
- package/esm2022/lib/atoms/angular-popup/angular-popup.component.mjs +35 -0
- package/esm2022/lib/atoms/angular-popup/angular-popup.module.mjs +36 -0
- package/esm2022/lib/atoms/atoms.module.mjs +234 -0
- package/esm2022/lib/atoms/avatar/avatar.component.mjs +62 -0
- package/esm2022/lib/atoms/avatar/avatar.module.mjs +20 -0
- package/esm2022/lib/atoms/breadcrumb/breadcrumb.component.mjs +59 -0
- package/esm2022/lib/atoms/breadcrumb/breadcrumb.module.mjs +36 -0
- package/esm2022/lib/atoms/button/button.component.mjs +72 -0
- package/esm2022/lib/atoms/button/button.module.mjs +21 -0
- package/esm2022/lib/atoms/button-group/button-group.component.mjs +52 -0
- package/esm2022/lib/atoms/button-group/button-group.module.mjs +21 -0
- package/esm2022/lib/atoms/checkbox/checkbox.component.mjs +45 -0
- package/esm2022/lib/atoms/checkbox/checkbox.module.mjs +32 -0
- package/esm2022/lib/atoms/clipboard/clipboard.component.mjs +104 -0
- package/esm2022/lib/atoms/clipboard/clipboard.module.mjs +32 -0
- package/esm2022/lib/atoms/container/container.component.mjs +29 -0
- package/esm2022/lib/atoms/container/container.module.mjs +22 -0
- package/esm2022/lib/atoms/dropdown/dropdown.component.mjs +102 -0
- package/esm2022/lib/atoms/dropdown/dropdown.module.mjs +39 -0
- package/esm2022/lib/atoms/dropdowntree/dropdowntree.component.mjs +103 -0
- package/esm2022/lib/atoms/dropdowntree/dropdowntree.module.mjs +43 -0
- package/esm2022/lib/atoms/expansion-panel/expansion-panel.component.mjs +38 -0
- package/esm2022/lib/atoms/expansion-panel/expansion-panel.module.mjs +56 -0
- package/esm2022/lib/atoms/icon/icon.component.mjs +24 -0
- package/esm2022/lib/atoms/icon/icon.module.mjs +17 -0
- package/esm2022/lib/atoms/label/label.component.mjs +26 -0
- package/esm2022/lib/atoms/label/label.module.mjs +20 -0
- package/esm2022/lib/atoms/loading-spinner/loading-spinner.component.mjs +26 -0
- package/esm2022/lib/atoms/loading-spinner/loading-spinner.module.mjs +18 -0
- package/esm2022/lib/atoms/multi-select-dropdown/multi-select-dropdown.component.mjs +101 -0
- package/esm2022/lib/atoms/multi-select-dropdown/multi-select-dropdown.module.mjs +39 -0
- package/esm2022/lib/atoms/notification/notification.component.mjs +69 -0
- package/esm2022/lib/atoms/notification/notification.module.mjs +20 -0
- package/esm2022/lib/atoms/numeric-textbox/numeric-textbox.component.mjs +80 -0
- package/esm2022/lib/atoms/numeric-textbox/numeric-textbox.module.mjs +35 -0
- package/esm2022/lib/atoms/progress-bar/progress-bar.component.mjs +20 -0
- package/esm2022/lib/atoms/progress-bar/progress-bar.module.mjs +24 -0
- package/esm2022/lib/atoms/radio-button/radio-button.component.mjs +51 -0
- package/esm2022/lib/atoms/radio-button/radio-button.module.mjs +39 -0
- package/esm2022/lib/atoms/report-summary/report-summary.component.mjs +47 -0
- package/esm2022/lib/atoms/report-summary/report-summary.module.mjs +24 -0
- package/esm2022/lib/atoms/search-box/search-box.component.mjs +108 -0
- package/esm2022/lib/atoms/search-box/search-box.module.mjs +36 -0
- package/esm2022/lib/atoms/slider/slider.component.mjs +58 -0
- package/esm2022/lib/atoms/slider/slider.module.mjs +28 -0
- package/esm2022/lib/atoms/text-area/text-area.component.mjs +43 -0
- package/esm2022/lib/atoms/text-area/text-area.module.mjs +28 -0
- package/esm2022/lib/atoms/textbox/textbox.component.mjs +102 -0
- package/esm2022/lib/atoms/textbox/textbox.module.mjs +21 -0
- package/esm2022/lib/atoms/timescheduler/timescheduler.component.mjs +62 -0
- package/esm2022/lib/atoms/timescheduler/timescheduler.module.mjs +31 -0
- package/esm2022/lib/atoms/toast-notification/toast-notification.module.mjs +19 -0
- package/esm2022/lib/atoms/toast-notification/toast-notification.service.mjs +45 -0
- package/esm2022/lib/atoms/tooltip/tooltip.component.mjs +35 -0
- package/esm2022/lib/atoms/tooltip/tooltip.module.mjs +20 -0
- package/esm2022/lib/atoms/typography/TypographyType.mjs +2 -0
- package/esm2022/lib/atoms/typography/typography.component.mjs +97 -0
- package/esm2022/lib/atoms/typography/typography.module.mjs +24 -0
- package/esm2022/lib/molecules/card/card-actions/card-actions.component.mjs +21 -0
- package/esm2022/lib/molecules/card/card-body/card-body.component.mjs +14 -0
- package/esm2022/lib/molecules/card/card-footer/card-footer.component.mjs +14 -0
- package/esm2022/lib/molecules/card/card-header/card-header.component.mjs +32 -0
- package/esm2022/lib/molecules/card/card.component.mjs +21 -0
- package/esm2022/lib/molecules/card/card.module.mjs +44 -0
- package/esm2022/lib/molecules/dialog/dialog-actions/dialog-actions.component.mjs +18 -0
- package/esm2022/lib/molecules/dialog/dialog-titlebar/dialog-titlebar.component.mjs +41 -0
- package/esm2022/lib/molecules/dialog/dialog.component.mjs +52 -0
- package/esm2022/lib/molecules/dialog/dialog.module.mjs +40 -0
- package/esm2022/lib/molecules/grid/grid-form/grid-form.component.mjs +112 -0
- package/esm2022/lib/molecules/grid/grid-spacer/grid-spacer.component.mjs +15 -0
- package/esm2022/lib/molecules/grid/grid.component.mjs +278 -0
- package/esm2022/lib/molecules/grid/grid.module.mjs +61 -0
- package/esm2022/lib/molecules/grid-layout/grid-layout-item/grid-layout-item.component.mjs +39 -0
- package/esm2022/lib/molecules/grid-layout/grid-layout.component.mjs +34 -0
- package/esm2022/lib/molecules/grid-layout/grid-layout.module.mjs +33 -0
- package/esm2022/lib/molecules/grid-pagination/grid-pagination-spacer/grid-pagination-spacer.component.mjs +15 -0
- package/esm2022/lib/molecules/grid-pagination/grid-pagination.component.mjs +380 -0
- package/esm2022/lib/molecules/grid-pagination/grid-pagination.module.mjs +69 -0
- package/esm2022/lib/molecules/grid-pagination/kebab-menu-filter.pipe.mjs +22 -0
- package/esm2022/lib/molecules/molecules.module.mjs +74 -0
- package/esm2022/lib/molecules/sidebar/layout/layout.model.mjs +2 -0
- package/esm2022/lib/molecules/sidebar/sidebar.component.mjs +43 -0
- package/esm2022/lib/molecules/sidebar/sidebar.module.mjs +32 -0
- package/esm2022/lib/molecules/tabstrip/tabstrip-tab/tabstrip-tab.component.mjs +25 -0
- package/esm2022/lib/molecules/tabstrip/tabstrip.component.mjs +37 -0
- package/esm2022/lib/molecules/tabstrip/tabstrip.module.mjs +33 -0
- package/esm2022/lib/shared.component.mjs +16 -0
- package/esm2022/lib/shared.module.mjs +40 -0
- package/esm2022/lib/shared.service.mjs +14 -0
- package/esm2022/lib/style-tokens/style-tokens.module.mjs +18 -0
- package/esm2022/progress-chef-platform-shared-components.mjs +5 -0
- package/esm2022/public-api.mjs +98 -0
- package/fesm2022/progress-chef-platform-shared-components.mjs +3970 -0
- package/fesm2022/progress-chef-platform-shared-components.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/atoms/alert/alert.component.d.ts +19 -0
- package/lib/atoms/alert/alert.module.d.ts +8 -0
- package/lib/atoms/angular-popup/angular-popup.component.d.ts +16 -0
- package/lib/atoms/angular-popup/angular-popup.module.d.ts +11 -0
- package/lib/atoms/atoms.module.d.ts +38 -0
- package/lib/atoms/avatar/avatar.component.d.ts +21 -0
- package/lib/atoms/avatar/avatar.module.d.ts +10 -0
- package/lib/atoms/breadcrumb/breadcrumb.component.d.ts +18 -0
- package/lib/atoms/breadcrumb/breadcrumb.module.d.ts +12 -0
- package/lib/atoms/button/button.component.d.ts +26 -0
- package/lib/atoms/button/button.module.d.ts +11 -0
- package/lib/atoms/button-group/button-group.component.d.ts +21 -0
- package/lib/atoms/button-group/button-group.module.d.ts +11 -0
- package/lib/atoms/checkbox/checkbox.component.d.ts +20 -0
- package/lib/atoms/checkbox/checkbox.module.d.ts +11 -0
- package/lib/atoms/clipboard/clipboard.component.d.ts +33 -0
- package/lib/atoms/clipboard/clipboard.module.d.ts +11 -0
- package/lib/atoms/container/container.component.d.ts +12 -0
- package/lib/atoms/container/container.module.d.ts +8 -0
- package/lib/atoms/dropdown/dropdown.component.d.ts +38 -0
- package/lib/atoms/dropdown/dropdown.module.d.ts +11 -0
- package/lib/atoms/dropdowntree/dropdowntree.component.d.ts +36 -0
- package/lib/atoms/dropdowntree/dropdowntree.module.d.ts +12 -0
- package/lib/atoms/expansion-panel/expansion-panel.component.d.ts +16 -0
- package/lib/atoms/expansion-panel/expansion-panel.module.d.ts +17 -0
- package/lib/atoms/icon/icon.component.d.ts +13 -0
- package/lib/atoms/icon/icon.module.d.ts +7 -0
- package/lib/atoms/label/label.component.d.ts +14 -0
- package/lib/atoms/label/label.module.d.ts +10 -0
- package/lib/atoms/loading-spinner/loading-spinner.component.d.ts +13 -0
- package/lib/atoms/loading-spinner/loading-spinner.module.d.ts +8 -0
- package/lib/atoms/multi-select-dropdown/multi-select-dropdown.component.d.ts +37 -0
- package/lib/atoms/multi-select-dropdown/multi-select-dropdown.module.d.ts +11 -0
- package/lib/atoms/notification/notification.component.d.ts +24 -0
- package/lib/atoms/notification/notification.module.d.ts +8 -0
- package/lib/atoms/numeric-textbox/numeric-textbox.component.d.ts +30 -0
- package/lib/atoms/numeric-textbox/numeric-textbox.module.d.ts +10 -0
- package/lib/atoms/progress-bar/progress-bar.component.d.ts +11 -0
- package/lib/atoms/progress-bar/progress-bar.module.d.ts +8 -0
- package/lib/atoms/radio-button/radio-button.component.d.ts +21 -0
- package/lib/atoms/radio-button/radio-button.module.d.ts +11 -0
- package/lib/atoms/report-summary/report-summary.component.d.ts +23 -0
- package/lib/atoms/report-summary/report-summary.module.d.ts +8 -0
- package/lib/atoms/search-box/search-box.component.d.ts +37 -0
- package/lib/atoms/search-box/search-box.module.d.ts +12 -0
- package/lib/atoms/slider/slider.component.d.ts +18 -0
- package/lib/atoms/slider/slider.module.d.ts +9 -0
- package/lib/atoms/text-area/text-area.component.d.ts +20 -0
- package/lib/atoms/text-area/text-area.module.d.ts +10 -0
- package/lib/atoms/textbox/textbox.component.d.ts +34 -0
- package/lib/atoms/textbox/textbox.module.d.ts +11 -0
- package/lib/atoms/timescheduler/timescheduler.component.d.ts +23 -0
- package/lib/atoms/timescheduler/timescheduler.module.d.ts +10 -0
- package/lib/atoms/toast-notification/toast-notification.module.d.ts +8 -0
- package/lib/atoms/toast-notification/toast-notification.service.d.ts +28 -0
- package/lib/atoms/tooltip/tooltip.component.d.ts +17 -0
- package/lib/atoms/tooltip/tooltip.module.d.ts +8 -0
- package/lib/atoms/typography/TypographyType.d.ts +1 -0
- package/lib/atoms/typography/typography.component.d.ts +24 -0
- package/lib/atoms/typography/typography.module.d.ts +8 -0
- package/lib/molecules/card/card-actions/card-actions.component.d.ts +11 -0
- package/lib/molecules/card/card-body/card-body.component.d.ts +8 -0
- package/lib/molecules/card/card-footer/card-footer.component.d.ts +8 -0
- package/lib/molecules/card/card-header/card-header.component.d.ts +14 -0
- package/lib/molecules/card/card.component.d.ts +9 -0
- package/lib/molecules/card/card.module.d.ts +14 -0
- package/lib/molecules/dialog/dialog-actions/dialog-actions.component.d.ts +10 -0
- package/lib/molecules/dialog/dialog-titlebar/dialog-titlebar.component.d.ts +17 -0
- package/lib/molecules/dialog/dialog.component.d.ts +21 -0
- package/lib/molecules/dialog/dialog.module.d.ts +13 -0
- package/lib/molecules/grid/grid-form/grid-form.component.d.ts +34 -0
- package/lib/molecules/grid/grid-spacer/grid-spacer.component.d.ts +8 -0
- package/lib/molecules/grid/grid.component.d.ts +71 -0
- package/lib/molecules/grid/grid.module.d.ts +19 -0
- package/lib/molecules/grid-layout/grid-layout-item/grid-layout-item.component.d.ts +15 -0
- package/lib/molecules/grid-layout/grid-layout.component.d.ts +14 -0
- package/lib/molecules/grid-layout/grid-layout.module.d.ts +10 -0
- package/lib/molecules/grid-pagination/grid-pagination-spacer/grid-pagination-spacer.component.d.ts +8 -0
- package/lib/molecules/grid-pagination/grid-pagination.component.d.ts +90 -0
- package/lib/molecules/grid-pagination/grid-pagination.module.d.ts +19 -0
- package/lib/molecules/grid-pagination/kebab-menu-filter.pipe.d.ts +7 -0
- package/lib/molecules/molecules.module.d.ts +15 -0
- package/lib/molecules/sidebar/layout/layout.model.d.ts +20 -0
- package/lib/molecules/sidebar/sidebar.component.d.ts +14 -0
- package/lib/molecules/sidebar/sidebar.module.d.ts +10 -0
- package/lib/molecules/tabstrip/tabstrip-tab/tabstrip-tab.component.d.ts +10 -0
- package/lib/molecules/tabstrip/tabstrip.component.d.ts +15 -0
- package/lib/molecules/tabstrip/tabstrip.module.d.ts +10 -0
- package/lib/shared.component.d.ts +10 -0
- package/lib/shared.module.d.ts +11 -0
- package/lib/shared.service.d.ts +6 -0
- package/lib/style-tokens/style-tokens.module.d.ts +7 -0
- package/package.json +55 -0
- package/public-api.d.ts +91 -0
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
export * from './lib/shared.service';
|
|
2
|
+
export * from './lib/atoms/toast-notification/toast-notification.service';
|
|
3
|
+
export * from './lib/style-tokens/style-tokens.module';
|
|
4
|
+
/** --------------- modules ----------------------- **/
|
|
5
|
+
export * from './lib/shared.module';
|
|
6
|
+
export * from './lib/atoms/atoms.module';
|
|
7
|
+
export * from './lib/atoms/alert/alert.module';
|
|
8
|
+
export * from './lib/atoms/angular-popup/angular-popup.module';
|
|
9
|
+
export * from './lib/atoms/avatar/avatar.module';
|
|
10
|
+
export * from './lib/atoms/breadcrumb/breadcrumb.module';
|
|
11
|
+
export * from './lib/atoms/button/button.module';
|
|
12
|
+
export * from './lib/atoms/button-group/button-group.module';
|
|
13
|
+
export * from './lib/atoms/checkbox/checkbox.module';
|
|
14
|
+
export * from './lib/atoms/clipboard/clipboard.module';
|
|
15
|
+
export * from './lib/atoms/container/container.module';
|
|
16
|
+
export * from './lib/atoms/dropdown/dropdown.module';
|
|
17
|
+
export * from './lib/atoms/dropdowntree/dropdowntree.module';
|
|
18
|
+
export * from './lib/atoms/expansion-panel/expansion-panel.module';
|
|
19
|
+
export * from './lib/atoms/icon/icon.module';
|
|
20
|
+
export * from './lib/atoms/label/label.module';
|
|
21
|
+
export * from './lib/atoms/loading-spinner/loading-spinner.module';
|
|
22
|
+
export * from './lib/atoms/multi-select-dropdown/multi-select-dropdown.module';
|
|
23
|
+
export * from './lib/atoms/notification/notification.module';
|
|
24
|
+
export * from './lib/atoms/numeric-textbox/numeric-textbox.module';
|
|
25
|
+
export * from './lib/atoms/progress-bar/progress-bar.module';
|
|
26
|
+
export * from './lib/atoms/radio-button/radio-button.module';
|
|
27
|
+
export * from './lib/atoms/report-summary/report-summary.module';
|
|
28
|
+
export * from './lib/atoms/search-box/search-box.module';
|
|
29
|
+
export * from './lib/atoms/slider/slider.module';
|
|
30
|
+
export * from './lib/atoms/text-area/text-area.module';
|
|
31
|
+
export * from './lib/atoms/textbox/textbox.module';
|
|
32
|
+
export * from './lib/atoms/toast-notification/toast-notification.module';
|
|
33
|
+
export * from './lib/atoms/timescheduler/timescheduler.module';
|
|
34
|
+
export * from './lib/atoms/tooltip/tooltip.module';
|
|
35
|
+
export * from './lib/atoms/typography/typography.module';
|
|
36
|
+
export * from './lib/molecules/molecules.module';
|
|
37
|
+
export * from './lib/molecules/card/card.module';
|
|
38
|
+
export * from './lib/molecules/dialog/dialog.module';
|
|
39
|
+
export * from './lib/molecules/grid/grid.module';
|
|
40
|
+
export * from './lib/molecules/grid-layout/grid-layout.module';
|
|
41
|
+
export * from './lib/molecules/grid-pagination/grid-pagination.module';
|
|
42
|
+
export * from './lib/molecules/tabstrip/tabstrip.module';
|
|
43
|
+
export * from './lib/molecules/sidebar/sidebar.module';
|
|
44
|
+
/** --------------- components ----------------------- **/
|
|
45
|
+
export * from './lib/atoms/alert/alert.component';
|
|
46
|
+
export * from './lib/atoms/angular-popup/angular-popup.component';
|
|
47
|
+
export * from './lib/atoms/avatar/avatar.component';
|
|
48
|
+
export * from './lib/atoms/breadcrumb/breadcrumb.component';
|
|
49
|
+
export * from './lib/atoms/button/button.component';
|
|
50
|
+
export * from './lib/atoms/button-group/button-group.component';
|
|
51
|
+
export * from './lib/atoms/checkbox/checkbox.component';
|
|
52
|
+
export * from './lib/atoms/clipboard/clipboard.component';
|
|
53
|
+
export * from './lib/atoms/container/container.component';
|
|
54
|
+
export * from './lib/atoms/dropdown/dropdown.component';
|
|
55
|
+
export * from './lib/atoms/dropdowntree/dropdowntree.component';
|
|
56
|
+
export * from './lib/atoms/expansion-panel/expansion-panel.component';
|
|
57
|
+
export * from './lib/atoms/icon/icon.component';
|
|
58
|
+
export * from './lib/atoms/label/label.component';
|
|
59
|
+
export * from './lib/atoms/loading-spinner/loading-spinner.component';
|
|
60
|
+
export * from './lib/atoms/multi-select-dropdown/multi-select-dropdown.component';
|
|
61
|
+
export * from './lib/atoms/notification/notification.component';
|
|
62
|
+
export * from './lib/atoms/numeric-textbox/numeric-textbox.component';
|
|
63
|
+
export * from './lib/atoms/progress-bar/progress-bar.component';
|
|
64
|
+
export * from './lib/atoms/radio-button/radio-button.component';
|
|
65
|
+
export * from './lib/atoms/report-summary/report-summary.component';
|
|
66
|
+
export * from './lib/atoms/search-box/search-box.component';
|
|
67
|
+
export * from './lib/atoms/slider/slider.component';
|
|
68
|
+
export * from './lib/atoms/text-area/text-area.component';
|
|
69
|
+
export * from './lib/atoms/textbox/textbox.component';
|
|
70
|
+
export * from './lib/atoms/timescheduler/timescheduler.component';
|
|
71
|
+
export * from './lib/atoms/tooltip/tooltip.component';
|
|
72
|
+
export * from './lib/atoms/typography/typography.component';
|
|
73
|
+
export * from './lib/shared.component';
|
|
74
|
+
export * from './lib/molecules/card/card-actions/card-actions.component';
|
|
75
|
+
export * from './lib/molecules/card/card-body/card-body.component';
|
|
76
|
+
export * from './lib/molecules/card/card-footer/card-footer.component';
|
|
77
|
+
export * from './lib/molecules/card/card-header/card-header.component';
|
|
78
|
+
export * from './lib/molecules/card/card.component';
|
|
79
|
+
export * from './lib/molecules/dialog/dialog-actions/dialog-actions.component';
|
|
80
|
+
export * from './lib/molecules/dialog/dialog-titlebar/dialog-titlebar.component';
|
|
81
|
+
export * from './lib/molecules/dialog/dialog.component';
|
|
82
|
+
export * from './lib/molecules/grid-layout/grid-layout-item/grid-layout-item.component';
|
|
83
|
+
export * from './lib/molecules/grid-layout/grid-layout.component';
|
|
84
|
+
export * from './lib/molecules/grid/grid.component';
|
|
85
|
+
export * from './lib/molecules/grid/grid-spacer/grid-spacer.component';
|
|
86
|
+
export * from './lib/molecules/grid/grid-form/grid-form.component';
|
|
87
|
+
export * from './lib/molecules/grid-pagination/grid-pagination.component';
|
|
88
|
+
export * from './lib/molecules/grid-pagination/grid-pagination-spacer/grid-pagination-spacer.component';
|
|
89
|
+
export * from './lib/molecules/tabstrip/tabstrip-tab/tabstrip-tab.component';
|
|
90
|
+
export * from './lib/molecules/tabstrip/tabstrip.component';
|
|
91
|
+
export * from './lib/molecules/sidebar/sidebar.component';
|