mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +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
59
components/lib/confirmpopup/ConfirmPopup.d.ts
vendored
Normal file
59
components/lib/confirmpopup/ConfirmPopup.d.ts
vendored
Normal file
|
@ -0,0 +1,59 @@
|
|||
/**
|
||||
*
|
||||
* ConfirmPopup displays a confirmation overlay displayed relatively to its target.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/confirmpopup)
|
||||
*
|
||||
* @module confirmpopup
|
||||
*
|
||||
*/
|
||||
import { VNode } from 'vue';
|
||||
import { ConfirmationOptions } from '../confirmationoptions';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in ConfirmPopup component.
|
||||
*/
|
||||
export interface ConfirmPopupProps {
|
||||
/**
|
||||
* Optional key to match the key of the confirmation, useful to target a specific confirm dialog instance.
|
||||
*/
|
||||
group?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in ConfirmPopup component.
|
||||
*/
|
||||
export interface ConfirmPopupSlots {
|
||||
/**
|
||||
* Custom message template.
|
||||
* @param {Object} scope - message slot's params.
|
||||
*/
|
||||
message(scope: { message: ConfirmationOptions }): VNode[];
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid emits in ConfirmPopup component.
|
||||
*/
|
||||
export interface ConfirmPopupEmits {}
|
||||
|
||||
/**
|
||||
* **PrimeVue - ConfirmPopup**
|
||||
*
|
||||
* _ConfirmPopup displays a confirmation overlay displayed relatively to its target._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/confirmpopup/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class ConfirmPopup extends ClassComponent<ConfirmPopupProps, ConfirmPopupSlots, ConfirmPopupEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
ConfirmPopup: GlobalComponentConstructor<ConfirmPopup>;
|
||||
}
|
||||
}
|
||||
|
||||
export default ConfirmPopup;
|
Loading…
Add table
Add a link
Reference in a new issue