igniteui-webcomponents-inputs 3.2.4 → 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 +64 -0
- package/bundles/igniteui-webcomponents-inputs.umd.min.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 +6 -0
- 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/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 +6 -0
- 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 +64 -0
- package/fesm5/igniteui-webcomponents-inputs.js +64 -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
|
|
@@ -20085,11 +20102,25 @@
|
|
|
20085
20102
|
if (_super.prototype["connectedCallback"]) {
|
|
20086
20103
|
_super.prototype["connectedCallback"].call(this);
|
|
20087
20104
|
}
|
|
20105
|
+
if (this.i.connectedCallback) {
|
|
20106
|
+
this.i.connectedCallback();
|
|
20107
|
+
}
|
|
20088
20108
|
if (!this._attached) {
|
|
20089
20109
|
this._attached = true;
|
|
20090
20110
|
this._flushQueuedAttributes();
|
|
20091
20111
|
}
|
|
20092
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
|
+
};
|
|
20093
20124
|
Object.defineProperty(IgcXInputGroupItemComponent, "observedAttributes", {
|
|
20094
20125
|
get: function () {
|
|
20095
20126
|
if (IgcXInputGroupItemComponent._observedAttributesIgcXInputGroupItemComponent == null) {
|
|
@@ -20127,6 +20158,11 @@
|
|
|
20127
20158
|
configurable: true
|
|
20128
20159
|
});
|
|
20129
20160
|
IgcXInputGroupItemComponent.prototype.findByName = function (name) {
|
|
20161
|
+
if (this.findEphemera) {
|
|
20162
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
20163
|
+
return this.findEphemera(name);
|
|
20164
|
+
}
|
|
20165
|
+
}
|
|
20130
20166
|
return null;
|
|
20131
20167
|
};
|
|
20132
20168
|
Object.defineProperty(IgcXInputGroupItemComponent.prototype, "hasUserValues", {
|
|
@@ -20800,6 +20836,7 @@
|
|
|
20800
20836
|
}
|
|
20801
20837
|
};
|
|
20802
20838
|
this.i.keyDown = igniteuiWebcomponentsCore.delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
20839
|
+
;
|
|
20803
20840
|
},
|
|
20804
20841
|
enumerable: true,
|
|
20805
20842
|
configurable: true
|
|
@@ -20827,6 +20864,7 @@
|
|
|
20827
20864
|
}
|
|
20828
20865
|
};
|
|
20829
20866
|
this.i.keyUp = igniteuiWebcomponentsCore.delegateCombine(this.i.keyUp, this._keyUp_wrapped);
|
|
20867
|
+
;
|
|
20830
20868
|
},
|
|
20831
20869
|
enumerable: true,
|
|
20832
20870
|
configurable: true
|
|
@@ -20854,6 +20892,7 @@
|
|
|
20854
20892
|
}
|
|
20855
20893
|
};
|
|
20856
20894
|
this.i.keyPress = igniteuiWebcomponentsCore.delegateCombine(this.i.keyPress, this._keyPress_wrapped);
|
|
20895
|
+
;
|
|
20857
20896
|
},
|
|
20858
20897
|
enumerable: true,
|
|
20859
20898
|
configurable: true
|
|
@@ -20881,6 +20920,7 @@
|
|
|
20881
20920
|
}
|
|
20882
20921
|
};
|
|
20883
20922
|
this.i.change = igniteuiWebcomponentsCore.delegateCombine(this.i.change, this._change_wrapped);
|
|
20923
|
+
;
|
|
20884
20924
|
},
|
|
20885
20925
|
enumerable: true,
|
|
20886
20926
|
configurable: true
|
|
@@ -20908,6 +20948,7 @@
|
|
|
20908
20948
|
}
|
|
20909
20949
|
};
|
|
20910
20950
|
this.i.changing = igniteuiWebcomponentsCore.delegateCombine(this.i.changing, this._changing_wrapped);
|
|
20951
|
+
;
|
|
20911
20952
|
},
|
|
20912
20953
|
enumerable: true,
|
|
20913
20954
|
configurable: true
|
|
@@ -20935,6 +20976,7 @@
|
|
|
20935
20976
|
}
|
|
20936
20977
|
};
|
|
20937
20978
|
this.i.compositionEnd = igniteuiWebcomponentsCore.delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
20979
|
+
;
|
|
20938
20980
|
},
|
|
20939
20981
|
enumerable: true,
|
|
20940
20982
|
configurable: true
|
|
@@ -24120,6 +24162,11 @@
|
|
|
24120
24162
|
configurable: true
|
|
24121
24163
|
});
|
|
24122
24164
|
IgcXInputGroupComponent.prototype.findByName = function (name) {
|
|
24165
|
+
if (this.findEphemera) {
|
|
24166
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
24167
|
+
return this.findEphemera(name);
|
|
24168
|
+
}
|
|
24169
|
+
}
|
|
24123
24170
|
if (this.inputs != null && this.inputs.findByName && this.inputs.findByName(name)) {
|
|
24124
24171
|
return this.inputs.findByName(name);
|
|
24125
24172
|
}
|
|
@@ -26765,6 +26812,7 @@
|
|
|
26765
26812
|
}
|
|
26766
26813
|
};
|
|
26767
26814
|
this.i.selectedValueChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
|
|
26815
|
+
;
|
|
26768
26816
|
},
|
|
26769
26817
|
enumerable: true,
|
|
26770
26818
|
configurable: true
|
|
@@ -26792,6 +26840,7 @@
|
|
|
26792
26840
|
}
|
|
26793
26841
|
};
|
|
26794
26842
|
this.i.gotFocus = igniteuiWebcomponentsCore.delegateCombine(this.i.gotFocus, this._gotFocus_wrapped);
|
|
26843
|
+
;
|
|
26795
26844
|
},
|
|
26796
26845
|
enumerable: true,
|
|
26797
26846
|
configurable: true
|
|
@@ -26819,6 +26868,7 @@
|
|
|
26819
26868
|
}
|
|
26820
26869
|
};
|
|
26821
26870
|
this.i.lostFocus = igniteuiWebcomponentsCore.delegateCombine(this.i.lostFocus, this._lostFocus_wrapped);
|
|
26871
|
+
;
|
|
26822
26872
|
},
|
|
26823
26873
|
enumerable: true,
|
|
26824
26874
|
configurable: true
|
|
@@ -26846,6 +26896,7 @@
|
|
|
26846
26896
|
}
|
|
26847
26897
|
};
|
|
26848
26898
|
this.i.keyDown = igniteuiWebcomponentsCore.delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
26899
|
+
;
|
|
26849
26900
|
},
|
|
26850
26901
|
enumerable: true,
|
|
26851
26902
|
configurable: true
|
|
@@ -26873,6 +26924,7 @@
|
|
|
26873
26924
|
}
|
|
26874
26925
|
};
|
|
26875
26926
|
this.i.changing = igniteuiWebcomponentsCore.delegateCombine(this.i.changing, this._changing_wrapped);
|
|
26927
|
+
;
|
|
26876
26928
|
},
|
|
26877
26929
|
enumerable: true,
|
|
26878
26930
|
configurable: true
|
|
@@ -28972,6 +29024,11 @@
|
|
|
28972
29024
|
configurable: true
|
|
28973
29025
|
});
|
|
28974
29026
|
IgcXCheckboxComponent.prototype.findByName = function (name) {
|
|
29027
|
+
if (this.findEphemera) {
|
|
29028
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
29029
|
+
return this.findEphemera(name);
|
|
29030
|
+
}
|
|
29031
|
+
}
|
|
28975
29032
|
return null;
|
|
28976
29033
|
};
|
|
28977
29034
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "hasUserValues", {
|
|
@@ -29076,6 +29133,7 @@
|
|
|
29076
29133
|
}
|
|
29077
29134
|
};
|
|
29078
29135
|
this.i.change = igniteuiWebcomponentsCore.delegateCombine(this.i.change, this._change_wrapped);
|
|
29136
|
+
;
|
|
29079
29137
|
},
|
|
29080
29138
|
enumerable: true,
|
|
29081
29139
|
configurable: true
|
|
@@ -32180,6 +32238,11 @@
|
|
|
32180
32238
|
configurable: true
|
|
32181
32239
|
});
|
|
32182
32240
|
IgcXButtonGroupComponent.prototype.findByName = function (name) {
|
|
32241
|
+
if (this.findEphemera) {
|
|
32242
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
32243
|
+
return this.findEphemera(name);
|
|
32244
|
+
}
|
|
32245
|
+
}
|
|
32183
32246
|
if (this.buttons != null && this.buttons.findByName && this.buttons.findByName(name)) {
|
|
32184
32247
|
return this.buttons.findByName(name);
|
|
32185
32248
|
}
|
|
@@ -32287,6 +32350,7 @@
|
|
|
32287
32350
|
}
|
|
32288
32351
|
};
|
|
32289
32352
|
this.i.selectionChanged = igniteuiWebcomponentsCore.delegateCombine(this.i.selectionChanged, this._selectionChanged_wrapped);
|
|
32353
|
+
;
|
|
32290
32354
|
},
|
|
32291
32355
|
enumerable: true,
|
|
32292
32356
|
configurable: true
|