@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
15 lines (14 loc) • 540 B
TypeScript
/// <reference types="react" />
import { ISeparators } from "./separators";
interface IRangeInputProps {
from: number;
to: number;
usePercentage: boolean;
disableAutofocus?: boolean;
onFromChange: (value: number) => void;
onToChange: (value: number) => void;
onEnterKeyPress?: () => void;
separators?: ISeparators;
}
declare const RangeInput: ({ from, to, usePercentage, disableAutofocus, onFromChange, onToChange, onEnterKeyPress, separators, }: IRangeInputProps) => JSX.Element;
export default RangeInput;