@gradio/image 0.4.0 → 0.4.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 +16 -2
- package/package.json +6 -6
- package/shared/Image.svelte +2 -3
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# @gradio/image
|
2
2
|
|
3
|
+
## 0.4.2
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#6635](https://github.com/gradio-app/gradio/pull/6635) [`b639e04`](https://github.com/gradio-app/gradio/commit/b639e040741e6c0d9104271c81415d7befbd8cf3) - Quick Image + Text Component Fixes. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
8
|
+
|
9
|
+
## 0.4.1
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- Updated dependencies [[`71f1a1f99`](https://github.com/gradio-app/gradio/commit/71f1a1f9931489d465c2c1302a5c8d768a3cd23a)]:
|
14
|
+
- @gradio/client@0.8.2
|
15
|
+
- @gradio/upload@0.5.1
|
16
|
+
|
3
17
|
## 0.4.0
|
4
18
|
|
5
19
|
### Highlights
|
@@ -48,13 +62,13 @@ im = gr.ImageEditor(
|
|
48
62
|
|
49
63
|
```
|
50
64
|
|
51
|
-
|
65
|
+
Thanks [@pngwn](https://github.com/pngwn)!
|
52
66
|
|
53
67
|
## 0.3.6
|
54
68
|
|
55
69
|
### Fixes
|
56
70
|
|
57
|
-
- [#6441](https://github.com/gradio-app/gradio/pull/6441) [`2f805a7dd`](https://github.com/gradio-app/gradio/commit/2f805a7dd3d2b64b098f659dadd5d01258290521) - Small but important bugfixes for gr.Image: The upload event was not triggering at all. The paste-from-clipboard was not triggering an upload event. The clear button was not triggering a change event. The change event was triggering infinitely. Uploaded images were not preserving their original names. Uploading a new image should clear out the previous image.
|
71
|
+
- [#6441](https://github.com/gradio-app/gradio/pull/6441) [`2f805a7dd`](https://github.com/gradio-app/gradio/commit/2f805a7dd3d2b64b098f659dadd5d01258290521) - Small but important bugfixes for gr.Image: The upload event was not triggering at all. The paste-from-clipboard was not triggering an upload event. The clear button was not triggering a change event. The change event was triggering infinitely. Uploaded images were not preserving their original names. Uploading a new image should clear out the previous image. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
|
58
72
|
|
59
73
|
## 0.3.5
|
60
74
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/image",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.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/atoms": "^0.3.
|
14
|
-
"@gradio/
|
15
|
-
"@gradio/
|
16
|
-
"@gradio/statustracker": "^0.4.
|
17
|
-
"@gradio/upload": "^0.5.
|
13
|
+
"@gradio/atoms": "^0.3.1",
|
14
|
+
"@gradio/client": "^0.8.2",
|
15
|
+
"@gradio/icons": "^0.3.1",
|
16
|
+
"@gradio/statustracker": "^0.4.1",
|
17
|
+
"@gradio/upload": "^0.5.2",
|
18
18
|
"@gradio/utils": "^0.2.0",
|
19
19
|
"@gradio/wasm": "^0.3.0"
|
20
20
|
},
|