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
Copy file name to clipboardExpand all lines: dist/rzslider.d.ts
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,8 @@ declare module "angular" {
84
84
showSelectionBar?: boolean;
85
85
/** Boolean (defaults to false): Set to true to always show the selection bar after the slider handle. */
86
86
showSelectionBarEnd?: boolean;
87
+
/** Boolean (defaults to false): Only for range slider. Set to true to visualize in different colour the areas on the left/right (top/bottom for vertical range slider) of selection bar between the handles. */
88
+
showOuterSelectionBars?: boolean;
87
89
/** Number (defaults to null): Set a number to draw the selection bar between this value and the slider handle. */
88
90
showSelectionBarFromValue?: number;
89
91
/**
@@ -108,6 +110,8 @@ declare module "angular" {
108
110
hidePointerLabels?: boolean;
109
111
/** Boolean (defaults to false): Set to true to hide min / max labels */
110
112
hideLimitLabels?: boolean;
113
+
/** Boolean (defaults to true): Set to false to disable the auto- hiding behavior of the limit labels. */
114
+
autoHideLimitLabels?: boolean;
111
115
/** Boolean (defaults to false): Set to true to make the slider read-only. */
112
116
readOnly?: boolean;
113
117
/** Boolean (defaults to false): Set to true to disable the slider. */
@@ -171,6 +175,22 @@ declare module "angular" {
171
175
keyboardSupport?: boolean;
172
176
/** Object (default to null): The properties defined in this object will be exposed in the slider template under custom.X. */
173
177
customTemplateScope?: any;
178
+
/** Boolean (defaults to false): Set to true to use a logarithmic scale to display the slider. */
179
+
logScale?: boolean;
180
+
/** Function(val, minVal, maxVal): percent: Function that returns the position on the slider for a given value.The position must be a percentage between 0 and 1. */
/** Function(percent, minVal, maxVal): value: Function that returns the value for a given position on the slider. The position is a percentage between 0 and 1. */
/** Object(default to null): Use to display the selection bar as a gradient. The given object must contain from and to properties which are colors. */
185
+
selectionBarGradient?: {from: string,to: string};
186
+
/** String(default to null): Use to add a label directly to the slider(s) for accessibility. Adds the aria-label attribute. */
187
+
ariaLabel?: string;
188
+
/** String(default to null): Use to add a label directly to the slider(s) for accessibility. Adds the aria-label attribute. */
189
+
ariaLabelHigh?: string;
190
+
/** String(default to null): Use instead of ariaLabel and ariaLabelHigh to reference the id of an element which will be used to label the slider(s). Adds the aria-labelledby attribute. */
191
+
ariaLabelledBy?: string;
192
+
/** String(default to null): Use instead of ariaLabel and ariaLabelHigh to reference the id of an element which will be used to label the slider(s). Adds the aria-labelledby attribute. */
0 commit comments