@sarunyu/system-one 4.7.0 → 4.7.1
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/index.cjs +10 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/src/components/input.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3620,11 +3620,19 @@ const Input = React.forwardRef(function Input2({
|
|
|
3620
3620
|
isDisabled ? "cursor-not-allowed" : "cursor-text"
|
|
3621
3621
|
)
|
|
3622
3622
|
),
|
|
3623
|
-
style: isFilled ? {
|
|
3623
|
+
style: isFilled ? {
|
|
3624
|
+
...inputStyleProp,
|
|
3625
|
+
color: filledValue,
|
|
3626
|
+
...inputCaretStyle,
|
|
3627
|
+
fontSize: "14px",
|
|
3628
|
+
lineHeight: "20px"
|
|
3629
|
+
} : {
|
|
3624
3630
|
...inputStyleProp,
|
|
3625
3631
|
color: "transparent",
|
|
3626
3632
|
caretColor: isFocus ? "var(--caret-color)" : "transparent",
|
|
3627
|
-
padding: hasRight ? "12px 14px" : "14px"
|
|
3633
|
+
padding: hasRight ? "12px 14px" : "14px",
|
|
3634
|
+
fontSize: "16px",
|
|
3635
|
+
lineHeight: "24px"
|
|
3628
3636
|
}
|
|
3629
3637
|
}
|
|
3630
3638
|
)
|