Fix binding bug

This commit is contained in:
Richard O'flynn 2020-12-01 16:45:44 +00:00
commit de1c2d00eb
6 changed files with 65 additions and 16 deletions

View file

@ -7,11 +7,23 @@ export interface SelectableTileGroupProps extends svelte.JSX.HTMLAttributes<HTML
*/
selectedValues?: any[];
/**
* Set to `true` to disable the tile group
* @default false
*/
disabled?: boolean;
/**
* Specify the legend text
* @default ""
*/
legend?: string;
/**
* Set to `true` to enable the light variant throughout the group
* @default false
*/
light?: boolean;
}
export default class SelectableTileGroup {