accessibleprimevue
Version:
Note: This is the forked version of the Primefaces/PrimeVue repository. Since V3 has reached its EOL this is use to fix identified accessibility bugs in the v3 version of primevue. PrimeVue is an open source UI library for Vue featuring a rich set of 80+
94 lines (89 loc) • 1.58 kB
TypeScript
/**
*
* [Live Demo](https://www.primevue.org/dynamicdialog/)
*
* @module dynamicdialogoptions
*
*/
import { DialogProps } from '../dialog';
/**
* Custom dialog templates.
*
* @group Interfaces
*/
export interface DynamicDialogTemplates {
/**
* Custom header template.
*/
header?: any;
/**
* Custom footer template.
*/
footer?: any;
}
/**
* Dynamic Dialog close method options.
*
* @group Interfaces
*/
export interface DynamicDialogCloseOptions {
/**
* Custom data object
*/
data?: any;
/**
* Close type
*/
type: 'config-close' | 'dialog-close' | undefined;
}
/**
* Custom Dynamic Dialog options.
*
* @group Interfaces
*/
export interface DynamicDialogOptions {
/**
* Dialog Props
*/
props?: DialogProps;
/**
* Dialog Slots
*/
templates?: DynamicDialogTemplates;
/**
* Custom data object
*/
data?: any;
/**
* Closes the dialog.
*/
onClose?(options?: DynamicDialogCloseOptions): void;
/**
* Optional
*/
[key: string]: any;
}
/**
* Custom Dynamic Dialog options.
*
* @group Interfaces
*/
export interface DynamicDialogInstance {
/**
* Dynamic component for content template
*/
content: any;
/**
* Instance options
*/
options: DynamicDialogOptions;
/**
* Custom data object
*/
data: any;
/**
* Closes the dialog.
* @param {*} params - Parameters sent by the user to the root instance
*/
close: (params?: any) => void;
}