@gradio/button 0.2.18 → 0.2.20

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.
@@ -45,7 +45,7 @@
45
45
  scale: {
46
46
  options: [null, 0.5, 1, 2],
47
47
  description:
48
- "relative width compared to adjacent Components in a Row. For example, if Component A has scale=2, and Component B has scale=1, A will be twice as wide as B. Should be an integer.",
48
+ "relative size compared to adjacent Components. For example if Components A and B are in a Row, and A has scale=2, and B has scale=1, A will be twice as wide as B. Should be an integer. Only applies in Rows, or top-level Components in Blocks where fill_height=True. ",
49
49
  control: { type: "select" }
50
50
  }
51
51
  }}
package/CHANGELOG.md CHANGED
@@ -1,10 +1,27 @@
1
1
  # @gradio/button
2
2
 
3
+ ## 0.2.20
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`49d9c48`](https://github.com/gradio-app/gradio/commit/49d9c48537aa706bf72628e3640389470138bdc6)]:
8
+ - @gradio/client@0.12.0
9
+ - @gradio/upload@0.7.2
10
+
11
+ ## 0.2.19
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`572e360`](https://github.com/gradio-app/gradio/commit/572e360fff4a03c335b86e1a7517a44cb6af2bcd), [`68a54a7`](https://github.com/gradio-app/gradio/commit/68a54a7a310d8d7072fdae930bf1cfdf12c45a7f), [`fdd1521`](https://github.com/gradio-app/gradio/commit/fdd15213c24b9cbc58bbc1b6beb4af7c18f48557), [`c3e61e4`](https://github.com/gradio-app/gradio/commit/c3e61e4f70696a71aede67b65d28447eb67daf16)]:
16
+ - @gradio/upload@0.7.1
17
+ - @gradio/client@0.11.0
18
+ - @gradio/utils@0.2.2
19
+
3
20
  ## 0.2.18
4
21
 
5
22
  ### Fixes
6
23
 
7
- - [#7126](https://github.com/gradio-app/gradio/pull/7126) [`5727b92`](https://github.com/gradio-app/gradio/commit/5727b92abc8a00a675bfc0a921b38de771af947b) - Allow buttons to take null value. Thanks [@abidlabs](https://github.com/abidlabs)!
24
+ - [#7126](https://github.com/gradio-app/gradio/pull/7126) [`5727b92`](https://github.com/gradio-app/gradio/commit/5727b92abc8a00a675bfc0a921b38de771af947b) - Allow buttons to take null value. Thanks [@abidlabs](https://github.com/abidlabs)!
8
25
 
9
26
  ## 0.2.17
10
27
 
@@ -247,4 +264,4 @@ Thanks [@pngwn](https://github.com/pngwn)!
247
264
  ### Patch Changes
248
265
 
249
266
  - Updated dependencies []:
250
- - @gradio/utils@0.0.2
267
+ - @gradio/utils@0.0.2
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@gradio/button",
3
- "version": "0.2.18",
3
+ "version": "0.2.20",
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": "^0.10.1",
11
- "@gradio/utils": "^0.2.1",
12
- "@gradio/upload": "^0.7.0"
10
+ "@gradio/client": "^0.12.0",
11
+ "@gradio/upload": "^0.7.2",
12
+ "@gradio/utils": "^0.2.2"
13
13
  },
14
14
  "main": "./Index.svelte",
15
15
  "main_changeset": true,