P2Package: coreType: feature requesthelp wanted
Repository metrics
- Stars
- (20,263 stars)
- PR merge metrics
- (Avg merge 43d 10h) (27 merged PRs in 30d)
Description
Improve Slider in Blueprint
Slider onChange does not have mouse event as a return value. Would be nice to add it, cause we cannot stop the propagation of the event.
Current:
onChange={(value) => console.log(value); }
Expected:
onChange={(value, e) => console.log(value); e.stopPropagation()}