Skip to content

Commit

Permalink
Added a changeset
Browse files Browse the repository at this point in the history
  • Loading branch information
ynotdraw committed Jul 24, 2023
1 parent 6176595 commit c8a4eb1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .changeset/spicy-suits-pay.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
'@crowdstrike/ember-toucan-form': patch
---

Added `form.Multiselect` support.

```hbs
<ToucanForm @data={{data}} as |form|>
<form.Multiselect
@label='Label'
@hint='Hint'
@name='selection'
@options={{this.options}}
>
<:noResults>No results</:noResults>
<:remove as |remove|>
<remove.Remove @label={{(concat 'Remove' ' ' remove.option)}} />
</:remove>
<:default as |multiselect|>
<multiselect.Option>{{multiselect.option}}</multiselect.Option>
</:default>
</form.Multiselect>
</ToucanForm>
```

0 comments on commit c8a4eb1

Please sign in to comment.