@mozaic-ds/chart 0.1.0-beta.37 → 0.1.0-beta.39
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 +85 -9
- package/dist/mozaic-chart.js +2188 -2158
- package/dist/mozaic-chart.umd.cjs +10 -10
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/bar/BarChart.vue +15 -2
- package/src/components/bubble/BubbleChart.vue +28 -3
- package/src/services/BarChartFunctions.ts +6 -2
- package/src/services/ChartsCommonLegend.ts +10 -6
package/README.md
CHANGED
|
@@ -1,16 +1,92 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img alt="ADEO Design system - Chart library" src="./.storybook/assets/adeo-design-system-chart-banner.svg" />
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
<h1 align="center">
|
|
6
|
+
ADEO Design system - Chart (community)
|
|
7
|
+
</h1>
|
|
4
8
|
|
|
5
|
-
|
|
9
|
+
<p align="center">
|
|
10
|
+
A library of <a href="https://vuejs.org">Vue.js</a> components on top of Chartjs implementing ADEO Design system guidelines.
|
|
11
|
+
</p>
|
|
6
12
|
|
|
7
|
-
|
|
13
|
+
<p align="center">
|
|
14
|
+
<a href="https://www.npmjs.com/package/@mozaic-ds/chart/v/beta">
|
|
15
|
+
<img src="https://img.shields.io/npm/v/@mozaic-ds/chart/beta?label=NPM&logo=npm&color=yellow" alt="npm version">
|
|
16
|
+
</a>
|
|
17
|
+
<a href="https://github.com/adeo/mozaic-chart/blob/main/CONTRIBUTING.md">
|
|
18
|
+
<img src="https://img.shields.io/badge/PRs-welcome-blue.svg?logo=github" alt="PRs welcome" />
|
|
19
|
+
</a>
|
|
20
|
+
<a href="https://app.slack.com/client/T4R6RCZFA/C04DE3DN8LD">
|
|
21
|
+
<img src="https://img.shields.io/badge/Slack-mozaic_chart-611f69.svg?logo=slack" alt="Slack mozaic-chart" />
|
|
22
|
+
</a>
|
|
23
|
+
<a href="https://keys.adeo.com/keys/ls/space/2583429798460717/adeo-adeo-design-system">
|
|
24
|
+
<img src="https://img.shields.io/badge/KEYS-Adeo_Design_System-4526ce.svg" alt="KEYS ADEO Design system" />
|
|
25
|
+
</a>
|
|
26
|
+
</p>
|
|
8
27
|
|
|
9
|
-
##
|
|
28
|
+
## 🎨 Getting started
|
|
10
29
|
|
|
11
|
-
|
|
30
|
+
**ADEO Design system** is a global and collaborative design system that facilitates the designer and developer experience, enabling them to create universal interfaces perfectly aligned with the business strategy of [Adeo](https://www.adeo.com/).
|
|
12
31
|
|
|
13
|
-
|
|
14
|
-
2. Reload the VS Code window by running `Developer: Reload Window` from the command palette.
|
|
32
|
+
## 📦 Install
|
|
15
33
|
|
|
16
|
-
|
|
34
|
+
To install the Chart library in your project, you will need to run the following command using `npm`:
|
|
35
|
+
|
|
36
|
+
```shell
|
|
37
|
+
npm i @mozaic-ds/chart
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Or with **Yarn**:
|
|
41
|
+
|
|
42
|
+
```shell
|
|
43
|
+
yarn add @mozaic-ds/chart
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## 📝 Usage
|
|
47
|
+
|
|
48
|
+
Find the complete list of [our components](https://github.com/adeo/mozaic-chart/tree/next/src/components).
|
|
49
|
+
|
|
50
|
+
And all the available components are showcased in our [Storybook](http://adeo.github.io/mozaic-chart).
|
|
51
|
+
|
|
52
|
+
## 📰 Changelog
|
|
53
|
+
|
|
54
|
+
Releases are managed with **GitHub Releases**, including the changelog for each one.<br/>
|
|
55
|
+
Access to the [Changelog](/CHANGELOG.md) to find out about the detailed changes to each release.
|
|
56
|
+
|
|
57
|
+
## 📣 Stay in touch
|
|
58
|
+
|
|
59
|
+
- Join the [#mozaic-chart](https://app.slack.com/client/T4R6RCZFA/CN4K3A99R/) channel on **Slack**
|
|
60
|
+
- Join the [#mozaic-support](https://app.slack.com/client/T4R6RCZFA/CKQJZL7C4/) channel on **Slack**
|
|
61
|
+
- Follow our [KEYS page](https://keys.adeo.com/keys/ls/space/2583429798460717/adeo-adeo-design-system)
|
|
62
|
+
|
|
63
|
+
## 🐞 Bugs and feature requests
|
|
64
|
+
|
|
65
|
+
Have a bug or a feature request?<br/>
|
|
66
|
+
Please [open an issue](https://github.com/adeo/mozaic-chart/issues/new/choose) and use the template associated with your request.
|
|
67
|
+
|
|
68
|
+
However, if you are able to contribute and fix bugs, build new features, or help to improve the project documentation, feel free to do it! _(more information below)_
|
|
69
|
+
|
|
70
|
+
## ✍️ Contributing
|
|
71
|
+
|
|
72
|
+
Setup the project to start contributing.
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
// Clone the repo
|
|
76
|
+
$ git clone git@github.com:adeo/mozaic-chart.git
|
|
77
|
+
|
|
78
|
+
// Go to the cloned directory
|
|
79
|
+
$ cd mozaic-chart
|
|
80
|
+
|
|
81
|
+
// Checkout the branch you are working on
|
|
82
|
+
$ git checkout <branch name>
|
|
83
|
+
|
|
84
|
+
// Install dependencies
|
|
85
|
+
$ npm install
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
We're always looking for contributors to help us fix bugs, build features, or help us improve the documentation. If you're intersted check out our [Code of Conduct](CODE_OF_CONDUCT.md) and [Contribution Guide](CONTRIBUTING.md).
|
|
89
|
+
|
|
90
|
+
## 📄 Licensing
|
|
91
|
+
|
|
92
|
+
This project is licensed under the MIT License. See [LICENSE](LICENSE) for more information.
|