@gradio/file 0.4.5 → 0.4.7
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 +15 -1
- package/package.json +5 -5
- package/shared/File.svelte +1 -1
- package/shared/FileUpload.svelte +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# @gradio/file
|
2
2
|
|
3
|
+
## 0.4.7
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#6980](https://github.com/gradio-app/gradio/pull/6980) [`523b6bc`](https://github.com/gradio-app/gradio/commit/523b6bc534e221b028a3ea3f274c7466fe242d5a) - `gr.update(value=[])` for `gr.File()` clears it. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
|
8
|
+
|
9
|
+
## 0.4.6
|
10
|
+
|
11
|
+
### Patch Changes
|
12
|
+
|
13
|
+
- Updated dependencies [[`793bf8f`](https://github.com/gradio-app/gradio/commit/793bf8f7b1943f265c5d016c1a0c682ee549232a), [`5d00dd3`](https://github.com/gradio-app/gradio/commit/5d00dd37ca14bbfef2ceac550b29dbe05ba8cab0)]:
|
14
|
+
- @gradio/upload@0.6.0
|
15
|
+
- @gradio/wasm@0.5.0
|
16
|
+
|
3
17
|
## 0.4.5
|
4
18
|
|
5
19
|
### Patch Changes
|
@@ -306,4 +320,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
|
306
320
|
- Updated dependencies []:
|
307
321
|
- @gradio/utils@0.0.2
|
308
322
|
- @gradio/atoms@0.0.2
|
309
|
-
- @gradio/upload@0.0.2
|
323
|
+
- @gradio/upload@0.0.2
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/file",
|
3
|
-
"version": "0.4.
|
3
|
+
"version": "0.4.7",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -8,12 +8,12 @@
|
|
8
8
|
"private": false,
|
9
9
|
"dependencies": {
|
10
10
|
"@gradio/atoms": "^0.4.1",
|
11
|
-
"@gradio/client": "^0.10.0",
|
12
|
-
"@gradio/upload": "^0.5.8",
|
13
11
|
"@gradio/statustracker": "^0.4.3",
|
14
|
-
"@gradio/
|
12
|
+
"@gradio/client": "^0.10.1",
|
15
13
|
"@gradio/icons": "^0.3.2",
|
16
|
-
"@gradio/
|
14
|
+
"@gradio/utils": "^0.2.0",
|
15
|
+
"@gradio/wasm": "^0.5.0",
|
16
|
+
"@gradio/upload": "^0.6.1"
|
17
17
|
},
|
18
18
|
"main": "./Index.svelte",
|
19
19
|
"main_changeset": true,
|
package/shared/File.svelte
CHANGED
package/shared/FileUpload.svelte
CHANGED