carbon-components-svelte 0.89.3 → 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 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,400+ Carbon icons as Svelte components
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carbon-components-svelte",
3
- "version": "0.89.3",
3
+ "version": "0.89.5",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Svelte implementation of the Carbon Design System",
6
6
  "type": "module",
@@ -61,7 +61,7 @@
61
61
  const dispatch = createEventDispatcher();
62
62
 
63
63
  $: useGroup = Array.isArray(group);
64
- $: checked = useGroup ? group.includes(value) : checked;
64
+ $: if (useGroup) checked = group.includes(value);
65
65
  $: dispatch("check", checked);
66
66
 
67
67
  let refLabel = null;
@@ -459,6 +459,7 @@
459
459
  if (!open) open = true;
460
460
  }
461
461
  }}
462
+ on:input
462
463
  on:keyup
463
464
  on:focus
464
465
  on:blur
@@ -255,6 +255,7 @@ export default class MultiSelect extends SvelteComponentTyped<
255
255
  clear: CustomEvent<null>;
256
256
  blur: FocusEvent | CustomEvent<FocusEvent>;
257
257
  keydown: WindowEventMap["keydown"];
258
+ input: WindowEventMap["input"];
258
259
  keyup: WindowEventMap["keyup"];
259
260
  focus: WindowEventMap["focus"];
260
261
  paste: WindowEventMap["paste"];