@energycap/components 0.39.15-ECAP-24619-disable-page-view-button-inputs.20240425-0917 → 0.39.15
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/esm2020/lib/shared/page/page-base/page-base.component.mjs +1 -1
- package/esm2020/lib/shared/page/page-view/page-view.component.mjs +9 -3
- package/fesm2015/energycap-components.mjs +8 -2
- package/fesm2015/energycap-components.mjs.map +1 -1
- package/fesm2020/energycap-components.mjs +8 -2
- package/fesm2020/energycap-components.mjs.map +1 -1
- package/lib/shared/page/page-view/page-view.component.d.ts +5 -1
- package/package.json +1 -1
@@ -85,6 +85,10 @@ export declare class PageViewComponent {
|
|
85
85
|
* Prevents content from overflowing the view. Content must manage overflow instead.
|
86
86
|
*/
|
87
87
|
fitContent: boolean;
|
88
|
+
/**
|
89
|
+
* Disables the primary action button
|
90
|
+
*/
|
91
|
+
disablePrimaryAction: boolean;
|
88
92
|
/** Changes the background color for the content and overlay to white */
|
89
93
|
bgContent: boolean;
|
90
94
|
onPrimaryAction: EventEmitter<any>;
|
@@ -94,5 +98,5 @@ export declare class PageViewComponent {
|
|
94
98
|
secondaryAction(event: any): void;
|
95
99
|
closeDialog(): void;
|
96
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageViewComponent, never>;
|
97
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PageViewComponent, "ec-page-view", never, { "isDialog": "isDialog"; "readonly": "readonly"; "status": "status"; "showHeader": "showHeader"; "errors": "errors"; "breadcrumbs": "breadcrumbs"; "title": "title"; "titleIcon": "titleIcon"; "subTitle": "subTitle"; "subTitleUrl": "subTitleUrl"; "moreActionsLabel": "moreActionsLabel"; "moreActions": "moreActions"; "secondaryActionLabel": "secondaryActionLabel"; "hideSecondaryAction": "hideSecondaryAction"; "hideCloseOnPending": "hideCloseOnPending"; "primaryActionLabel": "primaryActionLabel"; "hidePrimaryAction": "hidePrimaryAction"; "customTitleTemplate": "customTitleTemplate"; "customActionsTemplate": "customActionsTemplate"; "customHeaderTemplate": "customHeaderTemplate"; "footerTemplate": "footerTemplate"; "customErrorBannerTemplate": "customErrorBannerTemplate"; "stickyFooter": "stickyFooter"; "fitContent": "fitContent"; "bgContent": "bgContent"; }, { "onPrimaryAction": "onPrimaryAction"; "onSecondaryAction": "onSecondaryAction"; }, never, ["*"], false, never>;
|
101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageViewComponent, "ec-page-view", never, { "isDialog": "isDialog"; "readonly": "readonly"; "status": "status"; "showHeader": "showHeader"; "errors": "errors"; "breadcrumbs": "breadcrumbs"; "title": "title"; "titleIcon": "titleIcon"; "subTitle": "subTitle"; "subTitleUrl": "subTitleUrl"; "moreActionsLabel": "moreActionsLabel"; "moreActions": "moreActions"; "secondaryActionLabel": "secondaryActionLabel"; "hideSecondaryAction": "hideSecondaryAction"; "hideCloseOnPending": "hideCloseOnPending"; "primaryActionLabel": "primaryActionLabel"; "hidePrimaryAction": "hidePrimaryAction"; "customTitleTemplate": "customTitleTemplate"; "customActionsTemplate": "customActionsTemplate"; "customHeaderTemplate": "customHeaderTemplate"; "footerTemplate": "footerTemplate"; "customErrorBannerTemplate": "customErrorBannerTemplate"; "stickyFooter": "stickyFooter"; "fitContent": "fitContent"; "disablePrimaryAction": "disablePrimaryAction"; "bgContent": "bgContent"; }, { "onPrimaryAction": "onPrimaryAction"; "onSecondaryAction": "onSecondaryAction"; }, never, ["*"], false, never>;
|
98
102
|
}
|