Update .d.ts files
parent
01031b79d1
commit
3602a76866
|
@ -181,10 +181,12 @@ export interface FileUploadPassThroughOptions {
|
|||
chooseIcon?: FileUploadPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the upload button's DOM element.
|
||||
* @see {@link ButtonPassThroughOptions}
|
||||
*/
|
||||
uploadButton?: ButtonPassThroughOptions;
|
||||
/**
|
||||
* Uses to pass attributes to the cancel button's DOM element.
|
||||
* @see {@link ButtonPassThroughOptions}
|
||||
*/
|
||||
cancelButton?: ButtonPassThroughOptions;
|
||||
/**
|
||||
|
@ -197,6 +199,7 @@ export interface FileUploadPassThroughOptions {
|
|||
progressbar?: FileUploadPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the messages' DOM element.
|
||||
* @see {@link MessagePassThroughOptions}
|
||||
*/
|
||||
messages?: MessagePassThroughOptions;
|
||||
/**
|
||||
|
@ -245,6 +248,7 @@ export interface FileUploadPassThroughOptions {
|
|||
actions?: FileUploadPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the remove button's DOM element.
|
||||
* @see {@link ButtonPassThroughOptions}
|
||||
*/
|
||||
removeButton?: ButtonPassThroughOptions;
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
*/
|
||||
import { ButtonHTMLAttributes, VNode } from 'vue';
|
||||
import { MenuItem } from '../menuitem';
|
||||
import { TieredMenuPassThroughOptions } from '../tieredmenu';
|
||||
import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers';
|
||||
|
||||
export declare type SplitButtonPassThroughOptionType = SplitButtonPassThroughAttributes | ((options: SplitButtonPassThroughMethodOptions) => SplitButtonPassThroughAttributes) | null | undefined;
|
||||
|
@ -48,8 +49,9 @@ export interface SplitButtonPassThroughOptions {
|
|||
menuButtonIcon?: SplitButtonPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the menu's DOM element.
|
||||
* @see {@link TieredMenuPassThroughOptions}
|
||||
*/
|
||||
menu?: SplitButtonPassThroughOptionType;
|
||||
menu?: TieredMenuPassThroughOptions;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue