@hoddy-ui/next 2.0.13 → 2.0.14
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 +1 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1144,7 +1144,7 @@ var ListItem = ({
|
|
|
1144
1144
|
|
|
1145
1145
|
// ../src/Components/TextField.tsx
|
|
1146
1146
|
import { Ionicons as Ionicons3, MaterialIcons as MaterialIcons5 } from "@expo/vector-icons";
|
|
1147
|
-
import React15, {
|
|
1147
|
+
import React15, { useRef, useState as useState7 } from "react";
|
|
1148
1148
|
import { Animated, TextInput as TextInput2, TouchableOpacity as TouchableOpacity7, View as View10 } from "react-native";
|
|
1149
1149
|
import {
|
|
1150
1150
|
ScaledSheet as ScaledSheet12,
|
|
@@ -1486,7 +1486,6 @@ var TextField = ({
|
|
|
1486
1486
|
var TextField2 = ({
|
|
1487
1487
|
label,
|
|
1488
1488
|
keyboardType,
|
|
1489
|
-
variant,
|
|
1490
1489
|
color = "primary",
|
|
1491
1490
|
value,
|
|
1492
1491
|
type,
|
|
@@ -1517,9 +1516,7 @@ var TextField2 = ({
|
|
|
1517
1516
|
props.multiline ? 50 + (props.numberOfLines || 1) * 18 : 50
|
|
1518
1517
|
);
|
|
1519
1518
|
const setFocused = (value2) => {
|
|
1520
|
-
|
|
1521
|
-
_setFocused(value2);
|
|
1522
|
-
});
|
|
1519
|
+
_setFocused(value2);
|
|
1523
1520
|
};
|
|
1524
1521
|
const styles2 = ScaledSheet12.create({
|
|
1525
1522
|
root: {
|