From 566d64c9705d745cfd552094aa0067830046f516 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Tue, 7 Jun 2022 08:03:16 -0700 Subject: [PATCH] v0.65.0 --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ COMPONENT_INDEX.md | 2 +- package.json | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2099466b..a74f73e1 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.65.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.65.0) - 2022-06-07 + +**Breaking Changes** + +- mark array-type props as read-only + +**Features** + +- add `sortKey`, `sortDirection` props to `DataTable` for programmatic sorting +- forward `paste` event to `ComboBox`, `DatePicker`, `MultiSelect`, `NumberInput`, `Search`, `TextArea`, `TextInput`, `PasswordInput`, `TimePicker`, `HeaderSearch` +- support disabled items in `Dropdown`, `MultiSelect`, `ComboBox` + +**Fixes** + +- do not overwrite `cells` property in `rows` object in `DataTable` +- correctly toggle the body class if using nested modals +- remove useless `inline` prop from `Dropdown` +- remove redundant `Dropdown` list box role and id +- add missing `role="option"` and `aria-selected` attributes to `ListBoxMenuItem` + +**Refactor** + +- set alert `Modal` attributes in markup instead of script + +**Documentation** + +- add `DataTable` example "Programmatic sorting" +- add `Modal` example "Has scrolling content" +- add `Modal` example "Custom focus" +- add `Dropdown` example "Disabled items" +- add `MultiSelect` example "Disabled items" +- add `ComboBox` example "Disabled items" + ## [0.64.3](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.64.3) - 2022-05-29 **Fixes** diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index 2ee61315..1fe42f27 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -1,6 +1,6 @@ # Component Index -> 165 components exported from carbon-components-svelte@0.64.3. +> 165 components exported from carbon-components-svelte@0.65.0. ## Components diff --git a/package.json b/package.json index 811eee3f..f3b21aa4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "carbon-components-svelte", - "version": "0.64.3", + "version": "0.65.0", "license": "Apache-2.0", "description": "Svelte implementation of the Carbon Design System", "svelte": "./src/index.js",