Skip to content

Commit

Permalink
fix radio value type
Browse files Browse the repository at this point in the history
  • Loading branch information
ekhaled committed Jun 4, 2024
1 parent 834bfdd commit 4149ffa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/@kws3/ui/controls/Radio.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@component
@param {object} [value=null] - Value of radio button, Default: `null`
@param {any} [value=null] - Value of radio button, Default: `null`
@param {string} [style=""] - Inline CSS for the Radio button, Default: `""`
@param {string} [label_style=""] - Inline CSS for Radio label, Default: `""`
@param {SizeOptions} [size=] - Size of the Radio Button, Default: ``
Expand Down Expand Up @@ -46,6 +46,7 @@ See: https://svelte.dev/docs#bind_group, Default: `null`
*/
/**
* Value of radio button
* @type {any}
*/
export let value = null,
/**
Expand Down

0 comments on commit 4149ffa

Please sign in to comment.