carbon-components-svelte 0.89.4 → 0.89.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/README.md +1 -1
- package/package.json +1 -1
- package/src/Checkbox/Checkbox.svelte +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Design systems facilitate design and development through reuse, consistency, and
|
|
|
13
13
|
|
|
14
14
|
The Carbon Svelte portfolio also includes:
|
|
15
15
|
|
|
16
|
-
- **[Carbon Icons Svelte](https://github.com/carbon-design-system/carbon-icons-svelte)**: 2,
|
|
16
|
+
- **[Carbon Icons Svelte](https://github.com/carbon-design-system/carbon-icons-svelte)**: 2,500+ Carbon icons as Svelte components
|
|
17
17
|
- **[Carbon Pictograms Svelte](https://github.com/carbon-design-system/carbon-pictograms-svelte)**: 1,300+ Carbon pictograms as Svelte components
|
|
18
18
|
- **[Carbon Charts Svelte](https://github.com/carbon-design-system/carbon-charts/tree/master/packages/svelte)**: 25+ charts, powered by d3
|
|
19
19
|
- **[Carbon Preprocess Svelte](https://github.com/carbon-design-system/carbon-preprocess-svelte)**: Collection of Svelte preprocessors for Carbon
|
package/package.json
CHANGED
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
const dispatch = createEventDispatcher();
|
|
62
62
|
|
|
63
63
|
$: useGroup = Array.isArray(group);
|
|
64
|
-
$: checked =
|
|
64
|
+
$: if (useGroup) checked = group.includes(value);
|
|
65
65
|
$: dispatch("check", checked);
|
|
66
66
|
|
|
67
67
|
let refLabel = null;
|