Skip to content

Commit

Permalink
Fix primefaces#6404: Password fix invalid/variant props
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Apr 17, 2024
1 parent cd1c08e commit 6e271df
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions components/lib/password/password.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,16 @@ export interface PasswordProps extends Omit<React.DetailedHTMLProps<React.InputH
* Style class of the input field.
*/
inputClassName?: string | undefined;
/**
* When present, it specifies that the component should have invalid state style.
* @defaultValue false
*/
invalid?: boolean | undefined;
/**
* Specifies the input variant of the component.
* @defaultValue outlined
*/
variant?: 'outlined' | 'filled' | undefined;
/**
* Hide icon template.
*/
Expand Down

0 comments on commit 6e271df

Please sign in to comment.