Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/Tile/SelectableTile.svelte
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
<script>
/** Set to `true` to select the tile */
/** Set to `true` to select the tile*/
export let selected = false;

/** Set to `true` to enable the light variant */
export let light = false;

/** Set to `true` to disable the tile */
export let disabled = false;

/** Specify the title of the selectable tile */
export let title = "title";

Expand Down Expand Up @@ -47,6 +50,7 @@
value="{value}"
name="{name}"
title="{title}"
disabled="{disabled}"
/>
<label
for="{id}"
Expand Down