mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-22 05:03:44 +00:00
Run "yarn build:docs"
This commit is contained in:
parent
e19e413885
commit
653a46a232
4 changed files with 36 additions and 7 deletions
|
@ -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"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue