@onsvisual/svelte-components 0.1.28 → 0.1.29

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.
@@ -33,7 +33,7 @@ declare const __propDef: {
33
33
  variant?: "default" | "ghost";
34
34
  disabled?: boolean;
35
35
  checked?: boolean;
36
- group?: any[];
36
+ group?: any[] | null;
37
37
  };
38
38
  events: {
39
39
  change: CustomEvent<any>;
@@ -30,9 +30,9 @@
30
30
  export let checked = false;
31
31
  /**
32
32
  * Binding for checked state of input
33
- * @type {array}
33
+ * @type {array|null}
34
34
  */
35
- export let group = [];
35
+ export let group = null;
36
36
  /**
37
37
  * (Optional) Extended description for element
38
38
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onsvisual/svelte-components",
3
- "version": "0.1.28",
3
+ "version": "0.1.29",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "homepage": "https://onsvisual.github.io/svelte-components",