Update .d.ts files

pull/3913/head
Tuğçe Küçükoğlu 2023-04-28 19:05:48 +03:00
parent 01031b79d1
commit 3602a76866
2 changed files with 7 additions and 1 deletions

View File

@ -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;
} }

View File

@ -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;
} }
/** /**