Skip to content

Releases: graphieros/vue-data-ui

VueUiSparkgauge improvements

25 Mar 05:41

Choose a tag to compare

  • VueUiSparkgauge : added config.style.colors.showGradient config option
  • .d.ts file: fixed typos

VueDataUi universal component

24 Mar 15:57

Choose a tag to compare

This version adds the VueDataUi universal component, which can be used instead of individual components, so it is possible to only declare globally a single component.

You just have to specify the component name in the props, and provide the corresponding datatypes for config and dataset.

Events, slots, exposed functions remain unchanged, as this component is just a handy wrapper.

<script setup>
  import { ref } from "vue";
  import { VueDataUi } from "vue-data-ui";
  import "vue-data-ui/style.css";

  const dataset = ref([...]);
  const config = ref({...});
</script>

<template>

  <div style="width:600px">
    <VueDataUi
      component="VueUiXy"
      :dataset="dataset"
      :config="config"
    />
  </div>

</template>

This release does not introduce breaking changes.

VueUiVerticalBar fix

23 Mar 07:40

Choose a tag to compare

VueUiVerticalBar :

  • Added missing prefix & suffix on parent category labels

VueUiOnion fix

22 Mar 09:51

Choose a tag to compare

VueUiOnion

  • Fixed a bug preventing the table from opening when no value is provided in datasets

VueUiSparkgauge

20 Mar 05:33

Choose a tag to compare

VueUiSparkgauge :

  • Improved safeguards when value is higher than max or lower than min. Providing a value higher than max will now just show a full gauge. Providing a value lower than min will just show an empty gauge.

VueUiSparkgauge new component

19 Mar 20:15

Choose a tag to compare

Added new mini component VueUiSparkgauge

VueUiWaffle captions

19 Mar 07:11

Choose a tag to compare

VueUiWAffle :

  • Added config option config.style.chart.layout.labels.captions which only works in horizontal grid mode (default), to display series information directly onto the chart.

VueUiNestedDonuts improvements

18 Mar 07:34

Choose a tag to compare

VueUiNestedDonuts

Added config options to display donut names, with or without abbreviations.

VueUiNestedDonuts new component

17 Mar 16:51

Choose a tag to compare

Added VueUiNestedDonuts, allowing to compare breakdowns of comparable datasets.

VueUiDonut @selectDatpoint

14 Mar 06:23

Choose a tag to compare

VueUiDonut

Added @selectDatapoint emit, that returns the selected data and index.