From b18447d7acbac2750605e9dbcd55c7ff20a97ad9 Mon Sep 17 00:00:00 2001 From: Aleksandr Malafeev Date: Thu, 1 Jun 2017 18:05:09 +0200 Subject: [PATCH] fixed typo in react-color EditableInput (styles->style), added dragLabel and dragMax (#16436) * fixed typo in react-color EditableInput, added dragLabel and dragMax to EditableInput * removed trailing whitespaces --- types/react-color/lib/components/common/EditableInput.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/types/react-color/lib/components/common/EditableInput.d.ts b/types/react-color/lib/components/common/EditableInput.d.ts index f786399c9e..931ec7acdc 100644 --- a/types/react-color/lib/components/common/EditableInput.d.ts +++ b/types/react-color/lib/components/common/EditableInput.d.ts @@ -11,8 +11,10 @@ export interface EditableInputProps extends ClassAttributes { color?: Color; label?: string; onChange?: ColorChangeHandler; - styles?: EditableInputStyles; + style?: EditableInputStyles; value?: any; + dragLabel?: string; + dragMax?: string; } export default class EditableInput extends Component {}