mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-08-19 10:29:16 +00:00
input type checkbox dropped
This commit is contained in:
parent
cd88f3dad4
commit
b235fbb235
1 changed files with 1 additions and 2 deletions
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue