mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
66 lines
1.1 KiB
Svelte
66 lines
1.1 KiB
Svelte
<script lang="ts">
|
|
import { ComboBox } from "../types";
|
|
import type { ComboBoxItem } from "../types/ComboBox/ComboBox.svelte";
|
|
|
|
const items: ComboBoxItem[] = [
|
|
{ id: 0, text: "Slack" },
|
|
{ id: "1", text: "Email" },
|
|
{ id: "2", text: "Fax" },
|
|
];
|
|
|
|
let ref: ComboBox;
|
|
|
|
$: ref?.clear({ focus: false });
|
|
$: ref?.clear();
|
|
</script>
|
|
|
|
<ComboBox
|
|
bind:this="{ref}"
|
|
direction="top"
|
|
titleText="Contact"
|
|
placeholder="Select contact method"
|
|
items="{items}"
|
|
on:select="{(e) => {
|
|
console.log(e.detail.selectedId);
|
|
}}"
|
|
let:item
|
|
let:index
|
|
>
|
|
{item.id}
|
|
{index}
|
|
</ComboBox>
|
|
|
|
<ComboBox
|
|
titleText="Contact"
|
|
placeholder="Select contact method"
|
|
selectedId="1"
|
|
items="{items}"
|
|
/>
|
|
|
|
<ComboBox
|
|
light
|
|
titleText="Contact"
|
|
placeholder="Select contact method"
|
|
items="{items}"
|
|
/>
|
|
|
|
<ComboBox
|
|
titleText="Contact"
|
|
placeholder="Select contact method"
|
|
size="xl"
|
|
items="{items}"
|
|
/>
|
|
|
|
<ComboBox
|
|
titleText="Contact"
|
|
placeholder="Select contact method"
|
|
size="sm"
|
|
items="{items}"
|
|
/>
|
|
|
|
<ComboBox
|
|
disabled
|
|
titleText="Contact"
|
|
placeholder="Select contact method"
|
|
items="{items}"
|
|
/>
|