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.
@@ -521,6 +521,7 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
521
521
  }
522
522
  };
523
523
  this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
524
+ ;
524
525
  }
525
526
  get gotFocus() {
526
527
  return this._gotFocus;
@@ -543,6 +544,7 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
543
544
  }
544
545
  };
545
546
  this.i.gotFocus = delegateCombine(this.i.gotFocus, this._gotFocus_wrapped);
547
+ ;
546
548
  }
547
549
  get lostFocus() {
548
550
  return this._lostFocus;
@@ -565,6 +567,7 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
565
567
  }
566
568
  };
567
569
  this.i.lostFocus = delegateCombine(this.i.lostFocus, this._lostFocus_wrapped);
570
+ ;
568
571
  }
569
572
  get keyDown() {
570
573
  return this._keyDown;
@@ -587,6 +590,7 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
587
590
  }
588
591
  };
589
592
  this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
593
+ ;
590
594
  }
591
595
  get changing() {
592
596
  return this._changing;
@@ -609,6 +613,7 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
609
613
  }
610
614
  };
611
615
  this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
616
+ ;
612
617
  }
613
618
  get valueChange() {
614
619
  return this._valueChange;
@@ -1902,6 +1902,11 @@ export let IgcXButtonComponent = /*@__PURE__*/ (() => {
1902
1902
  this._a("disableTransitions", this.i.ag);
1903
1903
  }
1904
1904
  findByName(name) {
1905
+ if (this.findEphemera) {
1906
+ if (name && name.indexOf("@@e:") == 0) {
1907
+ return this.findEphemera(name);
1908
+ }
1909
+ }
1905
1910
  return null;
1906
1911
  }
1907
1912
  get hasUserValues() {
@@ -2000,6 +2005,7 @@ export let IgcXButtonComponent = /*@__PURE__*/ (() => {
2000
2005
  }
2001
2006
  };
2002
2007
  this.i.clicked = delegateCombine(this.i.clicked, this._clicked_wrapped);
2008
+ ;
2003
2009
  }
2004
2010
  }
2005
2011
  IgcXButtonComponent._observedAttributesIgcXButtonComponent = null;
@@ -906,6 +906,11 @@ export let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
906
906
  this._a("isMultiSelect", this.i.z);
907
907
  }
908
908
  findByName(name) {
909
+ if (this.findEphemera) {
910
+ if (name && name.indexOf("@@e:") == 0) {
911
+ return this.findEphemera(name);
912
+ }
913
+ }
909
914
  if (this.buttons != null && this.buttons.findByName && this.buttons.findByName(name)) {
910
915
  return this.buttons.findByName(name);
911
916
  }
@@ -1007,6 +1012,7 @@ export let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
1007
1012
  }
1008
1013
  };
1009
1014
  this.i.selectionChanged = delegateCombine(this.i.selectionChanged, this._selectionChanged_wrapped);
1015
+ ;
1010
1016
  }
1011
1017
  }
1012
1018
  IgcXButtonGroupComponent._observedAttributesIgcXButtonGroupComponent = null;
@@ -476,6 +476,7 @@ export let IgcXCalendarComponent = /*@__PURE__*/ (() => {
476
476
  }
477
477
  };
478
478
  this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
479
+ ;
479
480
  }
480
481
  get valueChange() {
481
482
  return this._valueChange;
@@ -512,6 +512,11 @@ export let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
512
512
  this._a("disableTransitions", this.i.u);
513
513
  }
514
514
  findByName(name) {
515
+ if (this.findEphemera) {
516
+ if (name && name.indexOf("@@e:") == 0) {
517
+ return this.findEphemera(name);
518
+ }
519
+ }
515
520
  return null;
516
521
  }
517
522
  get hasUserValues() {
@@ -610,6 +615,7 @@ export let IgcXCheckboxComponent = /*@__PURE__*/ (() => {
610
615
  }
611
616
  };
612
617
  this.i.change = delegateCombine(this.i.change, this._change_wrapped);
618
+ ;
613
619
  }
614
620
  }
615
621
  IgcXCheckboxComponent._observedAttributesIgcXCheckboxComponent = null;
@@ -411,6 +411,11 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
411
411
  this._a("opacity", this.i.x);
412
412
  }
413
413
  findByName(name) {
414
+ if (this.findEphemera) {
415
+ if (name && name.indexOf("@@e:") == 0) {
416
+ return this.findEphemera(name);
417
+ }
418
+ }
414
419
  return null;
415
420
  }
416
421
  get hasUserValues() {
@@ -448,6 +448,7 @@ export let IgcXInputComponent = /*@__PURE__*/ (() => {
448
448
  }
449
449
  };
450
450
  this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
451
+ ;
451
452
  }
452
453
  get keyUp() {
453
454
  return this._keyUp;
@@ -470,6 +471,7 @@ export let IgcXInputComponent = /*@__PURE__*/ (() => {
470
471
  }
471
472
  };
472
473
  this.i.keyUp = delegateCombine(this.i.keyUp, this._keyUp_wrapped);
474
+ ;
473
475
  }
474
476
  get keyPress() {
475
477
  return this._keyPress;
@@ -492,6 +494,7 @@ export let IgcXInputComponent = /*@__PURE__*/ (() => {
492
494
  }
493
495
  };
494
496
  this.i.keyPress = delegateCombine(this.i.keyPress, this._keyPress_wrapped);
497
+ ;
495
498
  }
496
499
  get change() {
497
500
  return this._change;
@@ -514,6 +517,7 @@ export let IgcXInputComponent = /*@__PURE__*/ (() => {
514
517
  }
515
518
  };
516
519
  this.i.change = delegateCombine(this.i.change, this._change_wrapped);
520
+ ;
517
521
  }
518
522
  get changing() {
519
523
  return this._changing;
@@ -536,6 +540,7 @@ export let IgcXInputComponent = /*@__PURE__*/ (() => {
536
540
  }
537
541
  };
538
542
  this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
543
+ ;
539
544
  }
540
545
  get compositionEnd() {
541
546
  return this._compositionEnd;
@@ -558,6 +563,7 @@ export let IgcXInputComponent = /*@__PURE__*/ (() => {
558
563
  }
559
564
  };
560
565
  this.i.compositionEnd = delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
566
+ ;
561
567
  }
562
568
  }
563
569
  IgcXInputComponent._observedAttributesIgcXInputComponent = null;
@@ -1878,6 +1878,11 @@ export let IgcXInputGroupComponent = /*@__PURE__*/ (() => {
1878
1878
  this._a("disabled", this.i.disabled);
1879
1879
  }
1880
1880
  findByName(name) {
1881
+ if (this.findEphemera) {
1882
+ if (name && name.indexOf("@@e:") == 0) {
1883
+ return this.findEphemera(name);
1884
+ }
1885
+ }
1881
1886
  if (this.inputs != null && this.inputs.findByName && this.inputs.findByName(name)) {
1882
1887
  return this.inputs.findByName(name);
1883
1888
  }
@@ -80,11 +80,25 @@ export let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
80
80
  if (super["connectedCallback"]) {
81
81
  super["connectedCallback"]();
82
82
  }
83
+ if (this.i.connectedCallback) {
84
+ this.i.connectedCallback();
85
+ }
83
86
  if (!this._attached) {
84
87
  this._attached = true;
85
88
  this._flushQueuedAttributes();
86
89
  }
87
90
  }
91
+ disconnectedCallback() {
92
+ if (super["disconnectedCallback"]) {
93
+ super["disconnectedCallback"]();
94
+ }
95
+ if (this.i.disconnectedCallback) {
96
+ this.i.disconnectedCallback();
97
+ }
98
+ if (this._attached) {
99
+ this._attached = false;
100
+ }
101
+ }
88
102
  static get observedAttributes() {
89
103
  if (IgcXInputGroupItemComponent._observedAttributesIgcXInputGroupItemComponent == null) {
90
104
  let names = getAllPropertyNames(IgcXInputGroupItemComponent);
@@ -114,6 +128,11 @@ export let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
114
128
  this.i.e = v;
115
129
  }
116
130
  findByName(name) {
131
+ if (this.findEphemera) {
132
+ if (name && name.indexOf("@@e:") == 0) {
133
+ return this.findEphemera(name);
134
+ }
135
+ }
117
136
  return null;
118
137
  }
119
138
  get hasUserValues() {
@@ -294,6 +294,11 @@ export let IgcXRippleComponent = /*@__PURE__*/ (() => {
294
294
  this._a("isHoverEnabled", this.i.k);
295
295
  }
296
296
  findByName(name) {
297
+ if (this.findEphemera) {
298
+ if (name && name.indexOf("@@e:") == 0) {
299
+ return this.findEphemera(name);
300
+ }
301
+ }
297
302
  return null;
298
303
  }
299
304
  get hasUserValues() {
@@ -637,6 +637,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
637
637
  }
638
638
  };
639
639
  this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
640
+ ;
640
641
  },
641
642
  enumerable: true,
642
643
  configurable: true
@@ -664,6 +665,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
664
665
  }
665
666
  };
666
667
  this.i.gotFocus = delegateCombine(this.i.gotFocus, this._gotFocus_wrapped);
668
+ ;
667
669
  },
668
670
  enumerable: true,
669
671
  configurable: true
@@ -691,6 +693,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
691
693
  }
692
694
  };
693
695
  this.i.lostFocus = delegateCombine(this.i.lostFocus, this._lostFocus_wrapped);
696
+ ;
694
697
  },
695
698
  enumerable: true,
696
699
  configurable: true
@@ -718,6 +721,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
718
721
  }
719
722
  };
720
723
  this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
724
+ ;
721
725
  },
722
726
  enumerable: true,
723
727
  configurable: true
@@ -745,6 +749,7 @@ var IgcDatePickerComponent = /** @class */ /*@__PURE__*/ (function (_super) {
745
749
  }
746
750
  };
747
751
  this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
752
+ ;
748
753
  },
749
754
  enumerable: true,
750
755
  configurable: true
@@ -2605,6 +2605,11 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2605
2605
  configurable: true
2606
2606
  });
2607
2607
  IgcXButtonComponent.prototype.findByName = function (name) {
2608
+ if (this.findEphemera) {
2609
+ if (name && name.indexOf("@@e:") == 0) {
2610
+ return this.findEphemera(name);
2611
+ }
2612
+ }
2608
2613
  return null;
2609
2614
  };
2610
2615
  Object.defineProperty(IgcXButtonComponent.prototype, "hasUserValues", {
@@ -2709,6 +2714,7 @@ var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2709
2714
  }
2710
2715
  };
2711
2716
  this.i.clicked = delegateCombine(this.i.clicked, this._clicked_wrapped);
2717
+ ;
2712
2718
  },
2713
2719
  enumerable: true,
2714
2720
  configurable: true
@@ -1198,6 +1198,11 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1198
1198
  configurable: true
1199
1199
  });
1200
1200
  IgcXButtonGroupComponent.prototype.findByName = function (name) {
1201
+ if (this.findEphemera) {
1202
+ if (name && name.indexOf("@@e:") == 0) {
1203
+ return this.findEphemera(name);
1204
+ }
1205
+ }
1201
1206
  if (this.buttons != null && this.buttons.findByName && this.buttons.findByName(name)) {
1202
1207
  return this.buttons.findByName(name);
1203
1208
  }
@@ -1305,6 +1310,7 @@ var IgcXButtonGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
1305
1310
  }
1306
1311
  };
1307
1312
  this.i.selectionChanged = delegateCombine(this.i.selectionChanged, this._selectionChanged_wrapped);
1313
+ ;
1308
1314
  },
1309
1315
  enumerable: true,
1310
1316
  configurable: true
@@ -584,6 +584,7 @@ var IgcXCalendarComponent = /** @class */ /*@__PURE__*/ (function (_super) {
584
584
  }
585
585
  };
586
586
  this.i.selectedValueChanged = delegateCombine(this.i.selectedValueChanged, this._selectedValueChanged_wrapped);
587
+ ;
587
588
  },
588
589
  enumerable: true,
589
590
  configurable: true
@@ -671,6 +671,11 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
671
671
  configurable: true
672
672
  });
673
673
  IgcXCheckboxComponent.prototype.findByName = function (name) {
674
+ if (this.findEphemera) {
675
+ if (name && name.indexOf("@@e:") == 0) {
676
+ return this.findEphemera(name);
677
+ }
678
+ }
674
679
  return null;
675
680
  };
676
681
  Object.defineProperty(IgcXCheckboxComponent.prototype, "hasUserValues", {
@@ -775,6 +780,7 @@ var IgcXCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_super) {
775
780
  }
776
781
  };
777
782
  this.i.change = delegateCombine(this.i.change, this._change_wrapped);
783
+ ;
778
784
  },
779
785
  enumerable: true,
780
786
  configurable: true
@@ -530,6 +530,11 @@ var IgcXIconComponent = /** @class */ /*@__PURE__*/ (function (_super) {
530
530
  configurable: true
531
531
  });
532
532
  IgcXIconComponent.prototype.findByName = function (name) {
533
+ if (this.findEphemera) {
534
+ if (name && name.indexOf("@@e:") == 0) {
535
+ return this.findEphemera(name);
536
+ }
537
+ }
533
538
  return null;
534
539
  };
535
540
  Object.defineProperty(IgcXIconComponent.prototype, "hasUserValues", {
@@ -570,6 +570,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
570
570
  }
571
571
  };
572
572
  this.i.keyDown = delegateCombine(this.i.keyDown, this._keyDown_wrapped);
573
+ ;
573
574
  },
574
575
  enumerable: true,
575
576
  configurable: true
@@ -597,6 +598,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
597
598
  }
598
599
  };
599
600
  this.i.keyUp = delegateCombine(this.i.keyUp, this._keyUp_wrapped);
601
+ ;
600
602
  },
601
603
  enumerable: true,
602
604
  configurable: true
@@ -624,6 +626,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
624
626
  }
625
627
  };
626
628
  this.i.keyPress = delegateCombine(this.i.keyPress, this._keyPress_wrapped);
629
+ ;
627
630
  },
628
631
  enumerable: true,
629
632
  configurable: true
@@ -651,6 +654,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
651
654
  }
652
655
  };
653
656
  this.i.change = delegateCombine(this.i.change, this._change_wrapped);
657
+ ;
654
658
  },
655
659
  enumerable: true,
656
660
  configurable: true
@@ -678,6 +682,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
678
682
  }
679
683
  };
680
684
  this.i.changing = delegateCombine(this.i.changing, this._changing_wrapped);
685
+ ;
681
686
  },
682
687
  enumerable: true,
683
688
  configurable: true
@@ -705,6 +710,7 @@ var IgcXInputComponent = /** @class */ /*@__PURE__*/ (function (_super) {
705
710
  }
706
711
  };
707
712
  this.i.compositionEnd = delegateCombine(this.i.compositionEnd, this._compositionEnd_wrapped);
713
+ ;
708
714
  },
709
715
  enumerable: true,
710
716
  configurable: true
@@ -2554,6 +2554,11 @@ var IgcXInputGroupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2554
2554
  configurable: true
2555
2555
  });
2556
2556
  IgcXInputGroupComponent.prototype.findByName = function (name) {
2557
+ if (this.findEphemera) {
2558
+ if (name && name.indexOf("@@e:") == 0) {
2559
+ return this.findEphemera(name);
2560
+ }
2561
+ }
2557
2562
  if (this.inputs != null && this.inputs.findByName && this.inputs.findByName(name)) {
2558
2563
  return this.inputs.findByName(name);
2559
2564
  }
@@ -86,11 +86,25 @@ var IgcXInputGroupItemComponent = /** @class */ /*@__PURE__*/ (function (_super)
86
86
  if (_super.prototype["connectedCallback"]) {
87
87
  _super.prototype["connectedCallback"].call(this);
88
88
  }
89
+ if (this.i.connectedCallback) {
90
+ this.i.connectedCallback();
91
+ }
89
92
  if (!this._attached) {
90
93
  this._attached = true;
91
94
  this._flushQueuedAttributes();
92
95
  }
93
96
  };
97
+ IgcXInputGroupItemComponent.prototype.disconnectedCallback = function () {
98
+ if (_super.prototype["disconnectedCallback"]) {
99
+ _super.prototype["disconnectedCallback"].call(this);
100
+ }
101
+ if (this.i.disconnectedCallback) {
102
+ this.i.disconnectedCallback();
103
+ }
104
+ if (this._attached) {
105
+ this._attached = false;
106
+ }
107
+ };
94
108
  Object.defineProperty(IgcXInputGroupItemComponent, "observedAttributes", {
95
109
  get: function () {
96
110
  if (IgcXInputGroupItemComponent._observedAttributesIgcXInputGroupItemComponent == null) {
@@ -128,6 +142,11 @@ var IgcXInputGroupItemComponent = /** @class */ /*@__PURE__*/ (function (_super)
128
142
  configurable: true
129
143
  });
130
144
  IgcXInputGroupItemComponent.prototype.findByName = function (name) {
145
+ if (this.findEphemera) {
146
+ if (name && name.indexOf("@@e:") == 0) {
147
+ return this.findEphemera(name);
148
+ }
149
+ }
131
150
  return null;
132
151
  };
133
152
  Object.defineProperty(IgcXInputGroupItemComponent.prototype, "hasUserValues", {
@@ -360,6 +360,11 @@ var IgcXRippleComponent = /** @class */ /*@__PURE__*/ (function (_super) {
360
360
  configurable: true
361
361
  });
362
362
  IgcXRippleComponent.prototype.findByName = function (name) {
363
+ if (this.findEphemera) {
364
+ if (name && name.indexOf("@@e:") == 0) {
365
+ return this.findEphemera(name);
366
+ }
367
+ }
363
368
  return null;
364
369
  };
365
370
  Object.defineProperty(IgcXRippleComponent.prototype, "hasUserValues", {