igniteui-webcomponents-inputs 4.2.5 → 4.3.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.
- 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
|
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
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
6
|
*/
|
|
7
|
-
import
|
|
7
|
+
import { __extends } from "tslib";
|
|
8
8
|
import { Base, runOn, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, delegateRemove, enumGetBox, delegateCombine, Number_$type } from "igniteui-webcomponents-core";
|
|
9
9
|
import { DomWrapper_$type } from "igniteui-webcomponents-core";
|
|
10
10
|
import { List$1 } from "igniteui-webcomponents-core";
|
|
@@ -35,7 +35,7 @@ import { timeSpanTotalDays } from "igniteui-webcomponents-core";
|
|
|
35
35
|
* @hidden
|
|
36
36
|
*/
|
|
37
37
|
var CalendarView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
38
|
-
|
|
38
|
+
__extends(CalendarView, _super);
|
|
39
39
|
function CalendarView() {
|
|
40
40
|
var _this = _super.call(this) || this;
|
|
41
41
|
_this.n = null;
|
|
@@ -1362,7 +1362,7 @@ export { CalendarView };
|
|
|
1362
1362
|
* @hidden
|
|
1363
1363
|
*/
|
|
1364
1364
|
var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
1365
|
-
|
|
1365
|
+
__extends(XCalendar, _super);
|
|
1366
1366
|
function XCalendar() {
|
|
1367
1367
|
var _this = _super.call(this) || this;
|
|
1368
1368
|
_this.h = null;
|
|
@@ -1458,7 +1458,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1458
1458
|
}
|
|
1459
1459
|
return this.w;
|
|
1460
1460
|
},
|
|
1461
|
-
enumerable:
|
|
1461
|
+
enumerable: false,
|
|
1462
1462
|
configurable: true
|
|
1463
1463
|
});
|
|
1464
1464
|
Object.defineProperty(XCalendar.prototype, "value", {
|
|
@@ -1473,7 +1473,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1473
1473
|
this.ct("Value", b, this.as);
|
|
1474
1474
|
}
|
|
1475
1475
|
},
|
|
1476
|
-
enumerable:
|
|
1476
|
+
enumerable: false,
|
|
1477
1477
|
configurable: true
|
|
1478
1478
|
});
|
|
1479
1479
|
Object.defineProperty(XCalendar.prototype, "av", {
|
|
@@ -1487,7 +1487,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1487
1487
|
this.ct("Today", b, this.ar);
|
|
1488
1488
|
}
|
|
1489
1489
|
},
|
|
1490
|
-
enumerable:
|
|
1490
|
+
enumerable: false,
|
|
1491
1491
|
configurable: true
|
|
1492
1492
|
});
|
|
1493
1493
|
Object.defineProperty(XCalendar.prototype, "au", {
|
|
@@ -1501,7 +1501,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1501
1501
|
this.ct("MinDate", b, this.ao);
|
|
1502
1502
|
}
|
|
1503
1503
|
},
|
|
1504
|
-
enumerable:
|
|
1504
|
+
enumerable: false,
|
|
1505
1505
|
configurable: true
|
|
1506
1506
|
});
|
|
1507
1507
|
Object.defineProperty(XCalendar.prototype, "at", {
|
|
@@ -1515,7 +1515,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1515
1515
|
this.ct("MaxDate", b, this.an);
|
|
1516
1516
|
}
|
|
1517
1517
|
},
|
|
1518
|
-
enumerable:
|
|
1518
|
+
enumerable: false,
|
|
1519
1519
|
configurable: true
|
|
1520
1520
|
});
|
|
1521
1521
|
Object.defineProperty(XCalendar.prototype, "t", {
|
|
@@ -1529,7 +1529,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1529
1529
|
this.ct("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, this.s));
|
|
1530
1530
|
}
|
|
1531
1531
|
},
|
|
1532
|
-
enumerable:
|
|
1532
|
+
enumerable: false,
|
|
1533
1533
|
configurable: true
|
|
1534
1534
|
});
|
|
1535
1535
|
Object.defineProperty(XCalendar.prototype, "r", {
|
|
@@ -1543,7 +1543,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1543
1543
|
this.ct("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, this.q));
|
|
1544
1544
|
}
|
|
1545
1545
|
},
|
|
1546
|
-
enumerable:
|
|
1546
|
+
enumerable: false,
|
|
1547
1547
|
configurable: true
|
|
1548
1548
|
});
|
|
1549
1549
|
Object.defineProperty(XCalendar.prototype, "dg", {
|
|
@@ -1557,7 +1557,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1557
1557
|
this.ct("BackgroundColor", b, this.c6);
|
|
1558
1558
|
}
|
|
1559
1559
|
},
|
|
1560
|
-
enumerable:
|
|
1560
|
+
enumerable: false,
|
|
1561
1561
|
configurable: true
|
|
1562
1562
|
});
|
|
1563
1563
|
Object.defineProperty(XCalendar.prototype, "dm", {
|
|
@@ -1571,7 +1571,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1571
1571
|
this.ct("SelectedDateBackgroundColor", b, this.dc);
|
|
1572
1572
|
}
|
|
1573
1573
|
},
|
|
1574
|
-
enumerable:
|
|
1574
|
+
enumerable: false,
|
|
1575
1575
|
configurable: true
|
|
1576
1576
|
});
|
|
1577
1577
|
Object.defineProperty(XCalendar.prototype, "dp", {
|
|
@@ -1585,7 +1585,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1585
1585
|
this.ct("SelectedFocusDateBackgroundColor", b, this.de);
|
|
1586
1586
|
}
|
|
1587
1587
|
},
|
|
1588
|
-
enumerable:
|
|
1588
|
+
enumerable: false,
|
|
1589
1589
|
configurable: true
|
|
1590
1590
|
});
|
|
1591
1591
|
Object.defineProperty(XCalendar.prototype, "dj", {
|
|
@@ -1599,7 +1599,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1599
1599
|
this.ct("FocusDateBackgroundColor", b, this.c9);
|
|
1600
1600
|
}
|
|
1601
1601
|
},
|
|
1602
|
-
enumerable:
|
|
1602
|
+
enumerable: false,
|
|
1603
1603
|
configurable: true
|
|
1604
1604
|
});
|
|
1605
1605
|
Object.defineProperty(XCalendar.prototype, "dl", {
|
|
@@ -1613,7 +1613,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1613
1613
|
this.ct("HoverBackgroundColor", b, this.db);
|
|
1614
1614
|
}
|
|
1615
1615
|
},
|
|
1616
|
-
enumerable:
|
|
1616
|
+
enumerable: false,
|
|
1617
1617
|
configurable: true
|
|
1618
1618
|
});
|
|
1619
1619
|
Object.defineProperty(XCalendar.prototype, "dq", {
|
|
@@ -1627,7 +1627,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1627
1627
|
this.ct("TextColor", b, this.df);
|
|
1628
1628
|
}
|
|
1629
1629
|
},
|
|
1630
|
-
enumerable:
|
|
1630
|
+
enumerable: false,
|
|
1631
1631
|
configurable: true
|
|
1632
1632
|
});
|
|
1633
1633
|
Object.defineProperty(XCalendar.prototype, "dn", {
|
|
@@ -1641,7 +1641,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1641
1641
|
this.ct("SelectedDateTextColor", b, this.dd);
|
|
1642
1642
|
}
|
|
1643
1643
|
},
|
|
1644
|
-
enumerable:
|
|
1644
|
+
enumerable: false,
|
|
1645
1645
|
configurable: true
|
|
1646
1646
|
});
|
|
1647
1647
|
Object.defineProperty(XCalendar.prototype, "dk", {
|
|
@@ -1655,7 +1655,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1655
1655
|
this.ct("FocusDateTextColor", b, this.da);
|
|
1656
1656
|
}
|
|
1657
1657
|
},
|
|
1658
|
-
enumerable:
|
|
1658
|
+
enumerable: false,
|
|
1659
1659
|
configurable: true
|
|
1660
1660
|
});
|
|
1661
1661
|
Object.defineProperty(XCalendar.prototype, "di", {
|
|
@@ -1669,7 +1669,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1669
1669
|
this.ct("CurrentDateTextColor", b, this.c8);
|
|
1670
1670
|
}
|
|
1671
1671
|
},
|
|
1672
|
-
enumerable:
|
|
1672
|
+
enumerable: false,
|
|
1673
1673
|
configurable: true
|
|
1674
1674
|
});
|
|
1675
1675
|
Object.defineProperty(XCalendar.prototype, "dh", {
|
|
@@ -1683,7 +1683,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1683
1683
|
this.ct("CurrentDateBorderColor", b, this.c7);
|
|
1684
1684
|
}
|
|
1685
1685
|
},
|
|
1686
|
-
enumerable:
|
|
1686
|
+
enumerable: false,
|
|
1687
1687
|
configurable: true
|
|
1688
1688
|
});
|
|
1689
1689
|
Object.defineProperty(XCalendar.prototype, "ae", {
|
|
@@ -1697,7 +1697,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1697
1697
|
this.ct("ShowTodayButton", b, this.y);
|
|
1698
1698
|
}
|
|
1699
1699
|
},
|
|
1700
|
-
enumerable:
|
|
1700
|
+
enumerable: false,
|
|
1701
1701
|
configurable: true
|
|
1702
1702
|
});
|
|
1703
1703
|
Object.defineProperty(XCalendar.prototype, "v", {
|
|
@@ -1711,7 +1711,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1711
1711
|
this.ct("TextStyle", b, this.u);
|
|
1712
1712
|
}
|
|
1713
1713
|
},
|
|
1714
|
-
enumerable:
|
|
1714
|
+
enumerable: false,
|
|
1715
1715
|
configurable: true
|
|
1716
1716
|
});
|
|
1717
1717
|
Object.defineProperty(XCalendar.prototype, "l", {
|
|
@@ -1725,7 +1725,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1725
1725
|
this.ct("FirstDayOfWeek", enumGetBox(DayOfWeek_$type, b), enumGetBox(DayOfWeek_$type, this.k));
|
|
1726
1726
|
}
|
|
1727
1727
|
},
|
|
1728
|
-
enumerable:
|
|
1728
|
+
enumerable: false,
|
|
1729
1729
|
configurable: true
|
|
1730
1730
|
});
|
|
1731
1731
|
Object.defineProperty(XCalendar.prototype, "o", {
|
|
@@ -1739,7 +1739,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1739
1739
|
this.ct("FirstWeekOfYear", enumGetBox(FirstWeek_$type, b), enumGetBox(FirstWeek_$type, this.n));
|
|
1740
1740
|
}
|
|
1741
1741
|
},
|
|
1742
|
-
enumerable:
|
|
1742
|
+
enumerable: false,
|
|
1743
1743
|
configurable: true
|
|
1744
1744
|
});
|
|
1745
1745
|
Object.defineProperty(XCalendar.prototype, "af", {
|
|
@@ -1753,7 +1753,7 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1753
1753
|
this.ct("ShowWeekNumbers", b, this.z);
|
|
1754
1754
|
}
|
|
1755
1755
|
},
|
|
1756
|
-
enumerable:
|
|
1756
|
+
enumerable: false,
|
|
1757
1757
|
configurable: true
|
|
1758
1758
|
});
|
|
1759
1759
|
XCalendar.prototype.ct = function (a, b, c) {
|
|
@@ -1843,92 +1843,92 @@ 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].
|
|
1846
|
+
this.aj._inner[a].p4 = this.dq;
|
|
1847
1847
|
}
|
|
1848
1848
|
if (this.dk != null) {
|
|
1849
|
-
this.aj._inner[a].
|
|
1849
|
+
this.aj._inner[a].p0 = this.dk;
|
|
1850
1850
|
}
|
|
1851
1851
|
if (this.dg != null) {
|
|
1852
|
-
this.aj._inner[a].
|
|
1852
|
+
this.aj._inner[a].pu = this.dg;
|
|
1853
1853
|
}
|
|
1854
1854
|
if (this.dj != null) {
|
|
1855
|
-
this.aj._inner[a].
|
|
1855
|
+
this.aj._inner[a].pz = this.dj;
|
|
1856
1856
|
}
|
|
1857
1857
|
if (this.dl != null) {
|
|
1858
|
-
this.aj._inner[a].
|
|
1858
|
+
this.aj._inner[a].p1 = 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].
|
|
1863
|
+
this.ah._inner[b].p4 = this.dq;
|
|
1864
1864
|
}
|
|
1865
1865
|
if (this.dk != null) {
|
|
1866
|
-
this.ah._inner[b].
|
|
1866
|
+
this.ah._inner[b].p0 = this.dk;
|
|
1867
1867
|
}
|
|
1868
1868
|
if (this.dg != null) {
|
|
1869
|
-
this.ah._inner[b].
|
|
1869
|
+
this.ah._inner[b].pu = this.dg;
|
|
1870
1870
|
}
|
|
1871
1871
|
if (this.dj != null) {
|
|
1872
|
-
this.ah._inner[b].
|
|
1872
|
+
this.ah._inner[b].pz = this.dj;
|
|
1873
1873
|
}
|
|
1874
1874
|
if (this.dl != null) {
|
|
1875
|
-
this.ah._inner[b].
|
|
1875
|
+
this.ah._inner[b].p1 = 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].
|
|
1880
|
+
this.ak._inner[c].p4 = this.dq;
|
|
1881
1881
|
}
|
|
1882
1882
|
if (this.dk != null) {
|
|
1883
|
-
this.ak._inner[c].
|
|
1883
|
+
this.ak._inner[c].p0 = this.dk;
|
|
1884
1884
|
}
|
|
1885
1885
|
if (this.dg != null) {
|
|
1886
|
-
this.ak._inner[c].
|
|
1886
|
+
this.ak._inner[c].pu = this.dg;
|
|
1887
1887
|
}
|
|
1888
1888
|
if (this.dj != null) {
|
|
1889
|
-
this.ak._inner[c].
|
|
1889
|
+
this.ak._inner[c].pz = this.dj;
|
|
1890
1890
|
}
|
|
1891
1891
|
if (this.dl != null) {
|
|
1892
|
-
this.ak._inner[c].
|
|
1892
|
+
this.ak._inner[c].p1 = 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].
|
|
1897
|
+
this.al._inner[d].p4 = this.dq;
|
|
1898
1898
|
}
|
|
1899
1899
|
if (this.dk != null) {
|
|
1900
|
-
this.al._inner[d].
|
|
1900
|
+
this.al._inner[d].p0 = this.dk;
|
|
1901
1901
|
}
|
|
1902
1902
|
if (this.dg != null) {
|
|
1903
|
-
this.al._inner[d].
|
|
1903
|
+
this.al._inner[d].pu = this.dg;
|
|
1904
1904
|
}
|
|
1905
1905
|
if (this.dj != null) {
|
|
1906
|
-
this.al._inner[d].
|
|
1906
|
+
this.al._inner[d].pz = this.dj;
|
|
1907
1907
|
}
|
|
1908
1908
|
if (this.dl != null) {
|
|
1909
|
-
this.al._inner[d].
|
|
1909
|
+
this.al._inner[d].p1 = this.dl;
|
|
1910
1910
|
}
|
|
1911
1911
|
}
|
|
1912
1912
|
};
|
|
1913
1913
|
XCalendar.prototype.c4 = function () {
|
|
1914
1914
|
for (var a = 0; a < this.aj.count; a++) {
|
|
1915
1915
|
if (this.u != null) {
|
|
1916
|
-
this.aj._inner[a].
|
|
1916
|
+
this.aj._inner[a].aa = this.u;
|
|
1917
1917
|
}
|
|
1918
1918
|
}
|
|
1919
1919
|
for (var b = 0; b < this.ah.count; b++) {
|
|
1920
1920
|
if (this.u != null) {
|
|
1921
|
-
this.ah._inner[b].
|
|
1921
|
+
this.ah._inner[b].aa = this.u;
|
|
1922
1922
|
}
|
|
1923
1923
|
}
|
|
1924
1924
|
for (var c = 0; c < this.ak.count; c++) {
|
|
1925
1925
|
if (this.u != null) {
|
|
1926
|
-
this.ak._inner[c].
|
|
1926
|
+
this.ak._inner[c].aa = this.u;
|
|
1927
1927
|
}
|
|
1928
1928
|
}
|
|
1929
1929
|
for (var d = 0; d < this.al.count; d++) {
|
|
1930
1930
|
if (this.u != null) {
|
|
1931
|
-
this.al._inner[d].
|
|
1931
|
+
this.al._inner[d].aa = this.u;
|
|
1932
1932
|
}
|
|
1933
1933
|
}
|
|
1934
1934
|
};
|
|
@@ -1965,52 +1965,52 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1965
1965
|
XCalendar.prototype.ci = function (a, b, c) {
|
|
1966
1966
|
var d = new XButton();
|
|
1967
1967
|
this.h.as(a, d);
|
|
1968
|
-
d.
|
|
1969
|
-
d.
|
|
1970
|
-
d.
|
|
1971
|
-
d.
|
|
1968
|
+
d.n = this.r;
|
|
1969
|
+
d.r = this.t;
|
|
1970
|
+
d.aa = this.u;
|
|
1971
|
+
d.d3 = -1;
|
|
1972
1972
|
d.e = 1;
|
|
1973
1973
|
if (this.u != null) {
|
|
1974
|
-
d.
|
|
1974
|
+
d.aa = this.u;
|
|
1975
1975
|
}
|
|
1976
1976
|
var e = new CornerRadius(0, 2);
|
|
1977
|
-
d.
|
|
1978
|
-
d.
|
|
1979
|
-
d.
|
|
1977
|
+
d.kt = e;
|
|
1978
|
+
d.k0 = e;
|
|
1979
|
+
d.dk = 0;
|
|
1980
1980
|
d.appendButtonContent(b);
|
|
1981
|
-
d.
|
|
1982
|
-
d.
|
|
1983
|
-
d.
|
|
1984
|
-
d.
|
|
1985
|
-
d.
|
|
1986
|
-
d.
|
|
1987
|
-
d.
|
|
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;
|
|
1986
|
+
d.bu = 30;
|
|
1987
|
+
d.bt = 30;
|
|
1988
1988
|
this.ah.add(d);
|
|
1989
|
-
d.
|
|
1989
|
+
d.h2 = "btnDays" + c.toString();
|
|
1990
1990
|
};
|
|
1991
1991
|
XCalendar.prototype.cm = function (a, b) {
|
|
1992
1992
|
var c = new XButton();
|
|
1993
1993
|
this.h.as(a, c);
|
|
1994
|
-
c.
|
|
1995
|
-
c.
|
|
1996
|
-
c.
|
|
1997
|
-
c.
|
|
1994
|
+
c.n = this.r;
|
|
1995
|
+
c.r = this.t;
|
|
1996
|
+
c.aa = this.u;
|
|
1997
|
+
c.d3 = -1;
|
|
1998
1998
|
c.e = 1;
|
|
1999
1999
|
if (this.u != null) {
|
|
2000
|
-
c.
|
|
2000
|
+
c.aa = this.u;
|
|
2001
2001
|
}
|
|
2002
2002
|
var d = new CornerRadius(0, 2);
|
|
2003
|
-
c.
|
|
2004
|
-
c.
|
|
2005
|
-
c.
|
|
2003
|
+
c.kt = d;
|
|
2004
|
+
c.k0 = d;
|
|
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.
|
|
2010
|
-
c.
|
|
2011
|
-
c.
|
|
2012
|
-
c.
|
|
2013
|
-
c.
|
|
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;
|
|
2014
2014
|
this.g = c;
|
|
2015
2015
|
var f = this.g;
|
|
2016
2016
|
f.clicked = delegateCombine(f.clicked, runOn(this, this.c2));
|
|
@@ -2023,25 +2023,25 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2023
2023
|
XCalendar.prototype.cl = function (a, b) {
|
|
2024
2024
|
var c = new XButton();
|
|
2025
2025
|
this.h.as(a, c);
|
|
2026
|
-
c.
|
|
2027
|
-
c.
|
|
2028
|
-
c.
|
|
2029
|
-
c.
|
|
2026
|
+
c.n = this.r;
|
|
2027
|
+
c.r = this.t;
|
|
2028
|
+
c.aa = this.u;
|
|
2029
|
+
c.d3 = -1;
|
|
2030
2030
|
c.e = 1;
|
|
2031
2031
|
if (this.u != null) {
|
|
2032
|
-
c.
|
|
2032
|
+
c.aa = this.u;
|
|
2033
2033
|
}
|
|
2034
2034
|
var d = new CornerRadius(0, 2);
|
|
2035
|
-
c.
|
|
2036
|
-
c.
|
|
2037
|
-
c.
|
|
2035
|
+
c.kt = d;
|
|
2036
|
+
c.k0 = d;
|
|
2037
|
+
c.dk = 0;
|
|
2038
2038
|
c.appendButtonContent(b);
|
|
2039
|
-
c.
|
|
2040
|
-
c.
|
|
2041
|
-
c.
|
|
2042
|
-
c.
|
|
2043
|
-
c.
|
|
2044
|
-
c.
|
|
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;
|
|
2044
|
+
c.bu = 40;
|
|
2045
2045
|
this.ak.add(c);
|
|
2046
2046
|
};
|
|
2047
2047
|
XCalendar.prototype.e = function (a, b) {
|
|
@@ -2098,31 +2098,31 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2098
2098
|
c[1] = !stringIsNullOrWhiteSpace(this.x.b1("December_Short")) ? this.x.b1("December_Short") : "Dec";
|
|
2099
2099
|
break;
|
|
2100
2100
|
}
|
|
2101
|
-
this.ak._inner[b].
|
|
2101
|
+
this.ak._inner[b].h2 = "btnMonth" + c[1];
|
|
2102
2102
|
return c;
|
|
2103
2103
|
};
|
|
2104
2104
|
XCalendar.prototype.cn = function (a, b, c) {
|
|
2105
2105
|
var d = new XButton();
|
|
2106
2106
|
this.h.as(a, d);
|
|
2107
|
-
d.
|
|
2108
|
-
d.
|
|
2109
|
-
d.
|
|
2110
|
-
d.
|
|
2107
|
+
d.n = this.r;
|
|
2108
|
+
d.r = this.t;
|
|
2109
|
+
d.aa = this.u;
|
|
2110
|
+
d.d3 = -1;
|
|
2111
2111
|
d.e = 1;
|
|
2112
2112
|
if (this.u != null) {
|
|
2113
|
-
d.
|
|
2113
|
+
d.aa = this.u;
|
|
2114
2114
|
}
|
|
2115
2115
|
var e = new CornerRadius(0, 2);
|
|
2116
|
-
d.
|
|
2117
|
-
d.
|
|
2118
|
-
d.
|
|
2116
|
+
d.kt = e;
|
|
2117
|
+
d.k0 = e;
|
|
2118
|
+
d.dk = 0;
|
|
2119
2119
|
d.appendButtonContent(b);
|
|
2120
|
-
d.
|
|
2121
|
-
d.
|
|
2122
|
-
d.
|
|
2123
|
-
d.
|
|
2124
|
-
d.
|
|
2125
|
-
d.
|
|
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;
|
|
2125
|
+
d.h2 = "btnYear" + c.toString();
|
|
2126
2126
|
this.al.add(d);
|
|
2127
2127
|
};
|
|
2128
2128
|
XCalendar.prototype.cg = function () {
|
|
@@ -2319,62 +2319,62 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2319
2319
|
XCalendar.prototype.ck = function (a, b, c, d) {
|
|
2320
2320
|
var e = new XButton();
|
|
2321
2321
|
this.h.as(a, e);
|
|
2322
|
-
e.
|
|
2323
|
-
e.
|
|
2324
|
-
e.
|
|
2325
|
-
e.
|
|
2322
|
+
e.n = this.r;
|
|
2323
|
+
e.r = this.t;
|
|
2324
|
+
e.aa = this.u;
|
|
2325
|
+
e.d3 = -1;
|
|
2326
2326
|
e.e = 1;
|
|
2327
2327
|
var f = new CornerRadius(0, 2);
|
|
2328
|
-
e.
|
|
2329
|
-
e.
|
|
2330
|
-
e.
|
|
2328
|
+
e.kt = f;
|
|
2329
|
+
e.k0 = f;
|
|
2330
|
+
e.dk = 0;
|
|
2331
2331
|
var g = new XIcon();
|
|
2332
2332
|
this.h.aw(b, g);
|
|
2333
2333
|
if (d == "prev") {
|
|
2334
2334
|
g.svgPath = XCalendar.bk;
|
|
2335
|
-
e.
|
|
2335
|
+
e.h2 = "btnPrev";
|
|
2336
2336
|
}
|
|
2337
2337
|
else if (d == "next") {
|
|
2338
2338
|
g.svgPath = XCalendar.bl;
|
|
2339
|
-
e.
|
|
2339
|
+
e.h2 = "btnNext";
|
|
2340
2340
|
}
|
|
2341
2341
|
e.appendButtonContent(c);
|
|
2342
|
-
e.
|
|
2343
|
-
e.
|
|
2344
|
-
e.
|
|
2345
|
-
e.
|
|
2346
|
-
e.
|
|
2347
|
-
e.
|
|
2348
|
-
e.
|
|
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;
|
|
2347
|
+
e.bu = 28;
|
|
2348
|
+
e.bt = 28;
|
|
2349
2349
|
this.aj.add(e);
|
|
2350
2350
|
};
|
|
2351
2351
|
XCalendar.prototype.cj = function (a, b, c) {
|
|
2352
2352
|
var d = new XButton();
|
|
2353
2353
|
this.h.as(a, d);
|
|
2354
|
-
d.
|
|
2355
|
-
d.
|
|
2356
|
-
d.
|
|
2357
|
-
d.
|
|
2354
|
+
d.n = this.r;
|
|
2355
|
+
d.r = this.t;
|
|
2356
|
+
d.aa = this.u;
|
|
2357
|
+
d.d3 = -1;
|
|
2358
2358
|
d.e = 1;
|
|
2359
2359
|
if (this.u != null) {
|
|
2360
|
-
d.
|
|
2360
|
+
d.aa = this.u;
|
|
2361
2361
|
}
|
|
2362
2362
|
var e = new CornerRadius(0, 2);
|
|
2363
|
-
d.
|
|
2364
|
-
d.
|
|
2365
|
-
d.
|
|
2363
|
+
d.kt = e;
|
|
2364
|
+
d.k0 = e;
|
|
2365
|
+
d.dk = 0;
|
|
2366
2366
|
d.appendButtonContent(b);
|
|
2367
|
-
d.
|
|
2368
|
-
d.
|
|
2369
|
-
d.
|
|
2370
|
-
d.
|
|
2371
|
-
d.
|
|
2372
|
-
d.
|
|
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;
|
|
2372
|
+
d.bu = 40;
|
|
2373
2373
|
if (c == "month") {
|
|
2374
|
-
d.
|
|
2374
|
+
d.h2 = "btnMonth";
|
|
2375
2375
|
}
|
|
2376
2376
|
else if (c == "year") {
|
|
2377
|
-
d.
|
|
2377
|
+
d.h2 = "btnYear";
|
|
2378
2378
|
}
|
|
2379
2379
|
this.aj.add(d);
|
|
2380
2380
|
};
|
|
@@ -2534,34 +2534,34 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2534
2534
|
var b = this.ai._inner[a];
|
|
2535
2535
|
var c = this.ah._inner[a];
|
|
2536
2536
|
if (+(this.value) != +(dateMinValue()) && b.b == this.value.getDate() && b.c == dateGetMonth(this.value) && b.d == this.value.getFullYear()) {
|
|
2537
|
-
c.
|
|
2538
|
-
c.
|
|
2539
|
-
c.
|
|
2540
|
-
c.
|
|
2541
|
-
c.
|
|
2537
|
+
c.p4 = this.dn;
|
|
2538
|
+
c.p0 = this.dn;
|
|
2539
|
+
c.pu = this.dm;
|
|
2540
|
+
c.pz = this.dp;
|
|
2541
|
+
c.pv = this.dg;
|
|
2542
2542
|
}
|
|
2543
2543
|
else if (b.b == this.av.getDate() && b.c == dateGetMonth(this.av) && b.d == this.av.getFullYear()) {
|
|
2544
|
-
c.
|
|
2544
|
+
c.p4 = this.di;
|
|
2545
2545
|
;
|
|
2546
|
-
c.
|
|
2547
|
-
c.
|
|
2548
|
-
c.
|
|
2549
|
-
c.
|
|
2550
|
-
c.
|
|
2546
|
+
c.p0 = this.dk;
|
|
2547
|
+
c.pu = this.dg;
|
|
2548
|
+
c.pz = this.dj;
|
|
2549
|
+
c.pv = this.dh;
|
|
2550
|
+
c.br = 1;
|
|
2551
2551
|
}
|
|
2552
2552
|
else if (b.a != 0 && b.a != 6 && b.c == dateGetMonth(this.aq)) {
|
|
2553
|
-
c.
|
|
2554
|
-
c.
|
|
2555
|
-
c.
|
|
2556
|
-
c.
|
|
2557
|
-
c.
|
|
2553
|
+
c.p4 = this.dq;
|
|
2554
|
+
c.p0 = this.dk;
|
|
2555
|
+
c.pu = this.dg;
|
|
2556
|
+
c.pz = this.dj;
|
|
2557
|
+
c.pv = this.dg;
|
|
2558
2558
|
}
|
|
2559
2559
|
else {
|
|
2560
|
-
c.
|
|
2561
|
-
c.
|
|
2562
|
-
c.
|
|
2563
|
-
c.
|
|
2564
|
-
c.
|
|
2560
|
+
c.p4 = this.dq;
|
|
2561
|
+
c.p0 = this.dk;
|
|
2562
|
+
c.pu = this.dg;
|
|
2563
|
+
c.pz = this.dj;
|
|
2564
|
+
c.pv = this.dg;
|
|
2565
2565
|
}
|
|
2566
2566
|
if (b.d >= this.au.getFullYear() && b.d <= this.at.getFullYear()) {
|
|
2567
2567
|
if (b.d == this.au.getFullYear() && b.d == this.at.getFullYear()) {
|
|
@@ -2801,26 +2801,26 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2801
2801
|
var e = c[1];
|
|
2802
2802
|
if (b == "day") {
|
|
2803
2803
|
for (var f = 0; f < this.aj.count; f++) {
|
|
2804
|
-
if (this.aj._inner[f].
|
|
2805
|
-
this.aj._inner[f].
|
|
2804
|
+
if (this.aj._inner[f].h2 == null) {
|
|
2805
|
+
this.aj._inner[f].h2 = "header" + f.toString();
|
|
2806
2806
|
}
|
|
2807
|
-
var g = this.aj._inner[f].
|
|
2807
|
+
var g = this.aj._inner[f].d7();
|
|
2808
2808
|
g.s = g.s - d;
|
|
2809
2809
|
g.q = g.q - e;
|
|
2810
2810
|
a.j.add(g);
|
|
2811
2811
|
}
|
|
2812
2812
|
for (var h = 0; h < this.ah.count; h++) {
|
|
2813
|
-
if (this.ah._inner[h].
|
|
2814
|
-
this.ah._inner[h].
|
|
2813
|
+
if (this.ah._inner[h].h2 == null) {
|
|
2814
|
+
this.ah._inner[h].h2 = "days" + h.toString();
|
|
2815
2815
|
}
|
|
2816
|
-
var i = this.ah._inner[h].
|
|
2816
|
+
var i = this.ah._inner[h].d7();
|
|
2817
2817
|
i.s = i.s - d;
|
|
2818
2818
|
i.q = i.q - e;
|
|
2819
2819
|
a.j.add(i);
|
|
2820
2820
|
}
|
|
2821
2821
|
if (this.ae == true) {
|
|
2822
|
-
this.g.
|
|
2823
|
-
var j = this.g.
|
|
2822
|
+
this.g.h2 = "todayButton";
|
|
2823
|
+
var j = this.g.d7();
|
|
2824
2824
|
j.s = j.s - d;
|
|
2825
2825
|
j.q = j.q - e;
|
|
2826
2826
|
a.j.add(j);
|
|
@@ -2831,9 +2831,9 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2831
2831
|
var n = this.h.b(k._inner[l]);
|
|
2832
2832
|
m.e = n[0] - d;
|
|
2833
2833
|
m.d = n[1] - e;
|
|
2834
|
-
m.c = NativeUI.
|
|
2835
|
-
m.f = NativeUI.
|
|
2836
|
-
m.b = AppearanceHelper.a(NativeUI.
|
|
2834
|
+
m.c = NativeUI.d(k._inner[l].parent());
|
|
2835
|
+
m.f = NativeUI.j(k._inner[l].parent());
|
|
2836
|
+
m.b = AppearanceHelper.a(NativeUI.aj(k._inner[l]));
|
|
2837
2837
|
m.g = k._inner[l].getText();
|
|
2838
2838
|
a.k.add(m);
|
|
2839
2839
|
}
|
|
@@ -2844,10 +2844,10 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2844
2844
|
var r = this.h.b(o._inner[p]);
|
|
2845
2845
|
q.e = r[0] - d;
|
|
2846
2846
|
q.d = r[1] - e;
|
|
2847
|
-
q.c = NativeUI.
|
|
2848
|
-
q.f = NativeUI.
|
|
2849
|
-
q.b = AppearanceHelper.a(NativeUI.
|
|
2850
|
-
q.a = AppearanceHelper.a(NativeUI.
|
|
2847
|
+
q.c = NativeUI.d(o._inner[p].parent());
|
|
2848
|
+
q.f = NativeUI.j(o._inner[p].parent());
|
|
2849
|
+
q.b = AppearanceHelper.a(NativeUI.aj(o._inner[p]));
|
|
2850
|
+
q.a = AppearanceHelper.a(NativeUI.ai(o._inner[p]));
|
|
2851
2851
|
q.g = o._inner[p].getText();
|
|
2852
2852
|
a.l.add(q);
|
|
2853
2853
|
}
|
|
@@ -2855,10 +2855,10 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2855
2855
|
}
|
|
2856
2856
|
else if (b == "month") {
|
|
2857
2857
|
for (var s = 0; s < this.ak.count; s++) {
|
|
2858
|
-
if (this.ak._inner[s].
|
|
2859
|
-
this.ak._inner[s].
|
|
2858
|
+
if (this.ak._inner[s].h2 == null) {
|
|
2859
|
+
this.ak._inner[s].h2 = "months" + s.toString();
|
|
2860
2860
|
}
|
|
2861
|
-
var t = this.ak._inner[s].
|
|
2861
|
+
var t = this.ak._inner[s].d7();
|
|
2862
2862
|
t.s = t.s - d;
|
|
2863
2863
|
t.q = t.q - e;
|
|
2864
2864
|
a.j.add(t);
|
|
@@ -2866,10 +2866,10 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2866
2866
|
}
|
|
2867
2867
|
else if (b == "year") {
|
|
2868
2868
|
for (var u = 0; u < this.al.count; u++) {
|
|
2869
|
-
if (this.al._inner[u].
|
|
2870
|
-
this.al._inner[u].
|
|
2869
|
+
if (this.al._inner[u].h2 == null) {
|
|
2870
|
+
this.al._inner[u].h2 = "years" + u.toString();
|
|
2871
2871
|
}
|
|
2872
|
-
var v = this.al._inner[u].
|
|
2872
|
+
var v = this.al._inner[u].d7();
|
|
2873
2873
|
v.s = v.s - d;
|
|
2874
2874
|
v.q = v.q - e;
|
|
2875
2875
|
a.j.add(v);
|