carbon-components-svelte 0.47.3 → 0.47.4
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 +6 -0
- package/README.md +1 -1
- package/lib/index.js +1 -1
- package/lib/index.mjs +1 -1
- package/package.json +1 -1
- package/preprocess/api.json +2 -2
- package/src/DataTable/DataTable.svelte +1 -1
- package/types/.DS_Store +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
<!-- ## Unreleased -->
|
|
9
9
|
|
|
10
|
+
## [0.47.4](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.47.4) - 2021-11-06
|
|
11
|
+
|
|
12
|
+
**Fixes**
|
|
13
|
+
|
|
14
|
+
- Only dispatch `click:row--expand` when clicking an expandable `DataTable` row chevron
|
|
15
|
+
|
|
10
16
|
## [0.47.3](https://github.com/carbon-design-system/carbon-components-svelte/releases/tag/v0.47.3) - 2021-10-22
|
|
11
17
|
|
|
12
18
|
**Fixes**
|
package/README.md
CHANGED
|
@@ -212,7 +212,7 @@ The preprocessor optimizes imports from the following packages:
|
|
|
212
212
|
- import { Button } from "carbon-components-svelte";
|
|
213
213
|
- import { Add16 } from "carbon-icons-svelte";
|
|
214
214
|
- import { Airplane } from "carbon-pictograms-svelte";
|
|
215
|
-
+ import Button from "carbon-components-svelte/Button/Button.svelte";
|
|
215
|
+
+ import Button from "carbon-components-svelte/src/Button/Button.svelte";
|
|
216
216
|
+ import Add16 from "carbon-icons-svelte/lib/Add16/Add16.svelte";
|
|
217
217
|
+ import Airplane from "carbon-pictograms-svelte/lib/Airplane/Airplane.svelte";
|
|
218
218
|
```
|