diff --git a/types/react-numeric-input/index.d.ts b/types/react-numeric-input/index.d.ts index 9706d4f4aa..8dc64f3ba3 100644 --- a/types/react-numeric-input/index.d.ts +++ b/types/react-numeric-input/index.d.ts @@ -17,11 +17,13 @@ declare namespace NumericInput { 'min' | 'max' | 'step' | 'onChange' | 'defaultValue' | 'onInvalid' | 'style' > { addLabelText?: string; + componentClass?: string; defaultValue?: number | string; format?: ((value: number | null) => string); max?: BoundsFunctionProp; min?: BoundsFunctionProp; mobile?: boolean | 'auto' | ((component: NumericInput) => boolean); + noStyle?: boolean; noValidate?: boolean | string; onBlur?: React.FocusEventHandler; onChange?: ((value: number | null, stringValue: string, input: HTMLInputElement) => void);