Skip to content

Commit

Permalink
chore: fix text of comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Arucard89 committed Feb 9, 2024
1 parent 21803ad commit 44f2c6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Slider/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ export type SliderProps<ValueType = number | [number, number]> = {
onFocus?: (e: React.FocusEvent<HTMLDivElement>) => void;
/** Fires when the control lost focus. Provides focus event as a callback's argument */
onBlur?: (e: React.FocusEvent<HTMLDivElement>) => void;
/** Fires when the slider’s value is changed by the user. Provides change event as an callback's argument */
/** Fires when the slider’s value is updated by the user. Provides update event as an callback's argument */
onUpdate?: (value: ValueType) => void;
/** Fires when ontouchend or onmouseup is triggered. Provides change event as an callback's argument */
/** Fires when ontouchend or onmouseup is triggered. Provides update event as an callback's argument */
onUpdateComplete?: (value: ValueType) => void;

/** The control's autoFocus attribute */
Expand Down

0 comments on commit 44f2c6e

Please sign in to comment.