From 776667ba2787d95590f283389b53ef23465dc2a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Thu, 6 Jan 2022 16:02:50 +0300 Subject: [PATCH] tooltip errors in d.ts --- src/components/dock/Dock.d.ts | 4 ++-- src/components/speeddial/SpeedDial.d.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/dock/Dock.d.ts b/src/components/dock/Dock.d.ts index 4736435a0..a16b7596f 100644 --- a/src/components/dock/Dock.d.ts +++ b/src/components/dock/Dock.d.ts @@ -11,13 +11,13 @@ export interface DockTooltipOptions { * Event to show the tooltip, valid values are hover and focus. * @see DockTooltipEventType */ - event: DockTooltipEventType; + event: string; /** * Position of element. * @see DockPositionType * Default value is 'bottom'. */ - position: DockPositionType; + position: string; /** * Optional options. */ diff --git a/src/components/speeddial/SpeedDial.d.ts b/src/components/speeddial/SpeedDial.d.ts index 111875f71..2231bd493 100644 --- a/src/components/speeddial/SpeedDial.d.ts +++ b/src/components/speeddial/SpeedDial.d.ts @@ -15,13 +15,13 @@ export interface SpeedDialTooltipOptions { * Event to show the tooltip, valid values are hover and focus. * @see SpeedDialTooltipEventType */ - event: SpeedDialTooltipEventType; + event: string; /** * Position of element. * @see SpeedDialTooltipPositionType * Default value is 'bottom'. */ - position: SpeedDialTooltipPositionType; + position: string; /** * Optional options. */