carbon-components-svelte 0.69.0 → 0.70.2
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 +22 -2
- package/README.md +1 -1
- package/lib/index.js +1 -1
- package/lib/index.mjs +71 -27
- package/package.json +13 -13
- package/src/DataTable/ToolbarSearch.svelte +7 -0
- package/src/DatePicker/DatePicker.svelte +5 -0
- package/src/UIShell/Content.svelte +11 -2
- package/src/UIShell/SideNav.svelte +6 -1
- package/src/UIShell/navStore.js +2 -0
- package/types/DataTable/ToolbarSearch.svelte.d.ts +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,11 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.70.2](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.70.2) - 2022-08-29
|
|
11
|
+
|
|
12
|
+
**Fixes**
|
|
13
|
+
|
|
14
|
+
- allow `$$restProps.style` to be correctly set on `Content`
|
|
15
|
+
|
|
16
|
+
## [0.70.1](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.70.1) - 2022-08-23
|
|
17
|
+
|
|
18
|
+
**Fixes**
|
|
19
|
+
|
|
20
|
+
- do not unset `Content` left margin for rail `SideNav`
|
|
21
|
+
- set `role`, `aria-label` attributes on `DatePicker` calendar container
|
|
22
|
+
|
|
23
|
+
## [0.70.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.70.0) - 2022-08-18
|
|
24
|
+
|
|
25
|
+
**Features**
|
|
26
|
+
|
|
27
|
+
- add `filteredRowIds` prop to `ToolbarSearch` to support pagination
|
|
28
|
+
|
|
10
29
|
## [0.69.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.69.0) - 2022-08-17
|
|
11
30
|
|
|
12
31
|
**Features**
|
|
13
32
|
|
|
14
|
-
- dispatch `on:click:
|
|
33
|
+
- dispatch `on:click:header--select` event in `DataTable`
|
|
34
|
+
- dispatch `on:click:row--select` event in `DataTable`
|
|
15
35
|
|
|
16
36
|
## [0.68.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.68.0) - 2022-08-15
|
|
17
37
|
|
|
@@ -887,7 +907,7 @@ Svelte version >=3.48.0 is required.
|
|
|
887
907
|
|
|
888
908
|
**Features**
|
|
889
909
|
|
|
890
|
-
- add `
|
|
910
|
+
- add `nonExpandableRowIds` prop to `DataTable` to specify rows that should not be expandable
|
|
891
911
|
|
|
892
912
|
## [0.46.0](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.46.0) - 2021-10-17
|
|
893
913
|
|
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Design systems facilitate design and development through reuse, consistency, and
|
|
|
11
11
|
The Carbon Svelte portfolio also includes:
|
|
12
12
|
|
|
13
13
|
- **[Carbon Icons Svelte](https://github.com/carbon-design-system/carbon-icons-svelte)**: 1900+ Carbon icons as Svelte components
|
|
14
|
-
- **[Carbon Pictograms Svelte](https://github.com/carbon-design-system/carbon-pictograms-svelte)**:
|
|
14
|
+
- **[Carbon Pictograms Svelte](https://github.com/carbon-design-system/carbon-pictograms-svelte)**: 900+ Carbon pictograms as Svelte components
|
|
15
15
|
- **[Carbon Charts Svelte](https://github.com/carbon-design-system/carbon-charts/tree/master/packages/svelte)**: 20+ charts, powered by d3
|
|
16
16
|
- **[Carbon Preprocess Svelte](https://github.com/carbon-design-system/carbon-preprocess-svelte)**: Collection of Svelte preprocessors for Carbon
|
|
17
17
|
|