@zealicsolutions/web-ui 0.3.147 → 0.3.149

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,10 +5,12 @@ declare type UseSetFormDataProps<DefaultValueType> = Partial<{
5
5
  defaultValue: DefaultValueType;
6
6
  dataModelField: DataConnectionValues;
7
7
  setFormData: Dispatch<SetStateAction<AnyObject>>;
8
+ fieldName: string;
8
9
  }>;
9
- export declare const useSetFormData: <DefaultValueType>({ setFormData, defaultValue, dataModelField, }: Partial<{
10
+ export declare const useSetFormData: <DefaultValueType>({ setFormData, defaultValue, dataModelField, fieldName, }: Partial<{
10
11
  defaultValue: DefaultValueType;
11
12
  dataModelField: DataConnectionValues;
12
13
  setFormData: Dispatch<SetStateAction<AnyObject>>;
14
+ fieldName: string;
13
15
  }>) => void;
14
16
  export {};