From fbcb14c26852f563f208854e97fe4aeb35f4e42a Mon Sep 17 00:00:00 2001 From: Eric Y Liu Date: Fri, 2 Apr 2021 13:36:14 -0700 Subject: [PATCH] v0.32.0 --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ COMPONENT_INDEX.md | 2 +- package.json | 2 +- preprocess/api.json | 5 ++++- 4 files changed, 43 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3149c76c..7a6fe9cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [0.32.0](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.32.0) - 2021-04-02 + +**Breaking Changes** + +- copy text by default in `CodeSnippet` and `CopyButton` using `clipboard-copy` +- deprecate `light` prop in `ContentSwitcher` + +**Features** + +- support disabled state for `SelectableTile`, `RadioTile` +- add `TooltipFooter` component +- support `OverflowMenu` in Breadcrumbs +- support danger kind for `ContextMenuOption` +- allow sorting to be disabled for a specific header in `DataTable` +- render an empty header column in `DataTableSkeleton` if a value is `{ "empty": true }` +- export `inputRef` prop in `MultiSelect` +- add `searchClass` prop to `Search`, which is passed to the outermost element +- add `noMargin` prop to `FormGroup` to remove default bottom margin (default value is `false`) + +**Fixes** + +- render initial `ContextMenu` position based on viewport constraints +- correctly display invalid text in `TimePicker` +- remove outer div in `ToolbarSearch` +- set hasScrollingContent class on `ModalBody` + +**Documentation** + +- add disabled state examples for `SelectableTile`, `RadioTile` +- add expandable `DataTable` size examples, empty header column `DataTableSkeleton` example +- remove the light `ContentSwitcher` example + +**Housekeeping** + +- upgrade `carbon-components` to version 10.32.0 +- add `clipboard-copy` to direct dependencies + ## [0.31.1](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.31.1) - 2021-03-28 **Fixes** diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md index ffd5e15d..1218f37b 100644 --- a/COMPONENT_INDEX.md +++ b/COMPONENT_INDEX.md @@ -1,6 +1,6 @@ # Component Index -> 167 components exported from carbon-components-svelte@0.31.1. +> 167 components exported from carbon-components-svelte@0.32.0. ## Components diff --git a/package.json b/package.json index 97912cad..0429d5ed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "carbon-components-svelte", - "version": "0.31.1", + "version": "0.32.0", "license": "Apache-2.0", "author": "IBM", "description": "Svelte implementation of the Carbon Design System", diff --git a/preprocess/api.json b/preprocess/api.json index 3b19793f..6b599675 100644 --- a/preprocess/api.json +++ b/preprocess/api.json @@ -1,5 +1,5 @@ { - "version": "0.31.1", + "version": "0.32.0", "components": { "Accordion": { "path": "carbon-components-svelte/src/Accordion/Accordion.svelte" @@ -433,6 +433,9 @@ "Tooltip": { "path": "carbon-components-svelte/src/Tooltip/Tooltip.svelte" }, + "TooltipFooter": { + "path": "carbon-components-svelte/src/Tooltip/TooltipFooter.svelte" + }, "TooltipDefinition": { "path": "carbon-components-svelte/src/TooltipDefinition/TooltipDefinition.svelte" },