test-stpr-ui-kit 0.5.81 → 0.5.83

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.
@@ -309,7 +309,8 @@ export declare const Input: default_2.ForwardRefExoticComponent<Omit<InputProps,
309
309
  declare interface InputProps {
310
310
  name: string;
311
311
  variant?: TInputVariant;
312
- onChange: TOnChangeInput;
312
+ onChange?: TOnChangeInput;
313
+ onBlur?: TOnBlurInput;
313
314
  value?: string;
314
315
  error?: string;
315
316
  isAbsolutePositionError?: boolean;
@@ -595,6 +596,11 @@ declare type TModalSize = "md" | "lg";
595
596
 
596
597
  declare type TModalVerticalAlign = "center" | "top";
597
598
 
599
+ export declare type TOnBlurInput = (event: default_2.FocusEvent<HTMLInputElement>, data: {
600
+ name: string;
601
+ value: string | null;
602
+ }) => void;
603
+
598
604
  export declare type TOnChangeCheckbox = (event: default_2.ChangeEvent<HTMLInputElement>, data: {
599
605
  name: string;
600
606
  value?: string;