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.mjs CHANGED
@@ -4213,7 +4213,7 @@ const OTPInput = React.forwardRef(
4213
4213
  onChangeText: (text) => handleChange(index, text),
4214
4214
  value: otp[index] ? "\u25CF" : "",
4215
4215
  placeholder: "",
4216
- keyboardType: "number-pad",
4216
+ keyboardType: Platform.OS === "ios" ? "number-pad" : "numeric",
4217
4217
  ref: (el) => refs.current[index] = el,
4218
4218
  returnKeyType: otp.length === length ? "done" : "next",
4219
4219
  importantForAutofill: "yes",