@zealicsolutions/web-ui 0.3.158 → 0.3.159

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