@gradio/image 0.25.1 → 0.25.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 +18 -0
- package/Image.stories.svelte +5 -3
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @gradio/image
|
|
2
2
|
|
|
3
|
+
## 0.25.3
|
|
4
|
+
|
|
5
|
+
### Dependency updates
|
|
6
|
+
|
|
7
|
+
- @gradio/utils@0.11.3
|
|
8
|
+
- @gradio/atoms@0.22.0
|
|
9
|
+
- @gradio/statustracker@0.12.4
|
|
10
|
+
- @gradio/upload@0.17.6
|
|
11
|
+
|
|
12
|
+
## 0.25.2
|
|
13
|
+
|
|
14
|
+
### Dependency updates
|
|
15
|
+
|
|
16
|
+
- @gradio/atoms@0.21.0
|
|
17
|
+
- @gradio/client@2.0.4
|
|
18
|
+
- @gradio/statustracker@0.12.3
|
|
19
|
+
- @gradio/upload@0.17.5
|
|
20
|
+
|
|
3
21
|
## 0.25.1
|
|
4
22
|
|
|
5
23
|
### Fixes
|
package/Image.stories.svelte
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<script module>
|
|
2
2
|
import { defineMeta } from "@storybook/addon-svelte-csf";
|
|
3
3
|
import StaticImage from "./Index.svelte";
|
|
4
|
-
import { userEvent, within } from "storybook/test";
|
|
4
|
+
import { userEvent, within, expect } from "storybook/test";
|
|
5
5
|
import { allModes } from "../storybook/modes";
|
|
6
6
|
import { wrapProps } from "../storybook/wrapProps";
|
|
7
7
|
|
|
@@ -39,8 +39,10 @@
|
|
|
39
39
|
}}
|
|
40
40
|
play={async ({ canvasElement }) => {
|
|
41
41
|
const canvas = within(canvasElement);
|
|
42
|
-
const expand_btn = canvas.
|
|
43
|
-
|
|
42
|
+
const expand_btn = await canvas.findByRole("button", {
|
|
43
|
+
name: "Fullscreen"
|
|
44
|
+
});
|
|
45
|
+
expect(expand_btn).toBeTruthy();
|
|
44
46
|
}}
|
|
45
47
|
>
|
|
46
48
|
{#snippet template(args)}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradio/image",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.3",
|
|
4
4
|
"description": "Gradio UI packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "",
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
"cropperjs": "^2.0.1",
|
|
11
11
|
"lazy-brush": "^2.0.2",
|
|
12
12
|
"resize-observer-polyfill": "^1.5.1",
|
|
13
|
-
"@gradio/atoms": "^0.
|
|
14
|
-
"@gradio/client": "^2.0.
|
|
13
|
+
"@gradio/atoms": "^0.22.0",
|
|
14
|
+
"@gradio/client": "^2.0.4",
|
|
15
15
|
"@gradio/icons": "^0.15.1",
|
|
16
|
-
"@gradio/
|
|
17
|
-
"@gradio/
|
|
18
|
-
"@gradio/utils": "^0.11.
|
|
16
|
+
"@gradio/upload": "^0.17.6",
|
|
17
|
+
"@gradio/statustracker": "^0.12.4",
|
|
18
|
+
"@gradio/utils": "^0.11.3"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@gradio/preview": "^0.15.2"
|