igniteui-angular-inputs 18.1.1 → 18.2.0-beta.1
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,352 @@
|
|
|
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 { __extends } from "tslib";
|
|
8
|
+
import { Base, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox, markType } from "igniteui-angular-core";
|
|
9
|
+
import { MultiSliderThumbRangePosition_$type } from "./MultiSliderThumbRangePosition";
|
|
10
|
+
import { PropertyUpdatedEventArgs } from "igniteui-angular-core";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
var MultiSliderThumb = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
15
|
+
__extends(MultiSliderThumb, _super);
|
|
16
|
+
function MultiSliderThumb() {
|
|
17
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
18
|
+
_this.m = 0;
|
|
19
|
+
_this.o = 0;
|
|
20
|
+
_this.f = 1;
|
|
21
|
+
_this.h = null;
|
|
22
|
+
_this.d = null;
|
|
23
|
+
_this.l = 0;
|
|
24
|
+
_this.n = 0;
|
|
25
|
+
_this.j = false;
|
|
26
|
+
_this.k = false;
|
|
27
|
+
_this.propertyUpdated = null;
|
|
28
|
+
_this.propertyChanged = null;
|
|
29
|
+
_this.c = null;
|
|
30
|
+
_this.b = null;
|
|
31
|
+
return _this;
|
|
32
|
+
}
|
|
33
|
+
Object.defineProperty(MultiSliderThumb.prototype, "e", {
|
|
34
|
+
get: function () {
|
|
35
|
+
return this.d;
|
|
36
|
+
},
|
|
37
|
+
set: function (a) {
|
|
38
|
+
var b = this.d;
|
|
39
|
+
this.d = a;
|
|
40
|
+
if (b != this.d) {
|
|
41
|
+
this.u("Owner", b, this.d);
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
enumerable: false,
|
|
45
|
+
configurable: true
|
|
46
|
+
});
|
|
47
|
+
MultiSliderThumb.prototype.u = function (a, b, c) {
|
|
48
|
+
this.v(a, b, c);
|
|
49
|
+
if (this.propertyUpdated != null) {
|
|
50
|
+
this.propertyUpdated(this, new PropertyUpdatedEventArgs(a, b, c));
|
|
51
|
+
}
|
|
52
|
+
if (this.propertyChanged != null) {
|
|
53
|
+
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
54
|
+
}
|
|
55
|
+
};
|
|
56
|
+
MultiSliderThumb.prototype.v = function (a, b, c) {
|
|
57
|
+
if (this.e != null) {
|
|
58
|
+
if (a == "Position") {
|
|
59
|
+
this.j = true;
|
|
60
|
+
this.p = this.e.updateActualPosition(b, c);
|
|
61
|
+
if (!this.k) {
|
|
62
|
+
this.s = this.e.updateThumbValue(this.p);
|
|
63
|
+
}
|
|
64
|
+
this.j = false;
|
|
65
|
+
}
|
|
66
|
+
if (a == "Value") {
|
|
67
|
+
this.k = true;
|
|
68
|
+
if (!this.j) {
|
|
69
|
+
this.q = this.e.updateThumbPosition(this.s);
|
|
70
|
+
this.p = this.e.updateActualPosition(this.q, this.q);
|
|
71
|
+
}
|
|
72
|
+
this.e.onThumbValueUpdated(this, b, c);
|
|
73
|
+
this.k = false;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
this.t();
|
|
77
|
+
};
|
|
78
|
+
MultiSliderThumb.prototype.r = function (a) {
|
|
79
|
+
if (this.q + a > 1) {
|
|
80
|
+
a = 1 - this.q;
|
|
81
|
+
}
|
|
82
|
+
if (this.q + a < 0) {
|
|
83
|
+
a = -this.q;
|
|
84
|
+
}
|
|
85
|
+
if (this.i != null) {
|
|
86
|
+
if (this.g == 0) {
|
|
87
|
+
a = this.i.q(a);
|
|
88
|
+
}
|
|
89
|
+
else {
|
|
90
|
+
a = this.i.p(a);
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
this.q += a;
|
|
94
|
+
return a;
|
|
95
|
+
};
|
|
96
|
+
MultiSliderThumb.prototype.t = function () {
|
|
97
|
+
if (this.e == null) {
|
|
98
|
+
return;
|
|
99
|
+
}
|
|
100
|
+
this.e.trackDirty();
|
|
101
|
+
};
|
|
102
|
+
Object.defineProperty(MultiSliderThumb.prototype, "q", {
|
|
103
|
+
get: function () {
|
|
104
|
+
return this.m;
|
|
105
|
+
},
|
|
106
|
+
set: function (a) {
|
|
107
|
+
var b = this.m;
|
|
108
|
+
this.m = a;
|
|
109
|
+
if (b != this.m) {
|
|
110
|
+
this.u("Position", b, this.m);
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
enumerable: false,
|
|
114
|
+
configurable: true
|
|
115
|
+
});
|
|
116
|
+
Object.defineProperty(MultiSliderThumb.prototype, "p", {
|
|
117
|
+
get: function () {
|
|
118
|
+
return this.l;
|
|
119
|
+
},
|
|
120
|
+
set: function (a) {
|
|
121
|
+
var b = this.l;
|
|
122
|
+
this.l = a;
|
|
123
|
+
if (b != this.l) {
|
|
124
|
+
this.u("ActualPosition", b, this.l);
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
enumerable: false,
|
|
128
|
+
configurable: true
|
|
129
|
+
});
|
|
130
|
+
Object.defineProperty(MultiSliderThumb.prototype, "s", {
|
|
131
|
+
get: function () {
|
|
132
|
+
return this.n;
|
|
133
|
+
},
|
|
134
|
+
set: function (a) {
|
|
135
|
+
var b = this.n;
|
|
136
|
+
this.n = a;
|
|
137
|
+
if (b != this.n) {
|
|
138
|
+
this.u("Value", b, this.n);
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
enumerable: false,
|
|
142
|
+
configurable: true
|
|
143
|
+
});
|
|
144
|
+
Object.defineProperty(MultiSliderThumb.prototype, "g", {
|
|
145
|
+
get: function () {
|
|
146
|
+
return this.f;
|
|
147
|
+
},
|
|
148
|
+
set: function (a) {
|
|
149
|
+
var b = this.f;
|
|
150
|
+
this.f = a;
|
|
151
|
+
if (b != this.f) {
|
|
152
|
+
this.u("RangePosition", enumGetBox(MultiSliderThumbRangePosition_$type, b), enumGetBox(MultiSliderThumbRangePosition_$type, this.f));
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
enumerable: false,
|
|
156
|
+
configurable: true
|
|
157
|
+
});
|
|
158
|
+
Object.defineProperty(MultiSliderThumb.prototype, "i", {
|
|
159
|
+
get: function () {
|
|
160
|
+
return this.h;
|
|
161
|
+
},
|
|
162
|
+
set: function (a) {
|
|
163
|
+
var b = this.h;
|
|
164
|
+
this.h = a;
|
|
165
|
+
if (b != this.h) {
|
|
166
|
+
this.u("Range", b, this.h);
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
enumerable: false,
|
|
170
|
+
configurable: true
|
|
171
|
+
});
|
|
172
|
+
MultiSliderThumb.$t = markType(MultiSliderThumb, 'MultiSliderThumb', Base.$, [INotifyPropertyChanged_$type]);
|
|
173
|
+
return MultiSliderThumb;
|
|
174
|
+
}(Base));
|
|
175
|
+
export { MultiSliderThumb };
|
|
176
|
+
/**
|
|
177
|
+
* @hidden
|
|
178
|
+
*/
|
|
179
|
+
var MultiSliderTrackThumbRange = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
180
|
+
__extends(MultiSliderTrackThumbRange, _super);
|
|
181
|
+
function MultiSliderTrackThumbRange() {
|
|
182
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
183
|
+
_this.i = 0;
|
|
184
|
+
_this.j = 0;
|
|
185
|
+
_this.h = 0;
|
|
186
|
+
_this.g = 1;
|
|
187
|
+
_this.d = null;
|
|
188
|
+
_this.c = null;
|
|
189
|
+
_this.a = null;
|
|
190
|
+
_this.propertyChanged = null;
|
|
191
|
+
return _this;
|
|
192
|
+
}
|
|
193
|
+
MultiSliderTrackThumbRange.prototype.t = function (a, b, c) {
|
|
194
|
+
this.u(a, b, c);
|
|
195
|
+
if (this.propertyChanged != null) {
|
|
196
|
+
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
197
|
+
}
|
|
198
|
+
};
|
|
199
|
+
MultiSliderTrackThumbRange.prototype.u = function (a, b, c) {
|
|
200
|
+
this.s();
|
|
201
|
+
};
|
|
202
|
+
MultiSliderTrackThumbRange.prototype.s = function () {
|
|
203
|
+
if (this.b == null) {
|
|
204
|
+
return;
|
|
205
|
+
}
|
|
206
|
+
this.b.trackDirty();
|
|
207
|
+
};
|
|
208
|
+
Object.defineProperty(MultiSliderTrackThumbRange.prototype, "b", {
|
|
209
|
+
get: function () {
|
|
210
|
+
return this.a;
|
|
211
|
+
},
|
|
212
|
+
set: function (a) {
|
|
213
|
+
var b = this.a;
|
|
214
|
+
this.a = a;
|
|
215
|
+
if (b != this.a) {
|
|
216
|
+
this.t("Owner", b, this.a);
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
enumerable: false,
|
|
220
|
+
configurable: true
|
|
221
|
+
});
|
|
222
|
+
Object.defineProperty(MultiSliderTrackThumbRange.prototype, "n", {
|
|
223
|
+
get: function () {
|
|
224
|
+
return this.i;
|
|
225
|
+
},
|
|
226
|
+
set: function (a) {
|
|
227
|
+
var b = this.i;
|
|
228
|
+
this.i = a;
|
|
229
|
+
if (b != this.i) {
|
|
230
|
+
this.t("Position", b, this.i);
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
enumerable: false,
|
|
234
|
+
configurable: true
|
|
235
|
+
});
|
|
236
|
+
MultiSliderTrackThumbRange.prototype.o = function (a) {
|
|
237
|
+
if (a > 0 && this.n + (this.r / 2) + a > 1) {
|
|
238
|
+
a = 1 - (this.n + (this.r / 2));
|
|
239
|
+
}
|
|
240
|
+
if (a < 0 && (this.n - (this.r / 2)) + a < 0) {
|
|
241
|
+
a = (this.n - (this.r / 2)) * -1;
|
|
242
|
+
}
|
|
243
|
+
this.f.q += a;
|
|
244
|
+
this.e.q += a;
|
|
245
|
+
this.n += a;
|
|
246
|
+
return a;
|
|
247
|
+
};
|
|
248
|
+
MultiSliderTrackThumbRange.prototype.p = function (a) {
|
|
249
|
+
a = this.k(a);
|
|
250
|
+
var b = this.n - this.r / 2;
|
|
251
|
+
this.r += a;
|
|
252
|
+
this.n = b + this.r / 2;
|
|
253
|
+
return a;
|
|
254
|
+
};
|
|
255
|
+
MultiSliderTrackThumbRange.prototype.k = function (a) {
|
|
256
|
+
if (a < 0) {
|
|
257
|
+
var b = this.r + a;
|
|
258
|
+
if (b < this.m) {
|
|
259
|
+
b = this.m;
|
|
260
|
+
a = (b - this.r);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
if (a > 0) {
|
|
264
|
+
var c = this.r + a;
|
|
265
|
+
if (c > this.l) {
|
|
266
|
+
c = this.l;
|
|
267
|
+
a = (c - this.r);
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
return a;
|
|
271
|
+
};
|
|
272
|
+
MultiSliderTrackThumbRange.prototype.q = function (a) {
|
|
273
|
+
a = -1 * this.k(a * -1);
|
|
274
|
+
var b = this.n + this.r / 2;
|
|
275
|
+
this.r -= a;
|
|
276
|
+
this.n = b - this.r / 2;
|
|
277
|
+
return a;
|
|
278
|
+
};
|
|
279
|
+
Object.defineProperty(MultiSliderTrackThumbRange.prototype, "r", {
|
|
280
|
+
get: function () {
|
|
281
|
+
return this.j;
|
|
282
|
+
},
|
|
283
|
+
set: function (a) {
|
|
284
|
+
var b = this.j;
|
|
285
|
+
this.j = a;
|
|
286
|
+
if (b != this.j) {
|
|
287
|
+
this.t("Width", b, this.j);
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
enumerable: false,
|
|
291
|
+
configurable: true
|
|
292
|
+
});
|
|
293
|
+
Object.defineProperty(MultiSliderTrackThumbRange.prototype, "m", {
|
|
294
|
+
get: function () {
|
|
295
|
+
return this.h;
|
|
296
|
+
},
|
|
297
|
+
set: function (a) {
|
|
298
|
+
var b = this.h;
|
|
299
|
+
this.h = a;
|
|
300
|
+
if (b != this.h) {
|
|
301
|
+
this.t("MinWidth", b, this.h);
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
enumerable: false,
|
|
305
|
+
configurable: true
|
|
306
|
+
});
|
|
307
|
+
Object.defineProperty(MultiSliderTrackThumbRange.prototype, "l", {
|
|
308
|
+
get: function () {
|
|
309
|
+
return this.g;
|
|
310
|
+
},
|
|
311
|
+
set: function (a) {
|
|
312
|
+
var b = this.g;
|
|
313
|
+
this.g = a;
|
|
314
|
+
if (b != this.g) {
|
|
315
|
+
this.t("MaxWidth", b, this.g);
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
enumerable: false,
|
|
319
|
+
configurable: true
|
|
320
|
+
});
|
|
321
|
+
Object.defineProperty(MultiSliderTrackThumbRange.prototype, "f", {
|
|
322
|
+
get: function () {
|
|
323
|
+
return this.d;
|
|
324
|
+
},
|
|
325
|
+
set: function (a) {
|
|
326
|
+
var b = this.d;
|
|
327
|
+
this.d = a;
|
|
328
|
+
if (b != this.d) {
|
|
329
|
+
this.t("LowerThumb", b, this.d);
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
enumerable: false,
|
|
333
|
+
configurable: true
|
|
334
|
+
});
|
|
335
|
+
Object.defineProperty(MultiSliderTrackThumbRange.prototype, "e", {
|
|
336
|
+
get: function () {
|
|
337
|
+
return this.c;
|
|
338
|
+
},
|
|
339
|
+
set: function (a) {
|
|
340
|
+
var b = this.c;
|
|
341
|
+
this.c = a;
|
|
342
|
+
if (b != this.c) {
|
|
343
|
+
this.t("HigherThumb", b, this.c);
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
enumerable: false,
|
|
347
|
+
configurable: true
|
|
348
|
+
});
|
|
349
|
+
MultiSliderTrackThumbRange.$t = markType(MultiSliderTrackThumbRange, 'MultiSliderTrackThumbRange', Base.$, [INotifyPropertyChanged_$type]);
|
|
350
|
+
return MultiSliderTrackThumbRange;
|
|
351
|
+
}(Base));
|
|
352
|
+
export { MultiSliderTrackThumbRange };
|
|
@@ -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 var 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";
|