File tree Expand file tree Collapse file tree
ui/src/app/components/options Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7878
7979 <!-- Flat Slider -->
8080 < eqm-flat-slider *ngIf ="option.type === 'flat-slider' " [enabled] ="!option.isEnabled || option.isEnabled() === true "
81- [orientation] ="option.orientation " [thickness] =" option.thickness " [color] =" option.color "
81+ [orientation] ="option.orientation "
8282 [value] ="option.value " [min] ="option.min " [middle] ="option.middle " [max] ="option.max "
83- [doubleClickToAnimateToMiddle] ="option.doubleClickToAnimateToMiddle "
83+ [doubleClickToAnimateToMiddle] ="option.doubleClickToAnimateToMiddle " [showMiddleNotch] =" option.showMiddleNotch "
8484 [animationDuration] ="option.animationDuration " [animationFps] ="option.animationFps "
8585 [scrollEnabled] ="option.scrollEnabled " [stickToMiddle] ="option.stickToMiddle "
8686 (valueChange) ="option.changed && option.changed($event) "
Original file line number Diff line number Diff line change @@ -97,9 +97,8 @@ interface SliderOption extends BaseOptions {
9797
9898export interface FlatSliderOption extends SliderOption {
9999 type : 'flat-slider'
100- thickness ?: number
101100 orientation ?: 'vertical' | 'horizontal'
102- color ?: string
101+ showMiddleNotch ?: boolean
103102 doubleClickToAnimateToMiddle ?: boolean
104103 userChangedValue ?: ( event : FlatSliderValueChangedEvent ) => any
105104}
You can’t perform that action at this time.
0 commit comments