@gradio/button 0.3.0-beta.7 → 0.3.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @gradio/button
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/upload@0.13.1
8
+
9
+ ## 0.3.0
10
+
11
+ ### Features
12
+
13
+ - [#8843](https://github.com/gradio-app/gradio/pull/8843) [`6f95286`](https://github.com/gradio-app/gradio/commit/6f95286337459efbccb95c9cfac63355669df9ee) - Adding new themes to Gradio 5.0
14
+ - [#8843](https://github.com/gradio-app/gradio/pull/8843) [`6f95286`](https://github.com/gradio-app/gradio/commit/6f95286337459efbccb95c9cfac63355669df9ee) - Redesign `gr.Button()`
15
+ - [#8843](https://github.com/gradio-app/gradio/pull/8843) [`6f95286`](https://github.com/gradio-app/gradio/commit/6f95286337459efbccb95c9cfac63355669df9ee) - Adds a "huggingface" button variant, and makes it the default for `gr.LoginButton` and `gr.DuplicateButton`
16
+ - [#8843](https://github.com/gradio-app/gradio/pull/8843) [`6f95286`](https://github.com/gradio-app/gradio/commit/6f95286337459efbccb95c9cfac63355669df9ee) - UI theme fixes
17
+
18
+ ### Fixes
19
+
20
+
21
+ - [#8843](https://github.com/gradio-app/gradio/pull/8843) [`6f95286`](https://github.com/gradio-app/gradio/commit/6f95286337459efbccb95c9cfac63355669df9ee) - Center icon in button when no text is present
22
+
23
+ ### Dependencies
24
+
25
+ - @gradio/client@1.6.0
26
+ - @gradio/upload@0.13.0
27
+ - @gradio/utils@0.7.0
28
+
3
29
  ## 0.3.0-beta.7
4
30
 
5
31
  ### Features
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@gradio/button",
3
- "version": "0.3.0-beta.7",
3
+ "version": "0.3.1",
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.0-beta.7",
11
- "@gradio/utils": "^0.7.0-beta.2",
12
- "@gradio/client": "^1.6.0-beta.4"
10
+ "@gradio/upload": "^0.13.1",
11
+ "@gradio/client": "^1.6.0",
12
+ "@gradio/utils": "^0.7.0"
13
13
  },
14
14
  "devDependencies": {
15
- "@gradio/preview": "^0.12.0-beta.1"
15
+ "@gradio/preview": "^0.12.0"
16
16
  },
17
17
  "main": "./Index.svelte",
18
18
  "main_changeset": true,