@carbon/charts-vue 1.9.0-next.0 → 1.9.0-next.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/README.md CHANGED
@@ -1,11 +1,9 @@
1
1
  # Carbon Charts Vue
2
2
 
3
- Carbon Charts Vue is a thin Vue.js wrapper around the vanilla JavScript `@carbon/charts` component library. The charts are based on D3.js, a peer dependency.
3
+ Carbon Charts Vue is a thin Vue.js wrapper around the vanilla JavScript `@carbon/charts` component library. The charts are based on D3.js, a peer dependency. This version is for Vue.js ^2.7.0. For Vue.js 3.x support, check for the availability of `@carbon/charts-vue@next`.
4
4
 
5
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.
6
6
 
7
- > Notice: This version relies on **Carbon v11**. If you're using Carbon v10, [see the legacy demo site](https://carbon-charts-0x.netlify.app)
8
-
9
7
  **[Storybook demos](https://carbon-design-system.github.io/carbon-charts/vue)**
10
8
 
11
9
  **[Storybook demo sources](https://github.com/carbon-design-system/carbon-charts/tree/master/packages/core/demo/data)**
@@ -19,27 +17,25 @@ This component library is community-maintained.
19
17
  Run the following command using [npm](https://www.npmjs.com/):
20
18
 
21
19
  ```bash
22
- npm install -S @carbon/charts-vue @carbon/styles d3
20
+ npm install -S @carbon/charts-vue @carbon/styles d3 d3-cloud d3-sankey
23
21
  ```
24
22
 
25
23
  If you prefer [Yarn](https://yarnpkg.com/en/), use the following command
26
24
  instead:
27
25
 
28
26
  ```bash
29
- yarn add @carbon/charts-vue @carbon/styles d3
27
+ yarn add @carbon/charts-vue @carbon/styles d3 d3-cloud d3-sankey
30
28
  ```
31
29
 
32
- **Note:** you'd also need to install `carbon-components` if you're not using a bundled version of the library.
33
-
34
30
  ## Step-by-step instructions
35
31
 
36
32
  Read [here](https://carbon-design-system.github.io/carbon-charts/?path=/story/docs-getting-started--vue)
37
33
 
38
- ## CodeSandbox examples
34
+ ## StackBlitz examples
39
35
 
40
36
  [Sample use cases can be seen here](https://carbon-design-system.github.io/carbon-charts/vue).
41
37
 
42
- **When opening the link above**, click on the **Edit on CodeSandbox** button for each demo to see an isolated project showing you how to reproduce the demo.
38
+ **When opening the link above**, click on the **Edit on StackBlitz** button for each demo to see an isolated project showing you how to reproduce the demo.
43
39
 
44
40
  ## Charting data & options
45
41