Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-02-01 07:10:58 -08:00
commit 653a46a232
4 changed files with 36 additions and 7 deletions

View file

@ -9,6 +9,12 @@ export interface TooltipDefinitionProps
*/
tooltipText?: string;
/**
* Set to `true` to open the tooltip
* @default false
*/
open?: boolean;
/**
* Set the alignment of the tooltip relative to the icon
* @default "center"
@ -37,6 +43,8 @@ export interface TooltipDefinitionProps
export default class TooltipDefinition extends SvelteComponentTyped<
TooltipDefinitionProps,
{
open: CustomEvent<any>;
close: CustomEvent<any>;
click: WindowEventMap["click"];
mouseover: WindowEventMap["mouseover"];
mouseenter: WindowEventMap["mouseenter"];