From 2a1f76efcfc61ac7ea0844e571d0f3c12d562f9b Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Fri, 3 May 2024 11:04:11 +0300 Subject: [PATCH] SpeedDial button prop update --- components/lib/speeddial/BaseSpeedDial.vue | 2 +- components/lib/speeddial/SpeedDial.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/lib/speeddial/BaseSpeedDial.vue b/components/lib/speeddial/BaseSpeedDial.vue index 8ef01589f..e7112073a 100644 --- a/components/lib/speeddial/BaseSpeedDial.vue +++ b/components/lib/speeddial/BaseSpeedDial.vue @@ -66,7 +66,7 @@ export default { actionButtonProps: { type: Object, default() { - return { severity: 'secondary', text: true, rounded: true, size: 'small' }; + return { severity: 'secondary', rounded: true, size: 'small' }; } }, ariaLabelledby: { diff --git a/components/lib/speeddial/SpeedDial.d.ts b/components/lib/speeddial/SpeedDial.d.ts index d030a0eaa..8a59a1760 100644 --- a/components/lib/speeddial/SpeedDial.d.ts +++ b/components/lib/speeddial/SpeedDial.d.ts @@ -276,7 +276,7 @@ export interface SpeedDialProps { /** * Used to pass all properties of the ButtonProps to the item component. * @type {ButtonProps} - * @defaultValue { severity: 'secondary', text: true, rounded: true, size: 'small' } + * @defaultValue { severity: 'secondary', rounded: true, size: 'small' } */ actionButtonProps?: object | undefined; /**