Repository URL to install this package:
|
Version:
3.2.1 ▾
|
/**
*
* most of the old forms is done in ObserverForm...
*
* @todo create InputState & add?
* - updateFocused
* - validateInput
* - setValue
* - getValue
* - setValidationType
* - setIsValidInput
* - disable
* - enable
* - invalid
* - valid
* - select
* - unselect
* - setIsSelected
* - setInputReference
* - setProps
*/
export declare class OldInputConfigAdapter {
store: Map<any, any>;
renderInputWrap?: any;
animatePlaceholder?: boolean;
/** does not make much sense, maybe it is passthrough? @todo search & see */
wrapperClassName: string;
name: string;
propertyName: string;
minLength: string | number;
maxLength: string | number;
/**
* @todo we may need to map all of the validations here...
*/
validationType: string;
errorMessageFor: string;
qa: string;
dataQa: string;
autoComplete?: string;
autocomplete: string;
}