@gradio/image 0.22.7 → 0.22.8
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,15 @@
|
|
1
1
|
# @gradio/image
|
2
2
|
|
3
|
+
## 0.22.8
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#11304](https://github.com/gradio-app/gradio/pull/11304) [`bdbc210`](https://github.com/gradio-app/gradio/commit/bdbc210dbf09555b3bd8f647c6f19621771b5771) - Fix custom components build and dev mode with certain base components (Image and Audio at least). Thanks @pngwn!
|
8
|
+
|
9
|
+
### Dependency updates
|
10
|
+
|
11
|
+
- @gradio/statustracker@0.10.12
|
12
|
+
|
3
13
|
## 0.22.7
|
4
14
|
|
5
15
|
### Dependency updates
|
@@ -10,7 +10,7 @@ import {
|
|
10
10
|
} from "@gradio/atoms";
|
11
11
|
import { Download, Image as ImageIcon } from "@gradio/icons";
|
12
12
|
import { get_coordinates_of_clicked_image } from "./utils";
|
13
|
-
import
|
13
|
+
import Image from "./Image.svelte";
|
14
14
|
import { DownloadLink } from "@gradio/wasm/svelte";
|
15
15
|
export let value;
|
16
16
|
export let label = void 0;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/image",
|
3
|
-
"version": "0.22.
|
3
|
+
"version": "0.22.8",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -12,14 +12,14 @@
|
|
12
12
|
"resize-observer-polyfill": "^1.5.1",
|
13
13
|
"@gradio/atoms": "^0.16.1",
|
14
14
|
"@gradio/client": "^1.15.1",
|
15
|
-
"@gradio/icons": "^0.12.0",
|
16
15
|
"@gradio/statustracker": "^0.10.12",
|
16
|
+
"@gradio/icons": "^0.12.0",
|
17
17
|
"@gradio/upload": "^0.16.6",
|
18
|
-
"@gradio/
|
19
|
-
"@gradio/
|
18
|
+
"@gradio/utils": "^0.10.2",
|
19
|
+
"@gradio/wasm": "^0.18.1"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
|
-
"@gradio/preview": "^0.13.
|
22
|
+
"@gradio/preview": "^0.13.1"
|
23
23
|
},
|
24
24
|
"main_changeset": true,
|
25
25
|
"main": "./Index.svelte",
|
@@ -12,7 +12,7 @@
|
|
12
12
|
} from "@gradio/atoms";
|
13
13
|
import { Download, Image as ImageIcon } from "@gradio/icons";
|
14
14
|
import { get_coordinates_of_clicked_image } from "./utils";
|
15
|
-
import
|
15
|
+
import Image from "./Image.svelte";
|
16
16
|
import { DownloadLink } from "@gradio/wasm/svelte";
|
17
17
|
|
18
18
|
import type { I18nFormatter } from "@gradio/utils";
|