@gradio/button 0.6.3 → 0.6.4

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,31 @@
1
1
  # @gradio/button
2
2
 
3
+ ## 0.6.4
4
+
5
+ ### Fixes
6
+
7
+ - [#12911](https://github.com/gradio-app/gradio/pull/12911) [`dcfc429`](https://github.com/gradio-app/gradio/commit/dcfc429a8125204c3aafeabcab251dd7580f9a60) - Fix Button component ignoring the `scale` parameter. Thanks @hztBUAA!
8
+
9
+ ### Dependency updates
10
+
11
+ - @gradio/client@2.1.0
12
+
13
+ ## 0.6.3
14
+
15
+ ### Dependency updates
16
+
17
+ - @gradio/utils@0.11.3
18
+ - @gradio/upload@0.17.6
19
+ - @gradio/image@0.25.3
20
+
21
+ ## 0.6.3
22
+
23
+ ### Dependency updates
24
+
25
+ - @gradio/client@2.0.4
26
+ - @gradio/image@0.25.2
27
+ - @gradio/upload@0.17.5
28
+
3
29
  ## 0.6.3
4
30
 
5
31
  ### Fixes
package/Index.svelte CHANGED
@@ -12,7 +12,6 @@
12
12
  value: string | null;
13
13
  variant: "primary" | "secondary" | "stop";
14
14
  size: "sm" | "md" | "lg";
15
- scale: number;
16
15
  link: string | null;
17
16
  icon: FileData | null;
18
17
  link_target: "_self" | "_blank";
@@ -34,7 +33,7 @@
34
33
  elem_id={gradio.shared.elem_id}
35
34
  elem_classes={gradio.shared.elem_classes}
36
35
  size={gradio.props.size}
37
- scale={gradio.props.scale}
36
+ scale={gradio.shared.scale}
38
37
  link={gradio.props.link}
39
38
  icon={gradio.props.icon}
40
39
  min_width={gradio.shared.min_width}
package/dist/Index.svelte CHANGED
@@ -12,7 +12,6 @@
12
12
  value: string | null;
13
13
  variant: "primary" | "secondary" | "stop";
14
14
  size: "sm" | "md" | "lg";
15
- scale: number;
16
15
  link: string | null;
17
16
  icon: FileData | null;
18
17
  link_target: "_self" | "_blank";
@@ -34,7 +33,7 @@
34
33
  elem_id={gradio.shared.elem_id}
35
34
  elem_classes={gradio.shared.elem_classes}
36
35
  size={gradio.props.size}
37
- scale={gradio.props.scale}
36
+ scale={gradio.shared.scale}
38
37
  link={gradio.props.link}
39
38
  icon={gradio.props.icon}
40
39
  min_width={gradio.shared.min_width}
@@ -5,7 +5,6 @@ interface ButtonProps {
5
5
  value: string | null;
6
6
  variant: "primary" | "secondary" | "stop";
7
7
  size: "sm" | "md" | "lg";
8
- scale: number;
9
8
  link: string | null;
10
9
  icon: FileData | null;
11
10
  link_target: "_self" | "_blank";
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@gradio/button",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
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": "^2.0.3",
11
- "@gradio/image": "^0.25.1",
12
- "@gradio/upload": "^0.17.4",
13
- "@gradio/utils": "^0.11.2"
10
+ "@gradio/client": "^2.1.0",
11
+ "@gradio/image": "^0.25.3",
12
+ "@gradio/upload": "^0.17.6",
13
+ "@gradio/utils": "^0.11.3"
14
14
  },
15
15
  "devDependencies": {
16
16
  "@gradio/preview": "^0.15.2"