carbon-components-svelte 0.57.0 → 0.58.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,61 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  <!-- ## Unreleased -->
9
9
 
10
+ ## [0.58.2](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.58.2) - 2022-02-12
11
+
12
+ **Fixes**
13
+
14
+ - `Tooltip` `aria-label` should use `iconDescription` if `triggerText` is falsy
15
+ - `OverflowMenu` keyboard navigation should skip disabled items
16
+ - UI Shell `HeaderPanelDivider` should use `hr` element to represent divider
17
+ - `Button` should not set `aria-pressed` on icon-only, link buttons
18
+
19
+ ## [0.58.1](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.58.1) - 2022-02-11
20
+
21
+ **Fixes**
22
+
23
+ - remove whitespace from `pre` tag in `CodeSnippet` (Svelte v3.46.4 preserves `pre` whitespace by default)
24
+
25
+ ## [0.58.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.58.0) - 2022-02-11
26
+
27
+ **Breaking Changes**
28
+
29
+ - if `TextInput` is `type="number"`, value can be a `number` or `null` to signify "no value"
30
+ - `TextInput` dispatches instead of forwards `input`, `change` events (detail: `null | number | string`)
31
+
32
+ **Features**
33
+
34
+ - pass `rowIndex`, `cellIndex` to `DataTable` "cell" slot
35
+ - add `itemToInput` prop to `MultiSelect` to customize name, title, labelText values
36
+ - add `open` prop to `TooltipDefinition`; dispatch `open`, `close` events
37
+
38
+ **Fixes**
39
+
40
+ - `DataTable` headers should be reactive
41
+ - `DataTable` batch selection checkbox should be reactive
42
+ - `MultiSelect` should correctly lose focus
43
+ - non-filterable `MultiSelect` should dispatch a `blur` event
44
+ - resolve `MultiSelect` accessibility issues
45
+ - toggle `HeaderNavMenu` when pressing "Enter" or "Space"
46
+ - close `HeaderNavMenu` menu when pressing "Enter" on an item
47
+ - resolve `HeaderNavMenu` accessibility issues
48
+ - fix `TextInput` reactivity by using native `bind:value`
49
+
50
+ **Documentation**
51
+
52
+ - remove duplicate "Heading variant" example
53
+
54
+ **Housekeeping**
55
+
56
+ - upgrade `carbon-components` to v10.52.0
57
+
58
+ ## [0.57.1](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.57.1) - 2022-02-01
59
+
60
+ **Fixes**
61
+
62
+ - `Tooltip` definition is missing open, close events
63
+ - `TooltipDefinition` button should have `type="button"`
64
+
10
65
  ## [0.57.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.57.0) - 2022-01-30
11
66
 
12
67
  **Breaking Changes**