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