carbon-components-svelte 0.66.2 → 0.67.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 +20 -0
- package/README.md +2 -0
- package/lib/index.js +1 -1
- package/lib/index.mjs +6 -0
- package/package.json +1 -1
- package/src/UIShell/SideNav.svelte +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.67.1](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.67.1) - 2022-07-12
|
|
11
|
+
|
|
12
|
+
**Fixes**
|
|
13
|
+
|
|
14
|
+
- set a high `z-index` on the `SideNav` overlay to avoid it being covered by other elements
|
|
15
|
+
|
|
16
|
+
## [0.67.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.67.0) - 2022-06-29
|
|
17
|
+
|
|
18
|
+
**Breaking Changes**
|
|
19
|
+
|
|
20
|
+
Svelte version >=3.48.0 is required.
|
|
21
|
+
|
|
22
|
+
- re-revert [924b6d35](924b6d352eebf5c82da63f0ead450dc59e80ca30) to allow close event in `ToastNotification`, `InlineNotification` to be cancellable
|
|
23
|
+
|
|
24
|
+
## [0.66.3](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.66.3) - 2022-06-29
|
|
25
|
+
|
|
26
|
+
**Fixes**
|
|
27
|
+
|
|
28
|
+
- revert [924b6d35](924b6d352eebf5c82da63f0ead450dc59e80ca30) and re-publish since v0.66.2 contains breaking changes
|
|
29
|
+
|
|
10
30
|
## [0.66.2](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.66.2) - 2022-06-29
|
|
11
31
|
|
|
12
32
|
**Fixes**
|
package/README.md
CHANGED