carbon-components-svelte 0.63.6 → 0.64.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 +38 -0
- package/lib/index.js +1 -1
- package/lib/index.mjs +399 -345
- package/package.json +2 -2
- package/src/CodeSnippet/CodeSnippet.svelte +7 -1
- package/src/DataTable/DataTable.svelte +19 -3
- package/src/DataTable/Table.svelte +8 -0
- package/src/DataTable/TableHeader.svelte +2 -2
- package/src/DataTable/Toolbar.svelte +1 -0
- package/src/DatePicker/DatePicker.svelte +6 -11
- package/src/Dropdown/Dropdown.svelte +3 -2
- package/src/UIShell/HeaderAction.svelte +5 -0
- package/types/CodeSnippet/CodeSnippet.svelte.d.ts +3 -1
- package/types/ComposedModal/ComposedModal.svelte.d.ts +4 -4
- package/types/ContextMenu/ContextMenu.svelte.d.ts +1 -1
- package/types/ContextMenu/ContextMenuOption.svelte.d.ts +1 -1
- package/types/CopyButton/CopyButton.svelte.d.ts +1 -1
- package/types/DataTable/DataTable.svelte.d.ts +4 -0
- package/types/DataTable/Table.svelte.d.ts +6 -0
- package/types/DatePicker/DatePicker.svelte.d.ts +3 -3
- package/types/Dropdown/Dropdown.svelte.d.ts +5 -2
- package/types/InlineLoading/InlineLoading.svelte.d.ts +1 -1
- package/types/Modal/Modal.svelte.d.ts +4 -4
- package/types/Popover/Popover.svelte.d.ts +1 -1
- package/types/Search/Search.svelte.d.ts +1 -1
- package/types/Tag/Tag.svelte.d.ts +1 -1
- package/types/UIShell/HeaderAction.svelte.d.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.64.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.64.0) - 2022-05-14
|
|
11
|
+
|
|
12
|
+
**Breaking Changes**
|
|
13
|
+
|
|
14
|
+
- set `flatpickrProps.static` in `DatePicker` to be true by default
|
|
15
|
+
- use data attribute instead of id for `DataTable` headers/rows
|
|
16
|
+
|
|
17
|
+
**Features**
|
|
18
|
+
|
|
19
|
+
- support custom column widths in `DataTable`
|
|
20
|
+
- dispatch "expand" and "collapse" events in `CodeSnippet`
|
|
21
|
+
|
|
22
|
+
**Fixes**
|
|
23
|
+
|
|
24
|
+
- use `@see` tag for flatpickr options link in `DatePicker`
|
|
25
|
+
- pressing "Enter" in `DatePicker` should update the value
|
|
26
|
+
- dispatched event type without detail should be `null`, not `any`
|
|
27
|
+
- type missing "open" event in `HeaderAction`
|
|
28
|
+
- use small button in multi-line `CodeSnippet`
|
|
29
|
+
|
|
30
|
+
**Documentation**
|
|
31
|
+
|
|
32
|
+
- make calendar variants of `DatePicker` more prominent
|
|
33
|
+
- add `DataTable` example "Custom column widths"
|
|
34
|
+
- add `CodeSnippet` examples "Expanded by default" and "Reactive example"
|
|
35
|
+
|
|
36
|
+
## [0.63.8](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.63.8) - 2022-05-07
|
|
37
|
+
|
|
38
|
+
**Fixes**
|
|
39
|
+
|
|
40
|
+
- elevate `Toolbar` z-index so overflow menu is not clipped by the table
|
|
41
|
+
|
|
42
|
+
## [0.63.7](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.63.7) - 2022-05-04
|
|
43
|
+
|
|
44
|
+
**Fixes**
|
|
45
|
+
|
|
46
|
+
- strongly type `translateWithId` prop in `Dropdown`
|
|
47
|
+
|
|
10
48
|
## [0.63.6](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.63.6) - 2022-05-04
|
|
11
49
|
|
|
12
50
|
**Fixes**
|