Skip to content

Releases: graphieros/vue-data-ui

Safari fixes

15 Apr 06:13
Compare
Choose a tag to compare

The useBlurOnHover config option was fixed so it also works in Safari, for the following components:

  • VueUiDonut
  • VueUiNestedDonuts
  • VueUiWaffle

VueUiOnion improved gradient

14 Apr 18:00
Compare
Choose a tag to compare

Improved gradient implementation so it is usable on dark backgrounds too.

VueUiScatter bubble mode

14 Apr 15:14
Compare
Choose a tag to compare

This release adds the dataset value.weight option, to make a bubble chart.

VueUiIcon new icons

14 Apr 07:37
Compare
Choose a tag to compare
v2.0.82

VueUiIcon added icons

VueUiWaffle custom cells

13 Apr 08:53
Compare
Choose a tag to compare

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

10 Apr 05:32
Compare
Choose a tag to compare

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

08 Apr 18:07
Compare
Choose a tag to compare

Datapoints can be selected even when they stand under dataLabels.

VueUiQuadrant zoom functionality

08 Apr 16:41
Compare
Choose a tag to compare

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

07 Apr 17:57
Compare
Choose a tag to compare
v2.0.71

VueUiTreemap improved zoom functionality & animations

Improved components resilience

05 Apr 14:01
Compare
Choose a tag to compare

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