carbon-components-svelte 0.67.4 → 0.67.7
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 +23 -0
- package/README.md +0 -2
- package/lib/index.js +1 -1
- package/lib/index.mjs +341 -295
- package/package.json +1 -1
- package/src/ComboBox/ComboBox.svelte +12 -6
- package/src/DatePicker/DatePickerInput.svelte +2 -1
- package/src/Notification/NotificationButton.svelte +3 -1
- package/src/Notification/NotificationIcon.svelte +3 -1
- package/src/NumberInput/NumberInput.svelte +2 -0
- package/src/TextInput/TextInput.svelte +2 -1
- package/src/UIShell/Content.svelte +8 -1
- package/src/UIShell/SideNav.svelte +2 -1
- package/src/UIShell/navStore.js +2 -0
- package/types/NumberInput/NumberInput.svelte.d.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.67.7](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.67.7) - 2022-8-07
|
|
11
|
+
|
|
12
|
+
**Fixes**
|
|
13
|
+
|
|
14
|
+
- remove UI Shell `Content` left margin if `SideNav` is collapsed
|
|
15
|
+
|
|
16
|
+
## [0.67.6](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.67.6) - 2022-8-05
|
|
17
|
+
|
|
18
|
+
**Refactor**
|
|
19
|
+
|
|
20
|
+
- use class directive in `TextInput`, `DatePickerInput`
|
|
21
|
+
|
|
22
|
+
**Fixes**
|
|
23
|
+
|
|
24
|
+
- avoid dynamic class names in `NotificationButton`, `NotificationIcon`
|
|
25
|
+
- forward keydown, keyup events to `NumberInput`
|
|
26
|
+
|
|
27
|
+
## [0.67.5](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.67.5) - 2022-8-04
|
|
28
|
+
|
|
29
|
+
**Fixes**
|
|
30
|
+
|
|
31
|
+
- correctly select a `ComboBox` item when pressing "Enter"
|
|
32
|
+
|
|
10
33
|
## [0.67.4](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.67.4) - 2022-07-26
|
|
11
34
|
|
|
12
35
|
**Fixes**
|
package/README.md
CHANGED
|
@@ -225,8 +225,6 @@ export default {
|
|
|
225
225
|
## Examples
|
|
226
226
|
|
|
227
227
|
- [examples/rollup](examples/rollup/)
|
|
228
|
-
- [examples/sapper](examples/sapper/)
|
|
229
|
-
- [examples/snowpack](examples/snowpack/)
|
|
230
228
|
- [examples/sveltekit](examples/sveltekit/)
|
|
231
229
|
- [examples/vite](examples/vite/)
|
|
232
230
|
- [examples/webpack](examples/webpack/)
|