@sarunyu/system-one 4.6.5 → 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/dist/style.css +1 -1
- package/llms.txt +1 -18
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3601,11 +3601,19 @@ const Input = forwardRef(function Input2({
|
|
|
3601
3601
|
isDisabled ? "cursor-not-allowed" : "cursor-text"
|
|
3602
3602
|
)
|
|
3603
3603
|
),
|
|
3604
|
-
style: isFilled ? {
|
|
3604
|
+
style: isFilled ? {
|
|
3605
|
+
...inputStyleProp,
|
|
3606
|
+
color: filledValue,
|
|
3607
|
+
...inputCaretStyle,
|
|
3608
|
+
fontSize: "14px",
|
|
3609
|
+
lineHeight: "20px"
|
|
3610
|
+
} : {
|
|
3605
3611
|
...inputStyleProp,
|
|
3606
3612
|
color: "transparent",
|
|
3607
3613
|
caretColor: isFocus ? "var(--caret-color)" : "transparent",
|
|
3608
|
-
padding: hasRight ? "12px 14px" : "14px"
|
|
3614
|
+
padding: hasRight ? "12px 14px" : "14px",
|
|
3615
|
+
fontSize: "16px",
|
|
3616
|
+
lineHeight: "24px"
|
|
3609
3617
|
}
|
|
3610
3618
|
}
|
|
3611
3619
|
)
|