@hoddy-ui/next 2.0.15 → 2.0.18

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
@@ -206,7 +206,8 @@ var Typography = forwardRef(
206
206
  gutterBottom = 0,
207
207
  numberOfLines,
208
208
  adjustsFontSizeToFit,
209
- fontWeight = 400
209
+ fontWeight = 400,
210
+ ...props
210
211
  }, ref) => {
211
212
  const colors2 = useColors();
212
213
  const fontSize = {
@@ -237,7 +238,8 @@ var Typography = forwardRef(
237
238
  ref,
238
239
  numberOfLines,
239
240
  adjustsFontSizeToFit,
240
- style: { ...styles2.text, ...style }
241
+ style: { ...styles2.text, ...style },
242
+ ...props
241
243
  },
242
244
  children
243
245
  );
@@ -1543,13 +1545,13 @@ var TextField2 = ({
1543
1545
  alignSelf: "stretch",
1544
1546
  paddingLeft: moderateScale3(10),
1545
1547
  paddingRight: moderateScale3(10),
1546
- color: colors2.dark.light,
1548
+ color: colors2.dark.main,
1547
1549
  zIndex: 10
1548
1550
  // backgroundColor: "#284",
1549
1551
  },
1550
1552
  inputText: {
1551
1553
  fontSize: "14@ms",
1552
- color: colors2.dark.light,
1554
+ color: colors2.dark.main,
1553
1555
  paddingLeft: moderateScale3(10)
1554
1556
  },
1555
1557
  placeholder: {