carbon-components-svelte 0.50.4 → 0.51.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 +38 -0
- package/css/g10.css +1 -1
- package/css/g10.scss +6 -5
- package/css/g100.css +1 -1
- package/css/g100.scss +6 -5
- package/css/g80.css +1 -1
- package/css/g80.scss +6 -5
- package/css/g90.css +1 -1
- package/css/g90.scss +6 -5
- package/css/white.scss +6 -5
- package/lib/index.js +1 -1
- package/lib/index.mjs +2869 -801
- package/package.json +7 -8
- package/preprocess/api.json +1 -1
- package/src/Checkbox/Checkbox.svelte +14 -2
- package/src/CodeSnippet/CodeSnippet.svelte +5 -10
- package/src/ComboBox/ComboBox.svelte +44 -23
- package/src/DataTable/ToolbarSearch.svelte +1 -0
- package/src/DatePicker/DatePicker.svelte +9 -2
- package/src/Dropdown/Dropdown.svelte +4 -9
- package/src/MultiSelect/MultiSelect.svelte +10 -9
- package/src/ProgressIndicator/ProgressStep.svelte +1 -2
- package/src/Select/Select.svelte +5 -0
- package/src/TextInput/PasswordInput.svelte +2 -4
- package/src/Tile/TileGroup.svelte +2 -1
- package/src/TreeView/TreeViewNode.svelte +2 -7
- package/src/UIShell/GlobalHeader/Header.svelte +1 -1
- package/types/.DS_Store +0 -0
- package/types/Checkbox/Checkbox.svelte.d.ts +7 -1
- package/types/MultiSelect/MultiSelect.svelte.d.ts +1 -1
- package/types/Select/Select.svelte.d.ts +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.51.2](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.51.2) - 2022-01-10
|
|
11
|
+
|
|
12
|
+
**Fixes**
|
|
13
|
+
|
|
14
|
+
- correctly reset values in `ComboBox` when manually clearing selection
|
|
15
|
+
- fix filterable `ComboBox` keyboard selection
|
|
16
|
+
- remove redundant role attributes from `Dropdown`, `Header` to fix a11y warnings
|
|
17
|
+
- fix `TileGroup` two-way binding on the `selected` prop
|
|
18
|
+
|
|
19
|
+
**Documentation**
|
|
20
|
+
|
|
21
|
+
- document `DatePicker` usage with a Rollup set-up
|
|
22
|
+
- add multiple modals example for `Modal`
|
|
23
|
+
- add reactive examples for `RadioTile`
|
|
24
|
+
|
|
25
|
+
## [0.51.1](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.51.1) - 2022-01-03
|
|
26
|
+
|
|
27
|
+
**Fixes**
|
|
28
|
+
|
|
29
|
+
- add missing `required` prop to `Select`
|
|
30
|
+
- set global theme variable first in SCSS files
|
|
31
|
+
|
|
32
|
+
## [0.51.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.51.0) - 2021-12-30
|
|
33
|
+
|
|
34
|
+
**Features**
|
|
35
|
+
|
|
36
|
+
- enhance `Checkbox` to support `bind:group`
|
|
37
|
+
|
|
38
|
+
## [0.50.5](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.50.5) - 2021-12-30
|
|
39
|
+
|
|
40
|
+
**Fixes**
|
|
41
|
+
|
|
42
|
+
- filterable `MultiSelect` should blur when pressing "Tab"
|
|
43
|
+
- filterable `MultiSelect` menu should close when pressing "Escape"
|
|
44
|
+
- filterable `MultiSelect` menu should open when pressing "Space"
|
|
45
|
+
- `DatePicker` input should not lose focus when pressing "Enter"
|
|
46
|
+
- `ToolbarSearch` should expand if `value` is programmatically set
|
|
47
|
+
|
|
10
48
|
## [0.50.4](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.50.4) - 2021-12-30
|
|
11
49
|
|
|
12
50
|
**Fixes**
|