Skip to content

Commit

Permalink
Fix primefaces#2936: Slider TypeScript update
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed May 27, 2022
1 parent 8edf5f2 commit 80143f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/slider/Slider.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface SliderChangeParams {

interface SliderSlideEndParams extends SliderChangeParams { }

export interface SliderProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'onChange' | 'value'> {
export interface SliderProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'onChange' | 'value' | 'ref'> {
id?: string;
value?: SliderValueType;
min?: number;
Expand Down

0 comments on commit 80143f6

Please sign in to comment.