@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.
- package/dist/web.cjs.development.js +3 -3
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +3 -3
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +3 -3
- package/dist/web.umd.development.js.map +1 -1
- package/dist/web.umd.production.min.js +1 -1
- package/dist/web.umd.production.min.js.map +1 -1
- package/package.json +1 -1
package/dist/web.esm.js
CHANGED
|
@@ -5094,7 +5094,7 @@ var getInputTypeProps = function getInputTypeProps(type) {
|
|
|
5094
5094
|
return {
|
|
5095
5095
|
autoCorrect: 'off',
|
|
5096
5096
|
// keyboardType: 'email-address',
|
|
5097
|
-
|
|
5097
|
+
inputMode: 'email',
|
|
5098
5098
|
autoCapitalize: 'none'
|
|
5099
5099
|
};
|
|
5100
5100
|
case 'password':
|
|
@@ -5106,12 +5106,12 @@ var getInputTypeProps = function getInputTypeProps(type) {
|
|
|
5106
5106
|
case 'digits':
|
|
5107
5107
|
return {
|
|
5108
5108
|
// keyboardType: 'phone-pad',
|
|
5109
|
-
|
|
5109
|
+
inputMode: 'tel'
|
|
5110
5110
|
};
|
|
5111
5111
|
case 'numeric':
|
|
5112
5112
|
return {
|
|
5113
5113
|
// keyboardType: 'phone-pad',
|
|
5114
|
-
|
|
5114
|
+
inputMode: 'numeric'
|
|
5115
5115
|
};
|
|
5116
5116
|
case 'name':
|
|
5117
5117
|
return {
|