vue-data-ui 2.2.19 → 2.2.21
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 +5 -1
- package/dist/documentation/installation.md +2 -0
- package/dist/{index-ecd61589.js → index-ae0094bf.js} +17527 -16114
- package/dist/{index.es-234f6c95.js → index.es-7df1a42e.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/types/vue-data-ui.d.ts +172 -5
- package/dist/vue-data-ui.js +21 -20
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
# vue-data-ui
|
|
10
10
|
|
|
11
11
|

|
|
12
|
-

|
|
13
13
|
[](https://madewithvuejs.com/p/vue-data-ui/shield-link)
|
|
14
14
|

|
|
15
15
|
[](./LICENSE)
|
|
@@ -51,6 +51,7 @@ Available components
|
|
|
51
51
|
- [VueUiWheel](https://vue-data-ui.graphieros.com/docs#vue-ui-wheel)
|
|
52
52
|
- [VueUiWordCloud](https://vue-data-ui.graphieros.com/docs#vue-ui-word-cloud)
|
|
53
53
|
- [VueUiXy](https://vue-data-ui.graphieros.com/docs#vue-ui-xy)
|
|
54
|
+
- [VueUiXyCanvas](https://vue-data-ui.graphieros.com/docs#vue-ui-xy-canvas)
|
|
54
55
|
|
|
55
56
|
## Mini charts
|
|
56
57
|
|
|
@@ -244,6 +245,7 @@ The following charts bear these slots:
|
|
|
244
245
|
- VueUiVerticalBar
|
|
245
246
|
- VueUiXy \*
|
|
246
247
|
- VueUiwaffle
|
|
248
|
+
- VueUiXyCanvas
|
|
247
249
|
|
|
248
250
|
\* VueUiXy slots specifically expose the following additional attributes:
|
|
249
251
|
|
|
@@ -384,6 +386,7 @@ From the dataset you pass into the props, this component will produce the most a
|
|
|
384
386
|
| `VueUiWheel` | `VueUiWheelDataset` | `VueUiWheelConfig` | `generatePdf`, `generateImage` | `#svg` | ❌ | ✅ |
|
|
385
387
|
| `VueUiWordCloud` | `VueUiWordCloudDatasetItem[] / string` | `VueUiWordCloudConfig` | `getData`, `generatePdf`, `generateImage`, `generateCsv` | `#svg` | ❌ | ✅ |
|
|
386
388
|
| `VueUiXy` | `VueUiXyDatasetItem[]` | `VueUiXyConfig` | `@selectLegend`, `@selectX`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ | ✅ |
|
|
389
|
+
| `VueUiXyCanvas` | `VueUiXyCanvasDatasetItem[]` | `VueUiXyCanvasConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ | ✅ |
|
|
387
390
|
|
|
388
391
|
### 3D charts
|
|
389
392
|
|
|
@@ -460,6 +463,7 @@ It is possible to provide a custom palette in the config prop through config.cus
|
|
|
460
463
|
- VueUiWaffle
|
|
461
464
|
- VueUiWordCloud
|
|
462
465
|
- VueUiXy
|
|
466
|
+
- VueUiXyCanvas
|
|
463
467
|
|
|
464
468
|
If the array of colors provided in customPalette is too small for the dataset, remaining colors will be computed from the default internal palette.
|
|
465
469
|
Accepted color formats: HEX, RGB, HSL, named colors.
|
|
@@ -168,6 +168,7 @@ From the dataset you pass into the props, this component will produce the most a
|
|
|
168
168
|
| `VueUiWheel` | `VueUiWheelDataset` | `VueUiWheelConfig` | `generatePdf`, `generateImage` | `#svg` | ❌ | ✅ |
|
|
169
169
|
| `VueUiWordCloud` | `VueUiWordCloudDatasetItem[] / string` | `VueUiWordCloudConfig` | `getData`, `generatePdf`, `generateImage`, `generateCsv` | `#svg` | ❌ | ✅ |
|
|
170
170
|
| `VueUiXy` | `VueUiXyDatasetItem[]` | `VueUiXyConfig` | `@selectLegend`, `@selectX`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#svg`, `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ | ✅ |
|
|
171
|
+
| `VueUiXyCanvas` | `VueUiXyCanvasDatasetItem[]` | `VueUiXyCanvasConfig` | `@selectLegend`, `getData`, `generatePdf`, `generateCsv`, `generateImage` | `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ | ✅ |
|
|
171
172
|
|
|
172
173
|
### 3D charts
|
|
173
174
|
|
|
@@ -244,6 +245,7 @@ It is possible to provide a custom palette in the config prop through config.cus
|
|
|
244
245
|
- VueUiWaffle
|
|
245
246
|
- VueUiWordCloud
|
|
246
247
|
- VueUiXy
|
|
248
|
+
- VueUiXyCanvas
|
|
247
249
|
|
|
248
250
|
If the array of colors provided in customPalette is too small for the dataset, remaining colors will be computed from the default internal palette.
|
|
249
251
|
Accepted color formats: HEX, RGB, HSL, named colors.
|