vue-data-ui 2.2.5 → 2.2.7
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 +32 -0
- package/dist/documentation/installation.md +32 -0
- package/dist/{index-7d5a8b6f.js → index-9dc37ca3.js} +18692 -18655
- package/dist/{index.es-7b74ecb2.js → index.es-a5c4b7d9.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/types/vue-data-ui.d.ts +26 -0
- package/dist/vue-data-ui.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -407,3 +407,35 @@ Tailor made icons are available through the VueUiIcon component:
|
|
|
407
407
|
```
|
|
408
408
|
|
|
409
409
|
All names of available icons are available in the vue-data-ui.d.ts file under the `VueUiIconName` type.
|
|
410
|
+
|
|
411
|
+
# Custom palette
|
|
412
|
+
|
|
413
|
+
It is possible to provide a custom palette in the config prop through config.customPalette (string[]) for the following components:
|
|
414
|
+
|
|
415
|
+
- VueUi3dBar
|
|
416
|
+
- VueUiChestnut
|
|
417
|
+
- VueUiDonut
|
|
418
|
+
- VueUiDonutEvolution
|
|
419
|
+
- VueUiGalaxy
|
|
420
|
+
- VueUiGauge
|
|
421
|
+
- VueUiMolecule
|
|
422
|
+
- VueUiNestedDonuts
|
|
423
|
+
- VueUiOnion
|
|
424
|
+
- VueUiQuadrant
|
|
425
|
+
- VueUiQuickChart
|
|
426
|
+
- VueUiRadar
|
|
427
|
+
- VueUiRelationCircle
|
|
428
|
+
- VueUiRings
|
|
429
|
+
- VueUiScatter
|
|
430
|
+
- VueUiSparkStackbar
|
|
431
|
+
- VueUiSparkbar
|
|
432
|
+
- VueUiStripPlot
|
|
433
|
+
- VueUiTableSparkline
|
|
434
|
+
- VueUiThermometer
|
|
435
|
+
- VueUiTreemap
|
|
436
|
+
- VueUiVerticalBar
|
|
437
|
+
- VueUiWaffle
|
|
438
|
+
- VueUiXy
|
|
439
|
+
|
|
440
|
+
If the array of colors provided in customPalette is too small for the dataset, remaining colors will be computed from the default internal palette.
|
|
441
|
+
Accepted color formats: HEX, RGB, HSL, named colors.
|
|
@@ -188,3 +188,35 @@ Tailor made icons are available through the VueUiIcon component:
|
|
|
188
188
|
```
|
|
189
189
|
|
|
190
190
|
All names of available icons are available in the vue-data-ui.d.ts file under the `VueUiIconName` type.
|
|
191
|
+
|
|
192
|
+
# Custom palette
|
|
193
|
+
|
|
194
|
+
It is possible to provide a custom palette in the config prop through config.customPalette (string[]) for the following components:
|
|
195
|
+
|
|
196
|
+
- VueUi3dBar
|
|
197
|
+
- VueUiChestnut
|
|
198
|
+
- VueUiDonut
|
|
199
|
+
- VueUiDonutEvolution
|
|
200
|
+
- VueUiGalaxy
|
|
201
|
+
- VueUiGauge
|
|
202
|
+
- VueUiMolecule
|
|
203
|
+
- VueUiNestedDonuts
|
|
204
|
+
- VueUiOnion
|
|
205
|
+
- VueUiQuadrant
|
|
206
|
+
- VueUiQuickChart
|
|
207
|
+
- VueUiRadar
|
|
208
|
+
- VueUiRelationCircle
|
|
209
|
+
- VueUiRings
|
|
210
|
+
- VueUiScatter
|
|
211
|
+
- VueUiSparkStackbar
|
|
212
|
+
- VueUiSparkbar
|
|
213
|
+
- VueUiStripPlot
|
|
214
|
+
- VueUiTableSparkline
|
|
215
|
+
- VueUiThermometer
|
|
216
|
+
- VueUiTreemap
|
|
217
|
+
- VueUiVerticalBar
|
|
218
|
+
- VueUiWaffle
|
|
219
|
+
- VueUiXy
|
|
220
|
+
|
|
221
|
+
If the array of colors provided in customPalette is too small for the dataset, remaining colors will be computed from the default internal palette.
|
|
222
|
+
Accepted color formats: HEX, RGB, HSL, named colors.
|