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

Commit c520de3

Browse files
Merge pull request #185 from marekdedic/ItemGroup-typings-fix
Fixed ItemGroup typings to allow for non-array value prop
2 parents 580dbcb + 74bc4e5 commit c520de3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/svelte-materialify/@types/ItemGroup.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export interface ItemGroupProps {
66
/** class to add to item when active */
77
activeClass?: string;
88
/** value of the group */
9-
value?: any[];
9+
value?: any;
1010
/** allows to select multiple items */
1111
multiple?: boolean;
1212
/** makes sure atleast one item is selected */

0 commit comments

Comments
 (0)