@carbon/charts-vue 1.11.21 → 1.13.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 CHANGED
@@ -3,6 +3,32 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 1.13.0 (2023-09-15)
7
+
8
+ ### Features
9
+
10
+ - **exports:** custom fileDownload.fileName function
11
+ ([#1661](https://github.com/carbon-design-system/carbon-charts/issues/1661))
12
+ ([1dc22cc](https://github.com/carbon-design-system/carbon-charts/commit/1dc22cc73cba69d8fd1a06ff761e2f28797157a7))
13
+
14
+ # Change Log
15
+
16
+ All notable changes to this project will be documented in this file. See
17
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
18
+
19
+ # 1.12.0 (2023-09-05)
20
+
21
+ ### Features
22
+
23
+ - **scss:** Optimized SCSS to remove need to separately load @carbon/styles
24
+ ([#1652](https://github.com/carbon-design-system/carbon-charts/issues/1652))
25
+ ([d970944](https://github.com/carbon-design-system/carbon-charts/commit/d970944e49da6f0ca5cc4f290be9b2895e521e7d))
26
+
27
+ # Change Log
28
+
29
+ All notable changes to this project will be documented in this file. See
30
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
31
+
6
32
  ## 1.11.21 (2023-08-14)
7
33
 
8
34
  ### Bug Fixes
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Carbon Charts Vue is a thin Vue.js wrapper around the vanilla JavaScript `@carbon/charts` component library. The charts are based on D3.js, a peer dependency. This version is for Vue.js ^3.3.0. For Vue.js 2.x support, please use `@carbon/charts-vue@latest`.
4
4
 
5
- The required styles should be imported from `@carbon/charts-vue/styles.css` and `@carbon/styles/css/styles.css`. Additional documentation is provided in the Storybook demos.
5
+ The required styles should be imported from `@carbon/charts-vue/styles.css`. Additional documentation is provided in the Storybook demos.
6
6
 
7
7
  **[Storybook demos](https://carbon-design-system.github.io/carbon-charts/vue)**
8
8
 
@@ -17,14 +17,14 @@ This component library is community-maintained.
17
17
  Run the following command using [npm](https://www.npmjs.com/):
18
18
 
19
19
  ```bash
20
- npm install -S @carbon/charts-vue @carbon/styles d3 d3-cloud d3-sankey
20
+ npm install -S @carbon/charts-vue d3 d3-cloud d3-sankey
21
21
  ```
22
22
 
23
23
  If you prefer [Yarn](https://yarnpkg.com/en/), use the following command
24
24
  instead:
25
25
 
26
26
  ```bash
27
- yarn add @carbon/charts-vue @carbon/styles d3 d3-cloud d3-sankey
27
+ yarn add @carbon/charts-vue d3 d3-cloud d3-sankey
28
28
  ```
29
29
 
30
30
  ## Step-by-step instructions