Я хотел бы поставить числовую маску на входе sweetalert2, вы можете мне помочь?мой код:
onClick(btn) {
let code2_fa = '';
if (JSON.parse(localStorage.getItem('user')).password.two_factors.is_active) {
swal({
title: 'Digite o TOKEN para prosseguir',
imageUrl: './assets/imgs/Authy.svg',
imageAlt: 'Logo Authy',
input: 'text',
inputPlaceholder: 'Digite o TOKEN...',
inputAttributes: {
maxlength: '6',
autofocus: 'true',
required: 'true',
},
inputValue: code2_fa,
animation: true,
allowEnterKey: true,
inputAutoTrim: true,
})
}
Я использую Angular 6, я хочу показать модальный режим, чтобы пользователь мог ввести свой код авторизации.