chartjs-chart-sankey 0.14.4 → 0.15.1
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 +8 -4
- package/dist/chartjs-chart-sankey.cjs +398 -109
- package/dist/chartjs-chart-sankey.esm.js +399 -110
- package/dist/chartjs-chart-sankey.min.js +2 -2
- package/dist/controller.d.ts +11 -3
- package/dist/flow.d.ts +15 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.d.ts +1 -1
- package/dist/labels.d.ts +22 -0
- package/dist/lib/core.d.ts +1 -2
- package/dist/lib/layout.d.ts +2 -1
- package/dist/types.d.ts +110 -66
- package/package.json +11 -5
package/README.md
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
[Chart.js](https://www.chartjs.org/) **^3.3** module for creating sankey diagrams
|
|
4
4
|
|
|
5
|
-

|
|
6
|
-
[](https://sonarcloud.io/summary/new_code?id=kurkle_chartjs-chart-sankey)
|
|
7
|
-
[](https://sonarcloud.io/summary/new_code?id=kurkle_chartjs-chart-sankey)
|
|
8
5
|
[](https://www.npmjs.com/package/chartjs-chart-sankey)
|
|
9
|
-
[](https://github.com/kurkle/chartjs-chart-sankey/releases/latest)
|
|
10
7
|

|
|
8
|
+
[](https://sonarcloud.io/summary/new_code?id=kurkle_chartjs-chart-sankey)
|
|
9
|
+
[](https://sonarcloud.io/summary/new_code?id=kurkle_chartjs-chart-sankey)
|
|
10
|
+
[](https://chartjs-chart-sankey.pages.dev)
|
|
11
11
|

|
|
12
12
|
|
|
13
13
|
## Browser support
|
|
@@ -27,6 +27,10 @@ Typescript 3.x and higher is supported.
|
|
|
27
27
|
|
|
28
28
|
## Documentation
|
|
29
29
|
|
|
30
|
+
You can find documentation for chartjs-chart-sankey at [https://chartjs-chart-sankey.pages.dev/](https://chartjs-chart-sankey.pages.dev/).
|
|
31
|
+
|
|
32
|
+
## Integration
|
|
33
|
+
|
|
30
34
|
You can use **chartjs-chart-sankey.js** as ES module. You'll need to manually register two components
|
|
31
35
|
|
|
32
36
|
```js
|