@gradio/upload 0.5.2 → 0.5.3
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 +5 -5
- package/src/Upload.svelte +3 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# @gradio/upload
|
2
2
|
|
3
|
+
## 0.5.3
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#6709](https://github.com/gradio-app/gradio/pull/6709) [`6a9151d`](https://github.com/gradio-app/gradio/commit/6a9151d5c9432c724098da7d88a539aaaf5ffe88) - Remove progress animation on streaming. Thanks [@aliabid94](https://github.com/aliabid94)!
|
8
|
+
|
3
9
|
## 0.5.2
|
4
10
|
|
5
11
|
### Patch Changes
|
@@ -255,4 +261,4 @@ From the backend, streamed outputs are served from the `/stream/` endpoint inste
|
|
255
261
|
### Patch Changes
|
256
262
|
|
257
263
|
- Updated dependencies []:
|
258
|
-
- @gradio/atoms@0.0.2
|
264
|
+
- @gradio/atoms@0.0.2
|
package/package.json
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/upload",
|
3
|
-
"version": "0.5.
|
3
|
+
"version": "0.5.3",
|
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.
|
11
|
-
"@gradio/
|
12
|
-
"@gradio/
|
13
|
-
"@gradio/
|
10
|
+
"@gradio/atoms": "^0.4.0",
|
11
|
+
"@gradio/client": "^0.9.0",
|
12
|
+
"@gradio/icons": "^0.3.2",
|
13
|
+
"@gradio/upload": "^0.5.3",
|
14
14
|
"@gradio/utils": "^0.2.0"
|
15
15
|
},
|
16
16
|
"main_changeset": true,
|
package/src/Upload.svelte
CHANGED