Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4f865ca

Browse files
trodiValentinH
authored andcommitted
fix(Typescript Support): Add reversedControls to d.ts (#586)
1 parent db2b61b commit 4f865ca

File tree

9 files changed

+59
-39
lines changed

9 files changed

+59
-39
lines changed

dist/rzslider.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.d.ts

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,24 @@ declare module "angular" {
165165
vertical?: boolean;
166166
/**
167167
* Boolean (defaults to true): Handles are focusable (on click or with tab) and can be modified using the following keyboard controls:
168-
* Left/bottom arrows: -1
169-
* Right/top arrows: +1
170-
* Page-down: -10%
171-
* Page-up: +10%
172-
* Home: minimum value
173-
* End: maximum value
168+
* - Left/bottom arrows: -1
169+
* - Right/top arrows: +1
170+
* - Page-down: -10%
171+
* - Page-up: +10%
172+
* - Home: minimum value
173+
* - End: maximum value
174174
*/
175175
keyboardSupport?: boolean;
176+
/**
177+
* Boolean (defaults to false): Set to true to reverse keyboard navigation:
178+
* - Right/top arrows: -1
179+
* - Left/bottom arrows: +1
180+
* - Page-up: -10%
181+
* - Page-down: +10%
182+
* - End: minimum value
183+
* - Home: maximum value
184+
*/
185+
reversedControls?: boolean;
176186
/** Object (default to null): The properties defined in this object will be exposed in the slider template under custom.X. */
177187
customTemplateScope?: any;
178188
/** Boolean (defaults to false): Set to true to use a logarithmic scale to display the slider. */

dist/rzslider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*! angularjs-slider - v6.4.0 -
22
(c) Rafal Zajac <[email protected]>, Valentin Hervieu <[email protected]>, Jussi Saarivirta <[email protected]>, Angelin Sirbu <[email protected]> -
33
https://github.com/angular-slider/angularjs-slider -
4-
2017-10-07 */
4+
2017-10-25 */
55
/*jslint unparam: true */
66
/*global angular: false, console: false, define, module */
77
;(function(root, factory) {

dist/rzslider.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rzslider.scss

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@
7878
"czConfig": {
7979
"path": "node_modules/cz-conventional-changelog"
8080
}
81-
}
81+
}

rzslider.d.ts

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,14 +165,24 @@ declare module "angular" {
165165
vertical?: boolean;
166166
/**
167167
* Boolean (defaults to true): Handles are focusable (on click or with tab) and can be modified using the following keyboard controls:
168-
* Left/bottom arrows: -1
169-
* Right/top arrows: +1
170-
* Page-down: -10%
171-
* Page-up: +10%
172-
* Home: minimum value
173-
* End: maximum value
168+
* - Left/bottom arrows: -1
169+
* - Right/top arrows: +1
170+
* - Page-down: -10%
171+
* - Page-up: +10%
172+
* - Home: minimum value
173+
* - End: maximum value
174174
*/
175175
keyboardSupport?: boolean;
176+
/**
177+
* Boolean (defaults to false): Set to true to reverse keyboard navigation:
178+
* - Right/top arrows: -1
179+
* - Left/bottom arrows: +1
180+
* - Page-up: -10%
181+
* - Page-down: +10%
182+
* - End: minimum value
183+
* - Home: maximum value
184+
*/
185+
reversedControls?: boolean;
176186
/** Object (default to null): The properties defined in this object will be exposed in the slider template under custom.X. */
177187
customTemplateScope?: any;
178188
/** Boolean (defaults to false): Set to true to use a logarithmic scale to display the slider. */

0 commit comments

Comments
 (0)