@gradio/upload 0.16.16 → 0.17.0
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 +19 -0
- package/dist/src/ModifyUpload.svelte +1 -1
- package/package.json +5 -6
- package/src/ModifyUpload.svelte +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @gradio/upload
|
|
2
2
|
|
|
3
|
+
## 0.17.0
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- [#11858](https://github.com/gradio-app/gradio/pull/11858) [`3f8ea13`](https://github.com/gradio-app/gradio/commit/3f8ea13a8ca92abf0ad34392e403a449fda3c6c2) - remove lite. Thanks @pngwn!
|
|
8
|
+
|
|
9
|
+
### Dependency updates
|
|
10
|
+
|
|
11
|
+
- @gradio/atoms@0.18.0
|
|
12
|
+
- @gradio/client@1.19.0
|
|
13
|
+
|
|
14
|
+
## 0.16.17
|
|
15
|
+
|
|
16
|
+
### Dependency updates
|
|
17
|
+
|
|
18
|
+
- @gradio/client@1.18.0
|
|
19
|
+
- @gradio/icons@0.14.0
|
|
20
|
+
- @gradio/atoms@0.17.0
|
|
21
|
+
|
|
3
22
|
## 0.16.16
|
|
4
23
|
|
|
5
24
|
### Fixes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script>import { IconButton, IconButtonWrapper } from "@gradio/atoms";
|
|
2
2
|
import { Edit, Clear, Undo, Download } from "@gradio/icons";
|
|
3
|
-
import { DownloadLink } from "@gradio/
|
|
3
|
+
import { DownloadLink } from "@gradio/atoms";
|
|
4
4
|
import { createEventDispatcher } from "svelte";
|
|
5
5
|
export let editable = false;
|
|
6
6
|
export let undoable = false;
|
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradio/upload",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
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/
|
|
11
|
-
"@gradio/
|
|
12
|
-
"@gradio/
|
|
13
|
-
"@gradio/
|
|
14
|
-
"@gradio/icons": "^0.13.1"
|
|
10
|
+
"@gradio/icons": "^0.14.0",
|
|
11
|
+
"@gradio/client": "^1.19.0",
|
|
12
|
+
"@gradio/atoms": "^0.18.0",
|
|
13
|
+
"@gradio/utils": "^0.10.2"
|
|
15
14
|
},
|
|
16
15
|
"main_changeset": true,
|
|
17
16
|
"exports": {
|
package/src/ModifyUpload.svelte
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { IconButton, IconButtonWrapper } from "@gradio/atoms";
|
|
3
3
|
import type { I18nFormatter } from "@gradio/utils";
|
|
4
4
|
import { Edit, Clear, Undo, Download } from "@gradio/icons";
|
|
5
|
-
import { DownloadLink } from "@gradio/
|
|
5
|
+
import { DownloadLink } from "@gradio/atoms";
|
|
6
6
|
|
|
7
7
|
import { createEventDispatcher } from "svelte";
|
|
8
8
|
|