@gradio/upload 0.5.1 → 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 CHANGED
@@ -1,5 +1,20 @@
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
+
9
+ ## 0.5.2
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [[`206af31`](https://github.com/gradio-app/gradio/commit/206af31d7c1a31013364a44e9b40cf8df304ba50)]:
14
+ - @gradio/icons@0.3.1
15
+ - @gradio/atoms@0.3.1
16
+ - @gradio/upload@0.5.2
17
+
3
18
  ## 0.5.1
4
19
 
5
20
  ### Patch Changes
@@ -246,4 +261,4 @@ From the backend, streamed outputs are served from the `/stream/` endpoint inste
246
261
  ### Patch Changes
247
262
 
248
263
  - Updated dependencies []:
249
- - @gradio/atoms@0.0.2
264
+ - @gradio/atoms@0.0.2
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@gradio/upload",
3
- "version": "0.5.1",
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.3.0",
11
- "@gradio/client": "^0.8.2",
12
- "@gradio/icons": "^0.3.0",
13
- "@gradio/utils": "^0.2.0",
14
- "@gradio/upload": "^0.5.1"
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
+ "@gradio/utils": "^0.2.0"
15
15
  },
16
16
  "main_changeset": true,
17
17
  "exports": {
package/src/Upload.svelte CHANGED
@@ -108,7 +108,9 @@
108
108
  </script>
109
109
 
110
110
  {#if uploading}
111
- <UploadProgress {root} {upload_id} files={file_data} />
111
+ {#if !hidden}
112
+ <UploadProgress {root} {upload_id} files={file_data} />
113
+ {/if}
112
114
  {:else}
113
115
  <button
114
116
  class:hidden