Skip to content

v2.16.4

Choose a tag to compare

@graphieros graphieros released this 22 Jul 05:56
· 570 commits to master since this release

VueUiXy

  • Fix harmless console errors in some edge cases where data is empty

getVueDataUiConfig utility function

  • Improve TS type: use a generic, no more 'as' casting required

Before:

const config = ref(getVueDataUiConfig('vue_ui_donut') as VueUiDonutConfig);

After:

const config = ref(getVueDataUiConfig<VueUiDonutConfig>('vue_ui_donut'));

User options menu

  • Set a min-width (in some rare environments, the user options menu button and drawer could have no width, leading to an invisible menu)