From 5de42d4ebef4f9525c45c7bf11f8c544b8a5a221 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: Wed, 1 Mar 2023 17:57:18 +0300 Subject: [PATCH] TooltipProps added --- components/tooltip/Tooltip.d.ts | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/components/tooltip/Tooltip.d.ts b/components/tooltip/Tooltip.d.ts index d3d50a53e..4c89dd733 100755 --- a/components/tooltip/Tooltip.d.ts +++ b/components/tooltip/Tooltip.d.ts @@ -2,4 +2,38 @@ import { ObjectDirective } from 'vue'; declare const Tooltip: ObjectDirective; +/** + * Defines options of Tooltip. + * @group Model + */ +export interface TooltipProps { + /** + * Text of the tooltip. + */ + value?: string | undefined; + /** + * When present, it specifies that the component should be disabled. + * @defaultValue false + */ + disabled?: boolean | undefined; + /** + * When present, it adds a custom id to the tooltip. + */ + id?: string | undefined; + /** + * When present, it adds a custom class to the tooltip. + */ + class?: string | undefined; + /** + * When present, it adds a custom id to the tooltip. + * @defaultValue false + */ + escape?: boolean | undefined; + /** + * Automatically adjusts the element position when there is not enough space on the selected position. + * @defaultValue true + */ + fitContent?: boolean | undefined; +} + export default Tooltip;