mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-21 20:59:20 +00:00
test(multi-select): assert on:blur event
This commit is contained in:
parent
aacabfe7e0
commit
528d7d5278
1 changed files with 1 additions and 1 deletions
2
types/MultiSelect/MultiSelect.svelte.d.ts
vendored
2
types/MultiSelect/MultiSelect.svelte.d.ts
vendored
|
@ -212,6 +212,7 @@ export interface MultiSelectProps
|
||||||
export default class MultiSelect extends SvelteComponentTyped<
|
export default class MultiSelect extends SvelteComponentTyped<
|
||||||
MultiSelectProps,
|
MultiSelectProps,
|
||||||
{
|
{
|
||||||
|
blur: FocusEvent | CustomEvent<FocusEvent>;
|
||||||
select: CustomEvent<{
|
select: CustomEvent<{
|
||||||
selectedIds: MultiSelectItemId[];
|
selectedIds: MultiSelectItemId[];
|
||||||
selected: MultiSelectItem[];
|
selected: MultiSelectItem[];
|
||||||
|
@ -221,7 +222,6 @@ export default class MultiSelect extends SvelteComponentTyped<
|
||||||
keydown: WindowEventMap["keydown"];
|
keydown: WindowEventMap["keydown"];
|
||||||
keyup: WindowEventMap["keyup"];
|
keyup: WindowEventMap["keyup"];
|
||||||
focus: WindowEventMap["focus"];
|
focus: WindowEventMap["focus"];
|
||||||
blur: WindowEventMap["blur"];
|
|
||||||
},
|
},
|
||||||
{}
|
{}
|
||||||
> {}
|
> {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue