carbon-components-svelte 0.52.0 → 0.53.0
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 +12 -1
- package/lib/index.js +1 -1
- package/lib/index.mjs +307 -318
- package/package.json +1 -1
- package/preprocess/api.json +1 -1
- package/src/ComboBox/ComboBox.svelte +31 -39
- package/src/Dropdown/Dropdown.svelte +26 -14
- package/types/ComboBox/ComboBox.svelte.d.ts +3 -8
- package/types/Dropdown/Dropdown.svelte.d.ts +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.53.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.53.0) - 2022-01-18
|
|
11
|
+
|
|
12
|
+
**Breaking Changes**
|
|
13
|
+
|
|
14
|
+
- replace `selectedIndex` with `selectedId` in `Dropdown`
|
|
15
|
+
- replace `selectedIndex` with `selectedId` in `ComboBox`
|
|
16
|
+
|
|
17
|
+
**Fixes**
|
|
18
|
+
|
|
19
|
+
- prevent `Dropdown` icon from being clickable when disabled
|
|
20
|
+
|
|
10
21
|
## [0.52.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.52.0) - 2022-01-17
|
|
11
22
|
|
|
12
23
|
**Features**
|
|
@@ -22,7 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
22
33
|
- restore explicit typing of `null | HTMLElement` for TypeScript strict mode
|
|
23
34
|
- dispatch `click:button--primary` in `Modal` if `shouldSubmitOnEnter` is true
|
|
24
35
|
|
|
25
|
-
|
|
36
|
+
**Documentation**
|
|
26
37
|
|
|
27
38
|
- simplify reactive `RadioButton` example
|
|
28
39
|
- add reactive `Select` example for `Select`
|