@gradio/file 0.3.0 → 0.3.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -3
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,11 +1,21 @@
1
1
  # @gradio/file
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`206af31`](https://github.com/gradio-app/gradio/commit/206af31d7c1a31013364a44e9b40cf8df304ba50)]:
8
+ - @gradio/icons@0.3.1
9
+ - @gradio/atoms@0.3.1
10
+ - @gradio/statustracker@0.4.1
11
+ - @gradio/upload@0.5.2
12
+
3
13
  ## 0.3.0
4
14
 
5
15
  ### Features
6
16
 
7
- - [#6511](https://github.com/gradio-app/gradio/pull/6511) [`71f1a1f99`](https://github.com/gradio-app/gradio/commit/71f1a1f9931489d465c2c1302a5c8d768a3cd23a) - Mark `FileData.orig_name` optional on the frontend aligning the type definition on the Python side. Thanks [@whitphx](https://github.com/whitphx)!
8
- - [#6520](https://github.com/gradio-app/gradio/pull/6520) [`f94db6b73`](https://github.com/gradio-app/gradio/commit/f94db6b7319be902428887867500311a6a32a165) - File table style with accessible file name texts. Thanks [@whitphx](https://github.com/whitphx)!
17
+ - [#6511](https://github.com/gradio-app/gradio/pull/6511) [`71f1a1f99`](https://github.com/gradio-app/gradio/commit/71f1a1f9931489d465c2c1302a5c8d768a3cd23a) - Mark `FileData.orig_name` optional on the frontend aligning the type definition on the Python side. Thanks [@whitphx](https://github.com/whitphx)!
18
+ - [#6520](https://github.com/gradio-app/gradio/pull/6520) [`f94db6b73`](https://github.com/gradio-app/gradio/commit/f94db6b7319be902428887867500311a6a32a165) - File table style with accessible file name texts. Thanks [@whitphx](https://github.com/whitphx)!
9
19
 
10
20
  ## 0.2.7
11
21
 
@@ -247,4 +257,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
247
257
  - Updated dependencies []:
248
258
  - @gradio/utils@0.0.2
249
259
  - @gradio/atoms@0.0.2
250
- - @gradio/upload@0.0.2
260
+ - @gradio/upload@0.0.2
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@gradio/file",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
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/atoms": "^0.3.0",
11
- "@gradio/icons": "^0.3.0",
12
- "@gradio/statustracker": "^0.4.0",
13
10
  "@gradio/client": "^0.8.2",
14
- "@gradio/upload": "^0.5.1",
11
+ "@gradio/atoms": "^0.3.1",
12
+ "@gradio/icons": "^0.3.1",
13
+ "@gradio/upload": "^0.5.2",
14
+ "@gradio/statustracker": "^0.4.1",
15
15
  "@gradio/utils": "^0.2.0"
16
16
  },
17
17
  "main": "./Index.svelte",