@gradio/upload 0.12.1 → 0.12.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,28 @@
1
1
  # @gradio/upload
2
2
 
3
+ ## 0.12.3
4
+
5
+ ### Features
6
+
7
+ - [#9031](https://github.com/gradio-app/gradio/pull/9031) [`04b7d32`](https://github.com/gradio-app/gradio/commit/04b7d327ec1227a693fc2dfea51b1e2729851bde) - Allow drag and replace image in `gr.Image` and Multimodal textbox. Thanks @hannahblair!
8
+ - [#9118](https://github.com/gradio-app/gradio/pull/9118) [`e1c404d`](https://github.com/gradio-app/gradio/commit/e1c404da1143fb52b659d03e028bdba1badf443d) - setup npm-previews of all packages. Thanks @pngwn!
9
+
10
+ ### Dependency updates
11
+
12
+ - @gradio/utils@0.6.0
13
+ - @gradio/atoms@0.8.0
14
+ - @gradio/client@1.5.1
15
+ - @gradio/wasm@0.13.0
16
+ - @gradio/icons@0.7.1
17
+
18
+ ## 0.12.2
19
+
20
+ ### Dependency updates
21
+
22
+ - @gradio/atoms@0.7.9
23
+ - @gradio/client@1.5.0
24
+ - @gradio/icons@0.7.0
25
+
3
26
  ## 0.12.1
4
27
 
5
28
  ### Fixes
package/package.json CHANGED
@@ -1,20 +1,25 @@
1
1
  {
2
2
  "name": "@gradio/upload",
3
- "version": "0.12.1",
3
+ "version": "0.12.3",
4
4
  "description": "Gradio UI packages",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
7
7
  "author": "",
8
8
  "license": "ISC",
9
9
  "dependencies": {
10
- "@gradio/atoms": "^0.7.8",
11
- "@gradio/icons": "^0.6.1",
12
- "@gradio/client": "^1.4.0",
13
- "@gradio/wasm": "^0.12.0",
14
- "@gradio/utils": "^0.5.2"
10
+ "@gradio/atoms": "^0.8.0",
11
+ "@gradio/icons": "^0.7.1",
12
+ "@gradio/client": "^1.5.1",
13
+ "@gradio/utils": "^0.6.0",
14
+ "@gradio/wasm": "^0.13.0"
15
15
  },
16
16
  "main_changeset": true,
17
17
  "exports": {
18
18
  ".": "./src/index.ts"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/gradio-app/gradio.git",
23
+ "directory": "js/upload"
19
24
  }
20
25
  }
package/src/Upload.svelte CHANGED
@@ -319,12 +319,14 @@
319
319
 
320
320
  .hidden {
321
321
  display: none;
322
- height: 0 !important;
323
322
  position: absolute;
324
- width: 0;
325
323
  flex-grow: 0;
326
324
  }
327
325
 
326
+ .hidden :global(svg) {
327
+ display: none;
328
+ }
329
+
328
330
  .center {
329
331
  display: flex;
330
332
  justify-content: center;