@gradio/upload 0.13.2 → 0.13.4
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 +17 -0
- package/dist/src/Upload.svelte +10 -10
- package/package.json +3 -3
- package/src/Upload.svelte +10 -10
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# @gradio/upload
|
2
2
|
|
3
|
+
## 0.13.4
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#9770](https://github.com/gradio-app/gradio/pull/9770) [`47b5565`](https://github.com/gradio-app/gradio/commit/47b556523db3b63d6a9c2f9f69e8632bfa4ddff6) - Fix broken image select. Thanks @aliabid94!
|
8
|
+
|
9
|
+
### Dependency updates
|
10
|
+
|
11
|
+
- @gradio/atoms@0.10.0
|
12
|
+
- @gradio/icons@0.8.1
|
13
|
+
|
14
|
+
## 0.13.3
|
15
|
+
|
16
|
+
### Dependency updates
|
17
|
+
|
18
|
+
- @gradio/atoms@0.9.2
|
19
|
+
|
3
20
|
## 0.13.2
|
4
21
|
|
5
22
|
### Dependency updates
|
package/dist/src/Upload.svelte
CHANGED
@@ -268,16 +268,6 @@ async function loadFilesFromDrop(e) {
|
|
268
268
|
width: var(--size-full);
|
269
269
|
}
|
270
270
|
|
271
|
-
.hidden {
|
272
|
-
display: none;
|
273
|
-
position: absolute;
|
274
|
-
flex-grow: 0;
|
275
|
-
}
|
276
|
-
|
277
|
-
.hidden :global(svg) {
|
278
|
-
display: none;
|
279
|
-
}
|
280
|
-
|
281
271
|
.center {
|
282
272
|
display: flex;
|
283
273
|
justify-content: center;
|
@@ -288,6 +278,16 @@ async function loadFilesFromDrop(e) {
|
|
288
278
|
justify-content: center;
|
289
279
|
align-items: center;
|
290
280
|
}
|
281
|
+
.hidden {
|
282
|
+
display: none;
|
283
|
+
position: absolute;
|
284
|
+
flex-grow: 0;
|
285
|
+
}
|
286
|
+
|
287
|
+
.hidden :global(svg) {
|
288
|
+
display: none;
|
289
|
+
}
|
290
|
+
|
291
291
|
.disable_click {
|
292
292
|
cursor: default;
|
293
293
|
}
|
package/package.json
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/upload",
|
3
|
-
"version": "0.13.
|
3
|
+
"version": "0.13.4",
|
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.
|
11
|
-
"@gradio/icons": "^0.8.
|
10
|
+
"@gradio/atoms": "^0.10.0",
|
11
|
+
"@gradio/icons": "^0.8.1",
|
12
12
|
"@gradio/client": "^1.7.0",
|
13
13
|
"@gradio/wasm": "^0.14.2",
|
14
14
|
"@gradio/utils": "^0.7.0"
|
package/src/Upload.svelte
CHANGED
@@ -317,16 +317,6 @@
|
|
317
317
|
width: var(--size-full);
|
318
318
|
}
|
319
319
|
|
320
|
-
.hidden {
|
321
|
-
display: none;
|
322
|
-
position: absolute;
|
323
|
-
flex-grow: 0;
|
324
|
-
}
|
325
|
-
|
326
|
-
.hidden :global(svg) {
|
327
|
-
display: none;
|
328
|
-
}
|
329
|
-
|
330
320
|
.center {
|
331
321
|
display: flex;
|
332
322
|
justify-content: center;
|
@@ -337,6 +327,16 @@
|
|
337
327
|
justify-content: center;
|
338
328
|
align-items: center;
|
339
329
|
}
|
330
|
+
.hidden {
|
331
|
+
display: none;
|
332
|
+
position: absolute;
|
333
|
+
flex-grow: 0;
|
334
|
+
}
|
335
|
+
|
336
|
+
.hidden :global(svg) {
|
337
|
+
display: none;
|
338
|
+
}
|
339
|
+
|
340
340
|
.disable_click {
|
341
341
|
cursor: default;
|
342
342
|
}
|