From 9cbc0b6fc395a1a050031663f1f687b39bc8c5a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 1 Mar 2023 13:18:44 +0300 Subject: [PATCH] DynamicDialog d.ts updated --- components/dynamicdialog/DynamicDialog.d.ts | 42 +++++++++++++++------ 1 file changed, 31 insertions(+), 11 deletions(-) diff --git a/components/dynamicdialog/DynamicDialog.d.ts b/components/dynamicdialog/DynamicDialog.d.ts index e0ab9bbf6..953205ac3 100644 --- a/components/dynamicdialog/DynamicDialog.d.ts +++ b/components/dynamicdialog/DynamicDialog.d.ts @@ -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 {} +/** + * **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 {} 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;