dhre-ui-kit 0.0.331 → 0.0.332

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 CHANGED
@@ -4250,7 +4250,7 @@ const OTPInput = React__default["default"].forwardRef(
4250
4250
  onChangeText: (text) => handleChange(index, text),
4251
4251
  value: otp[index] ? "\u25CF" : "",
4252
4252
  placeholder: "",
4253
- keyboardType: "number-pad",
4253
+ keyboardType: reactNative.Platform.OS === "ios" ? "number-pad" : "numeric",
4254
4254
  ref: (el) => refs.current[index] = el,
4255
4255
  returnKeyType: otp.length === length ? "done" : "next",
4256
4256
  importantForAutofill: "yes",