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