Skip to content

2.2.0

Latest
Compare
Choose a tag to compare
@rikschennink rikschennink released this 11 Jul 06:22
· 21 commits to master since this release
  • Add fileValidateSizeFilter hook, return false to prevent file size validation

Only validate the size of files that are not images.

const pond = FilePond.create(inputElement, {
    maxFileSize: '100KB',
    fileValidateSizeFilter: file => !/image/.test(file.type)
});