@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.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -267,7 +267,8 @@ var Typography = (0, import_react.forwardRef)(
|
|
|
267
267
|
gutterBottom = 0,
|
|
268
268
|
numberOfLines,
|
|
269
269
|
adjustsFontSizeToFit,
|
|
270
|
-
fontWeight = 400
|
|
270
|
+
fontWeight = 400,
|
|
271
|
+
...props
|
|
271
272
|
}, ref) => {
|
|
272
273
|
const colors2 = useColors();
|
|
273
274
|
const fontSize = {
|
|
@@ -298,7 +299,8 @@ var Typography = (0, import_react.forwardRef)(
|
|
|
298
299
|
ref,
|
|
299
300
|
numberOfLines,
|
|
300
301
|
adjustsFontSizeToFit,
|
|
301
|
-
style: { ...styles2.text, ...style }
|
|
302
|
+
style: { ...styles2.text, ...style },
|
|
303
|
+
...props
|
|
302
304
|
},
|
|
303
305
|
children
|
|
304
306
|
);
|
|
@@ -1579,13 +1581,13 @@ var TextField2 = ({
|
|
|
1579
1581
|
alignSelf: "stretch",
|
|
1580
1582
|
paddingLeft: (0, import_react_native_size_matters14.moderateScale)(10),
|
|
1581
1583
|
paddingRight: (0, import_react_native_size_matters14.moderateScale)(10),
|
|
1582
|
-
color: colors2.dark.
|
|
1584
|
+
color: colors2.dark.main,
|
|
1583
1585
|
zIndex: 10
|
|
1584
1586
|
// backgroundColor: "#284",
|
|
1585
1587
|
},
|
|
1586
1588
|
inputText: {
|
|
1587
1589
|
fontSize: "14@ms",
|
|
1588
|
-
color: colors2.dark.
|
|
1590
|
+
color: colors2.dark.main,
|
|
1589
1591
|
paddingLeft: (0, import_react_native_size_matters14.moderateScale)(10)
|
|
1590
1592
|
},
|
|
1591
1593
|
placeholder: {
|