@zealicsolutions/web-ui 0.3.55 → 0.3.57

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import { InputProps } from 'atoms';
3
3
  import { ConditionConfig, FormStateType } from 'containers';
4
- import { InputFieldTypes } from 'fieldsConfiguration';
5
4
  import { Control, ControllerProps } from 'react-hook-form/dist/types';
6
5
  import type { AnyObject, StylesType } from 'typescript';
7
6
  import { FieldLabelsProps } from '../FieldLabels/FieldLabels';
@@ -19,7 +18,4 @@ export declare type InputFieldProps = Partial<{
19
18
  state: FormStateType;
20
19
  formData: AnyObject;
21
20
  }>;
22
- declare type ReturnValueType = Record<FormStateType, string>;
23
- export declare const getMockValueForSuccessState: (type: InputFieldTypes) => ReturnValueType;
24
21
  export declare const InputField: ({ control, name, inputProps, styles, labelsProps, defaultValue, optional, required, rules, conditionConfig, state, formData, }: InputFieldProps) => JSX.Element | null;
25
- export {};