@app-studio/web 0.3.12 → 0.3.15

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.esm.js CHANGED
@@ -2506,10 +2506,7 @@ var FieldContainer = function FieldContainer(_ref) {
2506
2506
 
2507
2507
  var Shapes = {
2508
2508
  default: {
2509
- borderTopLeftRadius: 6,
2510
- borderTopRightRadius: 6,
2511
- borderBottomLeftRadius: 0,
2512
- borderBottomRightRadius: 0
2509
+ borderRadius: 0
2513
2510
  },
2514
2511
  sharp: {
2515
2512
  borderRadius: 0
@@ -2592,11 +2589,11 @@ var FieldContent = function FieldContent(_ref) {
2592
2589
  borderStyle: "solid",
2593
2590
  alignItems: "center",
2594
2591
  borderColor: color,
2595
- backgroundColor: "color.trueGray.50",
2592
+ backgroundColor: "color.white",
2596
2593
  transition: "padding 0.2s ease",
2597
2594
  justifyContent: "space-between",
2598
2595
  fontSize: Typography.fontSizes[size],
2599
- filter: isHovered ? 'brightness(0.97)' : 'brightness(1)',
2596
+ // filter={isHovered ? 'brightness(1)':'brightness(0.97)'}
2600
2597
  cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'auto' : 'pointer'
2601
2598
  }, isWithLabel ? PadddingWithLabel : PaddingWithoutLabel, shadow, Shapes[shape], InputVariants[variant], styles['box'], props), children);
2602
2599
  };