Input OTP Form Control
Example
let dbMasterConfig: T.IDBMasterConfig = {
form: {
fields: [
[{
label: 'Login PIN',
control: T.EDBMasterFormControl.inputOtp,
path: 'login_pin',
inputOtpSettings: {
length: 6,
integerOnly: true,
mask: true,
}
}],
]
}
};