@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
|
@@ -1516,7 +1516,7 @@ var ButtonView = function ButtonView(_ref) {
|
|
|
1516
1516
|
display: "flex",
|
|
1517
1517
|
alignItems: "center",
|
|
1518
1518
|
justifyContent: "center",
|
|
1519
|
-
|
|
1519
|
+
"aria-label": ariaLabel,
|
|
1520
1520
|
backgroundColor: buttonColor,
|
|
1521
1521
|
borderRadius: ButtonShapes[shape],
|
|
1522
1522
|
onClick: (_props$onClick = props.onClick) != null ? _props$onClick : onClick,
|
|
@@ -5100,7 +5100,8 @@ var getInputTypeProps = function getInputTypeProps(type) {
|
|
|
5100
5100
|
case 'email':
|
|
5101
5101
|
return {
|
|
5102
5102
|
autoCorrect: 'off',
|
|
5103
|
-
keyboardType: 'email-address',
|
|
5103
|
+
// keyboardType: 'email-address',
|
|
5104
|
+
inputmode: 'email',
|
|
5104
5105
|
autoCapitalize: 'none'
|
|
5105
5106
|
};
|
|
5106
5107
|
case 'password':
|
|
@@ -5111,7 +5112,13 @@ var getInputTypeProps = function getInputTypeProps(type) {
|
|
|
5111
5112
|
};
|
|
5112
5113
|
case 'digits':
|
|
5113
5114
|
return {
|
|
5114
|
-
keyboardType: 'phone-pad'
|
|
5115
|
+
// keyboardType: 'phone-pad',
|
|
5116
|
+
inputmode: 'tel'
|
|
5117
|
+
};
|
|
5118
|
+
case 'numeric':
|
|
5119
|
+
return {
|
|
5120
|
+
// keyboardType: 'phone-pad',
|
|
5121
|
+
inputmode: 'numeric'
|
|
5115
5122
|
};
|
|
5116
5123
|
case 'name':
|
|
5117
5124
|
return {
|