filepond 4.32.3 → 4.32.5

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.32.5
4
+
5
+ - Attempt to fix item dragging issue on Android.
6
+
7
+ ## 4.32.4
8
+
9
+ - Make credits link more visible to prevent authors from leaving it in place accidentally.
10
+
3
11
  ## 4.32.3
4
12
 
5
13
  - Add nofollow to credits link.
package/dist/filepond.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * FilePond 4.32.2
2
+ * FilePond 4.32.5
3
3
  * Licensed under MIT, https://opensource.org/licenses/MIT/
4
4
  * Please visit https://pqina.nl/filepond/ for details.
5
5
  */
@@ -632,7 +632,7 @@
632
632
 
633
633
  will-change: transform, opacity;
634
634
 
635
- touch-action: none;
635
+ touch-action: auto;
636
636
 
637
637
  /* item children order */
638
638
  }
@@ -1034,7 +1034,7 @@
1034
1034
  .filepond--root .filepond--credits {
1035
1035
  position: absolute;
1036
1036
  right: 0;
1037
- opacity: 0.175;
1037
+ opacity: 0.4;
1038
1038
  line-height: 0.85;
1039
1039
  font-size: 11px;
1040
1040
  color: inherit;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * FilePond 4.32.2
2
+ * FilePond 4.32.5
3
3
  * Licensed under MIT, https://opensource.org/licenses/MIT/
4
4
  * Please visit https://pqina.nl/filepond/ for details.
5
5
  */
@@ -8077,7 +8077,7 @@ const create$e = ({ root, props }) => {
8077
8077
  frag.href = credits[0];
8078
8078
  frag.tabIndex = -1;
8079
8079
  frag.target = '_blank';
8080
- frag.rel = 'noopener noreferrer';
8080
+ frag.rel = 'noopener noreferrer nofollow';
8081
8081
  frag.textContent = credits[1];
8082
8082
  root.element.appendChild(frag);
8083
8083
  root.ref.credits = frag;