@gradio/button 0.3.1 → 0.3.2
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 +11 -0
- package/dist/shared/Button.svelte +7 -3
- package/package.json +4 -4
- package/shared/Button.svelte +7 -3
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# @gradio/button
|
2
2
|
|
3
|
+
## 0.3.2
|
4
|
+
|
5
|
+
### Fixes
|
6
|
+
|
7
|
+
- [#9659](https://github.com/gradio-app/gradio/pull/9659) [`b1a0f6d`](https://github.com/gradio-app/gradio/commit/b1a0f6db0d6900cb4089f4d5809a5f1d5e2609ee) - Fix the behavior of `gr.LoginButton` locally and on Spaces. Thanks @abidlabs!
|
8
|
+
|
9
|
+
### Dependency updates
|
10
|
+
|
11
|
+
- @gradio/client@1.7.0
|
12
|
+
- @gradio/upload@0.13.2
|
13
|
+
|
3
14
|
## 0.3.1
|
4
15
|
|
5
16
|
### Dependency updates
|
@@ -187,8 +187,12 @@ export let min_width = void 0;
|
|
187
187
|
}
|
188
188
|
|
189
189
|
.huggingface {
|
190
|
-
|
191
|
-
|
192
|
-
|
190
|
+
background: rgb(20, 28, 46);
|
191
|
+
color: white;
|
192
|
+
}
|
193
|
+
|
194
|
+
.huggingface:hover {
|
195
|
+
background: rgb(40, 48, 66);
|
196
|
+
color: white;
|
193
197
|
}
|
194
198
|
</style>
|
package/package.json
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gradio/button",
|
3
|
-
"version": "0.3.
|
3
|
+
"version": "0.3.2",
|
4
4
|
"description": "Gradio UI packages",
|
5
5
|
"type": "module",
|
6
6
|
"author": "",
|
7
7
|
"license": "ISC",
|
8
8
|
"private": false,
|
9
9
|
"dependencies": {
|
10
|
-
"@gradio/
|
11
|
-
"@gradio/
|
12
|
-
"@gradio/
|
10
|
+
"@gradio/client": "^1.7.0",
|
11
|
+
"@gradio/utils": "^0.7.0",
|
12
|
+
"@gradio/upload": "^0.13.2"
|
13
13
|
},
|
14
14
|
"devDependencies": {
|
15
15
|
"@gradio/preview": "^0.12.0"
|
package/shared/Button.svelte
CHANGED
@@ -190,8 +190,12 @@
|
|
190
190
|
}
|
191
191
|
|
192
192
|
.huggingface {
|
193
|
-
|
194
|
-
|
195
|
-
|
193
|
+
background: rgb(20, 28, 46);
|
194
|
+
color: white;
|
195
|
+
}
|
196
|
+
|
197
|
+
.huggingface:hover {
|
198
|
+
background: rgb(40, 48, 66);
|
199
|
+
color: white;
|
196
200
|
}
|
197
201
|
</style>
|