You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
stepsArray: Bind rzSliderModel and rzSliderHigh to the actual value (#335).
Breaking changes
From now on, when using the stepsArray feature, you should directly provide the actual value to rzSliderModel and rzSliderHigh instead of passing the index of this value.
Thus, you need to update your config like in the following example:
/* before 4.0 version */vm.slider={value: 4,// index of the 'E' value in the arrayoptions: {stepsArray: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('')}}/* from 4.0 version */vm.slider={value: 'E',options: {stepsArray: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('')}}
Consolidate onStart, onChange and onEnd for keyboard (#319).
Added rz-floor and rz-ceil classes to floor and ceil label to allow styling (#337).
Breaking changes
From now on, to allow the IE8 support, the directive is configured with replace: true. Thus, you need to update your custom CSS rules like in the following example:
/* before 3.0 version */rzslider {
color: red;
}
/* from 3.0 version */
.rzslider {
color: red;
}