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 {}