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
This commit is contained in:
Aleksandr Malafeev
2017-06-01 18:05:09 +02:00
committed by Andy
parent c2cef9fd8b
commit b18447d7ac

View File

@@ -11,8 +11,10 @@ export interface EditableInputProps extends ClassAttributes<EditableInput> {
color?: Color;
label?: string;
onChange?: ColorChangeHandler;
styles?: EditableInputStyles;
style?: EditableInputStyles;
value?: any;
dragLabel?: string;
dragMax?: string;
}
export default class EditableInput extends Component<EditableInputProps, any> {}