@gradio/button 0.3.0 → 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 CHANGED
@@ -1,5 +1,22 @@
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
+
14
+ ## 0.3.1
15
+
16
+ ### Dependency updates
17
+
18
+ - @gradio/upload@0.13.1
19
+
3
20
  ## 0.3.0
4
21
 
5
22
  ### Features
@@ -187,8 +187,12 @@ export let min_width = void 0;
187
187
  }
188
188
 
189
189
  .huggingface {
190
- border: var(--button-border-width) solid
191
- var(--button-secondary-border-color);
192
- background: var(--background-fill-primary);
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.0",
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/client": "^1.6.0",
10
+ "@gradio/client": "^1.7.0",
11
11
  "@gradio/utils": "^0.7.0",
12
- "@gradio/upload": "^0.13.0"
12
+ "@gradio/upload": "^0.13.2"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@gradio/preview": "^0.12.0"
@@ -190,8 +190,12 @@
190
190
  }
191
191
 
192
192
  .huggingface {
193
- border: var(--button-border-width) solid
194
- var(--button-secondary-border-color);
195
- background: var(--background-fill-primary);
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>