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,842 @@
1
+ import { EventEmitter, Output, Component, Input, ChangeDetectionStrategy } from '@angular/core';
2
+ import { delegateCombine } from "igniteui-angular-core";
3
+ import { IgxMultiSliderThumbCollection } from "./igx-multi-slider-thumb-collection";
4
+ import { MultiSliderOrientation_$type } from "./MultiSliderOrientation";
5
+ import { IgxMultiSliderResolvingToolTipValueEventArgs } from "./igx-multi-slider-resolving-tool-tip-value-event-args";
6
+ import { IgxMultiSliderThumbValueChangingEventArgs } from "./igx-multi-slider-thumb-value-changing-event-args";
7
+ import { IgxMultiSliderYValueChangingEventArgs } from "./igx-multi-slider-y-value-changing-event-args";
8
+ import { MultiSlider } from "./MultiSlider";
9
+ import { TypeRegistrar } from "igniteui-angular-core";
10
+ import { NamePatcher, fromRect, toRect, ensureEnum, brushToString, stringToBrush, ensureBool, toSpinal, initializePropertiesFromCss } from "igniteui-angular-core";
11
+ import { MultiSliderThumbCollection as MultiSliderThumbCollection_internal } from "./MultiSliderThumbCollection";
12
+ import { MultiSliderThumb } from "./MultiSliderThumb";
13
+ import { SyncableObservableCollection$1 } from "igniteui-angular-core";
14
+ import { FontInfo } from "igniteui-angular-core";
15
+ import * as i0 from "@angular/core";
16
+ var IgxMultiSliderComponent = /** @class */ /*@__PURE__*/ (function () {
17
+ function IgxMultiSliderComponent() {
18
+ this._thumbs = null;
19
+ this.__p = null;
20
+ this._hasUserValues = new Set();
21
+ this._stylingContainer = null;
22
+ this._stylingParent = null;
23
+ this._inStyling = false;
24
+ this._resolvingToolTipValue = null;
25
+ this._thumbValueChanging = null;
26
+ this._thumbValueChanged = null;
27
+ this._yValueChanging = null;
28
+ this._yValueChanged = null;
29
+ this._zoneRunner = null;
30
+ if (this._styling) {
31
+ NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
32
+ }
33
+ this._implementation = this.createImplementation();
34
+ this._implementation.externalObject = this;
35
+ this.onImplementationCreated();
36
+ if (this._initializeAdapters) {
37
+ this._initializeAdapters();
38
+ }
39
+ }
40
+ IgxMultiSliderComponent.prototype.createImplementation = function () {
41
+ return new MultiSlider();
42
+ };
43
+ IgxMultiSliderComponent.prototype.ngOnInit = function () {
44
+ };
45
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "i", {
46
+ /**
47
+ * @hidden
48
+ */
49
+ get: function () {
50
+ return this._implementation;
51
+ } /**
52
+ * @hidden
53
+ */,
54
+ enumerable: false,
55
+ configurable: true
56
+ });
57
+ IgxMultiSliderComponent._createFromInternal = function (internal) {
58
+ if (!internal) {
59
+ return null;
60
+ }
61
+ if (!internal.$type) {
62
+ return null;
63
+ }
64
+ var name = internal.$type.name;
65
+ var externalName = "Igx" + name + "Component";
66
+ if (!TypeRegistrar.isRegistered(externalName)) {
67
+ return null;
68
+ }
69
+ return TypeRegistrar.create(externalName);
70
+ };
71
+ IgxMultiSliderComponent.prototype.onImplementationCreated = function () {
72
+ };
73
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbs", {
74
+ /**
75
+ * Gets the column definitions that are assigned to the grid. This collection can be modified to add or remove columns in the grid.
76
+ */
77
+ get: function () {
78
+ if (this._thumbs === null) {
79
+ var coll = new IgxMultiSliderThumbCollection();
80
+ var innerColl = this.i.thumbs;
81
+ if (!innerColl) {
82
+ innerColl = new MultiSliderThumbCollection_internal();
83
+ }
84
+ this._thumbs = coll._fromInner(innerColl);
85
+ }
86
+ return this._thumbs;
87
+ },
88
+ set: function (v) {
89
+ if (this._thumbs !== null) {
90
+ this._thumbs._setSyncTarget(null);
91
+ this._thumbs = null;
92
+ }
93
+ var coll = new IgxMultiSliderThumbCollection();
94
+ this._thumbs = coll._fromOuter(v);
95
+ var syncColl = new SyncableObservableCollection$1(MultiSliderThumb.$type);
96
+ var innerColl = this.i.thumbs;
97
+ if (!innerColl) {
98
+ innerColl = new MultiSliderThumbCollection_internal();
99
+ }
100
+ syncColl._inner = innerColl;
101
+ syncColl.clear();
102
+ this._thumbs._setSyncTarget(syncColl);
103
+ },
104
+ enumerable: false,
105
+ configurable: true
106
+ });
107
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "min", {
108
+ get: function () {
109
+ return this.i.bg;
110
+ },
111
+ set: function (v) {
112
+ this.i.bg = +v;
113
+ },
114
+ enumerable: false,
115
+ configurable: true
116
+ });
117
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "max", {
118
+ get: function () {
119
+ return this.i.bf;
120
+ },
121
+ set: function (v) {
122
+ this.i.bf = +v;
123
+ },
124
+ enumerable: false,
125
+ configurable: true
126
+ });
127
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "step", {
128
+ get: function () {
129
+ return this.i.bl;
130
+ },
131
+ set: function (v) {
132
+ this.i.bl = +v;
133
+ },
134
+ enumerable: false,
135
+ configurable: true
136
+ });
137
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "yMax", {
138
+ get: function () {
139
+ return this.i.bu;
140
+ },
141
+ set: function (v) {
142
+ this.i.bu = +v;
143
+ },
144
+ enumerable: false,
145
+ configurable: true
146
+ });
147
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "yMin", {
148
+ get: function () {
149
+ return this.i.bv;
150
+ },
151
+ set: function (v) {
152
+ this.i.bv = +v;
153
+ },
154
+ enumerable: false,
155
+ configurable: true
156
+ });
157
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "yStep", {
158
+ get: function () {
159
+ return this.i.bx;
160
+ },
161
+ set: function (v) {
162
+ this.i.bx = +v;
163
+ },
164
+ enumerable: false,
165
+ configurable: true
166
+ });
167
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "pixelScalingRatio", {
168
+ /**
169
+ * Gets or sets the scaling value used to affect the pixel density of the control.
170
+ * A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control
171
+ * to appear blurry.
172
+ */
173
+ get: function () {
174
+ return this.i.bh;
175
+ },
176
+ set: function (v) {
177
+ this.i.bh = +v;
178
+ },
179
+ enumerable: false,
180
+ configurable: true
181
+ });
182
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "actualPixelScalingRatio", {
183
+ get: function () {
184
+ return this.i.a9;
185
+ },
186
+ set: function (v) {
187
+ this.i.a9 = +v;
188
+ },
189
+ enumerable: false,
190
+ configurable: true
191
+ });
192
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "windowRect", {
193
+ get: function () {
194
+ return fromRect(this.i.e1);
195
+ },
196
+ set: function (v) {
197
+ this.i.e1 = toRect(v);
198
+ },
199
+ enumerable: false,
200
+ configurable: true
201
+ });
202
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "yValue", {
203
+ get: function () {
204
+ return this.i.b0;
205
+ },
206
+ set: function (v) {
207
+ this.i.b0 = +v;
208
+ },
209
+ enumerable: false,
210
+ configurable: true
211
+ });
212
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "startInset", {
213
+ get: function () {
214
+ return this.i.bk;
215
+ },
216
+ set: function (v) {
217
+ this.i.bk = +v;
218
+ },
219
+ enumerable: false,
220
+ configurable: true
221
+ });
222
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "endInset", {
223
+ get: function () {
224
+ return this.i.be;
225
+ },
226
+ set: function (v) {
227
+ this.i.be = +v;
228
+ },
229
+ enumerable: false,
230
+ configurable: true
231
+ });
232
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "trackStartInset", {
233
+ get: function () {
234
+ return this.i.bq;
235
+ },
236
+ set: function (v) {
237
+ this.i.bq = +v;
238
+ },
239
+ enumerable: false,
240
+ configurable: true
241
+ });
242
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "trackEndInset", {
243
+ get: function () {
244
+ return this.i.bp;
245
+ },
246
+ set: function (v) {
247
+ this.i.bp = +v;
248
+ },
249
+ enumerable: false,
250
+ configurable: true
251
+ });
252
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "yTrackStartInset", {
253
+ get: function () {
254
+ return this.i.bz;
255
+ },
256
+ set: function (v) {
257
+ this.i.bz = +v;
258
+ },
259
+ enumerable: false,
260
+ configurable: true
261
+ });
262
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "yTrackEndInset", {
263
+ get: function () {
264
+ return this.i.by;
265
+ },
266
+ set: function (v) {
267
+ this.i.by = +v;
268
+ },
269
+ enumerable: false,
270
+ configurable: true
271
+ });
272
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "barExtent", {
273
+ get: function () {
274
+ return this.i.bb;
275
+ },
276
+ set: function (v) {
277
+ this.i.bb = +v;
278
+ },
279
+ enumerable: false,
280
+ configurable: true
281
+ });
282
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "orientation", {
283
+ get: function () {
284
+ return this.i.e;
285
+ },
286
+ set: function (v) {
287
+ this.i.e = ensureEnum(MultiSliderOrientation_$type, v);
288
+ },
289
+ enumerable: false,
290
+ configurable: true
291
+ });
292
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbBrush", {
293
+ get: function () {
294
+ return brushToString(this.i.es);
295
+ },
296
+ set: function (v) {
297
+ this.i.es = stringToBrush(v);
298
+ },
299
+ enumerable: false,
300
+ configurable: true
301
+ });
302
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbStrokeThickness", {
303
+ get: function () {
304
+ return this.i.bn;
305
+ },
306
+ set: function (v) {
307
+ this.i.bn = +v;
308
+ },
309
+ enumerable: false,
310
+ configurable: true
311
+ });
312
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbOutline", {
313
+ get: function () {
314
+ return brushToString(this.i.et);
315
+ },
316
+ set: function (v) {
317
+ this.i.et = stringToBrush(v);
318
+ },
319
+ enumerable: false,
320
+ configurable: true
321
+ });
322
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbWidth", {
323
+ get: function () {
324
+ return this.i.bo;
325
+ },
326
+ set: function (v) {
327
+ this.i.bo = +v;
328
+ },
329
+ enumerable: false,
330
+ configurable: true
331
+ });
332
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbHeight", {
333
+ get: function () {
334
+ return this.i.bm;
335
+ },
336
+ set: function (v) {
337
+ this.i.bm = +v;
338
+ },
339
+ enumerable: false,
340
+ configurable: true
341
+ });
342
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "barBrush", {
343
+ get: function () {
344
+ return brushToString(this.i.ek);
345
+ },
346
+ set: function (v) {
347
+ this.i.ek = stringToBrush(v);
348
+ },
349
+ enumerable: false,
350
+ configurable: true
351
+ });
352
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "barOutline", {
353
+ get: function () {
354
+ return brushToString(this.i.el);
355
+ },
356
+ set: function (v) {
357
+ this.i.el = stringToBrush(v);
358
+ },
359
+ enumerable: false,
360
+ configurable: true
361
+ });
362
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "barStrokeThickness", {
363
+ get: function () {
364
+ return this.i.bc;
365
+ },
366
+ set: function (v) {
367
+ this.i.bc = +v;
368
+ },
369
+ enumerable: false,
370
+ configurable: true
371
+ });
372
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "rangeThumbBrush", {
373
+ get: function () {
374
+ return brushToString(this.i.ep);
375
+ },
376
+ set: function (v) {
377
+ this.i.ep = stringToBrush(v);
378
+ },
379
+ enumerable: false,
380
+ configurable: true
381
+ });
382
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "rangeThumbOutline", {
383
+ get: function () {
384
+ return brushToString(this.i.eq);
385
+ },
386
+ set: function (v) {
387
+ this.i.eq = stringToBrush(v);
388
+ },
389
+ enumerable: false,
390
+ configurable: true
391
+ });
392
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "rangeThumbStrokeThickness", {
393
+ get: function () {
394
+ return this.i.bj;
395
+ },
396
+ set: function (v) {
397
+ this.i.bj = +v;
398
+ },
399
+ enumerable: false,
400
+ configurable: true
401
+ });
402
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "rangeThumbRidgesBrush", {
403
+ get: function () {
404
+ return brushToString(this.i.er);
405
+ },
406
+ set: function (v) {
407
+ this.i.er = stringToBrush(v);
408
+ },
409
+ enumerable: false,
410
+ configurable: true
411
+ });
412
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbRidgesBrush", {
413
+ get: function () {
414
+ return brushToString(this.i.eu);
415
+ },
416
+ set: function (v) {
417
+ this.i.eu = stringToBrush(v);
418
+ },
419
+ enumerable: false,
420
+ configurable: true
421
+ });
422
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "calloutBrush", {
423
+ get: function () {
424
+ return brushToString(this.i.em);
425
+ },
426
+ set: function (v) {
427
+ this.i.em = stringToBrush(v);
428
+ },
429
+ enumerable: false,
430
+ configurable: true
431
+ });
432
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "calloutTextColor", {
433
+ get: function () {
434
+ return brushToString(this.i.eo);
435
+ },
436
+ set: function (v) {
437
+ this.i.eo = stringToBrush(v);
438
+ },
439
+ enumerable: false,
440
+ configurable: true
441
+ });
442
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "calloutOutline", {
443
+ get: function () {
444
+ return brushToString(this.i.en);
445
+ },
446
+ set: function (v) {
447
+ this.i.en = stringToBrush(v);
448
+ },
449
+ enumerable: false,
450
+ configurable: true
451
+ });
452
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "calloutStrokeThickness", {
453
+ get: function () {
454
+ return this.i.bd;
455
+ },
456
+ set: function (v) {
457
+ this.i.bd = +v;
458
+ },
459
+ enumerable: false,
460
+ configurable: true
461
+ });
462
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "isCustomThumbProvided", {
463
+ get: function () {
464
+ return this.i.ac;
465
+ },
466
+ enumerable: false,
467
+ configurable: true
468
+ });
469
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "isCustomRangeThumbProvided", {
470
+ get: function () {
471
+ return this.i.aa;
472
+ },
473
+ enumerable: false,
474
+ configurable: true
475
+ });
476
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "isCustomBarProvided", {
477
+ get: function () {
478
+ return this.i.z;
479
+ },
480
+ enumerable: false,
481
+ configurable: true
482
+ });
483
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "isCustomShadeProvided", {
484
+ get: function () {
485
+ return this.i.ab;
486
+ },
487
+ enumerable: false,
488
+ configurable: true
489
+ });
490
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "areThumbCalloutsEnabled", {
491
+ get: function () {
492
+ return this.i.t;
493
+ },
494
+ set: function (v) {
495
+ this.i.t = ensureBool(v);
496
+ },
497
+ enumerable: false,
498
+ configurable: true
499
+ });
500
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbCalloutTextStyle", {
501
+ get: function () {
502
+ if (this.i.p == null) {
503
+ return null;
504
+ }
505
+ return this.i.p.fontString;
506
+ },
507
+ set: function (v) {
508
+ var fi = new FontInfo();
509
+ fi.fontString = v;
510
+ this.i.p = fi;
511
+ },
512
+ enumerable: false,
513
+ configurable: true
514
+ });
515
+ IgxMultiSliderComponent.prototype.findByName = function (name) {
516
+ if (this.findEphemera) {
517
+ if (name && name.indexOf("@@e:") == 0) {
518
+ return this.findEphemera(name);
519
+ }
520
+ }
521
+ if (this.thumbs != null && this.thumbs.findByName && this.thumbs.findByName(name)) {
522
+ return this.thumbs.findByName(name);
523
+ }
524
+ return null;
525
+ };
526
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "hasUserValues", {
527
+ get: function () {
528
+ return this._hasUserValues;
529
+ },
530
+ enumerable: false,
531
+ configurable: true
532
+ });
533
+ IgxMultiSliderComponent.prototype.__m = function (propertyName) {
534
+ if (!this._inStyling) {
535
+ this._hasUserValues.add(propertyName);
536
+ }
537
+ };
538
+ IgxMultiSliderComponent.prototype._styling = function (container, component, parent) {
539
+ if (this._inStyling) {
540
+ return;
541
+ }
542
+ this._inStyling = true;
543
+ this._stylingContainer = container;
544
+ this._stylingParent = component;
545
+ var genericPrefix = "";
546
+ var typeName = this.i.$type.name;
547
+ if (typeName.indexOf("Xam") === 0) {
548
+ typeName = typeName.substring(3);
549
+ }
550
+ genericPrefix = toSpinal("MultiSliderComponent");
551
+ var additionalPrefixes = [];
552
+ var prefix = toSpinal(typeName);
553
+ additionalPrefixes.push(prefix + "-");
554
+ var b = this.i.$type.baseType;
555
+ while (b && b.name != "Object" &&
556
+ b.name != "Base" &&
557
+ b.name != "Control" &&
558
+ b.Name != "DependencyObject" &&
559
+ b.Name != "FrameworkElement") {
560
+ typeName = b.name;
561
+ if (typeName.indexOf("Xam") === 0) {
562
+ typeName = typeName.substring(3);
563
+ }
564
+ var basePrefix = toSpinal(typeName);
565
+ additionalPrefixes.push(basePrefix + "-");
566
+ b = b.baseType;
567
+ }
568
+ if (parent) {
569
+ var parentTypeName = parent.i.$type.name;
570
+ if (parentTypeName.indexOf("Xam") === 0) {
571
+ parentTypeName = parentTypeName.substring(3);
572
+ }
573
+ var parentPrefix = toSpinal(parentTypeName);
574
+ additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
575
+ additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
576
+ }
577
+ initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
578
+ if (this._otherStyling) {
579
+ this._otherStyling(container, component, parent);
580
+ }
581
+ this._inStyling = false;
582
+ };
583
+ IgxMultiSliderComponent.prototype.onDetachedFromUI = function () {
584
+ this.i.onDetachedFromUI();
585
+ };
586
+ IgxMultiSliderComponent.prototype.onAttachedToUI = function () {
587
+ this.i.onAttachedToUI();
588
+ };
589
+ /**
590
+ * Called by the UI framework to provide a UI container for rendering this control.
591
+
592
+ * @param container * The UI container element.
593
+ */
594
+ IgxMultiSliderComponent.prototype.provideContainer = function (container) {
595
+ this.i.provideContainer(container);
596
+ };
597
+ IgxMultiSliderComponent.prototype.flush = function () {
598
+ this.i.c7();
599
+ };
600
+ IgxMultiSliderComponent.prototype.trackDirty = function () {
601
+ this.i.trackDirty();
602
+ };
603
+ /**
604
+ * Shows the ZoomSlider.
605
+
606
+ */
607
+ IgxMultiSliderComponent.prototype.show = function () {
608
+ this.i.dw();
609
+ };
610
+ /**
611
+ * Hides the ZoomSlider.
612
+
613
+ */
614
+ IgxMultiSliderComponent.prototype.hide = function () {
615
+ this.i.c8();
616
+ };
617
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "resolvingToolTipValue", {
618
+ get: function () {
619
+ var _this = this;
620
+ if (this._resolvingToolTipValue == null) {
621
+ this._resolvingToolTipValue = new EventEmitter();
622
+ this.i.resolvingToolTipValue = delegateCombine(this.i.resolvingToolTipValue, function (o, e) {
623
+ var outerArgs = new IgxMultiSliderResolvingToolTipValueEventArgs();
624
+ outerArgs._provideImplementation(e);
625
+ if (_this.beforeResolvingToolTipValue) {
626
+ _this.beforeResolvingToolTipValue(_this, outerArgs);
627
+ }
628
+ _this._resolvingToolTipValue.emit({
629
+ sender: _this,
630
+ args: outerArgs
631
+ });
632
+ });
633
+ }
634
+ return this._resolvingToolTipValue;
635
+ },
636
+ enumerable: false,
637
+ configurable: true
638
+ });
639
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbValueChanging", {
640
+ get: function () {
641
+ var _this = this;
642
+ if (this._thumbValueChanging == null) {
643
+ this._thumbValueChanging = new EventEmitter();
644
+ this.i.thumbValueChanging = delegateCombine(this.i.thumbValueChanging, function (o, e) {
645
+ _this._runInZone(function () {
646
+ var outerArgs = new IgxMultiSliderThumbValueChangingEventArgs();
647
+ outerArgs._provideImplementation(e);
648
+ if (_this.beforeThumbValueChanging) {
649
+ _this.beforeThumbValueChanging(_this, outerArgs);
650
+ }
651
+ _this._thumbValueChanging.emit({
652
+ sender: _this,
653
+ args: outerArgs
654
+ });
655
+ });
656
+ });
657
+ }
658
+ return this._thumbValueChanging;
659
+ },
660
+ enumerable: false,
661
+ configurable: true
662
+ });
663
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "thumbValueChanged", {
664
+ get: function () {
665
+ var _this = this;
666
+ if (this._thumbValueChanged == null) {
667
+ this._thumbValueChanged = new EventEmitter();
668
+ this.i.thumbValueChanged = delegateCombine(this.i.thumbValueChanged, function (o, e) {
669
+ _this._runInZone(function () {
670
+ var outerArgs = new IgxMultiSliderThumbValueChangingEventArgs();
671
+ outerArgs._provideImplementation(e);
672
+ if (_this.beforeThumbValueChanged) {
673
+ _this.beforeThumbValueChanged(_this, outerArgs);
674
+ }
675
+ _this._thumbValueChanged.emit({
676
+ sender: _this,
677
+ args: outerArgs
678
+ });
679
+ });
680
+ });
681
+ }
682
+ return this._thumbValueChanged;
683
+ },
684
+ enumerable: false,
685
+ configurable: true
686
+ });
687
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "yValueChanging", {
688
+ get: function () {
689
+ var _this = this;
690
+ if (this._yValueChanging == null) {
691
+ this._yValueChanging = new EventEmitter();
692
+ this.i.yValueChanging = delegateCombine(this.i.yValueChanging, function (o, e) {
693
+ _this._runInZone(function () {
694
+ var outerArgs = new IgxMultiSliderYValueChangingEventArgs();
695
+ outerArgs._provideImplementation(e);
696
+ if (_this.beforeYValueChanging) {
697
+ _this.beforeYValueChanging(_this, outerArgs);
698
+ }
699
+ _this._yValueChanging.emit({
700
+ sender: _this,
701
+ args: outerArgs
702
+ });
703
+ });
704
+ });
705
+ }
706
+ return this._yValueChanging;
707
+ },
708
+ enumerable: false,
709
+ configurable: true
710
+ });
711
+ Object.defineProperty(IgxMultiSliderComponent.prototype, "yValueChanged", {
712
+ get: function () {
713
+ var _this = this;
714
+ if (this._yValueChanged == null) {
715
+ this._yValueChanged = new EventEmitter();
716
+ this.i.yValueChanged = delegateCombine(this.i.yValueChanged, function (o, e) {
717
+ _this._runInZone(function () {
718
+ var outerArgs = new IgxMultiSliderYValueChangingEventArgs();
719
+ outerArgs._provideImplementation(e);
720
+ if (_this.beforeYValueChanged) {
721
+ _this.beforeYValueChanged(_this, outerArgs);
722
+ }
723
+ _this._yValueChanged.emit({
724
+ sender: _this,
725
+ args: outerArgs
726
+ });
727
+ });
728
+ });
729
+ }
730
+ return this._yValueChanged;
731
+ },
732
+ enumerable: false,
733
+ configurable: true
734
+ });
735
+ IgxMultiSliderComponent.prototype._runInZone = function (act) {
736
+ if (this._zoneRunner != null) {
737
+ this._zoneRunner(act);
738
+ }
739
+ else {
740
+ act();
741
+ }
742
+ };
743
+ IgxMultiSliderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
744
+ IgxMultiSliderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxMultiSliderComponent, selector: "igx-multi-slider", inputs: { thumbs: "thumbs", min: "min", max: "max", step: "step", yMax: "yMax", yMin: "yMin", yStep: "yStep", pixelScalingRatio: "pixelScalingRatio", actualPixelScalingRatio: "actualPixelScalingRatio", windowRect: "windowRect", yValue: "yValue", startInset: "startInset", endInset: "endInset", trackStartInset: "trackStartInset", trackEndInset: "trackEndInset", yTrackStartInset: "yTrackStartInset", yTrackEndInset: "yTrackEndInset", barExtent: "barExtent", orientation: "orientation", thumbBrush: "thumbBrush", thumbStrokeThickness: "thumbStrokeThickness", thumbOutline: "thumbOutline", thumbWidth: "thumbWidth", thumbHeight: "thumbHeight", barBrush: "barBrush", barOutline: "barOutline", barStrokeThickness: "barStrokeThickness", rangeThumbBrush: "rangeThumbBrush", rangeThumbOutline: "rangeThumbOutline", rangeThumbStrokeThickness: "rangeThumbStrokeThickness", rangeThumbRidgesBrush: "rangeThumbRidgesBrush", thumbRidgesBrush: "thumbRidgesBrush", calloutBrush: "calloutBrush", calloutTextColor: "calloutTextColor", calloutOutline: "calloutOutline", calloutStrokeThickness: "calloutStrokeThickness", areThumbCalloutsEnabled: "areThumbCalloutsEnabled", thumbCalloutTextStyle: "thumbCalloutTextStyle" }, outputs: { resolvingToolTipValue: "resolvingToolTipValue", thumbValueChanging: "thumbValueChanging", thumbValueChanged: "thumbValueChanged", yValueChanging: "yValueChanging", yValueChanged: "yValueChanged" }, providers: [], ngImport: i0, template: "", isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
745
+ return IgxMultiSliderComponent;
746
+ }());
747
+ export { IgxMultiSliderComponent };
748
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderComponent, decorators: [{
749
+ type: Component,
750
+ args: [{
751
+ selector: 'igx-multi-slider',
752
+ template: "",
753
+ providers: [],
754
+ changeDetection: ChangeDetectionStrategy.OnPush
755
+ }]
756
+ }], ctorParameters: function () { return []; }, propDecorators: { thumbs: [{
757
+ type: Input
758
+ }], min: [{
759
+ type: Input
760
+ }], max: [{
761
+ type: Input
762
+ }], step: [{
763
+ type: Input
764
+ }], yMax: [{
765
+ type: Input
766
+ }], yMin: [{
767
+ type: Input
768
+ }], yStep: [{
769
+ type: Input
770
+ }], pixelScalingRatio: [{
771
+ type: Input
772
+ }], actualPixelScalingRatio: [{
773
+ type: Input
774
+ }], windowRect: [{
775
+ type: Input
776
+ }], yValue: [{
777
+ type: Input
778
+ }], startInset: [{
779
+ type: Input
780
+ }], endInset: [{
781
+ type: Input
782
+ }], trackStartInset: [{
783
+ type: Input
784
+ }], trackEndInset: [{
785
+ type: Input
786
+ }], yTrackStartInset: [{
787
+ type: Input
788
+ }], yTrackEndInset: [{
789
+ type: Input
790
+ }], barExtent: [{
791
+ type: Input
792
+ }], orientation: [{
793
+ type: Input
794
+ }], thumbBrush: [{
795
+ type: Input
796
+ }], thumbStrokeThickness: [{
797
+ type: Input
798
+ }], thumbOutline: [{
799
+ type: Input
800
+ }], thumbWidth: [{
801
+ type: Input
802
+ }], thumbHeight: [{
803
+ type: Input
804
+ }], barBrush: [{
805
+ type: Input
806
+ }], barOutline: [{
807
+ type: Input
808
+ }], barStrokeThickness: [{
809
+ type: Input
810
+ }], rangeThumbBrush: [{
811
+ type: Input
812
+ }], rangeThumbOutline: [{
813
+ type: Input
814
+ }], rangeThumbStrokeThickness: [{
815
+ type: Input
816
+ }], rangeThumbRidgesBrush: [{
817
+ type: Input
818
+ }], thumbRidgesBrush: [{
819
+ type: Input
820
+ }], calloutBrush: [{
821
+ type: Input
822
+ }], calloutTextColor: [{
823
+ type: Input
824
+ }], calloutOutline: [{
825
+ type: Input
826
+ }], calloutStrokeThickness: [{
827
+ type: Input
828
+ }], areThumbCalloutsEnabled: [{
829
+ type: Input
830
+ }], thumbCalloutTextStyle: [{
831
+ type: Input
832
+ }], resolvingToolTipValue: [{
833
+ type: Output
834
+ }], thumbValueChanging: [{
835
+ type: Output
836
+ }], thumbValueChanged: [{
837
+ type: Output
838
+ }], yValueChanging: [{
839
+ type: Output
840
+ }], yValueChanged: [{
841
+ type: Output
842
+ }] } });