From 22b618cec9195e7a98291053958e8eb78a5d1cbe Mon Sep 17 00:00:00 2001 From: Evan Date: Tue, 18 Sep 2018 16:58:13 -0500 Subject: [PATCH] Add color, date propTypes to input (#80) --- src/components/form/components/input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/form/components/input.js b/src/components/form/components/input.js index 48c03fb7..ca1fe711 100644 --- a/src/components/form/components/input.js +++ b/src/components/form/components/input.js @@ -42,7 +42,7 @@ Input.propTypes = { ...modifiers.propTypes, className: PropTypes.string, style: PropTypes.shape({}), - type: PropTypes.oneOf(['text', 'email', 'tel', 'password', 'number', 'search']), + type: PropTypes.oneOf(['text', 'email', 'tel', 'password', 'number', 'search', 'color', 'date']), size: PropTypes.oneOf(['small', 'medium', 'large']), color: PropTypes.oneOf(colors), readOnly: PropTypes.bool,