react-dropzone 14.3.7 → 14.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/es/index.js CHANGED
@@ -172,7 +172,7 @@ Dropzone.propTypes = {
172
172
  /**
173
173
  * Use this to provide a custom file aggregator
174
174
  *
175
- * @param {(DragEvent|Event)} event A drag event or input change event (if files were selected via the file dialog)
175
+ * @param {(DragEvent|Event|Array<FileSystemFileHandle>)} event A drag event or input change event (if files were selected via the file dialog)
176
176
  */
177
177
  getFilesFromEvent: PropTypes.func,
178
178
 
@@ -326,7 +326,7 @@ export default Dropzone;
326
326
  * in a asynchronous fashion, from drag or input change events.
327
327
  *
328
328
  * @callback getFilesFromEvent
329
- * @param {(DragEvent|Event)} event A drag event or input change event (if files were selected via the file dialog)
329
+ * @param {(DragEvent|Event|Array<FileSystemFileHandle>)} event A drag event or input change event (if files were selected via the file dialog)
330
330
  * @returns {(File[]|Promise<File[]>)}
331
331
  */
332
332