mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
chore: lift components folder
This commit is contained in:
parent
76df51674d
commit
2200b29b92
301 changed files with 57 additions and 76 deletions
63
src/ComboBox/ComboBox.Story.svelte
Normal file
63
src/ComboBox/ComboBox.Story.svelte
Normal file
|
@ -0,0 +1,63 @@
|
|||
<script>
|
||||
import { ToggleSmall } from "../ToggleSmall";
|
||||
import { Button } from "../Button";
|
||||
import ComboBox from "./ComboBox.svelte";
|
||||
|
||||
let items = [
|
||||
{ id: "option-0", text: "Option 1" },
|
||||
{ id: "option-1", text: "Option 2" },
|
||||
{ id: "option-2", text: "Option 3" },
|
||||
{ id: "option-3", text: "Option 4" },
|
||||
{
|
||||
id: "option-4",
|
||||
text:
|
||||
"An example option that is really long to show what should be done to handle long text"
|
||||
}
|
||||
];
|
||||
|
||||
$: toggled = false;
|
||||
$: value = undefined;
|
||||
$: selectedIndex = -1;
|
||||
$: ref = null;
|
||||
$: ref && ref.focus();
|
||||
|
||||
function shouldFilterItem(item, value) {
|
||||
if (!toggled || !value) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return item.text.toLowerCase().includes(value.toLowerCase());
|
||||
}
|
||||
</script>
|
||||
|
||||
<p>Currently, this component does not support items as slots.</p>
|
||||
<p>
|
||||
<code>items</code>
|
||||
must be an array of objects; mandatory fields are `id` and `text`.
|
||||
</p>
|
||||
<pre style="margin-top: 1rem;">
|
||||
<code>{'items = Array<{ id: string; text: string; }>'}</code>
|
||||
</pre>
|
||||
<div style="margin-top: 2rem;">
|
||||
<ToggleSmall
|
||||
labelText="Enable filtering"
|
||||
bind:toggled
|
||||
style="margin-top: 1rem;" />
|
||||
<Button
|
||||
size="small"
|
||||
on:click={() => {
|
||||
selectedIndex = 1;
|
||||
}}>
|
||||
Set item to 'Option 2'
|
||||
</Button>
|
||||
</div>
|
||||
<div style="width: 300px; margin-top: 2rem;">
|
||||
<ComboBox
|
||||
{...$$props}
|
||||
id="combobox"
|
||||
bind:ref
|
||||
bind:value
|
||||
bind:selectedIndex
|
||||
{items}
|
||||
{shouldFilterItem} />
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue