@app-studio/web 0.8.3 → 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.
@@ -1511,7 +1511,7 @@
1511
1511
  display: "flex",
1512
1512
  alignItems: "center",
1513
1513
  justifyContent: "center",
1514
- ariaLabel: ariaLabel,
1514
+ "aria-label": ariaLabel,
1515
1515
  backgroundColor: buttonColor,
1516
1516
  borderRadius: ButtonShapes[shape],
1517
1517
  onClick: (_props$onClick = props.onClick) != null ? _props$onClick : onClick,
@@ -5095,7 +5095,8 @@
5095
5095
  case 'email':
5096
5096
  return {
5097
5097
  autoCorrect: 'off',
5098
- keyboardType: 'email-address',
5098
+ // keyboardType: 'email-address',
5099
+ inputMode: 'email',
5099
5100
  autoCapitalize: 'none'
5100
5101
  };
5101
5102
  case 'password':
@@ -5106,7 +5107,13 @@
5106
5107
  };
5107
5108
  case 'digits':
5108
5109
  return {
5109
- keyboardType: 'phone-pad'
5110
+ // keyboardType: 'phone-pad',
5111
+ inputMode: 'tel'
5112
+ };
5113
+ case 'numeric':
5114
+ return {
5115
+ // keyboardType: 'phone-pad',
5116
+ inputMode: 'numeric'
5110
5117
  };
5111
5118
  case 'name':
5112
5119
  return {