fix: a small eye icon for password input in edge(#4927) (#4950)

This commit is contained in:
LinYongLu 2025-03-08 23:25:53 +08:00 committed by GitHub
parent d158bc1f8c
commit 58128c403e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
"@heroui/input": patch
---
fix a small eye icon for password input in edge browser(#4927)

View File

@ -376,7 +376,12 @@ export function useInput<T extends HTMLInputElement | HTMLTextAreaElement = HTML
"data-has-start-content": dataAttr(hasStartContent),
"data-has-end-content": dataAttr(!!endContent),
className: slots.input({
class: clsx(classNames?.input, isFilled ? "is-filled" : "", isMultiline ? "pe-0" : ""),
class: clsx(
classNames?.input,
isFilled ? "is-filled" : "",
isMultiline ? "pe-0" : "",
type === "password" ? "[&::-ms-reveal]:hidden" : "",
),
}),
...mergeProps(
focusProps,