Skip to content

Releases: angular-slider/angularjs-slider

4.0.0

04 Jun 10:27
Compare
Choose a tag to compare

4.0.0 (2016-06-04)

Improvement

  • 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 array
    options: {
        stepsArray: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('')
    }
}

/* from 4.0 version */
vm.slider = {
    value: 'E',
    options: {
        stepsArray: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'.split('')
    }
}

3.0.0

02 Jun 16:27
Compare
Choose a tag to compare

3.0.0 (2016-06-02)

Features

  • Add IE8 support (#314).
  • 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;
}

2.14.0

22 May 20:58
Compare
Choose a tag to compare

2.14.0 (2016-05-22)

Features

  • Add minLimit and maxLimit options (#332).
  • Add a maxRange option (#333).
  • Add boundPointerLabels option (#323).

2.13.0

24 Apr 16:16
Compare
Choose a tag to compare

2.13.0 (2016-04-24)

Features

  • Add a getLegend option (#318).
  • Handle objects in stepsArray that can contain value and legend properties.

2.12.0

22 Apr 06:42
Compare
Choose a tag to compare

2.12.0 (2016-04-22)

Features

  • Accept numbers for showTicks/showTicksValues to display ticks at intermediate positions (#264).

2.11.0

01 Apr 20:24
Compare
Choose a tag to compare

2.11.0 (2016-04-01)

Features

  • Add a hidePointerLabels option (#273).

Fix

  • Position long labels on vertical sliders correctly (#306).

2.10.4

16 Mar 09:14
Compare
Choose a tag to compare

2.10.4 (2016-03-16)

Fix

  • Fix the floor limit when floor is different than 0 (#293).

2.10.3

14 Mar 21:17
Compare
Choose a tag to compare

2.10.3 (2016-03-14)

Fix

  • Prefix all CSS classes with rz- to prevent conflicts.

2.10.2

01 Mar 11:03
Compare
Choose a tag to compare

2.10.2 (2016-03-01)

Bug fixes

  • Remove the dist folder from gitignore.

2.10.1

01 Mar 10:58
Compare
Choose a tag to compare

2.10.1 (2016-03-01)

Bug fixes

  • Republish the npm module since dist files were missing