@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/index.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const ALERT_TYPE: {
|
|
5
|
+
success: string;
|
|
6
|
+
error: string;
|
|
7
|
+
warning: string;
|
|
8
|
+
info: string;
|
|
9
|
+
};
|
|
10
|
+
export declare class AlertComponent {
|
|
11
|
+
private themesService;
|
|
12
|
+
type: string;
|
|
13
|
+
dismissed: EventEmitter<any>;
|
|
14
|
+
get theType(): string;
|
|
15
|
+
constructor(themesService: ThemesService);
|
|
16
|
+
onClose: () => void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertComponent, "lib-alert", never, { "type": { "alias": "type"; "required": false; }; }, { "dismissed": "dismissed"; }, never, ["*"], false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./alert.component";
|
|
3
|
+
import * as i2 from "../icon/icon.module";
|
|
4
|
+
export declare class AlertModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AlertModule, [typeof i1.AlertComponent], [typeof i2.IconModule], [typeof i1.AlertComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AlertModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AngularPopupComponent implements OnInit {
|
|
5
|
+
private themesService;
|
|
6
|
+
show: boolean;
|
|
7
|
+
anchor: ElementRef<HTMLElement> | HTMLElement;
|
|
8
|
+
anchorHorizontalAlign: "left" | "center" | "right";
|
|
9
|
+
anchorVerticalAlign: "top" | "center" | "bottom";
|
|
10
|
+
popupHorizontalAlign: "left" | "center" | "right";
|
|
11
|
+
popupVerticalAlign: "top" | "center" | "bottom";
|
|
12
|
+
constructor(themesService: ThemesService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AngularPopupComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AngularPopupComponent, "lib-angular-popup", never, { "show": { "alias": "show"; "required": false; }; "anchor": { "alias": "anchor"; "required": false; }; "anchorHorizontalAlign": { "alias": "anchorHorizontalAlign"; "required": false; }; "anchorVerticalAlign": { "alias": "anchorVerticalAlign"; "required": false; }; "popupHorizontalAlign": { "alias": "popupHorizontalAlign"; "required": false; }; "popupVerticalAlign": { "alias": "popupVerticalAlign"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./angular-popup.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@progress/kendo-angular-popup";
|
|
5
|
+
import * as i4 from "@angular/platform-browser/animations";
|
|
6
|
+
import * as i5 from "../container/container.module";
|
|
7
|
+
export declare class AngularPopupModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AngularPopupModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AngularPopupModule, [typeof i1.AngularPopupComponent], [typeof i2.CommonModule, typeof i3.PopupModule, typeof i4.BrowserAnimationsModule, typeof i5.ContainerModule], [typeof i1.AngularPopupComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AngularPopupModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./alert/alert.module";
|
|
3
|
+
import * as i2 from "./angular-popup/angular-popup.module";
|
|
4
|
+
import * as i3 from "./avatar/avatar.module";
|
|
5
|
+
import * as i4 from "./breadcrumb/breadcrumb.module";
|
|
6
|
+
import * as i5 from "./button/button.module";
|
|
7
|
+
import * as i6 from "./button-group/button-group.module";
|
|
8
|
+
import * as i7 from "./checkbox/checkbox.module";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "./container/container.module";
|
|
11
|
+
import * as i10 from "./dropdown/dropdown.module";
|
|
12
|
+
import * as i11 from "./dropdowntree/dropdowntree.module";
|
|
13
|
+
import * as i12 from "./expansion-panel/expansion-panel.module";
|
|
14
|
+
import * as i13 from "@angular/forms";
|
|
15
|
+
import * as i14 from "./icon/icon.module";
|
|
16
|
+
import * as i15 from "./label/label.module";
|
|
17
|
+
import * as i16 from "./loading-spinner/loading-spinner.module";
|
|
18
|
+
import * as i17 from "./multi-select-dropdown/multi-select-dropdown.module";
|
|
19
|
+
import * as i18 from "./notification/notification.module";
|
|
20
|
+
import * as i19 from "./numeric-textbox/numeric-textbox.module";
|
|
21
|
+
import * as i20 from "./progress-bar/progress-bar.module";
|
|
22
|
+
import * as i21 from "./radio-button/radio-button.module";
|
|
23
|
+
import * as i22 from "./report-summary/report-summary.module";
|
|
24
|
+
import * as i23 from "./search-box/search-box.module";
|
|
25
|
+
import * as i24 from "./slider/slider.module";
|
|
26
|
+
import * as i25 from "../style-tokens/style-tokens.module";
|
|
27
|
+
import * as i26 from "./text-area/text-area.module";
|
|
28
|
+
import * as i27 from "./textbox/textbox.module";
|
|
29
|
+
import * as i28 from "./timescheduler/timescheduler.module";
|
|
30
|
+
import * as i29 from "./toast-notification/toast-notification.module";
|
|
31
|
+
import * as i30 from "./tooltip/tooltip.module";
|
|
32
|
+
import * as i31 from "./typography/typography.module";
|
|
33
|
+
import * as i32 from "./clipboard/clipboard.module";
|
|
34
|
+
export declare class AtomsModule {
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AtomsModule, never>;
|
|
36
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, [typeof i1.AlertModule, typeof i2.AngularPopupModule, typeof i3.AvatarModule, typeof i4.BreadcrumbModule, typeof i5.ButtonModule, typeof i6.ButtonGroupModule, typeof i7.CheckboxModule, typeof i8.CommonModule, typeof i9.ContainerModule, typeof i10.DropdownModule, typeof i11.DropdownTreeModule, typeof i12.ExpansionPanelModule, typeof i13.FormsModule, typeof i14.IconModule, typeof i15.LabelsModule, typeof i16.LoadingSpinnerModule, typeof i17.MultiSelectDropdownModule, typeof i18.NotificationModule, typeof i19.NumericTextboxModule, typeof i20.ProgressBarsModule, typeof i21.RadioButtonModule, typeof i13.ReactiveFormsModule, typeof i22.ReportSummaryModule, typeof i23.SearchBoxModule, typeof i24.SliderModule, typeof i25.StyleTokensModule, typeof i26.TextAreaModule, typeof i27.TextboxModule, typeof i28.TimeSchedulerModule, typeof i29.ToastNotificationModule, typeof i30.TooltipModule, typeof i31.TypographyModule, typeof i32.ClipboardModule], [typeof i1.AlertModule, typeof i2.AngularPopupModule, typeof i3.AvatarModule, typeof i4.BreadcrumbModule, typeof i5.ButtonModule, typeof i6.ButtonGroupModule, typeof i7.CheckboxModule, typeof i9.ContainerModule, typeof i10.DropdownModule, typeof i11.DropdownTreeModule, typeof i12.ExpansionPanelModule, typeof i14.IconModule, typeof i15.LabelsModule, typeof i16.LoadingSpinnerModule, typeof i17.MultiSelectDropdownModule, typeof i18.NotificationModule, typeof i19.NumericTextboxModule, typeof i20.ProgressBarsModule, typeof i21.RadioButtonModule, typeof i22.ReportSummaryModule, typeof i23.SearchBoxModule, typeof i24.SliderModule, typeof i25.StyleTokensModule, typeof i26.TextAreaModule, typeof i27.TextboxModule, typeof i28.TimeSchedulerModule, typeof i29.ToastNotificationModule, typeof i30.TooltipModule, typeof i31.TypographyModule, typeof i32.ClipboardModule]>;
|
|
37
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AtomsModule>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
3
|
+
import { SVGIcon } from "@progress/kendo-svg-icons";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AvatarComponent implements OnInit {
|
|
6
|
+
private themesService;
|
|
7
|
+
letters: string;
|
|
8
|
+
showInitials: boolean;
|
|
9
|
+
imageURL: string;
|
|
10
|
+
size: 'small' | 'medium' | 'large' | 'none';
|
|
11
|
+
rounded: 'small' | 'medium' | 'large' | 'full' | 'none';
|
|
12
|
+
fillMode: 'solid' | 'outline' | 'none';
|
|
13
|
+
themeColor: 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
|
|
14
|
+
name: string;
|
|
15
|
+
userSvg: SVGIcon;
|
|
16
|
+
constructor(themesService: ThemesService);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
getInitials(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "lib-avatar", never, { "showInitials": { "alias": "showInitials"; "required": false; }; "imageURL": { "alias": "imageURL"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./avatar.component";
|
|
3
|
+
import * as i2 from "@progress/kendo-angular-layout";
|
|
4
|
+
import * as i3 from "../typography/typography.module";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
export declare class AvatarModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AvatarModule, [typeof i1.AvatarComponent], [typeof i2.LayoutModule, typeof i3.TypographyModule, typeof i4.CommonModule], [typeof i1.AvatarComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AvatarModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
3
|
+
import { BreadCrumbItem } from '@progress/kendo-angular-navigation';
|
|
4
|
+
import { SVGIcon } from '@progress/kendo-svg-icons';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class BreadcrumbComponent implements OnInit {
|
|
7
|
+
private themesService;
|
|
8
|
+
items: BreadCrumbItem[];
|
|
9
|
+
valueChange: EventEmitter<BreadCrumbItem[]>;
|
|
10
|
+
homeIcon: SVGIcon;
|
|
11
|
+
constructor(themesService: ThemesService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
onItemClick(item: BreadCrumbItem): void;
|
|
14
|
+
refreshBreadCrumb(): void;
|
|
15
|
+
emitValueChange(itemsToBeEmit: BreadCrumbItem[]): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbComponent, "lib-breadcrumb", never, { "items": { "alias": "items"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./breadcrumb.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@progress/kendo-angular-navigation";
|
|
5
|
+
import * as i4 from "@progress/kendo-angular-buttons";
|
|
6
|
+
import * as i5 from "@progress/kendo-angular-dropdowns";
|
|
7
|
+
import * as i6 from "@progress/kendo-angular-inputs";
|
|
8
|
+
export declare class BreadcrumbModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BreadcrumbModule, [typeof i1.BreadcrumbComponent], [typeof i2.CommonModule, typeof i3.NavigationModule, typeof i4.ButtonsModule, typeof i5.DropDownsModule, typeof i6.InputsModule], [typeof i1.BreadcrumbComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BreadcrumbModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { TypographyType } from '../typography/TypographyType';
|
|
3
|
+
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ButtonComponent implements OnInit {
|
|
6
|
+
private themesService;
|
|
7
|
+
constructor(themesService: ThemesService);
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
size: 'small' | 'medium' | 'large';
|
|
10
|
+
rounded: 'small' | 'medium' | 'large' | 'full' | 'none';
|
|
11
|
+
fillMode: 'solid' | 'flat' | 'outline' | 'clear' | 'link' | 'none';
|
|
12
|
+
themeColor: 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
|
|
13
|
+
label: string;
|
|
14
|
+
iconName: string;
|
|
15
|
+
disabled: boolean;
|
|
16
|
+
toggleable: boolean;
|
|
17
|
+
iconPosition: string;
|
|
18
|
+
fontType: TypographyType;
|
|
19
|
+
width: string;
|
|
20
|
+
buttonClick: EventEmitter<any>;
|
|
21
|
+
iconButton: boolean;
|
|
22
|
+
onButtonClick(e: any): void;
|
|
23
|
+
button_size(): "small-btn" | "medium-btn" | "large-btn";
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "lib-button", never, { "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "label": { "alias": "label"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "fontType": { "alias": "fontType"; "required": false; }; "width": { "alias": "width"; "required": false; }; "iconButton": { "alias": "iconButton"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, false, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./button.component";
|
|
3
|
+
import * as i2 from "@progress/kendo-angular-buttons";
|
|
4
|
+
import * as i3 from "../typography/typography.module";
|
|
5
|
+
import * as i4 from "../icon/icon.module";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
export declare class ButtonModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonModule, [typeof i1.ButtonComponent], [typeof i2.ButtonsModule, typeof i3.TypographyModule, typeof i4.IconModule, typeof i5.CommonModule], [typeof i1.ButtonComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ButtonModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
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 ButtonGroupComponent implements OnInit {
|
|
5
|
+
private themesService;
|
|
6
|
+
constructor(themesService: ThemesService);
|
|
7
|
+
buttons: any[];
|
|
8
|
+
selection: 'single' | 'multiple';
|
|
9
|
+
size: 'small' | 'medium' | 'large';
|
|
10
|
+
rounded: 'small' | 'medium' | 'large' | 'full' | 'none';
|
|
11
|
+
fillMode: 'solid' | 'flat' | 'outline' | 'clear' | 'link' | 'none';
|
|
12
|
+
themeColor: 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'dark' | 'light' | 'inverse';
|
|
13
|
+
label: string;
|
|
14
|
+
disabled: boolean;
|
|
15
|
+
toggleable: boolean;
|
|
16
|
+
buttonClick: EventEmitter<any>;
|
|
17
|
+
onButtonClick(label: string): void;
|
|
18
|
+
ngOnInit(): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonGroupComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonGroupComponent, "lib-button-group", never, { "buttons": { "alias": "buttons"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "toggleable": { "alias": "toggleable"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, ["*"], false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./button-group.component";
|
|
3
|
+
import * as i2 from "@progress/kendo-angular-buttons";
|
|
4
|
+
import * as i3 from "../typography/typography.module";
|
|
5
|
+
import * as i4 from "../icon/icon.module";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
export declare class ButtonGroupModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonGroupModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonGroupModule, [typeof i1.ButtonGroupComponent], [typeof i2.ButtonsModule, typeof i3.TypographyModule, typeof i4.IconModule, typeof i5.CommonModule], [typeof i1.ButtonGroupComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ButtonGroupModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,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 { CheckBoxRounded, InputSize } from '@progress/kendo-angular-inputs';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CheckboxComponent implements OnInit {
|
|
7
|
+
private themesService;
|
|
8
|
+
control: FormControl;
|
|
9
|
+
id: string;
|
|
10
|
+
size: InputSize;
|
|
11
|
+
rounded: CheckBoxRounded;
|
|
12
|
+
label: string;
|
|
13
|
+
labelPosition: 'before' | 'after';
|
|
14
|
+
modelChange: EventEmitter<Boolean>;
|
|
15
|
+
constructor(themesService: ThemesService);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
emitValueChange(ev: Boolean): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "lib-checkbox", never, { "control": { "alias": "control"; "required": false; }; "id": { "alias": "id"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; }, { "modelChange": "modelChange"; }, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./checkbox.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@progress/kendo-angular-inputs";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "../typography/typography.module";
|
|
7
|
+
export declare class CheckboxModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CheckboxModule, [typeof i1.CheckboxComponent], [typeof i2.CommonModule, typeof i3.InputsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule], [typeof i1.CheckboxComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CheckboxModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class ClipboardComponent implements OnInit {
|
|
5
|
+
private themesService;
|
|
6
|
+
clipboardData: string;
|
|
7
|
+
tooltipPosition: 'top' | 'bottom' | 'left' | 'right';
|
|
8
|
+
preCopyText: string;
|
|
9
|
+
postCopyText: string;
|
|
10
|
+
tooltipText: string;
|
|
11
|
+
constructor(themesService: ThemesService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
copyToClipboard(): Promise<void>;
|
|
14
|
+
/**
|
|
15
|
+
* Asynchronously copies text to the clipboard.
|
|
16
|
+
* @param clipboardData The text to be copied to the clipboard.
|
|
17
|
+
*/
|
|
18
|
+
copy(clipboardData: string): Promise<void>;
|
|
19
|
+
/**
|
|
20
|
+
* Asynchronously copies text to the clipboard using the modern Clipboard API.
|
|
21
|
+
* @param clipboardData The text to be copied to the clipboard.
|
|
22
|
+
*/
|
|
23
|
+
copyModern(clipboardData: string): Promise<void>;
|
|
24
|
+
/**
|
|
25
|
+
* Asynchronously copies text to the clipboard using a legacy method.
|
|
26
|
+
* @param clipboardData The text to be copied to the clipboard.
|
|
27
|
+
* @returns A Promise that resolves with a boolean indicating success.
|
|
28
|
+
*/
|
|
29
|
+
copyLegacy(clipboardData: string): Promise<boolean>;
|
|
30
|
+
revertTooltipText(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ClipboardComponent, "lib-clipboard", never, { "clipboardData": { "alias": "clipboardData"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "preCopyText": { "alias": "preCopyText"; "required": false; }; "postCopyText": { "alias": "postCopyText"; "required": false; }; }, {}, never, never, false, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./clipboard.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../tooltip/tooltip.module";
|
|
5
|
+
import * as i4 from "../icon/icon.module";
|
|
6
|
+
import * as i5 from "../typography/typography.module";
|
|
7
|
+
export declare class ClipboardModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClipboardModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ClipboardModule, [typeof i1.ClipboardComponent], [typeof i2.CommonModule, typeof i3.TooltipModule, typeof i4.IconModule, typeof i5.TypographyModule], [typeof i1.ClipboardComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ClipboardModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ContainerComponent implements OnInit {
|
|
4
|
+
get class(): string;
|
|
5
|
+
c_class: string;
|
|
6
|
+
padding: string;
|
|
7
|
+
margin: string;
|
|
8
|
+
constructor();
|
|
9
|
+
ngOnInit(): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContainerComponent, "lib-container", never, { "c_class": { "alias": "c_class"; "required": false; }; "padding": { "alias": "padding"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./container.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class ContainerModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ContainerModule, [typeof i1.ContainerComponent], [typeof i2.CommonModule], [typeof i1.ContainerComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ContainerModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { AfterViewInit, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { TypographyType } from '../typography/TypographyType';
|
|
4
|
+
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
5
|
+
import { ComboBoxComponent } from '@progress/kendo-angular-dropdowns';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class DropdownComponent implements OnInit, OnChanges, AfterViewInit {
|
|
8
|
+
private themesService;
|
|
9
|
+
id: string;
|
|
10
|
+
label: string;
|
|
11
|
+
data: Array<any>;
|
|
12
|
+
isDisabled: boolean;
|
|
13
|
+
clearButton: boolean;
|
|
14
|
+
fillMode: "flat" | "solid" | "outline" | "none";
|
|
15
|
+
filterable: boolean;
|
|
16
|
+
placeholder: string;
|
|
17
|
+
readonly: boolean;
|
|
18
|
+
rounded: "small" | "medium" | "large" | "full" | "none";
|
|
19
|
+
size: "small" | "medium" | "large" | "none";
|
|
20
|
+
suggest: boolean;
|
|
21
|
+
textField: string;
|
|
22
|
+
value: any;
|
|
23
|
+
valueField: string;
|
|
24
|
+
valuePrimitive: boolean;
|
|
25
|
+
model: any;
|
|
26
|
+
modelChange: EventEmitter<any>;
|
|
27
|
+
control: FormControl;
|
|
28
|
+
fontType: TypographyType;
|
|
29
|
+
focus: boolean;
|
|
30
|
+
constructor(themesService: ThemesService);
|
|
31
|
+
comboBox: ComboBoxComponent;
|
|
32
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
ngAfterViewInit(): void;
|
|
35
|
+
emitModelChange(ev: any): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "lib-dropdown", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "data": { "alias": "data"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "size": { "alias": "size"; "required": false; }; "suggest": { "alias": "suggest"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "value": { "alias": "value"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "valuePrimitive": { "alias": "valuePrimitive"; "required": false; }; "model": { "alias": "model"; "required": false; }; "control": { "alias": "control"; "required": false; }; "fontType": { "alias": "fontType"; "required": false; }; "focus": { "alias": "focus"; "required": false; }; }, { "modelChange": "modelChange"; }, never, ["header"], false, never>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dropdown.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@progress/kendo-angular-dropdowns";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "../typography/typography.module";
|
|
7
|
+
export declare class DropdownModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DropdownModule, [typeof i1.DropdownComponent], [typeof i2.CommonModule, typeof i3.DropDownsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule], [typeof i1.DropdownComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DropdownModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 DropdowntreeComponent implements OnInit, OnChanges {
|
|
6
|
+
private themesService;
|
|
7
|
+
childrenField: string;
|
|
8
|
+
hasDefaultValue: boolean;
|
|
9
|
+
isDisabled: boolean;
|
|
10
|
+
listHeight: number;
|
|
11
|
+
value: any;
|
|
12
|
+
placeholder: string;
|
|
13
|
+
clearButton: boolean;
|
|
14
|
+
expandBy: string;
|
|
15
|
+
expandedKeys: number[];
|
|
16
|
+
data: any[];
|
|
17
|
+
textField: string;
|
|
18
|
+
readonly: boolean;
|
|
19
|
+
valueField: string;
|
|
20
|
+
footerBtnLabel: string;
|
|
21
|
+
footerBtnIcon: string;
|
|
22
|
+
hasFooterBtn: boolean;
|
|
23
|
+
rounded: "small" | "medium" | "large" | "full" | "none";
|
|
24
|
+
fillMode: "flat" | "solid" | "outline" | "none";
|
|
25
|
+
size: "small" | "medium" | "large" | "none";
|
|
26
|
+
control: FormControl;
|
|
27
|
+
selectedItem: EventEmitter<any>;
|
|
28
|
+
buttonClick: EventEmitter<any>;
|
|
29
|
+
constructor(themesService: ThemesService);
|
|
30
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
31
|
+
ngOnInit(): void;
|
|
32
|
+
valueChange(e: any): void;
|
|
33
|
+
onButtonClick(e: any): void;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdowntreeComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdowntreeComponent, "lib-dropdowntree", never, { "childrenField": { "alias": "childrenField"; "required": false; }; "hasDefaultValue": { "alias": "hasDefaultValue"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "listHeight": { "alias": "listHeight"; "required": false; }; "value": { "alias": "value"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "clearButton": { "alias": "clearButton"; "required": false; }; "expandBy": { "alias": "expandBy"; "required": false; }; "expandedKeys": { "alias": "expandedKeys"; "required": false; }; "data": { "alias": "data"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "footerBtnLabel": { "alias": "footerBtnLabel"; "required": false; }; "footerBtnIcon": { "alias": "footerBtnIcon"; "required": false; }; "hasFooterBtn": { "alias": "hasFooterBtn"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "size": { "alias": "size"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "selectedItem": "selectedItem"; "buttonClick": "buttonClick"; }, never, never, false, never>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dropdowntree.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@progress/kendo-angular-dropdowns";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "../typography/typography.module";
|
|
7
|
+
import * as i6 from "../button/button.module";
|
|
8
|
+
export declare class DropdownTreeModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownTreeModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DropdownTreeModule, [typeof i1.DropdowntreeComponent], [typeof i2.CommonModule, typeof i3.DropDownsModule, typeof i4.FormsModule, typeof i4.ReactiveFormsModule, typeof i5.TypographyModule, typeof i6.ButtonModule], [typeof i1.DropdowntreeComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DropdownTreeModule>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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 ExpansionPanelComponent implements OnInit {
|
|
5
|
+
private themesService;
|
|
6
|
+
title: string;
|
|
7
|
+
subtitle: string;
|
|
8
|
+
data: string;
|
|
9
|
+
expanded: true | false;
|
|
10
|
+
customHeader: boolean;
|
|
11
|
+
disabled: boolean;
|
|
12
|
+
constructor(themesService: ThemesService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ExpansionPanelComponent, "lib-expansion-panel", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "data": { "alias": "data"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "customHeader": { "alias": "customHeader"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["header", "*"], false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./expansion-panel.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@progress/kendo-angular-layout";
|
|
5
|
+
import * as i4 from "@progress/kendo-angular-icons";
|
|
6
|
+
import * as i5 from "@progress/kendo-angular-buttons";
|
|
7
|
+
import * as i6 from "@progress/kendo-angular-inputs";
|
|
8
|
+
import * as i7 from "@progress/kendo-angular-label";
|
|
9
|
+
import * as i8 from "@progress/kendo-angular-dropdowns";
|
|
10
|
+
import * as i9 from "@angular/platform-browser/animations";
|
|
11
|
+
import * as i10 from "../container/container.module";
|
|
12
|
+
import * as i11 from "../typography/typography.module";
|
|
13
|
+
export declare class ExpansionPanelModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ExpansionPanelModule, [typeof i1.ExpansionPanelComponent], [typeof i2.CommonModule, typeof i3.LayoutModule, typeof i4.IconsModule, typeof i5.ButtonsModule, typeof i6.InputsModule, typeof i7.LabelModule, typeof i8.DropDownsModule, typeof i9.BrowserAnimationsModule, typeof i10.ContainerModule, typeof i11.TypographyModule], [typeof i1.ExpansionPanelComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ExpansionPanelModule>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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 IconComponent implements OnInit {
|
|
5
|
+
private themesService;
|
|
6
|
+
name: string;
|
|
7
|
+
fontSize: number;
|
|
8
|
+
type: 'success' | 'error';
|
|
9
|
+
constructor(themesService: ThemesService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "lib-icon", never, { "name": { "alias": "name"; "required": false; }; "fontSize": { "alias": "fontSize"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./icon.component";
|
|
3
|
+
export declare class IconModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IconModule, [typeof i1.IconComponent], never, [typeof i1.IconComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IconModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { TypographyType } from '../typography/TypographyType';
|
|
3
|
+
import { ThemesService } from '@progress-chef/platform-themes-service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LabelComponent implements OnInit {
|
|
6
|
+
private themesService;
|
|
7
|
+
text: string;
|
|
8
|
+
hiddenLabel: string;
|
|
9
|
+
labelFont: TypographyType;
|
|
10
|
+
constructor(themesService: ThemesService);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "lib-label", never, { "text": { "alias": "text"; "required": false; }; "hiddenLabel": { "alias": "hiddenLabel"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./label.component";
|
|
3
|
+
import * as i2 from "@progress/kendo-angular-label";
|
|
4
|
+
import * as i3 from "../typography/typography.module";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
export declare class LabelsModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LabelsModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LabelsModule, [typeof i1.LabelComponent], [typeof i2.LabelModule, typeof i3.TypographyModule, typeof i4.CommonModule], [typeof i1.LabelComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LabelsModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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 LoadingSpinnerComponent implements OnInit {
|
|
5
|
+
private themesService;
|
|
6
|
+
width: number;
|
|
7
|
+
height: number;
|
|
8
|
+
visible: boolean;
|
|
9
|
+
constructor(themesService: ThemesService);
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingSpinnerComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingSpinnerComponent, "lib-loading-spinner", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./loading-spinner.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class LoadingSpinnerModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingSpinnerModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LoadingSpinnerModule, [typeof i1.LoadingSpinnerComponent], [typeof i2.CommonModule], [typeof i1.LoadingSpinnerComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LoadingSpinnerModule>;
|
|
8
|
+
}
|