Skip to content

Commit

Permalink
fix(TextArea): fix TextArea event type
Browse files Browse the repository at this point in the history
  • Loading branch information
Heising committed Nov 18, 2024
1 parent fdb5f06 commit 6a42978
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,9 @@
"tsconfig.json": "tsconfig.*.json",
"vitest.config.ts": "babel.config.js, postcss.config.js"
},
"i18n-ally.localesPaths": [
"src/locale",
"src/_common/js/global-config/locale",
"src/_common/js/global-config/mobile/locale"
],
}
2 changes: 1 addition & 1 deletion src/textarea/Textarea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import useDefaultProps from '../hooks/useDefaultProps';
export interface TextareaProps
extends Omit<
React.TextareaHTMLAttributes<HTMLTextAreaElement>,
'value' | 'defaultValue' | 'onBlur' | 'onChange' | 'onFocus'
'value' | 'defaultValue' | 'onBlur' | 'onChange' | 'onFocus' | 'onKeyDown' | 'onKeyPress' | 'onKeyUp'
>,
TdTextareaProps,
StyledProps {}
Expand Down

0 comments on commit 6a42978

Please sign in to comment.