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