@gradio/file 0.7.0 → 0.7.2

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,27 @@
1
1
  # @gradio/file
2
2
 
3
+ ## 0.7.2
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/statustracker@0.5.3
8
+ - @gradio/client@0.19.1
9
+ - @gradio/upload@0.10.2
10
+
11
+ ## 0.7.1
12
+
13
+ ### Fixes
14
+
15
+ - [#8252](https://github.com/gradio-app/gradio/pull/8252) [`22df61a`](https://github.com/gradio-app/gradio/commit/22df61a26adf8023f6dd49c051979990e8d3879a) - Client node fix. Thanks @pngwn!
16
+
17
+ ### Dependency updates
18
+
19
+ - @gradio/atoms@0.7.3
20
+ - @gradio/statustracker@0.5.2
21
+ - @gradio/client@0.19.0
22
+ - @gradio/icons@0.4.1
23
+ - @gradio/upload@0.10.1
24
+
3
25
  ## 0.7.0
4
26
 
5
27
  ### Features
package/Index.svelte CHANGED
@@ -88,7 +88,7 @@
88
88
  {:else}
89
89
  <FileUpload
90
90
  upload={gradio.client.upload}
91
- stream_handler={gradio.client.stream_factory}
91
+ stream_handler={gradio.client.stream}
92
92
  {label}
93
93
  {show_label}
94
94
  {value}
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@gradio/file",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
7
7
  "license": "ISC",
8
8
  "private": false,
9
9
  "dependencies": {
10
- "@gradio/atoms": "^0.7.2",
11
- "@gradio/client": "^0.18.0",
12
- "@gradio/statustracker": "^0.5.1",
13
- "@gradio/icons": "^0.4.0",
10
+ "@gradio/atoms": "^0.7.3",
11
+ "@gradio/client": "^0.19.1",
12
+ "@gradio/statustracker": "^0.5.3",
13
+ "@gradio/upload": "^0.10.2",
14
14
  "@gradio/utils": "^0.4.1",
15
- "@gradio/upload": "^0.10.0",
15
+ "@gradio/icons": "^0.4.1",
16
16
  "@gradio/wasm": "^0.10.1"
17
17
  },
18
18
  "devDependencies": {
@@ -20,7 +20,7 @@
20
20
  export let i18n: I18nFormatter;
21
21
  export let max_file_size: number | null = null;
22
22
  export let upload: Client["upload"];
23
- export let stream_handler: Client["stream_factory"];
23
+ export let stream_handler: Client["stream"];
24
24
 
25
25
  async function handle_upload({
26
26
  detail