filepond 4.32.10 → 4.32.12
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/CHANGELOG.md +8 -0
- package/LICENSE +1 -1
- package/README.md +2 -0
- package/dist/filepond.css +1 -1
- package/dist/filepond.esm.js +7 -2
- package/dist/filepond.esm.min.js +2 -2
- package/dist/filepond.js +7 -2
- package/dist/filepond.min.css +1 -1
- package/dist/filepond.min.js +2 -2
- package/package.json +1 -1
- /package/locale/{sr-rs → sr-rs.js} +0 -0
package/CHANGELOG.md
CHANGED
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@ A JavaScript library that can upload anything you throw at it, optimizes images
|
|
|
10
10
|
|
|
11
11
|
FilePond adapters are available for **[React](https://github.com/pqina/react-filepond)**, **[Vue](https://github.com/pqina/vue-filepond)**, **[Angular](https://github.com/pqina/ngx-filepond)**, **[Svelte](https://github.com/pqina/svelte-filepond)**, and **[jQuery](https://github.com/pqina/jquery-filepond)**
|
|
12
12
|
|
|
13
|
+
[FilePond v5 Alpha version now available for testing](https://github.com/pqina/filepond/tree/v5)
|
|
14
|
+
|
|
13
15
|
[Documentation](https://pqina.nl/filepond/docs) • [Discord](https://discord.gg/KTyymsrTrX) • [Examples](#live-demos)
|
|
14
16
|
|
|
15
17
|
---
|
package/dist/filepond.css
CHANGED
package/dist/filepond.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* FilePond 4.32.
|
|
2
|
+
* FilePond 4.32.12
|
|
3
3
|
* Licensed under MIT, https://opensource.org/licenses/MIT/
|
|
4
4
|
* Please visit https://pqina.nl/filepond/ for details.
|
|
5
5
|
*/
|
|
@@ -1974,7 +1974,7 @@ const defaultOptions = {
|
|
|
1974
1974
|
files: [[], Type.ARRAY],
|
|
1975
1975
|
|
|
1976
1976
|
// show support by displaying credits
|
|
1977
|
-
credits: [['https://
|
|
1977
|
+
credits: [['https://filepond.com', 'Powered by FilePond'], Type.ARRAY],
|
|
1978
1978
|
};
|
|
1979
1979
|
|
|
1980
1980
|
const getItemByQuery = (items, query) => {
|
|
@@ -4824,6 +4824,11 @@ const actions = (dispatch, query, state) => ({
|
|
|
4824
4824
|
processNext();
|
|
4825
4825
|
});
|
|
4826
4826
|
|
|
4827
|
+
// abort function
|
|
4828
|
+
item.onOnce('process-abort', () => {
|
|
4829
|
+
processNext();
|
|
4830
|
+
});
|
|
4831
|
+
|
|
4827
4832
|
// start file processing
|
|
4828
4833
|
const options = state.options;
|
|
4829
4834
|
item.process(
|