Skip to content

Commit

Permalink
Fixed #6593
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Nov 12, 2024
1 parent cebb363 commit 938a926
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/primevue/src/inputtext/InputText.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,22 +98,22 @@ export interface InputTextProps extends InputHTMLAttributes {
/**
* Defines the size of the component.
*/
size?: 'small' | 'large' | undefined;
size?: 'small' | 'large' | undefined | null;
/**
* When present, it specifies that the component should have invalid state style.
* @defaultValue false
*/
invalid?: boolean | undefined;
invalid?: boolean | undefined | null;
/**
* Specifies the input variant of the component.
* @defaultValue outlined
*/
variant?: 'outlined' | 'filled' | undefined;
variant?: 'outlined' | 'filled' | undefined | null;
/**
* Spans 100% width of the container when enabled.
* @defaultValue null
*/
fluid?: boolean | undefined;
fluid?: boolean | undefined | null;
/**
* Form control object, typically used for handling validation and form state.
*/
Expand Down

0 comments on commit 938a926

Please sign in to comment.