@carbon/charts-vue 1.11.20 → 1.12.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 +26 -0
- package/README.md +3 -3
- package/dist/styles.css +4249 -781
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/package.json +15 -15
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.12.0 (2023-09-05)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **scss:** Optimized SCSS to remove need to separately load @carbon/styles
|
|
11
|
+
([#1652](https://github.com/carbon-design-system/carbon-charts/issues/1652))
|
|
12
|
+
([d970944](https://github.com/carbon-design-system/carbon-charts/commit/d970944e49da6f0ca5cc4f290be9b2895e521e7d))
|
|
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.11.21 (2023-08-14)
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
- **umd:** Issue 1646 - change process.env.NODE_ENV to string
|
|
24
|
+
([#1649](https://github.com/carbon-design-system/carbon-charts/issues/1649))
|
|
25
|
+
([8e11271](https://github.com/carbon-design-system/carbon-charts/commit/8e11271903e92b54aa71c5fabc6ea21103fc5d91))
|
|
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.20 (2023-08-10)
|
|
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
|
|
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
|
|
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
|
|
27
|
+
yarn add @carbon/charts-vue d3 d3-cloud d3-sankey
|
|
28
28
|
```
|
|
29
29
|
|
|
30
30
|
## Step-by-step instructions
|