@app-studio/web 0.8.3 → 0.8.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.
- package/dist/web.cjs.development.js +10 -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 +10 -3
- package/dist/web.esm.js.map +1 -1
- package/dist/web.umd.development.js +10 -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
|
@@ -1509,7 +1509,7 @@ var ButtonView = function ButtonView(_ref) {
|
|
|
1509
1509
|
display: "flex",
|
|
1510
1510
|
alignItems: "center",
|
|
1511
1511
|
justifyContent: "center",
|
|
1512
|
-
|
|
1512
|
+
"aria-label": ariaLabel,
|
|
1513
1513
|
backgroundColor: buttonColor,
|
|
1514
1514
|
borderRadius: ButtonShapes[shape],
|
|
1515
1515
|
onClick: (_props$onClick = props.onClick) != null ? _props$onClick : onClick,
|
|
@@ -5093,7 +5093,8 @@ var getInputTypeProps = function getInputTypeProps(type) {
|
|
|
5093
5093
|
case 'email':
|
|
5094
5094
|
return {
|
|
5095
5095
|
autoCorrect: 'off',
|
|
5096
|
-
keyboardType: 'email-address',
|
|
5096
|
+
// keyboardType: 'email-address',
|
|
5097
|
+
inputmode: 'email',
|
|
5097
5098
|
autoCapitalize: 'none'
|
|
5098
5099
|
};
|
|
5099
5100
|
case 'password':
|
|
@@ -5104,7 +5105,13 @@ var getInputTypeProps = function getInputTypeProps(type) {
|
|
|
5104
5105
|
};
|
|
5105
5106
|
case 'digits':
|
|
5106
5107
|
return {
|
|
5107
|
-
keyboardType: 'phone-pad'
|
|
5108
|
+
// keyboardType: 'phone-pad',
|
|
5109
|
+
inputmode: 'tel'
|
|
5110
|
+
};
|
|
5111
|
+
case 'numeric':
|
|
5112
|
+
return {
|
|
5113
|
+
// keyboardType: 'phone-pad',
|
|
5114
|
+
inputmode: 'numeric'
|
|
5108
5115
|
};
|
|
5109
5116
|
case 'name':
|
|
5110
5117
|
return {
|