@gradio/upload 0.10.7 → 0.11.1

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,23 @@
1
1
  # @gradio/upload
2
2
 
3
+ ## 0.11.1
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/upload@0.11.1
8
+ - @gradio/client@1.1.0
9
+
10
+ ## 0.11.0
11
+
12
+ ### Features
13
+
14
+ - [#8417](https://github.com/gradio-app/gradio/pull/8417) [`96d8de2`](https://github.com/gradio-app/gradio/commit/96d8de231270321da5f310768643363276df3204) - add delete event to `File` component. Thanks @pngwn!
15
+
16
+ ### Dependency updates
17
+
18
+ - @gradio/client@1.0.0
19
+ - @gradio/upload@0.11.0
20
+
3
21
  ## 0.10.7
4
22
 
5
23
  ### Dependency updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/upload",
3
- "version": "0.10.7",
3
+ "version": "0.11.1",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -8,9 +8,9 @@
8
8
  "license": "ISC",
9
9
  "dependencies": {
10
10
  "@gradio/atoms": "^0.7.4",
11
- "@gradio/client": "^0.20.1",
12
- "@gradio/upload": "^0.10.7",
13
11
  "@gradio/icons": "^0.4.1",
12
+ "@gradio/client": "^1.1.0",
13
+ "@gradio/upload": "^0.11.1",
14
14
  "@gradio/utils": "^0.4.2",
15
15
  "@gradio/wasm": "^0.10.1"
16
16
  },
package/src/Upload.svelte CHANGED
@@ -150,6 +150,7 @@
150
150
  } else {
151
151
  return false;
152
152
  }
153
+
153
154
  return (
154
155
  acceptArray.includes(uploaded_file_extension) ||
155
156
  acceptArray.some((type) => {