mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
forward on:input from Multiselect text input when filterable prop is true
This commit is contained in:
parent
ecc818ff61
commit
c9d3d1a73f
4 changed files with 8 additions and 0 deletions
|
@ -2419,6 +2419,7 @@ export interface MultiSelectItem {
|
|||
| clear | dispatched | <code>null</code> |
|
||||
| blur | dispatched | <code>FocusEvent | CustomEvent<FocusEvent></code> |
|
||||
| keydown | forwarded | -- |
|
||||
| input | forwarded | -- |
|
||||
| keyup | forwarded | -- |
|
||||
| focus | forwarded | -- |
|
||||
| paste | forwarded | -- |
|
||||
|
|
|
@ -8943,6 +8943,11 @@
|
|||
"name": "keydown",
|
||||
"element": "input"
|
||||
},
|
||||
{
|
||||
"type": "forwarded",
|
||||
"name": "input",
|
||||
"element": "input"
|
||||
},
|
||||
{
|
||||
"type": "forwarded",
|
||||
"name": "keyup",
|
||||
|
|
|
@ -459,6 +459,7 @@
|
|||
if (!open) open = true;
|
||||
}
|
||||
}}
|
||||
on:input
|
||||
on:keyup
|
||||
on:focus
|
||||
on:blur
|
||||
|
|
1
types/MultiSelect/MultiSelect.svelte.d.ts
vendored
1
types/MultiSelect/MultiSelect.svelte.d.ts
vendored
|
@ -255,6 +255,7 @@ export default class MultiSelect extends SvelteComponentTyped<
|
|||
clear: CustomEvent<null>;
|
||||
blur: FocusEvent | CustomEvent<FocusEvent>;
|
||||
keydown: WindowEventMap["keydown"];
|
||||
input: WindowEventMap["input"];
|
||||
keyup: WindowEventMap["keyup"];
|
||||
focus: WindowEventMap["focus"];
|
||||
paste: WindowEventMap["paste"];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue