sapo-components-ui-rn 1.0.53 → 1.0.55
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
|
@@ -5537,7 +5537,7 @@ var TextInputFlat = function (_a) {
|
|
|
5537
5537
|
var _a;
|
|
5538
5538
|
if (parentState.focused) {
|
|
5539
5539
|
return (React$3.createElement(View$1, { style: {
|
|
5540
|
-
paddingBottom: Platform.OS === "ios" ? 9 :
|
|
5540
|
+
paddingBottom: Platform.OS === "ios" ? 9 : 14,
|
|
5541
5541
|
} },
|
|
5542
5542
|
React$3.createElement(Text$1, { color: theme.colors.textSecondary },
|
|
5543
5543
|
prefix, " ")));
|
|
@@ -5545,7 +5545,7 @@ var TextInputFlat = function (_a) {
|
|
|
5545
5545
|
else if (parentState.value !== undefined &&
|
|
5546
5546
|
((_a = parentState.value) === null || _a === void 0 ? void 0 : _a.toString()) !== "") {
|
|
5547
5547
|
return (React$3.createElement(View$1, { style: {
|
|
5548
|
-
paddingBottom: Platform.OS === "ios" ? 9 :
|
|
5548
|
+
paddingBottom: Platform.OS === "ios" ? 9 : 14,
|
|
5549
5549
|
} },
|
|
5550
5550
|
React$3.createElement(Text$1, { color: theme.colors.textSecondary },
|
|
5551
5551
|
prefix, " ")));
|
package/dist/index.js
CHANGED
|
@@ -5570,7 +5570,7 @@ var TextInputFlat = function (_a) {
|
|
|
5570
5570
|
var _a;
|
|
5571
5571
|
if (parentState.focused) {
|
|
5572
5572
|
return (React__namespace.createElement(reactNative.View, { style: {
|
|
5573
|
-
paddingBottom: reactNative.Platform.OS === "ios" ? 9 :
|
|
5573
|
+
paddingBottom: reactNative.Platform.OS === "ios" ? 9 : 14,
|
|
5574
5574
|
} },
|
|
5575
5575
|
React__namespace.createElement(Text$1, { color: theme.colors.textSecondary },
|
|
5576
5576
|
prefix, " ")));
|
|
@@ -5578,7 +5578,7 @@ var TextInputFlat = function (_a) {
|
|
|
5578
5578
|
else if (parentState.value !== undefined &&
|
|
5579
5579
|
((_a = parentState.value) === null || _a === void 0 ? void 0 : _a.toString()) !== "") {
|
|
5580
5580
|
return (React__namespace.createElement(reactNative.View, { style: {
|
|
5581
|
-
paddingBottom: reactNative.Platform.OS === "ios" ? 9 :
|
|
5581
|
+
paddingBottom: reactNative.Platform.OS === "ios" ? 9 : 14,
|
|
5582
5582
|
} },
|
|
5583
5583
|
React__namespace.createElement(Text$1, { color: theme.colors.textSecondary },
|
|
5584
5584
|
prefix, " ")));
|
package/package.json
CHANGED
|
@@ -296,7 +296,7 @@ const TextInputFlat = ({
|
|
|
296
296
|
return (
|
|
297
297
|
<View
|
|
298
298
|
style={{
|
|
299
|
-
paddingBottom: Platform.OS === "ios" ? 9 :
|
|
299
|
+
paddingBottom: Platform.OS === "ios" ? 9 : 14,
|
|
300
300
|
}}
|
|
301
301
|
>
|
|
302
302
|
<Text color={theme.colors.textSecondary}>
|
|
@@ -312,7 +312,7 @@ const TextInputFlat = ({
|
|
|
312
312
|
return (
|
|
313
313
|
<View
|
|
314
314
|
style={{
|
|
315
|
-
paddingBottom: Platform.OS === "ios" ? 9 :
|
|
315
|
+
paddingBottom: Platform.OS === "ios" ? 9 : 14,
|
|
316
316
|
}}
|
|
317
317
|
>
|
|
318
318
|
<Text color={theme.colors.textSecondary}>
|