formifex 0.3.3 → 0.3.5

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.
@@ -3,6 +3,7 @@ import { AxiosInstance } from 'axios';
3
3
  declare const AntdFormComponent: (props: TFormComponentProperties & {
4
4
  httpAgent?: AxiosInstance;
5
5
  suppressionRef?: React.RefObject<boolean>;
6
+ pendingLookupsRef?: React.RefObject<number>;
6
7
  disabled?: boolean;
7
8
  readOnly?: boolean;
8
9
  updateLookupData?: (key: string, data: any) => void;
@@ -7,6 +7,7 @@ type InputCheckboxProps = TInputCheckbox & {
7
7
  httpAgent?: AxiosInstance;
8
8
  initialData?: any;
9
9
  lookupData?: any;
10
+ suppressionRef?: React.RefObject<boolean>;
10
11
  };
11
12
  declare const InputCheckboxComponent: React.ForwardRefExoticComponent<InputCheckboxProps & React.RefAttributes<any>>;
12
13
  export default InputCheckboxComponent;
@@ -7,6 +7,7 @@ type InputRadioProps = TInputRadio & {
7
7
  httpAgent?: AxiosInstance;
8
8
  initialData?: any;
9
9
  lookupData?: any;
10
+ suppressionRef?: React.RefObject<boolean>;
10
11
  };
11
12
  declare const InputRadioComponent: React.ForwardRefExoticComponent<InputRadioProps & React.RefAttributes<any>>;
12
13
  export default InputRadioComponent;
@@ -54,5 +54,6 @@ declare const InputSelectComponent: React.ForwardRefExoticComponent<{
54
54
  httpAgent?: AxiosInstance;
55
55
  initialData?: any;
56
56
  loading?: boolean;
57
+ suppressionRef?: React.RefObject<boolean>;
57
58
  } & React.RefAttributes<any>>;
58
59
  export default InputSelectComponent;
@@ -11,6 +11,7 @@ type InputUploadProps = TInputUpload & {
11
11
  id?: string;
12
12
  disabled?: boolean;
13
13
  readOnly?: boolean;
14
+ suppressionRef?: React.RefObject<boolean>;
14
15
  };
15
16
  declare const InputUploadComponent: React.ForwardRefExoticComponent<InputUploadProps & React.RefAttributes<any>>;
16
17
  export default InputUploadComponent;
@@ -7,6 +7,7 @@ declare const InputController: (props: TInput & TLookupProps & {
7
7
  initialData?: any;
8
8
  httpAgent?: AxiosInstance;
9
9
  suppressionRef?: React.RefObject<boolean>;
10
+ pendingLookupsRef?: React.RefObject<number>;
10
11
  updateLookupData?: (key: string, data: any) => void;
11
12
  }) => import("react/jsx-runtime").JSX.Element;
12
13
  export default InputController;