@tuwaio/nova-connect 1.0.0-fix-packages-alpha.8.248b55a → 1.0.0-fix-packages-alpha.9.9923b67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4985,6 +4985,7 @@ type InputProps = {
4985
4985
  value: string;
4986
4986
  onChange: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
4987
4987
  onBlur: () => void;
4988
+ onPaste?: (event: React__default.ClipboardEvent<HTMLInputElement>) => void;
4988
4989
  placeholder?: string;
4989
4990
  'aria-describedby'?: string;
4990
4991
  'aria-invalid'?: 'true' | 'false';
@@ -5034,6 +5035,8 @@ type ImpersonateFormCustomization = {
5034
5035
  onInputChange?: (value: string) => void;
5035
5036
  /** Custom handler for input blur (called after default logic) */
5036
5037
  onInputBlur?: (value: string) => void;
5038
+ /** Custom handler for paste events */
5039
+ onInputPaste?: (value: string) => void;
5037
5040
  /** Custom handler for validation start */
5038
5041
  onValidationStart?: (value: string) => void;
5039
5042
  /** Custom handler for validation complete */
@@ -4985,6 +4985,7 @@ type InputProps = {
4985
4985
  value: string;
4986
4986
  onChange: (event: React__default.ChangeEvent<HTMLInputElement>) => void;
4987
4987
  onBlur: () => void;
4988
+ onPaste?: (event: React__default.ClipboardEvent<HTMLInputElement>) => void;
4988
4989
  placeholder?: string;
4989
4990
  'aria-describedby'?: string;
4990
4991
  'aria-invalid'?: 'true' | 'false';
@@ -5034,6 +5035,8 @@ type ImpersonateFormCustomization = {
5034
5035
  onInputChange?: (value: string) => void;
5035
5036
  /** Custom handler for input blur (called after default logic) */
5036
5037
  onInputBlur?: (value: string) => void;
5038
+ /** Custom handler for paste events */
5039
+ onInputPaste?: (value: string) => void;
5037
5040
  /** Custom handler for validation start */
5038
5041
  onValidationStart?: (value: string) => void;
5039
5042
  /** Custom handler for validation complete */