Skip to content

Commit cf7ae8c

Browse files
committed
update changelog
1 parent ca5a303 commit cf7ae8c

8 files changed

Lines changed: 14 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 4.22.0
4+
5+
- Add internal filter for plugins to manipulate dropped files before adding them to the files list.
6+
7+
38
## 4.21.1
49

510
- Fix calculation of file size when `fileSizeBase` is set to 1024.

dist/filepond.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* FilePond 4.21.1
2+
* FilePond 4.22.0
33
* Licensed under MIT, https://opensource.org/licenses/MIT/
44
* Please visit https://pqina.nl/filepond/ for details.
55
*/

dist/filepond.esm.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* FilePond 4.21.1
2+
* FilePond 4.22.0
33
* Licensed under MIT, https://opensource.org/licenses/MIT/
44
* Please visit https://pqina.nl/filepond/ for details.
55
*/
@@ -7267,9 +7267,7 @@ const didSetDisabled = ({ root }) => {
72677267
const didRemoveItem = ({ root, action }) => {
72687268
const field = getField(root, action.id);
72697269
if (!field) return;
7270-
if (field.parentNode) {
7271-
field.parentNode.removeChild(field);
7272-
}
7270+
if (field.parentNode) field.parentNode.removeChild(field);
72737271
delete root.ref.fields[action.id];
72747272
};
72757273

dist/filepond.esm.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/filepond.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* FilePond 4.21.1
2+
* FilePond 4.22.0
33
* Licensed under MIT, https://opensource.org/licenses/MIT/
44
* Please visit https://pqina.nl/filepond/ for details.
55
*/
@@ -10090,9 +10090,7 @@
1009010090
action = _ref6.action;
1009110091
var field = getField(root, action.id);
1009210092
if (!field) return;
10093-
if (field.parentNode) {
10094-
field.parentNode.removeChild(field);
10095-
}
10093+
if (field.parentNode) field.parentNode.removeChild(field);
1009610094
delete root.ref.fields[action.id];
1009710095
};
1009810096

dist/filepond.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/filepond.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "filepond",
3-
"version": "4.21.1",
3+
"version": "4.22.0",
44
"description": "FilePond, Where files go to stretch their bits.",
55
"license": "MIT",
66
"author": {

0 commit comments

Comments
 (0)