.d.ts command updates

pull/3919/head
Tuğçe Küçükoğlu 2023-05-02 14:28:07 +03:00
parent 643059eb24
commit fa99912ee1
6 changed files with 10 additions and 10 deletions

View File

@ -40,7 +40,7 @@ export interface ConfirmDialogPassThroughOptions {
*/
headerTitle?: ConfirmDialogPassThroughOptionType;
/**
* Uses to pass attributes to the close button's DOM element.
* Uses to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions}
*/
closeButton?: ButtonPassThroughOptions;
@ -61,12 +61,12 @@ export interface ConfirmDialogPassThroughOptions {
*/
message?: ConfirmDialogPassThroughOptionType;
/**
* Uses to pass attributes to the reject button's DOM element.
* Uses to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions}
*/
rejectButton?: ButtonPassThroughOptions;
/**
* Uses to pass attributes to the accept button's DOM element.
* Uses to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions}
*/
acceptButton?: ButtonPassThroughOptions;

View File

@ -48,12 +48,12 @@ export interface ConfirmPopupPassThroughOptions {
*/
footer?: ConfirmPopupPassThroughOptionType;
/**
* Uses to pass attributes to the reject button's DOM element.
* Uses to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions}
*/
rejectButton?: ButtonPassThroughOptions;
/**
* Uses to pass attributes to the accept button's DOM element.
* Uses to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions}
*/
acceptButton?: ButtonPassThroughOptions;

View File

@ -51,7 +51,7 @@ export interface DialogPassThroughOptions {
*/
maximizableIcon?: DialogPassThroughOptionType;
/**
* Uses to pass attributes to the close button's DOM element.
* Uses to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions}
*/
closeButton?: ButtonPassThroughOptions;

View File

@ -40,7 +40,7 @@ export interface InplacePassThroughOptions {
*/
content?: InplacePassThroughOptionType;
/**
* Uses to pass attributes to the close button's DOM element.
* Uses to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions}
*/
closeButton?: ButtonPassThroughOptions;

View File

@ -33,7 +33,7 @@ export interface SpeedDialPassThroughOptions {
*/
root?: SpeedDialPassThroughOptionType;
/**
* Uses to pass attributes to the button's DOM element.
* Uses to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions}
*/
button?: ButtonPassThroughOptions;

View File

@ -41,12 +41,12 @@ export interface SplitButtonPassThroughOptions {
*/
icon?: SplitButtonPassThroughOptionType;
/**
* Uses to pass attributes to the menu button's DOM element.
* Uses to pass attributes to the Button component.
* @see {@link ButtonPassThroughOptions}
*/
menuButton?: ButtonPassThroughOptions;
/**
* Uses to pass attributes to the menu's DOM element.
* Uses to pass attributes to the TieredMenu component.
* @see {@link TieredMenuPassThroughOptions}
*/
menu?: TieredMenuPassThroughOptions;