@hoddy-ui/next 2.5.95 → 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.mjs CHANGED
@@ -1673,12 +1673,13 @@ var TextFieldBase = React15.forwardRef(
1673
1673
  ...inputStyles
1674
1674
  },
1675
1675
  input: {
1676
- fontSize: "14@s",
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
- ...isFloating ? { paddingTop: "11@vs", fontFamily: getFontFamily(400) } : {},
1682
+ ...isFloating ? { marginTop: "13@ms", fontFamily: getFontFamily(400) } : {},
1682
1683
  color: disabled ? colors2.textSecondary.main : colors2.dark.main,
1683
1684
  zIndex: 10
1684
1685
  },
@@ -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@s" : "13@s",
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@s",
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"
@@ -1837,6 +1838,7 @@ var TextFieldBase = React15.forwardRef(
1837
1838
  placeholder: labelOpen ? placeholder : "",
1838
1839
  selectTextOnFocus: !disabled,
1839
1840
  onSubmitEditing,
1841
+ verticalAlign: "middle",
1840
1842
  multiline,
1841
1843
  textAlignVertical: multiline ? "top" : "center",
1842
1844
  ...formProps,