Skip to content

Commit

Permalink
fix: Error in type definition (#6670)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanpajon authored May 25, 2024
1 parent 7e23f0b commit 0af7eaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions components/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -30412,7 +30412,7 @@
"name": "value",
"optional": true,
"readonly": false,
"type": "string",
"type": "null | string",
"default": "",
"description": "The value of component"
},
Expand Down Expand Up @@ -31914,7 +31914,7 @@
"name": "value",
"optional": true,
"readonly": false,
"type": "string",
"type": "null | string",
"default": "",
"description": "The value of component"
},
Expand Down
2 changes: 1 addition & 1 deletion components/lib/inputtext/inputtext.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export interface InputTextProps extends Omit<React.DetailedHTMLProps<React.Input
/**
* The value of component
*/
value?: string | undefined;
value?: string | null | undefined;
/**
* Callback to invoke while typing value on input
* @param {React.FormEvent<HTMLInputElement>} event - Browser event
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0af7eaf

Please sign in to comment.