This commit is contained in:
Eric Y Liu 2021-06-26 16:48:25 -07:00
commit 7c1e30476a
4 changed files with 29 additions and 3 deletions

View file

@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- ## Unreleased -->
## [0.37.0](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.37.0) - 2021-06-26
**Features**
- add ProgressBar component
**Fixes**
- omit size prop in `ToolbarSearch`
- omit passing iconDescription to `NotificationIcon` in `InlineNotification`, `ToastNotification`
**Refactor**
- use class directive in `TextInput`
**Documentation**
- add ProgressBar component documentation
**Housekeeping**
- upgrade `carbon-components` to version 10.37.0
## [0.36.0](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.36.0) - 2021-06-26
**Features**

View file

@ -1,6 +1,6 @@
# Component Index
> 168 components exported from carbon-components-svelte@0.36.0.
> 168 components exported from carbon-components-svelte@0.37.0.
## Components

View file

@ -1,6 +1,6 @@
{
"name": "carbon-components-svelte",
"version": "0.36.0",
"version": "0.37.0",
"license": "Apache-2.0",
"author": "IBM",
"description": "Svelte implementation of the Carbon Design System",

View file

@ -1,5 +1,5 @@
{
"version": "0.36.0",
"version": "0.37.0",
"components": {
"Accordion": {
"path": "carbon-components-svelte/src/Accordion/Accordion.svelte"
@ -292,6 +292,9 @@
"Popover": {
"path": "carbon-components-svelte/src/Popover/Popover.svelte"
},
"ProgressBar": {
"path": "carbon-components-svelte/src/ProgressBar/ProgressBar.svelte"
},
"ProgressIndicator": {
"path": "carbon-components-svelte/src/ProgressIndicator/ProgressIndicator.svelte"
},