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
|
@@ -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;
|
|
@@ -16823,11 +16840,25 @@ let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
|
|
|
16823
16840
|
if (super["connectedCallback"]) {
|
|
16824
16841
|
super["connectedCallback"]();
|
|
16825
16842
|
}
|
|
16843
|
+
if (this.i.connectedCallback) {
|
|
16844
|
+
this.i.connectedCallback();
|
|
16845
|
+
}
|
|
16826
16846
|
if (!this._attached) {
|
|
16827
16847
|
this._attached = true;
|
|
16828
16848
|
this._flushQueuedAttributes();
|
|
16829
16849
|
}
|
|
16830
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
|
+
}
|
|
16831
16862
|
static get observedAttributes() {
|
|
16832
16863
|
if (IgcXInputGroupItemComponent._observedAttributesIgcXInputGroupItemComponent == null) {
|
|
16833
16864
|
let names = getAllPropertyNames(IgcXInputGroupItemComponent);
|
|
@@ -16857,6 +16888,11 @@ let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
|
|
|
16857
16888
|
this.i.e = v;
|
|
16858
16889
|
}
|
|
16859
16890
|
findByName(name) {
|
|
16891
|
+
if (this.findEphemera) {
|
|
16892
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
16893
|
+
return this.findEphemera(name);
|
|
16894
|
+
}
|
|
16895
|
+
}
|
|
16860
16896
|
return null;
|
|
16861
16897
|
}
|
|
16862
16898
|
get hasUserValues() {
|
|
@@ -17393,6 +17429,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17393
17429
|
}
|
|
17394
17430
|
};
|
|
17395
17431
|
this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
17432
|
+
;
|
|
17396
17433
|
}
|
|
17397
17434
|
get keyUp() {
|
|
17398
17435
|
return this._keyUp;
|
|
@@ -17415,6 +17452,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17415
17452
|
}
|
|
17416
17453
|
};
|
|
17417
17454
|
this.i.keyUp = delegateCombine(this.i.keyUp, this._keyUp_wrapped);
|
|
17455
|
+
;
|
|
17418
17456
|
}
|
|
17419
17457
|
get keyPress() {
|
|
17420
17458
|
return this._keyPress;
|
|
@@ -17437,6 +17475,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17437
17475
|
}
|
|
17438
17476
|
};
|
|
17439
17477
|
this.i.keyPress = delegateCombine(this.i.keyPress, this._keyPress_wrapped);
|
|
17478
|
+
;
|
|
17440
17479
|
}
|
|
17441
17480
|
get change() {
|
|
17442
17481
|
return this._change;
|
|
@@ -17459,6 +17498,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17459
17498
|
}
|
|
17460
17499
|
};
|
|
17461
17500
|
this.i.change = delegateCombine(this.i.change, this._change_wrapped);
|
|
17501
|
+
;
|
|
17462
17502
|
}
|
|
17463
17503
|
get changing() {
|
|
17464
17504
|
return this._changing;
|
|
@@ -17481,6 +17521,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17481
17521
|
}
|
|
17482
17522
|
};
|
|
17483
17523
|
this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
|
|
17524
|
+
;
|
|
17484
17525
|
}
|
|
17485
17526
|
get compositionEnd() {
|
|
17486
17527
|
return this._compositionEnd;
|
|
@@ -17503,6 +17544,7 @@ let IgcXInputComponent = /*@__PURE__*/ (() => {
|
|
|
17503
17544
|
}
|
|
17504
17545
|
};
|
|
17505
17546
|
this.i.compositionEnd = delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
17547
|
+
;
|
|
17506
17548
|
}
|
|
17507
17549
|
}
|
|
17508
17550
|
IgcXInputComponent._observedAttributesIgcXInputComponent = null;
|
|
@@ -19877,6 +19919,11 @@ let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
|
|
|
19877
19919
|
this._a("disabled", this.i.disabled);
|
|
19878
19920
|
}
|
|
19879
19921
|
findByName(name) {
|
|
19922
|
+
if (this.findEphemera) {
|
|
19923
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
19924
|
+
return this.findEphemera(name);
|
|
19925
|
+
}
|
|
19926
|
+
}
|
|
19880
19927
|
if (this.inputs != null && this.inputs.findByName && this.inputs.findByName(name)) {
|
|
19881
19928
|
return this.inputs.findByName(name);
|
|
19882
19929
|
}
|
|
@@ -22282,6 +22329,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22282
22329
|
}
|
|
22283
22330
|
};
|
|
22284
22331
|
this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
|
|
22332
|
+
;
|
|
22285
22333
|
}
|
|
22286
22334
|
get gotFocus() {
|
|
22287
22335
|
return this._gotFocus;
|
|
@@ -22304,6 +22352,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22304
22352
|
}
|
|
22305
22353
|
};
|
|
22306
22354
|
this.i.gotFocus = delegateCombine(this.i.gotFocus, this._gotFocus_wrapped);
|
|
22355
|
+
;
|
|
22307
22356
|
}
|
|
22308
22357
|
get lostFocus() {
|
|
22309
22358
|
return this._lostFocus;
|
|
@@ -22326,6 +22375,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22326
22375
|
}
|
|
22327
22376
|
};
|
|
22328
22377
|
this.i.lostFocus = delegateCombine(this.i.lostFocus, this._lostFocus_wrapped);
|
|
22378
|
+
;
|
|
22329
22379
|
}
|
|
22330
22380
|
get keyDown() {
|
|
22331
22381
|
return this._keyDown;
|
|
@@ -22348,6 +22398,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22348
22398
|
}
|
|
22349
22399
|
};
|
|
22350
22400
|
this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
22401
|
+
;
|
|
22351
22402
|
}
|
|
22352
22403
|
get changing() {
|
|
22353
22404
|
return this._changing;
|
|
@@ -22370,6 +22421,7 @@ let IgcDatePickerComponent = /*@__PURE__*/ (() => {
|
|
|
22370
22421
|
}
|
|
22371
22422
|
};
|
|
22372
22423
|
this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
|
|
22424
|
+
;
|
|
22373
22425
|
}
|
|
22374
22426
|
get valueChange() {
|
|
22375
22427
|
return this._valueChange;
|
|
@@ -24089,6 +24141,11 @@ let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
24089
24141
|
this._a("disableTransitions", this.i.u);
|
|
24090
24142
|
}
|
|
24091
24143
|
findByName(name) {
|
|
24144
|
+
if (this.findEphemera) {
|
|
24145
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
24146
|
+
return this.findEphemera(name);
|
|
24147
|
+
}
|
|
24148
|
+
}
|
|
24092
24149
|
return null;
|
|
24093
24150
|
}
|
|
24094
24151
|
get hasUserValues() {
|
|
@@ -24187,6 +24244,7 @@ let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
|
|
|
24187
24244
|
}
|
|
24188
24245
|
};
|
|
24189
24246
|
this.i.change = delegateCombine(this.i.change, this._change_wrapped);
|
|
24247
|
+
;
|
|
24190
24248
|
}
|
|
24191
24249
|
}
|
|
24192
24250
|
IgcXCheckboxComponent._observedAttributesIgcXCheckboxComponent = null;
|
|
@@ -26620,6 +26678,11 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
26620
26678
|
this._a("isMultiSelect", this.i.z);
|
|
26621
26679
|
}
|
|
26622
26680
|
findByName(name) {
|
|
26681
|
+
if (this.findEphemera) {
|
|
26682
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
26683
|
+
return this.findEphemera(name);
|
|
26684
|
+
}
|
|
26685
|
+
}
|
|
26623
26686
|
if (this.buttons != null && this.buttons.findByName && this.buttons.findByName(name)) {
|
|
26624
26687
|
return this.buttons.findByName(name);
|
|
26625
26688
|
}
|
|
@@ -26721,6 +26784,7 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
26721
26784
|
}
|
|
26722
26785
|
};
|
|
26723
26786
|
this.i.selectionChanged = delegateCombine(this.i.selectionChanged, this._selectionChanged_wrapped);
|
|
26787
|
+
;
|
|
26724
26788
|
}
|
|
26725
26789
|
}
|
|
26726
26790
|
IgcXButtonGroupComponent._observedAttributesIgcXButtonGroupComponent = null;
|
|
@@ -884,6 +884,11 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
884
884
|
configurable: true
|
|
885
885
|
});
|
|
886
886
|
IgcXRippleComponent.prototype.findByName = function (name) {
|
|
887
|
+
if (this.findEphemera) {
|
|
888
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
889
|
+
return this.findEphemera(name);
|
|
890
|
+
}
|
|
891
|
+
}
|
|
887
892
|
return null;
|
|
888
893
|
};
|
|
889
894
|
Object.defineProperty(IgcXRippleComponent.prototype, "hasUserValues", {
|
|
@@ -7380,6 +7385,11 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7380
7385
|
configurable: true
|
|
7381
7386
|
});
|
|
7382
7387
|
IgcXButtonComponent.prototype.findByName = function (name) {
|
|
7388
|
+
if (this.findEphemera) {
|
|
7389
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
7390
|
+
return this.findEphemera(name);
|
|
7391
|
+
}
|
|
7392
|
+
}
|
|
7383
7393
|
return null;
|
|
7384
7394
|
};
|
|
7385
7395
|
Object.defineProperty(IgcXButtonComponent.prototype, "hasUserValues", {
|
|
@@ -7484,6 +7494,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
7484
7494
|
}
|
|
7485
7495
|
};
|
|
7486
7496
|
this.i.clicked = delegateCombine(this.i.clicked, this._clicked_wrapped);
|
|
7497
|
+
;
|
|
7487
7498
|
},
|
|
7488
7499
|
enumerable: true,
|
|
7489
7500
|
configurable: true
|
|
@@ -8887,6 +8898,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
8887
8898
|
configurable: true
|
|
8888
8899
|
});
|
|
8889
8900
|
IgcXIconComponent.prototype.findByName = function (name) {
|
|
8901
|
+
if (this.findEphemera) {
|
|
8902
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
8903
|
+
return this.findEphemera(name);
|
|
8904
|
+
}
|
|
8905
|
+
}
|
|
8890
8906
|
return null;
|
|
8891
8907
|
};
|
|
8892
8908
|
Object.defineProperty(IgcXIconComponent.prototype, "hasUserValues", {
|
|
@@ -12787,6 +12803,7 @@ var IgcXCalendarComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
12787
12803
|
}
|
|
12788
12804
|
};
|
|
12789
12805
|
this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
|
|
12806
|
+
;
|
|
12790
12807
|
},
|
|
12791
12808
|
enumerable: true,
|
|
12792
12809
|
configurable: true
|
|
@@ -20083,11 +20100,25 @@ var IgcXInputGroupItemComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
20083
20100
|
if (_super.prototype["connectedCallback"]) {
|
|
20084
20101
|
_super.prototype["connectedCallback"].call(this);
|
|
20085
20102
|
}
|
|
20103
|
+
if (this.i.connectedCallback) {
|
|
20104
|
+
this.i.connectedCallback();
|
|
20105
|
+
}
|
|
20086
20106
|
if (!this._attached) {
|
|
20087
20107
|
this._attached = true;
|
|
20088
20108
|
this._flushQueuedAttributes();
|
|
20089
20109
|
}
|
|
20090
20110
|
};
|
|
20111
|
+
IgcXInputGroupItemComponent.prototype.disconnectedCallback = function () {
|
|
20112
|
+
if (_super.prototype["disconnectedCallback"]) {
|
|
20113
|
+
_super.prototype["disconnectedCallback"].call(this);
|
|
20114
|
+
}
|
|
20115
|
+
if (this.i.disconnectedCallback) {
|
|
20116
|
+
this.i.disconnectedCallback();
|
|
20117
|
+
}
|
|
20118
|
+
if (this._attached) {
|
|
20119
|
+
this._attached = false;
|
|
20120
|
+
}
|
|
20121
|
+
};
|
|
20091
20122
|
Object.defineProperty(IgcXInputGroupItemComponent, "observedAttributes", {
|
|
20092
20123
|
get: function () {
|
|
20093
20124
|
if (IgcXInputGroupItemComponent._observedAttributesIgcXInputGroupItemComponent == null) {
|
|
@@ -20125,6 +20156,11 @@ var IgcXInputGroupItemComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
20125
20156
|
configurable: true
|
|
20126
20157
|
});
|
|
20127
20158
|
IgcXInputGroupItemComponent.prototype.findByName = function (name) {
|
|
20159
|
+
if (this.findEphemera) {
|
|
20160
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
20161
|
+
return this.findEphemera(name);
|
|
20162
|
+
}
|
|
20163
|
+
}
|
|
20128
20164
|
return null;
|
|
20129
20165
|
};
|
|
20130
20166
|
Object.defineProperty(IgcXInputGroupItemComponent.prototype, "hasUserValues", {
|
|
@@ -20798,6 +20834,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20798
20834
|
}
|
|
20799
20835
|
};
|
|
20800
20836
|
this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
20837
|
+
;
|
|
20801
20838
|
},
|
|
20802
20839
|
enumerable: true,
|
|
20803
20840
|
configurable: true
|
|
@@ -20825,6 +20862,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20825
20862
|
}
|
|
20826
20863
|
};
|
|
20827
20864
|
this.i.keyUp = delegateCombine(this.i.keyUp, this._keyUp_wrapped);
|
|
20865
|
+
;
|
|
20828
20866
|
},
|
|
20829
20867
|
enumerable: true,
|
|
20830
20868
|
configurable: true
|
|
@@ -20852,6 +20890,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20852
20890
|
}
|
|
20853
20891
|
};
|
|
20854
20892
|
this.i.keyPress = delegateCombine(this.i.keyPress, this._keyPress_wrapped);
|
|
20893
|
+
;
|
|
20855
20894
|
},
|
|
20856
20895
|
enumerable: true,
|
|
20857
20896
|
configurable: true
|
|
@@ -20879,6 +20918,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20879
20918
|
}
|
|
20880
20919
|
};
|
|
20881
20920
|
this.i.change = delegateCombine(this.i.change, this._change_wrapped);
|
|
20921
|
+
;
|
|
20882
20922
|
},
|
|
20883
20923
|
enumerable: true,
|
|
20884
20924
|
configurable: true
|
|
@@ -20906,6 +20946,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20906
20946
|
}
|
|
20907
20947
|
};
|
|
20908
20948
|
this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
|
|
20949
|
+
;
|
|
20909
20950
|
},
|
|
20910
20951
|
enumerable: true,
|
|
20911
20952
|
configurable: true
|
|
@@ -20933,6 +20974,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
20933
20974
|
}
|
|
20934
20975
|
};
|
|
20935
20976
|
this.i.compositionEnd = delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
|
|
20977
|
+
;
|
|
20936
20978
|
},
|
|
20937
20979
|
enumerable: true,
|
|
20938
20980
|
configurable: true
|
|
@@ -24118,6 +24160,11 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
24118
24160
|
configurable: true
|
|
24119
24161
|
});
|
|
24120
24162
|
IgcXInputGroupComponent.prototype.findByName = function (name) {
|
|
24163
|
+
if (this.findEphemera) {
|
|
24164
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
24165
|
+
return this.findEphemera(name);
|
|
24166
|
+
}
|
|
24167
|
+
}
|
|
24121
24168
|
if (this.inputs != null && this.inputs.findByName && this.inputs.findByName(name)) {
|
|
24122
24169
|
return this.inputs.findByName(name);
|
|
24123
24170
|
}
|
|
@@ -26763,6 +26810,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
26763
26810
|
}
|
|
26764
26811
|
};
|
|
26765
26812
|
this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
|
|
26813
|
+
;
|
|
26766
26814
|
},
|
|
26767
26815
|
enumerable: true,
|
|
26768
26816
|
configurable: true
|
|
@@ -26790,6 +26838,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
26790
26838
|
}
|
|
26791
26839
|
};
|
|
26792
26840
|
this.i.gotFocus = delegateCombine(this.i.gotFocus, this._gotFocus_wrapped);
|
|
26841
|
+
;
|
|
26793
26842
|
},
|
|
26794
26843
|
enumerable: true,
|
|
26795
26844
|
configurable: true
|
|
@@ -26817,6 +26866,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
26817
26866
|
}
|
|
26818
26867
|
};
|
|
26819
26868
|
this.i.lostFocus = delegateCombine(this.i.lostFocus, this._lostFocus_wrapped);
|
|
26869
|
+
;
|
|
26820
26870
|
},
|
|
26821
26871
|
enumerable: true,
|
|
26822
26872
|
configurable: true
|
|
@@ -26844,6 +26894,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
26844
26894
|
}
|
|
26845
26895
|
};
|
|
26846
26896
|
this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
|
|
26897
|
+
;
|
|
26847
26898
|
},
|
|
26848
26899
|
enumerable: true,
|
|
26849
26900
|
configurable: true
|
|
@@ -26871,6 +26922,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
26871
26922
|
}
|
|
26872
26923
|
};
|
|
26873
26924
|
this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
|
|
26925
|
+
;
|
|
26874
26926
|
},
|
|
26875
26927
|
enumerable: true,
|
|
26876
26928
|
configurable: true
|
|
@@ -28970,6 +29022,11 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
28970
29022
|
configurable: true
|
|
28971
29023
|
});
|
|
28972
29024
|
IgcXCheckboxComponent.prototype.findByName = function (name) {
|
|
29025
|
+
if (this.findEphemera) {
|
|
29026
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
29027
|
+
return this.findEphemera(name);
|
|
29028
|
+
}
|
|
29029
|
+
}
|
|
28973
29030
|
return null;
|
|
28974
29031
|
};
|
|
28975
29032
|
Object.defineProperty(IgcXCheckboxComponent.prototype, "hasUserValues", {
|
|
@@ -29074,6 +29131,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
29074
29131
|
}
|
|
29075
29132
|
};
|
|
29076
29133
|
this.i.change = delegateCombine(this.i.change, this._change_wrapped);
|
|
29134
|
+
;
|
|
29077
29135
|
},
|
|
29078
29136
|
enumerable: true,
|
|
29079
29137
|
configurable: true
|
|
@@ -32178,6 +32236,11 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
32178
32236
|
configurable: true
|
|
32179
32237
|
});
|
|
32180
32238
|
IgcXButtonGroupComponent.prototype.findByName = function (name) {
|
|
32239
|
+
if (this.findEphemera) {
|
|
32240
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
32241
|
+
return this.findEphemera(name);
|
|
32242
|
+
}
|
|
32243
|
+
}
|
|
32181
32244
|
if (this.buttons != null && this.buttons.findByName && this.buttons.findByName(name)) {
|
|
32182
32245
|
return this.buttons.findByName(name);
|
|
32183
32246
|
}
|
|
@@ -32285,6 +32348,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
32285
32348
|
}
|
|
32286
32349
|
};
|
|
32287
32350
|
this.i.selectionChanged = delegateCombine(this.i.selectionChanged, this._selectionChanged_wrapped);
|
|
32351
|
+
;
|
|
32288
32352
|
},
|
|
32289
32353
|
enumerable: true,
|
|
32290
32354
|
configurable: true
|
|
@@ -19,6 +19,7 @@ export declare abstract class IgcXInputGroupItemComponent extends IgcHTMLElement
|
|
|
19
19
|
protected _flushQueuedAttributes(): void;
|
|
20
20
|
protected _a(attrName: string, attrValue: any): void;
|
|
21
21
|
connectedCallback(): void;
|
|
22
|
+
disconnectedCallback(): void;
|
|
22
23
|
private static _observedAttributesIgcXInputGroupItemComponent;
|
|
23
24
|
static readonly observedAttributes: string[];
|
|
24
25
|
private _updatingFromAttribute;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-inputs",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "Ignite UI WebComponents inputs components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-inputs",
|
|
6
6
|
"keywords": [
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"tslib": "^2.3.1"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"igniteui-webcomponents-core": "3.
|
|
17
|
+
"igniteui-webcomponents-core": "3.5.0"
|
|
18
18
|
},
|
|
19
19
|
"sideEffects": false,
|
|
20
20
|
"typings": "igniteui-webcomponents-inputs.d.ts",
|