@app-studio/web 0.8.4 → 0.8.6

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.
@@ -1527,7 +1527,7 @@ var ButtonView = function ButtonView(_ref) {
1527
1527
  }, hovering && !props.isDisabled ? {
1528
1528
  transition: 'transform 0.3s ease',
1529
1529
  transform: 'translateY(-5px)'
1530
- } : {}, defaultNativeProps, buttonSizeStyles, buttonVariant, scaleWidth, changePadding, shadow, props), variant === 'link' && externalHref ? React__default.createElement(Link, {
1530
+ } : {}, defaultNativeProps, buttonSizeStyles, buttonVariant, scaleWidth, props.padding || props.paddingHorizontal || props.paddingVertical || props.paddingLeft || props.paddingRight || props.paddingTop || props.paddingBottom ? {} : changePadding, shadow, props), variant === 'link' && externalHref ? React__default.createElement(Link, {
1531
1531
  href: externalHref,
1532
1532
  textDecorationColor: colorScheme,
1533
1533
  colorScheme: colorScheme,
@@ -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 {