input type checkbox dropped

This commit is contained in:
NikolaBorislavovHristov 2019-08-04 11:44:48 +03:00
parent cd88f3dad4
commit b235fbb235

View file

@ -3,12 +3,11 @@ const PropTypes = require('prop-types');
const { useFocusable } = require('stremio-navigation');
const ENTER_KEY_CODE = 13;
const BUTTON_INPUT_TYPES = ['button', 'link', 'checkbox'];
const BUTTON_INPUT_TYPES = ['button', 'link'];
const TEXT_INPUT_TYPES = ['text', 'email', 'password'];
const TAG_NAMES_FOR_TYPE = Object.assign(Object.create(null), {
button: 'div',
link: 'a',
checkbox: 'input',
text: 'input',
email: 'input',
password: 'input'