@zealicsolutions/web-ui 0.3.55 → 0.3.56
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/InputField/InputField.d.ts +0 -4
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/InputField/InputField.d.ts +0 -4
- package/dist/index.d.ts +2 -4
- package/package.json +1 -1
@@ -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 {};
|