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.
- package/bundles/igniteui-webcomponents-inputs.umd.js +10205 -7880
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +98 -98
- package/esm2015/lib/ButtonView_combined.js +2206 -1799
- package/esm2015/lib/CalendarView_combined.js +156 -156
- package/esm2015/lib/CheckboxView_combined.js +532 -458
- package/esm2015/lib/DatePickerView_combined.js +398 -364
- package/esm2015/lib/IconView_combined.js +553 -355
- package/esm2015/lib/InputGroupView_combined.js +2432 -2152
- package/esm2015/lib/NativeUIXInputsFactory.js +65 -23
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/Theme.js +48 -0
- package/esm2015/lib/ThemeResolver.js +131 -7
- package/esm2015/lib/XButtonBridge.js +218 -22
- package/esm2015/lib/XCheckboxBridge.js +25 -16
- package/esm2015/lib/XComponentBridge.js +20 -6
- package/esm2015/lib/XIconBridge.js +93 -0
- package/esm2015/lib/XIconButtonBridge.js +45 -33
- package/esm2015/lib/XInputBridge.js +91 -38
- package/esm2015/lib/XPopupBridge.js +287 -0
- package/esm2015/lib/igc-date-picker-component.js +60 -58
- package/esm2015/lib/igc-x-button-component.js +694 -546
- package/esm2015/lib/igc-x-button-group-component.js +28 -28
- package/esm2015/lib/igc-x-calendar-component.js +16 -16
- package/esm2015/lib/igc-x-checkbox-component.js +77 -77
- package/esm2015/lib/igc-x-icon-component.js +239 -118
- package/esm2015/lib/igc-x-input-component.js +61 -43
- package/esm2015/lib/igc-x-input-group-component.js +576 -576
- package/esm2015/lib/igc-x-input-group-item-component.js +18 -18
- package/esm2015/lib/igc-x-ripple-component.js +35 -35
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/ButtonClickEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupSelectionChangedEventArgs.js +2 -2
- package/esm5/lib/ButtonGroupView_combined.js +176 -176
- package/esm5/lib/ButtonGroupVisualModelExport.js +2 -2
- package/esm5/lib/ButtonView_combined.js +2259 -1808
- package/esm5/lib/ButtonVisualModelExport.js +2 -2
- package/esm5/lib/CalendarView_combined.js +181 -181
- package/esm5/lib/CalendarVisualModelExport.js +2 -2
- package/esm5/lib/CheckboxChangeEventArgs.js +4 -4
- package/esm5/lib/CheckboxView_combined.js +561 -483
- package/esm5/lib/CheckboxVisualModelExport.js +2 -2
- package/esm5/lib/DatePickerView_combined.js +421 -383
- package/esm5/lib/DatePickerVisualModelExport.js +2 -2
- package/esm5/lib/DateTimeValueFormatter.js +2 -2
- package/esm5/lib/DayInfo.js +2 -2
- package/esm5/lib/ElevationHelper.js +2 -2
- package/esm5/lib/GotFocusEventArgs.js +2 -2
- package/esm5/lib/IconClickedEventArgs.js +2 -2
- package/esm5/lib/IconView_combined.js +600 -362
- package/esm5/lib/IconVisualModelExport.js +3 -3
- package/esm5/lib/InputChangeEventArgs.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +2534 -2246
- package/esm5/lib/InputGroupVisualModelExport.js +2 -2
- package/esm5/lib/InputVisualModelExport.js +2 -2
- package/esm5/lib/LabelVisualModelExport.js +2 -2
- package/esm5/lib/LostFocusEventArgs.js +2 -2
- package/esm5/lib/MaskOptions.js +2 -2
- package/esm5/lib/MaskParsingService.js +5 -5
- package/esm5/lib/NativeUIXInputsFactory.js +69 -27
- package/esm5/lib/PrefixVisualModelExport.js +2 -2
- package/esm5/lib/Replaced.js +2 -2
- package/esm5/lib/RippleView_combined.js +17 -17
- package/esm5/lib/RippleVisualModelExport.js +2 -2
- package/esm5/lib/SelectedValueChangedEventArgs.js +4 -4
- package/esm5/lib/SuffixVisualModelExport.js +2 -2
- package/esm5/lib/TextElementsVisualModelExport.js +2 -2
- package/esm5/lib/Theme.js +58 -0
- package/esm5/lib/ThemeResolver.js +137 -11
- package/esm5/lib/XButtonBridge.js +220 -24
- package/esm5/lib/XButtonGroupButtonCollection.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +27 -18
- package/esm5/lib/XComponentBridge.js +26 -8
- package/esm5/lib/XIconBridge.js +95 -0
- package/esm5/lib/XIconButtonBridge.js +47 -35
- package/esm5/lib/XInputBridge.js +93 -40
- package/esm5/lib/XPopupBridge.js +289 -0
- package/esm5/lib/igc-button-click-event-args.js +1 -1
- package/esm5/lib/igc-button-group-selection-changed-event-args.js +1 -1
- package/esm5/lib/igc-checkbox-change-event-args.js +3 -3
- package/esm5/lib/igc-date-picker-component.js +80 -78
- package/esm5/lib/igc-got-focus-event-args.js +1 -1
- package/esm5/lib/igc-input-change-event-args.js +3 -3
- package/esm5/lib/igc-lost-focus-event-args.js +1 -1
- package/esm5/lib/igc-selected-value-changed-event-args.js +3 -3
- package/esm5/lib/igc-x-button-component.js +908 -710
- package/esm5/lib/igc-x-button-group-button-collection.js +2 -2
- package/esm5/lib/igc-x-button-group-component.js +73 -73
- package/esm5/lib/igc-x-calendar-component.js +30 -30
- package/esm5/lib/igc-x-checkbox-component.js +117 -117
- package/esm5/lib/igc-x-icon-component.js +297 -136
- package/esm5/lib/igc-x-input-component.js +104 -78
- package/esm5/lib/igc-x-input-group-component.js +716 -716
- package/esm5/lib/igc-x-input-group-input-collection.js +2 -2
- package/esm5/lib/igc-x-input-group-item-component.js +6 -6
- package/esm5/lib/igc-x-label-component.js +30 -30
- package/esm5/lib/igc-x-prefix-component.js +9 -9
- package/esm5/lib/igc-x-ripple-component.js +19 -19
- package/esm5/lib/igc-x-suffix-component.js +9 -9
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +9194 -7084
- package/fesm5/igniteui-webcomponents-inputs.js +10090 -7768
- package/lib/ButtonGroupView_combined.d.ts +136 -70
- package/lib/ButtonView_combined.d.ts +609 -583
- package/lib/CalendarView_combined.d.ts +43 -22
- package/lib/CheckboxChangeEventArgs.d.ts +4 -2
- package/lib/CheckboxView_combined.d.ts +150 -117
- package/lib/DatePickerView_combined.d.ts +109 -81
- package/lib/IconView_combined.d.ts +164 -93
- package/lib/IconVisualModelExport.d.ts +2 -1
- package/lib/InputChangeEventArgs.d.ts +4 -2
- package/lib/InputGroupView_combined.d.ts +771 -771
- package/lib/NativeUIXInputsFactory.d.ts +6 -4
- package/lib/RippleView_combined.d.ts +19 -10
- package/lib/SelectedValueChangedEventArgs.d.ts +4 -2
- package/lib/Theme.d.ts +15 -0
- package/lib/ThemeResolver.d.ts +44 -6
- package/lib/XButtonBridge.d.ts +23 -5
- package/lib/XCheckboxBridge.d.ts +3 -3
- package/lib/XComponentBridge.d.ts +2 -1
- package/lib/XIconBridge.d.ts +14 -0
- package/lib/XIconButtonBridge.d.ts +4 -4
- package/lib/XInputBridge.d.ts +11 -7
- package/lib/XPopupBridge.d.ts +52 -0
- package/lib/igc-button-click-event-args.d.ts +1 -1
- package/lib/igc-button-group-selection-changed-event-args.d.ts +1 -1
- package/lib/igc-checkbox-change-event-args.d.ts +5 -3
- package/lib/igc-date-picker-component.d.ts +65 -34
- package/lib/igc-got-focus-event-args.d.ts +1 -1
- package/lib/igc-input-change-event-args.d.ts +5 -3
- package/lib/igc-lost-focus-event-args.d.ts +1 -1
- package/lib/igc-selected-value-changed-event-args.d.ts +5 -3
- package/lib/igc-x-button-component.d.ts +399 -173
- package/lib/igc-x-button-group-component.d.ts +136 -70
- package/lib/igc-x-calendar-component.d.ts +53 -28
- package/lib/igc-x-checkbox-component.d.ts +71 -37
- package/lib/igc-x-icon-component.d.ts +140 -44
- package/lib/igc-x-input-component.d.ts +69 -32
- package/lib/igc-x-input-group-component.d.ts +325 -165
- package/lib/igc-x-input-group-item-component.d.ts +5 -4
- package/lib/igc-x-label-component.d.ts +52 -27
- package/lib/igc-x-prefix-component.d.ts +10 -6
- package/lib/igc-x-ripple-component.d.ts +31 -17
- package/lib/igc-x-suffix-component.d.ts +10 -6
- package/package.json +2 -2
- 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].
|
|
1722
|
+
this.aj._inner[a].p4 = this.dq;
|
|
1723
1723
|
}
|
|
1724
1724
|
if (this.dk != null) {
|
|
1725
|
-
this.aj._inner[a].
|
|
1725
|
+
this.aj._inner[a].p0 = this.dk;
|
|
1726
1726
|
}
|
|
1727
1727
|
if (this.dg != null) {
|
|
1728
|
-
this.aj._inner[a].
|
|
1728
|
+
this.aj._inner[a].pu = this.dg;
|
|
1729
1729
|
}
|
|
1730
1730
|
if (this.dj != null) {
|
|
1731
|
-
this.aj._inner[a].
|
|
1731
|
+
this.aj._inner[a].pz = this.dj;
|
|
1732
1732
|
}
|
|
1733
1733
|
if (this.dl != null) {
|
|
1734
|
-
this.aj._inner[a].
|
|
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].
|
|
1739
|
+
this.ah._inner[b].p4 = this.dq;
|
|
1740
1740
|
}
|
|
1741
1741
|
if (this.dk != null) {
|
|
1742
|
-
this.ah._inner[b].
|
|
1742
|
+
this.ah._inner[b].p0 = this.dk;
|
|
1743
1743
|
}
|
|
1744
1744
|
if (this.dg != null) {
|
|
1745
|
-
this.ah._inner[b].
|
|
1745
|
+
this.ah._inner[b].pu = this.dg;
|
|
1746
1746
|
}
|
|
1747
1747
|
if (this.dj != null) {
|
|
1748
|
-
this.ah._inner[b].
|
|
1748
|
+
this.ah._inner[b].pz = this.dj;
|
|
1749
1749
|
}
|
|
1750
1750
|
if (this.dl != null) {
|
|
1751
|
-
this.ah._inner[b].
|
|
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].
|
|
1756
|
+
this.ak._inner[c].p4 = this.dq;
|
|
1757
1757
|
}
|
|
1758
1758
|
if (this.dk != null) {
|
|
1759
|
-
this.ak._inner[c].
|
|
1759
|
+
this.ak._inner[c].p0 = this.dk;
|
|
1760
1760
|
}
|
|
1761
1761
|
if (this.dg != null) {
|
|
1762
|
-
this.ak._inner[c].
|
|
1762
|
+
this.ak._inner[c].pu = this.dg;
|
|
1763
1763
|
}
|
|
1764
1764
|
if (this.dj != null) {
|
|
1765
|
-
this.ak._inner[c].
|
|
1765
|
+
this.ak._inner[c].pz = this.dj;
|
|
1766
1766
|
}
|
|
1767
1767
|
if (this.dl != null) {
|
|
1768
|
-
this.ak._inner[c].
|
|
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].
|
|
1773
|
+
this.al._inner[d].p4 = this.dq;
|
|
1774
1774
|
}
|
|
1775
1775
|
if (this.dk != null) {
|
|
1776
|
-
this.al._inner[d].
|
|
1776
|
+
this.al._inner[d].p0 = this.dk;
|
|
1777
1777
|
}
|
|
1778
1778
|
if (this.dg != null) {
|
|
1779
|
-
this.al._inner[d].
|
|
1779
|
+
this.al._inner[d].pu = this.dg;
|
|
1780
1780
|
}
|
|
1781
1781
|
if (this.dj != null) {
|
|
1782
|
-
this.al._inner[d].
|
|
1782
|
+
this.al._inner[d].pz = this.dj;
|
|
1783
1783
|
}
|
|
1784
1784
|
if (this.dl != null) {
|
|
1785
|
-
this.al._inner[d].
|
|
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].
|
|
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].
|
|
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].
|
|
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].
|
|
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.
|
|
1845
|
-
d.
|
|
1846
|
-
d.
|
|
1847
|
-
d.
|
|
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.
|
|
1850
|
+
d.aa = this.u;
|
|
1851
1851
|
}
|
|
1852
1852
|
let e = new CornerRadius(0, 2);
|
|
1853
|
-
d.
|
|
1854
|
-
d.
|
|
1855
|
-
d.
|
|
1853
|
+
d.kt = e;
|
|
1854
|
+
d.k0 = e;
|
|
1855
|
+
d.dk = 0;
|
|
1856
1856
|
d.appendButtonContent(b);
|
|
1857
|
-
d.
|
|
1858
|
-
d.
|
|
1859
|
-
d.
|
|
1860
|
-
d.
|
|
1861
|
-
d.
|
|
1862
|
-
d.
|
|
1863
|
-
d.
|
|
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.
|
|
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.
|
|
1871
|
-
c.
|
|
1872
|
-
c.
|
|
1873
|
-
c.
|
|
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.
|
|
1876
|
+
c.aa = this.u;
|
|
1877
1877
|
}
|
|
1878
1878
|
let d = new CornerRadius(0, 2);
|
|
1879
|
-
c.
|
|
1880
|
-
c.
|
|
1881
|
-
c.
|
|
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.
|
|
1886
|
-
c.
|
|
1887
|
-
c.
|
|
1888
|
-
c.
|
|
1889
|
-
c.
|
|
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.
|
|
1903
|
-
c.
|
|
1904
|
-
c.
|
|
1905
|
-
c.
|
|
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.
|
|
1908
|
+
c.aa = this.u;
|
|
1909
1909
|
}
|
|
1910
1910
|
let d = new CornerRadius(0, 2);
|
|
1911
|
-
c.
|
|
1912
|
-
c.
|
|
1913
|
-
c.
|
|
1911
|
+
c.kt = d;
|
|
1912
|
+
c.k0 = d;
|
|
1913
|
+
c.dk = 0;
|
|
1914
1914
|
c.appendButtonContent(b);
|
|
1915
|
-
c.
|
|
1916
|
-
c.
|
|
1917
|
-
c.
|
|
1918
|
-
c.
|
|
1919
|
-
c.
|
|
1920
|
-
c.
|
|
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].
|
|
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.
|
|
1984
|
-
d.
|
|
1985
|
-
d.
|
|
1986
|
-
d.
|
|
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.
|
|
1989
|
+
d.aa = this.u;
|
|
1990
1990
|
}
|
|
1991
1991
|
let e = new CornerRadius(0, 2);
|
|
1992
|
-
d.
|
|
1993
|
-
d.
|
|
1994
|
-
d.
|
|
1992
|
+
d.kt = e;
|
|
1993
|
+
d.k0 = e;
|
|
1994
|
+
d.dk = 0;
|
|
1995
1995
|
d.appendButtonContent(b);
|
|
1996
|
-
d.
|
|
1997
|
-
d.
|
|
1998
|
-
d.
|
|
1999
|
-
d.
|
|
2000
|
-
d.
|
|
2001
|
-
d.
|
|
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.
|
|
2199
|
-
e.
|
|
2200
|
-
e.
|
|
2201
|
-
e.
|
|
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.
|
|
2205
|
-
e.
|
|
2206
|
-
e.
|
|
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.
|
|
2211
|
+
e.h2 = "btnPrev";
|
|
2212
2212
|
}
|
|
2213
2213
|
else if (d == "next") {
|
|
2214
2214
|
g.svgPath = XCalendar.bl;
|
|
2215
|
-
e.
|
|
2215
|
+
e.h2 = "btnNext";
|
|
2216
2216
|
}
|
|
2217
2217
|
e.appendButtonContent(c);
|
|
2218
|
-
e.
|
|
2219
|
-
e.
|
|
2220
|
-
e.
|
|
2221
|
-
e.
|
|
2222
|
-
e.
|
|
2223
|
-
e.
|
|
2224
|
-
e.
|
|
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.
|
|
2231
|
-
d.
|
|
2232
|
-
d.
|
|
2233
|
-
d.
|
|
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.
|
|
2236
|
+
d.aa = this.u;
|
|
2237
2237
|
}
|
|
2238
2238
|
let e = new CornerRadius(0, 2);
|
|
2239
|
-
d.
|
|
2240
|
-
d.
|
|
2241
|
-
d.
|
|
2239
|
+
d.kt = e;
|
|
2240
|
+
d.k0 = e;
|
|
2241
|
+
d.dk = 0;
|
|
2242
2242
|
d.appendButtonContent(b);
|
|
2243
|
-
d.
|
|
2244
|
-
d.
|
|
2245
|
-
d.
|
|
2246
|
-
d.
|
|
2247
|
-
d.
|
|
2248
|
-
d.
|
|
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.
|
|
2250
|
+
d.h2 = "btnMonth";
|
|
2251
2251
|
}
|
|
2252
2252
|
else if (c == "year") {
|
|
2253
|
-
d.
|
|
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.
|
|
2414
|
-
c.
|
|
2415
|
-
c.
|
|
2416
|
-
c.
|
|
2417
|
-
c.
|
|
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.
|
|
2420
|
+
c.p4 = this.di;
|
|
2421
2421
|
;
|
|
2422
|
-
c.
|
|
2423
|
-
c.
|
|
2424
|
-
c.
|
|
2425
|
-
c.
|
|
2426
|
-
c.
|
|
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.
|
|
2430
|
-
c.
|
|
2431
|
-
c.
|
|
2432
|
-
c.
|
|
2433
|
-
c.
|
|
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.
|
|
2437
|
-
c.
|
|
2438
|
-
c.
|
|
2439
|
-
c.
|
|
2440
|
-
c.
|
|
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].
|
|
2681
|
-
this.aj._inner[f].
|
|
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].
|
|
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].
|
|
2690
|
-
this.ah._inner[h].
|
|
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].
|
|
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.
|
|
2699
|
-
let j = this.g.
|
|
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.
|
|
2711
|
-
m.f = NativeUI.
|
|
2712
|
-
m.b = AppearanceHelper.a(NativeUI.
|
|
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.
|
|
2724
|
-
q.f = NativeUI.
|
|
2725
|
-
q.b = AppearanceHelper.a(NativeUI.
|
|
2726
|
-
q.a = AppearanceHelper.a(NativeUI.
|
|
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].
|
|
2735
|
-
this.ak._inner[s].
|
|
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].
|
|
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].
|
|
2746
|
-
this.al._inner[u].
|
|
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].
|
|
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);
|