Skip to content

Commit

Permalink
fix: #6300 (#7246)
Browse files Browse the repository at this point in the history
- Update `InputTextPassThroughMethodOptions` to include `parent`
  • Loading branch information
gcko authored Sep 25, 2024
1 parent f487a2f commit 96c10f8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions components/doc/common/apidoc/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -32152,6 +32152,12 @@
"readonly": false,
"type": "InputTextProps"
},
{
"name": "parent",
"optional": false,
"readonly": false,
"type": "InputTextPassThroughMethodOptions"
},
{
"name": "context",
"optional": false,
Expand Down
1 change: 1 addition & 0 deletions components/lib/inputtext/inputtext.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export declare type InputTextPassThroughType<T> = PassThroughType<T, InputTextPa
*/
export interface InputTextPassThroughMethodOptions {
props: InputTextProps;
parent: InputTextPassThroughMethodOptions;
context: InputTextContext;
}

Expand Down

0 comments on commit 96c10f8

Please sign in to comment.