@syncfusion/ej2-splitbuttons 23.1.41 → 23.2.4

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.
@@ -657,7 +657,7 @@ let DropDownButton = class DropDownButton extends Component {
657
657
  const liIdx = Array.prototype.indexOf.call(this.getULElement().children, li);
658
658
  const item = this.items[liIdx];
659
659
  if (item) {
660
- const selectEventArgs = { element: li, item: item };
660
+ const selectEventArgs = { element: li, item: item, event: e };
661
661
  this.trigger('select', selectEventArgs);
662
662
  }
663
663
  }
@@ -694,7 +694,7 @@ let DropDownButton = class DropDownButton extends Component {
694
694
  liIdx = Array.prototype.indexOf.call(this.getULElement().children, li);
695
695
  item = this.items[liIdx];
696
696
  if (item) {
697
- eventArgs = { element: li, item: item };
697
+ eventArgs = { element: li, item: item, event: e };
698
698
  this.trigger('select', eventArgs);
699
699
  }
700
700
  this.closePopup(e, this.activeElem[0]);