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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.32.10
4
+
5
+ - Added various new locales.
6
+ - Merge fix for drop offset mismatch when scrolling.
7
+
3
8
  ## 4.32.9
4
9
 
5
10
  - Added various new locales.
package/README.md CHANGED
@@ -6,14 +6,17 @@ A JavaScript library that can upload anything you throw at it, optimizes images
6
6
  [![npm version](https://badge.fury.io/js/filepond.svg)](https://www.npmjs.com/package/filepond)
7
7
  ![npm](https://img.shields.io/npm/dt/filepond)
8
8
  [![minzipped size](https://img.shields.io/bundlephobia/minzip/filepond)](https://bundlephobia.com/package/filepond)
9
+ [![Discord](https://img.shields.io/discord/1422126182924554291?label=discord)](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/) / [Use FilePond with Pintura](https://pqina.nl/pintura/?ref=github-filepond) / [Dev updates on Twitter](https://twitter.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
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * FilePond 4.32.9
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
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * FilePond 4.32.9
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 +