igniteui-webcomponents-inputs 4.2.5 → 4.3.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (146) hide show
  1. package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
  2. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +98 -98
  4. package/esm2015/lib/ButtonView_combined.js +2206 -1799
  5. package/esm2015/lib/CalendarView_combined.js +156 -156
  6. package/esm2015/lib/CheckboxView_combined.js +532 -458
  7. package/esm2015/lib/DatePickerView_combined.js +398 -364
  8. package/esm2015/lib/IconView_combined.js +553 -355
  9. package/esm2015/lib/InputGroupView_combined.js +2432 -2152
  10. package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
  11. package/esm2015/lib/RippleView_combined.js +1 -1
  12. package/esm2015/lib/Theme.js +48 -0
  13. package/esm2015/lib/ThemeResolver.js +131 -7
  14. package/esm2015/lib/XButtonBridge.js +218 -22
  15. package/esm2015/lib/XCheckboxBridge.js +25 -16
  16. package/esm2015/lib/XComponentBridge.js +20 -6
  17. package/esm2015/lib/XIconBridge.js +93 -0
  18. package/esm2015/lib/XIconButtonBridge.js +45 -33
  19. package/esm2015/lib/XInputBridge.js +91 -38
  20. package/esm2015/lib/XPopupBridge.js +287 -0
  21. package/esm2015/lib/igc-date-picker-component.js +60 -58
  22. package/esm2015/lib/igc-x-button-component.js +694 -546
  23. package/esm2015/lib/igc-x-button-group-component.js +28 -28
  24. package/esm2015/lib/igc-x-calendar-component.js +16 -16
  25. package/esm2015/lib/igc-x-checkbox-component.js +77 -77
  26. package/esm2015/lib/igc-x-icon-component.js +239 -118
  27. package/esm2015/lib/igc-x-input-component.js +61 -43
  28. package/esm2015/lib/igc-x-input-group-component.js +576 -576
  29. package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
  30. package/esm2015/lib/igc-x-ripple-component.js +35 -35
  31. package/esm2015/public_api.js +3 -0
  32. package/esm5/lib/ButtonClickEventArgs.js +2 -2
  33. package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
  34. package/esm5/lib/ButtonGroupView_combined.js +176 -176
  35. package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
  36. package/esm5/lib/ButtonView_combined.js +2259 -1808
  37. package/esm5/lib/ButtonVisualModelExport.js +2 -2
  38. package/esm5/lib/CalendarView_combined.js +181 -181
  39. package/esm5/lib/CalendarVisualModelExport.js +2 -2
  40. package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
  41. package/esm5/lib/CheckboxView_combined.js +561 -483
  42. package/esm5/lib/CheckboxVisualModelExport.js +2 -2
  43. package/esm5/lib/DatePickerView_combined.js +421 -383
  44. package/esm5/lib/DatePickerVisualModelExport.js +2 -2
  45. package/esm5/lib/DateTimeValueFormatter.js +2 -2
  46. package/esm5/lib/DayInfo.js +2 -2
  47. package/esm5/lib/ElevationHelper.js +2 -2
  48. package/esm5/lib/GotFocusEventArgs.js +2 -2
  49. package/esm5/lib/IconClickedEventArgs.js +2 -2
  50. package/esm5/lib/IconView_combined.js +600 -362
  51. package/esm5/lib/IconVisualModelExport.js +3 -3
  52. package/esm5/lib/InputChangeEventArgs.js +4 -4
  53. package/esm5/lib/InputGroupView_combined.js +2534 -2246
  54. package/esm5/lib/InputGroupVisualModelExport.js +2 -2
  55. package/esm5/lib/InputVisualModelExport.js +2 -2
  56. package/esm5/lib/LabelVisualModelExport.js +2 -2
  57. package/esm5/lib/LostFocusEventArgs.js +2 -2
  58. package/esm5/lib/MaskOptions.js +2 -2
  59. package/esm5/lib/MaskParsingService.js +5 -5
  60. package/esm5/lib/NativeUIXInputsFactory.js +69 -27
  61. package/esm5/lib/PrefixVisualModelExport.js +2 -2
  62. package/esm5/lib/Replaced.js +2 -2
  63. package/esm5/lib/RippleView_combined.js +17 -17
  64. package/esm5/lib/RippleVisualModelExport.js +2 -2
  65. package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
  66. package/esm5/lib/SuffixVisualModelExport.js +2 -2
  67. package/esm5/lib/TextElementsVisualModelExport.js +2 -2
  68. package/esm5/lib/Theme.js +58 -0
  69. package/esm5/lib/ThemeResolver.js +137 -11
  70. package/esm5/lib/XButtonBridge.js +220 -24
  71. package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
  72. package/esm5/lib/XCheckboxBridge.js +27 -18
  73. package/esm5/lib/XComponentBridge.js +26 -8
  74. package/esm5/lib/XIconBridge.js +95 -0
  75. package/esm5/lib/XIconButtonBridge.js +47 -35
  76. package/esm5/lib/XInputBridge.js +93 -40
  77. package/esm5/lib/XPopupBridge.js +289 -0
  78. package/esm5/lib/igc-button-click-event-args.js +1 -1
  79. package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
  80. package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
  81. package/esm5/lib/igc-date-picker-component.js +80 -78
  82. package/esm5/lib/igc-got-focus-event-args.js +1 -1
  83. package/esm5/lib/igc-input-change-event-args.js +3 -3
  84. package/esm5/lib/igc-lost-focus-event-args.js +1 -1
  85. package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
  86. package/esm5/lib/igc-x-button-component.js +908 -710
  87. package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
  88. package/esm5/lib/igc-x-button-group-component.js +73 -73
  89. package/esm5/lib/igc-x-calendar-component.js +30 -30
  90. package/esm5/lib/igc-x-checkbox-component.js +117 -117
  91. package/esm5/lib/igc-x-icon-component.js +297 -136
  92. package/esm5/lib/igc-x-input-component.js +104 -78
  93. package/esm5/lib/igc-x-input-group-component.js +716 -716
  94. package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
  95. package/esm5/lib/igc-x-input-group-item-component.js +6 -6
  96. package/esm5/lib/igc-x-label-component.js +30 -30
  97. package/esm5/lib/igc-x-prefix-component.js +9 -9
  98. package/esm5/lib/igc-x-ripple-component.js +19 -19
  99. package/esm5/lib/igc-x-suffix-component.js +9 -9
  100. package/esm5/public_api.js +3 -0
  101. package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
  102. package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
  103. package/lib/ButtonGroupView_combined.d.ts +136 -70
  104. package/lib/ButtonView_combined.d.ts +609 -583
  105. package/lib/CalendarView_combined.d.ts +43 -22
  106. package/lib/CheckboxChangeEventArgs.d.ts +4 -2
  107. package/lib/CheckboxView_combined.d.ts +150 -117
  108. package/lib/DatePickerView_combined.d.ts +109 -81
  109. package/lib/IconView_combined.d.ts +164 -93
  110. package/lib/IconVisualModelExport.d.ts +2 -1
  111. package/lib/InputChangeEventArgs.d.ts +4 -2
  112. package/lib/InputGroupView_combined.d.ts +771 -771
  113. package/lib/NativeUIXInputsFactory.d.ts +6 -4
  114. package/lib/RippleView_combined.d.ts +19 -10
  115. package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
  116. package/lib/Theme.d.ts +15 -0
  117. package/lib/ThemeResolver.d.ts +44 -6
  118. package/lib/XButtonBridge.d.ts +23 -5
  119. package/lib/XCheckboxBridge.d.ts +3 -3
  120. package/lib/XComponentBridge.d.ts +2 -1
  121. package/lib/XIconBridge.d.ts +14 -0
  122. package/lib/XIconButtonBridge.d.ts +4 -4
  123. package/lib/XInputBridge.d.ts +11 -7
  124. package/lib/XPopupBridge.d.ts +52 -0
  125. package/lib/igc-button-click-event-args.d.ts +1 -1
  126. package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
  127. package/lib/igc-checkbox-change-event-args.d.ts +5 -3
  128. package/lib/igc-date-picker-component.d.ts +65 -34
  129. package/lib/igc-got-focus-event-args.d.ts +1 -1
  130. package/lib/igc-input-change-event-args.d.ts +5 -3
  131. package/lib/igc-lost-focus-event-args.d.ts +1 -1
  132. package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
  133. package/lib/igc-x-button-component.d.ts +399 -173
  134. package/lib/igc-x-button-group-component.d.ts +136 -70
  135. package/lib/igc-x-calendar-component.d.ts +53 -28
  136. package/lib/igc-x-checkbox-component.d.ts +71 -37
  137. package/lib/igc-x-icon-component.d.ts +140 -44
  138. package/lib/igc-x-input-component.d.ts +69 -32
  139. package/lib/igc-x-input-group-component.d.ts +325 -165
  140. package/lib/igc-x-input-group-item-component.d.ts +5 -4
  141. package/lib/igc-x-label-component.d.ts +52 -27
  142. package/lib/igc-x-prefix-component.d.ts +10 -6
  143. package/lib/igc-x-ripple-component.d.ts +31 -17
  144. package/lib/igc-x-suffix-component.d.ts +10 -6
  145. package/package.json +2 -2
  146. package/public_api.d.ts +3 -0
@@ -1719,92 +1719,92 @@ 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].s6 = this.dq;
1722
+ this.aj._inner[a].p4 = this.dq;
1723
1723
  }
1724
1724
  if (this.dk != null) {
1725
- this.aj._inner[a].s2 = this.dk;
1725
+ this.aj._inner[a].p0 = this.dk;
1726
1726
  }
1727
1727
  if (this.dg != null) {
1728
- this.aj._inner[a].sw = this.dg;
1728
+ this.aj._inner[a].pu = this.dg;
1729
1729
  }
1730
1730
  if (this.dj != null) {
1731
- this.aj._inner[a].s1 = this.dj;
1731
+ this.aj._inner[a].pz = this.dj;
1732
1732
  }
1733
1733
  if (this.dl != null) {
1734
- this.aj._inner[a].s3 = this.dl;
1734
+ this.aj._inner[a].p1 = 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].s6 = this.dq;
1739
+ this.ah._inner[b].p4 = this.dq;
1740
1740
  }
1741
1741
  if (this.dk != null) {
1742
- this.ah._inner[b].s2 = this.dk;
1742
+ this.ah._inner[b].p0 = this.dk;
1743
1743
  }
1744
1744
  if (this.dg != null) {
1745
- this.ah._inner[b].sw = this.dg;
1745
+ this.ah._inner[b].pu = this.dg;
1746
1746
  }
1747
1747
  if (this.dj != null) {
1748
- this.ah._inner[b].s1 = this.dj;
1748
+ this.ah._inner[b].pz = this.dj;
1749
1749
  }
1750
1750
  if (this.dl != null) {
1751
- this.ah._inner[b].s3 = this.dl;
1751
+ this.ah._inner[b].p1 = 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].s6 = this.dq;
1756
+ this.ak._inner[c].p4 = this.dq;
1757
1757
  }
1758
1758
  if (this.dk != null) {
1759
- this.ak._inner[c].s2 = this.dk;
1759
+ this.ak._inner[c].p0 = this.dk;
1760
1760
  }
1761
1761
  if (this.dg != null) {
1762
- this.ak._inner[c].sw = this.dg;
1762
+ this.ak._inner[c].pu = this.dg;
1763
1763
  }
1764
1764
  if (this.dj != null) {
1765
- this.ak._inner[c].s1 = this.dj;
1765
+ this.ak._inner[c].pz = this.dj;
1766
1766
  }
1767
1767
  if (this.dl != null) {
1768
- this.ak._inner[c].s3 = this.dl;
1768
+ this.ak._inner[c].p1 = 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].s6 = this.dq;
1773
+ this.al._inner[d].p4 = this.dq;
1774
1774
  }
1775
1775
  if (this.dk != null) {
1776
- this.al._inner[d].s2 = this.dk;
1776
+ this.al._inner[d].p0 = this.dk;
1777
1777
  }
1778
1778
  if (this.dg != null) {
1779
- this.al._inner[d].sw = this.dg;
1779
+ this.al._inner[d].pu = this.dg;
1780
1780
  }
1781
1781
  if (this.dj != null) {
1782
- this.al._inner[d].s1 = this.dj;
1782
+ this.al._inner[d].pz = this.dj;
1783
1783
  }
1784
1784
  if (this.dl != null) {
1785
- this.al._inner[d].s3 = this.dl;
1785
+ this.al._inner[d].p1 = this.dl;
1786
1786
  }
1787
1787
  }
1788
1788
  }
1789
1789
  c4() {
1790
1790
  for (let a = 0; a < this.aj.count; a++) {
1791
1791
  if (this.u != null) {
1792
- this.aj._inner[a].v = this.u;
1792
+ this.aj._inner[a].aa = this.u;
1793
1793
  }
1794
1794
  }
1795
1795
  for (let b = 0; b < this.ah.count; b++) {
1796
1796
  if (this.u != null) {
1797
- this.ah._inner[b].v = this.u;
1797
+ this.ah._inner[b].aa = this.u;
1798
1798
  }
1799
1799
  }
1800
1800
  for (let c = 0; c < this.ak.count; c++) {
1801
1801
  if (this.u != null) {
1802
- this.ak._inner[c].v = this.u;
1802
+ this.ak._inner[c].aa = this.u;
1803
1803
  }
1804
1804
  }
1805
1805
  for (let d = 0; d < this.al.count; d++) {
1806
1806
  if (this.u != null) {
1807
- this.al._inner[d].v = this.u;
1807
+ this.al._inner[d].aa = this.u;
1808
1808
  }
1809
1809
  }
1810
1810
  }
@@ -1841,52 +1841,52 @@ export let XCalendar = /*@__PURE__*/ (() => {
1841
1841
  ci(a, b, c) {
1842
1842
  let d = new XButton();
1843
1843
  this.h.as(a, d);
1844
- d.i = this.r;
1845
- d.m = this.t;
1846
- d.v = this.u;
1847
- d.eu = -1;
1844
+ d.n = this.r;
1845
+ d.r = this.t;
1846
+ d.aa = this.u;
1847
+ d.d3 = -1;
1848
1848
  d.e = 1;
1849
1849
  if (this.u != null) {
1850
- d.v = this.u;
1850
+ d.aa = this.u;
1851
1851
  }
1852
1852
  let e = new CornerRadius(0, 2);
1853
- d.kf = e;
1854
- d.kw = e;
1855
- d.ec = 0;
1853
+ d.kt = e;
1854
+ d.k0 = e;
1855
+ d.dk = 0;
1856
1856
  d.appendButtonContent(b);
1857
- d.s6 = this.dq;
1858
- d.s2 = this.dk;
1859
- d.sw = this.dg;
1860
- d.s1 = this.dj;
1861
- d.s3 = this.dl;
1862
- d.bh = 30;
1863
- d.bg = 30;
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;
1862
+ d.bu = 30;
1863
+ d.bt = 30;
1864
1864
  this.ah.add(d);
1865
- d.ih = "btnDays" + c.toString();
1865
+ d.h2 = "btnDays" + c.toString();
1866
1866
  }
1867
1867
  cm(a, b) {
1868
1868
  let c = new XButton();
1869
1869
  this.h.as(a, c);
1870
- c.i = this.r;
1871
- c.m = this.t;
1872
- c.v = this.u;
1873
- c.eu = -1;
1870
+ c.n = this.r;
1871
+ c.r = this.t;
1872
+ c.aa = this.u;
1873
+ c.d3 = -1;
1874
1874
  c.e = 1;
1875
1875
  if (this.u != null) {
1876
- c.v = this.u;
1876
+ c.aa = this.u;
1877
1877
  }
1878
1878
  let d = new CornerRadius(0, 2);
1879
- c.kf = d;
1880
- c.kw = d;
1881
- c.ec = 0;
1879
+ c.kt = d;
1880
+ c.k0 = d;
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.s6 = this.dq;
1886
- c.s2 = this.dk;
1887
- c.sw = this.dg;
1888
- c.s1 = this.dj;
1889
- c.s3 = this.dl;
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;
1890
1890
  this.g = c;
1891
1891
  let f = this.g;
1892
1892
  f.clicked = delegateCombine(f.clicked, runOn(this, this.c2));
@@ -1899,25 +1899,25 @@ export let XCalendar = /*@__PURE__*/ (() => {
1899
1899
  cl(a, b) {
1900
1900
  let c = new XButton();
1901
1901
  this.h.as(a, c);
1902
- c.i = this.r;
1903
- c.m = this.t;
1904
- c.v = this.u;
1905
- c.eu = -1;
1902
+ c.n = this.r;
1903
+ c.r = this.t;
1904
+ c.aa = this.u;
1905
+ c.d3 = -1;
1906
1906
  c.e = 1;
1907
1907
  if (this.u != null) {
1908
- c.v = this.u;
1908
+ c.aa = this.u;
1909
1909
  }
1910
1910
  let d = new CornerRadius(0, 2);
1911
- c.kf = d;
1912
- c.kw = d;
1913
- c.ec = 0;
1911
+ c.kt = d;
1912
+ c.k0 = d;
1913
+ c.dk = 0;
1914
1914
  c.appendButtonContent(b);
1915
- c.s6 = this.dq;
1916
- c.s2 = this.dk;
1917
- c.sw = this.dg;
1918
- c.s1 = this.dj;
1919
- c.s3 = this.dl;
1920
- c.bh = 40;
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;
1920
+ c.bu = 40;
1921
1921
  this.ak.add(c);
1922
1922
  }
1923
1923
  e(a, b) {
@@ -1974,31 +1974,31 @@ export let XCalendar = /*@__PURE__*/ (() => {
1974
1974
  c[1] = !stringIsNullOrWhiteSpace(this.x.b1("December_Short")) ? this.x.b1("December_Short") : "Dec";
1975
1975
  break;
1976
1976
  }
1977
- this.ak._inner[b].ih = "btnMonth" + c[1];
1977
+ this.ak._inner[b].h2 = "btnMonth" + c[1];
1978
1978
  return c;
1979
1979
  }
1980
1980
  cn(a, b, c) {
1981
1981
  let d = new XButton();
1982
1982
  this.h.as(a, d);
1983
- d.i = this.r;
1984
- d.m = this.t;
1985
- d.v = this.u;
1986
- d.eu = -1;
1983
+ d.n = this.r;
1984
+ d.r = this.t;
1985
+ d.aa = this.u;
1986
+ d.d3 = -1;
1987
1987
  d.e = 1;
1988
1988
  if (this.u != null) {
1989
- d.v = this.u;
1989
+ d.aa = this.u;
1990
1990
  }
1991
1991
  let e = new CornerRadius(0, 2);
1992
- d.kf = e;
1993
- d.kw = e;
1994
- d.ec = 0;
1992
+ d.kt = e;
1993
+ d.k0 = e;
1994
+ d.dk = 0;
1995
1995
  d.appendButtonContent(b);
1996
- d.s6 = this.dq;
1997
- d.s2 = this.dk;
1998
- d.sw = this.dg;
1999
- d.s1 = this.dj;
2000
- d.s3 = this.dl;
2001
- d.ih = "btnYear" + c.toString();
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;
2001
+ d.h2 = "btnYear" + c.toString();
2002
2002
  this.al.add(d);
2003
2003
  }
2004
2004
  cg() {
@@ -2195,62 +2195,62 @@ export let XCalendar = /*@__PURE__*/ (() => {
2195
2195
  ck(a, b, c, d) {
2196
2196
  let e = new XButton();
2197
2197
  this.h.as(a, e);
2198
- e.i = this.r;
2199
- e.m = this.t;
2200
- e.v = this.u;
2201
- e.eu = -1;
2198
+ e.n = this.r;
2199
+ e.r = this.t;
2200
+ e.aa = this.u;
2201
+ e.d3 = -1;
2202
2202
  e.e = 1;
2203
2203
  let f = new CornerRadius(0, 2);
2204
- e.kf = f;
2205
- e.kw = f;
2206
- e.ec = 0;
2204
+ e.kt = f;
2205
+ e.k0 = f;
2206
+ e.dk = 0;
2207
2207
  let g = new XIcon();
2208
2208
  this.h.aw(b, g);
2209
2209
  if (d == "prev") {
2210
2210
  g.svgPath = XCalendar.bk;
2211
- e.ih = "btnPrev";
2211
+ e.h2 = "btnPrev";
2212
2212
  }
2213
2213
  else if (d == "next") {
2214
2214
  g.svgPath = XCalendar.bl;
2215
- e.ih = "btnNext";
2215
+ e.h2 = "btnNext";
2216
2216
  }
2217
2217
  e.appendButtonContent(c);
2218
- e.s6 = this.dq;
2219
- e.s2 = this.dk;
2220
- e.sw = this.dg;
2221
- e.s1 = this.dj;
2222
- e.s3 = this.dl;
2223
- e.bh = 28;
2224
- e.bg = 28;
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;
2223
+ e.bu = 28;
2224
+ e.bt = 28;
2225
2225
  this.aj.add(e);
2226
2226
  }
2227
2227
  cj(a, b, c) {
2228
2228
  let d = new XButton();
2229
2229
  this.h.as(a, d);
2230
- d.i = this.r;
2231
- d.m = this.t;
2232
- d.v = this.u;
2233
- d.eu = -1;
2230
+ d.n = this.r;
2231
+ d.r = this.t;
2232
+ d.aa = this.u;
2233
+ d.d3 = -1;
2234
2234
  d.e = 1;
2235
2235
  if (this.u != null) {
2236
- d.v = this.u;
2236
+ d.aa = this.u;
2237
2237
  }
2238
2238
  let e = new CornerRadius(0, 2);
2239
- d.kf = e;
2240
- d.kw = e;
2241
- d.ec = 0;
2239
+ d.kt = e;
2240
+ d.k0 = e;
2241
+ d.dk = 0;
2242
2242
  d.appendButtonContent(b);
2243
- d.s6 = this.dq;
2244
- d.s2 = this.dk;
2245
- d.sw = this.dg;
2246
- d.s1 = this.dj;
2247
- d.s3 = this.dl;
2248
- d.bh = 40;
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;
2248
+ d.bu = 40;
2249
2249
  if (c == "month") {
2250
- d.ih = "btnMonth";
2250
+ d.h2 = "btnMonth";
2251
2251
  }
2252
2252
  else if (c == "year") {
2253
- d.ih = "btnYear";
2253
+ d.h2 = "btnYear";
2254
2254
  }
2255
2255
  this.aj.add(d);
2256
2256
  }
@@ -2410,34 +2410,34 @@ export let XCalendar = /*@__PURE__*/ (() => {
2410
2410
  let b = this.ai._inner[a];
2411
2411
  let c = this.ah._inner[a];
2412
2412
  if (+(this.value) != +(dateMinValue()) && b.b == this.value.getDate() && b.c == dateGetMonth(this.value) && b.d == this.value.getFullYear()) {
2413
- c.s6 = this.dn;
2414
- c.s2 = this.dn;
2415
- c.sw = this.dm;
2416
- c.s1 = this.dp;
2417
- c.sx = this.dg;
2413
+ c.p4 = this.dn;
2414
+ c.p0 = this.dn;
2415
+ c.pu = this.dm;
2416
+ c.pz = this.dp;
2417
+ c.pv = this.dg;
2418
2418
  }
2419
2419
  else if (b.b == this.av.getDate() && b.c == dateGetMonth(this.av) && b.d == this.av.getFullYear()) {
2420
- c.s6 = this.di;
2420
+ c.p4 = this.di;
2421
2421
  ;
2422
- c.s2 = this.dk;
2423
- c.sw = this.dg;
2424
- c.s1 = this.dj;
2425
- c.sx = this.dh;
2426
- c.be = 1;
2422
+ c.p0 = this.dk;
2423
+ c.pu = this.dg;
2424
+ c.pz = this.dj;
2425
+ c.pv = this.dh;
2426
+ c.br = 1;
2427
2427
  }
2428
2428
  else if (b.a != 0 && b.a != 6 && b.c == dateGetMonth(this.aq)) {
2429
- c.s6 = this.dq;
2430
- c.s2 = this.dk;
2431
- c.sw = this.dg;
2432
- c.s1 = this.dj;
2433
- c.sx = this.dg;
2429
+ c.p4 = this.dq;
2430
+ c.p0 = this.dk;
2431
+ c.pu = this.dg;
2432
+ c.pz = this.dj;
2433
+ c.pv = this.dg;
2434
2434
  }
2435
2435
  else {
2436
- c.s6 = this.dq;
2437
- c.s2 = this.dk;
2438
- c.sw = this.dg;
2439
- c.s1 = this.dj;
2440
- c.sx = this.dg;
2436
+ c.p4 = this.dq;
2437
+ c.p0 = this.dk;
2438
+ c.pu = this.dg;
2439
+ c.pz = this.dj;
2440
+ c.pv = this.dg;
2441
2441
  }
2442
2442
  if (b.d >= this.au.getFullYear() && b.d <= this.at.getFullYear()) {
2443
2443
  if (b.d == this.au.getFullYear() && b.d == this.at.getFullYear()) {
@@ -2677,26 +2677,26 @@ export let XCalendar = /*@__PURE__*/ (() => {
2677
2677
  let e = c[1];
2678
2678
  if (b == "day") {
2679
2679
  for (let f = 0; f < this.aj.count; f++) {
2680
- if (this.aj._inner[f].ih == null) {
2681
- this.aj._inner[f].ih = "header" + f.toString();
2680
+ if (this.aj._inner[f].h2 == null) {
2681
+ this.aj._inner[f].h2 = "header" + f.toString();
2682
2682
  }
2683
- let g = this.aj._inner[f].ey();
2683
+ let g = this.aj._inner[f].d7();
2684
2684
  g.s = g.s - d;
2685
2685
  g.q = g.q - e;
2686
2686
  a.j.add(g);
2687
2687
  }
2688
2688
  for (let h = 0; h < this.ah.count; h++) {
2689
- if (this.ah._inner[h].ih == null) {
2690
- this.ah._inner[h].ih = "days" + h.toString();
2689
+ if (this.ah._inner[h].h2 == null) {
2690
+ this.ah._inner[h].h2 = "days" + h.toString();
2691
2691
  }
2692
- let i = this.ah._inner[h].ey();
2692
+ let i = this.ah._inner[h].d7();
2693
2693
  i.s = i.s - d;
2694
2694
  i.q = i.q - e;
2695
2695
  a.j.add(i);
2696
2696
  }
2697
2697
  if (this.ae == true) {
2698
- this.g.ih = "todayButton";
2699
- let j = this.g.ey();
2698
+ this.g.h2 = "todayButton";
2699
+ let j = this.g.d7();
2700
2700
  j.s = j.s - d;
2701
2701
  j.q = j.q - e;
2702
2702
  a.j.add(j);
@@ -2707,9 +2707,9 @@ export let XCalendar = /*@__PURE__*/ (() => {
2707
2707
  let n = this.h.b(k._inner[l]);
2708
2708
  m.e = n[0] - d;
2709
2709
  m.d = n[1] - e;
2710
- m.c = NativeUI.c(k._inner[l].parent());
2711
- m.f = NativeUI.i(k._inner[l].parent());
2712
- m.b = AppearanceHelper.a(NativeUI.ah(k._inner[l]));
2710
+ m.c = NativeUI.d(k._inner[l].parent());
2711
+ m.f = NativeUI.j(k._inner[l].parent());
2712
+ m.b = AppearanceHelper.a(NativeUI.aj(k._inner[l]));
2713
2713
  m.g = k._inner[l].getText();
2714
2714
  a.k.add(m);
2715
2715
  }
@@ -2720,10 +2720,10 @@ export let XCalendar = /*@__PURE__*/ (() => {
2720
2720
  let r = this.h.b(o._inner[p]);
2721
2721
  q.e = r[0] - d;
2722
2722
  q.d = r[1] - e;
2723
- q.c = NativeUI.c(o._inner[p].parent());
2724
- q.f = NativeUI.i(o._inner[p].parent());
2725
- q.b = AppearanceHelper.a(NativeUI.ah(o._inner[p]));
2726
- q.a = AppearanceHelper.a(NativeUI.ag(o._inner[p]));
2723
+ q.c = NativeUI.d(o._inner[p].parent());
2724
+ q.f = NativeUI.j(o._inner[p].parent());
2725
+ q.b = AppearanceHelper.a(NativeUI.aj(o._inner[p]));
2726
+ q.a = AppearanceHelper.a(NativeUI.ai(o._inner[p]));
2727
2727
  q.g = o._inner[p].getText();
2728
2728
  a.l.add(q);
2729
2729
  }
@@ -2731,10 +2731,10 @@ export let XCalendar = /*@__PURE__*/ (() => {
2731
2731
  }
2732
2732
  else if (b == "month") {
2733
2733
  for (let s = 0; s < this.ak.count; s++) {
2734
- if (this.ak._inner[s].ih == null) {
2735
- this.ak._inner[s].ih = "months" + s.toString();
2734
+ if (this.ak._inner[s].h2 == null) {
2735
+ this.ak._inner[s].h2 = "months" + s.toString();
2736
2736
  }
2737
- let t = this.ak._inner[s].ey();
2737
+ let t = this.ak._inner[s].d7();
2738
2738
  t.s = t.s - d;
2739
2739
  t.q = t.q - e;
2740
2740
  a.j.add(t);
@@ -2742,10 +2742,10 @@ export let XCalendar = /*@__PURE__*/ (() => {
2742
2742
  }
2743
2743
  else if (b == "year") {
2744
2744
  for (let u = 0; u < this.al.count; u++) {
2745
- if (this.al._inner[u].ih == null) {
2746
- this.al._inner[u].ih = "years" + u.toString();
2745
+ if (this.al._inner[u].h2 == null) {
2746
+ this.al._inner[u].h2 = "years" + u.toString();
2747
2747
  }
2748
- let v = this.al._inner[u].ey();
2748
+ let v = this.al._inner[u].d7();
2749
2749
  v.s = v.s - d;
2750
2750
  v.q = v.q - e;
2751
2751
  a.j.add(v);