igniteui-webcomponents-inputs 3.2.3 → 3.5.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 +260 -159
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/DatePickerView_combined.js +2 -2
- package/esm2015/lib/InputGroupView_combined.js +153 -145
- package/esm2015/lib/KEYCODES.js +1 -1
- package/esm2015/lib/igc-date-picker-component.js +5 -0
- package/esm2015/lib/igc-x-button-component.js +6 -0
- package/esm2015/lib/igc-x-button-group-component.js +6 -0
- package/esm2015/lib/igc-x-calendar-component.js +1 -0
- package/esm2015/lib/igc-x-checkbox-component.js +6 -0
- package/esm2015/lib/igc-x-icon-component.js +5 -0
- package/esm2015/lib/igc-x-input-component.js +47 -17
- package/esm2015/lib/igc-x-input-group-component.js +5 -0
- package/esm2015/lib/igc-x-input-group-item-component.js +19 -0
- package/esm2015/lib/igc-x-ripple-component.js +5 -0
- package/esm5/lib/DatePickerView_combined.js +2 -2
- package/esm5/lib/InputGroupView_combined.js +147 -139
- package/esm5/lib/KEYCODES.js +1 -1
- package/esm5/lib/igc-date-picker-component.js +5 -0
- package/esm5/lib/igc-x-button-component.js +6 -0
- package/esm5/lib/igc-x-button-group-component.js +6 -0
- package/esm5/lib/igc-x-calendar-component.js +1 -0
- package/esm5/lib/igc-x-checkbox-component.js +6 -0
- package/esm5/lib/igc-x-icon-component.js +5 -0
- package/esm5/lib/igc-x-input-component.js +52 -17
- package/esm5/lib/igc-x-input-group-component.js +5 -0
- package/esm5/lib/igc-x-input-group-item-component.js +19 -0
- package/esm5/lib/igc-x-ripple-component.js +5 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +261 -165
- package/fesm5/igniteui-webcomponents-inputs.js +260 -159
- package/lib/InputGroupView_combined.d.ts +30 -30
- package/lib/KEYCODES.d.ts +1 -0
- package/lib/igc-x-input-component.d.ts +3 -0
- package/lib/igc-x-input-group-item-component.d.ts +1 -0
- package/package.json +2 -2
|
@@ -886,6 +886,11 @@
|
|
|
886
886
|
configurable: true
|
|
887
887
|
});
|
|
888
888
|
IgcXRippleComponent.prototype.findByName = function (name) {
|
|
889
|
+
if (this.findEphemera) {
|
|
890
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
891
|
+
return this.findEphemera(name);
|
|
892
|
+
}
|
|
893
|
+
}
|
|
889
894
|
return null;
|
|
890
895
|
};
|
|
891
896
|
Object.defineProperty(IgcXRippleComponent.prototype, "hasUserValues", {
|
|
@@ -7382,6 +7387,11 @@
|
|
|
7382
7387
|
configurable: true
|
|
7383
7388
|
});
|
|
7384
7389
|
IgcXButtonComponent.prototype.findByName = function (name) {
|
|
7390
|
+
if (this.findEphemera) {
|
|
7391
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
7392
|
+
return this.findEphemera(name);
|
|
7393
|
+
}
|
|
7394
|
+
}
|
|
7385
7395
|
return null;
|
|
7386
7396
|
};
|
|
7387
7397
|
Object.defineProperty(IgcXButtonComponent.prototype, "hasUserValues", {
|
|
@@ -7486,6 +7496,7 @@
|
|
|
7486
7496
|
}
|
|
7487
7497
|
};
|
|
7488
7498
|
this.i.clicked = igniteuiWebcomponentsCore.delegateCombine(this.i.clicked, this._clicked_wrapped);
|
|
7499
|
+
;
|
|
7489
7500
|
},
|
|
7490
7501
|
enumerable: true,
|
|
7491
7502
|
configurable: true
|
|
@@ -8889,6 +8900,11 @@
|
|
|
8889
8900
|
configurable: true
|
|
8890
8901
|
});
|
|
8891
8902
|
IgcXIconComponent.prototype.findByName = function (name) {
|
|
8903
|
+
if (this.findEphemera) {
|
|
8904
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
8905
|
+
return this.findEphemera(name);
|
|
8906
|
+
}
|
|
8907
|
+
}
|
|
8892
8908
|
return null;
|
|
8893
8909
|
};
|
|
8894
8910
|
Object.defineProperty(IgcXIconComponent.prototype, "hasUserValues", {
|
|
@@ -12789,6 +12805,7 @@
|
|
|
12789
12805
|
}
|
|
12790
12806
|
};
|
|
12791
12807
|
this.i.selectedValueChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
|
|
12808
|
+
;
|
|
12792
12809
|
},
|
|
12793
12810
|
enumerable: true,
|
|
12794
12811
|
configurable: true
|
|
@@ -14623,7 +14640,11 @@
|
|
|
14623
14640
|
};
|
|
14624
14641
|
InputView.prototype.x = function (a) {
|
|
14625
14642
|
this.e = false;
|
|
14626
|
-
|
|
14643
|
+
var b = null;
|
|
14644
|
+
if (a.originalEvent != null) {
|
|
14645
|
+
b = (a.originalEvent.data);
|
|
14646
|
+
}
|
|
14647
|
+
this.b.cu(b);
|
|
14627
14648
|
};
|
|
14628
14649
|
InputView.prototype.as = function () {
|
|
14629
14650
|
this.k.setAttribute("type", this.b.b3);
|
|
@@ -14638,7 +14659,7 @@
|
|
|
14638
14659
|
this.k.setAttribute("placeholder", this.b.cb);
|
|
14639
14660
|
};
|
|
14640
14661
|
InputView.prototype.a1 = function () {
|
|
14641
|
-
switch (this.b.
|
|
14662
|
+
switch (this.b.x) {
|
|
14642
14663
|
case 1:
|
|
14643
14664
|
this.k.setStyleProperty("height", "2rem");
|
|
14644
14665
|
this.k.setStyleProperty("font-size", "1rem");
|
|
@@ -14658,7 +14679,7 @@
|
|
|
14658
14679
|
var a = new igniteuiWebcomponentsCore.TransformGroup();
|
|
14659
14680
|
a.j.add(((function () {
|
|
14660
14681
|
var $ret = new igniteuiWebcomponentsCore.TranslateTransform();
|
|
14661
|
-
$ret.k = _this.b.
|
|
14682
|
+
$ret.k = _this.b.o == 2 ? (_this.i() * -0.25) : 0;
|
|
14662
14683
|
return $ret;
|
|
14663
14684
|
})()));
|
|
14664
14685
|
a.j.add(((function () {
|
|
@@ -15847,17 +15868,17 @@
|
|
|
15847
15868
|
XInputGroup.prototype.mp = function () {
|
|
15848
15869
|
var _this = this;
|
|
15849
15870
|
this.l3(function (a) {
|
|
15850
|
-
a.
|
|
15871
|
+
a.y = _this.m;
|
|
15851
15872
|
switch (_this.d) {
|
|
15852
15873
|
case 0:
|
|
15853
|
-
a.
|
|
15874
|
+
a.o = 0;
|
|
15854
15875
|
break;
|
|
15855
15876
|
case 1:
|
|
15856
|
-
a.
|
|
15877
|
+
a.o = 1;
|
|
15857
15878
|
break;
|
|
15858
15879
|
case 2:
|
|
15859
15880
|
case 3:
|
|
15860
|
-
a.
|
|
15881
|
+
a.o = 2;
|
|
15861
15882
|
break;
|
|
15862
15883
|
}
|
|
15863
15884
|
a.dh(_this.al, false);
|
|
@@ -16067,7 +16088,7 @@
|
|
|
16067
16088
|
get: function () {
|
|
16068
16089
|
var a = false;
|
|
16069
16090
|
this.l3(function (b) {
|
|
16070
|
-
if (b.
|
|
16091
|
+
if (b.aq) {
|
|
16071
16092
|
a = true;
|
|
16072
16093
|
}
|
|
16073
16094
|
});
|
|
@@ -19123,26 +19144,26 @@
|
|
|
19123
19144
|
tslib_1.__extends(XInput, _super);
|
|
19124
19145
|
function XInput() {
|
|
19125
19146
|
var _this = _super.call(this) || this;
|
|
19126
|
-
_this.
|
|
19147
|
+
_this.u = null;
|
|
19127
19148
|
_this.a3 = 0;
|
|
19128
19149
|
_this.a4 = 0;
|
|
19129
|
-
_this.
|
|
19150
|
+
_this.q = 0;
|
|
19130
19151
|
_this.bl = "";
|
|
19131
19152
|
_this.bf = "";
|
|
19132
|
-
_this.ae = false;
|
|
19133
|
-
_this.bg = null;
|
|
19134
19153
|
_this.af = false;
|
|
19135
|
-
_this.
|
|
19154
|
+
_this.bg = null;
|
|
19155
|
+
_this.ag = false;
|
|
19156
|
+
_this.ao = false;
|
|
19136
19157
|
_this._view = null;
|
|
19137
|
-
_this.
|
|
19158
|
+
_this.n = 0;
|
|
19159
|
+
_this.w = 1;
|
|
19138
19160
|
_this.v = 1;
|
|
19139
|
-
_this.u = 1;
|
|
19140
19161
|
_this.bk = null;
|
|
19141
19162
|
_this.bn = "_";
|
|
19142
|
-
_this.
|
|
19163
|
+
_this.ai = false;
|
|
19143
19164
|
_this.dq = XInput.dw;
|
|
19144
19165
|
_this.dp = XInput.dv;
|
|
19145
|
-
_this.
|
|
19166
|
+
_this.z = null;
|
|
19146
19167
|
_this.ds = XInput.dw;
|
|
19147
19168
|
_this.keyDown = null;
|
|
19148
19169
|
_this.keyUp = null;
|
|
@@ -19151,35 +19172,35 @@
|
|
|
19151
19172
|
_this.lostFocus = null;
|
|
19152
19173
|
_this.mouseDown = null;
|
|
19153
19174
|
_this.mouseUp = null;
|
|
19154
|
-
_this.
|
|
19175
|
+
_this.aa = null;
|
|
19155
19176
|
_this.bj = "text";
|
|
19156
19177
|
_this.bm = "text";
|
|
19157
19178
|
_this.dr = null;
|
|
19158
19179
|
_this.bi = "ig-input-" + XInput.bb++;
|
|
19159
19180
|
_this.a5 = 0;
|
|
19160
|
-
_this.
|
|
19181
|
+
_this.ah = false;
|
|
19161
19182
|
_this.bh = null;
|
|
19162
19183
|
_this.be = null;
|
|
19163
|
-
_this.
|
|
19184
|
+
_this.al = false;
|
|
19164
19185
|
_this.bd = null;
|
|
19165
19186
|
_this.bo = null;
|
|
19187
|
+
_this.ak = false;
|
|
19166
19188
|
_this.aj = false;
|
|
19167
|
-
_this.
|
|
19168
|
-
_this.al = false;
|
|
19189
|
+
_this.am = false;
|
|
19169
19190
|
_this.change = null;
|
|
19170
19191
|
_this.changing = null;
|
|
19171
19192
|
_this.compositionStart = null;
|
|
19172
19193
|
_this.compositionEnd = null;
|
|
19173
|
-
_this.
|
|
19174
|
-
_this.
|
|
19175
|
-
_this.
|
|
19176
|
-
_this.
|
|
19194
|
+
_this.an = true;
|
|
19195
|
+
_this.ae = null;
|
|
19196
|
+
_this.ax = false;
|
|
19197
|
+
_this.u = new MaskParsingService();
|
|
19177
19198
|
var a = new InputView();
|
|
19178
19199
|
a.b = _this;
|
|
19179
19200
|
_this.view = a;
|
|
19180
19201
|
_this.view.ao();
|
|
19181
|
-
XInput.
|
|
19182
|
-
XInput.
|
|
19202
|
+
XInput.ac = new igniteuiWebcomponentsCore.FontInfo();
|
|
19203
|
+
XInput.ac.n = "Verdana";
|
|
19183
19204
|
return _this;
|
|
19184
19205
|
}
|
|
19185
19206
|
Object.defineProperty(XInput.prototype, "view", {
|
|
@@ -19195,42 +19216,42 @@
|
|
|
19195
19216
|
XInput.prototype.destroy = function () {
|
|
19196
19217
|
this.provideContainer(null);
|
|
19197
19218
|
};
|
|
19198
|
-
Object.defineProperty(XInput.prototype, "
|
|
19219
|
+
Object.defineProperty(XInput.prototype, "o", {
|
|
19199
19220
|
get: function () {
|
|
19200
|
-
return this.
|
|
19221
|
+
return this.n;
|
|
19201
19222
|
},
|
|
19202
19223
|
set: function (a) {
|
|
19203
|
-
var b = this.
|
|
19204
|
-
this.
|
|
19205
|
-
if (b != this.
|
|
19224
|
+
var b = this.n;
|
|
19225
|
+
this.n = a;
|
|
19226
|
+
if (b != this.n) {
|
|
19206
19227
|
this.g("ShiftType", igniteuiWebcomponentsCore.enumGetBox(InputShiftType_$type, b), igniteuiWebcomponentsCore.enumGetBox(InputShiftType_$type, a));
|
|
19207
19228
|
}
|
|
19208
19229
|
},
|
|
19209
19230
|
enumerable: true,
|
|
19210
19231
|
configurable: true
|
|
19211
19232
|
});
|
|
19212
|
-
Object.defineProperty(XInput.prototype, "
|
|
19233
|
+
Object.defineProperty(XInput.prototype, "y", {
|
|
19213
19234
|
get: function () {
|
|
19214
|
-
return this.
|
|
19235
|
+
return this.w;
|
|
19215
19236
|
},
|
|
19216
19237
|
set: function (a) {
|
|
19217
|
-
var b = this.
|
|
19218
|
-
this.
|
|
19219
|
-
if (b != this.
|
|
19238
|
+
var b = this.w;
|
|
19239
|
+
this.w = a;
|
|
19240
|
+
if (b != this.w) {
|
|
19220
19241
|
this.g("Density", igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, b), igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, a));
|
|
19221
19242
|
}
|
|
19222
19243
|
},
|
|
19223
19244
|
enumerable: true,
|
|
19224
19245
|
configurable: true
|
|
19225
19246
|
});
|
|
19226
|
-
Object.defineProperty(XInput.prototype, "
|
|
19247
|
+
Object.defineProperty(XInput.prototype, "x", {
|
|
19227
19248
|
get: function () {
|
|
19228
|
-
return this.
|
|
19249
|
+
return this.v;
|
|
19229
19250
|
},
|
|
19230
19251
|
set: function (a) {
|
|
19231
|
-
var b = this.
|
|
19232
|
-
this.
|
|
19233
|
-
if (b != this.
|
|
19252
|
+
var b = this.v;
|
|
19253
|
+
this.v = a;
|
|
19254
|
+
if (b != this.v) {
|
|
19234
19255
|
this.g("ActualDensity", igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, b), igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, a));
|
|
19235
19256
|
}
|
|
19236
19257
|
},
|
|
@@ -19265,14 +19286,14 @@
|
|
|
19265
19286
|
enumerable: true,
|
|
19266
19287
|
configurable: true
|
|
19267
19288
|
});
|
|
19268
|
-
Object.defineProperty(XInput.prototype, "
|
|
19289
|
+
Object.defineProperty(XInput.prototype, "ar", {
|
|
19269
19290
|
get: function () {
|
|
19270
|
-
return this.
|
|
19291
|
+
return this.ai;
|
|
19271
19292
|
},
|
|
19272
19293
|
set: function (a) {
|
|
19273
|
-
var b = this.
|
|
19274
|
-
this.
|
|
19275
|
-
if (b != this.
|
|
19294
|
+
var b = this.ai;
|
|
19295
|
+
this.ai = a;
|
|
19296
|
+
if (b != this.ai) {
|
|
19276
19297
|
this.g("IncludeLiterals", b, a);
|
|
19277
19298
|
}
|
|
19278
19299
|
},
|
|
@@ -19293,12 +19314,12 @@
|
|
|
19293
19314
|
this.dl();
|
|
19294
19315
|
break;
|
|
19295
19316
|
case "Value":
|
|
19296
|
-
if (!this.
|
|
19317
|
+
if (!this.aj) {
|
|
19297
19318
|
this.view.at(this.cj);
|
|
19298
19319
|
if (this.b != null) {
|
|
19299
19320
|
this.b.mt();
|
|
19300
19321
|
}
|
|
19301
|
-
if (this.b9 != null && !this.
|
|
19322
|
+
if (this.b9 != null && !this.ao) {
|
|
19302
19323
|
this.dn(this.cj);
|
|
19303
19324
|
}
|
|
19304
19325
|
}
|
|
@@ -19307,7 +19328,7 @@
|
|
|
19307
19328
|
this.view.av(this.e);
|
|
19308
19329
|
break;
|
|
19309
19330
|
case "Density":
|
|
19310
|
-
this.
|
|
19331
|
+
this.x = this.y == 0 ? 1 : this.y;
|
|
19311
19332
|
break;
|
|
19312
19333
|
case "ActualDensity":
|
|
19313
19334
|
this.view.a1();
|
|
@@ -19334,10 +19355,10 @@
|
|
|
19334
19355
|
this.c1();
|
|
19335
19356
|
break;
|
|
19336
19357
|
case "IsDisabled":
|
|
19337
|
-
this.view.au(this.
|
|
19358
|
+
this.view.au(this.ak);
|
|
19338
19359
|
break;
|
|
19339
19360
|
case "IsReadOnly":
|
|
19340
|
-
this.view.aw(this.
|
|
19361
|
+
this.view.aw(this.am);
|
|
19341
19362
|
break;
|
|
19342
19363
|
}
|
|
19343
19364
|
};
|
|
@@ -19356,11 +19377,11 @@
|
|
|
19356
19377
|
XInput.prototype.dm = function () {
|
|
19357
19378
|
this.du = this.dy != null ? this.dy : XInput.dw;
|
|
19358
19379
|
this.dt = this.dx != null ? this.dx : XInput.dw;
|
|
19359
|
-
this.
|
|
19380
|
+
this.ab = this.ad != null ? this.ad : XInput.ac;
|
|
19360
19381
|
};
|
|
19361
19382
|
XInput.prototype.dl = function () {
|
|
19362
|
-
if (this.
|
|
19363
|
-
this.view.a3(this.
|
|
19383
|
+
if (this.ab != null) {
|
|
19384
|
+
this.view.a3(this.ab);
|
|
19364
19385
|
}
|
|
19365
19386
|
igniteuiWebcomponentsCore.NativeUI.o(this.view.o, this.du);
|
|
19366
19387
|
};
|
|
@@ -19392,14 +19413,14 @@
|
|
|
19392
19413
|
enumerable: true,
|
|
19393
19414
|
configurable: true
|
|
19394
19415
|
});
|
|
19395
|
-
Object.defineProperty(XInput.prototype, "
|
|
19416
|
+
Object.defineProperty(XInput.prototype, "ab", {
|
|
19396
19417
|
get: function () {
|
|
19397
|
-
return this.
|
|
19418
|
+
return this.z;
|
|
19398
19419
|
},
|
|
19399
19420
|
set: function (a) {
|
|
19400
|
-
var b = this.
|
|
19401
|
-
this.
|
|
19402
|
-
if (b != this.
|
|
19421
|
+
var b = this.z;
|
|
19422
|
+
this.z = a;
|
|
19423
|
+
if (b != this.z) {
|
|
19403
19424
|
this.g("ActualTextStyle", b, a);
|
|
19404
19425
|
}
|
|
19405
19426
|
},
|
|
@@ -19442,7 +19463,7 @@
|
|
|
19442
19463
|
if ((b == 17 && b == 90) || (b == 17 && b == 89)) {
|
|
19443
19464
|
a.preventDefault();
|
|
19444
19465
|
}
|
|
19445
|
-
this.
|
|
19466
|
+
this.q = b;
|
|
19446
19467
|
this.a4 = this.a7();
|
|
19447
19468
|
this.a3 = this.a6();
|
|
19448
19469
|
}
|
|
@@ -19478,21 +19499,21 @@
|
|
|
19478
19499
|
};
|
|
19479
19500
|
XInput.prototype.cx = function () {
|
|
19480
19501
|
if (this.b9 != null) {
|
|
19481
|
-
if (!this.
|
|
19502
|
+
if (!this.af) {
|
|
19482
19503
|
this.dk(this.bf);
|
|
19483
19504
|
}
|
|
19484
19505
|
}
|
|
19485
19506
|
};
|
|
19486
19507
|
XInput.prototype.cy = function () {
|
|
19487
19508
|
if (this.b9 != null) {
|
|
19488
|
-
if (!this.
|
|
19509
|
+
if (!this.af) {
|
|
19489
19510
|
this.dj(this.cj);
|
|
19490
19511
|
}
|
|
19491
19512
|
}
|
|
19492
19513
|
};
|
|
19493
19514
|
XInput.prototype.cs = function () {
|
|
19494
19515
|
var _this = this;
|
|
19495
|
-
this.
|
|
19516
|
+
this.aj = true;
|
|
19496
19517
|
this.cj = this.view.q();
|
|
19497
19518
|
if (this.change != null) {
|
|
19498
19519
|
this.change(this, ((function () {
|
|
@@ -19502,25 +19523,25 @@
|
|
|
19502
19523
|
return $ret;
|
|
19503
19524
|
})()));
|
|
19504
19525
|
}
|
|
19505
|
-
this.
|
|
19526
|
+
this.aj = false;
|
|
19506
19527
|
};
|
|
19507
19528
|
XInput.prototype.ct = function () {
|
|
19508
19529
|
var _this = this;
|
|
19509
|
-
this.
|
|
19530
|
+
this.aj = true;
|
|
19510
19531
|
this.cj = this.view.q();
|
|
19511
|
-
this.
|
|
19532
|
+
this.aj = false;
|
|
19512
19533
|
if (this.b9 != null) {
|
|
19513
|
-
this.
|
|
19514
|
-
if (this.
|
|
19534
|
+
this.ao = true;
|
|
19535
|
+
if (this.ag) {
|
|
19515
19536
|
this.a4 = this.a7();
|
|
19516
19537
|
}
|
|
19517
|
-
if (this.cj.length < this.bl.length && this.
|
|
19518
|
-
this.
|
|
19538
|
+
if (this.cj.length < this.bl.length && this.q == 229) {
|
|
19539
|
+
this.q = 8;
|
|
19519
19540
|
}
|
|
19520
19541
|
var a = this.a7();
|
|
19521
19542
|
var b = this.a6();
|
|
19522
19543
|
var c = "";
|
|
19523
|
-
switch (this.
|
|
19544
|
+
switch (this.q) {
|
|
19524
19545
|
case 46:
|
|
19525
19546
|
this.a3 = this.a4 == this.a3 ? ++this.a3 : this.a3;
|
|
19526
19547
|
break;
|
|
@@ -19534,18 +19555,18 @@
|
|
|
19534
19555
|
var d = new MaskOptions();
|
|
19535
19556
|
d.a = this.b9;
|
|
19536
19557
|
d.b = this.cd;
|
|
19537
|
-
var e = this.
|
|
19558
|
+
var e = this.u.a(this.bl, c, d, this.a4, this.a3);
|
|
19538
19559
|
this.cj = e.b;
|
|
19539
|
-
if (this.
|
|
19560
|
+
if (this.q == 8) {
|
|
19540
19561
|
e.a = this.a4;
|
|
19541
19562
|
}
|
|
19542
19563
|
this.di(e.a, e.a);
|
|
19543
|
-
var f = this.
|
|
19544
|
-
this.bf = this.
|
|
19564
|
+
var f = this.u.i(this.cj, d);
|
|
19565
|
+
this.bf = this.ar ? this.cj : f;
|
|
19545
19566
|
this.cl();
|
|
19546
|
-
this.
|
|
19567
|
+
this.ao = false;
|
|
19547
19568
|
}
|
|
19548
|
-
this.
|
|
19569
|
+
this.aj = true;
|
|
19549
19570
|
if (this.changing != null) {
|
|
19550
19571
|
this.changing(this, ((function () {
|
|
19551
19572
|
var $ret = new InputChangeEventArgs();
|
|
@@ -19554,32 +19575,36 @@
|
|
|
19554
19575
|
return $ret;
|
|
19555
19576
|
})()));
|
|
19556
19577
|
}
|
|
19557
|
-
this.
|
|
19578
|
+
this.aj = false;
|
|
19558
19579
|
};
|
|
19559
19580
|
XInput.prototype.cv = function () {
|
|
19560
19581
|
if (this.compositionStart != null) {
|
|
19561
19582
|
this.compositionStart(this, new igniteuiWebcomponentsCore.EventArgs());
|
|
19562
19583
|
}
|
|
19563
19584
|
};
|
|
19564
|
-
XInput.prototype.cu = function () {
|
|
19585
|
+
XInput.prototype.cu = function (a) {
|
|
19565
19586
|
if (this.compositionEnd != null) {
|
|
19566
|
-
this.compositionEnd(this,
|
|
19587
|
+
this.compositionEnd(this, ((function () {
|
|
19588
|
+
var $ret = new InputChangeEventArgs();
|
|
19589
|
+
$ret.value = a;
|
|
19590
|
+
return $ret;
|
|
19591
|
+
})()));
|
|
19567
19592
|
}
|
|
19568
19593
|
};
|
|
19569
19594
|
XInput.prototype.c6 = function () {
|
|
19570
|
-
this.
|
|
19595
|
+
this.at = true;
|
|
19571
19596
|
};
|
|
19572
19597
|
XInput.prototype.c7 = function () {
|
|
19573
|
-
this.
|
|
19598
|
+
this.at = false;
|
|
19574
19599
|
};
|
|
19575
|
-
Object.defineProperty(XInput.prototype, "
|
|
19600
|
+
Object.defineProperty(XInput.prototype, "ad", {
|
|
19576
19601
|
get: function () {
|
|
19577
|
-
return this.
|
|
19602
|
+
return this.aa;
|
|
19578
19603
|
},
|
|
19579
19604
|
set: function (a) {
|
|
19580
|
-
var b = this.
|
|
19581
|
-
this.
|
|
19582
|
-
if (b != this.
|
|
19605
|
+
var b = this.aa;
|
|
19606
|
+
this.aa = a;
|
|
19607
|
+
if (b != this.aa) {
|
|
19583
19608
|
this.g("TextStyle", b, a);
|
|
19584
19609
|
}
|
|
19585
19610
|
},
|
|
@@ -19642,9 +19667,9 @@
|
|
|
19642
19667
|
enumerable: true,
|
|
19643
19668
|
configurable: true
|
|
19644
19669
|
});
|
|
19645
|
-
Object.defineProperty(XInput.prototype, "
|
|
19670
|
+
Object.defineProperty(XInput.prototype, "ap", {
|
|
19646
19671
|
get: function () {
|
|
19647
|
-
return this.
|
|
19672
|
+
return this.ah;
|
|
19648
19673
|
},
|
|
19649
19674
|
enumerable: true,
|
|
19650
19675
|
configurable: true
|
|
@@ -19656,7 +19681,7 @@
|
|
|
19656
19681
|
set: function (a) {
|
|
19657
19682
|
var b = this.a5;
|
|
19658
19683
|
this.a5 = a;
|
|
19659
|
-
this.
|
|
19684
|
+
this.ah = true;
|
|
19660
19685
|
if (b != this.a5) {
|
|
19661
19686
|
this.g("TabIndex", b, a);
|
|
19662
19687
|
}
|
|
@@ -19692,14 +19717,14 @@
|
|
|
19692
19717
|
enumerable: true,
|
|
19693
19718
|
configurable: true
|
|
19694
19719
|
});
|
|
19695
|
-
Object.defineProperty(XInput.prototype, "
|
|
19720
|
+
Object.defineProperty(XInput.prototype, "at", {
|
|
19696
19721
|
get: function () {
|
|
19697
|
-
return this.
|
|
19722
|
+
return this.al;
|
|
19698
19723
|
},
|
|
19699
19724
|
set: function (a) {
|
|
19700
|
-
var b = this.
|
|
19701
|
-
this.
|
|
19702
|
-
if (b != this.
|
|
19725
|
+
var b = this.al;
|
|
19726
|
+
this.al = a;
|
|
19727
|
+
if (b != this.al) {
|
|
19703
19728
|
this.g("IsHover", b, a);
|
|
19704
19729
|
}
|
|
19705
19730
|
},
|
|
@@ -19720,7 +19745,7 @@
|
|
|
19720
19745
|
enumerable: true,
|
|
19721
19746
|
configurable: true
|
|
19722
19747
|
});
|
|
19723
|
-
Object.defineProperty(XInput.prototype, "
|
|
19748
|
+
Object.defineProperty(XInput.prototype, "aq", {
|
|
19724
19749
|
get: function () {
|
|
19725
19750
|
return !igniteuiWebcomponentsCore.stringIsNullOrEmpty(this.cj);
|
|
19726
19751
|
},
|
|
@@ -19729,12 +19754,12 @@
|
|
|
19729
19754
|
});
|
|
19730
19755
|
Object.defineProperty(XInput.prototype, "disabled", {
|
|
19731
19756
|
get: function () {
|
|
19732
|
-
return this.
|
|
19757
|
+
return this.ak;
|
|
19733
19758
|
},
|
|
19734
19759
|
set: function (a) {
|
|
19735
|
-
var b = this.
|
|
19736
|
-
this.
|
|
19737
|
-
if (b != this.
|
|
19760
|
+
var b = this.ak;
|
|
19761
|
+
this.ak = a;
|
|
19762
|
+
if (b != this.ak) {
|
|
19738
19763
|
this.g("IsDisabled", b, a);
|
|
19739
19764
|
}
|
|
19740
19765
|
},
|
|
@@ -19743,13 +19768,13 @@
|
|
|
19743
19768
|
});
|
|
19744
19769
|
Object.defineProperty(XInput.prototype, "readonly", {
|
|
19745
19770
|
get: function () {
|
|
19746
|
-
return this.
|
|
19771
|
+
return this.am;
|
|
19747
19772
|
},
|
|
19748
19773
|
set: function (a) {
|
|
19749
|
-
var b = this.
|
|
19750
|
-
this.
|
|
19751
|
-
if (b != this.
|
|
19752
|
-
this.g("IsReadOnly", b, this.
|
|
19774
|
+
var b = this.am;
|
|
19775
|
+
this.am = a;
|
|
19776
|
+
if (b != this.am) {
|
|
19777
|
+
this.g("IsReadOnly", b, this.am);
|
|
19753
19778
|
}
|
|
19754
19779
|
},
|
|
19755
19780
|
enumerable: true,
|
|
@@ -19763,7 +19788,7 @@
|
|
|
19763
19788
|
XInput.prototype.onAttachedToUI = function () {
|
|
19764
19789
|
this.view.aj();
|
|
19765
19790
|
};
|
|
19766
|
-
XInput.prototype.
|
|
19791
|
+
XInput.prototype.aw = function () {
|
|
19767
19792
|
return this.view.f();
|
|
19768
19793
|
};
|
|
19769
19794
|
XInput.prototype.bc = function () {
|
|
@@ -19778,19 +19803,19 @@
|
|
|
19778
19803
|
var b = this.view.o;
|
|
19779
19804
|
a.h = this.view.j.rootWrapper.getNativeElement().offsetTop;
|
|
19780
19805
|
a.f = this.view.j.rootWrapper.getNativeElement().offsetLeft;
|
|
19781
|
-
a.b = this.
|
|
19782
|
-
a.c = this.
|
|
19806
|
+
a.b = this.o;
|
|
19807
|
+
a.c = this.x;
|
|
19783
19808
|
a.j = this.b9;
|
|
19784
19809
|
a.m = this.cd;
|
|
19785
|
-
a.d = this.
|
|
19810
|
+
a.d = this.ar;
|
|
19786
19811
|
a.a = igniteuiWebcomponentsCore.AppearanceHelper.a(igniteuiWebcomponentsCore.NativeUI.ah(b));
|
|
19787
19812
|
a.i = this.b3;
|
|
19788
19813
|
a.l = this.cb;
|
|
19789
|
-
a.e = this.
|
|
19814
|
+
a.e = this.at;
|
|
19790
19815
|
a.t = this.cj;
|
|
19791
19816
|
a.k = this.e;
|
|
19792
|
-
if (this.
|
|
19793
|
-
var c = this.
|
|
19817
|
+
if (this.ab != null) {
|
|
19818
|
+
var c = this.ab;
|
|
19794
19819
|
if (this.view != null && c.n == null) {
|
|
19795
19820
|
var d = this.view.j;
|
|
19796
19821
|
var e = igniteuiWebcomponentsCore.FontUtil.getFontInfoFromString(d, c.fontString);
|
|
@@ -19840,23 +19865,23 @@
|
|
|
19840
19865
|
this.view.ar();
|
|
19841
19866
|
};
|
|
19842
19867
|
XInput.prototype.dk = function (a) {
|
|
19843
|
-
this.
|
|
19868
|
+
this.ao = true;
|
|
19844
19869
|
var b = new MaskOptions();
|
|
19845
19870
|
b.a = this.b9;
|
|
19846
19871
|
b.b = this.cd;
|
|
19847
|
-
this.cj = this.
|
|
19872
|
+
this.cj = this.u.h(this.cj, b);
|
|
19848
19873
|
this.bl = this.cj;
|
|
19849
|
-
this.
|
|
19874
|
+
this.ao = false;
|
|
19850
19875
|
};
|
|
19851
19876
|
XInput.prototype.dj = function (a) {
|
|
19852
|
-
this.
|
|
19877
|
+
this.ao = true;
|
|
19853
19878
|
var b = new MaskOptions();
|
|
19854
19879
|
b.a = this.b9;
|
|
19855
19880
|
b.b = this.cd;
|
|
19856
|
-
if (a == this.
|
|
19881
|
+
if (a == this.u.h(null, b)) {
|
|
19857
19882
|
this.cj = "";
|
|
19858
19883
|
}
|
|
19859
|
-
this.
|
|
19884
|
+
this.ao = false;
|
|
19860
19885
|
};
|
|
19861
19886
|
XInput.prototype.dn = function (a) {
|
|
19862
19887
|
var _this = this;
|
|
@@ -19866,8 +19891,8 @@
|
|
|
19866
19891
|
if (this.cd != null && this.cd.length > 1) {
|
|
19867
19892
|
b.b = this.cd.substr(0, 1);
|
|
19868
19893
|
}
|
|
19869
|
-
this.cj = a != null ? this.
|
|
19870
|
-
this.bf = this.
|
|
19894
|
+
this.cj = a != null ? this.u.h(a, b) : "";
|
|
19895
|
+
this.bf = this.ar ? this.cj : a;
|
|
19871
19896
|
if (this.changing != null) {
|
|
19872
19897
|
this.changing(this, ((function () {
|
|
19873
19898
|
var $ret = new InputChangeEventArgs();
|
|
@@ -19879,15 +19904,15 @@
|
|
|
19879
19904
|
};
|
|
19880
19905
|
XInput.prototype.cl = function () {
|
|
19881
19906
|
this.bl = this.cj;
|
|
19882
|
-
this.
|
|
19907
|
+
this.ag = false;
|
|
19883
19908
|
this.a4 = 0;
|
|
19884
19909
|
this.a3 = 0;
|
|
19885
|
-
this.
|
|
19910
|
+
this.q = 0;
|
|
19886
19911
|
};
|
|
19887
19912
|
XInput.prototype.a7 = function () {
|
|
19888
19913
|
var a = this.view.n();
|
|
19889
19914
|
var b = this.view.m();
|
|
19890
|
-
return a == b && this.
|
|
19915
|
+
return a == b && this.ag ? b - this.bg.length : a;
|
|
19891
19916
|
};
|
|
19892
19917
|
XInput.prototype.a6 = function () {
|
|
19893
19918
|
return this.view.m();
|
|
@@ -19912,14 +19937,14 @@
|
|
|
19912
19937
|
enumerable: true,
|
|
19913
19938
|
configurable: true
|
|
19914
19939
|
});
|
|
19915
|
-
Object.defineProperty(XInput.prototype, "
|
|
19940
|
+
Object.defineProperty(XInput.prototype, "av", {
|
|
19916
19941
|
get: function () {
|
|
19917
|
-
return this.
|
|
19942
|
+
return this.an;
|
|
19918
19943
|
},
|
|
19919
19944
|
set: function (a) {
|
|
19920
|
-
var b = this.
|
|
19921
|
-
this.
|
|
19922
|
-
if (b != this.
|
|
19945
|
+
var b = this.an;
|
|
19946
|
+
this.an = a;
|
|
19947
|
+
if (b != this.an) {
|
|
19923
19948
|
this.g("IsShown", b, a);
|
|
19924
19949
|
}
|
|
19925
19950
|
},
|
|
@@ -19930,27 +19955,27 @@
|
|
|
19930
19955
|
if (b === void 0) {
|
|
19931
19956
|
b = true;
|
|
19932
19957
|
}
|
|
19933
|
-
var c = this.
|
|
19958
|
+
var c = this.ax;
|
|
19934
19959
|
if (!b) {
|
|
19935
|
-
this.
|
|
19960
|
+
this.ax = true;
|
|
19936
19961
|
}
|
|
19937
19962
|
try {
|
|
19938
|
-
this.
|
|
19963
|
+
this.av = a;
|
|
19939
19964
|
}
|
|
19940
19965
|
finally {
|
|
19941
19966
|
if (!b) {
|
|
19942
|
-
this.
|
|
19967
|
+
this.ax = c;
|
|
19943
19968
|
}
|
|
19944
19969
|
}
|
|
19945
19970
|
};
|
|
19946
19971
|
XInput.prototype.c1 = function () {
|
|
19947
19972
|
this.co();
|
|
19948
|
-
this.de(this.
|
|
19973
|
+
this.de(this.ae, this.av);
|
|
19949
19974
|
};
|
|
19950
19975
|
XInput.prototype.co = function () {
|
|
19951
19976
|
this.view.ai();
|
|
19952
|
-
if (this.
|
|
19953
|
-
this.
|
|
19977
|
+
if (this.ae == null) {
|
|
19978
|
+
this.ae = igniteuiWebcomponentsCore.KeyFrameAnimationFactory.f.c(this.view.a(this.i).m(new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(1, 0)).m(new igniteuiWebcomponentsCore.AnimationKeyFrameProperty(1, 1)));
|
|
19954
19979
|
}
|
|
19955
19980
|
};
|
|
19956
19981
|
Object.defineProperty(XInput.prototype, "i", {
|
|
@@ -19971,7 +19996,7 @@
|
|
|
19971
19996
|
else {
|
|
19972
19997
|
a.reverse();
|
|
19973
19998
|
}
|
|
19974
|
-
if (this.
|
|
19999
|
+
if (this.ax) {
|
|
19975
20000
|
a.finish();
|
|
19976
20001
|
a.commitStyles();
|
|
19977
20002
|
return;
|
|
@@ -19981,7 +20006,7 @@
|
|
|
19981
20006
|
XInput.$t = igniteuiWebcomponentsCore.markType(XInput, 'XInput', XInputGroupItem.$);
|
|
19982
20007
|
XInput.dw = igniteuiWebcomponentsCore.BrushUtil.g(221, 0, 0, 0);
|
|
19983
20008
|
XInput.dv = igniteuiWebcomponentsCore.BrushUtil.g(221, 0, 0, 0);
|
|
19984
|
-
XInput.
|
|
20009
|
+
XInput.ac = null;
|
|
19985
20010
|
XInput.bb = 0;
|
|
19986
20011
|
return XInput;
|
|
19987
20012
|
}(XInputGroupItem));
|
|
@@ -20077,11 +20102,25 @@
|
|
|
20077
20102
|
if (_super.prototype["connectedCallback"]) {
|
|
20078
20103
|
_super.prototype["connectedCallback"].call(this);
|
|
20079
20104
|
}
|
|
20105
|
+
if (this.i.connectedCallback) {
|
|
20106
|
+
this.i.connectedCallback();
|
|
20107
|
+
}
|
|
20080
20108
|
if (!this._attached) {
|
|
20081
20109
|
this._attached = true;
|
|
20082
20110
|
this._flushQueuedAttributes();
|
|
20083
20111
|
}
|
|
20084
20112
|
};
|
|
20113
|
+
IgcXInputGroupItemComponent.prototype.disconnectedCallback = function () {
|
|
20114
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
20115
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
20116
|
+
}
|
|
20117
|
+
if (this.i.disconnectedCallback) {
|
|
20118
|
+
this.i.disconnectedCallback();
|
|
20119
|
+
}
|
|
20120
|
+
if (this._attached) {
|
|
20121
|
+
this._attached = false;
|
|
20122
|
+
}
|
|
20123
|
+
};
|
|
20085
20124
|
Object.defineProperty(IgcXInputGroupItemComponent, "observedAttributes", {
|
|
20086
20125
|
get: function () {
|
|
20087
20126
|
if (IgcXInputGroupItemComponent._observedAttributesIgcXInputGroupItemComponent == null) {
|
|
@@ -20119,6 +20158,11 @@
|
|
|
20119
20158
|
configurable: true
|
|
20120
20159
|
});
|
|
20121
20160
|
IgcXInputGroupItemComponent.prototype.findByName = function (name) {
|
|
20161
|
+
if (this.findEphemera) {
|
|
20162
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
20163
|
+
return this.findEphemera(name);
|
|
20164
|
+
}
|
|
20165
|
+
}
|
|
20122
20166
|
return null;
|
|
20123
20167
|
};
|
|
20124
20168
|
Object.defineProperty(IgcXInputGroupItemComponent.prototype, "hasUserValues", {
|
|
@@ -20288,6 +20332,8 @@
|
|
|
20288
20332
|
_this._change_wrapped = null;
|
|
20289
20333
|
_this._changing = null;
|
|
20290
20334
|
_this._changing_wrapped = null;
|
|
20335
|
+
_this._compositionEnd = null;
|
|
20336
|
+
_this._compositionEnd_wrapped = null;
|
|
20291
20337
|
ensureCss();
|
|
20292
20338
|
if (_this._styling) {
|
|
20293
20339
|
igniteuiWebcomponentsCore.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(_this));
|
|
@@ -20429,11 +20475,11 @@
|
|
|
20429
20475
|
* Gets or sets the display density to use for the input.
|
|
20430
20476
|
*/
|
|
20431
20477
|
get: function () {
|
|
20432
|
-
return this.i.
|
|
20478
|
+
return this.i.y;
|
|
20433
20479
|
},
|
|
20434
20480
|
set: function (v) {
|
|
20435
|
-
this.i.
|
|
20436
|
-
this._a("density", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, this.i.
|
|
20481
|
+
this.i.y = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, v);
|
|
20482
|
+
this._a("density", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, this.i.y));
|
|
20437
20483
|
},
|
|
20438
20484
|
enumerable: true,
|
|
20439
20485
|
configurable: true
|
|
@@ -20443,11 +20489,11 @@
|
|
|
20443
20489
|
* Gets the actual display density to use for the label.
|
|
20444
20490
|
*/
|
|
20445
20491
|
get: function () {
|
|
20446
|
-
return this.i.
|
|
20492
|
+
return this.i.x;
|
|
20447
20493
|
},
|
|
20448
20494
|
set: function (v) {
|
|
20449
|
-
this.i.
|
|
20450
|
-
this._a("actualDensity", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, this.i.
|
|
20495
|
+
this.i.x = igniteuiWebcomponentsCore.ensureEnum(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, v);
|
|
20496
|
+
this._a("actualDensity", igniteuiWebcomponentsCore.enumToString(igniteuiWebcomponentsCore.ControlDisplayDensity_$type, this.i.x));
|
|
20451
20497
|
},
|
|
20452
20498
|
enumerable: true,
|
|
20453
20499
|
configurable: true
|
|
@@ -20483,11 +20529,11 @@
|
|
|
20483
20529
|
* Specifies if the bound value includes the formatting symbols.
|
|
20484
20530
|
*/
|
|
20485
20531
|
get: function () {
|
|
20486
|
-
return this.i.
|
|
20532
|
+
return this.i.ar;
|
|
20487
20533
|
},
|
|
20488
20534
|
set: function (v) {
|
|
20489
|
-
this.i.
|
|
20490
|
-
this._a("includeLiterals", this.i.
|
|
20535
|
+
this.i.ar = igniteuiWebcomponentsCore.ensureBool(v);
|
|
20536
|
+
this._a("includeLiterals", this.i.ar);
|
|
20491
20537
|
},
|
|
20492
20538
|
enumerable: true,
|
|
20493
20539
|
configurable: true
|
|
@@ -20539,16 +20585,16 @@
|
|
|
20539
20585
|
* Gets or sets the use for the button.
|
|
20540
20586
|
*/
|
|
20541
20587
|
get: function () {
|
|
20542
|
-
if (this.i.
|
|
20588
|
+
if (this.i.ad == null) {
|
|
20543
20589
|
return null;
|
|
20544
20590
|
}
|
|
20545
|
-
return this.i.
|
|
20591
|
+
return this.i.ad.fontString;
|
|
20546
20592
|
},
|
|
20547
20593
|
set: function (v) {
|
|
20548
20594
|
var fi = new igniteuiWebcomponentsCore.FontInfo();
|
|
20549
20595
|
fi.fontString = v;
|
|
20550
|
-
this.i.
|
|
20551
|
-
this._a("textStyle", this.i.
|
|
20596
|
+
this.i.ad = fi;
|
|
20597
|
+
this._a("textStyle", this.i.ad != null ? this.i.ad.fontString : "");
|
|
20552
20598
|
},
|
|
20553
20599
|
enumerable: true,
|
|
20554
20600
|
configurable: true
|
|
@@ -20651,11 +20697,11 @@
|
|
|
20651
20697
|
* Gets or sets whether the input is hovered.
|
|
20652
20698
|
*/
|
|
20653
20699
|
get: function () {
|
|
20654
|
-
return this.i.
|
|
20700
|
+
return this.i.at;
|
|
20655
20701
|
},
|
|
20656
20702
|
set: function (v) {
|
|
20657
|
-
this.i.
|
|
20658
|
-
this._a("isHover", this.i.
|
|
20703
|
+
this.i.at = igniteuiWebcomponentsCore.ensureBool(v);
|
|
20704
|
+
this._a("isHover", this.i.at);
|
|
20659
20705
|
},
|
|
20660
20706
|
enumerable: true,
|
|
20661
20707
|
configurable: true
|
|
@@ -20675,7 +20721,7 @@
|
|
|
20675
20721
|
});
|
|
20676
20722
|
Object.defineProperty(IgcXInputComponent.prototype, "hasValue", {
|
|
20677
20723
|
get: function () {
|
|
20678
|
-
return this.i.
|
|
20724
|
+
return this.i.aq;
|
|
20679
20725
|
},
|
|
20680
20726
|
enumerable: true,
|
|
20681
20727
|
configurable: true
|
|
@@ -20790,6 +20836,7 @@
|
|
|
20790
20836
|
}
|
|
20791
20837
|
};
|
|
20792
20838
|
this.i.keyDown = igniteuiWebcomponentsCore.delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
20839
|
+
;
|
|
20793
20840
|
},
|
|
20794
20841
|
enumerable: true,
|
|
20795
20842
|
configurable: true
|
|
@@ -20817,6 +20864,7 @@
|
|
|
20817
20864
|
}
|
|
20818
20865
|
};
|
|
20819
20866
|
this.i.keyUp = igniteuiWebcomponentsCore.delegateCombine(this.i.keyUp, this._keyUp_wrapped);
|
|
20867
|
+
;
|
|
20820
20868
|
},
|
|
20821
20869
|
enumerable: true,
|
|
20822
20870
|
configurable: true
|
|
@@ -20844,6 +20892,7 @@
|
|
|
20844
20892
|
}
|
|
20845
20893
|
};
|
|
20846
20894
|
this.i.keyPress = igniteuiWebcomponentsCore.delegateCombine(this.i.keyPress, this._keyPress_wrapped);
|
|
20895
|
+
;
|
|
20847
20896
|
},
|
|
20848
20897
|
enumerable: true,
|
|
20849
20898
|
configurable: true
|
|
@@ -20871,6 +20920,7 @@
|
|
|
20871
20920
|
}
|
|
20872
20921
|
};
|
|
20873
20922
|
this.i.change = igniteuiWebcomponentsCore.delegateCombine(this.i.change, this._change_wrapped);
|
|
20923
|
+
;
|
|
20874
20924
|
},
|
|
20875
20925
|
enumerable: true,
|
|
20876
20926
|
configurable: true
|
|
@@ -20898,6 +20948,35 @@
|
|
|
20898
20948
|
}
|
|
20899
20949
|
};
|
|
20900
20950
|
this.i.changing = igniteuiWebcomponentsCore.delegateCombine(this.i.changing, this._changing_wrapped);
|
|
20951
|
+
;
|
|
20952
|
+
},
|
|
20953
|
+
enumerable: true,
|
|
20954
|
+
configurable: true
|
|
20955
|
+
});
|
|
20956
|
+
Object.defineProperty(IgcXInputComponent.prototype, "compositionEnd", {
|
|
20957
|
+
get: function () {
|
|
20958
|
+
return this._compositionEnd;
|
|
20959
|
+
},
|
|
20960
|
+
set: function (ev) {
|
|
20961
|
+
var _this = this;
|
|
20962
|
+
if (this._compositionEnd_wrapped !== null) {
|
|
20963
|
+
this.i.compositionEnd = igniteuiWebcomponentsCore.delegateRemove(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
20964
|
+
this._compositionEnd_wrapped = null;
|
|
20965
|
+
this._compositionEnd = null;
|
|
20966
|
+
}
|
|
20967
|
+
this._compositionEnd = ev;
|
|
20968
|
+
this._compositionEnd_wrapped = function (o, e) {
|
|
20969
|
+
var outerArgs = new IgcInputChangeEventArgs();
|
|
20970
|
+
outerArgs._provideImplementation(e);
|
|
20971
|
+
if (_this.beforeCompositionEnd) {
|
|
20972
|
+
_this.beforeCompositionEnd(_this, outerArgs);
|
|
20973
|
+
}
|
|
20974
|
+
if (_this._compositionEnd) {
|
|
20975
|
+
_this._compositionEnd(_this, outerArgs);
|
|
20976
|
+
}
|
|
20977
|
+
};
|
|
20978
|
+
this.i.compositionEnd = igniteuiWebcomponentsCore.delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
20979
|
+
;
|
|
20901
20980
|
},
|
|
20902
20981
|
enumerable: true,
|
|
20903
20982
|
configurable: true
|
|
@@ -24083,6 +24162,11 @@
|
|
|
24083
24162
|
configurable: true
|
|
24084
24163
|
});
|
|
24085
24164
|
IgcXInputGroupComponent.prototype.findByName = function (name) {
|
|
24165
|
+
if (this.findEphemera) {
|
|
24166
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
24167
|
+
return this.findEphemera(name);
|
|
24168
|
+
}
|
|
24169
|
+
}
|
|
24086
24170
|
if (this.inputs != null && this.inputs.findByName && this.inputs.findByName(name)) {
|
|
24087
24171
|
return this.inputs.findByName(name);
|
|
24088
24172
|
}
|
|
@@ -25388,7 +25472,7 @@
|
|
|
25388
25472
|
};
|
|
25389
25473
|
DatePicker.prototype.c5 = function () {
|
|
25390
25474
|
if (this.aa != null) {
|
|
25391
|
-
this.o.
|
|
25475
|
+
this.o.ad = this.aa;
|
|
25392
25476
|
}
|
|
25393
25477
|
};
|
|
25394
25478
|
DatePicker.prototype.cd = function () {
|
|
@@ -25410,7 +25494,7 @@
|
|
|
25410
25494
|
this.h.ak(this.o);
|
|
25411
25495
|
this.o.b3 = "text";
|
|
25412
25496
|
if (this.aa != null) {
|
|
25413
|
-
this.o.
|
|
25497
|
+
this.o.ad = this.aa;
|
|
25414
25498
|
}
|
|
25415
25499
|
this.o.disabled = !this.ap;
|
|
25416
25500
|
this.o.dy = this.de;
|
|
@@ -26728,6 +26812,7 @@
|
|
|
26728
26812
|
}
|
|
26729
26813
|
};
|
|
26730
26814
|
this.i.selectedValueChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
|
|
26815
|
+
;
|
|
26731
26816
|
},
|
|
26732
26817
|
enumerable: true,
|
|
26733
26818
|
configurable: true
|
|
@@ -26755,6 +26840,7 @@
|
|
|
26755
26840
|
}
|
|
26756
26841
|
};
|
|
26757
26842
|
this.i.gotFocus = igniteuiWebcomponentsCore.delegateCombine(this.i.gotFocus, this._gotFocus_wrapped);
|
|
26843
|
+
;
|
|
26758
26844
|
},
|
|
26759
26845
|
enumerable: true,
|
|
26760
26846
|
configurable: true
|
|
@@ -26782,6 +26868,7 @@
|
|
|
26782
26868
|
}
|
|
26783
26869
|
};
|
|
26784
26870
|
this.i.lostFocus = igniteuiWebcomponentsCore.delegateCombine(this.i.lostFocus, this._lostFocus_wrapped);
|
|
26871
|
+
;
|
|
26785
26872
|
},
|
|
26786
26873
|
enumerable: true,
|
|
26787
26874
|
configurable: true
|
|
@@ -26809,6 +26896,7 @@
|
|
|
26809
26896
|
}
|
|
26810
26897
|
};
|
|
26811
26898
|
this.i.keyDown = igniteuiWebcomponentsCore.delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
26899
|
+
;
|
|
26812
26900
|
},
|
|
26813
26901
|
enumerable: true,
|
|
26814
26902
|
configurable: true
|
|
@@ -26836,6 +26924,7 @@
|
|
|
26836
26924
|
}
|
|
26837
26925
|
};
|
|
26838
26926
|
this.i.changing = igniteuiWebcomponentsCore.delegateCombine(this.i.changing, this._changing_wrapped);
|
|
26927
|
+
;
|
|
26839
26928
|
},
|
|
26840
26929
|
enumerable: true,
|
|
26841
26930
|
configurable: true
|
|
@@ -28935,6 +29024,11 @@
|
|
|
28935
29024
|
configurable: true
|
|
28936
29025
|
});
|
|
28937
29026
|
IgcXCheckboxComponent.prototype.findByName = function (name) {
|
|
29027
|
+
if (this.findEphemera) {
|
|
29028
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
29029
|
+
return this.findEphemera(name);
|
|
29030
|
+
}
|
|
29031
|
+
}
|
|
28938
29032
|
return null;
|
|
28939
29033
|
};
|
|
28940
29034
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "hasUserValues", {
|
|
@@ -29039,6 +29133,7 @@
|
|
|
29039
29133
|
}
|
|
29040
29134
|
};
|
|
29041
29135
|
this.i.change = igniteuiWebcomponentsCore.delegateCombine(this.i.change, this._change_wrapped);
|
|
29136
|
+
;
|
|
29042
29137
|
},
|
|
29043
29138
|
enumerable: true,
|
|
29044
29139
|
configurable: true
|
|
@@ -32143,6 +32238,11 @@
|
|
|
32143
32238
|
configurable: true
|
|
32144
32239
|
});
|
|
32145
32240
|
IgcXButtonGroupComponent.prototype.findByName = function (name) {
|
|
32241
|
+
if (this.findEphemera) {
|
|
32242
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
32243
|
+
return this.findEphemera(name);
|
|
32244
|
+
}
|
|
32245
|
+
}
|
|
32146
32246
|
if (this.buttons != null && this.buttons.findByName && this.buttons.findByName(name)) {
|
|
32147
32247
|
return this.buttons.findByName(name);
|
|
32148
32248
|
}
|
|
@@ -32250,6 +32350,7 @@
|
|
|
32250
32350
|
}
|
|
32251
32351
|
};
|
|
32252
32352
|
this.i.selectionChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.selectionChanged, this._selectionChanged_wrapped);
|
|
32353
|
+
;
|
|
32253
32354
|
},
|
|
32254
32355
|
enumerable: true,
|
|
32255
32356
|
configurable: true
|
|
@@ -32759,7 +32860,7 @@
|
|
|
32759
32860
|
/**
|
|
32760
32861
|
* @hidden
|
|
32761
32862
|
*/
|
|
32762
|
-
var KEYCODES_$type = /*@__PURE__*/ igniteuiWebcomponentsCore.markEnum('KEYCODES', 'ENTER,13|SPACE,32|ESCAPE,27|LEFT_ARROW,37|UP_ARROW,38|RIGHT_ARROW,39|DOWN_ARROW,40|F2,113|TAB,9|CTRL,17|Z,90|Y,89|X,88|BACKSPACE,8|DELETE,46|INPUT_METHOD,229');
|
|
32863
|
+
var KEYCODES_$type = /*@__PURE__*/ igniteuiWebcomponentsCore.markEnum('KEYCODES', 'ENTER,13|SPACE,32|ESCAPE,27|LEFT_ARROW,37|UP_ARROW,38|RIGHT_ARROW,39|DOWN_ARROW,40|F2,113|TAB,9|CTRL,17|C,67|Z,90|Y,89|X,88|BACKSPACE,8|DELETE,46|INPUT_METHOD,229');
|
|
32763
32864
|
|
|
32764
32865
|
/*
|
|
32765
32866
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|