@gradio/file 0.8.5 → 0.9.0
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 +14 -0
- package/Index.svelte +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# @gradio/file
|
2
2
|
|
3
|
+
## 0.9.0
|
4
|
+
|
5
|
+
### Features
|
6
|
+
|
7
|
+
- [#8803](https://github.com/gradio-app/gradio/pull/8803) [`e1a4040`](https://github.com/gradio-app/gradio/commit/e1a404093cfaf9d8f2a92bc1d28fb6aa254848d1) - Ensure all upload components have consistent upload regions. Thanks @pngwn!
|
8
|
+
|
9
|
+
### Dependency updates
|
10
|
+
|
11
|
+
- @gradio/wasm@0.12.0
|
12
|
+
- @gradio/client@1.4.0
|
13
|
+
- @gradio/statustracker@0.7.2
|
14
|
+
- @gradio/upload@0.12.0
|
15
|
+
- @gradio/atoms@0.7.7
|
16
|
+
|
3
17
|
## 0.8.5
|
4
18
|
|
5
19
|
### Dependency updates
|
package/Index.svelte
CHANGED
package/package.json
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/file",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.9.0",
|
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/
|
11
|
-
"@gradio/
|
10
|
+
"@gradio/atoms": "^0.7.7",
|
11
|
+
"@gradio/client": "^1.4.0",
|
12
|
+
"@gradio/statustracker": "^0.7.2",
|
13
|
+
"@gradio/upload": "^0.12.0",
|
12
14
|
"@gradio/icons": "^0.6.0",
|
13
|
-
"@gradio/upload": "^0.11.5",
|
14
|
-
"@gradio/statustracker": "^0.7.1",
|
15
15
|
"@gradio/utils": "^0.5.1",
|
16
|
-
"@gradio/wasm": "^0.
|
16
|
+
"@gradio/wasm": "^0.12.0"
|
17
17
|
},
|
18
18
|
"devDependencies": {
|
19
19
|
"@gradio/preview": "^0.10.1"
|