@gradio/image 0.11.0 → 0.11.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 +22 -0
- package/Index.svelte +1 -1
- package/package.json +6 -6
- package/shared/ImageUploader.svelte +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# @gradio/image
|
2
2
|
|
3
|
+
## 0.11.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.11.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.11.0
|
4
26
|
|
5
27
|
### 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.
|
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.
|
3
|
+
"version": "0.11.2",
|
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/
|
14
|
-
"@gradio/
|
15
|
-
"@gradio/
|
16
|
-
"@gradio/
|
17
|
-
"@gradio/
|
13
|
+
"@gradio/client": "^0.19.1",
|
14
|
+
"@gradio/atoms": "^0.7.3",
|
15
|
+
"@gradio/icons": "^0.4.1",
|
16
|
+
"@gradio/statustracker": "^0.5.3",
|
17
|
+
"@gradio/upload": "^0.10.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["
|
30
|
+
export let stream_handler: Client["stream"];
|
31
31
|
|
32
32
|
let upload_input: Upload;
|
33
33
|
let uploading = false;
|