mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-29 05:38:48 +00:00
drop input type color
This commit is contained in:
parent
9b19419f1f
commit
3d19c828ed
1 changed files with 1 additions and 2 deletions
|
|
@ -3,14 +3,13 @@ import PropTypes from 'prop-types';
|
|||
import { withFocusable } from 'stremio-common';
|
||||
|
||||
const ENTER_KEY_CODE = 13;
|
||||
const BUTTON_INPUT_TYPES = ['button', 'link', 'submit', 'checkbox', 'color'];
|
||||
const BUTTON_INPUT_TYPES = ['button', 'link', 'submit', 'checkbox'];
|
||||
const TEXT_INPUT_TYPES = ['text', 'password', 'email', 'search'];
|
||||
const TAG_NAMES_FOR_TYPE = {
|
||||
button: 'div',
|
||||
link: 'a',
|
||||
submit: 'input',
|
||||
checkbox: 'input',
|
||||
color: 'input',
|
||||
text: 'input',
|
||||
password: 'input',
|
||||
email: 'input',
|
||||
|
|
|
|||
Loading…
Reference in a new issue