carbon-components-svelte 0.64.0 → 0.64.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 +16 -0
- package/lib/index.js +1 -1
- package/lib/index.mjs +20 -42
- package/package.json +2 -2
- package/src/ComposedModal/ModalHeader.svelte +5 -2
- package/src/CopyButton/CopyButton.svelte +1 -1
- package/src/Dropdown/Dropdown.svelte +1 -1
- package/src/Modal/Modal.svelte +2 -12
- package/src/Theme/Theme.svelte +1 -1
- package/types/CopyButton/CopyButton.svelte.d.ts +1 -1
- package/types/Dropdown/Dropdown.svelte.d.ts +1 -1
- package/types/Theme/Theme.svelte.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.64.1](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.64.1) - 2022-05-23
|
|
11
|
+
|
|
12
|
+
**Fixes**
|
|
13
|
+
|
|
14
|
+
- mark `CopyButton` text prop as required
|
|
15
|
+
- mark `Dropdown` selectedId prop as required
|
|
16
|
+
- use `@see` tag in `Theme` tokens prop description
|
|
17
|
+
- remove `title` attribute from `Modal`, `ModalHeader` close button
|
|
18
|
+
- remove redundant `aria-label` from `Modal` close button icon
|
|
19
|
+
- add `aria-hidden="true"` to `Modal`, `ModalHeader` close button icon
|
|
20
|
+
|
|
21
|
+
**Documentation**
|
|
22
|
+
|
|
23
|
+
- update `Theme` docs to specify that it must be used with `all.css`
|
|
24
|
+
- update `DataTable` docs to note that custom widths do not work with `stickyHeader`
|
|
25
|
+
|
|
10
26
|
## [0.64.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.64.0) - 2022-05-14
|
|
11
27
|
|
|
12
28
|
**Breaking Changes**
|