carbon-components-svelte 0.63.7 → 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 +48 -0
- package/lib/index.js +1 -1
- package/lib/index.mjs +407 -375
- package/package.json +2 -2
- package/src/CodeSnippet/CodeSnippet.svelte +7 -1
- package/src/ComposedModal/ModalHeader.svelte +5 -2
- package/src/CopyButton/CopyButton.svelte +1 -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 +1 -1
- package/src/Modal/Modal.svelte +2 -12
- package/src/Theme/Theme.svelte +1 -1
- 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 +2 -2
- 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 +1 -1
- 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/Theme/Theme.svelte.d.ts +1 -1
- package/types/UIShell/HeaderAction.svelte.d.ts +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,54 @@ 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
|
+
|
|
26
|
+
## [0.64.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.64.0) - 2022-05-14
|
|
27
|
+
|
|
28
|
+
**Breaking Changes**
|
|
29
|
+
|
|
30
|
+
- set `flatpickrProps.static` in `DatePicker` to be true by default
|
|
31
|
+
- use data attribute instead of id for `DataTable` headers/rows
|
|
32
|
+
|
|
33
|
+
**Features**
|
|
34
|
+
|
|
35
|
+
- support custom column widths in `DataTable`
|
|
36
|
+
- dispatch "expand" and "collapse" events in `CodeSnippet`
|
|
37
|
+
|
|
38
|
+
**Fixes**
|
|
39
|
+
|
|
40
|
+
- use `@see` tag for flatpickr options link in `DatePicker`
|
|
41
|
+
- pressing "Enter" in `DatePicker` should update the value
|
|
42
|
+
- dispatched event type without detail should be `null`, not `any`
|
|
43
|
+
- type missing "open" event in `HeaderAction`
|
|
44
|
+
- use small button in multi-line `CodeSnippet`
|
|
45
|
+
|
|
46
|
+
**Documentation**
|
|
47
|
+
|
|
48
|
+
- make calendar variants of `DatePicker` more prominent
|
|
49
|
+
- add `DataTable` example "Custom column widths"
|
|
50
|
+
- add `CodeSnippet` examples "Expanded by default" and "Reactive example"
|
|
51
|
+
|
|
52
|
+
## [0.63.8](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.63.8) - 2022-05-07
|
|
53
|
+
|
|
54
|
+
**Fixes**
|
|
55
|
+
|
|
56
|
+
- elevate `Toolbar` z-index so overflow menu is not clipped by the table
|
|
57
|
+
|
|
10
58
|
## [0.63.7](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.63.7) - 2022-05-04
|
|
11
59
|
|
|
12
60
|
**Fixes**
|