Skip to content

v3.4.7

Choose a tag to compare

@graphieros graphieros released this 26 Oct 06:27
· 4 commits to master since this release

UserOptions menu

  • Show menu tooltips when custom content is used through the #optionXxx slots in menu items
<VueUiXy :dataset="dataset" :config="config">
  <!-- Now the tooltip will be visible when using option slots -->
  <template #optionImg>
    <MyCustomIcon />
  </template>
</VueUiXy>

VueUiFlow

  • Add borderRadius config option for nodes:
const config = ref({
  style: {
    chart: {
      nodes: {
        borderRadius: 0, // default
      },
    },
  },
});
  • Improve chart accessibility (enable node focus with keyboard)