This commit is contained in:
Eric Liu 2022-01-27 07:31:48 -08:00
commit 6154e8ba05
4 changed files with 21 additions and 3 deletions

View file

@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- ## Unreleased -->
## [0.56.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.56.0) - 2022-01-27
**Breaking Changes**
- type `NumberInput` value as `null | number` instead of `string | number` (`null` signifies "no value")
**Fixes**
- export `readonly` as a prop in `TextArea`
- fix `Checkbox` two-way binding for `checked`, `group` props
**Documentation**
- add `Checkbox` reactive example for `bind:checked`
- update `Checkbox` reactive example for `bind:group` to demo two-way binding
- simplify `Tabs` reactive example
- add `NumberInput` "No value" example
## [0.55.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.55.0) - 2022-01-22
**Features**

View file

@ -1,6 +1,6 @@
# Component Index
> 172 components exported from carbon-components-svelte@0.55.0.
> 172 components exported from carbon-components-svelte@0.56.0.
## Components

View file

@ -1,6 +1,6 @@
{
"name": "carbon-components-svelte",
"version": "0.55.0",
"version": "0.56.0",
"license": "Apache-2.0",
"description": "Svelte implementation of the Carbon Design System",
"svelte": "./src/index.js",

View file

@ -1,5 +1,5 @@
{
"version": "0.55.0",
"version": "0.56.0",
"components": {
"Accordion": {
"path": "carbon-components-svelte/src/Accordion/Accordion.svelte"