@kws3/ui 4.3.4 → 4.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.mdx +3 -0
- package/controls/Radio.svelte +2 -1
- package/package.json +2 -2
package/CHANGELOG.mdx
CHANGED
package/controls/Radio.svelte
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@component
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
@param {
|
|
5
|
+
@param {any} [value=null] - Value of radio button, Default: `null`
|
|
6
6
|
@param {string} [style=""] - Inline CSS for the Radio button, Default: `""`
|
|
7
7
|
@param {string} [label_style=""] - Inline CSS for Radio label, Default: `""`
|
|
8
8
|
@param {SizeOptions} [size=] - Size of the Radio Button, Default: ``
|
|
@@ -46,6 +46,7 @@ See: https://svelte.dev/docs#bind_group, Default: `null`
|
|
|
46
46
|
*/
|
|
47
47
|
/**
|
|
48
48
|
* Value of radio button
|
|
49
|
+
* @type {any}
|
|
49
50
|
*/
|
|
50
51
|
export let value = null,
|
|
51
52
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kws3/ui",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.5",
|
|
4
4
|
"description": "UI components for use with Svelte v3 applications.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"svelte": "index.js",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"typescript": "^5.2.2"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "ad72273ec9e8d597a106b53c345e9499b4a9f2d1"
|
|
43
43
|
}
|