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
@@ -1719,70 +1719,70 @@ export let XCalendar = /*@__PURE__*/ (() => {
1719
1719
  c3() {
1720
1720
  for (let a = 0; a < this.aj.count; a++) {
1721
1721
  if (this.dq != null) {
1722
- this.aj._inner[a].p4 = this.dq;
1722
+ this.aj._inner[a].p6 = this.dq;
1723
1723
  }
1724
1724
  if (this.dk != null) {
1725
- this.aj._inner[a].p0 = this.dk;
1725
+ this.aj._inner[a].p2 = this.dk;
1726
1726
  }
1727
1727
  if (this.dg != null) {
1728
- this.aj._inner[a].pu = this.dg;
1728
+ this.aj._inner[a].pw = this.dg;
1729
1729
  }
1730
1730
  if (this.dj != null) {
1731
- this.aj._inner[a].pz = this.dj;
1731
+ this.aj._inner[a].p1 = this.dj;
1732
1732
  }
1733
1733
  if (this.dl != null) {
1734
- this.aj._inner[a].p1 = this.dl;
1734
+ this.aj._inner[a].p3 = this.dl;
1735
1735
  }
1736
1736
  }
1737
1737
  for (let b = 0; b < this.ah.count; b++) {
1738
1738
  if (this.dq != null) {
1739
- this.ah._inner[b].p4 = this.dq;
1739
+ this.ah._inner[b].p6 = this.dq;
1740
1740
  }
1741
1741
  if (this.dk != null) {
1742
- this.ah._inner[b].p0 = this.dk;
1742
+ this.ah._inner[b].p2 = this.dk;
1743
1743
  }
1744
1744
  if (this.dg != null) {
1745
- this.ah._inner[b].pu = this.dg;
1745
+ this.ah._inner[b].pw = this.dg;
1746
1746
  }
1747
1747
  if (this.dj != null) {
1748
- this.ah._inner[b].pz = this.dj;
1748
+ this.ah._inner[b].p1 = this.dj;
1749
1749
  }
1750
1750
  if (this.dl != null) {
1751
- this.ah._inner[b].p1 = this.dl;
1751
+ this.ah._inner[b].p3 = this.dl;
1752
1752
  }
1753
1753
  }
1754
1754
  for (let c = 0; c < this.ak.count; c++) {
1755
1755
  if (this.dq != null) {
1756
- this.ak._inner[c].p4 = this.dq;
1756
+ this.ak._inner[c].p6 = this.dq;
1757
1757
  }
1758
1758
  if (this.dk != null) {
1759
- this.ak._inner[c].p0 = this.dk;
1759
+ this.ak._inner[c].p2 = this.dk;
1760
1760
  }
1761
1761
  if (this.dg != null) {
1762
- this.ak._inner[c].pu = this.dg;
1762
+ this.ak._inner[c].pw = this.dg;
1763
1763
  }
1764
1764
  if (this.dj != null) {
1765
- this.ak._inner[c].pz = this.dj;
1765
+ this.ak._inner[c].p1 = this.dj;
1766
1766
  }
1767
1767
  if (this.dl != null) {
1768
- this.ak._inner[c].p1 = this.dl;
1768
+ this.ak._inner[c].p3 = this.dl;
1769
1769
  }
1770
1770
  }
1771
1771
  for (let d = 0; d < this.al.count; d++) {
1772
1772
  if (this.dq != null) {
1773
- this.al._inner[d].p4 = this.dq;
1773
+ this.al._inner[d].p6 = this.dq;
1774
1774
  }
1775
1775
  if (this.dk != null) {
1776
- this.al._inner[d].p0 = this.dk;
1776
+ this.al._inner[d].p2 = this.dk;
1777
1777
  }
1778
1778
  if (this.dg != null) {
1779
- this.al._inner[d].pu = this.dg;
1779
+ this.al._inner[d].pw = this.dg;
1780
1780
  }
1781
1781
  if (this.dj != null) {
1782
- this.al._inner[d].pz = this.dj;
1782
+ this.al._inner[d].p1 = this.dj;
1783
1783
  }
1784
1784
  if (this.dl != null) {
1785
- this.al._inner[d].p1 = this.dl;
1785
+ this.al._inner[d].p3 = this.dl;
1786
1786
  }
1787
1787
  }
1788
1788
  }
@@ -1850,15 +1850,15 @@ export let XCalendar = /*@__PURE__*/ (() => {
1850
1850
  d.aa = this.u;
1851
1851
  }
1852
1852
  let e = new CornerRadius(0, 2);
1853
- d.kt = e;
1854
- d.k0 = e;
1853
+ d.ku = e;
1854
+ d.k1 = e;
1855
1855
  d.dk = 0;
1856
1856
  d.appendButtonContent(b);
1857
- d.p4 = this.dq;
1858
- d.p0 = this.dk;
1859
- d.pu = this.dg;
1860
- d.pz = this.dj;
1861
- d.p1 = this.dl;
1857
+ d.p6 = this.dq;
1858
+ d.p2 = this.dk;
1859
+ d.pw = this.dg;
1860
+ d.p1 = this.dj;
1861
+ d.p3 = this.dl;
1862
1862
  d.bu = 30;
1863
1863
  d.bt = 30;
1864
1864
  this.ah.add(d);
@@ -1876,17 +1876,17 @@ export let XCalendar = /*@__PURE__*/ (() => {
1876
1876
  c.aa = this.u;
1877
1877
  }
1878
1878
  let d = new CornerRadius(0, 2);
1879
- c.kt = d;
1880
- c.k0 = d;
1879
+ c.ku = d;
1880
+ c.k1 = d;
1881
1881
  c.dk = 0;
1882
1882
  c.appendButtonContent(b);
1883
1883
  let e = !stringIsNullOrWhiteSpace(this.x.b1("Today")) ? this.x.b1("Today") : "Today";
1884
1884
  this.h.az(e);
1885
- c.p4 = this.dq;
1886
- c.p0 = this.dk;
1887
- c.pu = this.dg;
1888
- c.pz = this.dj;
1889
- c.p1 = this.dl;
1885
+ c.p6 = this.dq;
1886
+ c.p2 = this.dk;
1887
+ c.pw = this.dg;
1888
+ c.p1 = this.dj;
1889
+ c.p3 = this.dl;
1890
1890
  this.g = c;
1891
1891
  let f = this.g;
1892
1892
  f.clicked = delegateCombine(f.clicked, runOn(this, this.c2));
@@ -1908,15 +1908,15 @@ export let XCalendar = /*@__PURE__*/ (() => {
1908
1908
  c.aa = this.u;
1909
1909
  }
1910
1910
  let d = new CornerRadius(0, 2);
1911
- c.kt = d;
1912
- c.k0 = d;
1911
+ c.ku = d;
1912
+ c.k1 = d;
1913
1913
  c.dk = 0;
1914
1914
  c.appendButtonContent(b);
1915
- c.p4 = this.dq;
1916
- c.p0 = this.dk;
1917
- c.pu = this.dg;
1918
- c.pz = this.dj;
1919
- c.p1 = this.dl;
1915
+ c.p6 = this.dq;
1916
+ c.p2 = this.dk;
1917
+ c.pw = this.dg;
1918
+ c.p1 = this.dj;
1919
+ c.p3 = this.dl;
1920
1920
  c.bu = 40;
1921
1921
  this.ak.add(c);
1922
1922
  }
@@ -1989,15 +1989,15 @@ export let XCalendar = /*@__PURE__*/ (() => {
1989
1989
  d.aa = this.u;
1990
1990
  }
1991
1991
  let e = new CornerRadius(0, 2);
1992
- d.kt = e;
1993
- d.k0 = e;
1992
+ d.ku = e;
1993
+ d.k1 = e;
1994
1994
  d.dk = 0;
1995
1995
  d.appendButtonContent(b);
1996
- d.p4 = this.dq;
1997
- d.p0 = this.dk;
1998
- d.pu = this.dg;
1999
- d.pz = this.dj;
2000
- d.p1 = this.dl;
1996
+ d.p6 = this.dq;
1997
+ d.p2 = this.dk;
1998
+ d.pw = this.dg;
1999
+ d.p1 = this.dj;
2000
+ d.p3 = this.dl;
2001
2001
  d.h2 = "btnYear" + c.toString();
2002
2002
  this.al.add(d);
2003
2003
  }
@@ -2201,8 +2201,8 @@ export let XCalendar = /*@__PURE__*/ (() => {
2201
2201
  e.d3 = -1;
2202
2202
  e.e = 1;
2203
2203
  let f = new CornerRadius(0, 2);
2204
- e.kt = f;
2205
- e.k0 = f;
2204
+ e.ku = f;
2205
+ e.k1 = f;
2206
2206
  e.dk = 0;
2207
2207
  let g = new XIcon();
2208
2208
  this.h.aw(b, g);
@@ -2215,11 +2215,11 @@ export let XCalendar = /*@__PURE__*/ (() => {
2215
2215
  e.h2 = "btnNext";
2216
2216
  }
2217
2217
  e.appendButtonContent(c);
2218
- e.p4 = this.dq;
2219
- e.p0 = this.dk;
2220
- e.pu = this.dg;
2221
- e.pz = this.dj;
2222
- e.p1 = this.dl;
2218
+ e.p6 = this.dq;
2219
+ e.p2 = this.dk;
2220
+ e.pw = this.dg;
2221
+ e.p1 = this.dj;
2222
+ e.p3 = this.dl;
2223
2223
  e.bu = 28;
2224
2224
  e.bt = 28;
2225
2225
  this.aj.add(e);
@@ -2236,15 +2236,15 @@ export let XCalendar = /*@__PURE__*/ (() => {
2236
2236
  d.aa = this.u;
2237
2237
  }
2238
2238
  let e = new CornerRadius(0, 2);
2239
- d.kt = e;
2240
- d.k0 = e;
2239
+ d.ku = e;
2240
+ d.k1 = e;
2241
2241
  d.dk = 0;
2242
2242
  d.appendButtonContent(b);
2243
- d.p4 = this.dq;
2244
- d.p0 = this.dk;
2245
- d.pu = this.dg;
2246
- d.pz = this.dj;
2247
- d.p1 = this.dl;
2243
+ d.p6 = this.dq;
2244
+ d.p2 = this.dk;
2245
+ d.pw = this.dg;
2246
+ d.p1 = this.dj;
2247
+ d.p3 = this.dl;
2248
2248
  d.bu = 40;
2249
2249
  if (c == "month") {
2250
2250
  d.h2 = "btnMonth";
@@ -2412,34 +2412,34 @@ export let XCalendar = /*@__PURE__*/ (() => {
2412
2412
  let b = this.ai._inner[a];
2413
2413
  let c = this.ah._inner[a];
2414
2414
  if (+(this.value) != +(dateMinValue()) && b.b == this.value.getDate() && b.c == dateGetMonth(this.value) && b.d == this.value.getFullYear()) {
2415
- c.p4 = this.dn;
2416
- c.p0 = this.dn;
2417
- c.pu = this.dm;
2418
- c.pz = this.dp;
2419
- c.pv = this.dg;
2415
+ c.p6 = this.dn;
2416
+ c.p2 = this.dn;
2417
+ c.pw = this.dm;
2418
+ c.p1 = this.dp;
2419
+ c.px = this.dg;
2420
2420
  }
2421
2421
  else if (b.b == this.av.getDate() && b.c == dateGetMonth(this.av) && b.d == this.av.getFullYear()) {
2422
- c.p4 = this.di;
2422
+ c.p6 = this.di;
2423
2423
  ;
2424
- c.p0 = this.dk;
2425
- c.pu = this.dg;
2426
- c.pz = this.dj;
2427
- c.pv = this.dh;
2424
+ c.p2 = this.dk;
2425
+ c.pw = this.dg;
2426
+ c.p1 = this.dj;
2427
+ c.px = this.dh;
2428
2428
  c.br = 1;
2429
2429
  }
2430
2430
  else if (b.a != 0 && b.a != 6 && b.c == dateGetMonth(this.aq)) {
2431
- c.p4 = this.dq;
2432
- c.p0 = this.dk;
2433
- c.pu = this.dg;
2434
- c.pz = this.dj;
2435
- c.pv = this.dg;
2431
+ c.p6 = this.dq;
2432
+ c.p2 = this.dk;
2433
+ c.pw = this.dg;
2434
+ c.p1 = this.dj;
2435
+ c.px = this.dg;
2436
2436
  }
2437
2437
  else {
2438
- c.p4 = this.dq;
2439
- c.p0 = this.dk;
2440
- c.pu = this.dg;
2441
- c.pz = this.dj;
2442
- c.pv = this.dg;
2438
+ c.p6 = this.dq;
2439
+ c.p2 = this.dk;
2440
+ c.pw = this.dg;
2441
+ c.p1 = this.dj;
2442
+ c.px = this.dg;
2443
2443
  }
2444
2444
  if (b.d >= this.au.getFullYear() && b.d <= this.at.getFullYear()) {
2445
2445
  if (b.d == this.au.getFullYear() && b.d == this.at.getFullYear()) {
@@ -0,0 +1,7 @@
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
+ export { ColorEditor } from "./NativeUIXInputsFactory_combined";
@@ -0,0 +1,7 @@
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
+ export { ColorEditorBridge } from "./NativeUIXInputsFactory_combined";
@@ -0,0 +1,16 @@
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 { EventArgs, markType } from "igniteui-angular-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export let ColorEditorGotFocusEventArgs = /*@__PURE__*/ (() => {
12
+ class ColorEditorGotFocusEventArgs extends EventArgs {
13
+ }
14
+ ColorEditorGotFocusEventArgs.$t = markType(ColorEditorGotFocusEventArgs, 'ColorEditorGotFocusEventArgs', EventArgs.$);
15
+ return ColorEditorGotFocusEventArgs;
16
+ })();
@@ -0,0 +1,16 @@
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 { EventArgs, markType } from "igniteui-angular-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export let ColorEditorLostFocusEventArgs = /*@__PURE__*/ (() => {
12
+ class ColorEditorLostFocusEventArgs extends EventArgs {
13
+ }
14
+ ColorEditorLostFocusEventArgs.$t = markType(ColorEditorLostFocusEventArgs, 'ColorEditorLostFocusEventArgs', EventArgs.$);
15
+ return ColorEditorLostFocusEventArgs;
16
+ })();
@@ -0,0 +1,7 @@
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
+ export { ColorEditorPanel } from "./NativeUIXInputsFactory_combined";
@@ -0,0 +1,16 @@
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, markType } from "igniteui-angular-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export let ColorEditorPanelClosedEventArgs = /*@__PURE__*/ (() => {
12
+ class ColorEditorPanelClosedEventArgs extends Base {
13
+ }
14
+ ColorEditorPanelClosedEventArgs.$t = markType(ColorEditorPanelClosedEventArgs, 'ColorEditorPanelClosedEventArgs');
15
+ return ColorEditorPanelClosedEventArgs;
16
+ })();
@@ -0,0 +1,33 @@
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 { EventArgs, markType } from "igniteui-angular-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export let ColorEditorPanelSelectedValueChangedEventArgs = /*@__PURE__*/ (() => {
12
+ class ColorEditorPanelSelectedValueChangedEventArgs extends EventArgs {
13
+ constructor() {
14
+ super(...arguments);
15
+ this._oldValue = null;
16
+ this._newValue = null;
17
+ }
18
+ get oldValue() {
19
+ return this._oldValue;
20
+ }
21
+ set oldValue(a) {
22
+ this._oldValue = a;
23
+ }
24
+ get newValue() {
25
+ return this._newValue;
26
+ }
27
+ set newValue(a) {
28
+ this._newValue = a;
29
+ }
30
+ }
31
+ ColorEditorPanelSelectedValueChangedEventArgs.$t = markType(ColorEditorPanelSelectedValueChangedEventArgs, 'ColorEditorPanelSelectedValueChangedEventArgs', EventArgs.$);
32
+ return ColorEditorPanelSelectedValueChangedEventArgs;
33
+ })();
@@ -0,0 +1,7 @@
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
+ export { ColorEditorPanelView } from "./NativeUIXInputsFactory_combined";
@@ -0,0 +1,7 @@
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
+ export { ColorEditorView } from "./NativeUIXInputsFactory_combined";
@@ -880,12 +880,12 @@ export let XDatePicker = /*@__PURE__*/ (() => {
880
880
  break;
881
881
  case "IsFixed":
882
882
  if (this.u != null) {
883
- this.u.aq = this.aw;
883
+ this.u.ar = this.aw;
884
884
  }
885
885
  break;
886
886
  case "UseTopLayer":
887
887
  if (this.u != null) {
888
- this.u.ax = this.a3;
888
+ this.u.ay = this.a3;
889
889
  }
890
890
  break;
891
891
  }
@@ -991,7 +991,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
991
991
  this.n.fill = this.dw;
992
992
  }
993
993
  if (this.r != null) {
994
- this.r.df = this.dx;
994
+ this.r.di = this.dx;
995
995
  this.r.y = this.ac;
996
996
  }
997
997
  }
@@ -1012,7 +1012,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
1012
1012
  this.q.t = this.y;
1013
1013
  this.r = new XLabel();
1014
1014
  this.h.as(this.r);
1015
- this.r.df = this.dx;
1015
+ this.r.di = this.dx;
1016
1016
  this.r.y = this.ac;
1017
1017
  this.q.appendContentChild(this.h.v());
1018
1018
  if (this.b4 != null && this.b4 != "") {
@@ -1457,10 +1457,10 @@ export let XDatePicker = /*@__PURE__*/ (() => {
1457
1457
  }
1458
1458
  ct() {
1459
1459
  this.u = new Popup();
1460
- this.u.aq = this.aw;
1461
- this.u.ax = this.a3;
1462
- this.u.cy = BrushUtil.h(255, 255, 255, 255);
1463
- this.u.a8 = 150;
1460
+ this.u.ar = this.aw;
1461
+ this.u.ay = this.a3;
1462
+ this.u.c0 = BrushUtil.h(255, 255, 255, 255);
1463
+ this.u.a9 = 150;
1464
1464
  this.h.at(this.u);
1465
1465
  this.c = new XCalendar();
1466
1466
  this.h.ao(this.c);
@@ -1489,14 +1489,14 @@ export let XDatePicker = /*@__PURE__*/ (() => {
1489
1489
  this.ai = false;
1490
1490
  }
1491
1491
  cn(a) {
1492
- if (this.u.aw) {
1492
+ if (this.u.ax) {
1493
1493
  this.ah = true;
1494
1494
  this.cr();
1495
1495
  }
1496
1496
  }
1497
1497
  cy() {
1498
1498
  if (this.ah == false) {
1499
- if (this.u.aw) {
1499
+ if (this.u.ax) {
1500
1500
  this.cr();
1501
1501
  }
1502
1502
  else {
@@ -1537,7 +1537,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
1537
1537
  }
1538
1538
  dk(a, b) {
1539
1539
  if (this.ax) {
1540
- this.u.cp(this.h.d.rootWrapper.getNativeElement(), a, b);
1540
+ this.u.cr(this.h.d.rootWrapper.getNativeElement(), a, b);
1541
1541
  }
1542
1542
  else {
1543
1543
  let c = this.h.a0(true);
@@ -1545,7 +1545,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
1545
1545
  }
1546
1546
  }
1547
1547
  dn() {
1548
- if (this.u.aw) {
1548
+ if (this.u.ax) {
1549
1549
  let a = this.h.a0(false);
1550
1550
  let b = new Rect(0, a.left + window.pageXOffset, a.top + window.pageYOffset, a.width, a.height);
1551
1551
  let c = this.h.a()[1];
@@ -1559,27 +1559,27 @@ export let XDatePicker = /*@__PURE__*/ (() => {
1559
1559
  if (f < 0) {
1560
1560
  if (this.u.r != 1) {
1561
1561
  this.u.r = 1;
1562
- this.u.b9(b);
1562
+ this.u.ca(b);
1563
1563
  }
1564
1564
  }
1565
1565
  else {
1566
1566
  if (this.u.r != 2) {
1567
1567
  this.u.r = 2;
1568
- this.u.b9(b);
1568
+ this.u.ca(b);
1569
1569
  }
1570
1570
  }
1571
1571
  }
1572
1572
  else {
1573
1573
  if (this.u.r != 1) {
1574
1574
  this.u.r = 1;
1575
- this.u.b9(b);
1575
+ this.u.ca(b);
1576
1576
  }
1577
1577
  }
1578
1578
  }
1579
1579
  }
1580
1580
  cr() {
1581
1581
  if (this.u != null) {
1582
- window.setTimeout(() => this.u.b5(), 0);
1582
+ window.setTimeout(() => this.u.b6(), 0);
1583
1583
  }
1584
1584
  if (this.c != null) {
1585
1585
  this.c.cy();
@@ -1592,7 +1592,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
1592
1592
  if (this.o != null) {
1593
1593
  this.o.focus(a);
1594
1594
  }
1595
- if (!this.u.aw && this.ay == true) {
1595
+ if (!this.u.ax && this.ay == true) {
1596
1596
  if (this.ah == false) {
1597
1597
  if (this.al) {
1598
1598
  return;
@@ -1649,7 +1649,7 @@ export let XDatePicker = /*@__PURE__*/ (() => {
1649
1649
  let a = new DatePickerVisualModelExport();
1650
1650
  a.e = this.y;
1651
1651
  a.d = this.w;
1652
- a.c = this.u.bc();
1652
+ a.c = this.u.bd();
1653
1653
  a.b = this.q.fe();
1654
1654
  a.a = this.c.bj();
1655
1655
  if (this.ad != null) {
@@ -0,0 +1,113 @@
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 { IMultiSliderTrackBarVisual_$type } from "./IMultiSliderTrackBarVisual";
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 { PolyLineSegment } from "igniteui-angular-core";
16
+ /**
17
+ * @hidden
18
+ */
19
+ export let DefaultMultiSliderTrackBarVisual = /*@__PURE__*/ (() => {
20
+ class DefaultMultiSliderTrackBarVisual extends Base {
21
+ constructor() {
22
+ super();
23
+ this._translateX = 0;
24
+ this._translateY = 0;
25
+ this.b = -1;
26
+ this.a = -1;
27
+ this._barBox = null;
28
+ this._allPaths = null;
29
+ this.barBox = new Path();
30
+ this.allPaths = new List$1(Path.$, 0);
31
+ this.allPaths.add(this.barBox);
32
+ this.barBox._fill = this.getBarBoxDefaultBrush();
33
+ }
34
+ get translateX() {
35
+ return this._translateX;
36
+ }
37
+ set translateX(a) {
38
+ this._translateX = a;
39
+ }
40
+ get translateY() {
41
+ return this._translateY;
42
+ }
43
+ set translateY(a) {
44
+ this._translateY = a;
45
+ }
46
+ getBarBoxDefaultBrush() {
47
+ return ((() => {
48
+ let $ret = new Brush();
49
+ $ret.color = Color.u(255, 218, 218, 218);
50
+ return $ret;
51
+ })());
52
+ }
53
+ getBarBoxDefaultOutline() {
54
+ return null;
55
+ }
56
+ getBarBoxDefaultStrokeThickness() {
57
+ return 0;
58
+ }
59
+ c() {
60
+ let a = new PathGeometry();
61
+ let b = new PathFigure();
62
+ let c = new PolyLineSegment();
63
+ b._isClosed = true;
64
+ b._isFilled = true;
65
+ b._startPoint = { $type: Point_$type, x: this.width / -2, y: this.height / -2 };
66
+ c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / -2 });
67
+ c._points.add({ $type: Point_$type, x: this.width / 2, y: this.height / 2 });
68
+ c._points.add({ $type: Point_$type, x: this.width / -2, y: this.height / 2 });
69
+ b._segments.add(c);
70
+ a.c.add(b);
71
+ this.barBox.an = a;
72
+ }
73
+ get width() {
74
+ return this.b;
75
+ }
76
+ set width(a) {
77
+ let b = this.b;
78
+ this.b = a;
79
+ if (b != this.b) {
80
+ this.d();
81
+ }
82
+ }
83
+ d() {
84
+ if (this.width > 0 && this.height > 0) {
85
+ this.c();
86
+ }
87
+ }
88
+ get height() {
89
+ return this.a;
90
+ }
91
+ set height(a) {
92
+ let b = this.a;
93
+ this.a = a;
94
+ if (this.a != b) {
95
+ this.d();
96
+ }
97
+ }
98
+ get barBox() {
99
+ return this._barBox;
100
+ }
101
+ set barBox(a) {
102
+ this._barBox = a;
103
+ }
104
+ get allPaths() {
105
+ return this._allPaths;
106
+ }
107
+ set allPaths(a) {
108
+ this._allPaths = a;
109
+ }
110
+ }
111
+ DefaultMultiSliderTrackBarVisual.$t = markType(DefaultMultiSliderTrackBarVisual, 'DefaultMultiSliderTrackBarVisual', Base.$, [IMultiSliderTrackBarVisual_$type]);
112
+ return DefaultMultiSliderTrackBarVisual;
113
+ })();