mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
feat(ComboBox): selectedIndex -> selectedId (#1016)
* feat(breaking): selectedIndex -> selectedId in ComboBox * docs: update ComboBox
This commit is contained in:
parent
e11a893bee
commit
cde8a79fa8
9 changed files with 91 additions and 102 deletions
|
@ -1,12 +1,12 @@
|
|||
<script>
|
||||
import { ComboBox, Button } from "carbon-components-svelte";
|
||||
let selectedIndex = 1;
|
||||
let selectedId = "1";
|
||||
</script>
|
||||
|
||||
<ComboBox
|
||||
titleText="Contact"
|
||||
placeholder="Select contact method"
|
||||
bind:selectedIndex
|
||||
bind:selectedId
|
||||
items="{[
|
||||
{ id: '0', text: 'Slack' },
|
||||
{ id: '1', text: 'Email' },
|
||||
|
@ -14,5 +14,7 @@
|
|||
]}"
|
||||
/>
|
||||
<br />
|
||||
<Button on:click="{() => (selectedIndex = -1)}">Set to -1 (unselected)</Button>
|
||||
<Button on:click="{() => (selectedIndex = 2)}">Set to 2 (Fax)</Button>
|
||||
<Button on:click="{() => (selectedId = undefined)}"
|
||||
>Set to undefined (unselected)</Button
|
||||
>
|
||||
<Button on:click="{() => (selectedId = '2')}">Set to 2 (Fax)</Button>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue