UNPKG

vdr-react-form-manager

Version:
9 lines (8 loc) 777 B
import { IStateInputs } from '../interface/form/StateInptus.interface'; import { IFormInputValidator } from '../interface/forminput/FormInputValidator.interface'; import { IFormInputAvailableValue } from '../interface/forminput/FormInputAvailableValue.interface'; export declare const getClassNames: (classNames: string[]) => string; export declare const updateFormInputDisabledValue: (formInputs: IStateInputs, disableInput: boolean) => IStateInputs; export declare const createUpdateId: (value: any) => string; export declare const getInputValidators: (validators: IFormInputValidator[] | null | undefined) => IFormInputValidator[]; export declare const getInputAvailableValues: (availableValues: IFormInputAvailableValue[] | null | undefined) => IFormInputAvailableValue[];