dhre-ui-kit 0.0.159 → 0.0.160
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/lib/index.js +3 -3
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +3 -3
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -3295,16 +3295,16 @@ const CommonTextInput = (props) => {
|
|
|
3295
3295
|
pointerEvents,
|
|
3296
3296
|
multiline,
|
|
3297
3297
|
numberOfLines: multiline ? 4 : 1,
|
|
3298
|
-
right: /* @__PURE__ */ React__default["default"].createElement(
|
|
3298
|
+
right: rightIcon ? /* @__PURE__ */ React__default["default"].createElement(
|
|
3299
3299
|
reactNativePaper.TextInput.Icon,
|
|
3300
3300
|
{
|
|
3301
|
-
icon: rightIcon
|
|
3301
|
+
icon: rightIcon,
|
|
3302
3302
|
size: 24,
|
|
3303
3303
|
onPress: () => {
|
|
3304
3304
|
onRightIconPress?.();
|
|
3305
3305
|
}
|
|
3306
3306
|
}
|
|
3307
|
-
),
|
|
3307
|
+
) : null,
|
|
3308
3308
|
...props
|
|
3309
3309
|
}
|
|
3310
3310
|
), errorMessage ? /* @__PURE__ */ React__default["default"].createElement(
|