Components added. Build issues fixed

This commit is contained in:
Bahadir Sofuoglu 2022-09-14 14:26:01 +03:00
parent 5b66ed1093
commit 18c3721848
344 changed files with 12446 additions and 8758 deletions

View file

@ -158,37 +158,37 @@ export declare type DialogEmits = {
/**
* Callback to invoke when dialog is hidden.
*/
'hide': () => void;
hide: () => void;
/**
* Callback to invoke after dialog is hidden.
*/
*/
'after-hide': () => void;
/**
* Callback to invoke when dialog is shown.
*/
'show': () => void;
show: () => void;
/**
* Fired when a dialog gets maximized.
* @param {event} event - Browser event.
*/
'maximize': (event: Event) => void;
maximize: (event: Event) => void;
/**
* Fired when a dialog gets unmaximized.
* @param {event} event - Browser event.
*/
'unmaximize': (event: Event) => void;
unmaximize: (event: Event) => void;
/**
* Fired when a dialog drag completes.
* @param {event} event - Browser event.
*/
'dragend': (event: Event) => void;
}
dragend: (event: Event) => void;
};
declare class Dialog extends ClassComponent<DialogProps, DialogSlots, DialogEmits> { }
declare class Dialog extends ClassComponent<DialogProps, DialogSlots, DialogEmits> {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
Dialog: GlobalComponentConstructor<Dialog>
Dialog: GlobalComponentConstructor<Dialog>;
}
}
@ -198,7 +198,7 @@ declare module '@vue/runtime-core' {
*
* Demos:
*
* - [Dialog](https://www.primefaces.org/primevue/showcase/#/dialog)
* - [Dialog](https://www.primefaces.org/primevue/dialog)
*
*/
export default Dialog;