Repository URL to install this package:
|
Version:
2.8.0-studio-release ▾
|
import { FormState } from 'src/forms';
declare class FormStateCard extends FormState {
inputsList: ({
identity: string;
type: string;
value: string;
className: string;
name: string;
labelText: string;
maxLength: number;
wrapperClassName: string;
validationType: string;
errorMessageFor: string;
dataQa: string;
autocomplete: string;
ariaLabel: string;
animatePlaceholder: boolean;
onFormValidation?: undefined;
placeholderText?: undefined;
} | {
identity: string;
type: string;
value: string;
className: string;
name: string;
labelText: string;
maxLength: number;
wrapperClassName: string;
validationType: string;
errorMessageFor: string;
dataQa: string;
autocomplete: string;
ariaLabel: string;
animatePlaceholder: boolean;
onFormValidation: (item: any) => boolean;
placeholderText: string;
})[];
}
declare const formStateCard: FormStateCard;
export { formStateCard };
export default formStateCard;