ordering-ui-react-native 0.22.57 → 0.22.58

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ordering-ui-react-native",
3
- "version": "0.22.57",
3
+ "version": "0.22.58",
4
4
  "description": "Reusable components made in react native",
5
5
  "main": "src/index.tsx",
6
6
  "author": "ordering.inc",
@@ -630,6 +630,7 @@ const LoginFormUI = (props: LoginParams) => {
630
630
  />
631
631
  )
632
632
  }
633
+ autoCapitalize='none'
633
634
  value={value}
634
635
  forwardRef={passwordRef}
635
636
  onChange={(val: any) => onChange(val)}
@@ -835,6 +835,7 @@ const SignupFormUI = (props: SignupParams) => {
835
835
  />
836
836
  )
837
837
  }
838
+ autoCapitalize='none'
838
839
  value={value}
839
840
  onChange={(val: any) => onChange(val)}
840
841
  returnKeyType="done"