Properties
beforeInsertEntries
Called before inserting entries into the tree, allows limiting the amount of entries inserted
beforeInsertEntries?: (entriesToInsert: FilePondEntry[], currentEntries: FilePondEntry[]) => FilePondEntry[]
beforeOnboardEntry
Called before an entry is added to the tree, allows manipulating the entry, or returning false to prevent adding it, can be called multiple times
beforeOnboardEntry?: (entry: FilePondEntrySource) => false | FilePondEntry
beforeUpdateEntryWithProps
Called before an entry is updated with props, allows manipulating the props
beforeUpdateEntryWithProps?: (entry: FilePondEntry, props: { [key: string]: any; }, isUpdatingData: boolean) => void