@gradio/button 0.3.1 → 0.3.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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # @gradio/button
2
2
 
3
+ ## 0.3.3
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/upload@0.13.3
8
+
9
+ ## 0.3.2
10
+
11
+ ### Fixes
12
+
13
+ - [#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!
14
+
15
+ ### Dependency updates
16
+
17
+ - @gradio/client@1.7.0
18
+ - @gradio/upload@0.13.2
19
+
3
20
  ## 0.3.1
4
21
 
5
22
  ### Dependency updates
@@ -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,14 +1,14 @@
1
1
  {
2
2
  "name": "@gradio/button",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
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/upload": "^0.13.1",
11
- "@gradio/client": "^1.6.0",
10
+ "@gradio/client": "^1.7.0",
11
+ "@gradio/upload": "^0.13.3",
12
12
  "@gradio/utils": "^0.7.0"
13
13
  },
14
14
  "devDependencies": {
@@ -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>