Skip to content

Commit

Permalink
Correct peer deps semvers
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywilz committed Jun 24, 2022
1 parent c15ee0b commit aa15de2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference types="react" />
import React from "react";
import { ChangeEvent } from "react";
import { ChangeEvent, ReactElement } from "react";
interface RangeSliderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
value: number | string;
onChange?: (ev: ChangeEvent<HTMLInputElement>, value: number) => void;
Expand All @@ -14,7 +14,7 @@ interface RangeSliderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "o
inputProps?: Partial<React.InputHTMLAttributes<HTMLInputElement>>;
tooltip?: "auto" | "on" | "off";
tooltipPlacement?: "top" | "bottom";
tooltipLabel?: (value: number) => string;
tooltipLabel?: (value: number) => string | ReactElement;
tooltipStyle?: React.CSSProperties;
tooltipProps?: Partial<React.HTMLAttributes<HTMLDivElement>>;
bsPrefix?: string;
Expand Down
Loading

0 comments on commit aa15de2

Please sign in to comment.