@gradio/button 0.3.0-beta.7 → 0.3.0

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 +20 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @gradio/button
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Features
6
+
7
+ - [#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
8
+ - [#8843](https://github.com/gradio-app/gradio/pull/8843) [`6f95286`](https://github.com/gradio-app/gradio/commit/6f95286337459efbccb95c9cfac63355669df9ee) - Redesign `gr.Button()`
9
+ - [#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`
10
+ - [#8843](https://github.com/gradio-app/gradio/pull/8843) [`6f95286`](https://github.com/gradio-app/gradio/commit/6f95286337459efbccb95c9cfac63355669df9ee) - UI theme fixes
11
+
12
+ ### Fixes
13
+
14
+
15
+ - [#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
16
+
17
+ ### Dependencies
18
+
19
+ - @gradio/client@1.6.0
20
+ - @gradio/upload@0.13.0
21
+ - @gradio/utils@0.7.0
22
+
3
23
  ## 0.3.0-beta.7
4
24
 
5
25
  ### 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.0",
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/client": "^1.6.0",
11
+ "@gradio/utils": "^0.7.0",
12
+ "@gradio/upload": "^0.13.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,