v2.4.0
VueUiDonut
Apply shadow option in polar mode
VueUiRating & VueUiSmiley
- Improved reactivity
- New config options:
- Label formatter callbacks to customize labels:
config.style.rating.formatter: Function | null; // default: null
config.style.tooltip.formatter: Function | null; // default: null
Example implementation:
const config = ref({
style: {
rating: {
formatter: ({ value }) => {
return `Rating: ${value}`;
}
}
}
});
- Rounding value config option for tooltips:
config.style.tooltip.roundingValue: number: // default: 0