This commit is contained in:
Eric Liu 2022-01-22 09:16:05 -08:00
commit ced7a25880
4 changed files with 33 additions and 3 deletions

View file

@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- ## Unreleased -->
## [0.55.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.55.0) - 2022-01-22
**Features**
- forward `focus`, `blur` events to `NumberInput`
- update `ProgressStep` icons for current, incomplete steps
- type `id` as `any` instead of `string` in `ComboBox`, `Dropdown`, `MultiSelect`
**Fixes**
- do not coerce empty value to `0` in `NumberInput` if `allowEmpty` is true
- label `Slider` input if `aria-label` not explicitly defined
- add missing `required` prop to `RadioButton`
- add missing `required` prop to `Checkbox`
- include `@default undefined` annotations for props that are `undefined` by default
**Refactor**
- remove hotfix in `DatePicker` to prevent disabled icon from being clickable
**Housekeeping**
- upgrade `carbon-components` to v10.51.0
## [0.54.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.54.0) - 2022-01-19
**Features**

View file

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

View file

@ -1,6 +1,6 @@
{
"name": "carbon-components-svelte",
"version": "0.54.0",
"version": "0.55.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.54.0",
"version": "0.55.0",
"components": {
"Accordion": {
"path": "carbon-components-svelte/src/Accordion/Accordion.svelte"
@ -244,6 +244,9 @@
"ChevronRight16": {
"path": "carbon-components-svelte/src/icons/ChevronRight16.svelte"
},
"CircleDash16": {
"path": "carbon-components-svelte/src/icons/CircleDash16.svelte"
},
"Close16": {
"path": "carbon-components-svelte/src/icons/Close16.svelte"
},
@ -262,6 +265,9 @@
"ErrorFilled20": {
"path": "carbon-components-svelte/src/icons/ErrorFilled20.svelte"
},
"Incomplete16": {
"path": "carbon-components-svelte/src/icons/Incomplete16.svelte"
},
"Information16": {
"path": "carbon-components-svelte/src/icons/Information16.svelte"
},