DynamicDialog d.ts updated

pull/3689/head
Tuğçe Küçükoğlu 2023-03-01 13:18:44 +03:00
parent fa22064990
commit 9cbc0b6fc3
1 changed files with 31 additions and 11 deletions

View File

@ -1,12 +1,41 @@
/**
*
* DynamicDialogs can be created dynamically with any component as the content using a DialogService.
*
* - [Live Demo](https://www.primefaces.org/primevue/dynamicdialog)
*
* @module dynamicdialog
*
*/
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
/**
* Defines valid properties in DynamicDialog component.
*/
export interface DynamicDialogProps {}
export declare type DynamicDialogEmits = {};
/**
* Defines valid emits in DynamicDialog component.
*/
export interface DynamicDialogEmits {}
/**
* Defines valid slots in DynamicDialog component.
*/
export interface DynamicDialogSlots {}
declare class DynamicDialog extends ClassComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits> {}
/**
* **PrimeVue - DynamicDialog**
*
* _DynamicDialogs can be created dynamically with any component as the content using a DialogService._
*
* [Live Demo](https://www.primevue.org/dynamicdialog/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*/
export declare class DynamicDialog extends ClassComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits> {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
@ -14,13 +43,4 @@ declare module '@vue/runtime-core' {
}
}
/**
*
* DynamicDialogs can be created dynamically with any component as the content using a DialogService.
*
* Demos:
*
* - [DynamicDialog](https://www.primefaces.org/primevue/dynamicdialog)
*
*/
export default DynamicDialog;