v2.16.4
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)