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,139 @@
|
|
|
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, Point_$type, markType } from "igniteui-angular-core";
|
|
9
|
+
import { IMultiSliderTrackBarVisual_$type } from "./IMultiSliderTrackBarVisual";
|
|
10
|
+
import { Path } from "igniteui-angular-core";
|
|
11
|
+
import { List$1 } from "igniteui-angular-core";
|
|
12
|
+
import { Brush } from "igniteui-angular-core";
|
|
13
|
+
import { Color } from "igniteui-angular-core";
|
|
14
|
+
import { PathGeometry } from "igniteui-angular-core";
|
|
15
|
+
import { PathFigure } from "igniteui-angular-core";
|
|
16
|
+
import { PolyLineSegment } from "igniteui-angular-core";
|
|
17
|
+
/**
|
|
18
|
+
* @hidden
|
|
19
|
+
*/
|
|
20
|
+
var DefaultMultiSliderTrackBarVisual = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
21
|
+
__extends(DefaultMultiSliderTrackBarVisual, _super);
|
|
22
|
+
function DefaultMultiSliderTrackBarVisual() {
|
|
23
|
+
var _this = _super.call(this) || this;
|
|
24
|
+
_this._translateX = 0;
|
|
25
|
+
_this._translateY = 0;
|
|
26
|
+
_this.b = -1;
|
|
27
|
+
_this.a = -1;
|
|
28
|
+
_this._barBox = null;
|
|
29
|
+
_this._allPaths = null;
|
|
30
|
+
_this.barBox = new Path();
|
|
31
|
+
_this.allPaths = new List$1(Path.$, 0);
|
|
32
|
+
_this.allPaths.add(_this.barBox);
|
|
33
|
+
_this.barBox._fill = _this.getBarBoxDefaultBrush();
|
|
34
|
+
return _this;
|
|
35
|
+
}
|
|
36
|
+
Object.defineProperty(DefaultMultiSliderTrackBarVisual.prototype, "translateX", {
|
|
37
|
+
get: function () {
|
|
38
|
+
return this._translateX;
|
|
39
|
+
},
|
|
40
|
+
set: function (a) {
|
|
41
|
+
this._translateX = a;
|
|
42
|
+
},
|
|
43
|
+
enumerable: false,
|
|
44
|
+
configurable: true
|
|
45
|
+
});
|
|
46
|
+
Object.defineProperty(DefaultMultiSliderTrackBarVisual.prototype, "translateY", {
|
|
47
|
+
get: function () {
|
|
48
|
+
return this._translateY;
|
|
49
|
+
},
|
|
50
|
+
set: function (a) {
|
|
51
|
+
this._translateY = a;
|
|
52
|
+
},
|
|
53
|
+
enumerable: false,
|
|
54
|
+
configurable: true
|
|
55
|
+
});
|
|
56
|
+
DefaultMultiSliderTrackBarVisual.prototype.getBarBoxDefaultBrush = function () {
|
|
57
|
+
return ((function () {
|
|
58
|
+
var $ret = new Brush();
|
|
59
|
+
$ret.color = Color.u(255, 218, 218, 218);
|
|
60
|
+
return $ret;
|
|
61
|
+
})());
|
|
62
|
+
};
|
|
63
|
+
DefaultMultiSliderTrackBarVisual.prototype.getBarBoxDefaultOutline = function () {
|
|
64
|
+
return null;
|
|
65
|
+
};
|
|
66
|
+
DefaultMultiSliderTrackBarVisual.prototype.getBarBoxDefaultStrokeThickness = function () {
|
|
67
|
+
return 0;
|
|
68
|
+
};
|
|
69
|
+
DefaultMultiSliderTrackBarVisual.prototype.c = function () {
|
|
70
|
+
var a = new PathGeometry();
|
|
71
|
+
var b = new PathFigure();
|
|
72
|
+
var c = new PolyLineSegment();
|
|
73
|
+
b._isClosed = true;
|
|
74
|
+
b._isFilled = true;
|
|
75
|
+
b._startPoint = { $type: Point_$type, x: this.width / -2, y: this.height / -2 };
|
|
76
|
+
c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / -2 });
|
|
77
|
+
c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / 2 });
|
|
78
|
+
c._points.add({ $type: Point_$type, x: this.width / -2, y: this.height / 2 });
|
|
79
|
+
b._segments.add(c);
|
|
80
|
+
a.c.add(b);
|
|
81
|
+
this.barBox.an = a;
|
|
82
|
+
};
|
|
83
|
+
Object.defineProperty(DefaultMultiSliderTrackBarVisual.prototype, "width", {
|
|
84
|
+
get: function () {
|
|
85
|
+
return this.b;
|
|
86
|
+
},
|
|
87
|
+
set: function (a) {
|
|
88
|
+
var b = this.b;
|
|
89
|
+
this.b = a;
|
|
90
|
+
if (b != this.b) {
|
|
91
|
+
this.d();
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
enumerable: false,
|
|
95
|
+
configurable: true
|
|
96
|
+
});
|
|
97
|
+
DefaultMultiSliderTrackBarVisual.prototype.d = function () {
|
|
98
|
+
if (this.width > 0 && this.height > 0) {
|
|
99
|
+
this.c();
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
Object.defineProperty(DefaultMultiSliderTrackBarVisual.prototype, "height", {
|
|
103
|
+
get: function () {
|
|
104
|
+
return this.a;
|
|
105
|
+
},
|
|
106
|
+
set: function (a) {
|
|
107
|
+
var b = this.a;
|
|
108
|
+
this.a = a;
|
|
109
|
+
if (this.a != b) {
|
|
110
|
+
this.d();
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
enumerable: false,
|
|
114
|
+
configurable: true
|
|
115
|
+
});
|
|
116
|
+
Object.defineProperty(DefaultMultiSliderTrackBarVisual.prototype, "barBox", {
|
|
117
|
+
get: function () {
|
|
118
|
+
return this._barBox;
|
|
119
|
+
},
|
|
120
|
+
set: function (a) {
|
|
121
|
+
this._barBox = a;
|
|
122
|
+
},
|
|
123
|
+
enumerable: false,
|
|
124
|
+
configurable: true
|
|
125
|
+
});
|
|
126
|
+
Object.defineProperty(DefaultMultiSliderTrackBarVisual.prototype, "allPaths", {
|
|
127
|
+
get: function () {
|
|
128
|
+
return this._allPaths;
|
|
129
|
+
},
|
|
130
|
+
set: function (a) {
|
|
131
|
+
this._allPaths = a;
|
|
132
|
+
},
|
|
133
|
+
enumerable: false,
|
|
134
|
+
configurable: true
|
|
135
|
+
});
|
|
136
|
+
DefaultMultiSliderTrackBarVisual.$t = markType(DefaultMultiSliderTrackBarVisual, 'DefaultMultiSliderTrackBarVisual', Base.$, [IMultiSliderTrackBarVisual_$type]);
|
|
137
|
+
return DefaultMultiSliderTrackBarVisual;
|
|
138
|
+
}(Base));
|
|
139
|
+
export { DefaultMultiSliderTrackBarVisual };
|
|
@@ -0,0 +1,242 @@
|
|
|
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, Point_$type, markType } from "igniteui-angular-core";
|
|
9
|
+
import { IMultiSliderTrackRangeVisual_$type } from "./IMultiSliderTrackRangeVisual";
|
|
10
|
+
import { Path } from "igniteui-angular-core";
|
|
11
|
+
import { List$1 } from "igniteui-angular-core";
|
|
12
|
+
import { Brush } from "igniteui-angular-core";
|
|
13
|
+
import { Color } from "igniteui-angular-core";
|
|
14
|
+
import { PathGeometry } from "igniteui-angular-core";
|
|
15
|
+
import { PathFigure } from "igniteui-angular-core";
|
|
16
|
+
import { LineSegment } from "igniteui-angular-core";
|
|
17
|
+
import { PolyLineSegment } from "igniteui-angular-core";
|
|
18
|
+
/**
|
|
19
|
+
* @hidden
|
|
20
|
+
*/
|
|
21
|
+
var DefaultMultiSliderTrackRangeVisual = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
22
|
+
__extends(DefaultMultiSliderTrackRangeVisual, _super);
|
|
23
|
+
function DefaultMultiSliderTrackRangeVisual() {
|
|
24
|
+
var _this = _super.call(this) || this;
|
|
25
|
+
_this._translateX = 0;
|
|
26
|
+
_this._translateY = 0;
|
|
27
|
+
_this.a = 0;
|
|
28
|
+
_this.c = -1;
|
|
29
|
+
_this.b = -1;
|
|
30
|
+
_this._thumbBox = null;
|
|
31
|
+
_this._thumbRidges = null;
|
|
32
|
+
_this._allPaths = null;
|
|
33
|
+
_this.thumbBox = new Path();
|
|
34
|
+
_this.thumbRidges = new Path();
|
|
35
|
+
_this.allPaths = new List$1(Path.$, 0);
|
|
36
|
+
_this.allPaths.add(_this.thumbBox);
|
|
37
|
+
_this.allPaths.add(_this.thumbRidges);
|
|
38
|
+
_this.thumbBox._stroke = _this.getThumbBoxDefaultStroke();
|
|
39
|
+
_this.thumbBox.ad = 1;
|
|
40
|
+
_this.thumbBox._fill = _this.getThumbBoxDefaultBrush();
|
|
41
|
+
_this.thumbRidges._stroke = _this.getThumbRidgesDefaultStroke();
|
|
42
|
+
_this.thumbRidges.ad = 1;
|
|
43
|
+
return _this;
|
|
44
|
+
}
|
|
45
|
+
DefaultMultiSliderTrackRangeVisual.prototype.getThumbBoxDefaultStroke = function () {
|
|
46
|
+
return ((function () {
|
|
47
|
+
var $ret = new Brush();
|
|
48
|
+
$ret.color = Color.u(255, 185, 185, 185);
|
|
49
|
+
return $ret;
|
|
50
|
+
})());
|
|
51
|
+
};
|
|
52
|
+
DefaultMultiSliderTrackRangeVisual.prototype.getThumbBoxDefaultStrokeThickness = function () {
|
|
53
|
+
return 1;
|
|
54
|
+
};
|
|
55
|
+
DefaultMultiSliderTrackRangeVisual.prototype.getThumbBoxDefaultBrush = function () {
|
|
56
|
+
return ((function () {
|
|
57
|
+
var $ret = new Brush();
|
|
58
|
+
$ret.color = Color.u(255, 249, 249, 249);
|
|
59
|
+
return $ret;
|
|
60
|
+
})());
|
|
61
|
+
};
|
|
62
|
+
DefaultMultiSliderTrackRangeVisual.prototype.getThumbRidgesDefaultStroke = function () {
|
|
63
|
+
return ((function () {
|
|
64
|
+
var $ret = new Brush();
|
|
65
|
+
$ret.color = Color.u(255, 119, 119, 119);
|
|
66
|
+
return $ret;
|
|
67
|
+
})());
|
|
68
|
+
};
|
|
69
|
+
Object.defineProperty(DefaultMultiSliderTrackRangeVisual.prototype, "translateX", {
|
|
70
|
+
get: function () {
|
|
71
|
+
return this._translateX;
|
|
72
|
+
},
|
|
73
|
+
set: function (a) {
|
|
74
|
+
this._translateX = a;
|
|
75
|
+
},
|
|
76
|
+
enumerable: false,
|
|
77
|
+
configurable: true
|
|
78
|
+
});
|
|
79
|
+
Object.defineProperty(DefaultMultiSliderTrackRangeVisual.prototype, "translateY", {
|
|
80
|
+
get: function () {
|
|
81
|
+
return this._translateY;
|
|
82
|
+
},
|
|
83
|
+
set: function (a) {
|
|
84
|
+
this._translateY = a;
|
|
85
|
+
},
|
|
86
|
+
enumerable: false,
|
|
87
|
+
configurable: true
|
|
88
|
+
});
|
|
89
|
+
DefaultMultiSliderTrackRangeVisual.prototype.e = function () {
|
|
90
|
+
if (this.orientation == 0) {
|
|
91
|
+
var a = new PathGeometry();
|
|
92
|
+
var b = new PathFigure();
|
|
93
|
+
var c = new LineSegment(1);
|
|
94
|
+
b._isClosed = false;
|
|
95
|
+
b._isFilled = false;
|
|
96
|
+
b._startPoint = { $type: Point_$type, x: -3, y: (this.height / -2) * 0.5 };
|
|
97
|
+
c.c = { $type: Point_$type, x: -3, y: (this.height / 2) * 0.5 };
|
|
98
|
+
b._segments.add(c);
|
|
99
|
+
a.c.add(b);
|
|
100
|
+
var d = new PathFigure();
|
|
101
|
+
var e = new LineSegment(1);
|
|
102
|
+
d._isClosed = false;
|
|
103
|
+
d._isFilled = false;
|
|
104
|
+
d._startPoint = { $type: Point_$type, x: 0, y: (this.height / -2) * 0.5 };
|
|
105
|
+
e.c = { $type: Point_$type, x: 0, y: (this.height / 2) * 0.5 };
|
|
106
|
+
d._segments.add(e);
|
|
107
|
+
a.c.add(d);
|
|
108
|
+
var f = new PathFigure();
|
|
109
|
+
var g = new LineSegment(1);
|
|
110
|
+
f._isClosed = false;
|
|
111
|
+
f._isFilled = false;
|
|
112
|
+
f._startPoint = { $type: Point_$type, x: 3, y: (this.height / -2) * 0.5 };
|
|
113
|
+
g.c = { $type: Point_$type, x: 3, y: (this.height / 2) * 0.5 };
|
|
114
|
+
f._segments.add(g);
|
|
115
|
+
a.c.add(f);
|
|
116
|
+
this.thumbRidges.an = a;
|
|
117
|
+
}
|
|
118
|
+
else {
|
|
119
|
+
var h = new PathGeometry();
|
|
120
|
+
var i = new PathFigure();
|
|
121
|
+
var j = new LineSegment(1);
|
|
122
|
+
i._isClosed = false;
|
|
123
|
+
i._isFilled = false;
|
|
124
|
+
i._startPoint = { $type: Point_$type, x: (this.width / -2) * 0.5, y: -3 };
|
|
125
|
+
j.c = { $type: Point_$type, x: (this.width / 2) * 0.5, y: -3 };
|
|
126
|
+
i._segments.add(j);
|
|
127
|
+
h.c.add(i);
|
|
128
|
+
var k = new PathFigure();
|
|
129
|
+
var l = new LineSegment(1);
|
|
130
|
+
k._isClosed = false;
|
|
131
|
+
k._isFilled = false;
|
|
132
|
+
k._startPoint = { $type: Point_$type, x: (this.width / -2) * 0.5, y: 0 };
|
|
133
|
+
l.c = { $type: Point_$type, x: (this.width / 2) * 0.5, y: 0 };
|
|
134
|
+
k._segments.add(l);
|
|
135
|
+
h.c.add(k);
|
|
136
|
+
var m = new PathFigure();
|
|
137
|
+
var n = new LineSegment(1);
|
|
138
|
+
m._isClosed = false;
|
|
139
|
+
m._isFilled = false;
|
|
140
|
+
i._startPoint = { $type: Point_$type, x: (this.width / -2) * 0.5, y: 3 };
|
|
141
|
+
j.c = { $type: Point_$type, x: (this.width / 2) * 0.5, y: 3 };
|
|
142
|
+
m._segments.add(n);
|
|
143
|
+
h.c.add(m);
|
|
144
|
+
this.thumbRidges.an = h;
|
|
145
|
+
}
|
|
146
|
+
};
|
|
147
|
+
DefaultMultiSliderTrackRangeVisual.prototype.d = function () {
|
|
148
|
+
var a = new PathGeometry();
|
|
149
|
+
var b = new PathFigure();
|
|
150
|
+
var c = new PolyLineSegment();
|
|
151
|
+
b._isClosed = true;
|
|
152
|
+
b._isFilled = true;
|
|
153
|
+
b._startPoint = { $type: Point_$type, x: this.width / -2, y: this.height / -2 };
|
|
154
|
+
c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / -2 });
|
|
155
|
+
c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / 2 });
|
|
156
|
+
c._points.add({ $type: Point_$type, x: this.width / -2, y: this.height / 2 });
|
|
157
|
+
b._segments.add(c);
|
|
158
|
+
a.c.add(b);
|
|
159
|
+
this.thumbBox.an = a;
|
|
160
|
+
};
|
|
161
|
+
Object.defineProperty(DefaultMultiSliderTrackRangeVisual.prototype, "orientation", {
|
|
162
|
+
get: function () {
|
|
163
|
+
return this.a;
|
|
164
|
+
},
|
|
165
|
+
set: function (a) {
|
|
166
|
+
var b = this.a;
|
|
167
|
+
this.a = a;
|
|
168
|
+
if (this.a != b) {
|
|
169
|
+
this.f();
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
enumerable: false,
|
|
173
|
+
configurable: true
|
|
174
|
+
});
|
|
175
|
+
Object.defineProperty(DefaultMultiSliderTrackRangeVisual.prototype, "width", {
|
|
176
|
+
get: function () {
|
|
177
|
+
return this.c;
|
|
178
|
+
},
|
|
179
|
+
set: function (a) {
|
|
180
|
+
var b = this.c;
|
|
181
|
+
this.c = a;
|
|
182
|
+
if (b != this.c) {
|
|
183
|
+
this.f();
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
enumerable: false,
|
|
187
|
+
configurable: true
|
|
188
|
+
});
|
|
189
|
+
DefaultMultiSliderTrackRangeVisual.prototype.f = function () {
|
|
190
|
+
if (this.width > 0 && this.height > 0) {
|
|
191
|
+
this.d();
|
|
192
|
+
this.e();
|
|
193
|
+
}
|
|
194
|
+
};
|
|
195
|
+
Object.defineProperty(DefaultMultiSliderTrackRangeVisual.prototype, "height", {
|
|
196
|
+
get: function () {
|
|
197
|
+
return this.b;
|
|
198
|
+
},
|
|
199
|
+
set: function (a) {
|
|
200
|
+
var b = this.b;
|
|
201
|
+
this.b = a;
|
|
202
|
+
if (this.b != b) {
|
|
203
|
+
this.f();
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
enumerable: false,
|
|
207
|
+
configurable: true
|
|
208
|
+
});
|
|
209
|
+
Object.defineProperty(DefaultMultiSliderTrackRangeVisual.prototype, "thumbBox", {
|
|
210
|
+
get: function () {
|
|
211
|
+
return this._thumbBox;
|
|
212
|
+
},
|
|
213
|
+
set: function (a) {
|
|
214
|
+
this._thumbBox = a;
|
|
215
|
+
},
|
|
216
|
+
enumerable: false,
|
|
217
|
+
configurable: true
|
|
218
|
+
});
|
|
219
|
+
Object.defineProperty(DefaultMultiSliderTrackRangeVisual.prototype, "thumbRidges", {
|
|
220
|
+
get: function () {
|
|
221
|
+
return this._thumbRidges;
|
|
222
|
+
},
|
|
223
|
+
set: function (a) {
|
|
224
|
+
this._thumbRidges = a;
|
|
225
|
+
},
|
|
226
|
+
enumerable: false,
|
|
227
|
+
configurable: true
|
|
228
|
+
});
|
|
229
|
+
Object.defineProperty(DefaultMultiSliderTrackRangeVisual.prototype, "allPaths", {
|
|
230
|
+
get: function () {
|
|
231
|
+
return this._allPaths;
|
|
232
|
+
},
|
|
233
|
+
set: function (a) {
|
|
234
|
+
this._allPaths = a;
|
|
235
|
+
},
|
|
236
|
+
enumerable: false,
|
|
237
|
+
configurable: true
|
|
238
|
+
});
|
|
239
|
+
DefaultMultiSliderTrackRangeVisual.$t = markType(DefaultMultiSliderTrackRangeVisual, 'DefaultMultiSliderTrackRangeVisual', Base.$, [IMultiSliderTrackRangeVisual_$type]);
|
|
240
|
+
return DefaultMultiSliderTrackRangeVisual;
|
|
241
|
+
}(Base));
|
|
242
|
+
export { DefaultMultiSliderTrackRangeVisual };
|
|
@@ -0,0 +1,212 @@
|
|
|
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, Point_$type, markType } from "igniteui-angular-core";
|
|
9
|
+
import { IMultiSliderTrackThumbCalloutVisual_$type } from "./IMultiSliderTrackThumbCalloutVisual";
|
|
10
|
+
import { Path } from "igniteui-angular-core";
|
|
11
|
+
import { TextBlock } from "igniteui-angular-core";
|
|
12
|
+
import { List$1 } from "igniteui-angular-core";
|
|
13
|
+
import { Brush } from "igniteui-angular-core";
|
|
14
|
+
import { Color } from "igniteui-angular-core";
|
|
15
|
+
import { PathGeometry } from "igniteui-angular-core";
|
|
16
|
+
import { PathFigure } from "igniteui-angular-core";
|
|
17
|
+
import { PolyLineSegment } from "igniteui-angular-core";
|
|
18
|
+
/**
|
|
19
|
+
* @hidden
|
|
20
|
+
*/
|
|
21
|
+
var DefaultMultiSliderTrackThumbCalloutVisual = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
22
|
+
__extends(DefaultMultiSliderTrackThumbCalloutVisual, _super);
|
|
23
|
+
function DefaultMultiSliderTrackThumbCalloutVisual() {
|
|
24
|
+
var _this = _super.call(this) || this;
|
|
25
|
+
_this._translateX = 0;
|
|
26
|
+
_this._translateY = 0;
|
|
27
|
+
_this._textTranslateX = 0;
|
|
28
|
+
_this._textTranslateY = 0;
|
|
29
|
+
_this.c = -1;
|
|
30
|
+
_this.b = -1;
|
|
31
|
+
_this.a = false;
|
|
32
|
+
_this._calloutBox = null;
|
|
33
|
+
_this._calloutText = null;
|
|
34
|
+
_this._allPaths = null;
|
|
35
|
+
_this.calloutBox = new Path();
|
|
36
|
+
_this.calloutBox._visibility = 1;
|
|
37
|
+
_this.calloutText = new TextBlock();
|
|
38
|
+
_this.calloutText._visibility = 1;
|
|
39
|
+
_this.allPaths = new List$1(Path.$, 0);
|
|
40
|
+
_this.allPaths.add(_this.calloutBox);
|
|
41
|
+
_this.height = 22;
|
|
42
|
+
_this.width = 10;
|
|
43
|
+
_this.calloutBox._stroke = _this.getCalloutBoxDefaultStroke();
|
|
44
|
+
_this.calloutBox.ad = _this.getCalloutBoxDefaultStrokeThickness();
|
|
45
|
+
_this.calloutBox._fill = _this.getCalloutBoxDefaultBrush();
|
|
46
|
+
_this.calloutText.ao = _this.getCalloutTextDefaultBrush();
|
|
47
|
+
_this.calloutText.al = "";
|
|
48
|
+
return _this;
|
|
49
|
+
}
|
|
50
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "translateX", {
|
|
51
|
+
get: function () {
|
|
52
|
+
return this._translateX;
|
|
53
|
+
},
|
|
54
|
+
set: function (a) {
|
|
55
|
+
this._translateX = a;
|
|
56
|
+
},
|
|
57
|
+
enumerable: false,
|
|
58
|
+
configurable: true
|
|
59
|
+
});
|
|
60
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "translateY", {
|
|
61
|
+
get: function () {
|
|
62
|
+
return this._translateY;
|
|
63
|
+
},
|
|
64
|
+
set: function (a) {
|
|
65
|
+
this._translateY = a;
|
|
66
|
+
},
|
|
67
|
+
enumerable: false,
|
|
68
|
+
configurable: true
|
|
69
|
+
});
|
|
70
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "textTranslateX", {
|
|
71
|
+
get: function () {
|
|
72
|
+
return this._textTranslateX;
|
|
73
|
+
},
|
|
74
|
+
set: function (a) {
|
|
75
|
+
this._textTranslateX = a;
|
|
76
|
+
},
|
|
77
|
+
enumerable: false,
|
|
78
|
+
configurable: true
|
|
79
|
+
});
|
|
80
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "textTranslateY", {
|
|
81
|
+
get: function () {
|
|
82
|
+
return this._textTranslateY;
|
|
83
|
+
},
|
|
84
|
+
set: function (a) {
|
|
85
|
+
this._textTranslateY = a;
|
|
86
|
+
},
|
|
87
|
+
enumerable: false,
|
|
88
|
+
configurable: true
|
|
89
|
+
});
|
|
90
|
+
DefaultMultiSliderTrackThumbCalloutVisual.prototype.getCalloutBoxDefaultStroke = function () {
|
|
91
|
+
return ((function () {
|
|
92
|
+
var $ret = new Brush();
|
|
93
|
+
$ret.color = Color.u(255, 185, 185, 185);
|
|
94
|
+
return $ret;
|
|
95
|
+
})());
|
|
96
|
+
};
|
|
97
|
+
DefaultMultiSliderTrackThumbCalloutVisual.prototype.getCalloutBoxDefaultStrokeThickness = function () {
|
|
98
|
+
return 1;
|
|
99
|
+
};
|
|
100
|
+
DefaultMultiSliderTrackThumbCalloutVisual.prototype.getCalloutBoxDefaultBrush = function () {
|
|
101
|
+
return ((function () {
|
|
102
|
+
var $ret = new Brush();
|
|
103
|
+
$ret.color = Color.u(200, 255, 255, 255);
|
|
104
|
+
return $ret;
|
|
105
|
+
})());
|
|
106
|
+
};
|
|
107
|
+
DefaultMultiSliderTrackThumbCalloutVisual.prototype.getCalloutTextDefaultBrush = function () {
|
|
108
|
+
return ((function () {
|
|
109
|
+
var $ret = new Brush();
|
|
110
|
+
$ret.color = Color.u(255, 185, 185, 185);
|
|
111
|
+
return $ret;
|
|
112
|
+
})());
|
|
113
|
+
};
|
|
114
|
+
DefaultMultiSliderTrackThumbCalloutVisual.prototype.e = function () {
|
|
115
|
+
};
|
|
116
|
+
DefaultMultiSliderTrackThumbCalloutVisual.prototype.d = function () {
|
|
117
|
+
var a = new PathGeometry();
|
|
118
|
+
var b = new PathFigure();
|
|
119
|
+
var c = new PolyLineSegment();
|
|
120
|
+
b._isClosed = true;
|
|
121
|
+
b._isFilled = true;
|
|
122
|
+
b._startPoint = { $type: Point_$type, x: 0, y: 0 };
|
|
123
|
+
c._points.add({ $type: Point_$type, x: this.width, y: 0 });
|
|
124
|
+
c._points.add({ $type: Point_$type, x: this.width, y: this.height });
|
|
125
|
+
c._points.add({ $type: Point_$type, x: 0, y: this.height });
|
|
126
|
+
b._segments.add(c);
|
|
127
|
+
a.c.add(b);
|
|
128
|
+
this.calloutBox.an = a;
|
|
129
|
+
};
|
|
130
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "width", {
|
|
131
|
+
get: function () {
|
|
132
|
+
return this.c;
|
|
133
|
+
},
|
|
134
|
+
set: function (a) {
|
|
135
|
+
var b = this.c;
|
|
136
|
+
this.c = a;
|
|
137
|
+
if (b != this.c) {
|
|
138
|
+
this.f();
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
enumerable: false,
|
|
142
|
+
configurable: true
|
|
143
|
+
});
|
|
144
|
+
DefaultMultiSliderTrackThumbCalloutVisual.prototype.f = function () {
|
|
145
|
+
if (this.width > 0 && this.height > 0) {
|
|
146
|
+
this.e();
|
|
147
|
+
this.d();
|
|
148
|
+
}
|
|
149
|
+
};
|
|
150
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "height", {
|
|
151
|
+
get: function () {
|
|
152
|
+
return this.b;
|
|
153
|
+
},
|
|
154
|
+
set: function (a) {
|
|
155
|
+
var b = this.b;
|
|
156
|
+
this.b = a;
|
|
157
|
+
if (this.b != b) {
|
|
158
|
+
this.f();
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
enumerable: false,
|
|
162
|
+
configurable: true
|
|
163
|
+
});
|
|
164
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "isVisible", {
|
|
165
|
+
get: function () {
|
|
166
|
+
return this.a;
|
|
167
|
+
},
|
|
168
|
+
set: function (a) {
|
|
169
|
+
var b = this.a;
|
|
170
|
+
this.a = a;
|
|
171
|
+
if (this.a != b) {
|
|
172
|
+
this.calloutBox._visibility = this.a ? 0 : 1;
|
|
173
|
+
this.calloutText._visibility = this.a ? 0 : 1;
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
enumerable: false,
|
|
177
|
+
configurable: true
|
|
178
|
+
});
|
|
179
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "calloutBox", {
|
|
180
|
+
get: function () {
|
|
181
|
+
return this._calloutBox;
|
|
182
|
+
},
|
|
183
|
+
set: function (a) {
|
|
184
|
+
this._calloutBox = a;
|
|
185
|
+
},
|
|
186
|
+
enumerable: false,
|
|
187
|
+
configurable: true
|
|
188
|
+
});
|
|
189
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "calloutText", {
|
|
190
|
+
get: function () {
|
|
191
|
+
return this._calloutText;
|
|
192
|
+
},
|
|
193
|
+
set: function (a) {
|
|
194
|
+
this._calloutText = a;
|
|
195
|
+
},
|
|
196
|
+
enumerable: false,
|
|
197
|
+
configurable: true
|
|
198
|
+
});
|
|
199
|
+
Object.defineProperty(DefaultMultiSliderTrackThumbCalloutVisual.prototype, "allPaths", {
|
|
200
|
+
get: function () {
|
|
201
|
+
return this._allPaths;
|
|
202
|
+
},
|
|
203
|
+
set: function (a) {
|
|
204
|
+
this._allPaths = a;
|
|
205
|
+
},
|
|
206
|
+
enumerable: false,
|
|
207
|
+
configurable: true
|
|
208
|
+
});
|
|
209
|
+
DefaultMultiSliderTrackThumbCalloutVisual.$t = markType(DefaultMultiSliderTrackThumbCalloutVisual, 'DefaultMultiSliderTrackThumbCalloutVisual', Base.$, [IMultiSliderTrackThumbCalloutVisual_$type]);
|
|
210
|
+
return DefaultMultiSliderTrackThumbCalloutVisual;
|
|
211
|
+
}(Base));
|
|
212
|
+
export { DefaultMultiSliderTrackThumbCalloutVisual };
|