diff --git a/components/lib/confirmdialog/ConfirmDialog.d.ts b/components/lib/confirmdialog/ConfirmDialog.d.ts index cf9164352..142c36871 100644 --- a/components/lib/confirmdialog/ConfirmDialog.d.ts +++ b/components/lib/confirmdialog/ConfirmDialog.d.ts @@ -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; diff --git a/components/lib/confirmpopup/ConfirmPopup.d.ts b/components/lib/confirmpopup/ConfirmPopup.d.ts index d11a8e539..72d3f8209 100644 --- a/components/lib/confirmpopup/ConfirmPopup.d.ts +++ b/components/lib/confirmpopup/ConfirmPopup.d.ts @@ -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; diff --git a/components/lib/dialog/Dialog.d.ts b/components/lib/dialog/Dialog.d.ts index cee83f9e8..1e32a3435 100755 --- a/components/lib/dialog/Dialog.d.ts +++ b/components/lib/dialog/Dialog.d.ts @@ -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; diff --git a/components/lib/inplace/Inplace.d.ts b/components/lib/inplace/Inplace.d.ts index bab27b718..7141a548a 100755 --- a/components/lib/inplace/Inplace.d.ts +++ b/components/lib/inplace/Inplace.d.ts @@ -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; diff --git a/components/lib/speeddial/SpeedDial.d.ts b/components/lib/speeddial/SpeedDial.d.ts index d38fc569a..50503e240 100644 --- a/components/lib/speeddial/SpeedDial.d.ts +++ b/components/lib/speeddial/SpeedDial.d.ts @@ -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; diff --git a/components/lib/splitbutton/SplitButton.d.ts b/components/lib/splitbutton/SplitButton.d.ts index 9b9689485..4297b40db 100755 --- a/components/lib/splitbutton/SplitButton.d.ts +++ b/components/lib/splitbutton/SplitButton.d.ts @@ -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;