mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
46
components/lib/dynamicdialog/DynamicDialog.d.ts
vendored
Normal file
46
components/lib/dynamicdialog/DynamicDialog.d.ts
vendored
Normal file
|
@ -0,0 +1,46 @@
|
|||
/**
|
||||
*
|
||||
* DynamicDialogs can be created dynamically with any component as the content using a DialogService.
|
||||
*
|
||||
* [Live Demo](https://primevue.org/dynamicdialog)
|
||||
*
|
||||
* @module dynamicdialog
|
||||
*
|
||||
*/
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in DynamicDialog component.
|
||||
*/
|
||||
export interface DynamicDialogProps {}
|
||||
|
||||
/**
|
||||
* Defines valid emits in DynamicDialog component.
|
||||
*/
|
||||
export interface DynamicDialogEmits {}
|
||||
|
||||
/**
|
||||
* Defines valid slots in DynamicDialog component.
|
||||
*/
|
||||
export interface DynamicDialogSlots {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - DynamicDialog**
|
||||
*
|
||||
* _DynamicDialogs can be created dynamically with any component as the content using a DialogService._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/dynamicdialog/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class DynamicDialog extends ClassComponent<DynamicDialogProps, DynamicDialogSlots, DynamicDialogEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
DynamicDialog: GlobalComponentConstructor<DynamicDialog>;
|
||||
}
|
||||
}
|
||||
|
||||
export default DynamicDialog;
|
Loading…
Add table
Add a link
Reference in a new issue