diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dfaac5e..3ba84867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [0.58.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.58.0) - 2022-02-11 + +**Breaking Changes** + +- if `TextInput` is `type="number"`, value can be a `number` or `null` to signify "no value" +- `TextInput` dispatches instead of forwards `input`, `change` events (detail: `null | number | string`) + +**Features** + +- pass `rowIndex`, `cellIndex` to `DataTable` "cell" slot +- add `itemToInput` prop to `MultiSelect` to customize name, title, labelText values +- add `open` prop to `TooltipDefinition`; dispatch `open`, `close` events + +**Fixes** + +- `DataTable` headers should be reactive +- `DataTable` batch selection checkbox should be reactive +- `MultiSelect` should correctly lose focus +- non-filterable `MultiSelect` should dispatch a `blur` event +- resolve `MultiSelect` accessibility issues +- toggle `HeaderNavMenu` when pressing "Enter" or "Space" +- close `HeaderNavMenu` menu when pressing "Enter" on an item +- resolve `HeaderNavMenu` accessibility issues +- fix `TextInput` reactivity by using native `bind:value` + +**Documentation** + +- remove duplicate "Heading variant" example + +**Housekeeping** + +- upgrade `carbon-components` to v10.52.0 + ## [0.57.1](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.57.1) - 2022-02-01 **Fixes** diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index 6987ebbc..6651f3b5 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -1,6 +1,6 @@ # Component Index -> 172 components exported from carbon-components-svelte@0.57.1. +> 172 components exported from carbon-components-svelte@0.58.0. ## Components diff --git a/package.json b/package.json index e7609c78..39dabc7c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "carbon-components-svelte", - "version": "0.57.1", + "version": "0.58.0", "license": "Apache-2.0", "description": "Svelte implementation of the Carbon Design System", "svelte": "./src/index.js", diff --git a/preprocess/api.json b/preprocess/api.json index 2f1ac483..c6297880 100644 --- a/preprocess/api.json +++ b/preprocess/api.json @@ -1,5 +1,5 @@ { - "version": "0.57.1", + "version": "0.58.0", "components": { "Accordion": { "path": "carbon-components-svelte/src/Accordion/Accordion.svelte"