sapo-components-ui-rn 1.0.61 → 1.0.62

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.esm.js CHANGED
@@ -6105,8 +6105,8 @@ var TextInputNumber = function (_a) {
6105
6105
  React__default.createElement(Icon$1, { name: "IconClearText", type: "Svg", size: 24 }))),
6106
6106
  right && (React__default.createElement(View, { paddingLeft: SPACE_8, height: "100%" }, right)),
6107
6107
  React__default.createElement(Spacer, { width: SPACE_12 }))),
6108
- textError.length > 0 && (React__default.createElement(View, { paddingHorizontal: SPACE_12, paddingVertical: SPACE_4 },
6109
- React__default.createElement(Text$1, { style: styles$a.text12, color: colors.textErrorDefault }, textError))),
6108
+ textError.length > 0 && (React__default.createElement(View, { style: styles$a.vError },
6109
+ React__default.createElement(Text$1, { size: 12, numberOfLines: 1, color: theme.colors.textErrorDefault }, textError))),
6110
6110
  React__default.createElement(Modal, { visible: isShowModalKeyboard, transparent: true, animationType: "fade", onRequestClose: onCloseModalKeyboard },
6111
6111
  React__default.createElement(TouchableOpacity, { style: styles$a.modalOverlay, activeOpacity: 1, onPress: onCloseModalKeyboard },
6112
6112
  React__default.createElement(View, { onPress: function () { }, activeOpacity: 1, backgroundColor: colors.surfacePrimaryDefault, style: styles$a.modalContent },
@@ -6209,6 +6209,9 @@ var styles$a = StyleSheet.create(__assign(__assign({}, containerStyles), { disab
6209
6209
  opacity: 0.5,
6210
6210
  }, disabledKeyText: {
6211
6211
  opacity: 0.5,
6212
+ }, vError: {
6213
+ paddingTop: SPACE_4,
6214
+ paddingHorizontal: SPACE_12,
6212
6215
  } }));
6213
6216
  var TextInputNumber$1 = React__default.memo(TextInputNumber);
6214
6217