mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
v0.38.0
This commit is contained in:
parent
e51f50da0c
commit
913186ef9c
8 changed files with 45 additions and 6 deletions
1
types/Checkbox/Checkbox.d.ts
vendored
1
types/Checkbox/Checkbox.d.ts
vendored
|
@ -77,6 +77,7 @@ export default class Checkbox extends SvelteComponentTyped<
|
|||
mouseenter: WindowEventMap["mouseenter"];
|
||||
mouseleave: WindowEventMap["mouseleave"];
|
||||
change: WindowEventMap["change"];
|
||||
blur: WindowEventMap["blur"];
|
||||
},
|
||||
{ labelText: {} }
|
||||
> {}
|
||||
|
|
1
types/ListBox/ListBoxField.d.ts
vendored
1
types/ListBox/ListBoxField.d.ts
vendored
|
@ -57,6 +57,7 @@ export default class ListBoxField extends SvelteComponentTyped<
|
|||
mouseenter: WindowEventMap["mouseenter"];
|
||||
mouseleave: WindowEventMap["mouseleave"];
|
||||
keydown: WindowEventMap["keydown"];
|
||||
focus: WindowEventMap["focus"];
|
||||
blur: WindowEventMap["blur"];
|
||||
},
|
||||
{ default: {} }
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
import { SvelteComponentTyped } from "svelte";
|
||||
|
||||
export interface TooltipDefinitionProps
|
||||
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["div"]> {
|
||||
extends svelte.JSX.HTMLAttributes<HTMLElementTagNameMap["span"]> {
|
||||
/**
|
||||
* Specify the tooltip text
|
||||
* @default ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue