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
@@ -1843,70 +1843,70 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
1843
1843
  XCalendar.prototype.c3 = function () {
1844
1844
  for (var a = 0; a < this.aj.count; a++) {
1845
1845
  if (this.dq != null) {
1846
- this.aj._inner[a].p4 = this.dq;
1846
+ this.aj._inner[a].p6 = this.dq;
1847
1847
  }
1848
1848
  if (this.dk != null) {
1849
- this.aj._inner[a].p0 = this.dk;
1849
+ this.aj._inner[a].p2 = this.dk;
1850
1850
  }
1851
1851
  if (this.dg != null) {
1852
- this.aj._inner[a].pu = this.dg;
1852
+ this.aj._inner[a].pw = this.dg;
1853
1853
  }
1854
1854
  if (this.dj != null) {
1855
- this.aj._inner[a].pz = this.dj;
1855
+ this.aj._inner[a].p1 = this.dj;
1856
1856
  }
1857
1857
  if (this.dl != null) {
1858
- this.aj._inner[a].p1 = this.dl;
1858
+ this.aj._inner[a].p3 = this.dl;
1859
1859
  }
1860
1860
  }
1861
1861
  for (var b = 0; b < this.ah.count; b++) {
1862
1862
  if (this.dq != null) {
1863
- this.ah._inner[b].p4 = this.dq;
1863
+ this.ah._inner[b].p6 = this.dq;
1864
1864
  }
1865
1865
  if (this.dk != null) {
1866
- this.ah._inner[b].p0 = this.dk;
1866
+ this.ah._inner[b].p2 = this.dk;
1867
1867
  }
1868
1868
  if (this.dg != null) {
1869
- this.ah._inner[b].pu = this.dg;
1869
+ this.ah._inner[b].pw = this.dg;
1870
1870
  }
1871
1871
  if (this.dj != null) {
1872
- this.ah._inner[b].pz = this.dj;
1872
+ this.ah._inner[b].p1 = this.dj;
1873
1873
  }
1874
1874
  if (this.dl != null) {
1875
- this.ah._inner[b].p1 = this.dl;
1875
+ this.ah._inner[b].p3 = this.dl;
1876
1876
  }
1877
1877
  }
1878
1878
  for (var c = 0; c < this.ak.count; c++) {
1879
1879
  if (this.dq != null) {
1880
- this.ak._inner[c].p4 = this.dq;
1880
+ this.ak._inner[c].p6 = this.dq;
1881
1881
  }
1882
1882
  if (this.dk != null) {
1883
- this.ak._inner[c].p0 = this.dk;
1883
+ this.ak._inner[c].p2 = this.dk;
1884
1884
  }
1885
1885
  if (this.dg != null) {
1886
- this.ak._inner[c].pu = this.dg;
1886
+ this.ak._inner[c].pw = this.dg;
1887
1887
  }
1888
1888
  if (this.dj != null) {
1889
- this.ak._inner[c].pz = this.dj;
1889
+ this.ak._inner[c].p1 = this.dj;
1890
1890
  }
1891
1891
  if (this.dl != null) {
1892
- this.ak._inner[c].p1 = this.dl;
1892
+ this.ak._inner[c].p3 = this.dl;
1893
1893
  }
1894
1894
  }
1895
1895
  for (var d = 0; d < this.al.count; d++) {
1896
1896
  if (this.dq != null) {
1897
- this.al._inner[d].p4 = this.dq;
1897
+ this.al._inner[d].p6 = this.dq;
1898
1898
  }
1899
1899
  if (this.dk != null) {
1900
- this.al._inner[d].p0 = this.dk;
1900
+ this.al._inner[d].p2 = this.dk;
1901
1901
  }
1902
1902
  if (this.dg != null) {
1903
- this.al._inner[d].pu = this.dg;
1903
+ this.al._inner[d].pw = this.dg;
1904
1904
  }
1905
1905
  if (this.dj != null) {
1906
- this.al._inner[d].pz = this.dj;
1906
+ this.al._inner[d].p1 = this.dj;
1907
1907
  }
1908
1908
  if (this.dl != null) {
1909
- this.al._inner[d].p1 = this.dl;
1909
+ this.al._inner[d].p3 = this.dl;
1910
1910
  }
1911
1911
  }
1912
1912
  };
@@ -1974,15 +1974,15 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
1974
1974
  d.aa = this.u;
1975
1975
  }
1976
1976
  var e = new CornerRadius(0, 2);
1977
- d.kt = e;
1978
- d.k0 = e;
1977
+ d.ku = e;
1978
+ d.k1 = e;
1979
1979
  d.dk = 0;
1980
1980
  d.appendButtonContent(b);
1981
- d.p4 = this.dq;
1982
- d.p0 = this.dk;
1983
- d.pu = this.dg;
1984
- d.pz = this.dj;
1985
- d.p1 = this.dl;
1981
+ d.p6 = this.dq;
1982
+ d.p2 = this.dk;
1983
+ d.pw = this.dg;
1984
+ d.p1 = this.dj;
1985
+ d.p3 = this.dl;
1986
1986
  d.bu = 30;
1987
1987
  d.bt = 30;
1988
1988
  this.ah.add(d);
@@ -2000,17 +2000,17 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
2000
2000
  c.aa = this.u;
2001
2001
  }
2002
2002
  var d = new CornerRadius(0, 2);
2003
- c.kt = d;
2004
- c.k0 = d;
2003
+ c.ku = d;
2004
+ c.k1 = d;
2005
2005
  c.dk = 0;
2006
2006
  c.appendButtonContent(b);
2007
2007
  var e = !stringIsNullOrWhiteSpace(this.x.b1("Today")) ? this.x.b1("Today") : "Today";
2008
2008
  this.h.az(e);
2009
- c.p4 = this.dq;
2010
- c.p0 = this.dk;
2011
- c.pu = this.dg;
2012
- c.pz = this.dj;
2013
- c.p1 = this.dl;
2009
+ c.p6 = this.dq;
2010
+ c.p2 = this.dk;
2011
+ c.pw = this.dg;
2012
+ c.p1 = this.dj;
2013
+ c.p3 = this.dl;
2014
2014
  this.g = c;
2015
2015
  var f = this.g;
2016
2016
  f.clicked = delegateCombine(f.clicked, runOn(this, this.c2));
@@ -2032,15 +2032,15 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
2032
2032
  c.aa = this.u;
2033
2033
  }
2034
2034
  var d = new CornerRadius(0, 2);
2035
- c.kt = d;
2036
- c.k0 = d;
2035
+ c.ku = d;
2036
+ c.k1 = d;
2037
2037
  c.dk = 0;
2038
2038
  c.appendButtonContent(b);
2039
- c.p4 = this.dq;
2040
- c.p0 = this.dk;
2041
- c.pu = this.dg;
2042
- c.pz = this.dj;
2043
- c.p1 = this.dl;
2039
+ c.p6 = this.dq;
2040
+ c.p2 = this.dk;
2041
+ c.pw = this.dg;
2042
+ c.p1 = this.dj;
2043
+ c.p3 = this.dl;
2044
2044
  c.bu = 40;
2045
2045
  this.ak.add(c);
2046
2046
  };
@@ -2113,15 +2113,15 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
2113
2113
  d.aa = this.u;
2114
2114
  }
2115
2115
  var e = new CornerRadius(0, 2);
2116
- d.kt = e;
2117
- d.k0 = e;
2116
+ d.ku = e;
2117
+ d.k1 = e;
2118
2118
  d.dk = 0;
2119
2119
  d.appendButtonContent(b);
2120
- d.p4 = this.dq;
2121
- d.p0 = this.dk;
2122
- d.pu = this.dg;
2123
- d.pz = this.dj;
2124
- d.p1 = this.dl;
2120
+ d.p6 = this.dq;
2121
+ d.p2 = this.dk;
2122
+ d.pw = this.dg;
2123
+ d.p1 = this.dj;
2124
+ d.p3 = this.dl;
2125
2125
  d.h2 = "btnYear" + c.toString();
2126
2126
  this.al.add(d);
2127
2127
  };
@@ -2325,8 +2325,8 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
2325
2325
  e.d3 = -1;
2326
2326
  e.e = 1;
2327
2327
  var f = new CornerRadius(0, 2);
2328
- e.kt = f;
2329
- e.k0 = f;
2328
+ e.ku = f;
2329
+ e.k1 = f;
2330
2330
  e.dk = 0;
2331
2331
  var g = new XIcon();
2332
2332
  this.h.aw(b, g);
@@ -2339,11 +2339,11 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
2339
2339
  e.h2 = "btnNext";
2340
2340
  }
2341
2341
  e.appendButtonContent(c);
2342
- e.p4 = this.dq;
2343
- e.p0 = this.dk;
2344
- e.pu = this.dg;
2345
- e.pz = this.dj;
2346
- e.p1 = this.dl;
2342
+ e.p6 = this.dq;
2343
+ e.p2 = this.dk;
2344
+ e.pw = this.dg;
2345
+ e.p1 = this.dj;
2346
+ e.p3 = this.dl;
2347
2347
  e.bu = 28;
2348
2348
  e.bt = 28;
2349
2349
  this.aj.add(e);
@@ -2360,15 +2360,15 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
2360
2360
  d.aa = this.u;
2361
2361
  }
2362
2362
  var e = new CornerRadius(0, 2);
2363
- d.kt = e;
2364
- d.k0 = e;
2363
+ d.ku = e;
2364
+ d.k1 = e;
2365
2365
  d.dk = 0;
2366
2366
  d.appendButtonContent(b);
2367
- d.p4 = this.dq;
2368
- d.p0 = this.dk;
2369
- d.pu = this.dg;
2370
- d.pz = this.dj;
2371
- d.p1 = this.dl;
2367
+ d.p6 = this.dq;
2368
+ d.p2 = this.dk;
2369
+ d.pw = this.dg;
2370
+ d.p1 = this.dj;
2371
+ d.p3 = this.dl;
2372
2372
  d.bu = 40;
2373
2373
  if (c == "month") {
2374
2374
  d.h2 = "btnMonth";
@@ -2536,34 +2536,34 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
2536
2536
  var b = this.ai._inner[a];
2537
2537
  var c = this.ah._inner[a];
2538
2538
  if (+(this.value) != +(dateMinValue()) && b.b == this.value.getDate() && b.c == dateGetMonth(this.value) && b.d == this.value.getFullYear()) {
2539
- c.p4 = this.dn;
2540
- c.p0 = this.dn;
2541
- c.pu = this.dm;
2542
- c.pz = this.dp;
2543
- c.pv = this.dg;
2539
+ c.p6 = this.dn;
2540
+ c.p2 = this.dn;
2541
+ c.pw = this.dm;
2542
+ c.p1 = this.dp;
2543
+ c.px = this.dg;
2544
2544
  }
2545
2545
  else if (b.b == this.av.getDate() && b.c == dateGetMonth(this.av) && b.d == this.av.getFullYear()) {
2546
- c.p4 = this.di;
2546
+ c.p6 = this.di;
2547
2547
  ;
2548
- c.p0 = this.dk;
2549
- c.pu = this.dg;
2550
- c.pz = this.dj;
2551
- c.pv = this.dh;
2548
+ c.p2 = this.dk;
2549
+ c.pw = this.dg;
2550
+ c.p1 = this.dj;
2551
+ c.px = this.dh;
2552
2552
  c.br = 1;
2553
2553
  }
2554
2554
  else if (b.a != 0 && b.a != 6 && b.c == dateGetMonth(this.aq)) {
2555
- c.p4 = this.dq;
2556
- c.p0 = this.dk;
2557
- c.pu = this.dg;
2558
- c.pz = this.dj;
2559
- c.pv = this.dg;
2555
+ c.p6 = this.dq;
2556
+ c.p2 = this.dk;
2557
+ c.pw = this.dg;
2558
+ c.p1 = this.dj;
2559
+ c.px = this.dg;
2560
2560
  }
2561
2561
  else {
2562
- c.p4 = this.dq;
2563
- c.p0 = this.dk;
2564
- c.pu = this.dg;
2565
- c.pz = this.dj;
2566
- c.pv = this.dg;
2562
+ c.p6 = this.dq;
2563
+ c.p2 = this.dk;
2564
+ c.pw = this.dg;
2565
+ c.p1 = this.dj;
2566
+ c.px = this.dg;
2567
2567
  }
2568
2568
  if (b.d >= this.au.getFullYear() && b.d <= this.at.getFullYear()) {
2569
2569
  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,20 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { EventArgs, markType } from "igniteui-angular-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ColorEditorGotFocusEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ __extends(ColorEditorGotFocusEventArgs, _super);
14
+ function ColorEditorGotFocusEventArgs() {
15
+ return _super !== null && _super.apply(this, arguments) || this;
16
+ }
17
+ ColorEditorGotFocusEventArgs.$t = markType(ColorEditorGotFocusEventArgs, 'ColorEditorGotFocusEventArgs', EventArgs.$);
18
+ return ColorEditorGotFocusEventArgs;
19
+ }(EventArgs));
20
+ export { ColorEditorGotFocusEventArgs };
@@ -0,0 +1,20 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { EventArgs, markType } from "igniteui-angular-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ColorEditorLostFocusEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ __extends(ColorEditorLostFocusEventArgs, _super);
14
+ function ColorEditorLostFocusEventArgs() {
15
+ return _super !== null && _super.apply(this, arguments) || this;
16
+ }
17
+ ColorEditorLostFocusEventArgs.$t = markType(ColorEditorLostFocusEventArgs, 'ColorEditorLostFocusEventArgs', EventArgs.$);
18
+ return ColorEditorLostFocusEventArgs;
19
+ }(EventArgs));
20
+ export { ColorEditorLostFocusEventArgs };
@@ -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,20 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, markType } from "igniteui-angular-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ColorEditorPanelClosedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ __extends(ColorEditorPanelClosedEventArgs, _super);
14
+ function ColorEditorPanelClosedEventArgs() {
15
+ return _super !== null && _super.apply(this, arguments) || this;
16
+ }
17
+ ColorEditorPanelClosedEventArgs.$t = markType(ColorEditorPanelClosedEventArgs, 'ColorEditorPanelClosedEventArgs');
18
+ return ColorEditorPanelClosedEventArgs;
19
+ }(Base));
20
+ export { ColorEditorPanelClosedEventArgs };
@@ -0,0 +1,43 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { EventArgs, markType } from "igniteui-angular-core";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ColorEditorPanelSelectedValueChangedEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ __extends(ColorEditorPanelSelectedValueChangedEventArgs, _super);
14
+ function ColorEditorPanelSelectedValueChangedEventArgs() {
15
+ var _this = _super !== null && _super.apply(this, arguments) || this;
16
+ _this._oldValue = null;
17
+ _this._newValue = null;
18
+ return _this;
19
+ }
20
+ Object.defineProperty(ColorEditorPanelSelectedValueChangedEventArgs.prototype, "oldValue", {
21
+ get: function () {
22
+ return this._oldValue;
23
+ },
24
+ set: function (a) {
25
+ this._oldValue = a;
26
+ },
27
+ enumerable: false,
28
+ configurable: true
29
+ });
30
+ Object.defineProperty(ColorEditorPanelSelectedValueChangedEventArgs.prototype, "newValue", {
31
+ get: function () {
32
+ return this._newValue;
33
+ },
34
+ set: function (a) {
35
+ this._newValue = a;
36
+ },
37
+ enumerable: false,
38
+ configurable: true
39
+ });
40
+ ColorEditorPanelSelectedValueChangedEventArgs.$t = markType(ColorEditorPanelSelectedValueChangedEventArgs, 'ColorEditorPanelSelectedValueChangedEventArgs', EventArgs.$);
41
+ return ColorEditorPanelSelectedValueChangedEventArgs;
42
+ }(EventArgs));
43
+ export { ColorEditorPanelSelectedValueChangedEventArgs };
@@ -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";
@@ -999,12 +999,12 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
999
999
  break;
1000
1000
  case "IsFixed":
1001
1001
  if (this.u != null) {
1002
- this.u.aq = this.aw;
1002
+ this.u.ar = this.aw;
1003
1003
  }
1004
1004
  break;
1005
1005
  case "UseTopLayer":
1006
1006
  if (this.u != null) {
1007
- this.u.ax = this.a3;
1007
+ this.u.ay = this.a3;
1008
1008
  }
1009
1009
  break;
1010
1010
  }
@@ -1110,7 +1110,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1110
1110
  this.n.fill = this.dw;
1111
1111
  }
1112
1112
  if (this.r != null) {
1113
- this.r.df = this.dx;
1113
+ this.r.di = this.dx;
1114
1114
  this.r.y = this.ac;
1115
1115
  }
1116
1116
  };
@@ -1131,7 +1131,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1131
1131
  this.q.t = this.y;
1132
1132
  this.r = new XLabel();
1133
1133
  this.h.as(this.r);
1134
- this.r.df = this.dx;
1134
+ this.r.di = this.dx;
1135
1135
  this.r.y = this.ac;
1136
1136
  this.q.appendContentChild(this.h.v());
1137
1137
  if (this.b4 != null && this.b4 != "") {
@@ -1576,10 +1576,10 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1576
1576
  };
1577
1577
  XDatePicker.prototype.ct = function () {
1578
1578
  this.u = new Popup();
1579
- this.u.aq = this.aw;
1580
- this.u.ax = this.a3;
1581
- this.u.cy = BrushUtil.h(255, 255, 255, 255);
1582
- this.u.a8 = 150;
1579
+ this.u.ar = this.aw;
1580
+ this.u.ay = this.a3;
1581
+ this.u.c0 = BrushUtil.h(255, 255, 255, 255);
1582
+ this.u.a9 = 150;
1583
1583
  this.h.at(this.u);
1584
1584
  this.c = new XCalendar();
1585
1585
  this.h.ao(this.c);
@@ -1608,14 +1608,14 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1608
1608
  this.ai = false;
1609
1609
  };
1610
1610
  XDatePicker.prototype.cn = function (a) {
1611
- if (this.u.aw) {
1611
+ if (this.u.ax) {
1612
1612
  this.ah = true;
1613
1613
  this.cr();
1614
1614
  }
1615
1615
  };
1616
1616
  XDatePicker.prototype.cy = function () {
1617
1617
  if (this.ah == false) {
1618
- if (this.u.aw) {
1618
+ if (this.u.ax) {
1619
1619
  this.cr();
1620
1620
  }
1621
1621
  else {
@@ -1656,7 +1656,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1656
1656
  };
1657
1657
  XDatePicker.prototype.dk = function (a, b) {
1658
1658
  if (this.ax) {
1659
- this.u.cp(this.h.d.rootWrapper.getNativeElement(), a, b);
1659
+ this.u.cr(this.h.d.rootWrapper.getNativeElement(), a, b);
1660
1660
  }
1661
1661
  else {
1662
1662
  var c = this.h.a0(true);
@@ -1664,7 +1664,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1664
1664
  }
1665
1665
  };
1666
1666
  XDatePicker.prototype.dn = function () {
1667
- if (this.u.aw) {
1667
+ if (this.u.ax) {
1668
1668
  var a = this.h.a0(false);
1669
1669
  var b = new Rect(0, a.left + window.pageXOffset, a.top + window.pageYOffset, a.width, a.height);
1670
1670
  var c = this.h.a()[1];
@@ -1678,20 +1678,20 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1678
1678
  if (f < 0) {
1679
1679
  if (this.u.r != 1) {
1680
1680
  this.u.r = 1;
1681
- this.u.b9(b);
1681
+ this.u.ca(b);
1682
1682
  }
1683
1683
  }
1684
1684
  else {
1685
1685
  if (this.u.r != 2) {
1686
1686
  this.u.r = 2;
1687
- this.u.b9(b);
1687
+ this.u.ca(b);
1688
1688
  }
1689
1689
  }
1690
1690
  }
1691
1691
  else {
1692
1692
  if (this.u.r != 1) {
1693
1693
  this.u.r = 1;
1694
- this.u.b9(b);
1694
+ this.u.ca(b);
1695
1695
  }
1696
1696
  }
1697
1697
  }
@@ -1699,7 +1699,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1699
1699
  XDatePicker.prototype.cr = function () {
1700
1700
  var _this = this;
1701
1701
  if (this.u != null) {
1702
- window.setTimeout(function () { return _this.u.b5(); }, 0);
1702
+ window.setTimeout(function () { return _this.u.b6(); }, 0);
1703
1703
  }
1704
1704
  if (this.c != null) {
1705
1705
  this.c.cy();
@@ -1716,7 +1716,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1716
1716
  if (this.o != null) {
1717
1717
  this.o.focus(a);
1718
1718
  }
1719
- if (!this.u.aw && this.ay == true) {
1719
+ if (!this.u.ax && this.ay == true) {
1720
1720
  if (this.ah == false) {
1721
1721
  if (this.al) {
1722
1722
  return;
@@ -1773,7 +1773,7 @@ var XDatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1773
1773
  var a = new DatePickerVisualModelExport();
1774
1774
  a.e = this.y;
1775
1775
  a.d = this.w;
1776
- a.c = this.u.bc();
1776
+ a.c = this.u.bd();
1777
1777
  a.b = this.q.fe();
1778
1778
  a.a = this.c.bj();
1779
1779
  if (this.ad != null) {