Repository URL to install this package:
|
Version:
0.0.15 ▾
|
import { FormState } from '@skava/packages/ui/forms';
import { OnChangeProps } from '../typings';
declare const securityQuestions: ({
label: string;
value: string;
isSelected: boolean;
} | {
label: string;
value: string;
isSelected?: undefined;
})[];
declare class SecurityQuestionContainer extends FormState {
name: string;
inputsList: ({
type: string;
name: string;
labelText: string;
className: string;
qa: string;
identity?: undefined;
value?: undefined;
isFormView?: undefined;
label?: undefined;
options?: undefined;
validationType?: undefined;
errorMessageFor?: undefined;
onDropdownChange?: undefined;
shouldBeAbsolute?: undefined;
isHidden?: undefined;
maxLength?: undefined;
placeholderText?: undefined;
ariaLabel?: undefined;
wrapperClassName?: undefined;
autocomplete?: undefined;
} | {
identity: string;
type: string;
value: string;
name: string;
isFormView: boolean;
labelText: string;
label: string;
options: ({
label: string;
value: string;
isSelected: boolean;
} | {
label: string;
value: string;
isSelected?: undefined;
})[];
validationType: string;
errorMessageFor: string;
className: string;
onDropdownChange: (args: OnChangeProps) => void;
qa: string;
shouldBeAbsolute: boolean;
isHidden?: undefined;
maxLength?: undefined;
placeholderText?: undefined;
ariaLabel?: undefined;
wrapperClassName?: undefined;
autocomplete?: undefined;
} | {
isHidden: boolean;
type: string;
value: string;
className: string;
name: string;
maxLength: number;
validationType: string;
errorMessageFor: string;
placeholderText: string;
ariaLabel: string;
labelText?: undefined;
qa?: undefined;
identity?: undefined;
isFormView?: undefined;
label?: undefined;
options?: undefined;
onDropdownChange?: undefined;
shouldBeAbsolute?: undefined;
wrapperClassName?: undefined;
autocomplete?: undefined;
} | {
type: string;
value: string;
className: string;
name: string;
maxLength: number;
labelText: string;
wrapperClassName: string;
validationType: string;
errorMessageFor: string;
qa: string;
autocomplete: string;
ariaLabel: string;
identity?: undefined;
isFormView?: undefined;
label?: undefined;
options?: undefined;
onDropdownChange?: undefined;
shouldBeAbsolute?: undefined;
isHidden?: undefined;
placeholderText?: undefined;
})[];
onChange: (args: OnChangeProps) => void;
}
declare const securityQuestionContainer: SecurityQuestionContainer;
export { SecurityQuestionContainer, securityQuestions, securityQuestionContainer, SecurityQuestionContainer as FormState, };
export default securityQuestionContainer;