vue-data-ui 2.1.79 → 2.1.80
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 +4 -3
- package/dist/documentation/installation.md +3 -3
- package/dist/{index-6061b65a.js → index-36504bc9.js} +16182 -16135
- package/dist/{index.es-95f20429.js → index.es-5a35ac36.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/types/vue-data-ui.d.ts +4 -0
- package/dist/vue-data-ui.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -278,6 +278,7 @@ The #tooltip-before & #tooltip-after slots also works when using the VueDataUi u
|
|
|
278
278
|
|
|
279
279
|
Available for the following components:
|
|
280
280
|
|
|
281
|
+
- VueUiQuickChart (for line & bar types only)
|
|
281
282
|
- VueUiXy
|
|
282
283
|
- VueUiCandlestick
|
|
283
284
|
|
|
@@ -315,9 +316,9 @@ Type definitions are available in the `vue-data-ui.d.ts` file in the `dist/types
|
|
|
315
316
|
|
|
316
317
|
From the dataset you pass into the props, this component will produce the most adapted chart (either a line, bar or donut chart)
|
|
317
318
|
|
|
318
|
-
| Name | dataset type | config type | emits / exposed methods | slots
|
|
319
|
-
| ----------------- | ------------------------ | ----------------------- | ------------------------------------------------------------------- |
|
|
320
|
-
| `VueUiQuickChart` | `VueUiQuickChartDataset` | `VueUiQuickChartConfig` | `@selectDatapoint`, `@selectLegend`, `generatePdf`, `generateImage` | `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
319
|
+
| Name | dataset type | config type | emits / exposed methods | slots | custom tooltip |
|
|
320
|
+
| ----------------- | ------------------------ | ----------------------- | ------------------------------------------------------------------- | --------------------------------------------------------------- | -------------- |
|
|
321
|
+
| `VueUiQuickChart` | `VueUiQuickChartDataset` | `VueUiQuickChartConfig` | `@selectDatapoint`, `@selectLegend`, `generatePdf`, `generateImage` | `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ |
|
|
321
322
|
|
|
322
323
|
### Mini charts
|
|
323
324
|
|
|
@@ -98,9 +98,9 @@ Type definitions are available in the `vue-data-ui.d.ts` file in the `dist/types
|
|
|
98
98
|
|
|
99
99
|
From the dataset you pass into the props, this component will produce the most adapted chart (either a line, bar or donut chart)
|
|
100
100
|
|
|
101
|
-
| Name | dataset type | config type | emits / exposed methods | slots
|
|
102
|
-
| ----------------- | ------------------------ | ----------------------- | ------------------------------------------------------------------- |
|
|
103
|
-
| `VueUiQuickChart` | `VueUiQuickChartDataset` | `VueUiQuickChartConfig` | `@selectDatapoint`, `@selectLegend`, `generatePdf`, `generateImage` | `#legend`, `#tooltip-before`, `#tooltip-after` | ✅ |
|
|
101
|
+
| Name | dataset type | config type | emits / exposed methods | slots | custom tooltip |
|
|
102
|
+
| ----------------- | ------------------------ | ----------------------- | ------------------------------------------------------------------- | --------------------------------------------------------------- | -------------- |
|
|
103
|
+
| `VueUiQuickChart` | `VueUiQuickChartDataset` | `VueUiQuickChartConfig` | `@selectDatapoint`, `@selectLegend`, `generatePdf`, `generateImage` | `#legend`, `#tooltip-before`, `#tooltip-after`, `#reset-action` | ✅ |
|
|
104
104
|
|
|
105
105
|
### Mini charts
|
|
106
106
|
|