carbon-components-svelte 0.65.2 → 0.66.1
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 +43 -0
- package/lib/index.js +1 -1
- package/lib/index.mjs +640 -493
- package/package.json +1 -1
- package/src/CodeSnippet/CodeSnippet.svelte +6 -7
- package/src/ComposedModal/ComposedModal.svelte +1 -1
- package/src/Pagination/Pagination.svelte +1 -11
- package/src/Select/Select.svelte +48 -11
- package/src/Select/SelectItem.svelte +7 -1
- package/src/Slider/Slider.svelte +11 -1
- package/src/TextInput/PasswordInput.svelte +41 -33
- package/src/TreeView/TreeViewNodeList.svelte +1 -1
- package/src/UIShell/SideNavMenu.svelte +6 -2
- package/types/CodeSnippet/CodeSnippet.svelte.d.ts +1 -1
- package/types/Select/Select.svelte.d.ts +2 -2
- package/types/Select/SelectItem.svelte.d.ts +1 -1
- package/types/Slider/Slider.svelte.d.ts +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,49 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.66.1](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.66.1) - 2022-06-27
|
|
11
|
+
|
|
12
|
+
**Fixes**
|
|
13
|
+
|
|
14
|
+
- support `PasswordInput` invalid state when used in a `FluidForm`
|
|
15
|
+
- remove title attribute from `SideNavMenu` icon
|
|
16
|
+
- remove tabindex attribute from `SideNavMenu` icon
|
|
17
|
+
- override max-height in an expanded `SideNavMenu`
|
|
18
|
+
- fix `ComposedModal` type error where the focus node is possibly `null`
|
|
19
|
+
|
|
20
|
+
**Refactor**
|
|
21
|
+
|
|
22
|
+
- pass required `text` prop from `CodeSnippet` to `CopyButton` to prevent development warning
|
|
23
|
+
|
|
24
|
+
**Documentation**
|
|
25
|
+
|
|
26
|
+
- add `PasswordInput` example "Invalid state"
|
|
27
|
+
- rename `ComboBox` example "Selected id" to "Initial selected id"
|
|
28
|
+
- revise `DatePicker` example "DatePicker in a modal" to prevent iframe from stealing focus
|
|
29
|
+
|
|
30
|
+
## [0.66.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.66.0) - 2022-06-18
|
|
31
|
+
|
|
32
|
+
**Features**
|
|
33
|
+
|
|
34
|
+
- add `fullWidth` prop to `Slider`
|
|
35
|
+
- support number type for `selected` prop in `Select`
|
|
36
|
+
|
|
37
|
+
**Fixes**
|
|
38
|
+
|
|
39
|
+
- only dispatch "change" in `Select` if `selected` value has changed
|
|
40
|
+
- use first `SelectItem` value as default `selected` value in `Select` if `undefined`
|
|
41
|
+
|
|
42
|
+
**Documentation**
|
|
43
|
+
|
|
44
|
+
- add `Slider` example "Full width"
|
|
45
|
+
- revise `Select` example "Default" to demo usage without `selected` prop
|
|
46
|
+
|
|
47
|
+
## [0.65.3](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.65.3) - 2022-06-15
|
|
48
|
+
|
|
49
|
+
**Fixes**
|
|
50
|
+
|
|
51
|
+
- fix `TreeView` type error when keyboard navigating an expanded node
|
|
52
|
+
|
|
10
53
|
## [0.65.2](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.65.2) - 2022-06-12
|
|
11
54
|
|
|
12
55
|
**Fixes**
|