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
|
@@ -462,12 +462,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
462
462
|
};
|
|
463
463
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "actualContentPaddingBottom", {
|
|
464
464
|
get: function () {
|
|
465
|
-
return this.i.tg ? this.i.tg.
|
|
465
|
+
return this.i.tg ? this.i.tg.bottom : NaN;
|
|
466
466
|
},
|
|
467
467
|
set: function (v) {
|
|
468
468
|
this.ensureActualContentPadding();
|
|
469
|
-
this.i.tg.
|
|
470
|
-
this._a("actualContentPaddingBottom", this.i.tg.
|
|
469
|
+
this.i.tg.bottom = +v;
|
|
470
|
+
this._a("actualContentPaddingBottom", this.i.tg.bottom);
|
|
471
471
|
this.i.tg = this.i.tg;
|
|
472
472
|
},
|
|
473
473
|
enumerable: true,
|
|
@@ -475,12 +475,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
475
475
|
});
|
|
476
476
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "actualContentPaddingLeft", {
|
|
477
477
|
get: function () {
|
|
478
|
-
return this.i.tg ? this.i.tg.
|
|
478
|
+
return this.i.tg ? this.i.tg.left : NaN;
|
|
479
479
|
},
|
|
480
480
|
set: function (v) {
|
|
481
481
|
this.ensureActualContentPadding();
|
|
482
|
-
this.i.tg.
|
|
483
|
-
this._a("actualContentPaddingLeft", this.i.tg.
|
|
482
|
+
this.i.tg.left = +v;
|
|
483
|
+
this._a("actualContentPaddingLeft", this.i.tg.left);
|
|
484
484
|
this.i.tg = this.i.tg;
|
|
485
485
|
},
|
|
486
486
|
enumerable: true,
|
|
@@ -488,12 +488,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
488
488
|
});
|
|
489
489
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "actualContentPaddingRight", {
|
|
490
490
|
get: function () {
|
|
491
|
-
return this.i.tg ? this.i.tg.
|
|
491
|
+
return this.i.tg ? this.i.tg.right : NaN;
|
|
492
492
|
},
|
|
493
493
|
set: function (v) {
|
|
494
494
|
this.ensureActualContentPadding();
|
|
495
|
-
this.i.tg.
|
|
496
|
-
this._a("actualContentPaddingRight", this.i.tg.
|
|
495
|
+
this.i.tg.right = +v;
|
|
496
|
+
this._a("actualContentPaddingRight", this.i.tg.right);
|
|
497
497
|
this.i.tg = this.i.tg;
|
|
498
498
|
},
|
|
499
499
|
enumerable: true,
|
|
@@ -501,12 +501,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
501
501
|
});
|
|
502
502
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "actualContentPaddingTop", {
|
|
503
503
|
get: function () {
|
|
504
|
-
return this.i.tg ? this.i.tg.
|
|
504
|
+
return this.i.tg ? this.i.tg.top : NaN;
|
|
505
505
|
},
|
|
506
506
|
set: function (v) {
|
|
507
507
|
this.ensureActualContentPadding();
|
|
508
|
-
this.i.tg.
|
|
509
|
-
this._a("actualContentPaddingTop", this.i.tg.
|
|
508
|
+
this.i.tg.top = +v;
|
|
509
|
+
this._a("actualContentPaddingTop", this.i.tg.top);
|
|
510
510
|
this.i.tg = this.i.tg;
|
|
511
511
|
},
|
|
512
512
|
enumerable: true,
|
|
@@ -802,12 +802,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
802
802
|
};
|
|
803
803
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "contentPaddingBottom", {
|
|
804
804
|
get: function () {
|
|
805
|
-
return this.i.tk ? this.i.tk.
|
|
805
|
+
return this.i.tk ? this.i.tk.bottom : NaN;
|
|
806
806
|
},
|
|
807
807
|
set: function (v) {
|
|
808
808
|
this.ensureContentPadding();
|
|
809
|
-
this.i.tk.
|
|
810
|
-
this._a("contentPaddingBottom", this.i.tk.
|
|
809
|
+
this.i.tk.bottom = +v;
|
|
810
|
+
this._a("contentPaddingBottom", this.i.tk.bottom);
|
|
811
811
|
this.i.tk = this.i.tk;
|
|
812
812
|
},
|
|
813
813
|
enumerable: true,
|
|
@@ -815,12 +815,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
815
815
|
});
|
|
816
816
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "contentPaddingLeft", {
|
|
817
817
|
get: function () {
|
|
818
|
-
return this.i.tk ? this.i.tk.
|
|
818
|
+
return this.i.tk ? this.i.tk.left : NaN;
|
|
819
819
|
},
|
|
820
820
|
set: function (v) {
|
|
821
821
|
this.ensureContentPadding();
|
|
822
|
-
this.i.tk.
|
|
823
|
-
this._a("contentPaddingLeft", this.i.tk.
|
|
822
|
+
this.i.tk.left = +v;
|
|
823
|
+
this._a("contentPaddingLeft", this.i.tk.left);
|
|
824
824
|
this.i.tk = this.i.tk;
|
|
825
825
|
},
|
|
826
826
|
enumerable: true,
|
|
@@ -828,12 +828,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
828
828
|
});
|
|
829
829
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "contentPaddingRight", {
|
|
830
830
|
get: function () {
|
|
831
|
-
return this.i.tk ? this.i.tk.
|
|
831
|
+
return this.i.tk ? this.i.tk.right : NaN;
|
|
832
832
|
},
|
|
833
833
|
set: function (v) {
|
|
834
834
|
this.ensureContentPadding();
|
|
835
|
-
this.i.tk.
|
|
836
|
-
this._a("contentPaddingRight", this.i.tk.
|
|
835
|
+
this.i.tk.right = +v;
|
|
836
|
+
this._a("contentPaddingRight", this.i.tk.right);
|
|
837
837
|
this.i.tk = this.i.tk;
|
|
838
838
|
},
|
|
839
839
|
enumerable: true,
|
|
@@ -841,12 +841,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
841
841
|
});
|
|
842
842
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "contentPaddingTop", {
|
|
843
843
|
get: function () {
|
|
844
|
-
return this.i.tk ? this.i.tk.
|
|
844
|
+
return this.i.tk ? this.i.tk.top : NaN;
|
|
845
845
|
},
|
|
846
846
|
set: function (v) {
|
|
847
847
|
this.ensureContentPadding();
|
|
848
|
-
this.i.tk.
|
|
849
|
-
this._a("contentPaddingTop", this.i.tk.
|
|
848
|
+
this.i.tk.top = +v;
|
|
849
|
+
this._a("contentPaddingTop", this.i.tk.top);
|
|
850
850
|
this.i.tk = this.i.tk;
|
|
851
851
|
},
|
|
852
852
|
enumerable: true,
|
|
@@ -1156,12 +1156,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1156
1156
|
};
|
|
1157
1157
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeContentPaddingBottom", {
|
|
1158
1158
|
get: function () {
|
|
1159
|
-
return this.i.t0 ? this.i.t0.
|
|
1159
|
+
return this.i.t0 ? this.i.t0.bottom : NaN;
|
|
1160
1160
|
},
|
|
1161
1161
|
set: function (v) {
|
|
1162
1162
|
this.ensureLineTypeContentPadding();
|
|
1163
|
-
this.i.t0.
|
|
1164
|
-
this._a("lineTypeContentPaddingBottom", this.i.t0.
|
|
1163
|
+
this.i.t0.bottom = +v;
|
|
1164
|
+
this._a("lineTypeContentPaddingBottom", this.i.t0.bottom);
|
|
1165
1165
|
this.i.t0 = this.i.t0;
|
|
1166
1166
|
},
|
|
1167
1167
|
enumerable: true,
|
|
@@ -1169,12 +1169,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1169
1169
|
});
|
|
1170
1170
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeContentPaddingLeft", {
|
|
1171
1171
|
get: function () {
|
|
1172
|
-
return this.i.t0 ? this.i.t0.
|
|
1172
|
+
return this.i.t0 ? this.i.t0.left : NaN;
|
|
1173
1173
|
},
|
|
1174
1174
|
set: function (v) {
|
|
1175
1175
|
this.ensureLineTypeContentPadding();
|
|
1176
|
-
this.i.t0.
|
|
1177
|
-
this._a("lineTypeContentPaddingLeft", this.i.t0.
|
|
1176
|
+
this.i.t0.left = +v;
|
|
1177
|
+
this._a("lineTypeContentPaddingLeft", this.i.t0.left);
|
|
1178
1178
|
this.i.t0 = this.i.t0;
|
|
1179
1179
|
},
|
|
1180
1180
|
enumerable: true,
|
|
@@ -1182,12 +1182,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1182
1182
|
});
|
|
1183
1183
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeContentPaddingRight", {
|
|
1184
1184
|
get: function () {
|
|
1185
|
-
return this.i.t0 ? this.i.t0.
|
|
1185
|
+
return this.i.t0 ? this.i.t0.right : NaN;
|
|
1186
1186
|
},
|
|
1187
1187
|
set: function (v) {
|
|
1188
1188
|
this.ensureLineTypeContentPadding();
|
|
1189
|
-
this.i.t0.
|
|
1190
|
-
this._a("lineTypeContentPaddingRight", this.i.t0.
|
|
1189
|
+
this.i.t0.right = +v;
|
|
1190
|
+
this._a("lineTypeContentPaddingRight", this.i.t0.right);
|
|
1191
1191
|
this.i.t0 = this.i.t0;
|
|
1192
1192
|
},
|
|
1193
1193
|
enumerable: true,
|
|
@@ -1195,12 +1195,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1195
1195
|
});
|
|
1196
1196
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "lineTypeContentPaddingTop", {
|
|
1197
1197
|
get: function () {
|
|
1198
|
-
return this.i.t0 ? this.i.t0.
|
|
1198
|
+
return this.i.t0 ? this.i.t0.top : NaN;
|
|
1199
1199
|
},
|
|
1200
1200
|
set: function (v) {
|
|
1201
1201
|
this.ensureLineTypeContentPadding();
|
|
1202
|
-
this.i.t0.
|
|
1203
|
-
this._a("lineTypeContentPaddingTop", this.i.t0.
|
|
1202
|
+
this.i.t0.top = +v;
|
|
1203
|
+
this._a("lineTypeContentPaddingTop", this.i.t0.top);
|
|
1204
1204
|
this.i.t0 = this.i.t0;
|
|
1205
1205
|
},
|
|
1206
1206
|
enumerable: true,
|
|
@@ -1510,12 +1510,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1510
1510
|
};
|
|
1511
1511
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeContentPaddingBottom", {
|
|
1512
1512
|
get: function () {
|
|
1513
|
-
return this.i.ti ? this.i.ti.
|
|
1513
|
+
return this.i.ti ? this.i.ti.bottom : NaN;
|
|
1514
1514
|
},
|
|
1515
1515
|
set: function (v) {
|
|
1516
1516
|
this.ensureBoxTypeContentPadding();
|
|
1517
|
-
this.i.ti.
|
|
1518
|
-
this._a("boxTypeContentPaddingBottom", this.i.ti.
|
|
1517
|
+
this.i.ti.bottom = +v;
|
|
1518
|
+
this._a("boxTypeContentPaddingBottom", this.i.ti.bottom);
|
|
1519
1519
|
this.i.ti = this.i.ti;
|
|
1520
1520
|
},
|
|
1521
1521
|
enumerable: true,
|
|
@@ -1523,12 +1523,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1523
1523
|
});
|
|
1524
1524
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeContentPaddingLeft", {
|
|
1525
1525
|
get: function () {
|
|
1526
|
-
return this.i.ti ? this.i.ti.
|
|
1526
|
+
return this.i.ti ? this.i.ti.left : NaN;
|
|
1527
1527
|
},
|
|
1528
1528
|
set: function (v) {
|
|
1529
1529
|
this.ensureBoxTypeContentPadding();
|
|
1530
|
-
this.i.ti.
|
|
1531
|
-
this._a("boxTypeContentPaddingLeft", this.i.ti.
|
|
1530
|
+
this.i.ti.left = +v;
|
|
1531
|
+
this._a("boxTypeContentPaddingLeft", this.i.ti.left);
|
|
1532
1532
|
this.i.ti = this.i.ti;
|
|
1533
1533
|
},
|
|
1534
1534
|
enumerable: true,
|
|
@@ -1536,12 +1536,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1536
1536
|
});
|
|
1537
1537
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeContentPaddingRight", {
|
|
1538
1538
|
get: function () {
|
|
1539
|
-
return this.i.ti ? this.i.ti.
|
|
1539
|
+
return this.i.ti ? this.i.ti.right : NaN;
|
|
1540
1540
|
},
|
|
1541
1541
|
set: function (v) {
|
|
1542
1542
|
this.ensureBoxTypeContentPadding();
|
|
1543
|
-
this.i.ti.
|
|
1544
|
-
this._a("boxTypeContentPaddingRight", this.i.ti.
|
|
1543
|
+
this.i.ti.right = +v;
|
|
1544
|
+
this._a("boxTypeContentPaddingRight", this.i.ti.right);
|
|
1545
1545
|
this.i.ti = this.i.ti;
|
|
1546
1546
|
},
|
|
1547
1547
|
enumerable: true,
|
|
@@ -1549,12 +1549,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1549
1549
|
});
|
|
1550
1550
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "boxTypeContentPaddingTop", {
|
|
1551
1551
|
get: function () {
|
|
1552
|
-
return this.i.ti ? this.i.ti.
|
|
1552
|
+
return this.i.ti ? this.i.ti.top : NaN;
|
|
1553
1553
|
},
|
|
1554
1554
|
set: function (v) {
|
|
1555
1555
|
this.ensureBoxTypeContentPadding();
|
|
1556
|
-
this.i.ti.
|
|
1557
|
-
this._a("boxTypeContentPaddingTop", this.i.ti.
|
|
1556
|
+
this.i.ti.top = +v;
|
|
1557
|
+
this._a("boxTypeContentPaddingTop", this.i.ti.top);
|
|
1558
1558
|
this.i.ti = this.i.ti;
|
|
1559
1559
|
},
|
|
1560
1560
|
enumerable: true,
|
|
@@ -1864,12 +1864,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1864
1864
|
};
|
|
1865
1865
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeContentPaddingBottom", {
|
|
1866
1866
|
get: function () {
|
|
1867
|
-
return this.i.th ? this.i.th.
|
|
1867
|
+
return this.i.th ? this.i.th.bottom : NaN;
|
|
1868
1868
|
},
|
|
1869
1869
|
set: function (v) {
|
|
1870
1870
|
this.ensureBorderTypeContentPadding();
|
|
1871
|
-
this.i.th.
|
|
1872
|
-
this._a("borderTypeContentPaddingBottom", this.i.th.
|
|
1871
|
+
this.i.th.bottom = +v;
|
|
1872
|
+
this._a("borderTypeContentPaddingBottom", this.i.th.bottom);
|
|
1873
1873
|
this.i.th = this.i.th;
|
|
1874
1874
|
},
|
|
1875
1875
|
enumerable: true,
|
|
@@ -1877,12 +1877,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1877
1877
|
});
|
|
1878
1878
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeContentPaddingLeft", {
|
|
1879
1879
|
get: function () {
|
|
1880
|
-
return this.i.th ? this.i.th.
|
|
1880
|
+
return this.i.th ? this.i.th.left : NaN;
|
|
1881
1881
|
},
|
|
1882
1882
|
set: function (v) {
|
|
1883
1883
|
this.ensureBorderTypeContentPadding();
|
|
1884
|
-
this.i.th.
|
|
1885
|
-
this._a("borderTypeContentPaddingLeft", this.i.th.
|
|
1884
|
+
this.i.th.left = +v;
|
|
1885
|
+
this._a("borderTypeContentPaddingLeft", this.i.th.left);
|
|
1886
1886
|
this.i.th = this.i.th;
|
|
1887
1887
|
},
|
|
1888
1888
|
enumerable: true,
|
|
@@ -1890,12 +1890,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1890
1890
|
});
|
|
1891
1891
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeContentPaddingRight", {
|
|
1892
1892
|
get: function () {
|
|
1893
|
-
return this.i.th ? this.i.th.
|
|
1893
|
+
return this.i.th ? this.i.th.right : NaN;
|
|
1894
1894
|
},
|
|
1895
1895
|
set: function (v) {
|
|
1896
1896
|
this.ensureBorderTypeContentPadding();
|
|
1897
|
-
this.i.th.
|
|
1898
|
-
this._a("borderTypeContentPaddingRight", this.i.th.
|
|
1897
|
+
this.i.th.right = +v;
|
|
1898
|
+
this._a("borderTypeContentPaddingRight", this.i.th.right);
|
|
1899
1899
|
this.i.th = this.i.th;
|
|
1900
1900
|
},
|
|
1901
1901
|
enumerable: true,
|
|
@@ -1903,12 +1903,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1903
1903
|
});
|
|
1904
1904
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "borderTypeContentPaddingTop", {
|
|
1905
1905
|
get: function () {
|
|
1906
|
-
return this.i.th ? this.i.th.
|
|
1906
|
+
return this.i.th ? this.i.th.top : NaN;
|
|
1907
1907
|
},
|
|
1908
1908
|
set: function (v) {
|
|
1909
1909
|
this.ensureBorderTypeContentPadding();
|
|
1910
|
-
this.i.th.
|
|
1911
|
-
this._a("borderTypeContentPaddingTop", this.i.th.
|
|
1910
|
+
this.i.th.top = +v;
|
|
1911
|
+
this._a("borderTypeContentPaddingTop", this.i.th.top);
|
|
1912
1912
|
this.i.th = this.i.th;
|
|
1913
1913
|
},
|
|
1914
1914
|
enumerable: true,
|
|
@@ -2218,12 +2218,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2218
2218
|
};
|
|
2219
2219
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeContentPaddingBottom", {
|
|
2220
2220
|
get: function () {
|
|
2221
|
-
return this.i.t1 ? this.i.t1.
|
|
2221
|
+
return this.i.t1 ? this.i.t1.bottom : NaN;
|
|
2222
2222
|
},
|
|
2223
2223
|
set: function (v) {
|
|
2224
2224
|
this.ensureSearchTypeContentPadding();
|
|
2225
|
-
this.i.t1.
|
|
2226
|
-
this._a("searchTypeContentPaddingBottom", this.i.t1.
|
|
2225
|
+
this.i.t1.bottom = +v;
|
|
2226
|
+
this._a("searchTypeContentPaddingBottom", this.i.t1.bottom);
|
|
2227
2227
|
this.i.t1 = this.i.t1;
|
|
2228
2228
|
},
|
|
2229
2229
|
enumerable: true,
|
|
@@ -2231,12 +2231,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2231
2231
|
});
|
|
2232
2232
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeContentPaddingLeft", {
|
|
2233
2233
|
get: function () {
|
|
2234
|
-
return this.i.t1 ? this.i.t1.
|
|
2234
|
+
return this.i.t1 ? this.i.t1.left : NaN;
|
|
2235
2235
|
},
|
|
2236
2236
|
set: function (v) {
|
|
2237
2237
|
this.ensureSearchTypeContentPadding();
|
|
2238
|
-
this.i.t1.
|
|
2239
|
-
this._a("searchTypeContentPaddingLeft", this.i.t1.
|
|
2238
|
+
this.i.t1.left = +v;
|
|
2239
|
+
this._a("searchTypeContentPaddingLeft", this.i.t1.left);
|
|
2240
2240
|
this.i.t1 = this.i.t1;
|
|
2241
2241
|
},
|
|
2242
2242
|
enumerable: true,
|
|
@@ -2244,12 +2244,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2244
2244
|
});
|
|
2245
2245
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeContentPaddingRight", {
|
|
2246
2246
|
get: function () {
|
|
2247
|
-
return this.i.t1 ? this.i.t1.
|
|
2247
|
+
return this.i.t1 ? this.i.t1.right : NaN;
|
|
2248
2248
|
},
|
|
2249
2249
|
set: function (v) {
|
|
2250
2250
|
this.ensureSearchTypeContentPadding();
|
|
2251
|
-
this.i.t1.
|
|
2252
|
-
this._a("searchTypeContentPaddingRight", this.i.t1.
|
|
2251
|
+
this.i.t1.right = +v;
|
|
2252
|
+
this._a("searchTypeContentPaddingRight", this.i.t1.right);
|
|
2253
2253
|
this.i.t1 = this.i.t1;
|
|
2254
2254
|
},
|
|
2255
2255
|
enumerable: true,
|
|
@@ -2257,12 +2257,12 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2257
2257
|
});
|
|
2258
2258
|
Object.defineProperty(IgcXInputGroupComponent.prototype, "searchTypeContentPaddingTop", {
|
|
2259
2259
|
get: function () {
|
|
2260
|
-
return this.i.t1 ? this.i.t1.
|
|
2260
|
+
return this.i.t1 ? this.i.t1.top : NaN;
|
|
2261
2261
|
},
|
|
2262
2262
|
set: function (v) {
|
|
2263
2263
|
this.ensureSearchTypeContentPadding();
|
|
2264
|
-
this.i.t1.
|
|
2265
|
-
this._a("searchTypeContentPaddingTop", this.i.t1.
|
|
2264
|
+
this.i.t1.top = +v;
|
|
2265
|
+
this._a("searchTypeContentPaddingTop", this.i.t1.top);
|
|
2266
2266
|
this.i.t1 = this.i.t1;
|
|
2267
2267
|
},
|
|
2268
2268
|
enumerable: true,
|