@gradio/button 0.6.3 → 0.6.5

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,39 @@
1
1
  # @gradio/button
2
2
 
3
+ ## 0.6.5
4
+
5
+ ### Dependency updates
6
+
7
+ - @gradio/utils@0.12.0
8
+ - @gradio/upload@0.17.7
9
+ - @gradio/image@0.25.4
10
+
11
+ ## 0.6.4
12
+
13
+ ### Fixes
14
+
15
+ - [#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!
16
+
17
+ ### Dependency updates
18
+
19
+ - @gradio/client@2.1.0
20
+
21
+ ## 0.6.3
22
+
23
+ ### Dependency updates
24
+
25
+ - @gradio/utils@0.11.3
26
+ - @gradio/upload@0.17.6
27
+ - @gradio/image@0.25.3
28
+
29
+ ## 0.6.3
30
+
31
+ ### Dependency updates
32
+
33
+ - @gradio/client@2.0.4
34
+ - @gradio/image@0.25.2
35
+ - @gradio/upload@0.17.5
36
+
3
37
  ## 0.6.3
4
38
 
5
39
  ### 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,19 +1,19 @@
1
1
  {
2
2
  "name": "@gradio/button",
3
- "version": "0.6.3",
3
+ "version": "0.6.5",
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/image": "^0.25.4",
11
+ "@gradio/upload": "^0.17.7",
12
+ "@gradio/client": "^2.1.0",
13
+ "@gradio/utils": "^0.12.0"
14
14
  },
15
15
  "devDependencies": {
16
- "@gradio/preview": "^0.15.2"
16
+ "@gradio/preview": "^0.16.0"
17
17
  },
18
18
  "main": "./Index.svelte",
19
19
  "main_changeset": true,