mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
v0.55.0
This commit is contained in:
parent
25ce57fd5a
commit
ced7a25880
4 changed files with 33 additions and 3 deletions
24
CHANGELOG.md
24
CHANGELOG.md
|
@ -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**
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue