@app-studio/web 0.8.4 → 0.8.5

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.
@@ -5101,7 +5101,7 @@ var getInputTypeProps = function getInputTypeProps(type) {
5101
5101
  return {
5102
5102
  autoCorrect: 'off',
5103
5103
  // keyboardType: 'email-address',
5104
- inputmode: 'email',
5104
+ inputMode: 'email',
5105
5105
  autoCapitalize: 'none'
5106
5106
  };
5107
5107
  case 'password':
@@ -5113,12 +5113,12 @@ var getInputTypeProps = function getInputTypeProps(type) {
5113
5113
  case 'digits':
5114
5114
  return {
5115
5115
  // keyboardType: 'phone-pad',
5116
- inputmode: 'tel'
5116
+ inputMode: 'tel'
5117
5117
  };
5118
5118
  case 'numeric':
5119
5119
  return {
5120
5120
  // keyboardType: 'phone-pad',
5121
- inputmode: 'numeric'
5121
+ inputMode: 'numeric'
5122
5122
  };
5123
5123
  case 'name':
5124
5124
  return {