Skip to content

v0.3.3

Latest

Choose a tag to compare

@NyllRE NyllRE released this 04 Jun 05:09
· 1 commit to master since this release

v0.3.3

πŸš€ Enhancements

  • #29 β€” clearFiles() now accepts optional fileInputRef?: Ref<HTMLInputElement | null> to reset the HTML file input's DOM value in addition to the files list
  • Implement createIterableRef<T>() helper making files ref iterable for defineExpose / v-for usage
  • Add playground demo component and 5 unit tests for iterable ref

🩹 Fixes

  • #33 β€” Duplicate file extension bug: storeFileLocally now checks if the filename already has the correct extension before appending
  • #36 β€” File overwrite / mkdir error: writeFile uses { flag: 'w' } for safe overwriting; mkdir failures are caught with descriptive messages
  • Update import path for ServerFile type in backend handling section