@gradio/image 0.11.0 → 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,19 @@
1
1
  # @gradio/image
2
2
 
3
+ ## 0.11.1
4
+
5
+ ### Fixes
6
+
7
+ - [#8252](https://github.com/gradio-app/gradio/pull/8252) [`22df61a`](https://github.com/gradio-app/gradio/commit/22df61a26adf8023f6dd49c051979990e8d3879a) - Client node fix. Thanks @pngwn!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/atoms@0.7.3
12
+ - @gradio/statustracker@0.5.2
13
+ - @gradio/client@0.19.0
14
+ - @gradio/icons@0.4.1
15
+ - @gradio/upload@0.10.1
16
+
3
17
  ## 0.11.0
4
18
 
5
19
  ### Features
package/Index.svelte CHANGED
@@ -157,7 +157,7 @@
157
157
  max_file_size={gradio.max_file_size}
158
158
  i18n={gradio.i18n}
159
159
  upload={gradio.client.upload}
160
- stream_handler={gradio.client.stream_factory}
160
+ stream_handler={gradio.client.stream}
161
161
  >
162
162
  {#if active_source === "upload" || !active_source}
163
163
  <UploadText i18n={gradio.i18n} type="image" />
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradio/image",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "author": "",
@@ -10,11 +10,11 @@
10
10
  "cropperjs": "^1.5.12",
11
11
  "lazy-brush": "^1.0.1",
12
12
  "resize-observer-polyfill": "^1.5.1",
13
- "@gradio/atoms": "^0.7.2",
14
- "@gradio/statustracker": "^0.5.1",
15
- "@gradio/client": "^0.18.0",
16
- "@gradio/upload": "^0.10.0",
17
- "@gradio/icons": "^0.4.0",
13
+ "@gradio/atoms": "^0.7.3",
14
+ "@gradio/icons": "^0.4.1",
15
+ "@gradio/client": "^0.19.0",
16
+ "@gradio/upload": "^0.10.1",
17
+ "@gradio/statustracker": "^0.5.2",
18
18
  "@gradio/wasm": "^0.10.1",
19
19
  "@gradio/utils": "^0.4.1"
20
20
  },
@@ -27,7 +27,7 @@
27
27
  export let i18n: I18nFormatter;
28
28
  export let max_file_size: number | null = null;
29
29
  export let upload: Client["upload"];
30
- export let stream_handler: Client["stream_factory"];
30
+ export let stream_handler: Client["stream"];
31
31
 
32
32
  let upload_input: Upload;
33
33
  let uploading = false;