@hoddy-ui/next 2.5.96 → 2.5.98
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/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1673,10 +1673,11 @@ var TextFieldBase = React15.forwardRef(
|
|
|
1673
1673
|
...inputStyles
|
|
1674
1674
|
},
|
|
1675
1675
|
input: {
|
|
1676
|
-
fontSize: "14@
|
|
1676
|
+
fontSize: "14@ms",
|
|
1677
1677
|
flex: 1,
|
|
1678
1678
|
alignSelf: "stretch",
|
|
1679
1679
|
paddingLeft: inputPadding,
|
|
1680
|
+
lineHeight: "18@ms",
|
|
1680
1681
|
paddingRight: moderateScale2(10),
|
|
1681
1682
|
...isFloating ? { marginTop: "13@ms", fontFamily: getFontFamily(400) } : {},
|
|
1682
1683
|
color: disabled ? colors2.textSecondary.main : colors2.dark.main,
|
|
@@ -1704,12 +1705,12 @@ var TextFieldBase = React15.forwardRef(
|
|
|
1704
1705
|
fontFamily: getFontFamily(400),
|
|
1705
1706
|
position: "absolute",
|
|
1706
1707
|
left: inputPadding,
|
|
1707
|
-
fontSize: labelOpen ? "10@
|
|
1708
|
+
fontSize: labelOpen ? "10@ms" : "13@ms",
|
|
1708
1709
|
color: error ? colors2.error.main : focused ? theme === "dark" ? colors2[color].light : colors2[color].main : colors2.textSecondary.main
|
|
1709
1710
|
}
|
|
1710
1711
|
} : {},
|
|
1711
1712
|
helperText: {
|
|
1712
|
-
paddingHorizontal: "15@
|
|
1713
|
+
paddingHorizontal: "15@ms",
|
|
1713
1714
|
flex: 1,
|
|
1714
1715
|
color: error ? colors2.error.main : focused ? theme === "dark" ? colors2[color].light : colors2[color].main : colors2.textSecondary.main,
|
|
1715
1716
|
paddingTop: "4@ms"
|