filepond 4.32.9 → 4.32.10
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 +5 -0
- package/README.md +4 -1
- package/dist/.DS_Store +0 -0
- package/dist/filepond.css +1 -1
- package/dist/filepond.esm.js +2 -4
- package/dist/filepond.esm.min.js +2 -2
- package/dist/filepond.js +3 -3
- package/dist/filepond.min.css +1 -1
- package/dist/filepond.min.js +2 -2
- package/locale/cy-cy.js +39 -0
- package/locale/kur-ckb.js +46 -0
- package/locale/lus-lus.js +39 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -6,14 +6,17 @@ A JavaScript library that can upload anything you throw at it, optimizes images
|
|
|
6
6
|
[](https://www.npmjs.com/package/filepond)
|
|
7
7
|

|
|
8
8
|
[](https://bundlephobia.com/package/filepond)
|
|
9
|
+
[](https://discord.gg/KTyymsrTrX)
|
|
9
10
|
|
|
10
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)**
|
|
11
12
|
|
|
13
|
+
[Documentation](https://pqina.nl/filepond/docs) • [Discord](https://discord.gg/KTyymsrTrX) • [Examples](#live-demos)
|
|
14
|
+
|
|
12
15
|
---
|
|
13
16
|
|
|
14
17
|
[<img src="https://github.com/pqina/filepond-github-assets/blob/master/header.svg" alt="FilePond"/>](https://www.buymeacoffee.com/rikschennink/)
|
|
15
18
|
|
|
16
|
-
[Buy me a Coffee](https://www.buymeacoffee.com/rikschennink/)
|
|
19
|
+
[Buy me a Coffee](https://www.buymeacoffee.com/rikschennink/) • [Use FilePond with Pintura](https://pqina.nl/pintura/?ref=github-filepond) • [Dev updates](https://rik.schenn.ink)
|
|
17
20
|
|
|
18
21
|
---
|
|
19
22
|
|
package/dist/.DS_Store
ADDED
|
Binary file
|
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.10
|
|
3
3
|
* Licensed under MIT, https://opensource.org/licenses/MIT/
|
|
4
4
|
* Please visit https://pqina.nl/filepond/ for details.
|
|
5
5
|
*/
|
|
@@ -6427,9 +6427,7 @@ const removeItemView = ({ root, action }) => {
|
|
|
6427
6427
|
};
|
|
6428
6428
|
|
|
6429
6429
|
const getItemHeight = child =>
|
|
6430
|
-
child.rect.element.height +
|
|
6431
|
-
child.rect.element.marginBottom * 0.5 +
|
|
6432
|
-
child.rect.element.marginTop * 0.5;
|
|
6430
|
+
child.rect.element.height + child.rect.element.marginBottom + child.rect.element.marginTop;
|
|
6433
6431
|
const getItemWidth = child =>
|
|
6434
6432
|
child.rect.element.width +
|
|
6435
6433
|
child.rect.element.marginLeft * 0.5 +
|