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,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,167 @@
|
|
|
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 { XComponentBridge } from "./XComponentBridge";
|
|
9
|
+
import { runOn, delegateCombine, enumGetBox, delegateRemove, EnumUtil, markType } from "igniteui-angular-core";
|
|
10
|
+
import { NativeUISliderValueChangedEventArgs } from "igniteui-angular-core";
|
|
11
|
+
import { NativeUISliderOrientation_$type } from "igniteui-angular-core";
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
var MultiSliderBridge = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
16
|
+
__extends(MultiSliderBridge, _super);
|
|
17
|
+
function MultiSliderBridge(a) {
|
|
18
|
+
var _this = _super.call(this, a) || this;
|
|
19
|
+
_this.u = null;
|
|
20
|
+
_this.w = null;
|
|
21
|
+
_this.v = null;
|
|
22
|
+
_this.x = null;
|
|
23
|
+
return _this;
|
|
24
|
+
}
|
|
25
|
+
MultiSliderBridge.prototype.addHandler = function (a, b, c, d) {
|
|
26
|
+
switch (c) {
|
|
27
|
+
case 0:
|
|
28
|
+
var e = a;
|
|
29
|
+
e.thumbValueChanging = delegateCombine(e.thumbValueChanging, runOn(this, this.z));
|
|
30
|
+
var f = a;
|
|
31
|
+
f.yValueChanging = delegateCombine(f.yValueChanging, runOn(this, this.ab));
|
|
32
|
+
this.v = d;
|
|
33
|
+
this.x = b;
|
|
34
|
+
break;
|
|
35
|
+
case 4:
|
|
36
|
+
var g = a;
|
|
37
|
+
g.thumbValueChanged = delegateCombine(g.thumbValueChanged, runOn(this, this.y));
|
|
38
|
+
var h = a;
|
|
39
|
+
h.yValueChanged = delegateCombine(h.yValueChanged, runOn(this, this.aa));
|
|
40
|
+
this.u = d;
|
|
41
|
+
this.w = b;
|
|
42
|
+
break;
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
MultiSliderBridge.prototype.y = function (a, b) {
|
|
46
|
+
if (this.u != null) {
|
|
47
|
+
var c = new NativeUISliderValueChangedEventArgs();
|
|
48
|
+
this.u(this.w, c);
|
|
49
|
+
}
|
|
50
|
+
};
|
|
51
|
+
MultiSliderBridge.prototype.aa = function (a, b) {
|
|
52
|
+
if (this.u != null) {
|
|
53
|
+
var c = new NativeUISliderValueChangedEventArgs();
|
|
54
|
+
this.u(this.w, c);
|
|
55
|
+
}
|
|
56
|
+
};
|
|
57
|
+
MultiSliderBridge.prototype.z = function (a, b) {
|
|
58
|
+
if (this.v != null) {
|
|
59
|
+
var c = new NativeUISliderValueChangedEventArgs();
|
|
60
|
+
this.v(this.x, c);
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
MultiSliderBridge.prototype.ab = function (a, b) {
|
|
64
|
+
if (this.v != null) {
|
|
65
|
+
var c = new NativeUISliderValueChangedEventArgs();
|
|
66
|
+
this.v(this.x, c);
|
|
67
|
+
}
|
|
68
|
+
};
|
|
69
|
+
MultiSliderBridge.prototype.getValue = function (a, b) {
|
|
70
|
+
switch (b) {
|
|
71
|
+
case 12: return a.bg;
|
|
72
|
+
case 13: return a.bf;
|
|
73
|
+
case 94: return a.bv;
|
|
74
|
+
case 95: return a.bf;
|
|
75
|
+
case 14: return a.bl;
|
|
76
|
+
case 2: return a.thumbs._inner[0].s;
|
|
77
|
+
case 89: return a.b0;
|
|
78
|
+
case 90: return a.ek;
|
|
79
|
+
case 91: return a.es;
|
|
80
|
+
case 93: return a.eu;
|
|
81
|
+
case 92: return a.et;
|
|
82
|
+
case 30:
|
|
83
|
+
var c = a.e;
|
|
84
|
+
switch (c) {
|
|
85
|
+
case 0: return enumGetBox(NativeUISliderOrientation_$type, 0);
|
|
86
|
+
case 1: return enumGetBox(NativeUISliderOrientation_$type, 1);
|
|
87
|
+
case 2: return enumGetBox(NativeUISliderOrientation_$type, 2);
|
|
88
|
+
}
|
|
89
|
+
break;
|
|
90
|
+
}
|
|
91
|
+
return null;
|
|
92
|
+
};
|
|
93
|
+
MultiSliderBridge.prototype.removeHandler = function (a, b, c, d) {
|
|
94
|
+
switch (c) {
|
|
95
|
+
case 0:
|
|
96
|
+
var e = a;
|
|
97
|
+
e.thumbValueChanging = delegateRemove(e.thumbValueChanging, runOn(this, this.z));
|
|
98
|
+
var f = a;
|
|
99
|
+
f.yValueChanging = delegateRemove(f.yValueChanging, runOn(this, this.ab));
|
|
100
|
+
this.v = null;
|
|
101
|
+
this.x = null;
|
|
102
|
+
break;
|
|
103
|
+
case 4:
|
|
104
|
+
var g = a;
|
|
105
|
+
g.thumbValueChanged = delegateRemove(g.thumbValueChanged, runOn(this, this.y));
|
|
106
|
+
var h = a;
|
|
107
|
+
h.yValueChanged = delegateRemove(h.yValueChanged, runOn(this, this.aa));
|
|
108
|
+
this.u = null;
|
|
109
|
+
this.w = null;
|
|
110
|
+
break;
|
|
111
|
+
}
|
|
112
|
+
};
|
|
113
|
+
MultiSliderBridge.prototype.setValue = function (a, b, c) {
|
|
114
|
+
switch (b) {
|
|
115
|
+
case 12:
|
|
116
|
+
a.bg = c;
|
|
117
|
+
break;
|
|
118
|
+
case 13:
|
|
119
|
+
a.bf = c;
|
|
120
|
+
break;
|
|
121
|
+
case 94:
|
|
122
|
+
a.bv = c;
|
|
123
|
+
break;
|
|
124
|
+
case 95:
|
|
125
|
+
a.bu = c;
|
|
126
|
+
break;
|
|
127
|
+
case 14:
|
|
128
|
+
a.bl = c;
|
|
129
|
+
break;
|
|
130
|
+
case 2:
|
|
131
|
+
a.thumbs._inner[0].s = c;
|
|
132
|
+
break;
|
|
133
|
+
case 89:
|
|
134
|
+
a.b0 = c;
|
|
135
|
+
break;
|
|
136
|
+
case 90:
|
|
137
|
+
a.ek = c;
|
|
138
|
+
break;
|
|
139
|
+
case 91:
|
|
140
|
+
a.es = c;
|
|
141
|
+
break;
|
|
142
|
+
case 93:
|
|
143
|
+
a.eu = c;
|
|
144
|
+
break;
|
|
145
|
+
case 92:
|
|
146
|
+
a.et = c;
|
|
147
|
+
break;
|
|
148
|
+
case 30:
|
|
149
|
+
var d = EnumUtil.getEnumValue(NativeUISliderOrientation_$type, c);
|
|
150
|
+
switch (d) {
|
|
151
|
+
case 0:
|
|
152
|
+
a.e = 0;
|
|
153
|
+
break;
|
|
154
|
+
case 1:
|
|
155
|
+
a.e = 1;
|
|
156
|
+
break;
|
|
157
|
+
case 2:
|
|
158
|
+
a.e = 2;
|
|
159
|
+
break;
|
|
160
|
+
}
|
|
161
|
+
break;
|
|
162
|
+
}
|
|
163
|
+
};
|
|
164
|
+
MultiSliderBridge.$t = markType(MultiSliderBridge, 'MultiSliderBridge', XComponentBridge.$);
|
|
165
|
+
return MultiSliderBridge;
|
|
166
|
+
}(XComponentBridge));
|
|
167
|
+
export { MultiSliderBridge };
|
|
@@ -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 MultiSliderCursor_$type = markEnum('MultiSliderCursor', 'Default,0|LeftRight,1|AllWay,2|UpDown,3|Move,4');
|
|
@@ -0,0 +1,24 @@
|
|
|
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, markType } from "igniteui-angular-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
var MultiSliderHitInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(MultiSliderHitInfo, _super);
|
|
14
|
+
function MultiSliderHitInfo() {
|
|
15
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
16
|
+
_this.c = 0;
|
|
17
|
+
_this.a = null;
|
|
18
|
+
_this.b = null;
|
|
19
|
+
return _this;
|
|
20
|
+
}
|
|
21
|
+
MultiSliderHitInfo.$t = markType(MultiSliderHitInfo, 'MultiSliderHitInfo');
|
|
22
|
+
return MultiSliderHitInfo;
|
|
23
|
+
}(Base));
|
|
24
|
+
export { MultiSliderHitInfo };
|
|
@@ -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 var MultiSliderOrientation_$type = markEnum('MultiSliderOrientation', 'Horizontal,0|Vertical,1|TwoDimensional,2');
|
|
@@ -0,0 +1,43 @@
|
|
|
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, markType } from "igniteui-angular-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
var MultiSliderResolvingToolTipValueEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(MultiSliderResolvingToolTipValueEventArgs, _super);
|
|
14
|
+
function MultiSliderResolvingToolTipValueEventArgs() {
|
|
15
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
16
|
+
_this._position = 0;
|
|
17
|
+
_this._value = null;
|
|
18
|
+
return _this;
|
|
19
|
+
}
|
|
20
|
+
Object.defineProperty(MultiSliderResolvingToolTipValueEventArgs.prototype, "position", {
|
|
21
|
+
get: function () {
|
|
22
|
+
return this._position;
|
|
23
|
+
},
|
|
24
|
+
set: function (a) {
|
|
25
|
+
this._position = a;
|
|
26
|
+
},
|
|
27
|
+
enumerable: false,
|
|
28
|
+
configurable: true
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(MultiSliderResolvingToolTipValueEventArgs.prototype, "value", {
|
|
31
|
+
get: function () {
|
|
32
|
+
return this._value;
|
|
33
|
+
},
|
|
34
|
+
set: function (a) {
|
|
35
|
+
this._value = a;
|
|
36
|
+
},
|
|
37
|
+
enumerable: false,
|
|
38
|
+
configurable: true
|
|
39
|
+
});
|
|
40
|
+
MultiSliderResolvingToolTipValueEventArgs.$t = markType(MultiSliderResolvingToolTipValueEventArgs, 'MultiSliderResolvingToolTipValueEventArgs');
|
|
41
|
+
return MultiSliderResolvingToolTipValueEventArgs;
|
|
42
|
+
}(Base));
|
|
43
|
+
export { MultiSliderResolvingToolTipValueEventArgs };
|
|
@@ -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,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 { __extends } from "tslib";
|
|
8
|
+
import { ObservableCollection$1 } from "igniteui-angular-core";
|
|
9
|
+
import { MultiSliderThumb } from "./MultiSliderThumb";
|
|
10
|
+
import { markType } from "igniteui-angular-core";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
var MultiSliderThumbCollection = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
15
|
+
__extends(MultiSliderThumbCollection, _super);
|
|
16
|
+
function MultiSliderThumbCollection() {
|
|
17
|
+
return _super.call(this, MultiSliderThumb.$, 0) || this;
|
|
18
|
+
}
|
|
19
|
+
MultiSliderThumbCollection.$t = markType(MultiSliderThumbCollection, 'MultiSliderThumbCollection', ObservableCollection$1.$.specialize(MultiSliderThumb.$));
|
|
20
|
+
return MultiSliderThumbCollection;
|
|
21
|
+
}(ObservableCollection$1));
|
|
22
|
+
export { MultiSliderThumbCollection };
|
|
@@ -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 var MultiSliderThumbRangePosition_$type = markEnum('MultiSliderThumbRangePosition', 'PinnedLower,0|PinnedHigher,1');
|
|
@@ -0,0 +1,23 @@
|
|
|
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, markType } from "igniteui-angular-core";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
var MultiSliderThumbValueChangingEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
13
|
+
__extends(MultiSliderThumbValueChangingEventArgs, _super);
|
|
14
|
+
function MultiSliderThumbValueChangingEventArgs() {
|
|
15
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
16
|
+
_this.b = 0;
|
|
17
|
+
_this.a = null;
|
|
18
|
+
return _this;
|
|
19
|
+
}
|
|
20
|
+
MultiSliderThumbValueChangingEventArgs.$t = markType(MultiSliderThumbValueChangingEventArgs, 'MultiSliderThumbValueChangingEventArgs');
|
|
21
|
+
return MultiSliderThumbValueChangingEventArgs;
|
|
22
|
+
}(Base));
|
|
23
|
+
export { MultiSliderThumbValueChangingEventArgs };
|