Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angularjs-slider

Package Overview
Dependencies
Maintainers
1
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angularjs-slider - npm Package Versions

1
8

4.0.1

Diff

Changelog

Source

4.0.1 (2016-06-04)

Improvement

  • Add a pointerType arg for the callbacks (onStart, onChange and onEnd) to identify which handle is used (#339).
valentinhervieu
published 4.0.0 •

Changelog

Source

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(''),
  },
}
valentinhervieu
published 3.0.0 •

Changelog

Source

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;
}
valentinhervieu
published 2.14.0 •

Changelog

Source

2.14.0 (2016-05-22)

Features

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

Changelog

Source

2.13.0 (2016-04-24)

Features

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

Changelog

Source

2.12.0 (2016-04-22)

Features

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

Changelog

Source

2.11.0 (2016-04-01)

Features

  • Add a hidePointerLabels option (#273).

Fix

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

Changelog

Source

2.10.4 (2016-03-16)

Fix

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

Changelog

Source

2.10.3 (2016-03-14)

Fix

  • Prefix all CSS classes with rz- to prevent conflicts (#292).
valentinhervieu
published 2.10.2 •

Changelog

Source

2.10.2 (2016-03-01)

Bug fixes

  • Remove the dist folder from gitignore.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc