carbon-components-svelte 0.70.0 → 0.70.3
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 +21 -0
- package/README.md +1 -1
- package/lib/index.js +1 -1
- package/lib/index.mjs +100 -48
- package/package.json +13 -13
- package/src/ComboBox/ComboBox.svelte +5 -1
- package/src/DatePicker/DatePicker.svelte +5 -0
- package/src/Dropdown/Dropdown.svelte +3 -1
- package/src/ListBox/ListBoxMenuItem.svelte +5 -1
- package/src/MultiSelect/MultiSelect.svelte +2 -0
- package/src/UIShell/Content.svelte +11 -2
- package/src/UIShell/SideNav.svelte +6 -1
- package/src/UIShell/navStore.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.70.3](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.70.3) - 2022-08-31
|
|
11
|
+
|
|
12
|
+
**Fixes**
|
|
13
|
+
|
|
14
|
+
- close menu in `Dropdown`, `MultiSelect` when pressing "Escape"
|
|
15
|
+
- prevent default behavior in `ComboBox` when pressing "Enter," "ArrowUp," or "ArrowDown"
|
|
16
|
+
- scroll item into view when keyboard navigating `Dropdown`, `ComboBox`, `MultiSelect`
|
|
17
|
+
|
|
18
|
+
## [0.70.2](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.70.2) - 2022-08-29
|
|
19
|
+
|
|
20
|
+
**Fixes**
|
|
21
|
+
|
|
22
|
+
- allow `$$restProps.style` to be correctly set on `Content`
|
|
23
|
+
|
|
24
|
+
## [0.70.1](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.70.1) - 2022-08-23
|
|
25
|
+
|
|
26
|
+
**Fixes**
|
|
27
|
+
|
|
28
|
+
- do not unset `Content` left margin for rail `SideNav`
|
|
29
|
+
- set `role`, `aria-label` attributes on `DatePicker` calendar container
|
|
30
|
+
|
|
10
31
|
## [0.70.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.70.0) - 2022-08-18
|
|
11
32
|
|
|
12
33
|
**Features**
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Design systems facilitate design and development through reuse, consistency, and
|
|
|
11
11
|
The Carbon Svelte portfolio also includes:
|
|
12
12
|
|
|
13
13
|
- **[Carbon Icons Svelte](https://github.com/carbon-design-system/carbon-icons-svelte)**: 1900+ Carbon icons as Svelte components
|
|
14
|
-
- **[Carbon Pictograms Svelte](https://github.com/carbon-design-system/carbon-pictograms-svelte)**:
|
|
14
|
+
- **[Carbon Pictograms Svelte](https://github.com/carbon-design-system/carbon-pictograms-svelte)**: 900+ Carbon pictograms as Svelte components
|
|
15
15
|
- **[Carbon Charts Svelte](https://github.com/carbon-design-system/carbon-charts/tree/master/packages/svelte)**: 20+ charts, powered by d3
|
|
16
16
|
- **[Carbon Preprocess Svelte](https://github.com/carbon-design-system/carbon-preprocess-svelte)**: Collection of Svelte preprocessors for Carbon
|
|
17
17
|
|