igniteui-angular-inputs 18.1.0 → 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.
Files changed (224) hide show
  1. package/bundles/igniteui-angular-inputs.umd.js +16858 -7564
  2. package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +19 -19
  4. package/esm2015/lib/ButtonView_combined.js +820 -790
  5. package/esm2015/lib/CalendarView_combined.js +83 -83
  6. package/esm2015/lib/ColorEditor.js +7 -0
  7. package/esm2015/lib/ColorEditorBridge.js +7 -0
  8. package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
  9. package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
  10. package/esm2015/lib/ColorEditorPanel.js +7 -0
  11. package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
  12. package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
  13. package/esm2015/lib/ColorEditorPanelView.js +7 -0
  14. package/esm2015/lib/ColorEditorView.js +7 -0
  15. package/esm2015/lib/DatePickerView_combined.js +18 -18
  16. package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
  17. package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
  18. package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
  19. package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
  20. package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
  21. package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
  22. package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
  23. package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
  24. package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
  25. package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
  26. package/esm2015/lib/ISliderTrackOwner.js +11 -0
  27. package/esm2015/lib/IconClickedEventArgs.js +10 -0
  28. package/esm2015/lib/IconView_combined.js +345 -314
  29. package/esm2015/lib/InputGroupView_combined.js +456 -355
  30. package/esm2015/lib/MultiSlider.js +7 -0
  31. package/esm2015/lib/MultiSliderBridge.js +165 -0
  32. package/esm2015/lib/MultiSliderCursor.js +11 -0
  33. package/esm2015/lib/MultiSliderHitInfo.js +22 -0
  34. package/esm2015/lib/MultiSliderOrientation.js +17 -0
  35. package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
  36. package/esm2015/lib/MultiSliderThumb.js +7 -0
  37. package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
  38. package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
  39. package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
  40. package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
  41. package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
  42. package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
  43. package/esm2015/lib/MultiSliderView.js +7 -0
  44. package/esm2015/lib/MultiSliderView_combined.js +1785 -0
  45. package/esm2015/lib/MultiSliderVisualArea.js +11 -0
  46. package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
  47. package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
  48. package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
  49. package/esm2015/lib/XButtonBridge.js +25 -20
  50. package/esm2015/lib/XButtonGroupBridge.js +177 -0
  51. package/esm2015/lib/XComponentBridge.js +3 -0
  52. package/esm2015/lib/XIconBridge.js +20 -16
  53. package/esm2015/lib/XInputBridge.js +274 -26
  54. package/esm2015/lib/XPopupBridge.js +117 -98
  55. package/esm2015/lib/igx-color-editor-component.js +470 -0
  56. package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
  57. package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
  58. package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
  59. package/esm2015/lib/igx-color-editor-module.js +39 -0
  60. package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
  61. package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
  62. package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
  63. package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
  64. package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
  65. package/esm2015/lib/igx-multi-slider-component.js +642 -0
  66. package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
  67. package/esm2015/lib/igx-multi-slider-module.js +36 -0
  68. package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
  69. package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
  70. package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
  71. package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
  72. package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
  73. package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
  74. package/esm2015/lib/igx-x-button-component.js +262 -262
  75. package/esm2015/lib/igx-x-icon-component.js +66 -55
  76. package/esm2015/lib/igx-x-input-group-component.js +48 -48
  77. package/esm2015/lib/igx-x-label-component.js +41 -40
  78. package/esm2015/public_api.js +55 -0
  79. package/esm5/lib/ButtonGroupView_combined.js +19 -19
  80. package/esm5/lib/ButtonView_combined.js +765 -735
  81. package/esm5/lib/CalendarView_combined.js +83 -83
  82. package/esm5/lib/ColorEditor.js +7 -0
  83. package/esm5/lib/ColorEditorBridge.js +7 -0
  84. package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
  85. package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
  86. package/esm5/lib/ColorEditorPanel.js +7 -0
  87. package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
  88. package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
  89. package/esm5/lib/ColorEditorPanelView.js +7 -0
  90. package/esm5/lib/ColorEditorView.js +7 -0
  91. package/esm5/lib/DatePickerView_combined.js +18 -18
  92. package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
  93. package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
  94. package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
  95. package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
  96. package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
  97. package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
  98. package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
  99. package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
  100. package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
  101. package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
  102. package/esm5/lib/ISliderTrackOwner.js +11 -0
  103. package/esm5/lib/IconClickedEventArgs.js +13 -1
  104. package/esm5/lib/IconView_combined.js +336 -301
  105. package/esm5/lib/InputGroupView_combined.js +444 -343
  106. package/esm5/lib/MultiSlider.js +7 -0
  107. package/esm5/lib/MultiSliderBridge.js +167 -0
  108. package/esm5/lib/MultiSliderCursor.js +11 -0
  109. package/esm5/lib/MultiSliderHitInfo.js +24 -0
  110. package/esm5/lib/MultiSliderOrientation.js +17 -0
  111. package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
  112. package/esm5/lib/MultiSliderThumb.js +7 -0
  113. package/esm5/lib/MultiSliderThumbCollection.js +22 -0
  114. package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
  115. package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
  116. package/esm5/lib/MultiSliderThumb_combined.js +352 -0
  117. package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
  118. package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
  119. package/esm5/lib/MultiSliderView.js +7 -0
  120. package/esm5/lib/MultiSliderView_combined.js +2006 -0
  121. package/esm5/lib/MultiSliderVisualArea.js +11 -0
  122. package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
  123. package/esm5/lib/NativeUIXInputsFactory.js +1 -189
  124. package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
  125. package/esm5/lib/XButtonBridge.js +25 -20
  126. package/esm5/lib/XButtonGroupBridge.js +179 -0
  127. package/esm5/lib/XComponentBridge.js +3 -0
  128. package/esm5/lib/XIconBridge.js +20 -16
  129. package/esm5/lib/XInputBridge.js +274 -26
  130. package/esm5/lib/XPopupBridge.js +117 -98
  131. package/esm5/lib/igx-color-editor-component.js +555 -0
  132. package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
  133. package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
  134. package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
  135. package/esm5/lib/igx-color-editor-module.js +38 -0
  136. package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
  137. package/esm5/lib/igx-color-editor-panel-component.js +435 -0
  138. package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
  139. package/esm5/lib/igx-color-editor-panel-module.js +59 -0
  140. package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
  141. package/esm5/lib/igx-multi-slider-component.js +842 -0
  142. package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
  143. package/esm5/lib/igx-multi-slider-module.js +35 -0
  144. package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
  145. package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
  146. package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
  147. package/esm5/lib/igx-multi-slider-thumb.js +134 -0
  148. package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
  149. package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
  150. package/esm5/lib/igx-x-button-component.js +262 -262
  151. package/esm5/lib/igx-x-icon-component.js +70 -55
  152. package/esm5/lib/igx-x-input-group-component.js +48 -48
  153. package/esm5/lib/igx-x-label-component.js +41 -40
  154. package/esm5/public_api.js +55 -0
  155. package/fesm2015/igniteui-angular-inputs.js +15649 -7489
  156. package/fesm5/igniteui-angular-inputs.js +16803 -7566
  157. package/lib/ButtonView_combined.d.ts +243 -241
  158. package/lib/ColorEditor.d.ts +1 -0
  159. package/lib/ColorEditorBridge.d.ts +1 -0
  160. package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
  161. package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
  162. package/lib/ColorEditorPanel.d.ts +1 -0
  163. package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
  164. package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
  165. package/lib/ColorEditorPanelView.d.ts +1 -0
  166. package/lib/ColorEditorView.d.ts +1 -0
  167. package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
  168. package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
  169. package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
  170. package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
  171. package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
  172. package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
  173. package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
  174. package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
  175. package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
  176. package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
  177. package/lib/ISliderTrackOwner.d.ts +15 -0
  178. package/lib/IconClickedEventArgs.d.ts +3 -0
  179. package/lib/IconView_combined.d.ts +88 -84
  180. package/lib/InputGroupView_combined.d.ts +120 -113
  181. package/lib/MultiSlider.d.ts +1 -0
  182. package/lib/MultiSliderBridge.d.ts +24 -0
  183. package/lib/MultiSliderCursor.d.ts +15 -0
  184. package/lib/MultiSliderHitInfo.d.ts +13 -0
  185. package/lib/MultiSliderOrientation.d.ts +10 -0
  186. package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
  187. package/lib/MultiSliderThumb.d.ts +1 -0
  188. package/lib/MultiSliderThumbCollection.d.ts +10 -0
  189. package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
  190. package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
  191. package/lib/MultiSliderThumb_combined.d.ts +76 -0
  192. package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
  193. package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
  194. package/lib/MultiSliderView.d.ts +1 -0
  195. package/lib/MultiSliderView_combined.d.ts +298 -0
  196. package/lib/MultiSliderVisualArea.d.ts +14 -0
  197. package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
  198. package/lib/NativeUIXInputsFactory.d.ts +1 -24
  199. package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
  200. package/lib/XButtonGroupBridge.d.ts +29 -0
  201. package/lib/XInputBridge.d.ts +29 -5
  202. package/lib/XPopupBridge.d.ts +12 -9
  203. package/lib/igx-color-editor-component.d.ts +161 -0
  204. package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
  205. package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
  206. package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
  207. package/lib/igx-color-editor-module.d.ts +10 -0
  208. package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
  209. package/lib/igx-color-editor-panel-component.d.ts +125 -0
  210. package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
  211. package/lib/igx-color-editor-panel-module.d.ts +13 -0
  212. package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
  213. package/lib/igx-multi-slider-component.d.ts +200 -0
  214. package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
  215. package/lib/igx-multi-slider-module.d.ts +9 -0
  216. package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
  217. package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
  218. package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
  219. package/lib/igx-multi-slider-thumb.d.ts +33 -0
  220. package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
  221. package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
  222. package/lib/igx-x-icon-component.d.ts +6 -1
  223. package/package.json +2 -2
  224. 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 };