diff --git a/src/components/input/input.tsx b/src/components/input/input.tsx index 6626f60eff..d3194170b0 100644 --- a/src/components/input/input.tsx +++ b/src/components/input/input.tsx @@ -39,6 +39,7 @@ export type InputProps = Pick< | 'name' | 'onFocus' | 'onBlur' + | 'onpaste' | 'autoCapitalize' | 'autoCorrect' | 'onKeyDown' @@ -164,6 +165,9 @@ export const Input = forwardRef((props, ref) => { checkValue() mergedProps.onBlur?.(e) }} + onpaste={e =>{ + mergedProps.onpaste?.(e) + }} id={mergedProps.id} placeholder={mergedProps.placeholder} disabled={mergedProps.disabled}