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
|
@@ -726,6 +726,11 @@ let IgcXRippleComponent = /*@__PURE__*/ (() => {
|
|
|
726
726
|
this._a("isHoverEnabled", this.i.k);
|
|
727
727
|
}
|
|
728
728
|
findByName(name) {
|
|
729
|
+
if (this.findEphemera) {
|
|
730
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
731
|
+
return this.findEphemera(name);
|
|
732
|
+
}
|
|
733
|
+
}
|
|
729
734
|
return null;
|
|
730
735
|
}
|
|
731
736
|
get hasUserValues() {
|
|
@@ -5856,6 +5861,11 @@ let IgcXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
5856
5861
|
this._a("disableTransitions", this.i.ag);
|
|
5857
5862
|
}
|
|
5858
5863
|
findByName(name) {
|
|
5864
|
+
if (this.findEphemera) {
|
|
5865
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
5866
|
+
return this.findEphemera(name);
|
|
5867
|
+
}
|
|
5868
|
+
}
|
|
5859
5869
|
return null;
|
|
5860
5870
|
}
|
|
5861
5871
|
get hasUserValues() {
|
|
@@ -5954,6 +5964,7 @@ let IgcXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
5954
5964
|
}
|
|
5955
5965
|
};
|
|
5956
5966
|
this.i.clicked = delegateCombine(this.i.clicked, this._clicked_wrapped);
|
|
5967
|
+
;
|
|
5957
5968
|
}
|
|
5958
5969
|
}
|
|
5959
5970
|
IgcXButtonComponent._observedAttributesIgcXButtonComponent = null;
|
|
@@ -7078,6 +7089,11 @@ let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
7078
7089
|
this._a("opacity", this.i.x);
|
|
7079
7090
|
}
|
|
7080
7091
|
findByName(name) {
|
|
7092
|
+
if (this.findEphemera) {
|
|
7093
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
7094
|
+
return this.findEphemera(name);
|
|
7095
|
+
}
|
|
7096
|
+
}
|
|
7081
7097
|
return null;
|
|
7082
7098
|
}
|
|
7083
7099
|
get hasUserValues() {
|
|
@@ -10723,6 +10739,7 @@ let IgcXCalendarComponent = /*@__PURE__*/ (() => {
|
|
|
10723
10739
|
}
|
|
10724
10740
|
};
|
|
10725
10741
|
this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
|
|
10742
|
+
;
|
|
10726
10743
|
}
|
|
10727
10744
|
get valueChange() {
|
|
10728
10745
|
return this._valueChange;
|
|
@@ -12261,7 +12278,11 @@ let InputView = /*@__PURE__*/ (() => {
|
|
|
12261
12278
|
}
|
|
12262
12279
|
x(a) {
|
|
12263
12280
|
this.e = false;
|
|
12264
|
-
|
|
12281
|
+
let b = null;
|
|
12282
|
+
if (a.originalEvent != null) {
|
|
12283
|
+
b = (a.originalEvent.data);
|
|
12284
|
+
}
|
|
12285
|
+
this.b.cu(b);
|
|
12265
12286
|
}
|
|
12266
12287
|
as() {
|
|
12267
12288
|
this.k.setAttribute("type", this.b.b3);
|
|
@@ -12276,7 +12297,7 @@ let InputView = /*@__PURE__*/ (() => {
|
|
|
12276
12297
|
this.k.setAttribute("placeholder", this.b.cb);
|
|
12277
12298
|
}
|
|
12278
12299
|
a1() {
|
|
12279
|
-
switch (this.b.
|
|
12300
|
+
switch (this.b.x) {
|
|
12280
12301
|
case 1:
|
|
12281
12302
|
this.k.setStyleProperty("height", "2rem");
|
|
12282
12303
|
this.k.setStyleProperty("font-size", "1rem");
|
|
@@ -12295,7 +12316,7 @@ let InputView = /*@__PURE__*/ (() => {
|
|
|
12295
12316
|
let a = new TransformGroup();
|
|
12296
12317
|
a.j.add(((() => {
|
|
12297
12318
|
let $ret = new TranslateTransform();
|
|
12298
|
-
$ret.k = this.b.
|
|
12319
|
+
$ret.k = this.b.o == 2 ? (this.i() * -0.25) : 0;
|
|
12299
12320
|
return $ret;
|
|
12300
12321
|
})()));
|
|
12301
12322
|
a.j.add(((() => {
|
|
@@ -13354,17 +13375,17 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
13354
13375
|
}
|
|
13355
13376
|
mp() {
|
|
13356
13377
|
this.l3((a) => {
|
|
13357
|
-
a.
|
|
13378
|
+
a.y = this.m;
|
|
13358
13379
|
switch (this.d) {
|
|
13359
13380
|
case 0:
|
|
13360
|
-
a.
|
|
13381
|
+
a.o = 0;
|
|
13361
13382
|
break;
|
|
13362
13383
|
case 1:
|
|
13363
|
-
a.
|
|
13384
|
+
a.o = 1;
|
|
13364
13385
|
break;
|
|
13365
13386
|
case 2:
|
|
13366
13387
|
case 3:
|
|
13367
|
-
a.
|
|
13388
|
+
a.o = 2;
|
|
13368
13389
|
break;
|
|
13369
13390
|
}
|
|
13370
13391
|
a.dh(this.al, false);
|
|
@@ -13568,7 +13589,7 @@ let XInputGroup = /*@__PURE__*/ (() => {
|
|
|
13568
13589
|
get af() {
|
|
13569
13590
|
let a = false;
|
|
13570
13591
|
this.l3((b) => {
|
|
13571
|
-
if (b.
|
|
13592
|
+
if (b.aq) {
|
|
13572
13593
|
a = true;
|
|
13573
13594
|
}
|
|
13574
13595
|
});
|
|
@@ -15991,26 +16012,26 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
15991
16012
|
class XInput extends XInputGroupItem {
|
|
15992
16013
|
constructor() {
|
|
15993
16014
|
super();
|
|
15994
|
-
this.
|
|
16015
|
+
this.u = null;
|
|
15995
16016
|
this.a3 = 0;
|
|
15996
16017
|
this.a4 = 0;
|
|
15997
|
-
this.
|
|
16018
|
+
this.q = 0;
|
|
15998
16019
|
this.bl = "";
|
|
15999
16020
|
this.bf = "";
|
|
16000
|
-
this.ae = false;
|
|
16001
|
-
this.bg = null;
|
|
16002
16021
|
this.af = false;
|
|
16003
|
-
this.
|
|
16022
|
+
this.bg = null;
|
|
16023
|
+
this.ag = false;
|
|
16024
|
+
this.ao = false;
|
|
16004
16025
|
this._view = null;
|
|
16005
|
-
this.
|
|
16026
|
+
this.n = 0;
|
|
16027
|
+
this.w = 1;
|
|
16006
16028
|
this.v = 1;
|
|
16007
|
-
this.u = 1;
|
|
16008
16029
|
this.bk = null;
|
|
16009
16030
|
this.bn = "_";
|
|
16010
|
-
this.
|
|
16031
|
+
this.ai = false;
|
|
16011
16032
|
this.dq = XInput.dw;
|
|
16012
16033
|
this.dp = XInput.dv;
|
|
16013
|
-
this.
|
|
16034
|
+
this.z = null;
|
|
16014
16035
|
this.ds = XInput.dw;
|
|
16015
16036
|
this.keyDown = null;
|
|
16016
16037
|
this.keyUp = null;
|
|
@@ -16019,35 +16040,35 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16019
16040
|
this.lostFocus = null;
|
|
16020
16041
|
this.mouseDown = null;
|
|
16021
16042
|
this.mouseUp = null;
|
|
16022
|
-
this.
|
|
16043
|
+
this.aa = null;
|
|
16023
16044
|
this.bj = "text";
|
|
16024
16045
|
this.bm = "text";
|
|
16025
16046
|
this.dr = null;
|
|
16026
16047
|
this.bi = "ig-input-" + XInput.bb++;
|
|
16027
16048
|
this.a5 = 0;
|
|
16028
|
-
this.
|
|
16049
|
+
this.ah = false;
|
|
16029
16050
|
this.bh = null;
|
|
16030
16051
|
this.be = null;
|
|
16031
|
-
this.
|
|
16052
|
+
this.al = false;
|
|
16032
16053
|
this.bd = null;
|
|
16033
16054
|
this.bo = null;
|
|
16055
|
+
this.ak = false;
|
|
16034
16056
|
this.aj = false;
|
|
16035
|
-
this.
|
|
16036
|
-
this.al = false;
|
|
16057
|
+
this.am = false;
|
|
16037
16058
|
this.change = null;
|
|
16038
16059
|
this.changing = null;
|
|
16039
16060
|
this.compositionStart = null;
|
|
16040
16061
|
this.compositionEnd = null;
|
|
16041
|
-
this.
|
|
16042
|
-
this.
|
|
16043
|
-
this.
|
|
16044
|
-
this.
|
|
16062
|
+
this.an = true;
|
|
16063
|
+
this.ae = null;
|
|
16064
|
+
this.ax = false;
|
|
16065
|
+
this.u = new MaskParsingService();
|
|
16045
16066
|
let a = new InputView();
|
|
16046
16067
|
a.b = this;
|
|
16047
16068
|
this.view = a;
|
|
16048
16069
|
this.view.ao();
|
|
16049
|
-
XInput.
|
|
16050
|
-
XInput.
|
|
16070
|
+
XInput.ac = new FontInfo();
|
|
16071
|
+
XInput.ac.n = "Verdana";
|
|
16051
16072
|
}
|
|
16052
16073
|
get view() {
|
|
16053
16074
|
return this._view;
|
|
@@ -16058,16 +16079,26 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16058
16079
|
destroy() {
|
|
16059
16080
|
this.provideContainer(null);
|
|
16060
16081
|
}
|
|
16061
|
-
get
|
|
16062
|
-
return this.
|
|
16082
|
+
get o() {
|
|
16083
|
+
return this.n;
|
|
16063
16084
|
}
|
|
16064
|
-
set
|
|
16065
|
-
let b = this.
|
|
16066
|
-
this.
|
|
16067
|
-
if (b != this.
|
|
16085
|
+
set o(a) {
|
|
16086
|
+
let b = this.n;
|
|
16087
|
+
this.n = a;
|
|
16088
|
+
if (b != this.n) {
|
|
16068
16089
|
this.g("ShiftType", enumGetBox(InputShiftType_$type, b), enumGetBox(InputShiftType_$type, a));
|
|
16069
16090
|
}
|
|
16070
16091
|
}
|
|
16092
|
+
get y() {
|
|
16093
|
+
return this.w;
|
|
16094
|
+
}
|
|
16095
|
+
set y(a) {
|
|
16096
|
+
let b = this.w;
|
|
16097
|
+
this.w = a;
|
|
16098
|
+
if (b != this.w) {
|
|
16099
|
+
this.g("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
|
|
16100
|
+
}
|
|
16101
|
+
}
|
|
16071
16102
|
get x() {
|
|
16072
16103
|
return this.v;
|
|
16073
16104
|
}
|
|
@@ -16075,16 +16106,6 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16075
16106
|
let b = this.v;
|
|
16076
16107
|
this.v = a;
|
|
16077
16108
|
if (b != this.v) {
|
|
16078
|
-
this.g("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
|
|
16079
|
-
}
|
|
16080
|
-
}
|
|
16081
|
-
get w() {
|
|
16082
|
-
return this.u;
|
|
16083
|
-
}
|
|
16084
|
-
set w(a) {
|
|
16085
|
-
let b = this.u;
|
|
16086
|
-
this.u = a;
|
|
16087
|
-
if (b != this.u) {
|
|
16088
16109
|
this.g("ActualDensity", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, a));
|
|
16089
16110
|
}
|
|
16090
16111
|
}
|
|
@@ -16108,13 +16129,13 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16108
16129
|
this.g("PromptChar", b, a);
|
|
16109
16130
|
}
|
|
16110
16131
|
}
|
|
16111
|
-
get
|
|
16112
|
-
return this.
|
|
16132
|
+
get ar() {
|
|
16133
|
+
return this.ai;
|
|
16113
16134
|
}
|
|
16114
|
-
set
|
|
16115
|
-
let b = this.
|
|
16116
|
-
this.
|
|
16117
|
-
if (b != this.
|
|
16135
|
+
set ar(a) {
|
|
16136
|
+
let b = this.ai;
|
|
16137
|
+
this.ai = a;
|
|
16138
|
+
if (b != this.ai) {
|
|
16118
16139
|
this.g("IncludeLiterals", b, a);
|
|
16119
16140
|
}
|
|
16120
16141
|
}
|
|
@@ -16132,12 +16153,12 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16132
16153
|
this.dl();
|
|
16133
16154
|
break;
|
|
16134
16155
|
case "Value":
|
|
16135
|
-
if (!this.
|
|
16156
|
+
if (!this.aj) {
|
|
16136
16157
|
this.view.at(this.cj);
|
|
16137
16158
|
if (this.b != null) {
|
|
16138
16159
|
this.b.mt();
|
|
16139
16160
|
}
|
|
16140
|
-
if (this.b9 != null && !this.
|
|
16161
|
+
if (this.b9 != null && !this.ao) {
|
|
16141
16162
|
this.dn(this.cj);
|
|
16142
16163
|
}
|
|
16143
16164
|
}
|
|
@@ -16146,7 +16167,7 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16146
16167
|
this.view.av(this.e);
|
|
16147
16168
|
break;
|
|
16148
16169
|
case "Density":
|
|
16149
|
-
this.
|
|
16170
|
+
this.x = this.y == 0 ? 1 : this.y;
|
|
16150
16171
|
break;
|
|
16151
16172
|
case "ActualDensity":
|
|
16152
16173
|
this.view.a1();
|
|
@@ -16173,10 +16194,10 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16173
16194
|
this.c1();
|
|
16174
16195
|
break;
|
|
16175
16196
|
case "IsDisabled":
|
|
16176
|
-
this.view.au(this.
|
|
16197
|
+
this.view.au(this.ak);
|
|
16177
16198
|
break;
|
|
16178
16199
|
case "IsReadOnly":
|
|
16179
|
-
this.view.aw(this.
|
|
16200
|
+
this.view.aw(this.am);
|
|
16180
16201
|
break;
|
|
16181
16202
|
}
|
|
16182
16203
|
}
|
|
@@ -16195,11 +16216,11 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16195
16216
|
dm() {
|
|
16196
16217
|
this.du = this.dy != null ? this.dy : XInput.dw;
|
|
16197
16218
|
this.dt = this.dx != null ? this.dx : XInput.dw;
|
|
16198
|
-
this.
|
|
16219
|
+
this.ab = this.ad != null ? this.ad : XInput.ac;
|
|
16199
16220
|
}
|
|
16200
16221
|
dl() {
|
|
16201
|
-
if (this.
|
|
16202
|
-
this.view.a3(this.
|
|
16222
|
+
if (this.ab != null) {
|
|
16223
|
+
this.view.a3(this.ab);
|
|
16203
16224
|
}
|
|
16204
16225
|
NativeUI.o(this.view.o, this.du);
|
|
16205
16226
|
}
|
|
@@ -16223,13 +16244,13 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16223
16244
|
this.g("ActualHoverTextColor", b, a);
|
|
16224
16245
|
}
|
|
16225
16246
|
}
|
|
16226
|
-
get
|
|
16227
|
-
return this.
|
|
16247
|
+
get ab() {
|
|
16248
|
+
return this.z;
|
|
16228
16249
|
}
|
|
16229
|
-
set
|
|
16230
|
-
let b = this.
|
|
16231
|
-
this.
|
|
16232
|
-
if (b != this.
|
|
16250
|
+
set ab(a) {
|
|
16251
|
+
let b = this.z;
|
|
16252
|
+
this.z = a;
|
|
16253
|
+
if (b != this.z) {
|
|
16233
16254
|
this.g("ActualTextStyle", b, a);
|
|
16234
16255
|
}
|
|
16235
16256
|
}
|
|
@@ -16265,7 +16286,7 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16265
16286
|
if ((b == 17 && b == 90) || (b == 17 && b == 89)) {
|
|
16266
16287
|
a.preventDefault();
|
|
16267
16288
|
}
|
|
16268
|
-
this.
|
|
16289
|
+
this.q = b;
|
|
16269
16290
|
this.a4 = this.a7();
|
|
16270
16291
|
this.a3 = this.a6();
|
|
16271
16292
|
}
|
|
@@ -16301,20 +16322,20 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16301
16322
|
}
|
|
16302
16323
|
cx() {
|
|
16303
16324
|
if (this.b9 != null) {
|
|
16304
|
-
if (!this.
|
|
16325
|
+
if (!this.af) {
|
|
16305
16326
|
this.dk(this.bf);
|
|
16306
16327
|
}
|
|
16307
16328
|
}
|
|
16308
16329
|
}
|
|
16309
16330
|
cy() {
|
|
16310
16331
|
if (this.b9 != null) {
|
|
16311
|
-
if (!this.
|
|
16332
|
+
if (!this.af) {
|
|
16312
16333
|
this.dj(this.cj);
|
|
16313
16334
|
}
|
|
16314
16335
|
}
|
|
16315
16336
|
}
|
|
16316
16337
|
cs() {
|
|
16317
|
-
this.
|
|
16338
|
+
this.aj = true;
|
|
16318
16339
|
this.cj = this.view.q();
|
|
16319
16340
|
if (this.change != null) {
|
|
16320
16341
|
this.change(this, ((() => {
|
|
@@ -16324,24 +16345,24 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16324
16345
|
return $ret;
|
|
16325
16346
|
})()));
|
|
16326
16347
|
}
|
|
16327
|
-
this.
|
|
16348
|
+
this.aj = false;
|
|
16328
16349
|
}
|
|
16329
16350
|
ct() {
|
|
16330
|
-
this.
|
|
16351
|
+
this.aj = true;
|
|
16331
16352
|
this.cj = this.view.q();
|
|
16332
|
-
this.
|
|
16353
|
+
this.aj = false;
|
|
16333
16354
|
if (this.b9 != null) {
|
|
16334
|
-
this.
|
|
16335
|
-
if (this.
|
|
16355
|
+
this.ao = true;
|
|
16356
|
+
if (this.ag) {
|
|
16336
16357
|
this.a4 = this.a7();
|
|
16337
16358
|
}
|
|
16338
|
-
if (this.cj.length < this.bl.length && this.
|
|
16339
|
-
this.
|
|
16359
|
+
if (this.cj.length < this.bl.length && this.q == 229) {
|
|
16360
|
+
this.q = 8;
|
|
16340
16361
|
}
|
|
16341
16362
|
let a = this.a7();
|
|
16342
16363
|
let b = this.a6();
|
|
16343
16364
|
let c = "";
|
|
16344
|
-
switch (this.
|
|
16365
|
+
switch (this.q) {
|
|
16345
16366
|
case 46:
|
|
16346
16367
|
this.a3 = this.a4 == this.a3 ? ++this.a3 : this.a3;
|
|
16347
16368
|
break;
|
|
@@ -16355,18 +16376,18 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16355
16376
|
let d = new MaskOptions();
|
|
16356
16377
|
d.a = this.b9;
|
|
16357
16378
|
d.b = this.cd;
|
|
16358
|
-
let e = this.
|
|
16379
|
+
let e = this.u.a(this.bl, c, d, this.a4, this.a3);
|
|
16359
16380
|
this.cj = e.b;
|
|
16360
|
-
if (this.
|
|
16381
|
+
if (this.q == 8) {
|
|
16361
16382
|
e.a = this.a4;
|
|
16362
16383
|
}
|
|
16363
16384
|
this.di(e.a, e.a);
|
|
16364
|
-
let f = this.
|
|
16365
|
-
this.bf = this.
|
|
16385
|
+
let f = this.u.i(this.cj, d);
|
|
16386
|
+
this.bf = this.ar ? this.cj : f;
|
|
16366
16387
|
this.cl();
|
|
16367
|
-
this.
|
|
16388
|
+
this.ao = false;
|
|
16368
16389
|
}
|
|
16369
|
-
this.
|
|
16390
|
+
this.aj = true;
|
|
16370
16391
|
if (this.changing != null) {
|
|
16371
16392
|
this.changing(this, ((() => {
|
|
16372
16393
|
let $ret = new InputChangeEventArgs();
|
|
@@ -16375,31 +16396,35 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16375
16396
|
return $ret;
|
|
16376
16397
|
})()));
|
|
16377
16398
|
}
|
|
16378
|
-
this.
|
|
16399
|
+
this.aj = false;
|
|
16379
16400
|
}
|
|
16380
16401
|
cv() {
|
|
16381
16402
|
if (this.compositionStart != null) {
|
|
16382
16403
|
this.compositionStart(this, new EventArgs());
|
|
16383
16404
|
}
|
|
16384
16405
|
}
|
|
16385
|
-
cu() {
|
|
16406
|
+
cu(a) {
|
|
16386
16407
|
if (this.compositionEnd != null) {
|
|
16387
|
-
this.compositionEnd(this,
|
|
16408
|
+
this.compositionEnd(this, ((() => {
|
|
16409
|
+
let $ret = new InputChangeEventArgs();
|
|
16410
|
+
$ret.value = a;
|
|
16411
|
+
return $ret;
|
|
16412
|
+
})()));
|
|
16388
16413
|
}
|
|
16389
16414
|
}
|
|
16390
16415
|
c6() {
|
|
16391
|
-
this.
|
|
16416
|
+
this.at = true;
|
|
16392
16417
|
}
|
|
16393
16418
|
c7() {
|
|
16394
|
-
this.
|
|
16419
|
+
this.at = false;
|
|
16395
16420
|
}
|
|
16396
|
-
get
|
|
16397
|
-
return this.
|
|
16421
|
+
get ad() {
|
|
16422
|
+
return this.aa;
|
|
16398
16423
|
}
|
|
16399
|
-
set
|
|
16400
|
-
let b = this.
|
|
16401
|
-
this.
|
|
16402
|
-
if (b != this.
|
|
16424
|
+
set ad(a) {
|
|
16425
|
+
let b = this.aa;
|
|
16426
|
+
this.aa = a;
|
|
16427
|
+
if (b != this.aa) {
|
|
16403
16428
|
this.g("TextStyle", b, a);
|
|
16404
16429
|
}
|
|
16405
16430
|
}
|
|
@@ -16443,8 +16468,8 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16443
16468
|
this.g("Id", b, a);
|
|
16444
16469
|
}
|
|
16445
16470
|
}
|
|
16446
|
-
get
|
|
16447
|
-
return this.
|
|
16471
|
+
get ap() {
|
|
16472
|
+
return this.ah;
|
|
16448
16473
|
}
|
|
16449
16474
|
get ba() {
|
|
16450
16475
|
return this.a5;
|
|
@@ -16452,7 +16477,7 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16452
16477
|
set ba(a) {
|
|
16453
16478
|
let b = this.a5;
|
|
16454
16479
|
this.a5 = a;
|
|
16455
|
-
this.
|
|
16480
|
+
this.ah = true;
|
|
16456
16481
|
if (b != this.a5) {
|
|
16457
16482
|
this.g("TabIndex", b, a);
|
|
16458
16483
|
}
|
|
@@ -16477,13 +16502,13 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16477
16502
|
this.g("AriaLabel", b, a);
|
|
16478
16503
|
}
|
|
16479
16504
|
}
|
|
16480
|
-
get
|
|
16481
|
-
return this.
|
|
16505
|
+
get at() {
|
|
16506
|
+
return this.al;
|
|
16482
16507
|
}
|
|
16483
|
-
set
|
|
16484
|
-
let b = this.
|
|
16485
|
-
this.
|
|
16486
|
-
if (b != this.
|
|
16508
|
+
set at(a) {
|
|
16509
|
+
let b = this.al;
|
|
16510
|
+
this.al = a;
|
|
16511
|
+
if (b != this.al) {
|
|
16487
16512
|
this.g("IsHover", b, a);
|
|
16488
16513
|
}
|
|
16489
16514
|
}
|
|
@@ -16497,27 +16522,27 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16497
16522
|
this.g("Value", b, a);
|
|
16498
16523
|
}
|
|
16499
16524
|
}
|
|
16500
|
-
get
|
|
16525
|
+
get aq() {
|
|
16501
16526
|
return !stringIsNullOrEmpty(this.cj);
|
|
16502
16527
|
}
|
|
16503
16528
|
get disabled() {
|
|
16504
|
-
return this.
|
|
16529
|
+
return this.ak;
|
|
16505
16530
|
}
|
|
16506
16531
|
set disabled(a) {
|
|
16507
|
-
let b = this.
|
|
16508
|
-
this.
|
|
16509
|
-
if (b != this.
|
|
16532
|
+
let b = this.ak;
|
|
16533
|
+
this.ak = a;
|
|
16534
|
+
if (b != this.ak) {
|
|
16510
16535
|
this.g("IsDisabled", b, a);
|
|
16511
16536
|
}
|
|
16512
16537
|
}
|
|
16513
16538
|
get readonly() {
|
|
16514
|
-
return this.
|
|
16539
|
+
return this.am;
|
|
16515
16540
|
}
|
|
16516
16541
|
set readonly(a) {
|
|
16517
|
-
let b = this.
|
|
16518
|
-
this.
|
|
16519
|
-
if (b != this.
|
|
16520
|
-
this.g("IsReadOnly", b, this.
|
|
16542
|
+
let b = this.am;
|
|
16543
|
+
this.am = a;
|
|
16544
|
+
if (b != this.am) {
|
|
16545
|
+
this.g("IsReadOnly", b, this.am);
|
|
16521
16546
|
}
|
|
16522
16547
|
}
|
|
16523
16548
|
dd() {
|
|
@@ -16528,7 +16553,7 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16528
16553
|
onAttachedToUI() {
|
|
16529
16554
|
this.view.aj();
|
|
16530
16555
|
}
|
|
16531
|
-
|
|
16556
|
+
aw() {
|
|
16532
16557
|
return this.view.f();
|
|
16533
16558
|
}
|
|
16534
16559
|
bc() {
|
|
@@ -16543,19 +16568,19 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16543
16568
|
let b = this.view.o;
|
|
16544
16569
|
a.h = this.view.j.rootWrapper.getNativeElement().offsetTop;
|
|
16545
16570
|
a.f = this.view.j.rootWrapper.getNativeElement().offsetLeft;
|
|
16546
|
-
a.b = this.
|
|
16547
|
-
a.c = this.
|
|
16571
|
+
a.b = this.o;
|
|
16572
|
+
a.c = this.x;
|
|
16548
16573
|
a.j = this.b9;
|
|
16549
16574
|
a.m = this.cd;
|
|
16550
|
-
a.d = this.
|
|
16575
|
+
a.d = this.ar;
|
|
16551
16576
|
a.a = AppearanceHelper.a(NativeUI.ah(b));
|
|
16552
16577
|
a.i = this.b3;
|
|
16553
16578
|
a.l = this.cb;
|
|
16554
|
-
a.e = this.
|
|
16579
|
+
a.e = this.at;
|
|
16555
16580
|
a.t = this.cj;
|
|
16556
16581
|
a.k = this.e;
|
|
16557
|
-
if (this.
|
|
16558
|
-
let c = this.
|
|
16582
|
+
if (this.ab != null) {
|
|
16583
|
+
let c = this.ab;
|
|
16559
16584
|
if (this.view != null && c.n == null) {
|
|
16560
16585
|
let d = this.view.j;
|
|
16561
16586
|
let e = FontUtil.getFontInfoFromString(d, c.fontString);
|
|
@@ -16602,23 +16627,23 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16602
16627
|
this.view.ar();
|
|
16603
16628
|
}
|
|
16604
16629
|
dk(a) {
|
|
16605
|
-
this.
|
|
16630
|
+
this.ao = true;
|
|
16606
16631
|
let b = new MaskOptions();
|
|
16607
16632
|
b.a = this.b9;
|
|
16608
16633
|
b.b = this.cd;
|
|
16609
|
-
this.cj = this.
|
|
16634
|
+
this.cj = this.u.h(this.cj, b);
|
|
16610
16635
|
this.bl = this.cj;
|
|
16611
|
-
this.
|
|
16636
|
+
this.ao = false;
|
|
16612
16637
|
}
|
|
16613
16638
|
dj(a) {
|
|
16614
|
-
this.
|
|
16639
|
+
this.ao = true;
|
|
16615
16640
|
let b = new MaskOptions();
|
|
16616
16641
|
b.a = this.b9;
|
|
16617
16642
|
b.b = this.cd;
|
|
16618
|
-
if (a == this.
|
|
16643
|
+
if (a == this.u.h(null, b)) {
|
|
16619
16644
|
this.cj = "";
|
|
16620
16645
|
}
|
|
16621
|
-
this.
|
|
16646
|
+
this.ao = false;
|
|
16622
16647
|
}
|
|
16623
16648
|
dn(a) {
|
|
16624
16649
|
let b = new MaskOptions();
|
|
@@ -16627,8 +16652,8 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16627
16652
|
if (this.cd != null && this.cd.length > 1) {
|
|
16628
16653
|
b.b = this.cd.substr(0, 1);
|
|
16629
16654
|
}
|
|
16630
|
-
this.cj = a != null ? this.
|
|
16631
|
-
this.bf = this.
|
|
16655
|
+
this.cj = a != null ? this.u.h(a, b) : "";
|
|
16656
|
+
this.bf = this.ar ? this.cj : a;
|
|
16632
16657
|
if (this.changing != null) {
|
|
16633
16658
|
this.changing(this, ((() => {
|
|
16634
16659
|
let $ret = new InputChangeEventArgs();
|
|
@@ -16640,15 +16665,15 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16640
16665
|
}
|
|
16641
16666
|
cl() {
|
|
16642
16667
|
this.bl = this.cj;
|
|
16643
|
-
this.
|
|
16668
|
+
this.ag = false;
|
|
16644
16669
|
this.a4 = 0;
|
|
16645
16670
|
this.a3 = 0;
|
|
16646
|
-
this.
|
|
16671
|
+
this.q = 0;
|
|
16647
16672
|
}
|
|
16648
16673
|
a7() {
|
|
16649
16674
|
let a = this.view.n();
|
|
16650
16675
|
let b = this.view.m();
|
|
16651
|
-
return a == b && this.
|
|
16676
|
+
return a == b && this.ag ? b - this.bg.length : a;
|
|
16652
16677
|
}
|
|
16653
16678
|
a6() {
|
|
16654
16679
|
return this.view.m();
|
|
@@ -16665,38 +16690,38 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16665
16690
|
set selectionEnd(a) {
|
|
16666
16691
|
this.view.ax(a);
|
|
16667
16692
|
}
|
|
16668
|
-
get
|
|
16669
|
-
return this.
|
|
16693
|
+
get av() {
|
|
16694
|
+
return this.an;
|
|
16670
16695
|
}
|
|
16671
|
-
set
|
|
16672
|
-
let b = this.
|
|
16673
|
-
this.
|
|
16674
|
-
if (b != this.
|
|
16696
|
+
set av(a) {
|
|
16697
|
+
let b = this.an;
|
|
16698
|
+
this.an = a;
|
|
16699
|
+
if (b != this.an) {
|
|
16675
16700
|
this.g("IsShown", b, a);
|
|
16676
16701
|
}
|
|
16677
16702
|
}
|
|
16678
16703
|
dh(a, b = true) {
|
|
16679
|
-
let c = this.
|
|
16704
|
+
let c = this.ax;
|
|
16680
16705
|
if (!b) {
|
|
16681
|
-
this.
|
|
16706
|
+
this.ax = true;
|
|
16682
16707
|
}
|
|
16683
16708
|
try {
|
|
16684
|
-
this.
|
|
16709
|
+
this.av = a;
|
|
16685
16710
|
}
|
|
16686
16711
|
finally {
|
|
16687
16712
|
if (!b) {
|
|
16688
|
-
this.
|
|
16713
|
+
this.ax = c;
|
|
16689
16714
|
}
|
|
16690
16715
|
}
|
|
16691
16716
|
}
|
|
16692
16717
|
c1() {
|
|
16693
16718
|
this.co();
|
|
16694
|
-
this.de(this.
|
|
16719
|
+
this.de(this.ae, this.av);
|
|
16695
16720
|
}
|
|
16696
16721
|
co() {
|
|
16697
16722
|
this.view.ai();
|
|
16698
|
-
if (this.
|
|
16699
|
-
this.
|
|
16723
|
+
if (this.ae == null) {
|
|
16724
|
+
this.ae = KeyFrameAnimationFactory.f.c(this.view.a(this.i).m(new AnimationKeyFrameProperty(1, 0)).m(new AnimationKeyFrameProperty(1, 1)));
|
|
16700
16725
|
}
|
|
16701
16726
|
}
|
|
16702
16727
|
get i() {
|
|
@@ -16713,7 +16738,7 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16713
16738
|
else {
|
|
16714
16739
|
a.reverse();
|
|
16715
16740
|
}
|
|
16716
|
-
if (this.
|
|
16741
|
+
if (this.ax) {
|
|
16717
16742
|
a.finish();
|
|
16718
16743
|
a.commitStyles();
|
|
16719
16744
|
return;
|
|
@@ -16724,7 +16749,7 @@ let XInput = /*@__PURE__*/ (() => {
|
|
|
16724
16749
|
XInput.$t = /*@__PURE__*/ markType(XInput, 'XInput', XInputGroupItem.$);
|
|
16725
16750
|
XInput.dw = /*@__PURE__*/ BrushUtil.g(221, 0, 0, 0);
|
|
16726
16751
|
XInput.dv = /*@__PURE__*/ BrushUtil.g(221, 0, 0, 0);
|
|
16727
|
-
XInput.
|
|
16752
|
+
XInput.ac = null;
|
|
16728
16753
|
XInput.bb = 0;
|
|
16729
16754
|
return XInput;
|
|
16730
16755
|
})();
|
|
@@ -16815,11 +16840,25 @@ let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
|
|
|
16815
16840
|
if (super["connectedCallback"]) {
|
|
16816
16841
|
super["connectedCallback"]();
|
|
16817
16842
|
}
|
|
16843
|
+
if (this.i.connectedCallback) {
|
|
16844
|
+
this.i.connectedCallback();
|
|
16845
|
+
}
|
|
16818
16846
|
if (!this._attached) {
|
|
16819
16847
|
this._attached = true;
|
|
16820
16848
|
this._flushQueuedAttributes();
|
|
16821
16849
|
}
|
|
16822
16850
|
}
|
|
16851
|
+
disconnectedCallback() {
|
|
16852
|
+
if (super["disconnectedCallback"]) {
|
|
16853
|
+
super["disconnectedCallback"]();
|
|
16854
|
+
}
|
|
16855
|
+
if (this.i.disconnectedCallback) {
|
|
16856
|
+
this.i.disconnectedCallback();
|
|
16857
|
+
}
|
|
16858
|
+
if (this._attached) {
|
|
16859
|
+
this._attached = false;
|
|
16860
|
+
}
|
|
16861
|
+
}
|
|
16823
16862
|
static get observedAttributes() {
|
|
16824
16863
|
if (IgcXInputGroupItemComponent._observedAttributesIgcXInputGroupItemComponent == null) {
|
|
16825
16864
|
let names = getAllPropertyNames(IgcXInputGroupItemComponent);
|
|
@@ -16849,6 +16888,11 @@ let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
|
|
|
16849
16888
|
this.i.e = v;
|
|
16850
16889
|
}
|
|
16851
16890
|
findByName(name) {
|
|
16891
|
+
if (this.findEphemera) {
|
|
16892
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
16893
|
+
return this.findEphemera(name);
|
|
16894
|
+
}
|
|
16895
|
+
}
|
|
16852
16896
|
return null;
|
|
16853
16897
|
}
|
|
16854
16898
|
get hasUserValues() {
|
|
@@ -17001,6 +17045,8 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17001
17045
|
this._change_wrapped = null;
|
|
17002
17046
|
this._changing = null;
|
|
17003
17047
|
this._changing_wrapped = null;
|
|
17048
|
+
this._compositionEnd = null;
|
|
17049
|
+
this._compositionEnd_wrapped = null;
|
|
17004
17050
|
ensureCss();
|
|
17005
17051
|
if (this._styling) {
|
|
17006
17052
|
NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
|
|
@@ -17115,21 +17161,21 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17115
17161
|
* Gets or sets the display density to use for the input.
|
|
17116
17162
|
*/
|
|
17117
17163
|
get density() {
|
|
17118
|
-
return this.i.
|
|
17164
|
+
return this.i.y;
|
|
17119
17165
|
}
|
|
17120
17166
|
set density(v) {
|
|
17121
|
-
this.i.
|
|
17122
|
-
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.
|
|
17167
|
+
this.i.y = ensureEnum(ControlDisplayDensity_$type, v);
|
|
17168
|
+
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.y));
|
|
17123
17169
|
}
|
|
17124
17170
|
/**
|
|
17125
17171
|
* Gets the actual display density to use for the label.
|
|
17126
17172
|
*/
|
|
17127
17173
|
get actualDensity() {
|
|
17128
|
-
return this.i.
|
|
17174
|
+
return this.i.x;
|
|
17129
17175
|
}
|
|
17130
17176
|
set actualDensity(v) {
|
|
17131
|
-
this.i.
|
|
17132
|
-
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.
|
|
17177
|
+
this.i.x = ensureEnum(ControlDisplayDensity_$type, v);
|
|
17178
|
+
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.x));
|
|
17133
17179
|
}
|
|
17134
17180
|
/**
|
|
17135
17181
|
* Gets/Sets the input mask for the input.
|
|
@@ -17153,11 +17199,11 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17153
17199
|
* Specifies if the bound value includes the formatting symbols.
|
|
17154
17200
|
*/
|
|
17155
17201
|
get includeLiterals() {
|
|
17156
|
-
return this.i.
|
|
17202
|
+
return this.i.ar;
|
|
17157
17203
|
}
|
|
17158
17204
|
set includeLiterals(v) {
|
|
17159
|
-
this.i.
|
|
17160
|
-
this._a("includeLiterals", this.i.
|
|
17205
|
+
this.i.ar = ensureBool(v);
|
|
17206
|
+
this._a("includeLiterals", this.i.ar);
|
|
17161
17207
|
}
|
|
17162
17208
|
/**
|
|
17163
17209
|
* Gets the actual color to use for the text color.
|
|
@@ -17193,16 +17239,16 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17193
17239
|
* Gets or sets the use for the button.
|
|
17194
17240
|
*/
|
|
17195
17241
|
get textStyle() {
|
|
17196
|
-
if (this.i.
|
|
17242
|
+
if (this.i.ad == null) {
|
|
17197
17243
|
return null;
|
|
17198
17244
|
}
|
|
17199
|
-
return this.i.
|
|
17245
|
+
return this.i.ad.fontString;
|
|
17200
17246
|
}
|
|
17201
17247
|
set textStyle(v) {
|
|
17202
17248
|
let fi = new FontInfo();
|
|
17203
17249
|
fi.fontString = v;
|
|
17204
|
-
this.i.
|
|
17205
|
-
this._a("textStyle", this.i.
|
|
17250
|
+
this.i.ad = fi;
|
|
17251
|
+
this._a("textStyle", this.i.ad != null ? this.i.ad.fontString : "");
|
|
17206
17252
|
}
|
|
17207
17253
|
/**
|
|
17208
17254
|
* Gets or sets the type to use for the input.
|
|
@@ -17273,11 +17319,11 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17273
17319
|
* Gets or sets whether the input is hovered.
|
|
17274
17320
|
*/
|
|
17275
17321
|
get isHover() {
|
|
17276
|
-
return this.i.
|
|
17322
|
+
return this.i.at;
|
|
17277
17323
|
}
|
|
17278
17324
|
set isHover(v) {
|
|
17279
|
-
this.i.
|
|
17280
|
-
this._a("isHover", this.i.
|
|
17325
|
+
this.i.at = ensureBool(v);
|
|
17326
|
+
this._a("isHover", this.i.at);
|
|
17281
17327
|
}
|
|
17282
17328
|
/**
|
|
17283
17329
|
* Gets or sets the value for the input.
|
|
@@ -17289,7 +17335,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17289
17335
|
this.i.cj = v;
|
|
17290
17336
|
}
|
|
17291
17337
|
get hasValue() {
|
|
17292
|
-
return this.i.
|
|
17338
|
+
return this.i.aq;
|
|
17293
17339
|
}
|
|
17294
17340
|
/**
|
|
17295
17341
|
* Gets or sets whether the checkbox is disabled.
|
|
@@ -17383,6 +17429,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17383
17429
|
}
|
|
17384
17430
|
};
|
|
17385
17431
|
this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
17432
|
+
;
|
|
17386
17433
|
}
|
|
17387
17434
|
get keyUp() {
|
|
17388
17435
|
return this._keyUp;
|
|
@@ -17405,6 +17452,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17405
17452
|
}
|
|
17406
17453
|
};
|
|
17407
17454
|
this.i.keyUp = delegateCombine(this.i.keyUp, this._keyUp_wrapped);
|
|
17455
|
+
;
|
|
17408
17456
|
}
|
|
17409
17457
|
get keyPress() {
|
|
17410
17458
|
return this._keyPress;
|
|
@@ -17427,6 +17475,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17427
17475
|
}
|
|
17428
17476
|
};
|
|
17429
17477
|
this.i.keyPress = delegateCombine(this.i.keyPress, this._keyPress_wrapped);
|
|
17478
|
+
;
|
|
17430
17479
|
}
|
|
17431
17480
|
get change() {
|
|
17432
17481
|
return this._change;
|
|
@@ -17449,6 +17498,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17449
17498
|
}
|
|
17450
17499
|
};
|
|
17451
17500
|
this.i.change = delegateCombine(this.i.change, this._change_wrapped);
|
|
17501
|
+
;
|
|
17452
17502
|
}
|
|
17453
17503
|
get changing() {
|
|
17454
17504
|
return this._changing;
|
|
@@ -17471,6 +17521,30 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17471
17521
|
}
|
|
17472
17522
|
};
|
|
17473
17523
|
this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
|
|
17524
|
+
;
|
|
17525
|
+
}
|
|
17526
|
+
get compositionEnd() {
|
|
17527
|
+
return this._compositionEnd;
|
|
17528
|
+
}
|
|
17529
|
+
set compositionEnd(ev) {
|
|
17530
|
+
if (this._compositionEnd_wrapped !== null) {
|
|
17531
|
+
this.i.compositionEnd = delegateRemove(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
17532
|
+
this._compositionEnd_wrapped = null;
|
|
17533
|
+
this._compositionEnd = null;
|
|
17534
|
+
}
|
|
17535
|
+
this._compositionEnd = ev;
|
|
17536
|
+
this._compositionEnd_wrapped = (o, e) => {
|
|
17537
|
+
let outerArgs = new IgcInputChangeEventArgs();
|
|
17538
|
+
outerArgs._provideImplementation(e);
|
|
17539
|
+
if (this.beforeCompositionEnd) {
|
|
17540
|
+
this.beforeCompositionEnd(this, outerArgs);
|
|
17541
|
+
}
|
|
17542
|
+
if (this._compositionEnd) {
|
|
17543
|
+
this._compositionEnd(this, outerArgs);
|
|
17544
|
+
}
|
|
17545
|
+
};
|
|
17546
|
+
this.i.compositionEnd = delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
17547
|
+
;
|
|
17474
17548
|
}
|
|
17475
17549
|
}
|
|
17476
17550
|
IgcXInputComponent._observedAttributesIgcXInputComponent = null;
|
|
@@ -19845,6 +19919,11 @@ let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
19845
19919
|
this._a("disabled", this.i.disabled);
|
|
19846
19920
|
}
|
|
19847
19921
|
findByName(name) {
|
|
19922
|
+
if (this.findEphemera) {
|
|
19923
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
19924
|
+
return this.findEphemera(name);
|
|
19925
|
+
}
|
|
19926
|
+
}
|
|
19848
19927
|
if (this.inputs != null && this.inputs.findByName && this.inputs.findByName(name)) {
|
|
19849
19928
|
return this.inputs.findByName(name);
|
|
19850
19929
|
}
|
|
@@ -21039,7 +21118,7 @@ let DatePicker = /*@__PURE__*/ (() => {
|
|
|
21039
21118
|
}
|
|
21040
21119
|
c5() {
|
|
21041
21120
|
if (this.aa != null) {
|
|
21042
|
-
this.o.
|
|
21121
|
+
this.o.ad = this.aa;
|
|
21043
21122
|
}
|
|
21044
21123
|
}
|
|
21045
21124
|
cd() {
|
|
@@ -21061,7 +21140,7 @@ let DatePicker = /*@__PURE__*/ (() => {
|
|
|
21061
21140
|
this.h.ak(this.o);
|
|
21062
21141
|
this.o.b3 = "text";
|
|
21063
21142
|
if (this.aa != null) {
|
|
21064
|
-
this.o.
|
|
21143
|
+
this.o.ad = this.aa;
|
|
21065
21144
|
}
|
|
21066
21145
|
this.o.disabled = !this.ap;
|
|
21067
21146
|
this.o.dy = this.de;
|
|
@@ -22250,6 +22329,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22250
22329
|
}
|
|
22251
22330
|
};
|
|
22252
22331
|
this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
|
|
22332
|
+
;
|
|
22253
22333
|
}
|
|
22254
22334
|
get gotFocus() {
|
|
22255
22335
|
return this._gotFocus;
|
|
@@ -22272,6 +22352,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22272
22352
|
}
|
|
22273
22353
|
};
|
|
22274
22354
|
this.i.gotFocus = delegateCombine(this.i.gotFocus, this._gotFocus_wrapped);
|
|
22355
|
+
;
|
|
22275
22356
|
}
|
|
22276
22357
|
get lostFocus() {
|
|
22277
22358
|
return this._lostFocus;
|
|
@@ -22294,6 +22375,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22294
22375
|
}
|
|
22295
22376
|
};
|
|
22296
22377
|
this.i.lostFocus = delegateCombine(this.i.lostFocus, this._lostFocus_wrapped);
|
|
22378
|
+
;
|
|
22297
22379
|
}
|
|
22298
22380
|
get keyDown() {
|
|
22299
22381
|
return this._keyDown;
|
|
@@ -22316,6 +22398,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22316
22398
|
}
|
|
22317
22399
|
};
|
|
22318
22400
|
this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
22401
|
+
;
|
|
22319
22402
|
}
|
|
22320
22403
|
get changing() {
|
|
22321
22404
|
return this._changing;
|
|
@@ -22338,6 +22421,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22338
22421
|
}
|
|
22339
22422
|
};
|
|
22340
22423
|
this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
|
|
22424
|
+
;
|
|
22341
22425
|
}
|
|
22342
22426
|
get valueChange() {
|
|
22343
22427
|
return this._valueChange;
|
|
@@ -24057,6 +24141,11 @@ let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
24057
24141
|
this._a("disableTransitions", this.i.u);
|
|
24058
24142
|
}
|
|
24059
24143
|
findByName(name) {
|
|
24144
|
+
if (this.findEphemera) {
|
|
24145
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
24146
|
+
return this.findEphemera(name);
|
|
24147
|
+
}
|
|
24148
|
+
}
|
|
24060
24149
|
return null;
|
|
24061
24150
|
}
|
|
24062
24151
|
get hasUserValues() {
|
|
@@ -24155,6 +24244,7 @@ let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
24155
24244
|
}
|
|
24156
24245
|
};
|
|
24157
24246
|
this.i.change = delegateCombine(this.i.change, this._change_wrapped);
|
|
24247
|
+
;
|
|
24158
24248
|
}
|
|
24159
24249
|
}
|
|
24160
24250
|
IgcXCheckboxComponent._observedAttributesIgcXCheckboxComponent = null;
|
|
@@ -26588,6 +26678,11 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
26588
26678
|
this._a("isMultiSelect", this.i.z);
|
|
26589
26679
|
}
|
|
26590
26680
|
findByName(name) {
|
|
26681
|
+
if (this.findEphemera) {
|
|
26682
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
26683
|
+
return this.findEphemera(name);
|
|
26684
|
+
}
|
|
26685
|
+
}
|
|
26591
26686
|
if (this.buttons != null && this.buttons.findByName && this.buttons.findByName(name)) {
|
|
26592
26687
|
return this.buttons.findByName(name);
|
|
26593
26688
|
}
|
|
@@ -26689,6 +26784,7 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
26689
26784
|
}
|
|
26690
26785
|
};
|
|
26691
26786
|
this.i.selectionChanged = delegateCombine(this.i.selectionChanged, this._selectionChanged_wrapped);
|
|
26787
|
+
;
|
|
26692
26788
|
}
|
|
26693
26789
|
}
|
|
26694
26790
|
IgcXButtonGroupComponent._observedAttributesIgcXButtonGroupComponent = null;
|
|
@@ -27108,7 +27204,7 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
27108
27204
|
/**
|
|
27109
27205
|
* @hidden
|
|
27110
27206
|
*/
|
|
27111
|
-
let KEYCODES_$type = /*@__PURE__*/ 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');
|
|
27207
|
+
let KEYCODES_$type = /*@__PURE__*/ 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');
|
|
27112
27208
|
|
|
27113
27209
|
/*
|
|
27114
27210
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|