Skip to content

Commit 5a48d38

Browse files
committed
Merge branch 'dev'
2 parents d42a2ff + 8a44dda commit 5a48d38

30 files changed

+450
-173
lines changed

Gruntfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ module.exports = function(grunt) {
1515
'src/js/scope_start.js',
1616
'src/js/structure.js',
1717
'src/js/tooltips.js',
18+
'src/js/aria.js',
1819
'src/js/pips.js',
1920
'src/js/scope_helpers.js',
2021
'src/js/scope_events.js',

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@ npm [(package)](https://www.npmjs.com/package/nouislider)
2727
Changelog
2828
---------
2929

30+
### 10.0.0 (*2017-05-28*)
31+
- Change: Change event listeners to be passive (#785);
32+
- Fixed: Pips are now updated when calling `updateOptions` (#669);
33+
- Fixed: Content Security Policy issue with pips;
34+
- Added: `removePips` method;
35+
- Added: aria support (#685);
36+
- Added: `ariaFormat` option (controls `aria-valuetext`);
37+
- Fixed: throw a better error when mistakenly trying to initialize noUiSlider with `null` (#658);
38+
- Fixed: Made order of events consistent and documented it (#775);
39+
- Fixed: Border radius of connect bar, white space wrapping of tooltips (#773, #774);
40+
- Fixed: Slider now uses `ownerDocument` instead of `document` (#767);
41+
3042
### 9.2.0 (*2017-01-17*)
3143
- Added: Version number to exceptions;
3244
- Added: `noUiSlider.version` holds current version number;

concat.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
require 'src/js/scope_start.js';
1111
require 'src/js/structure.js';
1212
require 'src/js/tooltips.js';
13+
require 'src/js/aria.js';
1314
require 'src/js/pips.js';
1415
require 'src/js/scope_helpers.js';
1516
require 'src/js/scope_events.js';

distribute/nouislider.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */
1+
/*! nouislider - 10.0.0 - 2017-05-28 14:52:48 */
22
/* Functional styling;
33
* These styles are required for noUiSlider to function.
44
* You don't need to change these rules to apply your design.
@@ -89,6 +89,7 @@
8989
}
9090
.noUi-connect {
9191
background: #3FB8AF;
92+
border-radius: 4px;
9293
box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
9394
-webkit-transition: background 450ms;
9495
transition: background 450ms;
@@ -164,6 +165,7 @@
164165
*/
165166
.noUi-value {
166167
position: absolute;
168+
white-space: nowrap;
167169
text-align: center;
168170
}
169171
.noUi-value-sub {
@@ -242,6 +244,7 @@
242244
color: #000;
243245
padding: 5px;
244246
text-align: center;
247+
white-space: nowrap;
245248
}
246249
.noUi-horizontal .noUi-tooltip {
247250
-webkit-transform: translate(-50%, 0);

0 commit comments

Comments
 (0)