@app-studio/web 0.3.13 → 0.3.16
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/components/Form/TextArea/TextArea/TextArea.type.d.ts +1 -1
- package/dist/components/Layout/configs/Input.type.d.ts +1 -1
- package/dist/web.cjs.development.js +3 -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 +3 -3
- package/dist/web.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/web.esm.js
CHANGED
|
@@ -2531,9 +2531,9 @@ var InputVariants = {
|
|
|
2531
2531
|
},
|
|
2532
2532
|
default: {
|
|
2533
2533
|
borderWidth: 0,
|
|
2534
|
-
borderBottomWidth:
|
|
2534
|
+
borderBottomWidth: 1
|
|
2535
2535
|
},
|
|
2536
|
-
|
|
2536
|
+
none: {
|
|
2537
2537
|
border: 'none',
|
|
2538
2538
|
backgroundColor: 'transparent'
|
|
2539
2539
|
}
|
|
@@ -2593,7 +2593,7 @@ var FieldContent = function FieldContent(_ref) {
|
|
|
2593
2593
|
transition: "padding 0.2s ease",
|
|
2594
2594
|
justifyContent: "space-between",
|
|
2595
2595
|
fontSize: Typography.fontSizes[size],
|
|
2596
|
-
filter
|
|
2596
|
+
// filter={isHovered ? 'brightness(1)':'brightness(0.97)'}
|
|
2597
2597
|
cursor: isDisabled ? 'not-allowed' : isReadOnly ? 'auto' : 'pointer'
|
|
2598
2598
|
}, isWithLabel ? PadddingWithLabel : PaddingWithoutLabel, shadow, Shapes[shape], InputVariants[variant], styles['box'], props), children);
|
|
2599
2599
|
};
|