src/modules/dialogs/components/dialog-content.intf.ts
Describes the basic content that can be shown in a predefined Dialog component from Stark. See: StarkAlertDialogComponent, StarkConfirmDialogComponent, StarkPromptDialogComponent
Properties |
|
| ok |
ok:
|
Type : string
|
| Optional |
|
Label to be set in the "Ok" button. |
| textContent |
textContent:
|
Type : string
|
| Optional |
|
Dialog's simple text content. |
| title |
title:
|
Type : string
|
| Optional |
|
Dialog's title. |
export interface StarkBaseDialogContent {
/**
* Dialog's title.
*/
title?: string;
/**
* Dialog's simple text content.
*/
textContent?: string;
/**
* Label to be set in the "Ok" button.
*/
ok?: string;
}