igniteui-webcomponents-inputs 1.4.2 → 3.2.2
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 +188 -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 +67 -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 +64 -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 +191 -163
- package/fesm5/igniteui-webcomponents-inputs.js +188 -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");
|
|
@@ -203,6 +204,12 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
203
204
|
else {
|
|
204
205
|
this.e.parent().parent().setStyleProperty("max-width", "232px");
|
|
205
206
|
}
|
|
207
|
+
if (this.b.at == true) {
|
|
208
|
+
this.e.parent().parent().setStyleProperty("height", "270px");
|
|
209
|
+
}
|
|
210
|
+
else {
|
|
211
|
+
this.e.parent().parent().setStyleProperty("height", "234px");
|
|
212
|
+
}
|
|
206
213
|
}
|
|
207
214
|
};
|
|
208
215
|
DatePickerView.prototype.am = function (a) {
|
|
@@ -223,6 +230,9 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
223
230
|
return this.e;
|
|
224
231
|
};
|
|
225
232
|
DatePickerView.prototype.y = function (a) {
|
|
233
|
+
if (this.b.aq == true) {
|
|
234
|
+
return;
|
|
235
|
+
}
|
|
226
236
|
this.b.cb();
|
|
227
237
|
if (this.f != null) {
|
|
228
238
|
this.f.hide();
|
|
@@ -319,7 +329,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
319
329
|
_this.az = dateMinValue();
|
|
320
330
|
_this.ay = dateMinValue();
|
|
321
331
|
_this.a9 = "";
|
|
322
|
-
_this.
|
|
332
|
+
_this.da = BrushUtil.g(255, 24, 29, 31);
|
|
323
333
|
_this.z = null;
|
|
324
334
|
_this.bb = "";
|
|
325
335
|
_this.aw = dateMinValue();
|
|
@@ -327,8 +337,8 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
327
337
|
_this.x = 2;
|
|
328
338
|
_this.v = 1;
|
|
329
339
|
_this.aa = null;
|
|
330
|
-
_this.
|
|
331
|
-
_this.
|
|
340
|
+
_this.db = BrushUtil.g(255, 24, 29, 31);
|
|
341
|
+
_this.c9 = BrushUtil.g(255, 163, 172, 184);
|
|
332
342
|
_this.ak = true;
|
|
333
343
|
_this.al = false;
|
|
334
344
|
_this.ag = true;
|
|
@@ -356,7 +366,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
356
366
|
this.ah = true;
|
|
357
367
|
this.cc();
|
|
358
368
|
}
|
|
359
|
-
this.
|
|
369
|
+
this.c4();
|
|
360
370
|
if (this.selectedValueChanged != null) {
|
|
361
371
|
this.selectedValueChanged(this, ((function () {
|
|
362
372
|
var $ret = new SelectedValueChangedEventArgs();
|
|
@@ -382,6 +392,9 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
382
392
|
DatePicker.prototype.provideContainer = function (a) {
|
|
383
393
|
this.h.af(a);
|
|
384
394
|
};
|
|
395
|
+
DatePicker.prototype.setName = function (a) {
|
|
396
|
+
this.o.e = a;
|
|
397
|
+
};
|
|
385
398
|
Object.defineProperty(DatePicker.prototype, "af", {
|
|
386
399
|
get: function () {
|
|
387
400
|
if (this.ae == null) {
|
|
@@ -436,14 +449,14 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
436
449
|
enumerable: true,
|
|
437
450
|
configurable: true
|
|
438
451
|
});
|
|
439
|
-
Object.defineProperty(DatePicker.prototype, "
|
|
452
|
+
Object.defineProperty(DatePicker.prototype, "dd", {
|
|
440
453
|
get: function () {
|
|
441
|
-
return this.
|
|
454
|
+
return this.da;
|
|
442
455
|
},
|
|
443
456
|
set: function (a) {
|
|
444
|
-
var b = this.
|
|
445
|
-
this.
|
|
446
|
-
if (b != this.
|
|
457
|
+
var b = this.da;
|
|
458
|
+
this.da = a;
|
|
459
|
+
if (b != this.da) {
|
|
447
460
|
this.cu("LabelTextColor", b, a);
|
|
448
461
|
}
|
|
449
462
|
},
|
|
@@ -548,29 +561,29 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
548
561
|
enumerable: true,
|
|
549
562
|
configurable: true
|
|
550
563
|
});
|
|
551
|
-
Object.defineProperty(DatePicker.prototype, "
|
|
564
|
+
Object.defineProperty(DatePicker.prototype, "de", {
|
|
552
565
|
get: function () {
|
|
553
|
-
return this.
|
|
566
|
+
return this.db;
|
|
554
567
|
},
|
|
555
568
|
set: function (a) {
|
|
556
|
-
var b = this.
|
|
557
|
-
this.
|
|
558
|
-
if (b != this.
|
|
559
|
-
this.cu("TextColor", b, this.
|
|
569
|
+
var b = this.db;
|
|
570
|
+
this.db = a;
|
|
571
|
+
if (b != this.db) {
|
|
572
|
+
this.cu("TextColor", b, this.db);
|
|
560
573
|
}
|
|
561
574
|
},
|
|
562
575
|
enumerable: true,
|
|
563
576
|
configurable: true
|
|
564
577
|
});
|
|
565
|
-
Object.defineProperty(DatePicker.prototype, "
|
|
578
|
+
Object.defineProperty(DatePicker.prototype, "dc", {
|
|
566
579
|
get: function () {
|
|
567
|
-
return this.
|
|
580
|
+
return this.c9;
|
|
568
581
|
},
|
|
569
582
|
set: function (a) {
|
|
570
|
-
var b = this.
|
|
571
|
-
this.
|
|
572
|
-
if (b != this.
|
|
573
|
-
this.cu("IconColor", b, this.
|
|
583
|
+
var b = this.c9;
|
|
584
|
+
this.c9 = a;
|
|
585
|
+
if (b != this.c9) {
|
|
586
|
+
this.cu("IconColor", b, this.c9);
|
|
574
587
|
}
|
|
575
588
|
},
|
|
576
589
|
enumerable: true,
|
|
@@ -728,7 +741,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
728
741
|
this.c0();
|
|
729
742
|
break;
|
|
730
743
|
case "BaseTheme":
|
|
731
|
-
this.
|
|
744
|
+
this.c2();
|
|
732
745
|
break;
|
|
733
746
|
case "Value":
|
|
734
747
|
if (+(this.value) != +(dateMinValue())) {
|
|
@@ -796,7 +809,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
796
809
|
}
|
|
797
810
|
break;
|
|
798
811
|
case "TextStyle":
|
|
799
|
-
this.
|
|
812
|
+
this.c5();
|
|
800
813
|
break;
|
|
801
814
|
case "ShowClearButton":
|
|
802
815
|
if (this.o != null) {
|
|
@@ -809,7 +822,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
809
822
|
case "LabelTextStyle":
|
|
810
823
|
case "TextColor":
|
|
811
824
|
case "IconColor":
|
|
812
|
-
this.
|
|
825
|
+
this.c6();
|
|
813
826
|
break;
|
|
814
827
|
case "ShowTodayButton":
|
|
815
828
|
if (this.c != null) {
|
|
@@ -824,11 +837,11 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
824
837
|
case "OpenOnFocus": break;
|
|
825
838
|
case "DateFormat":
|
|
826
839
|
this.a.k(this.e);
|
|
827
|
-
this.
|
|
840
|
+
this.c4();
|
|
828
841
|
break;
|
|
829
842
|
case "FormatString":
|
|
830
843
|
this.ca();
|
|
831
|
-
this.
|
|
844
|
+
this.c4();
|
|
832
845
|
break;
|
|
833
846
|
case "FirstDayOfWeek":
|
|
834
847
|
if (this.c != null) {
|
|
@@ -944,26 +957,26 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
944
957
|
}
|
|
945
958
|
}
|
|
946
959
|
};
|
|
947
|
-
DatePicker.prototype.
|
|
960
|
+
DatePicker.prototype.c6 = function () {
|
|
948
961
|
if (this.o != null) {
|
|
949
|
-
this.o.dy = this.
|
|
962
|
+
this.o.dy = this.de;
|
|
950
963
|
}
|
|
951
964
|
if (this.m != null) {
|
|
952
|
-
this.m.fill = this.
|
|
965
|
+
this.m.fill = this.dc;
|
|
953
966
|
}
|
|
954
967
|
if (this.n != null) {
|
|
955
|
-
this.n.fill = this.
|
|
968
|
+
this.n.fill = this.dc;
|
|
956
969
|
}
|
|
957
970
|
if (this.r != null) {
|
|
958
|
-
this.r.df = this.
|
|
971
|
+
this.r.df = this.dd;
|
|
959
972
|
this.r.y = this.ac;
|
|
960
973
|
}
|
|
961
974
|
};
|
|
962
|
-
DatePicker.prototype.
|
|
975
|
+
DatePicker.prototype.c3 = function () {
|
|
963
976
|
if (this.q != null) {
|
|
964
977
|
}
|
|
965
978
|
};
|
|
966
|
-
DatePicker.prototype.
|
|
979
|
+
DatePicker.prototype.c5 = function () {
|
|
967
980
|
if (this.aa != null) {
|
|
968
981
|
this.o.ac = this.aa;
|
|
969
982
|
}
|
|
@@ -976,7 +989,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
976
989
|
this.q.n = this.y;
|
|
977
990
|
this.r = new XLabel();
|
|
978
991
|
this.h.al(this.r);
|
|
979
|
-
this.r.df = this.
|
|
992
|
+
this.r.df = this.dd;
|
|
980
993
|
this.r.y = this.ac;
|
|
981
994
|
this.q.appendContentChild(this.h.u());
|
|
982
995
|
if (this.bs != null && this.bs != "") {
|
|
@@ -990,7 +1003,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
990
1003
|
this.o.ac = this.aa;
|
|
991
1004
|
}
|
|
992
1005
|
this.o.disabled = !this.ap;
|
|
993
|
-
this.o.dy = this.
|
|
1006
|
+
this.o.dy = this.de;
|
|
994
1007
|
this.q.appendContentChild(this.h.t());
|
|
995
1008
|
this.q.inputs.add(this.o);
|
|
996
1009
|
this.o.cb = this.bz;
|
|
@@ -1006,17 +1019,17 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1006
1019
|
this.m = new XIcon();
|
|
1007
1020
|
this.h.ai(this.m, this.h.p());
|
|
1008
1021
|
this.m.svgPath = DatePicker.bh;
|
|
1009
|
-
this.m.fill = this.
|
|
1022
|
+
this.m.fill = this.dc;
|
|
1010
1023
|
d.appendContentChild(this.h.p());
|
|
1011
1024
|
this.q.appendContentChild(this.h.q());
|
|
1012
1025
|
this.q.inputs.add(d);
|
|
1013
|
-
this.
|
|
1026
|
+
this.c4();
|
|
1014
1027
|
var e = new XSuffix();
|
|
1015
1028
|
this.h.an(e, this.h.s());
|
|
1016
1029
|
this.n = new XIcon();
|
|
1017
1030
|
this.h.ai(this.n, this.h.r());
|
|
1018
1031
|
this.n.svgPath = DatePicker.bg;
|
|
1019
|
-
this.n.fill = this.
|
|
1032
|
+
this.n.fill = this.dc;
|
|
1020
1033
|
e.appendContentChild(this.h.r());
|
|
1021
1034
|
this.q.appendContentChild(this.h.s());
|
|
1022
1035
|
this.q.inputs.add(e);
|
|
@@ -1032,7 +1045,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1032
1045
|
case 9:
|
|
1033
1046
|
this.an = true;
|
|
1034
1047
|
if (!this.ao) {
|
|
1035
|
-
this.
|
|
1048
|
+
this.c8(this.o.cj);
|
|
1036
1049
|
}
|
|
1037
1050
|
this.ah = true;
|
|
1038
1051
|
this.cc();
|
|
@@ -1041,7 +1054,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1041
1054
|
case 13:
|
|
1042
1055
|
this.an = true;
|
|
1043
1056
|
if (!this.ao) {
|
|
1044
|
-
this.
|
|
1057
|
+
this.c8(this.o.cj);
|
|
1045
1058
|
}
|
|
1046
1059
|
this.ah = true;
|
|
1047
1060
|
this.cc();
|
|
@@ -1071,10 +1084,10 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1071
1084
|
};
|
|
1072
1085
|
DatePicker.prototype.ck = function (a, b) {
|
|
1073
1086
|
this.ao = true;
|
|
1074
|
-
this.
|
|
1087
|
+
this.c8(b.value);
|
|
1075
1088
|
this.ao = false;
|
|
1076
1089
|
};
|
|
1077
|
-
DatePicker.prototype.
|
|
1090
|
+
DatePicker.prototype.c8 = function (a) {
|
|
1078
1091
|
var b = ['/', '-', ' ', '.', ','];
|
|
1079
1092
|
var c = stringSplit(a, b, 1);
|
|
1080
1093
|
var d = 0;
|
|
@@ -1193,10 +1206,10 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1193
1206
|
var ah = Base.compareSimple(ag, this.a1);
|
|
1194
1207
|
var ai = Base.compareSimple(ag, this.a0);
|
|
1195
1208
|
if (ah < 0 || ai > 0) {
|
|
1196
|
-
this.
|
|
1209
|
+
this.c4();
|
|
1197
1210
|
}
|
|
1198
1211
|
else {
|
|
1199
|
-
this.
|
|
1212
|
+
this.c7(ag);
|
|
1200
1213
|
this.h.ao();
|
|
1201
1214
|
}
|
|
1202
1215
|
}
|
|
@@ -1205,15 +1218,15 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1205
1218
|
this.cb();
|
|
1206
1219
|
}
|
|
1207
1220
|
else {
|
|
1208
|
-
this.
|
|
1221
|
+
this.c4();
|
|
1209
1222
|
}
|
|
1210
1223
|
}
|
|
1211
1224
|
};
|
|
1212
|
-
DatePicker.prototype.
|
|
1225
|
+
DatePicker.prototype.c7 = function (a) {
|
|
1213
1226
|
var b = this.value;
|
|
1214
1227
|
this.value = a;
|
|
1215
1228
|
};
|
|
1216
|
-
DatePicker.prototype.
|
|
1229
|
+
DatePicker.prototype.c4 = function () {
|
|
1217
1230
|
if (this.o != null) {
|
|
1218
1231
|
if (+(this.az) != +(dateMinValue())) {
|
|
1219
1232
|
var a = "";
|
|
@@ -1403,6 +1416,9 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1403
1416
|
}
|
|
1404
1417
|
};
|
|
1405
1418
|
DatePicker.prototype.cb = function () {
|
|
1419
|
+
if (this.aq == true) {
|
|
1420
|
+
return;
|
|
1421
|
+
}
|
|
1406
1422
|
if (this.o != null) {
|
|
1407
1423
|
this.o.cj = "";
|
|
1408
1424
|
}
|
|
@@ -1541,7 +1557,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1541
1557
|
var a = new LostFocusEventArgs();
|
|
1542
1558
|
this.ct(a);
|
|
1543
1559
|
};
|
|
1544
|
-
DatePicker.prototype.
|
|
1560
|
+
DatePicker.prototype.c2 = function () {
|
|
1545
1561
|
};
|
|
1546
1562
|
DatePicker.prototype.c0 = function () {
|
|
1547
1563
|
};
|