igniteui-angular-inputs 18.1.1 → 18.2.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (224) hide show
  1. package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
  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 +82 -82
  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 +82 -82
  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 +15626 -7466
  156. package/fesm5/igniteui-angular-inputs.js +16802 -7565
  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,208 @@
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 { Base, Point_$type, markType } from "igniteui-angular-core";
8
+ import { IMultiSliderTrackRangeVisual_$type } from "./IMultiSliderTrackRangeVisual";
9
+ import { Path } from "igniteui-angular-core";
10
+ import { List$1 } from "igniteui-angular-core";
11
+ import { Brush } from "igniteui-angular-core";
12
+ import { Color } from "igniteui-angular-core";
13
+ import { PathGeometry } from "igniteui-angular-core";
14
+ import { PathFigure } from "igniteui-angular-core";
15
+ import { LineSegment } from "igniteui-angular-core";
16
+ import { PolyLineSegment } from "igniteui-angular-core";
17
+ /**
18
+ * @hidden
19
+ */
20
+ export let DefaultMultiSliderTrackRangeVisual = /*@__PURE__*/ (() => {
21
+ class DefaultMultiSliderTrackRangeVisual extends Base {
22
+ constructor() {
23
+ super();
24
+ this._translateX = 0;
25
+ this._translateY = 0;
26
+ this.a = 0;
27
+ this.c = -1;
28
+ this.b = -1;
29
+ this._thumbBox = null;
30
+ this._thumbRidges = null;
31
+ this._allPaths = null;
32
+ this.thumbBox = new Path();
33
+ this.thumbRidges = new Path();
34
+ this.allPaths = new List$1(Path.$, 0);
35
+ this.allPaths.add(this.thumbBox);
36
+ this.allPaths.add(this.thumbRidges);
37
+ this.thumbBox._stroke = this.getThumbBoxDefaultStroke();
38
+ this.thumbBox.ad = 1;
39
+ this.thumbBox._fill = this.getThumbBoxDefaultBrush();
40
+ this.thumbRidges._stroke = this.getThumbRidgesDefaultStroke();
41
+ this.thumbRidges.ad = 1;
42
+ }
43
+ getThumbBoxDefaultStroke() {
44
+ return ((() => {
45
+ let $ret = new Brush();
46
+ $ret.color = Color.u(255, 185, 185, 185);
47
+ return $ret;
48
+ })());
49
+ }
50
+ getThumbBoxDefaultStrokeThickness() {
51
+ return 1;
52
+ }
53
+ getThumbBoxDefaultBrush() {
54
+ return ((() => {
55
+ let $ret = new Brush();
56
+ $ret.color = Color.u(255, 249, 249, 249);
57
+ return $ret;
58
+ })());
59
+ }
60
+ getThumbRidgesDefaultStroke() {
61
+ return ((() => {
62
+ let $ret = new Brush();
63
+ $ret.color = Color.u(255, 119, 119, 119);
64
+ return $ret;
65
+ })());
66
+ }
67
+ get translateX() {
68
+ return this._translateX;
69
+ }
70
+ set translateX(a) {
71
+ this._translateX = a;
72
+ }
73
+ get translateY() {
74
+ return this._translateY;
75
+ }
76
+ set translateY(a) {
77
+ this._translateY = a;
78
+ }
79
+ e() {
80
+ if (this.orientation == 0) {
81
+ let a = new PathGeometry();
82
+ let b = new PathFigure();
83
+ let c = new LineSegment(1);
84
+ b._isClosed = false;
85
+ b._isFilled = false;
86
+ b._startPoint = { $type: Point_$type, x: -3, y: (this.height / -2) * 0.5 };
87
+ c.c = { $type: Point_$type, x: -3, y: (this.height / 2) * 0.5 };
88
+ b._segments.add(c);
89
+ a.c.add(b);
90
+ let d = new PathFigure();
91
+ let e = new LineSegment(1);
92
+ d._isClosed = false;
93
+ d._isFilled = false;
94
+ d._startPoint = { $type: Point_$type, x: 0, y: (this.height / -2) * 0.5 };
95
+ e.c = { $type: Point_$type, x: 0, y: (this.height / 2) * 0.5 };
96
+ d._segments.add(e);
97
+ a.c.add(d);
98
+ let f = new PathFigure();
99
+ let g = new LineSegment(1);
100
+ f._isClosed = false;
101
+ f._isFilled = false;
102
+ f._startPoint = { $type: Point_$type, x: 3, y: (this.height / -2) * 0.5 };
103
+ g.c = { $type: Point_$type, x: 3, y: (this.height / 2) * 0.5 };
104
+ f._segments.add(g);
105
+ a.c.add(f);
106
+ this.thumbRidges.an = a;
107
+ }
108
+ else {
109
+ let h = new PathGeometry();
110
+ let i = new PathFigure();
111
+ let j = new LineSegment(1);
112
+ i._isClosed = false;
113
+ i._isFilled = false;
114
+ i._startPoint = { $type: Point_$type, x: (this.width / -2) * 0.5, y: -3 };
115
+ j.c = { $type: Point_$type, x: (this.width / 2) * 0.5, y: -3 };
116
+ i._segments.add(j);
117
+ h.c.add(i);
118
+ let k = new PathFigure();
119
+ let l = new LineSegment(1);
120
+ k._isClosed = false;
121
+ k._isFilled = false;
122
+ k._startPoint = { $type: Point_$type, x: (this.width / -2) * 0.5, y: 0 };
123
+ l.c = { $type: Point_$type, x: (this.width / 2) * 0.5, y: 0 };
124
+ k._segments.add(l);
125
+ h.c.add(k);
126
+ let m = new PathFigure();
127
+ let n = new LineSegment(1);
128
+ m._isClosed = false;
129
+ m._isFilled = false;
130
+ i._startPoint = { $type: Point_$type, x: (this.width / -2) * 0.5, y: 3 };
131
+ j.c = { $type: Point_$type, x: (this.width / 2) * 0.5, y: 3 };
132
+ m._segments.add(n);
133
+ h.c.add(m);
134
+ this.thumbRidges.an = h;
135
+ }
136
+ }
137
+ d() {
138
+ let a = new PathGeometry();
139
+ let b = new PathFigure();
140
+ let c = new PolyLineSegment();
141
+ b._isClosed = true;
142
+ b._isFilled = true;
143
+ b._startPoint = { $type: Point_$type, x: this.width / -2, y: this.height / -2 };
144
+ c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / -2 });
145
+ c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / 2 });
146
+ c._points.add({ $type: Point_$type, x: this.width / -2, y: this.height / 2 });
147
+ b._segments.add(c);
148
+ a.c.add(b);
149
+ this.thumbBox.an = a;
150
+ }
151
+ get orientation() {
152
+ return this.a;
153
+ }
154
+ set orientation(a) {
155
+ let b = this.a;
156
+ this.a = a;
157
+ if (this.a != b) {
158
+ this.f();
159
+ }
160
+ }
161
+ get width() {
162
+ return this.c;
163
+ }
164
+ set width(a) {
165
+ let b = this.c;
166
+ this.c = a;
167
+ if (b != this.c) {
168
+ this.f();
169
+ }
170
+ }
171
+ f() {
172
+ if (this.width > 0 && this.height > 0) {
173
+ this.d();
174
+ this.e();
175
+ }
176
+ }
177
+ get height() {
178
+ return this.b;
179
+ }
180
+ set height(a) {
181
+ let b = this.b;
182
+ this.b = a;
183
+ if (this.b != b) {
184
+ this.f();
185
+ }
186
+ }
187
+ get thumbBox() {
188
+ return this._thumbBox;
189
+ }
190
+ set thumbBox(a) {
191
+ this._thumbBox = a;
192
+ }
193
+ get thumbRidges() {
194
+ return this._thumbRidges;
195
+ }
196
+ set thumbRidges(a) {
197
+ this._thumbRidges = a;
198
+ }
199
+ get allPaths() {
200
+ return this._allPaths;
201
+ }
202
+ set allPaths(a) {
203
+ this._allPaths = a;
204
+ }
205
+ }
206
+ DefaultMultiSliderTrackRangeVisual.$t = markType(DefaultMultiSliderTrackRangeVisual, 'DefaultMultiSliderTrackRangeVisual', Base.$, [IMultiSliderTrackRangeVisual_$type]);
207
+ return DefaultMultiSliderTrackRangeVisual;
208
+ })();
@@ -0,0 +1,170 @@
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 { Base, Point_$type, markType } from "igniteui-angular-core";
8
+ import { IMultiSliderTrackThumbCalloutVisual_$type } from "./IMultiSliderTrackThumbCalloutVisual";
9
+ import { Path } from "igniteui-angular-core";
10
+ import { TextBlock } 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
+ export let DefaultMultiSliderTrackThumbCalloutVisual = /*@__PURE__*/ (() => {
21
+ class DefaultMultiSliderTrackThumbCalloutVisual extends Base {
22
+ constructor() {
23
+ super();
24
+ this._translateX = 0;
25
+ this._translateY = 0;
26
+ this._textTranslateX = 0;
27
+ this._textTranslateY = 0;
28
+ this.c = -1;
29
+ this.b = -1;
30
+ this.a = false;
31
+ this._calloutBox = null;
32
+ this._calloutText = null;
33
+ this._allPaths = null;
34
+ this.calloutBox = new Path();
35
+ this.calloutBox._visibility = 1;
36
+ this.calloutText = new TextBlock();
37
+ this.calloutText._visibility = 1;
38
+ this.allPaths = new List$1(Path.$, 0);
39
+ this.allPaths.add(this.calloutBox);
40
+ this.height = 22;
41
+ this.width = 10;
42
+ this.calloutBox._stroke = this.getCalloutBoxDefaultStroke();
43
+ this.calloutBox.ad = this.getCalloutBoxDefaultStrokeThickness();
44
+ this.calloutBox._fill = this.getCalloutBoxDefaultBrush();
45
+ this.calloutText.ao = this.getCalloutTextDefaultBrush();
46
+ this.calloutText.al = "";
47
+ }
48
+ get translateX() {
49
+ return this._translateX;
50
+ }
51
+ set translateX(a) {
52
+ this._translateX = a;
53
+ }
54
+ get translateY() {
55
+ return this._translateY;
56
+ }
57
+ set translateY(a) {
58
+ this._translateY = a;
59
+ }
60
+ get textTranslateX() {
61
+ return this._textTranslateX;
62
+ }
63
+ set textTranslateX(a) {
64
+ this._textTranslateX = a;
65
+ }
66
+ get textTranslateY() {
67
+ return this._textTranslateY;
68
+ }
69
+ set textTranslateY(a) {
70
+ this._textTranslateY = a;
71
+ }
72
+ getCalloutBoxDefaultStroke() {
73
+ return ((() => {
74
+ let $ret = new Brush();
75
+ $ret.color = Color.u(255, 185, 185, 185);
76
+ return $ret;
77
+ })());
78
+ }
79
+ getCalloutBoxDefaultStrokeThickness() {
80
+ return 1;
81
+ }
82
+ getCalloutBoxDefaultBrush() {
83
+ return ((() => {
84
+ let $ret = new Brush();
85
+ $ret.color = Color.u(200, 255, 255, 255);
86
+ return $ret;
87
+ })());
88
+ }
89
+ getCalloutTextDefaultBrush() {
90
+ return ((() => {
91
+ let $ret = new Brush();
92
+ $ret.color = Color.u(255, 185, 185, 185);
93
+ return $ret;
94
+ })());
95
+ }
96
+ e() {
97
+ }
98
+ d() {
99
+ let a = new PathGeometry();
100
+ let b = new PathFigure();
101
+ let c = new PolyLineSegment();
102
+ b._isClosed = true;
103
+ b._isFilled = true;
104
+ b._startPoint = { $type: Point_$type, x: 0, y: 0 };
105
+ c._points.add({ $type: Point_$type, x: this.width, y: 0 });
106
+ c._points.add({ $type: Point_$type, x: this.width, y: this.height });
107
+ c._points.add({ $type: Point_$type, x: 0, y: this.height });
108
+ b._segments.add(c);
109
+ a.c.add(b);
110
+ this.calloutBox.an = a;
111
+ }
112
+ get width() {
113
+ return this.c;
114
+ }
115
+ set width(a) {
116
+ let b = this.c;
117
+ this.c = a;
118
+ if (b != this.c) {
119
+ this.f();
120
+ }
121
+ }
122
+ f() {
123
+ if (this.width > 0 && this.height > 0) {
124
+ this.e();
125
+ this.d();
126
+ }
127
+ }
128
+ get height() {
129
+ return this.b;
130
+ }
131
+ set height(a) {
132
+ let b = this.b;
133
+ this.b = a;
134
+ if (this.b != b) {
135
+ this.f();
136
+ }
137
+ }
138
+ get isVisible() {
139
+ return this.a;
140
+ }
141
+ set isVisible(a) {
142
+ let b = this.a;
143
+ this.a = a;
144
+ if (this.a != b) {
145
+ this.calloutBox._visibility = this.a ? 0 : 1;
146
+ this.calloutText._visibility = this.a ? 0 : 1;
147
+ }
148
+ }
149
+ get calloutBox() {
150
+ return this._calloutBox;
151
+ }
152
+ set calloutBox(a) {
153
+ this._calloutBox = a;
154
+ }
155
+ get calloutText() {
156
+ return this._calloutText;
157
+ }
158
+ set calloutText(a) {
159
+ this._calloutText = a;
160
+ }
161
+ get allPaths() {
162
+ return this._allPaths;
163
+ }
164
+ set allPaths(a) {
165
+ this._allPaths = a;
166
+ }
167
+ }
168
+ DefaultMultiSliderTrackThumbCalloutVisual.$t = markType(DefaultMultiSliderTrackThumbCalloutVisual, 'DefaultMultiSliderTrackThumbCalloutVisual', Base.$, [IMultiSliderTrackThumbCalloutVisual_$type]);
169
+ return DefaultMultiSliderTrackThumbCalloutVisual;
170
+ })();
@@ -0,0 +1,193 @@
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 { Base, Point_$type, markType } from "igniteui-angular-core";
8
+ import { IMultiSliderTrackThumbVisual_$type } from "./IMultiSliderTrackThumbVisual";
9
+ import { Path } from "igniteui-angular-core";
10
+ import { List$1 } from "igniteui-angular-core";
11
+ import { Brush } from "igniteui-angular-core";
12
+ import { Color } from "igniteui-angular-core";
13
+ import { PathGeometry } from "igniteui-angular-core";
14
+ import { PathFigure } from "igniteui-angular-core";
15
+ import { LineSegment } from "igniteui-angular-core";
16
+ import { EllipseGeometry } from "igniteui-angular-core";
17
+ /**
18
+ * @hidden
19
+ */
20
+ export let DefaultMultiSliderTrackThumbVisual = /*@__PURE__*/ (() => {
21
+ class DefaultMultiSliderTrackThumbVisual extends Base {
22
+ constructor() {
23
+ super();
24
+ this._translateX = 0;
25
+ this._translateY = 0;
26
+ this.c = -1;
27
+ this.a = 0;
28
+ this.b = -1;
29
+ this._thumbBox = null;
30
+ this._thumbRidges = null;
31
+ this._allPaths = null;
32
+ this.thumbBox = new Path();
33
+ this.thumbRidges = new Path();
34
+ this.allPaths = new List$1(Path.$, 0);
35
+ this.allPaths.add(this.thumbBox);
36
+ this.allPaths.add(this.thumbRidges);
37
+ this.width = this.getTrackThumbDefaultWidth();
38
+ this.height = this.getTrackThumbDefaultHeight();
39
+ this.thumbBox._stroke = this.getThumbBoxDefaultStroke();
40
+ this.thumbBox.ad = this.getThumbBoxDefaultStrokeThickness();
41
+ this.thumbBox._fill = this.getThumbBoxDefaultBrush();
42
+ this.thumbRidges._stroke = this.getThumbRidgesDefaultStroke();
43
+ this.thumbRidges.ad = 1;
44
+ }
45
+ get translateX() {
46
+ return this._translateX;
47
+ }
48
+ set translateX(a) {
49
+ this._translateX = a;
50
+ }
51
+ get translateY() {
52
+ return this._translateY;
53
+ }
54
+ set translateY(a) {
55
+ this._translateY = a;
56
+ }
57
+ getTrackThumbDefaultWidth() {
58
+ return 22;
59
+ }
60
+ getTrackThumbDefaultHeight() {
61
+ return 22;
62
+ }
63
+ getThumbBoxDefaultStroke() {
64
+ return ((() => {
65
+ let $ret = new Brush();
66
+ $ret.color = Color.u(255, 185, 185, 185);
67
+ return $ret;
68
+ })());
69
+ }
70
+ getThumbBoxDefaultStrokeThickness() {
71
+ return 1;
72
+ }
73
+ getThumbBoxDefaultBrush() {
74
+ return ((() => {
75
+ let $ret = new Brush();
76
+ $ret.color = Color.u(255, 249, 249, 249);
77
+ return $ret;
78
+ })());
79
+ }
80
+ getThumbRidgesDefaultStroke() {
81
+ return ((() => {
82
+ let $ret = new Brush();
83
+ $ret.color = Color.u(255, 119, 119, 119);
84
+ return $ret;
85
+ })());
86
+ }
87
+ e() {
88
+ if (this.orientation == 0) {
89
+ let a = new PathGeometry();
90
+ let b = new PathFigure();
91
+ let c = new LineSegment(1);
92
+ b._isClosed = false;
93
+ b._isFilled = false;
94
+ b._startPoint = { $type: Point_$type, x: -1.5, y: -4 };
95
+ c.c = { $type: Point_$type, x: -1.5, y: 4 };
96
+ b._segments.add(c);
97
+ a.c.add(b);
98
+ let d = new PathFigure();
99
+ let e = new LineSegment(1);
100
+ d._isClosed = false;
101
+ d._isFilled = false;
102
+ d._startPoint = { $type: Point_$type, x: 1.5, y: -4 };
103
+ e.c = { $type: Point_$type, x: 1.5, y: 4 };
104
+ d._segments.add(e);
105
+ a.c.add(d);
106
+ this.thumbRidges.an = a;
107
+ }
108
+ else {
109
+ let f = new PathGeometry();
110
+ let g = new PathFigure();
111
+ let h = new LineSegment(1);
112
+ g._isClosed = false;
113
+ g._isFilled = false;
114
+ g._startPoint = { $type: Point_$type, x: -4, y: -1.5 };
115
+ h.c = { $type: Point_$type, x: 4, y: -1.5 };
116
+ g._segments.add(h);
117
+ f.c.add(g);
118
+ let i = new PathFigure();
119
+ let j = new LineSegment(1);
120
+ i._isClosed = false;
121
+ i._isFilled = false;
122
+ i._startPoint = { $type: Point_$type, x: -4, y: 1.5 };
123
+ j.c = { $type: Point_$type, x: 4, y: 1.5 };
124
+ i._segments.add(j);
125
+ f.c.add(i);
126
+ this.thumbRidges.an = f;
127
+ }
128
+ }
129
+ d() {
130
+ let a = new EllipseGeometry();
131
+ a.c = Math.max(this.width / 2, this.height / 2);
132
+ a.d = Math.max(this.width / 2, this.height / 2);
133
+ a.e = { $type: Point_$type, x: 0, y: 0 };
134
+ this.thumbBox.an = a;
135
+ }
136
+ get width() {
137
+ return this.c;
138
+ }
139
+ set width(a) {
140
+ let b = this.c;
141
+ this.c = a;
142
+ if (b != this.c) {
143
+ this.f();
144
+ }
145
+ }
146
+ f() {
147
+ if (this.width > 0 && this.height > 0) {
148
+ this.d();
149
+ this.e();
150
+ }
151
+ }
152
+ get orientation() {
153
+ return this.a;
154
+ }
155
+ set orientation(a) {
156
+ let b = this.a;
157
+ this.a = a;
158
+ if (this.a != b) {
159
+ this.f();
160
+ }
161
+ }
162
+ get height() {
163
+ return this.b;
164
+ }
165
+ set height(a) {
166
+ let b = this.b;
167
+ this.b = a;
168
+ if (this.b != b) {
169
+ this.f();
170
+ }
171
+ }
172
+ get thumbBox() {
173
+ return this._thumbBox;
174
+ }
175
+ set thumbBox(a) {
176
+ this._thumbBox = a;
177
+ }
178
+ get thumbRidges() {
179
+ return this._thumbRidges;
180
+ }
181
+ set thumbRidges(a) {
182
+ this._thumbRidges = a;
183
+ }
184
+ get allPaths() {
185
+ return this._allPaths;
186
+ }
187
+ set allPaths(a) {
188
+ this._allPaths = a;
189
+ }
190
+ }
191
+ DefaultMultiSliderTrackThumbVisual.$t = markType(DefaultMultiSliderTrackThumbVisual, 'DefaultMultiSliderTrackThumbVisual', Base.$, [IMultiSliderTrackThumbVisual_$type]);
192
+ return DefaultMultiSliderTrackThumbVisual;
193
+ })();