libs/common/frame/src/frame-parts/actions/model.ts
Properties |
| backButtonUseTertiaryStyle | |
| Type |
boolean
|
| backDisabled | |
| Type |
boolean
|
| backHidden | |
| Type |
boolean
|
| customActions | |
| Type |
CustomAction[]
|
| isLastPage | |
| Type |
boolean
|
| nextDisabled | |
| Type |
boolean
|
| nextHidden | |
| Type |
boolean
|
| showCancelButton | |
| Type |
boolean
|
| showSaveOfferButton | |
| Type |
boolean
|
import { CustomAction } from '@allianz/taly-core';
export interface PageActionStatus {
nextHidden: boolean;
backHidden: boolean;
nextDisabled: boolean;
backDisabled: boolean;
isLastPage: boolean;
showSaveOfferButton: boolean;
showCancelButton: boolean;
backButtonUseTertiaryStyle: boolean;
customActions: CustomAction[];
}