@@ -9,71 +9,71 @@ export interface RootProps {
99 * The close delay of the tooltip.
1010 * @default 500
1111 */
12- " closeDelay" ?: number
12+ ' closeDelay' ?: number
1313 /**
1414 * Whether the tooltip should close on click
1515 * @default true
1616 */
17- " closeOnClick" ?: boolean
17+ ' closeOnClick' ?: boolean
1818 /**
1919 * Whether to close the tooltip when the Escape key is pressed.
2020 * @default true
2121 */
22- " closeOnEscape" ?: boolean
22+ ' closeOnEscape' ?: boolean
2323 /**
2424 * Whether to close the tooltip on pointerdown.
2525 * @default true
2626 */
27- " closeOnPointerDown" ?: boolean
27+ ' closeOnPointerDown' ?: boolean
2828 /**
2929 * Whether the tooltip should close on scroll
3030 * @default true
3131 */
32- " closeOnScroll" ?: boolean
32+ ' closeOnScroll' ?: boolean
3333 /**
3434 * The initial open state of the tooltip when it is first rendered.
3535 * Use when you do not need to control its open state.
3636 */
37- " defaultOpen" ?: boolean
37+ ' defaultOpen' ?: boolean
3838 /**
3939 * Whether the tooltip is disabled
4040 */
41- " disabled" ?: boolean
41+ ' disabled' ?: boolean
4242 /**
4343 * The `id` of the tooltip.
4444 */
45- "id" ?: string
45+ 'id' ?: string
4646 /**
4747 * The ids of the elements in the tooltip. Useful for composition.
4848 */
49- " ids" ?: Partial < { trigger : string , content : string , arrow : string , positioner : string } >
49+ ' ids' ?: Partial < { trigger : string , content : string , arrow : string , positioner : string } >
5050 /**
5151 * Whether the tooltip's content is interactive.
5252 * In this mode, the tooltip will remain open when user hovers over the content.
5353 * @see https://www.w3.org/TR/WCAG21/#content-on-hover-or-focus
5454 *
5555 * @default false
5656 */
57- " interactive" ?: boolean
57+ ' interactive' ?: boolean
5858 /**
5959 * Whether the tooltip is open
6060 */
61- " open" ?: boolean
61+ ' open' ?: boolean
6262 /**
6363 * The open delay of the tooltip.
6464 * @default 1000
6565 */
66- " openDelay" ?: number
66+ ' openDelay' ?: number
6767 /**
6868 * The user provided options used to position the popover content
6969 */
70- " positioning" ?: tooltip . PositioningOptions
70+ ' positioning' ?: tooltip . PositioningOptions
7171}
7272
7373export interface RootEmits {
7474 /**
7575 * Function called when the tooltip is opened.
7676 */
77- openChange : [ details : tooltip . OpenChangeDetails ]
77+ ' openChange' : [ details : tooltip . OpenChangeDetails ]
7878 'update:open' : [ open : boolean ]
7979}
0 commit comments