Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ui5-range-slider): Add Range Slider component (#2310)
Introduce ui5-range-slider component that represents a numerical interval and two handles to select a sub-range within it.The purpose of the component is to enable visual selection of sub-ranges within a given interval. Properties: - `min `- The minimum value of the slider range - `max `- The maximum value of the slider range - `value `- The current value of the slider - `step `- Determines the increments in which the slider will move - `showTickmarks` - Displays a visual divider between the step values - `showToolTip `- Determines if a tooltip should be displayed above the handle - `labelInterval `- Labels some or all of the tickmarks with their values. - `disabled`- Defines whether the <code>Slider</code> is in disabled state. Events: - `change` - Fired when the value changes and the user has finished interacting with the slider. - `input` - Fired when the value changes due to user interaction that is not yet finished - during mouse/touch dragging.
- Loading branch information