@gradio/file 0.5.0 → 0.5.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 +16 -5
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,18 +1,29 @@
1
1
  # @gradio/file
2
2
 
3
+ ## 0.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`065c5b1`](https://github.com/gradio-app/gradio/commit/065c5b163c4badb9d9cbd06d627fb4ba086003e7), [`32b317f`](https://github.com/gradio-app/gradio/commit/32b317f24e3d43f26684bb9f3964f31efd0ea556)]:
8
+ - @gradio/utils@0.3.0
9
+ - @gradio/client@0.12.1
10
+ - @gradio/atoms@0.5.2
11
+ - @gradio/statustracker@0.4.6
12
+ - @gradio/upload@0.7.3
13
+
3
14
  ## 0.5.0
4
15
 
5
16
  ### Features
6
17
 
7
- - [#7299](https://github.com/gradio-app/gradio/pull/7299) [`f35f615`](https://github.com/gradio-app/gradio/commit/f35f615e33a5dd90bfeb106b6f5dca689849fcef) - Added remove button for every file in file preview, to remove individual file in gr.File(). Thanks [@shubhamofbce](https://github.com/shubhamofbce)!
8
- - [#7183](https://github.com/gradio-app/gradio/pull/7183) [`49d9c48`](https://github.com/gradio-app/gradio/commit/49d9c48537aa706bf72628e3640389470138bdc6) - [WIP] Refactor file normalization to be in the backend and remove it from the frontend of each component. Thanks [@abidlabs](https://github.com/abidlabs)!
18
+ - [#7299](https://github.com/gradio-app/gradio/pull/7299) [`f35f615`](https://github.com/gradio-app/gradio/commit/f35f615e33a5dd90bfeb106b6f5dca689849fcef) - Added remove button for every file in file preview, to remove individual file in gr.File(). Thanks [@shubhamofbce](https://github.com/shubhamofbce)!
19
+ - [#7183](https://github.com/gradio-app/gradio/pull/7183) [`49d9c48`](https://github.com/gradio-app/gradio/commit/49d9c48537aa706bf72628e3640389470138bdc6) - [WIP] Refactor file normalization to be in the backend and remove it from the frontend of each component. Thanks [@abidlabs](https://github.com/abidlabs)!
9
20
 
10
21
  ## 0.4.9
11
22
 
12
23
  ### Fixes
13
24
 
14
- - [#7192](https://github.com/gradio-app/gradio/pull/7192) [`8dd6f4b`](https://github.com/gradio-app/gradio/commit/8dd6f4bc1901792f05cd59e86df7b1dbab692739) - Handle the case where examples is `null` for all components. Thanks [@abidlabs](https://github.com/abidlabs)!
15
- - [#7221](https://github.com/gradio-app/gradio/pull/7221) [`cae05c0`](https://github.com/gradio-app/gradio/commit/cae05c05ecde56c4d92c6b5ed8d13353505cbd14) - Fix single file upload display. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
25
+ - [#7192](https://github.com/gradio-app/gradio/pull/7192) [`8dd6f4b`](https://github.com/gradio-app/gradio/commit/8dd6f4bc1901792f05cd59e86df7b1dbab692739) - Handle the case where examples is `null` for all components. Thanks [@abidlabs](https://github.com/abidlabs)!
26
+ - [#7221](https://github.com/gradio-app/gradio/pull/7221) [`cae05c0`](https://github.com/gradio-app/gradio/commit/cae05c05ecde56c4d92c6b5ed8d13353505cbd14) - Fix single file upload display. Thanks [@freddyaboulton](https://github.com/freddyaboulton)!
16
27
 
17
28
  ## 0.4.8
18
29
 
@@ -345,4 +356,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
345
356
  - Updated dependencies []:
346
357
  - @gradio/utils@0.0.2
347
358
  - @gradio/atoms@0.0.2
348
- - @gradio/upload@0.0.2
359
+ - @gradio/upload@0.0.2
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@gradio/file",
3
- "version": "0.5.0",
3
+ "version": "0.5.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/client": "^0.12.1",
11
+ "@gradio/atoms": "^0.5.2",
10
12
  "@gradio/icons": "^0.3.2",
11
- "@gradio/atoms": "^0.5.1",
12
- "@gradio/client": "^0.12.0",
13
- "@gradio/upload": "^0.7.2",
14
- "@gradio/utils": "^0.2.2",
15
- "@gradio/statustracker": "^0.4.5",
16
- "@gradio/wasm": "^0.6.0"
13
+ "@gradio/statustracker": "^0.4.6",
14
+ "@gradio/upload": "^0.7.3",
15
+ "@gradio/wasm": "^0.6.0",
16
+ "@gradio/utils": "^0.3.0"
17
17
  },
18
18
  "main": "./Index.svelte",
19
19
  "main_changeset": true,