From 1fba141b23d0ead25ca964f38166b3007cb7559a Mon Sep 17 00:00:00 2001 From: Rik Date: Mon, 23 Dec 2024 09:12:03 +0100 Subject: [PATCH] add processfiles to types --- CHANGELOG.md | 4 ++++ dist/filepond.css | 2 +- dist/filepond.esm.js | 2 +- dist/filepond.esm.min.js | 2 +- dist/filepond.js | 2 +- dist/filepond.min.css | 2 +- dist/filepond.min.js | 2 +- package.json | 2 +- types/index.d.ts | 2 ++ 9 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9f154e0..8525a578 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 4.32.6 + +- Fix `processfiles` event missing from types.` + ## 4.32.5 - Attempt to fix item dragging issue on Android. diff --git a/dist/filepond.css b/dist/filepond.css index ed2af5e3..9a01d3ca 100644 --- a/dist/filepond.css +++ b/dist/filepond.css @@ -1,5 +1,5 @@ /*! - * FilePond 4.32.5 + * FilePond 4.32.6 * Licensed under MIT, https://opensource.org/licenses/MIT/ * Please visit https://pqina.nl/filepond/ for details. */ diff --git a/dist/filepond.esm.js b/dist/filepond.esm.js index 5dfd9fe4..1d67e079 100644 --- a/dist/filepond.esm.js +++ b/dist/filepond.esm.js @@ -1,5 +1,5 @@ /*! - * FilePond 4.32.5 + * FilePond 4.32.6 * Licensed under MIT, https://opensource.org/licenses/MIT/ * Please visit https://pqina.nl/filepond/ for details. */ diff --git a/dist/filepond.esm.min.js b/dist/filepond.esm.min.js index 8d100a08..16af1e4c 100644 --- a/dist/filepond.esm.min.js +++ b/dist/filepond.esm.min.js @@ -1,5 +1,5 @@ /*! - * FilePond 4.32.5 + * FilePond 4.32.6 * Licensed under MIT, https://opensource.org/licenses/MIT/ * Please visit https://pqina.nl/filepond/ for details. */ diff --git a/dist/filepond.js b/dist/filepond.js index 30dbc776..25e27937 100644 --- a/dist/filepond.js +++ b/dist/filepond.js @@ -1,5 +1,5 @@ /*! - * FilePond 4.32.5 + * FilePond 4.32.6 * Licensed under MIT, https://opensource.org/licenses/MIT/ * Please visit https://pqina.nl/filepond/ for details. */ diff --git a/dist/filepond.min.css b/dist/filepond.min.css index f1d9dbdc..cee38551 100644 --- a/dist/filepond.min.css +++ b/dist/filepond.min.css @@ -1,5 +1,5 @@ /*! - * FilePond 4.32.5 + * FilePond 4.32.6 * Licensed under MIT, https://opensource.org/licenses/MIT/ * Please visit https://pqina.nl/filepond/ for details. */ diff --git a/dist/filepond.min.js b/dist/filepond.min.js index 2c5b977b..98972f0a 100644 --- a/dist/filepond.min.js +++ b/dist/filepond.min.js @@ -1,5 +1,5 @@ /*! - * FilePond 4.32.5 + * FilePond 4.32.6 * Licensed under MIT, https://opensource.org/licenses/MIT/ * Please visit https://pqina.nl/filepond/ for details. */ diff --git a/package.json b/package.json index 1c05a78f..450305ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "filepond", - "version": "4.32.5", + "version": "4.32.6", "description": "FilePond, Where files go to stretch their bits.", "license": "MIT", "author": { diff --git a/types/index.d.ts b/types/index.d.ts index f67ee5da..2da9c2f2 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -869,6 +869,7 @@ export type FilePondEventPrefixed = | 'FilePond:processfileabort' | 'FilePond:processfilerevert' | 'FilePond:processfile' + | 'FilePond:processfiles' | 'FilePond:removefile' | 'FilePond:updatefiles' | 'FilePond:reorderfiles'; @@ -885,6 +886,7 @@ export type FilePondEvent = | 'processfileabort' | 'processfilerevert' | 'processfile' + | 'processfiles' | 'removefile' | 'updatefiles' | 'reorderfiles';