be-components 4.2.3 → 4.2.4

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.
@@ -140,7 +140,7 @@ const DOBManager = ({
140
140
  })), /*#__PURE__*/_react.default.createElement(_Themed.TextInput, {
141
141
  value: dob,
142
142
  onFocusPosition: onFocusPosition,
143
- keyboardType: "numeric",
143
+ keyboardType: "default",
144
144
  placeholder: "01/01/2005",
145
145
  editable: player.vouched_status == 'verified' ? false : true,
146
146
  style: {
@@ -131,7 +131,7 @@ const DOBManager = ({
131
131
  })), /*#__PURE__*/React.createElement(TextInput, {
132
132
  value: dob,
133
133
  onFocusPosition: onFocusPosition,
134
- keyboardType: "numeric",
134
+ keyboardType: "default",
135
135
  placeholder: "01/01/2005",
136
136
  editable: player.vouched_status == 'verified' ? false : true,
137
137
  style: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "be-components",
3
- "version": "4.2.3",
3
+ "version": "4.2.4",
4
4
  "description": "Components for BettorEdge Apps",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -100,7 +100,7 @@ const DOBManager = ({ player, walkthrough, onFocusPosition, onPlayerUpdate, onNe
100
100
  <TextInput
101
101
  value={dob}
102
102
  onFocusPosition={onFocusPosition}
103
- keyboardType='numeric'
103
+ keyboardType='default'
104
104
  placeholder='01/01/2005'
105
105
  editable={player.vouched_status == 'verified' ? false : true}
106
106
  style={{ flex:1 }}