mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 01:12:37 +00:00
Dialog pt updates
This commit is contained in:
parent
d50cd9931d
commit
df2505a697
3 changed files with 22 additions and 14 deletions
10
components/lib/dialog/Dialog.d.ts
vendored
10
components/lib/dialog/Dialog.d.ts
vendored
|
@ -8,7 +8,6 @@
|
|||
*
|
||||
*/
|
||||
import { HTMLAttributes, VNode } from 'vue';
|
||||
import { ButtonPassThroughOptions } from '../button';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
export declare type DialogPassThroughOptionType = DialogPassThroughAttributes | ((options: DialogPassThroughMethodOptions) => DialogPassThroughAttributes) | null | undefined;
|
||||
|
@ -51,10 +50,13 @@ export interface DialogPassThroughOptions {
|
|||
*/
|
||||
maximizableIcon?: DialogPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the Button component.
|
||||
* @see {@link ButtonPassThroughOptions}
|
||||
* Uses to pass attributes to the close button's component.
|
||||
*/
|
||||
closeButton?: ButtonPassThroughOptions;
|
||||
closeButton?: DialogPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the close button icon's component.
|
||||
*/
|
||||
closeButtonIcon?: DialogPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the content's DOM element.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue