@gradio/file 0.4.6 → 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 +7 -1
- package/package.json +6 -6
- package/shared/File.svelte +1 -1
- package/shared/FileUpload.svelte +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
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
|
+
|
3
9
|
## 0.4.6
|
4
10
|
|
5
11
|
### Patch Changes
|
@@ -314,4 +320,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
|
|
314
320
|
- Updated dependencies []:
|
315
321
|
- @gradio/utils@0.0.2
|
316
322
|
- @gradio/atoms@0.0.2
|
317
|
-
- @gradio/upload@0.0.2
|
323
|
+
- @gradio/upload@0.0.2
|
package/package.json
CHANGED
@@ -1,19 +1,19 @@
|
|
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": "",
|
7
7
|
"license": "ISC",
|
8
8
|
"private": false,
|
9
9
|
"dependencies": {
|
10
|
-
"@gradio/client": "^0.10.0",
|
11
|
-
"@gradio/icons": "^0.3.2",
|
12
|
-
"@gradio/statustracker": "^0.4.3",
|
13
10
|
"@gradio/atoms": "^0.4.1",
|
14
|
-
"@gradio/
|
11
|
+
"@gradio/statustracker": "^0.4.3",
|
12
|
+
"@gradio/client": "^0.10.1",
|
13
|
+
"@gradio/icons": "^0.3.2",
|
14
|
+
"@gradio/utils": "^0.2.0",
|
15
15
|
"@gradio/wasm": "^0.5.0",
|
16
|
-
"@gradio/
|
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