@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.
@@ -1522,7 +1522,7 @@
1522
1522
  }, hovering && !props.isDisabled ? {
1523
1523
  transition: 'transform 0.3s ease',
1524
1524
  transform: 'translateY(-5px)'
1525
- } : {}, defaultNativeProps, buttonSizeStyles, buttonVariant, scaleWidth, changePadding, shadow, props), variant === 'link' && externalHref ? React__default.createElement(Link, {
1525
+ } : {}, 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, {
1526
1526
  href: externalHref,
1527
1527
  textDecorationColor: colorScheme,
1528
1528
  colorScheme: colorScheme,
@@ -5096,7 +5096,7 @@
5096
5096
  return {
5097
5097
  autoCorrect: 'off',
5098
5098
  // keyboardType: 'email-address',
5099
- inputmode: 'email',
5099
+ inputMode: 'email',
5100
5100
  autoCapitalize: 'none'
5101
5101
  };
5102
5102
  case 'password':
@@ -5108,12 +5108,12 @@
5108
5108
  case 'digits':
5109
5109
  return {
5110
5110
  // keyboardType: 'phone-pad',
5111
- inputmode: 'tel'
5111
+ inputMode: 'tel'
5112
5112
  };
5113
5113
  case 'numeric':
5114
5114
  return {
5115
5115
  // keyboardType: 'phone-pad',
5116
- inputmode: 'numeric'
5116
+ inputMode: 'numeric'
5117
5117
  };
5118
5118
  case 'name':
5119
5119
  return {