@gradio/upload 0.4.1 → 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 +7 -1
- package/package.json +4 -4
- package/src/Upload.svelte +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# @gradio/upload
|
2
2
|
|
3
|
+
## 0.4.2
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#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)!
|
8
|
+
|
3
9
|
## 0.4.1
|
4
10
|
|
5
11
|
### Patch Changes
|
@@ -182,4 +188,4 @@ From the backend, streamed outputs are served from the `/stream/` endpoint inste
|
|
182
188
|
### Patch Changes
|
183
189
|
|
184
190
|
- Updated dependencies []:
|
185
|
-
- @gradio/atoms@0.0.2
|
191
|
+
- @gradio/atoms@0.0.2
|
package/package.json
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/upload",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.2",
|
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.2.
|
10
|
+
"@gradio/atoms": "^0.2.2",
|
11
|
+
"@gradio/icons": "^0.2.1",
|
11
12
|
"@gradio/client": "^0.8.1",
|
12
|
-
"@gradio/
|
13
|
-
"@gradio/upload": "^0.4.1",
|
13
|
+
"@gradio/upload": "^0.4.2",
|
14
14
|
"@gradio/utils": "^0.2.0"
|
15
15
|
},
|
16
16
|
"main_changeset": true,
|