@gradio/upload 0.11.2 → 0.11.4

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,25 @@
1
1
  # @gradio/upload
2
2
 
3
+ ## 0.11.4
4
+
5
+ ### Fixes
6
+
7
+ - [#8608](https://github.com/gradio-app/gradio/pull/8608) [`c12f82a`](https://github.com/gradio-app/gradio/commit/c12f82a36dc75ff30918dc2ce5f24e583b676f22) - Bugfix: Add a `file_count` parameter to `gr.MultimodalTextbox`. Multiple files cab be uploaded by setting `file_count="multiple"`. Default is `"single"` to preserve the previous behavior. Thanks @freddyaboulton!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/client@1.2.1
12
+
13
+ ## 0.11.3
14
+
15
+ ### Dependency updates
16
+
17
+ - @gradio/atoms@0.7.5
18
+ - @gradio/utils@0.5.0
19
+ - @gradio/icons@0.5.0
20
+ - @gradio/wasm@0.11.0
21
+ - @gradio/client@1.2.0
22
+
3
23
  ## 0.11.2
4
24
 
5
25
  ### Features
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@gradio/upload",
3
- "version": "0.11.2",
3
+ "version": "0.11.4",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
7
7
  "author": "",
8
8
  "license": "ISC",
9
9
  "dependencies": {
10
- "@gradio/atoms": "^0.7.4",
11
- "@gradio/icons": "^0.4.1",
12
- "@gradio/client": "^1.1.1",
13
- "@gradio/utils": "^0.4.2",
14
- "@gradio/wasm": "^0.10.1"
10
+ "@gradio/atoms": "^0.7.5",
11
+ "@gradio/icons": "^0.5.0",
12
+ "@gradio/utils": "^0.5.0",
13
+ "@gradio/client": "^1.2.1",
14
+ "@gradio/wasm": "^0.11.0"
15
15
  },
16
16
  "main_changeset": true,
17
17
  "exports": {
package/src/Upload.svelte CHANGED
@@ -10,7 +10,7 @@
10
10
  export let boundedheight = true;
11
11
  export let center = true;
12
12
  export let flex = true;
13
- export let file_count = "single";
13
+ export let file_count: "single" | "multiple" | "directory" = "single";
14
14
  export let disable_click = false;
15
15
  export let root: string;
16
16
  export let hidden = false;