style(SecretInput): update styling for improved UI consistency and bump client version to 0.4.4

This commit is contained in:
Marco Beretta 2026-01-06 01:54:31 +01:00
parent 26391e3eda
commit 1d3ab78457
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
3 changed files with 3 additions and 3 deletions

2
package-lock.json generated
View file

@ -43198,7 +43198,7 @@
},
"packages/client": {
"name": "@librechat/client",
"version": "0.4.50",
"version": "0.4.51",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",

View file

@ -1,6 +1,6 @@
{
"name": "@librechat/client",
"version": "0.4.50",
"version": "0.4.51",
"description": "React components for LibreChat",
"repository": {
"type": "git",

View file

@ -53,7 +53,7 @@ const SecretInput = React.forwardRef<HTMLInputElement, SecretInputProps>(
<input
type={isVisible ? 'text' : 'password'}
className={cn(
'flex h-10 w-full rounded-lg border border-input bg-transparent px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50',
'flex h-10 w-full rounded-lg border border-border-light bg-transparent px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50',
showCopy ? 'pr-20' : 'pr-10',
className ?? '',
)}