@scripso-homepad/ui 0.4.4 → 0.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scripso-homepad/ui",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "type": "module",
5
5
  "description": "Cross-platform UI components for Homepad (React Web + React Native)",
6
6
  "license": "MIT",
@@ -75,7 +75,6 @@ const sizeConfig = {
75
75
  paddingBottom: 8,
76
76
  paddingLeft: 24,
77
77
  paddingHorizontalCentered: 24,
78
- minHeight: 52,
79
78
  text: buttonTypography.lg,
80
79
  iconContainerSize: 36,
81
80
  iconContainerRadius: 12,
@@ -89,7 +88,6 @@ const sizeConfig = {
89
88
  paddingBottom: 8,
90
89
  paddingLeft: 16,
91
90
  paddingHorizontalCentered: 16,
92
- minHeight: 48,
93
91
  text: buttonTypography.sm,
94
92
  iconContainerSize: 32,
95
93
  iconContainerRadius: 8,
@@ -135,7 +133,6 @@ export function Button({
135
133
  {
136
134
  borderRadius: metrics.borderRadius,
137
135
  backgroundColor: preset.backgroundColor,
138
- minHeight: metrics.minHeight,
139
136
  paddingTop: metrics.paddingTop,
140
137
  paddingBottom: metrics.paddingBottom,
141
138
  paddingLeft: hasIcon ? metrics.paddingLeft : metrics.paddingHorizontalCentered,