igniteui-webcomponents-inputs 1.4.2 → 3.2.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 +182 -160
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonView_combined.js +1 -1
- package/esm2015/lib/CalendarView_combined.js +2 -2
- package/esm2015/lib/CheckboxView_combined.js +1 -1
- package/esm2015/lib/DatePickerView_combined.js +61 -51
- package/esm2015/lib/InputGroupView_combined.js +32 -26
- package/esm2015/lib/InputGroupVisualModelExport.js +1 -1
- package/esm2015/lib/igc-date-picker-component.js +15 -9
- package/esm2015/lib/igc-x-input-group-component.js +72 -72
- package/esm5/lib/ButtonView_combined.js +1 -1
- package/esm5/lib/CalendarView_combined.js +2 -2
- package/esm5/lib/CheckboxView_combined.js +1 -1
- package/esm5/lib/DatePickerView_combined.js +58 -48
- package/esm5/lib/InputGroupView_combined.js +32 -26
- package/esm5/lib/InputGroupVisualModelExport.js +1 -1
- package/esm5/lib/igc-date-picker-component.js +15 -9
- package/esm5/lib/igc-x-input-group-component.js +72 -72
- package/fesm2015/igniteui-webcomponents-inputs.js +185 -163
- package/fesm5/igniteui-webcomponents-inputs.js +182 -160
- package/lib/DatePickerView_combined.d.ts +13 -12
- package/lib/InputGroupView_combined.d.ts +10 -9
- package/lib/igc-date-picker-component.d.ts +1 -0
- package/package.json +3 -3
|
@@ -377,39 +377,39 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
377
377
|
this.i.m0 = new CornerRadius(2);
|
|
378
378
|
}
|
|
379
379
|
get actualContentPaddingBottom() {
|
|
380
|
-
return this.i.tg ? this.i.tg.
|
|
380
|
+
return this.i.tg ? this.i.tg.bottom : NaN;
|
|
381
381
|
}
|
|
382
382
|
set actualContentPaddingBottom(v) {
|
|
383
383
|
this.ensureActualContentPadding();
|
|
384
|
-
this.i.tg.
|
|
385
|
-
this._a("actualContentPaddingBottom", this.i.tg.
|
|
384
|
+
this.i.tg.bottom = +v;
|
|
385
|
+
this._a("actualContentPaddingBottom", this.i.tg.bottom);
|
|
386
386
|
this.i.tg = this.i.tg;
|
|
387
387
|
}
|
|
388
388
|
get actualContentPaddingLeft() {
|
|
389
|
-
return this.i.tg ? this.i.tg.
|
|
389
|
+
return this.i.tg ? this.i.tg.left : NaN;
|
|
390
390
|
}
|
|
391
391
|
set actualContentPaddingLeft(v) {
|
|
392
392
|
this.ensureActualContentPadding();
|
|
393
|
-
this.i.tg.
|
|
394
|
-
this._a("actualContentPaddingLeft", this.i.tg.
|
|
393
|
+
this.i.tg.left = +v;
|
|
394
|
+
this._a("actualContentPaddingLeft", this.i.tg.left);
|
|
395
395
|
this.i.tg = this.i.tg;
|
|
396
396
|
}
|
|
397
397
|
get actualContentPaddingRight() {
|
|
398
|
-
return this.i.tg ? this.i.tg.
|
|
398
|
+
return this.i.tg ? this.i.tg.right : NaN;
|
|
399
399
|
}
|
|
400
400
|
set actualContentPaddingRight(v) {
|
|
401
401
|
this.ensureActualContentPadding();
|
|
402
|
-
this.i.tg.
|
|
403
|
-
this._a("actualContentPaddingRight", this.i.tg.
|
|
402
|
+
this.i.tg.right = +v;
|
|
403
|
+
this._a("actualContentPaddingRight", this.i.tg.right);
|
|
404
404
|
this.i.tg = this.i.tg;
|
|
405
405
|
}
|
|
406
406
|
get actualContentPaddingTop() {
|
|
407
|
-
return this.i.tg ? this.i.tg.
|
|
407
|
+
return this.i.tg ? this.i.tg.top : NaN;
|
|
408
408
|
}
|
|
409
409
|
set actualContentPaddingTop(v) {
|
|
410
410
|
this.ensureActualContentPadding();
|
|
411
|
-
this.i.tg.
|
|
412
|
-
this._a("actualContentPaddingTop", this.i.tg.
|
|
411
|
+
this.i.tg.top = +v;
|
|
412
|
+
this._a("actualContentPaddingTop", this.i.tg.top);
|
|
413
413
|
this.i.tg = this.i.tg;
|
|
414
414
|
}
|
|
415
415
|
ensureActualContentPadding() {
|
|
@@ -621,39 +621,39 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
621
621
|
this.i.m4 = new CornerRadius(2);
|
|
622
622
|
}
|
|
623
623
|
get contentPaddingBottom() {
|
|
624
|
-
return this.i.tk ? this.i.tk.
|
|
624
|
+
return this.i.tk ? this.i.tk.bottom : NaN;
|
|
625
625
|
}
|
|
626
626
|
set contentPaddingBottom(v) {
|
|
627
627
|
this.ensureContentPadding();
|
|
628
|
-
this.i.tk.
|
|
629
|
-
this._a("contentPaddingBottom", this.i.tk.
|
|
628
|
+
this.i.tk.bottom = +v;
|
|
629
|
+
this._a("contentPaddingBottom", this.i.tk.bottom);
|
|
630
630
|
this.i.tk = this.i.tk;
|
|
631
631
|
}
|
|
632
632
|
get contentPaddingLeft() {
|
|
633
|
-
return this.i.tk ? this.i.tk.
|
|
633
|
+
return this.i.tk ? this.i.tk.left : NaN;
|
|
634
634
|
}
|
|
635
635
|
set contentPaddingLeft(v) {
|
|
636
636
|
this.ensureContentPadding();
|
|
637
|
-
this.i.tk.
|
|
638
|
-
this._a("contentPaddingLeft", this.i.tk.
|
|
637
|
+
this.i.tk.left = +v;
|
|
638
|
+
this._a("contentPaddingLeft", this.i.tk.left);
|
|
639
639
|
this.i.tk = this.i.tk;
|
|
640
640
|
}
|
|
641
641
|
get contentPaddingRight() {
|
|
642
|
-
return this.i.tk ? this.i.tk.
|
|
642
|
+
return this.i.tk ? this.i.tk.right : NaN;
|
|
643
643
|
}
|
|
644
644
|
set contentPaddingRight(v) {
|
|
645
645
|
this.ensureContentPadding();
|
|
646
|
-
this.i.tk.
|
|
647
|
-
this._a("contentPaddingRight", this.i.tk.
|
|
646
|
+
this.i.tk.right = +v;
|
|
647
|
+
this._a("contentPaddingRight", this.i.tk.right);
|
|
648
648
|
this.i.tk = this.i.tk;
|
|
649
649
|
}
|
|
650
650
|
get contentPaddingTop() {
|
|
651
|
-
return this.i.tk ? this.i.tk.
|
|
651
|
+
return this.i.tk ? this.i.tk.top : NaN;
|
|
652
652
|
}
|
|
653
653
|
set contentPaddingTop(v) {
|
|
654
654
|
this.ensureContentPadding();
|
|
655
|
-
this.i.tk.
|
|
656
|
-
this._a("contentPaddingTop", this.i.tk.
|
|
655
|
+
this.i.tk.top = +v;
|
|
656
|
+
this._a("contentPaddingTop", this.i.tk.top);
|
|
657
657
|
this.i.tk = this.i.tk;
|
|
658
658
|
}
|
|
659
659
|
ensureContentPadding() {
|
|
@@ -875,39 +875,39 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
875
875
|
this.i.nk = new CornerRadius(2);
|
|
876
876
|
}
|
|
877
877
|
get lineTypeContentPaddingBottom() {
|
|
878
|
-
return this.i.t0 ? this.i.t0.
|
|
878
|
+
return this.i.t0 ? this.i.t0.bottom : NaN;
|
|
879
879
|
}
|
|
880
880
|
set lineTypeContentPaddingBottom(v) {
|
|
881
881
|
this.ensureLineTypeContentPadding();
|
|
882
|
-
this.i.t0.
|
|
883
|
-
this._a("lineTypeContentPaddingBottom", this.i.t0.
|
|
882
|
+
this.i.t0.bottom = +v;
|
|
883
|
+
this._a("lineTypeContentPaddingBottom", this.i.t0.bottom);
|
|
884
884
|
this.i.t0 = this.i.t0;
|
|
885
885
|
}
|
|
886
886
|
get lineTypeContentPaddingLeft() {
|
|
887
|
-
return this.i.t0 ? this.i.t0.
|
|
887
|
+
return this.i.t0 ? this.i.t0.left : NaN;
|
|
888
888
|
}
|
|
889
889
|
set lineTypeContentPaddingLeft(v) {
|
|
890
890
|
this.ensureLineTypeContentPadding();
|
|
891
|
-
this.i.t0.
|
|
892
|
-
this._a("lineTypeContentPaddingLeft", this.i.t0.
|
|
891
|
+
this.i.t0.left = +v;
|
|
892
|
+
this._a("lineTypeContentPaddingLeft", this.i.t0.left);
|
|
893
893
|
this.i.t0 = this.i.t0;
|
|
894
894
|
}
|
|
895
895
|
get lineTypeContentPaddingRight() {
|
|
896
|
-
return this.i.t0 ? this.i.t0.
|
|
896
|
+
return this.i.t0 ? this.i.t0.right : NaN;
|
|
897
897
|
}
|
|
898
898
|
set lineTypeContentPaddingRight(v) {
|
|
899
899
|
this.ensureLineTypeContentPadding();
|
|
900
|
-
this.i.t0.
|
|
901
|
-
this._a("lineTypeContentPaddingRight", this.i.t0.
|
|
900
|
+
this.i.t0.right = +v;
|
|
901
|
+
this._a("lineTypeContentPaddingRight", this.i.t0.right);
|
|
902
902
|
this.i.t0 = this.i.t0;
|
|
903
903
|
}
|
|
904
904
|
get lineTypeContentPaddingTop() {
|
|
905
|
-
return this.i.t0 ? this.i.t0.
|
|
905
|
+
return this.i.t0 ? this.i.t0.top : NaN;
|
|
906
906
|
}
|
|
907
907
|
set lineTypeContentPaddingTop(v) {
|
|
908
908
|
this.ensureLineTypeContentPadding();
|
|
909
|
-
this.i.t0.
|
|
910
|
-
this._a("lineTypeContentPaddingTop", this.i.t0.
|
|
909
|
+
this.i.t0.top = +v;
|
|
910
|
+
this._a("lineTypeContentPaddingTop", this.i.t0.top);
|
|
911
911
|
this.i.t0 = this.i.t0;
|
|
912
912
|
}
|
|
913
913
|
ensureLineTypeContentPadding() {
|
|
@@ -1129,39 +1129,39 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
1129
1129
|
this.i.m2 = new CornerRadius(2);
|
|
1130
1130
|
}
|
|
1131
1131
|
get boxTypeContentPaddingBottom() {
|
|
1132
|
-
return this.i.ti ? this.i.ti.
|
|
1132
|
+
return this.i.ti ? this.i.ti.bottom : NaN;
|
|
1133
1133
|
}
|
|
1134
1134
|
set boxTypeContentPaddingBottom(v) {
|
|
1135
1135
|
this.ensureBoxTypeContentPadding();
|
|
1136
|
-
this.i.ti.
|
|
1137
|
-
this._a("boxTypeContentPaddingBottom", this.i.ti.
|
|
1136
|
+
this.i.ti.bottom = +v;
|
|
1137
|
+
this._a("boxTypeContentPaddingBottom", this.i.ti.bottom);
|
|
1138
1138
|
this.i.ti = this.i.ti;
|
|
1139
1139
|
}
|
|
1140
1140
|
get boxTypeContentPaddingLeft() {
|
|
1141
|
-
return this.i.ti ? this.i.ti.
|
|
1141
|
+
return this.i.ti ? this.i.ti.left : NaN;
|
|
1142
1142
|
}
|
|
1143
1143
|
set boxTypeContentPaddingLeft(v) {
|
|
1144
1144
|
this.ensureBoxTypeContentPadding();
|
|
1145
|
-
this.i.ti.
|
|
1146
|
-
this._a("boxTypeContentPaddingLeft", this.i.ti.
|
|
1145
|
+
this.i.ti.left = +v;
|
|
1146
|
+
this._a("boxTypeContentPaddingLeft", this.i.ti.left);
|
|
1147
1147
|
this.i.ti = this.i.ti;
|
|
1148
1148
|
}
|
|
1149
1149
|
get boxTypeContentPaddingRight() {
|
|
1150
|
-
return this.i.ti ? this.i.ti.
|
|
1150
|
+
return this.i.ti ? this.i.ti.right : NaN;
|
|
1151
1151
|
}
|
|
1152
1152
|
set boxTypeContentPaddingRight(v) {
|
|
1153
1153
|
this.ensureBoxTypeContentPadding();
|
|
1154
|
-
this.i.ti.
|
|
1155
|
-
this._a("boxTypeContentPaddingRight", this.i.ti.
|
|
1154
|
+
this.i.ti.right = +v;
|
|
1155
|
+
this._a("boxTypeContentPaddingRight", this.i.ti.right);
|
|
1156
1156
|
this.i.ti = this.i.ti;
|
|
1157
1157
|
}
|
|
1158
1158
|
get boxTypeContentPaddingTop() {
|
|
1159
|
-
return this.i.ti ? this.i.ti.
|
|
1159
|
+
return this.i.ti ? this.i.ti.top : NaN;
|
|
1160
1160
|
}
|
|
1161
1161
|
set boxTypeContentPaddingTop(v) {
|
|
1162
1162
|
this.ensureBoxTypeContentPadding();
|
|
1163
|
-
this.i.ti.
|
|
1164
|
-
this._a("boxTypeContentPaddingTop", this.i.ti.
|
|
1163
|
+
this.i.ti.top = +v;
|
|
1164
|
+
this._a("boxTypeContentPaddingTop", this.i.ti.top);
|
|
1165
1165
|
this.i.ti = this.i.ti;
|
|
1166
1166
|
}
|
|
1167
1167
|
ensureBoxTypeContentPadding() {
|
|
@@ -1383,39 +1383,39 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
1383
1383
|
this.i.m1 = new CornerRadius(2);
|
|
1384
1384
|
}
|
|
1385
1385
|
get borderTypeContentPaddingBottom() {
|
|
1386
|
-
return this.i.th ? this.i.th.
|
|
1386
|
+
return this.i.th ? this.i.th.bottom : NaN;
|
|
1387
1387
|
}
|
|
1388
1388
|
set borderTypeContentPaddingBottom(v) {
|
|
1389
1389
|
this.ensureBorderTypeContentPadding();
|
|
1390
|
-
this.i.th.
|
|
1391
|
-
this._a("borderTypeContentPaddingBottom", this.i.th.
|
|
1390
|
+
this.i.th.bottom = +v;
|
|
1391
|
+
this._a("borderTypeContentPaddingBottom", this.i.th.bottom);
|
|
1392
1392
|
this.i.th = this.i.th;
|
|
1393
1393
|
}
|
|
1394
1394
|
get borderTypeContentPaddingLeft() {
|
|
1395
|
-
return this.i.th ? this.i.th.
|
|
1395
|
+
return this.i.th ? this.i.th.left : NaN;
|
|
1396
1396
|
}
|
|
1397
1397
|
set borderTypeContentPaddingLeft(v) {
|
|
1398
1398
|
this.ensureBorderTypeContentPadding();
|
|
1399
|
-
this.i.th.
|
|
1400
|
-
this._a("borderTypeContentPaddingLeft", this.i.th.
|
|
1399
|
+
this.i.th.left = +v;
|
|
1400
|
+
this._a("borderTypeContentPaddingLeft", this.i.th.left);
|
|
1401
1401
|
this.i.th = this.i.th;
|
|
1402
1402
|
}
|
|
1403
1403
|
get borderTypeContentPaddingRight() {
|
|
1404
|
-
return this.i.th ? this.i.th.
|
|
1404
|
+
return this.i.th ? this.i.th.right : NaN;
|
|
1405
1405
|
}
|
|
1406
1406
|
set borderTypeContentPaddingRight(v) {
|
|
1407
1407
|
this.ensureBorderTypeContentPadding();
|
|
1408
|
-
this.i.th.
|
|
1409
|
-
this._a("borderTypeContentPaddingRight", this.i.th.
|
|
1408
|
+
this.i.th.right = +v;
|
|
1409
|
+
this._a("borderTypeContentPaddingRight", this.i.th.right);
|
|
1410
1410
|
this.i.th = this.i.th;
|
|
1411
1411
|
}
|
|
1412
1412
|
get borderTypeContentPaddingTop() {
|
|
1413
|
-
return this.i.th ? this.i.th.
|
|
1413
|
+
return this.i.th ? this.i.th.top : NaN;
|
|
1414
1414
|
}
|
|
1415
1415
|
set borderTypeContentPaddingTop(v) {
|
|
1416
1416
|
this.ensureBorderTypeContentPadding();
|
|
1417
|
-
this.i.th.
|
|
1418
|
-
this._a("borderTypeContentPaddingTop", this.i.th.
|
|
1417
|
+
this.i.th.top = +v;
|
|
1418
|
+
this._a("borderTypeContentPaddingTop", this.i.th.top);
|
|
1419
1419
|
this.i.th = this.i.th;
|
|
1420
1420
|
}
|
|
1421
1421
|
ensureBorderTypeContentPadding() {
|
|
@@ -1637,39 +1637,39 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
1637
1637
|
this.i.nl = new CornerRadius(2);
|
|
1638
1638
|
}
|
|
1639
1639
|
get searchTypeContentPaddingBottom() {
|
|
1640
|
-
return this.i.t1 ? this.i.t1.
|
|
1640
|
+
return this.i.t1 ? this.i.t1.bottom : NaN;
|
|
1641
1641
|
}
|
|
1642
1642
|
set searchTypeContentPaddingBottom(v) {
|
|
1643
1643
|
this.ensureSearchTypeContentPadding();
|
|
1644
|
-
this.i.t1.
|
|
1645
|
-
this._a("searchTypeContentPaddingBottom", this.i.t1.
|
|
1644
|
+
this.i.t1.bottom = +v;
|
|
1645
|
+
this._a("searchTypeContentPaddingBottom", this.i.t1.bottom);
|
|
1646
1646
|
this.i.t1 = this.i.t1;
|
|
1647
1647
|
}
|
|
1648
1648
|
get searchTypeContentPaddingLeft() {
|
|
1649
|
-
return this.i.t1 ? this.i.t1.
|
|
1649
|
+
return this.i.t1 ? this.i.t1.left : NaN;
|
|
1650
1650
|
}
|
|
1651
1651
|
set searchTypeContentPaddingLeft(v) {
|
|
1652
1652
|
this.ensureSearchTypeContentPadding();
|
|
1653
|
-
this.i.t1.
|
|
1654
|
-
this._a("searchTypeContentPaddingLeft", this.i.t1.
|
|
1653
|
+
this.i.t1.left = +v;
|
|
1654
|
+
this._a("searchTypeContentPaddingLeft", this.i.t1.left);
|
|
1655
1655
|
this.i.t1 = this.i.t1;
|
|
1656
1656
|
}
|
|
1657
1657
|
get searchTypeContentPaddingRight() {
|
|
1658
|
-
return this.i.t1 ? this.i.t1.
|
|
1658
|
+
return this.i.t1 ? this.i.t1.right : NaN;
|
|
1659
1659
|
}
|
|
1660
1660
|
set searchTypeContentPaddingRight(v) {
|
|
1661
1661
|
this.ensureSearchTypeContentPadding();
|
|
1662
|
-
this.i.t1.
|
|
1663
|
-
this._a("searchTypeContentPaddingRight", this.i.t1.
|
|
1662
|
+
this.i.t1.right = +v;
|
|
1663
|
+
this._a("searchTypeContentPaddingRight", this.i.t1.right);
|
|
1664
1664
|
this.i.t1 = this.i.t1;
|
|
1665
1665
|
}
|
|
1666
1666
|
get searchTypeContentPaddingTop() {
|
|
1667
|
-
return this.i.t1 ? this.i.t1.
|
|
1667
|
+
return this.i.t1 ? this.i.t1.top : NaN;
|
|
1668
1668
|
}
|
|
1669
1669
|
set searchTypeContentPaddingTop(v) {
|
|
1670
1670
|
this.ensureSearchTypeContentPadding();
|
|
1671
|
-
this.i.t1.
|
|
1672
|
-
this._a("searchTypeContentPaddingTop", this.i.t1.
|
|
1671
|
+
this.i.t1.top = +v;
|
|
1672
|
+
this._a("searchTypeContentPaddingTop", this.i.t1.top);
|
|
1673
1673
|
this.i.t1 = this.i.t1;
|
|
1674
1674
|
}
|
|
1675
1675
|
ensureSearchTypeContentPadding() {
|
|
@@ -142,7 +142,7 @@ var ButtonView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
142
142
|
this.n.append(d);
|
|
143
143
|
var h = this.k.createElement("div");
|
|
144
144
|
h.addClass("ig-button-content");
|
|
145
|
-
h.setStyleProperty("font-family", "
|
|
145
|
+
h.setStyleProperty("font-family", "Verdana");
|
|
146
146
|
h.setStyleProperty("font-weight", "400");
|
|
147
147
|
h.setStyleProperty("font-size", ".875rem");
|
|
148
148
|
h.setStyleProperty("cursor", "pointer");
|
|
@@ -154,7 +154,7 @@ var CalendarView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
154
154
|
c.setStyleProperty("border-color", "rgb(163, 172, 184)");
|
|
155
155
|
var d = this.m.createElement("span");
|
|
156
156
|
d.setAttribute("aria-hidden", "true");
|
|
157
|
-
d.setStyleProperty("font", "14px
|
|
157
|
+
d.setStyleProperty("font", "14px Verdana");
|
|
158
158
|
d.setStyleProperty("color", "rgb(24, 29, 31)");
|
|
159
159
|
c.append(d);
|
|
160
160
|
this.i.add(d);
|
|
@@ -244,7 +244,7 @@ var CalendarView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
244
244
|
l.setStyleProperty("vertical-align", "middle");
|
|
245
245
|
l.setStyleProperty("width", "12%");
|
|
246
246
|
var m = this.m.createElement("span");
|
|
247
|
-
m.setStyleProperty("font", "16px
|
|
247
|
+
m.setStyleProperty("font", "16px Verdana");
|
|
248
248
|
m.setStyleProperty("color", "rgb(24, 29, 31)");
|
|
249
249
|
l.append(m);
|
|
250
250
|
this.e.add(m);
|
|
@@ -174,7 +174,7 @@ var CheckboxView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
174
174
|
d.append(h);
|
|
175
175
|
var l = this.l.createElement("span");
|
|
176
176
|
l.addClass("ig-checkbox-label");
|
|
177
|
-
l.setStyleProperty("font-family", "
|
|
177
|
+
l.setStyleProperty("font-family", "Verdana");
|
|
178
178
|
l.setStyleProperty("font-weight", "400");
|
|
179
179
|
l.setStyleProperty("font-size", "1rem");
|
|
180
180
|
l.setStyleProperty("letter-spacing", ".00937rem");
|
|
@@ -88,6 +88,7 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
88
88
|
this.g = this.d.createElement("div");
|
|
89
89
|
this.g.setAttribute("aria-hidden", "true");
|
|
90
90
|
this.f = this.d.createElement("div");
|
|
91
|
+
this.g.setStyleProperty("padding-right", "2px");
|
|
91
92
|
this.i = this.d.createElement("div");
|
|
92
93
|
this.i.setAttribute("aria-hidden", "true");
|
|
93
94
|
this.h = this.d.createElement("div");
|
|
@@ -223,6 +224,9 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
223
224
|
return this.e;
|
|
224
225
|
};
|
|
225
226
|
DatePickerView.prototype.y = function (a) {
|
|
227
|
+
if (this.b.aq == true) {
|
|
228
|
+
return;
|
|
229
|
+
}
|
|
226
230
|
this.b.cb();
|
|
227
231
|
if (this.f != null) {
|
|
228
232
|
this.f.hide();
|
|
@@ -319,7 +323,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
319
323
|
_this.az = dateMinValue();
|
|
320
324
|
_this.ay = dateMinValue();
|
|
321
325
|
_this.a9 = "";
|
|
322
|
-
_this.
|
|
326
|
+
_this.da = BrushUtil.g(255, 24, 29, 31);
|
|
323
327
|
_this.z = null;
|
|
324
328
|
_this.bb = "";
|
|
325
329
|
_this.aw = dateMinValue();
|
|
@@ -327,8 +331,8 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
327
331
|
_this.x = 2;
|
|
328
332
|
_this.v = 1;
|
|
329
333
|
_this.aa = null;
|
|
330
|
-
_this.
|
|
331
|
-
_this.
|
|
334
|
+
_this.db = BrushUtil.g(255, 24, 29, 31);
|
|
335
|
+
_this.c9 = BrushUtil.g(255, 163, 172, 184);
|
|
332
336
|
_this.ak = true;
|
|
333
337
|
_this.al = false;
|
|
334
338
|
_this.ag = true;
|
|
@@ -356,7 +360,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
356
360
|
this.ah = true;
|
|
357
361
|
this.cc();
|
|
358
362
|
}
|
|
359
|
-
this.
|
|
363
|
+
this.c4();
|
|
360
364
|
if (this.selectedValueChanged != null) {
|
|
361
365
|
this.selectedValueChanged(this, ((function () {
|
|
362
366
|
var $ret = new SelectedValueChangedEventArgs();
|
|
@@ -382,6 +386,9 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
382
386
|
DatePicker.prototype.provideContainer = function (a) {
|
|
383
387
|
this.h.af(a);
|
|
384
388
|
};
|
|
389
|
+
DatePicker.prototype.setName = function (a) {
|
|
390
|
+
this.o.e = a;
|
|
391
|
+
};
|
|
385
392
|
Object.defineProperty(DatePicker.prototype, "af", {
|
|
386
393
|
get: function () {
|
|
387
394
|
if (this.ae == null) {
|
|
@@ -436,14 +443,14 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
436
443
|
enumerable: true,
|
|
437
444
|
configurable: true
|
|
438
445
|
});
|
|
439
|
-
Object.defineProperty(DatePicker.prototype, "
|
|
446
|
+
Object.defineProperty(DatePicker.prototype, "dd", {
|
|
440
447
|
get: function () {
|
|
441
|
-
return this.
|
|
448
|
+
return this.da;
|
|
442
449
|
},
|
|
443
450
|
set: function (a) {
|
|
444
|
-
var b = this.
|
|
445
|
-
this.
|
|
446
|
-
if (b != this.
|
|
451
|
+
var b = this.da;
|
|
452
|
+
this.da = a;
|
|
453
|
+
if (b != this.da) {
|
|
447
454
|
this.cu("LabelTextColor", b, a);
|
|
448
455
|
}
|
|
449
456
|
},
|
|
@@ -548,29 +555,29 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
548
555
|
enumerable: true,
|
|
549
556
|
configurable: true
|
|
550
557
|
});
|
|
551
|
-
Object.defineProperty(DatePicker.prototype, "
|
|
558
|
+
Object.defineProperty(DatePicker.prototype, "de", {
|
|
552
559
|
get: function () {
|
|
553
|
-
return this.
|
|
560
|
+
return this.db;
|
|
554
561
|
},
|
|
555
562
|
set: function (a) {
|
|
556
|
-
var b = this.
|
|
557
|
-
this.
|
|
558
|
-
if (b != this.
|
|
559
|
-
this.cu("TextColor", b, this.
|
|
563
|
+
var b = this.db;
|
|
564
|
+
this.db = a;
|
|
565
|
+
if (b != this.db) {
|
|
566
|
+
this.cu("TextColor", b, this.db);
|
|
560
567
|
}
|
|
561
568
|
},
|
|
562
569
|
enumerable: true,
|
|
563
570
|
configurable: true
|
|
564
571
|
});
|
|
565
|
-
Object.defineProperty(DatePicker.prototype, "
|
|
572
|
+
Object.defineProperty(DatePicker.prototype, "dc", {
|
|
566
573
|
get: function () {
|
|
567
|
-
return this.
|
|
574
|
+
return this.c9;
|
|
568
575
|
},
|
|
569
576
|
set: function (a) {
|
|
570
|
-
var b = this.
|
|
571
|
-
this.
|
|
572
|
-
if (b != this.
|
|
573
|
-
this.cu("IconColor", b, this.
|
|
577
|
+
var b = this.c9;
|
|
578
|
+
this.c9 = a;
|
|
579
|
+
if (b != this.c9) {
|
|
580
|
+
this.cu("IconColor", b, this.c9);
|
|
574
581
|
}
|
|
575
582
|
},
|
|
576
583
|
enumerable: true,
|
|
@@ -728,7 +735,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
728
735
|
this.c0();
|
|
729
736
|
break;
|
|
730
737
|
case "BaseTheme":
|
|
731
|
-
this.
|
|
738
|
+
this.c2();
|
|
732
739
|
break;
|
|
733
740
|
case "Value":
|
|
734
741
|
if (+(this.value) != +(dateMinValue())) {
|
|
@@ -796,7 +803,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
796
803
|
}
|
|
797
804
|
break;
|
|
798
805
|
case "TextStyle":
|
|
799
|
-
this.
|
|
806
|
+
this.c5();
|
|
800
807
|
break;
|
|
801
808
|
case "ShowClearButton":
|
|
802
809
|
if (this.o != null) {
|
|
@@ -809,7 +816,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
809
816
|
case "LabelTextStyle":
|
|
810
817
|
case "TextColor":
|
|
811
818
|
case "IconColor":
|
|
812
|
-
this.
|
|
819
|
+
this.c6();
|
|
813
820
|
break;
|
|
814
821
|
case "ShowTodayButton":
|
|
815
822
|
if (this.c != null) {
|
|
@@ -824,11 +831,11 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
824
831
|
case "OpenOnFocus": break;
|
|
825
832
|
case "DateFormat":
|
|
826
833
|
this.a.k(this.e);
|
|
827
|
-
this.
|
|
834
|
+
this.c4();
|
|
828
835
|
break;
|
|
829
836
|
case "FormatString":
|
|
830
837
|
this.ca();
|
|
831
|
-
this.
|
|
838
|
+
this.c4();
|
|
832
839
|
break;
|
|
833
840
|
case "FirstDayOfWeek":
|
|
834
841
|
if (this.c != null) {
|
|
@@ -944,26 +951,26 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
944
951
|
}
|
|
945
952
|
}
|
|
946
953
|
};
|
|
947
|
-
DatePicker.prototype.
|
|
954
|
+
DatePicker.prototype.c6 = function () {
|
|
948
955
|
if (this.o != null) {
|
|
949
|
-
this.o.dy = this.
|
|
956
|
+
this.o.dy = this.de;
|
|
950
957
|
}
|
|
951
958
|
if (this.m != null) {
|
|
952
|
-
this.m.fill = this.
|
|
959
|
+
this.m.fill = this.dc;
|
|
953
960
|
}
|
|
954
961
|
if (this.n != null) {
|
|
955
|
-
this.n.fill = this.
|
|
962
|
+
this.n.fill = this.dc;
|
|
956
963
|
}
|
|
957
964
|
if (this.r != null) {
|
|
958
|
-
this.r.df = this.
|
|
965
|
+
this.r.df = this.dd;
|
|
959
966
|
this.r.y = this.ac;
|
|
960
967
|
}
|
|
961
968
|
};
|
|
962
|
-
DatePicker.prototype.
|
|
969
|
+
DatePicker.prototype.c3 = function () {
|
|
963
970
|
if (this.q != null) {
|
|
964
971
|
}
|
|
965
972
|
};
|
|
966
|
-
DatePicker.prototype.
|
|
973
|
+
DatePicker.prototype.c5 = function () {
|
|
967
974
|
if (this.aa != null) {
|
|
968
975
|
this.o.ac = this.aa;
|
|
969
976
|
}
|
|
@@ -976,7 +983,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
976
983
|
this.q.n = this.y;
|
|
977
984
|
this.r = new XLabel();
|
|
978
985
|
this.h.al(this.r);
|
|
979
|
-
this.r.df = this.
|
|
986
|
+
this.r.df = this.dd;
|
|
980
987
|
this.r.y = this.ac;
|
|
981
988
|
this.q.appendContentChild(this.h.u());
|
|
982
989
|
if (this.bs != null && this.bs != "") {
|
|
@@ -990,7 +997,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
990
997
|
this.o.ac = this.aa;
|
|
991
998
|
}
|
|
992
999
|
this.o.disabled = !this.ap;
|
|
993
|
-
this.o.dy = this.
|
|
1000
|
+
this.o.dy = this.de;
|
|
994
1001
|
this.q.appendContentChild(this.h.t());
|
|
995
1002
|
this.q.inputs.add(this.o);
|
|
996
1003
|
this.o.cb = this.bz;
|
|
@@ -1006,17 +1013,17 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1006
1013
|
this.m = new XIcon();
|
|
1007
1014
|
this.h.ai(this.m, this.h.p());
|
|
1008
1015
|
this.m.svgPath = DatePicker.bh;
|
|
1009
|
-
this.m.fill = this.
|
|
1016
|
+
this.m.fill = this.dc;
|
|
1010
1017
|
d.appendContentChild(this.h.p());
|
|
1011
1018
|
this.q.appendContentChild(this.h.q());
|
|
1012
1019
|
this.q.inputs.add(d);
|
|
1013
|
-
this.
|
|
1020
|
+
this.c4();
|
|
1014
1021
|
var e = new XSuffix();
|
|
1015
1022
|
this.h.an(e, this.h.s());
|
|
1016
1023
|
this.n = new XIcon();
|
|
1017
1024
|
this.h.ai(this.n, this.h.r());
|
|
1018
1025
|
this.n.svgPath = DatePicker.bg;
|
|
1019
|
-
this.n.fill = this.
|
|
1026
|
+
this.n.fill = this.dc;
|
|
1020
1027
|
e.appendContentChild(this.h.r());
|
|
1021
1028
|
this.q.appendContentChild(this.h.s());
|
|
1022
1029
|
this.q.inputs.add(e);
|
|
@@ -1032,7 +1039,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1032
1039
|
case 9:
|
|
1033
1040
|
this.an = true;
|
|
1034
1041
|
if (!this.ao) {
|
|
1035
|
-
this.
|
|
1042
|
+
this.c8(this.o.cj);
|
|
1036
1043
|
}
|
|
1037
1044
|
this.ah = true;
|
|
1038
1045
|
this.cc();
|
|
@@ -1041,7 +1048,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1041
1048
|
case 13:
|
|
1042
1049
|
this.an = true;
|
|
1043
1050
|
if (!this.ao) {
|
|
1044
|
-
this.
|
|
1051
|
+
this.c8(this.o.cj);
|
|
1045
1052
|
}
|
|
1046
1053
|
this.ah = true;
|
|
1047
1054
|
this.cc();
|
|
@@ -1071,10 +1078,10 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1071
1078
|
};
|
|
1072
1079
|
DatePicker.prototype.ck = function (a, b) {
|
|
1073
1080
|
this.ao = true;
|
|
1074
|
-
this.
|
|
1081
|
+
this.c8(b.value);
|
|
1075
1082
|
this.ao = false;
|
|
1076
1083
|
};
|
|
1077
|
-
DatePicker.prototype.
|
|
1084
|
+
DatePicker.prototype.c8 = function (a) {
|
|
1078
1085
|
var b = ['/', '-', ' ', '.', ','];
|
|
1079
1086
|
var c = stringSplit(a, b, 1);
|
|
1080
1087
|
var d = 0;
|
|
@@ -1193,10 +1200,10 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1193
1200
|
var ah = Base.compareSimple(ag, this.a1);
|
|
1194
1201
|
var ai = Base.compareSimple(ag, this.a0);
|
|
1195
1202
|
if (ah < 0 || ai > 0) {
|
|
1196
|
-
this.
|
|
1203
|
+
this.c4();
|
|
1197
1204
|
}
|
|
1198
1205
|
else {
|
|
1199
|
-
this.
|
|
1206
|
+
this.c7(ag);
|
|
1200
1207
|
this.h.ao();
|
|
1201
1208
|
}
|
|
1202
1209
|
}
|
|
@@ -1205,15 +1212,15 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1205
1212
|
this.cb();
|
|
1206
1213
|
}
|
|
1207
1214
|
else {
|
|
1208
|
-
this.
|
|
1215
|
+
this.c4();
|
|
1209
1216
|
}
|
|
1210
1217
|
}
|
|
1211
1218
|
};
|
|
1212
|
-
DatePicker.prototype.
|
|
1219
|
+
DatePicker.prototype.c7 = function (a) {
|
|
1213
1220
|
var b = this.value;
|
|
1214
1221
|
this.value = a;
|
|
1215
1222
|
};
|
|
1216
|
-
DatePicker.prototype.
|
|
1223
|
+
DatePicker.prototype.c4 = function () {
|
|
1217
1224
|
if (this.o != null) {
|
|
1218
1225
|
if (+(this.az) != +(dateMinValue())) {
|
|
1219
1226
|
var a = "";
|
|
@@ -1403,6 +1410,9 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1403
1410
|
}
|
|
1404
1411
|
};
|
|
1405
1412
|
DatePicker.prototype.cb = function () {
|
|
1413
|
+
if (this.aq == true) {
|
|
1414
|
+
return;
|
|
1415
|
+
}
|
|
1406
1416
|
if (this.o != null) {
|
|
1407
1417
|
this.o.cj = "";
|
|
1408
1418
|
}
|
|
@@ -1541,7 +1551,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1541
1551
|
var a = new LostFocusEventArgs();
|
|
1542
1552
|
this.ct(a);
|
|
1543
1553
|
};
|
|
1544
|
-
DatePicker.prototype.
|
|
1554
|
+
DatePicker.prototype.c2 = function () {
|
|
1545
1555
|
};
|
|
1546
1556
|
DatePicker.prototype.c0 = function () {
|
|
1547
1557
|
};
|