VueUiAnnotator
Layout improvements (new icons)

New features:
- keyboard shortcuts
- undo + redo
- download PNG
New config attributes:
const config = ref({
alwaysVisible: false, // New: when set to false, annotations are only visible when the annotations menu is open
style: {
showImage: true, // New: show download to PNG button
},
translations: {
tooltipRedo: 'Redo last shape', // New
tooltipImage: 'Download PNG', // New
}
})
VueUiAccordion
- Add
@toggle
event
<VueUiAccordion
:config="config"
@toggle="onToggle"
>
...
</VueUiAccordion>
- New config attributes to customize the header icon:
const config = ref({
head: {
icon: 'arrowRight', // New: available built-in icons (see VueUiIcon)
iconSize: 20, // New
}
})