Skip to content

Commit

Permalink
chore: changeset (#2358)
Browse files Browse the repository at this point in the history
* chore: changeset

* fix: type in multiselect story
  • Loading branch information
Lelith authored Dec 20, 2022
1 parent 8a9e1a1 commit c054c2f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/short-experts-punch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@contentful/f36-multiselect': patch
---

Extend the Multiselect Component with a Select All possibility
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export const Basic = () => {
label={item.name}
onSelectItem={handleSelectItem}
key={`key-${item.id}`}
itemId={`id-${item.id}}`}
itemId={`id-${item.id}`}
isChecked={selectedFruits.includes(item.name)}
isDisabled={item.isDisabled}
/>
Expand Down Expand Up @@ -195,7 +195,7 @@ export const WithTitle = () => {
label={item.name}
onSelectItem={handleSelectItem}
key={`key-${item.id}`}
itemId={`id-${item.id}}`}
itemId={`id-${item.id}`}
isChecked={selectedFruits.includes(item.name)}
isDisabled={item.isDisabled}
/>
Expand Down Expand Up @@ -255,7 +255,7 @@ export const WithSearch = () => {
value={item.value}
label={item.name}
onSelectItem={handleSelectItem}
key={`key-${item.id}}`}
key={`key-${item.id}`}
itemId={`id-${item.id}`}
isChecked={selectedFruits.includes(item.name)}
isDisabled={item.isDisabled}
Expand Down Expand Up @@ -350,7 +350,7 @@ export const WithSelectAll = () => {
label={item.name}
onSelectItem={handleSelectItem}
key={`key-${item.id}`}
itemId={`id-${item.id}}`}
itemId={`id-${item.id}`}
isChecked={selectedFruits.includes(item.name)}
isDisabled={item.isDisabled}
/>
Expand Down

1 comment on commit c054c2f

@vercel
Copy link

@vercel vercel bot commented on c054c2f Dec 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.