mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
51 lines
885 B
Svelte
51 lines
885 B
Svelte
<script lang="ts">
|
|
import { ComboBox } from "../types";
|
|
import type { ComboBoxItem } from "../types/ComboBox/ComboBox";
|
|
|
|
const items: ComboBoxItem[] = [
|
|
{ id: "0", text: "Slack" },
|
|
{ id: "1", text: "Email" },
|
|
{ id: "2", text: "Fax" },
|
|
];
|
|
</script>
|
|
|
|
<ComboBox
|
|
titleText="Contact"
|
|
placeholder="Select contact method"
|
|
items="{items}"
|
|
/>
|
|
|
|
<ComboBox
|
|
titleText="Contact"
|
|
placeholder="Select contact method"
|
|
selectedIndex="{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}"
|
|
/>
|