@gradio/imageslider 0.2.4 → 0.2.6
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,24 @@
|
|
1
1
|
# @gradio/imageslider
|
2
2
|
|
3
|
+
## 0.2.6
|
4
|
+
|
5
|
+
### Dependency updates
|
6
|
+
|
7
|
+
- @gradio/statustracker@0.10.13
|
8
|
+
- @gradio/atoms@0.16.2
|
9
|
+
- @gradio/client@1.15.3
|
10
|
+
- @gradio/upload@0.16.8
|
11
|
+
|
12
|
+
## 0.2.5
|
13
|
+
|
14
|
+
### Fixes
|
15
|
+
|
16
|
+
- [#11381](https://github.com/gradio-app/gradio/pull/11381) [`0e6fae0`](https://github.com/gradio-app/gradio/commit/0e6fae015069b6b4c44523642abfbbfced394ab2) - Fix transparent bg issue in gr.ImageSlider. Thanks @hannahblair!
|
17
|
+
|
18
|
+
### Dependency updates
|
19
|
+
|
20
|
+
- @gradio/statustracker@0.10.12
|
21
|
+
|
3
22
|
## 0.2.4
|
4
23
|
|
5
24
|
### Dependency updates
|
@@ -167,7 +167,7 @@ function handle_image_load(event) {
|
|
167
167
|
src={value?.[1]?.url}
|
168
168
|
alt=""
|
169
169
|
loading="lazy"
|
170
|
-
{style}
|
170
|
+
style="{style}; background: var(--block-background-fill);"
|
171
171
|
transform="translate({$transform.x}px, {$transform.y}px) scale({$transform.z})"
|
172
172
|
{fullscreen}
|
173
173
|
{max_height}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/imageslider",
|
3
|
-
"version": "0.2.
|
3
|
+
"version": "0.2.6",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
@@ -11,12 +11,12 @@
|
|
11
11
|
"@types/d3-selection": "^3.0.11",
|
12
12
|
"d3-drag": "^3.0.0",
|
13
13
|
"d3-selection": "^3.0.0",
|
14
|
-
"@gradio/atoms": "^0.16.
|
14
|
+
"@gradio/atoms": "^0.16.2",
|
15
|
+
"@gradio/client": "^1.15.3",
|
15
16
|
"@gradio/icons": "^0.12.0",
|
16
|
-
"@gradio/
|
17
|
-
"@gradio/upload": "^0.16.
|
17
|
+
"@gradio/statustracker": "^0.10.13",
|
18
|
+
"@gradio/upload": "^0.16.8",
|
18
19
|
"@gradio/utils": "^0.10.2",
|
19
|
-
"@gradio/statustracker": "^0.10.12",
|
20
20
|
"@gradio/wasm": "^0.18.1"
|
21
21
|
},
|
22
22
|
"exports": {
|
@@ -33,7 +33,7 @@
|
|
33
33
|
"./package.json": "./package.json"
|
34
34
|
},
|
35
35
|
"devDependencies": {
|
36
|
-
"@gradio/preview": "^0.13.
|
36
|
+
"@gradio/preview": "^0.13.2"
|
37
37
|
},
|
38
38
|
"main_changeset": true,
|
39
39
|
"peerDependencies": {
|