@gradio/image 0.21.6 → 0.21.7
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,21 @@
|
|
1
1
|
# @gradio/image
|
2
2
|
|
3
|
+
## 0.21.7
|
4
|
+
|
5
|
+
### Features
|
6
|
+
|
7
|
+
- [#10847](https://github.com/gradio-app/gradio/pull/10847) [`d5fde7c`](https://github.com/gradio-app/gradio/commit/d5fde7c390004ce5394072100b059f545d2d4eae) - Babylon update for model3D. Thanks @CedricGuillemet!
|
8
|
+
|
9
|
+
### Fixes
|
10
|
+
|
11
|
+
- [#10901](https://github.com/gradio-app/gradio/pull/10901) [`64a6ead`](https://github.com/gradio-app/gradio/commit/64a6ead05c99cfd5787e7f112838f2be83082a69) - Fix EventData scaling when `gr.Image` is in fullscreen mode. Thanks @tiago-gsantos!
|
12
|
+
|
13
|
+
### Dependency updates
|
14
|
+
|
15
|
+
- @gradio/wasm@0.18.1
|
16
|
+
- @gradio/client@1.14.1
|
17
|
+
- @gradio/upload@0.15.7
|
18
|
+
|
3
19
|
## 0.21.6
|
4
20
|
|
5
21
|
### Dependency updates
|
@@ -91,13 +91,6 @@ let image_container;
|
|
91
91
|
justify-content: center;
|
92
92
|
}
|
93
93
|
|
94
|
-
.image-frame {
|
95
|
-
width: auto;
|
96
|
-
height: 100%;
|
97
|
-
display: flex;
|
98
|
-
align-items: center;
|
99
|
-
justify-content: center;
|
100
|
-
}
|
101
94
|
.image-frame :global(img) {
|
102
95
|
width: var(--size-full);
|
103
96
|
height: var(--size-full);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/image",
|
3
|
-
"version": "0.21.
|
3
|
+
"version": "0.21.7",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -10,13 +10,13 @@
|
|
10
10
|
"cropperjs": "^1.5.12",
|
11
11
|
"lazy-brush": "^1.0.1",
|
12
12
|
"resize-observer-polyfill": "^1.5.1",
|
13
|
-
"@gradio/client": "^1.14.0",
|
14
13
|
"@gradio/atoms": "^0.14.1",
|
15
|
-
"@gradio/
|
16
|
-
"@gradio/upload": "^0.15.6",
|
14
|
+
"@gradio/client": "^1.14.1",
|
17
15
|
"@gradio/icons": "^0.10.0",
|
16
|
+
"@gradio/statustracker": "^0.10.6",
|
18
17
|
"@gradio/utils": "^0.10.1",
|
19
|
-
"@gradio/
|
18
|
+
"@gradio/upload": "^0.15.7",
|
19
|
+
"@gradio/wasm": "^0.18.1"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
22
|
"@gradio/preview": "^0.13.0"
|
@@ -103,13 +103,6 @@
|
|
103
103
|
justify-content: center;
|
104
104
|
}
|
105
105
|
|
106
|
-
.image-frame {
|
107
|
-
width: auto;
|
108
|
-
height: 100%;
|
109
|
-
display: flex;
|
110
|
-
align-items: center;
|
111
|
-
justify-content: center;
|
112
|
-
}
|
113
106
|
.image-frame :global(img) {
|
114
107
|
width: var(--size-full);
|
115
108
|
height: var(--size-full);
|
package/shared/Webcam.svelte
CHANGED