igniteui-angular-inputs 18.1.1 → 18.2.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +19 -19
- package/esm2015/lib/ButtonView_combined.js +820 -790
- package/esm2015/lib/CalendarView_combined.js +82 -82
- package/esm2015/lib/ColorEditor.js +7 -0
- package/esm2015/lib/ColorEditorBridge.js +7 -0
- package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanel.js +7 -0
- package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
- package/esm2015/lib/ColorEditorPanelView.js +7 -0
- package/esm2015/lib/ColorEditorView.js +7 -0
- package/esm2015/lib/DatePickerView_combined.js +18 -18
- package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
- package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
- package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
- package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm2015/lib/ISliderTrackOwner.js +11 -0
- package/esm2015/lib/IconClickedEventArgs.js +10 -0
- package/esm2015/lib/IconView_combined.js +345 -314
- package/esm2015/lib/InputGroupView_combined.js +456 -355
- package/esm2015/lib/MultiSlider.js +7 -0
- package/esm2015/lib/MultiSliderBridge.js +165 -0
- package/esm2015/lib/MultiSliderCursor.js +11 -0
- package/esm2015/lib/MultiSliderHitInfo.js +22 -0
- package/esm2015/lib/MultiSliderOrientation.js +17 -0
- package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
- package/esm2015/lib/MultiSliderThumb.js +7 -0
- package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
- package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
- package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
- package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm2015/lib/MultiSliderView.js +7 -0
- package/esm2015/lib/MultiSliderView_combined.js +1785 -0
- package/esm2015/lib/MultiSliderVisualArea.js +11 -0
- package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
- package/esm2015/lib/XButtonBridge.js +25 -20
- package/esm2015/lib/XButtonGroupBridge.js +177 -0
- package/esm2015/lib/XComponentBridge.js +3 -0
- package/esm2015/lib/XIconBridge.js +20 -16
- package/esm2015/lib/XInputBridge.js +274 -26
- package/esm2015/lib/XPopupBridge.js +117 -98
- package/esm2015/lib/igx-color-editor-component.js +470 -0
- package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
- package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-module.js +39 -0
- package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
- package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
- package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
- package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
- package/esm2015/lib/igx-multi-slider-component.js +642 -0
- package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
- package/esm2015/lib/igx-multi-slider-module.js +36 -0
- package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
- package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
- package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
- package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
- package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
- package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
- package/esm2015/lib/igx-x-button-component.js +262 -262
- package/esm2015/lib/igx-x-icon-component.js +66 -55
- package/esm2015/lib/igx-x-input-group-component.js +48 -48
- package/esm2015/lib/igx-x-label-component.js +41 -40
- package/esm2015/public_api.js +55 -0
- package/esm5/lib/ButtonGroupView_combined.js +19 -19
- package/esm5/lib/ButtonView_combined.js +765 -735
- package/esm5/lib/CalendarView_combined.js +82 -82
- package/esm5/lib/ColorEditor.js +7 -0
- package/esm5/lib/ColorEditorBridge.js +7 -0
- package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanel.js +7 -0
- package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
- package/esm5/lib/ColorEditorPanelView.js +7 -0
- package/esm5/lib/ColorEditorView.js +7 -0
- package/esm5/lib/DatePickerView_combined.js +18 -18
- package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
- package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
- package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
- package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm5/lib/ISliderTrackOwner.js +11 -0
- package/esm5/lib/IconClickedEventArgs.js +13 -1
- package/esm5/lib/IconView_combined.js +336 -301
- package/esm5/lib/InputGroupView_combined.js +444 -343
- package/esm5/lib/MultiSlider.js +7 -0
- package/esm5/lib/MultiSliderBridge.js +167 -0
- package/esm5/lib/MultiSliderCursor.js +11 -0
- package/esm5/lib/MultiSliderHitInfo.js +24 -0
- package/esm5/lib/MultiSliderOrientation.js +17 -0
- package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
- package/esm5/lib/MultiSliderThumb.js +7 -0
- package/esm5/lib/MultiSliderThumbCollection.js +22 -0
- package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
- package/esm5/lib/MultiSliderThumb_combined.js +352 -0
- package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm5/lib/MultiSliderView.js +7 -0
- package/esm5/lib/MultiSliderView_combined.js +2006 -0
- package/esm5/lib/MultiSliderVisualArea.js +11 -0
- package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
- package/esm5/lib/NativeUIXInputsFactory.js +1 -189
- package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
- package/esm5/lib/XButtonBridge.js +25 -20
- package/esm5/lib/XButtonGroupBridge.js +179 -0
- package/esm5/lib/XComponentBridge.js +3 -0
- package/esm5/lib/XIconBridge.js +20 -16
- package/esm5/lib/XInputBridge.js +274 -26
- package/esm5/lib/XPopupBridge.js +117 -98
- package/esm5/lib/igx-color-editor-component.js +555 -0
- package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
- package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-module.js +38 -0
- package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-panel-component.js +435 -0
- package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
- package/esm5/lib/igx-color-editor-panel-module.js +59 -0
- package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
- package/esm5/lib/igx-multi-slider-component.js +842 -0
- package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
- package/esm5/lib/igx-multi-slider-module.js +35 -0
- package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
- package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
- package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
- package/esm5/lib/igx-multi-slider-thumb.js +134 -0
- package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
- package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
- package/esm5/lib/igx-x-button-component.js +262 -262
- package/esm5/lib/igx-x-icon-component.js +70 -55
- package/esm5/lib/igx-x-input-group-component.js +48 -48
- package/esm5/lib/igx-x-label-component.js +41 -40
- package/esm5/public_api.js +55 -0
- package/fesm2015/igniteui-angular-inputs.js +15626 -7466
- package/fesm5/igniteui-angular-inputs.js +16802 -7565
- package/lib/ButtonView_combined.d.ts +243 -241
- package/lib/ColorEditor.d.ts +1 -0
- package/lib/ColorEditorBridge.d.ts +1 -0
- package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanel.d.ts +1 -0
- package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
- package/lib/ColorEditorPanelView.d.ts +1 -0
- package/lib/ColorEditorView.d.ts +1 -0
- package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
- package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
- package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
- package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
- package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
- package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
- package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
- package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
- package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
- package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
- package/lib/ISliderTrackOwner.d.ts +15 -0
- package/lib/IconClickedEventArgs.d.ts +3 -0
- package/lib/IconView_combined.d.ts +88 -84
- package/lib/InputGroupView_combined.d.ts +120 -113
- package/lib/MultiSlider.d.ts +1 -0
- package/lib/MultiSliderBridge.d.ts +24 -0
- package/lib/MultiSliderCursor.d.ts +15 -0
- package/lib/MultiSliderHitInfo.d.ts +13 -0
- package/lib/MultiSliderOrientation.d.ts +10 -0
- package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
- package/lib/MultiSliderThumb.d.ts +1 -0
- package/lib/MultiSliderThumbCollection.d.ts +10 -0
- package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
- package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
- package/lib/MultiSliderThumb_combined.d.ts +76 -0
- package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
- package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
- package/lib/MultiSliderView.d.ts +1 -0
- package/lib/MultiSliderView_combined.d.ts +298 -0
- package/lib/MultiSliderVisualArea.d.ts +14 -0
- package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
- package/lib/NativeUIXInputsFactory.d.ts +1 -24
- package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
- package/lib/XButtonGroupBridge.d.ts +29 -0
- package/lib/XInputBridge.d.ts +29 -5
- package/lib/XPopupBridge.d.ts +12 -9
- package/lib/igx-color-editor-component.d.ts +161 -0
- package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
- package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-module.d.ts +10 -0
- package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
- package/lib/igx-color-editor-panel-component.d.ts +125 -0
- package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
- package/lib/igx-multi-slider-component.d.ts +200 -0
- package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
- package/lib/igx-multi-slider-module.d.ts +9 -0
- package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
- package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
- package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
- package/lib/igx-multi-slider-thumb.d.ts +33 -0
- package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
- package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
- package/lib/igx-x-icon-component.d.ts +6 -1
- package/package.json +2 -2
- package/public_api.d.ts +55 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
export { MultiSlider } from "./MultiSliderView_combined";
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { XComponentBridge } from "./XComponentBridge";
|
|
8
|
+
import { runOn, delegateCombine, enumGetBox, delegateRemove, EnumUtil, markType } from "igniteui-angular-core";
|
|
9
|
+
import { NativeUISliderValueChangedEventArgs } from "igniteui-angular-core";
|
|
10
|
+
import { NativeUISliderOrientation_$type } from "igniteui-angular-core";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
export let MultiSliderBridge = /*@__PURE__*/ (() => {
|
|
15
|
+
class MultiSliderBridge extends XComponentBridge {
|
|
16
|
+
constructor(a) {
|
|
17
|
+
super(a);
|
|
18
|
+
this.u = null;
|
|
19
|
+
this.w = null;
|
|
20
|
+
this.v = null;
|
|
21
|
+
this.x = null;
|
|
22
|
+
}
|
|
23
|
+
addHandler(a, b, c, d) {
|
|
24
|
+
switch (c) {
|
|
25
|
+
case 0:
|
|
26
|
+
let e = a;
|
|
27
|
+
e.thumbValueChanging = delegateCombine(e.thumbValueChanging, runOn(this, this.z));
|
|
28
|
+
let f = a;
|
|
29
|
+
f.yValueChanging = delegateCombine(f.yValueChanging, runOn(this, this.ab));
|
|
30
|
+
this.v = d;
|
|
31
|
+
this.x = b;
|
|
32
|
+
break;
|
|
33
|
+
case 4:
|
|
34
|
+
let g = a;
|
|
35
|
+
g.thumbValueChanged = delegateCombine(g.thumbValueChanged, runOn(this, this.y));
|
|
36
|
+
let h = a;
|
|
37
|
+
h.yValueChanged = delegateCombine(h.yValueChanged, runOn(this, this.aa));
|
|
38
|
+
this.u = d;
|
|
39
|
+
this.w = b;
|
|
40
|
+
break;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
y(a, b) {
|
|
44
|
+
if (this.u != null) {
|
|
45
|
+
let c = new NativeUISliderValueChangedEventArgs();
|
|
46
|
+
this.u(this.w, c);
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
aa(a, b) {
|
|
50
|
+
if (this.u != null) {
|
|
51
|
+
let c = new NativeUISliderValueChangedEventArgs();
|
|
52
|
+
this.u(this.w, c);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
z(a, b) {
|
|
56
|
+
if (this.v != null) {
|
|
57
|
+
let c = new NativeUISliderValueChangedEventArgs();
|
|
58
|
+
this.v(this.x, c);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
ab(a, b) {
|
|
62
|
+
if (this.v != null) {
|
|
63
|
+
let c = new NativeUISliderValueChangedEventArgs();
|
|
64
|
+
this.v(this.x, c);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
getValue(a, b) {
|
|
68
|
+
switch (b) {
|
|
69
|
+
case 12: return a.bg;
|
|
70
|
+
case 13: return a.bf;
|
|
71
|
+
case 94: return a.bv;
|
|
72
|
+
case 95: return a.bf;
|
|
73
|
+
case 14: return a.bl;
|
|
74
|
+
case 2: return a.thumbs._inner[0].s;
|
|
75
|
+
case 89: return a.b0;
|
|
76
|
+
case 90: return a.ek;
|
|
77
|
+
case 91: return a.es;
|
|
78
|
+
case 93: return a.eu;
|
|
79
|
+
case 92: return a.et;
|
|
80
|
+
case 30:
|
|
81
|
+
let c = a.e;
|
|
82
|
+
switch (c) {
|
|
83
|
+
case 0: return enumGetBox(NativeUISliderOrientation_$type, 0);
|
|
84
|
+
case 1: return enumGetBox(NativeUISliderOrientation_$type, 1);
|
|
85
|
+
case 2: return enumGetBox(NativeUISliderOrientation_$type, 2);
|
|
86
|
+
}
|
|
87
|
+
break;
|
|
88
|
+
}
|
|
89
|
+
return null;
|
|
90
|
+
}
|
|
91
|
+
removeHandler(a, b, c, d) {
|
|
92
|
+
switch (c) {
|
|
93
|
+
case 0:
|
|
94
|
+
let e = a;
|
|
95
|
+
e.thumbValueChanging = delegateRemove(e.thumbValueChanging, runOn(this, this.z));
|
|
96
|
+
let f = a;
|
|
97
|
+
f.yValueChanging = delegateRemove(f.yValueChanging, runOn(this, this.ab));
|
|
98
|
+
this.v = null;
|
|
99
|
+
this.x = null;
|
|
100
|
+
break;
|
|
101
|
+
case 4:
|
|
102
|
+
let g = a;
|
|
103
|
+
g.thumbValueChanged = delegateRemove(g.thumbValueChanged, runOn(this, this.y));
|
|
104
|
+
let h = a;
|
|
105
|
+
h.yValueChanged = delegateRemove(h.yValueChanged, runOn(this, this.aa));
|
|
106
|
+
this.u = null;
|
|
107
|
+
this.w = null;
|
|
108
|
+
break;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
setValue(a, b, c) {
|
|
112
|
+
switch (b) {
|
|
113
|
+
case 12:
|
|
114
|
+
a.bg = c;
|
|
115
|
+
break;
|
|
116
|
+
case 13:
|
|
117
|
+
a.bf = c;
|
|
118
|
+
break;
|
|
119
|
+
case 94:
|
|
120
|
+
a.bv = c;
|
|
121
|
+
break;
|
|
122
|
+
case 95:
|
|
123
|
+
a.bu = c;
|
|
124
|
+
break;
|
|
125
|
+
case 14:
|
|
126
|
+
a.bl = c;
|
|
127
|
+
break;
|
|
128
|
+
case 2:
|
|
129
|
+
a.thumbs._inner[0].s = c;
|
|
130
|
+
break;
|
|
131
|
+
case 89:
|
|
132
|
+
a.b0 = c;
|
|
133
|
+
break;
|
|
134
|
+
case 90:
|
|
135
|
+
a.ek = c;
|
|
136
|
+
break;
|
|
137
|
+
case 91:
|
|
138
|
+
a.es = c;
|
|
139
|
+
break;
|
|
140
|
+
case 93:
|
|
141
|
+
a.eu = c;
|
|
142
|
+
break;
|
|
143
|
+
case 92:
|
|
144
|
+
a.et = c;
|
|
145
|
+
break;
|
|
146
|
+
case 30:
|
|
147
|
+
let d = EnumUtil.getEnumValue(NativeUISliderOrientation_$type, c);
|
|
148
|
+
switch (d) {
|
|
149
|
+
case 0:
|
|
150
|
+
a.e = 0;
|
|
151
|
+
break;
|
|
152
|
+
case 1:
|
|
153
|
+
a.e = 1;
|
|
154
|
+
break;
|
|
155
|
+
case 2:
|
|
156
|
+
a.e = 2;
|
|
157
|
+
break;
|
|
158
|
+
}
|
|
159
|
+
break;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
MultiSliderBridge.$t = markType(MultiSliderBridge, 'MultiSliderBridge', XComponentBridge.$);
|
|
164
|
+
return MultiSliderBridge;
|
|
165
|
+
})();
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { markEnum } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let MultiSliderCursor_$type = markEnum('MultiSliderCursor', 'Default,0|LeftRight,1|AllWay,2|UpDown,3|Move,4');
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { Base, markType } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let MultiSliderHitInfo = /*@__PURE__*/ (() => {
|
|
12
|
+
class MultiSliderHitInfo extends Base {
|
|
13
|
+
constructor() {
|
|
14
|
+
super(...arguments);
|
|
15
|
+
this.c = 0;
|
|
16
|
+
this.a = null;
|
|
17
|
+
this.b = null;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
MultiSliderHitInfo.$t = markType(MultiSliderHitInfo, 'MultiSliderHitInfo');
|
|
21
|
+
return MultiSliderHitInfo;
|
|
22
|
+
})();
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { markEnum } from "igniteui-angular-core";
|
|
8
|
+
export var MultiSliderOrientation = /*@__PURE__*/ (function (MultiSliderOrientation) {
|
|
9
|
+
MultiSliderOrientation[MultiSliderOrientation["Horizontal"] = 0] = "Horizontal";
|
|
10
|
+
MultiSliderOrientation[MultiSliderOrientation["Vertical"] = 1] = "Vertical";
|
|
11
|
+
MultiSliderOrientation[MultiSliderOrientation["TwoDimensional"] = 2] = "TwoDimensional";
|
|
12
|
+
return MultiSliderOrientation;
|
|
13
|
+
})({});
|
|
14
|
+
/**
|
|
15
|
+
* @hidden
|
|
16
|
+
*/
|
|
17
|
+
export let MultiSliderOrientation_$type = markEnum('MultiSliderOrientation', 'Horizontal,0|Vertical,1|TwoDimensional,2');
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { Base, markType } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let MultiSliderResolvingToolTipValueEventArgs = /*@__PURE__*/ (() => {
|
|
12
|
+
class MultiSliderResolvingToolTipValueEventArgs extends Base {
|
|
13
|
+
constructor() {
|
|
14
|
+
super(...arguments);
|
|
15
|
+
this._position = 0;
|
|
16
|
+
this._value = null;
|
|
17
|
+
}
|
|
18
|
+
get position() {
|
|
19
|
+
return this._position;
|
|
20
|
+
}
|
|
21
|
+
set position(a) {
|
|
22
|
+
this._position = a;
|
|
23
|
+
}
|
|
24
|
+
get value() {
|
|
25
|
+
return this._value;
|
|
26
|
+
}
|
|
27
|
+
set value(a) {
|
|
28
|
+
this._value = a;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
MultiSliderResolvingToolTipValueEventArgs.$t = markType(MultiSliderResolvingToolTipValueEventArgs, 'MultiSliderResolvingToolTipValueEventArgs');
|
|
32
|
+
return MultiSliderResolvingToolTipValueEventArgs;
|
|
33
|
+
})();
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
export { MultiSliderThumb } from "./MultiSliderThumb_combined";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { ObservableCollection$1 } from "igniteui-angular-core";
|
|
8
|
+
import { MultiSliderThumb } from "./MultiSliderThumb";
|
|
9
|
+
import { markType } from "igniteui-angular-core";
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export let MultiSliderThumbCollection = /*@__PURE__*/ (() => {
|
|
14
|
+
class MultiSliderThumbCollection extends ObservableCollection$1 {
|
|
15
|
+
constructor() {
|
|
16
|
+
super(MultiSliderThumb.$, 0);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
MultiSliderThumbCollection.$t = markType(MultiSliderThumbCollection, 'MultiSliderThumbCollection', ObservableCollection$1.$.specialize(MultiSliderThumb.$));
|
|
20
|
+
return MultiSliderThumbCollection;
|
|
21
|
+
})();
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { markEnum } from "igniteui-angular-core";
|
|
8
|
+
export var MultiSliderThumbRangePosition = /*@__PURE__*/ (function (MultiSliderThumbRangePosition) {
|
|
9
|
+
MultiSliderThumbRangePosition[MultiSliderThumbRangePosition["PinnedLower"] = 0] = "PinnedLower";
|
|
10
|
+
MultiSliderThumbRangePosition[MultiSliderThumbRangePosition["PinnedHigher"] = 1] = "PinnedHigher";
|
|
11
|
+
return MultiSliderThumbRangePosition;
|
|
12
|
+
})({});
|
|
13
|
+
/**
|
|
14
|
+
* @hidden
|
|
15
|
+
*/
|
|
16
|
+
export let MultiSliderThumbRangePosition_$type = markEnum('MultiSliderThumbRangePosition', 'PinnedLower,0|PinnedHigher,1');
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { Base, markType } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let MultiSliderThumbValueChangingEventArgs = /*@__PURE__*/ (() => {
|
|
12
|
+
class MultiSliderThumbValueChangingEventArgs extends Base {
|
|
13
|
+
constructor() {
|
|
14
|
+
super(...arguments);
|
|
15
|
+
this.b = 0;
|
|
16
|
+
this.a = null;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
MultiSliderThumbValueChangingEventArgs.$t = markType(MultiSliderThumbValueChangingEventArgs, 'MultiSliderThumbValueChangingEventArgs');
|
|
20
|
+
return MultiSliderThumbValueChangingEventArgs;
|
|
21
|
+
})();
|
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { Base, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox, markType } from "igniteui-angular-core";
|
|
8
|
+
import { MultiSliderThumbRangePosition_$type } from "./MultiSliderThumbRangePosition";
|
|
9
|
+
import { PropertyUpdatedEventArgs } from "igniteui-angular-core";
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export let MultiSliderThumb = /*@__PURE__*/ (() => {
|
|
14
|
+
class MultiSliderThumb extends Base {
|
|
15
|
+
constructor() {
|
|
16
|
+
super(...arguments);
|
|
17
|
+
this.m = 0;
|
|
18
|
+
this.o = 0;
|
|
19
|
+
this.f = 1;
|
|
20
|
+
this.h = null;
|
|
21
|
+
this.d = null;
|
|
22
|
+
this.l = 0;
|
|
23
|
+
this.n = 0;
|
|
24
|
+
this.j = false;
|
|
25
|
+
this.k = false;
|
|
26
|
+
this.propertyUpdated = null;
|
|
27
|
+
this.propertyChanged = null;
|
|
28
|
+
this.c = null;
|
|
29
|
+
this.b = null;
|
|
30
|
+
}
|
|
31
|
+
get e() {
|
|
32
|
+
return this.d;
|
|
33
|
+
}
|
|
34
|
+
set e(a) {
|
|
35
|
+
let b = this.d;
|
|
36
|
+
this.d = a;
|
|
37
|
+
if (b != this.d) {
|
|
38
|
+
this.u("Owner", b, this.d);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
u(a, b, c) {
|
|
42
|
+
this.v(a, b, c);
|
|
43
|
+
if (this.propertyUpdated != null) {
|
|
44
|
+
this.propertyUpdated(this, new PropertyUpdatedEventArgs(a, b, c));
|
|
45
|
+
}
|
|
46
|
+
if (this.propertyChanged != null) {
|
|
47
|
+
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
v(a, b, c) {
|
|
51
|
+
if (this.e != null) {
|
|
52
|
+
if (a == "Position") {
|
|
53
|
+
this.j = true;
|
|
54
|
+
this.p = this.e.updateActualPosition(b, c);
|
|
55
|
+
if (!this.k) {
|
|
56
|
+
this.s = this.e.updateThumbValue(this.p);
|
|
57
|
+
}
|
|
58
|
+
this.j = false;
|
|
59
|
+
}
|
|
60
|
+
if (a == "Value") {
|
|
61
|
+
this.k = true;
|
|
62
|
+
if (!this.j) {
|
|
63
|
+
this.q = this.e.updateThumbPosition(this.s);
|
|
64
|
+
this.p = this.e.updateActualPosition(this.q, this.q);
|
|
65
|
+
}
|
|
66
|
+
this.e.onThumbValueUpdated(this, b, c);
|
|
67
|
+
this.k = false;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
this.t();
|
|
71
|
+
}
|
|
72
|
+
r(a) {
|
|
73
|
+
if (this.q + a > 1) {
|
|
74
|
+
a = 1 - this.q;
|
|
75
|
+
}
|
|
76
|
+
if (this.q + a < 0) {
|
|
77
|
+
a = -this.q;
|
|
78
|
+
}
|
|
79
|
+
if (this.i != null) {
|
|
80
|
+
if (this.g == 0) {
|
|
81
|
+
a = this.i.q(a);
|
|
82
|
+
}
|
|
83
|
+
else {
|
|
84
|
+
a = this.i.p(a);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
this.q += a;
|
|
88
|
+
return a;
|
|
89
|
+
}
|
|
90
|
+
t() {
|
|
91
|
+
if (this.e == null) {
|
|
92
|
+
return;
|
|
93
|
+
}
|
|
94
|
+
this.e.trackDirty();
|
|
95
|
+
}
|
|
96
|
+
get q() {
|
|
97
|
+
return this.m;
|
|
98
|
+
}
|
|
99
|
+
set q(a) {
|
|
100
|
+
let b = this.m;
|
|
101
|
+
this.m = a;
|
|
102
|
+
if (b != this.m) {
|
|
103
|
+
this.u("Position", b, this.m);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
get p() {
|
|
107
|
+
return this.l;
|
|
108
|
+
}
|
|
109
|
+
set p(a) {
|
|
110
|
+
let b = this.l;
|
|
111
|
+
this.l = a;
|
|
112
|
+
if (b != this.l) {
|
|
113
|
+
this.u("ActualPosition", b, this.l);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
get s() {
|
|
117
|
+
return this.n;
|
|
118
|
+
}
|
|
119
|
+
set s(a) {
|
|
120
|
+
let b = this.n;
|
|
121
|
+
this.n = a;
|
|
122
|
+
if (b != this.n) {
|
|
123
|
+
this.u("Value", b, this.n);
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
get g() {
|
|
127
|
+
return this.f;
|
|
128
|
+
}
|
|
129
|
+
set g(a) {
|
|
130
|
+
let b = this.f;
|
|
131
|
+
this.f = a;
|
|
132
|
+
if (b != this.f) {
|
|
133
|
+
this.u("RangePosition", enumGetBox(MultiSliderThumbRangePosition_$type, b), enumGetBox(MultiSliderThumbRangePosition_$type, this.f));
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
get i() {
|
|
137
|
+
return this.h;
|
|
138
|
+
}
|
|
139
|
+
set i(a) {
|
|
140
|
+
let b = this.h;
|
|
141
|
+
this.h = a;
|
|
142
|
+
if (b != this.h) {
|
|
143
|
+
this.u("Range", b, this.h);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
MultiSliderThumb.$t = markType(MultiSliderThumb, 'MultiSliderThumb', Base.$, [INotifyPropertyChanged_$type]);
|
|
148
|
+
return MultiSliderThumb;
|
|
149
|
+
})();
|
|
150
|
+
/**
|
|
151
|
+
* @hidden
|
|
152
|
+
*/
|
|
153
|
+
export let MultiSliderTrackThumbRange = /*@__PURE__*/ (() => {
|
|
154
|
+
class MultiSliderTrackThumbRange extends Base {
|
|
155
|
+
constructor() {
|
|
156
|
+
super(...arguments);
|
|
157
|
+
this.i = 0;
|
|
158
|
+
this.j = 0;
|
|
159
|
+
this.h = 0;
|
|
160
|
+
this.g = 1;
|
|
161
|
+
this.d = null;
|
|
162
|
+
this.c = null;
|
|
163
|
+
this.a = null;
|
|
164
|
+
this.propertyChanged = null;
|
|
165
|
+
}
|
|
166
|
+
t(a, b, c) {
|
|
167
|
+
this.u(a, b, c);
|
|
168
|
+
if (this.propertyChanged != null) {
|
|
169
|
+
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
u(a, b, c) {
|
|
173
|
+
this.s();
|
|
174
|
+
}
|
|
175
|
+
s() {
|
|
176
|
+
if (this.b == null) {
|
|
177
|
+
return;
|
|
178
|
+
}
|
|
179
|
+
this.b.trackDirty();
|
|
180
|
+
}
|
|
181
|
+
get b() {
|
|
182
|
+
return this.a;
|
|
183
|
+
}
|
|
184
|
+
set b(a) {
|
|
185
|
+
let b = this.a;
|
|
186
|
+
this.a = a;
|
|
187
|
+
if (b != this.a) {
|
|
188
|
+
this.t("Owner", b, this.a);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
get n() {
|
|
192
|
+
return this.i;
|
|
193
|
+
}
|
|
194
|
+
set n(a) {
|
|
195
|
+
let b = this.i;
|
|
196
|
+
this.i = a;
|
|
197
|
+
if (b != this.i) {
|
|
198
|
+
this.t("Position", b, this.i);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
o(a) {
|
|
202
|
+
if (a > 0 && this.n + (this.r / 2) + a > 1) {
|
|
203
|
+
a = 1 - (this.n + (this.r / 2));
|
|
204
|
+
}
|
|
205
|
+
if (a < 0 && (this.n - (this.r / 2)) + a < 0) {
|
|
206
|
+
a = (this.n - (this.r / 2)) * -1;
|
|
207
|
+
}
|
|
208
|
+
this.f.q += a;
|
|
209
|
+
this.e.q += a;
|
|
210
|
+
this.n += a;
|
|
211
|
+
return a;
|
|
212
|
+
}
|
|
213
|
+
p(a) {
|
|
214
|
+
a = this.k(a);
|
|
215
|
+
let b = this.n - this.r / 2;
|
|
216
|
+
this.r += a;
|
|
217
|
+
this.n = b + this.r / 2;
|
|
218
|
+
return a;
|
|
219
|
+
}
|
|
220
|
+
k(a) {
|
|
221
|
+
if (a < 0) {
|
|
222
|
+
let b = this.r + a;
|
|
223
|
+
if (b < this.m) {
|
|
224
|
+
b = this.m;
|
|
225
|
+
a = (b - this.r);
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
if (a > 0) {
|
|
229
|
+
let c = this.r + a;
|
|
230
|
+
if (c > this.l) {
|
|
231
|
+
c = this.l;
|
|
232
|
+
a = (c - this.r);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
return a;
|
|
236
|
+
}
|
|
237
|
+
q(a) {
|
|
238
|
+
a = -1 * this.k(a * -1);
|
|
239
|
+
let b = this.n + this.r / 2;
|
|
240
|
+
this.r -= a;
|
|
241
|
+
this.n = b - this.r / 2;
|
|
242
|
+
return a;
|
|
243
|
+
}
|
|
244
|
+
get r() {
|
|
245
|
+
return this.j;
|
|
246
|
+
}
|
|
247
|
+
set r(a) {
|
|
248
|
+
let b = this.j;
|
|
249
|
+
this.j = a;
|
|
250
|
+
if (b != this.j) {
|
|
251
|
+
this.t("Width", b, this.j);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
get m() {
|
|
255
|
+
return this.h;
|
|
256
|
+
}
|
|
257
|
+
set m(a) {
|
|
258
|
+
let b = this.h;
|
|
259
|
+
this.h = a;
|
|
260
|
+
if (b != this.h) {
|
|
261
|
+
this.t("MinWidth", b, this.h);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
get l() {
|
|
265
|
+
return this.g;
|
|
266
|
+
}
|
|
267
|
+
set l(a) {
|
|
268
|
+
let b = this.g;
|
|
269
|
+
this.g = a;
|
|
270
|
+
if (b != this.g) {
|
|
271
|
+
this.t("MaxWidth", b, this.g);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
get f() {
|
|
275
|
+
return this.d;
|
|
276
|
+
}
|
|
277
|
+
set f(a) {
|
|
278
|
+
let b = this.d;
|
|
279
|
+
this.d = a;
|
|
280
|
+
if (b != this.d) {
|
|
281
|
+
this.t("LowerThumb", b, this.d);
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
get e() {
|
|
285
|
+
return this.c;
|
|
286
|
+
}
|
|
287
|
+
set e(a) {
|
|
288
|
+
let b = this.c;
|
|
289
|
+
this.c = a;
|
|
290
|
+
if (b != this.c) {
|
|
291
|
+
this.t("HigherThumb", b, this.c);
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
MultiSliderTrackThumbRange.$t = markType(MultiSliderTrackThumbRange, 'MultiSliderTrackThumbRange', Base.$, [INotifyPropertyChanged_$type]);
|
|
296
|
+
return MultiSliderTrackThumbRange;
|
|
297
|
+
})();
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
import { markEnum } from "igniteui-angular-core";
|
|
8
|
+
/**
|
|
9
|
+
* @hidden
|
|
10
|
+
*/
|
|
11
|
+
export let MultiSliderTrackShadeOrientation_$type = markEnum('MultiSliderTrackShadeOrientation', 'HorizontalLower,0|HorizontalHigher,1|VerticalLower,2|VerticalHigher,3');
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
export { MultiSliderTrackThumbRange } from "./MultiSliderThumb_combined";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/*
|
|
2
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
3
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
4
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
|
+
*/
|
|
7
|
+
export { MultiSliderView } from "./MultiSliderView_combined";
|