@gradio/file 0.5.2 → 0.5.3

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @gradio/file
2
2
 
3
+ ## 0.5.3
4
+
5
+ ### Fixes
6
+
7
+ - [#7507](https://github.com/gradio-app/gradio/pull/7507) [`9c36572`](https://github.com/gradio-app/gradio/commit/9c36572e32aeec6e6352a861dfea6ee0f9a15e79) - Quick fix: File height overflow. Thanks [@dawoodkhan82](https://github.com/dawoodkhan82)!
8
+
3
9
  ## 0.5.2
4
10
 
5
11
  ### Patch Changes
@@ -366,4 +372,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
366
372
  - Updated dependencies []:
367
373
  - @gradio/utils@0.0.2
368
374
  - @gradio/atoms@0.0.2
369
- - @gradio/upload@0.0.2
375
+ - @gradio/upload@0.0.2
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@gradio/file",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
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
10
  "@gradio/atoms": "^0.5.3",
11
+ "@gradio/statustracker": "^0.4.8",
12
+ "@gradio/client": "^0.12.1",
12
13
  "@gradio/icons": "^0.3.3",
13
- "@gradio/statustracker": "^0.4.7",
14
14
  "@gradio/utils": "^0.3.0",
15
- "@gradio/upload": "^0.7.4",
16
- "@gradio/wasm": "^0.6.0"
15
+ "@gradio/wasm": "^0.6.0",
16
+ "@gradio/upload": "^0.7.4"
17
17
  },
18
18
  "main": "./Index.svelte",
19
19
  "main_changeset": true,
@@ -115,6 +115,10 @@
115
115
  color: var(--body-text-color);
116
116
  }
117
117
 
118
+ .file-preview-holder {
119
+ overflow: auto;
120
+ }
121
+
118
122
  .file {
119
123
  display: flex;
120
124
  width: var(--size-full);