Releases: graphieros/vue-data-ui
Safari fixes
The useBlurOnHover config option was fixed so it also works in Safari, for the following components:
- VueUiDonut
- VueUiNestedDonuts
- VueUiWaffle
VueUiOnion improved gradient
Improved gradient implementation so it is usable on dark backgrounds too.
VueUiScatter bubble mode
This release adds the dataset value.weight option, to make a bubble chart.
VueUiIcon new icons
v2.0.82 VueUiIcon added icons
VueUiWaffle custom cells
This release adds the #cell scoped slot allowing to custom cell contents:
The config attribute useCustomCells has to be set to true.
<VueUiWaffle
:config="config"
:dataset="dataset"
/>
<template #cell="{ cell, isSelected }">
<div>
... your custom content here (icon, image, etc)
</div>
</template>
</VueUiWaffle>
VueUi3dBar stack mode
VueUi3dBar was improved to display stacked bars when the series
dataset option is used.
Stack mode is automatically enabled when the series
attribute is present in the dataset:
const dataset = {
series: [
{
name: string,
value: number,
color?: string
// Adding breakdown array will display donuts in the legend portion of the chart
breakdown?: [
{
name: string,
value: number
},
{...}
]
},
{...}
]
}
VueUiMolecule improvements
Datapoints can be selected even when they stand under dataLabels.
VueUiQuadrant zoom functionality
This release adds the zoom functionality to the VueUiQuadrant component.
Clicking on a side will zoom on it, and display a minimap.
VueUiTreemap new component
v2.0.71 VueUiTreemap improved zoom functionality & animations
Improved components resilience
This release improves the stability of all chart components when the dataset passed into the props is undefined or empty, which used to cause errors on some components.
Now, empty or undefined datasets will show a skeleton of the same type as the component's.
In the console, a warning is displayed to the user pointing to bad formatted or missing dataset.
New types of skeleton loaders were added to the VueUiSkeleton component:
- bar3d
- sparkHistogram
- sparkStackbar
- sparkbar
- thermometer
- relationCircle
- molecule
- tiremarks