Skip to content
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.

Commit

Permalink
fix(types): ItemGroup allows non-array value prop
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Mar 20, 2021
1 parent 94238ff commit 74bc4e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/svelte-materialify/@types/ItemGroup.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface ItemGroupProps {
/** class to add to item when active */
activeClass?: string;
/** value of the group */
value?: any[];
value?: any;
/** allows to select multiple items */
multiple?: boolean;
/** makes sure atleast one item is selected */
Expand Down

0 comments on commit 74bc4e5

Please sign in to comment.