@gradio/file 0.8.5 → 0.9.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @gradio/file
2
2
 
3
+ ## 0.9.1
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/atoms@0.7.8
8
+ - @gradio/icons@0.6.1
9
+ - @gradio/utils@0.5.2
10
+ - @gradio/statustracker@0.7.3
11
+ - @gradio/upload@0.12.1
12
+
13
+ ## 0.9.0
14
+
15
+ ### Features
16
+
17
+ - [#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!
18
+
19
+ ### Dependency updates
20
+
21
+ - @gradio/wasm@0.12.0
22
+ - @gradio/client@1.4.0
23
+ - @gradio/statustracker@0.7.2
24
+ - @gradio/upload@0.12.0
25
+ - @gradio/atoms@0.7.7
26
+
3
27
  ## 0.8.5
4
28
 
5
29
  ### Dependency updates
package/Index.svelte CHANGED
@@ -57,7 +57,7 @@
57
57
 
58
58
  <Block
59
59
  {visible}
60
- variant={value === null ? "dashed" : "solid"}
60
+ variant={value ? "solid" : "dashed"}
61
61
  border_mode={dragging ? "focus" : "base"}
62
62
  padding={false}
63
63
  {elem_id}
package/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "@gradio/file",
3
- "version": "0.8.5",
3
+ "version": "0.9.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": "^1.3.0",
11
- "@gradio/atoms": "^0.7.6",
12
- "@gradio/icons": "^0.6.0",
13
- "@gradio/upload": "^0.11.5",
14
- "@gradio/statustracker": "^0.7.1",
15
- "@gradio/utils": "^0.5.1",
16
- "@gradio/wasm": "^0.11.0"
10
+ "@gradio/client": "^1.4.0",
11
+ "@gradio/atoms": "^0.7.8",
12
+ "@gradio/statustracker": "^0.7.3",
13
+ "@gradio/icons": "^0.6.1",
14
+ "@gradio/upload": "^0.12.1",
15
+ "@gradio/wasm": "^0.12.0",
16
+ "@gradio/utils": "^0.5.2"
17
17
  },
18
18
  "devDependencies": {
19
- "@gradio/preview": "^0.10.1"
19
+ "@gradio/preview": "^0.10.2"
20
20
  },
21
21
  "main": "./Index.svelte",
22
22
  "main_changeset": true,