@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.
@@ -691,7 +691,7 @@ var DropDownButton = /** @__PURE__ @class */ (function (_super) {
691
691
  var liIdx = Array.prototype.indexOf.call(this.getULElement().children, li);
692
692
  var item = this.items[liIdx];
693
693
  if (item) {
694
- var selectEventArgs = { element: li, item: item };
694
+ var selectEventArgs = { element: li, item: item, event: e };
695
695
  this.trigger('select', selectEventArgs);
696
696
  }
697
697
  }
@@ -728,7 +728,7 @@ var DropDownButton = /** @__PURE__ @class */ (function (_super) {
728
728
  liIdx = Array.prototype.indexOf.call(this.getULElement().children, li);
729
729
  item = this.items[liIdx];
730
730
  if (item) {
731
- eventArgs = { element: li, item: item };
731
+ eventArgs = { element: li, item: item, event: e };
732
732
  this.trigger('select', eventArgs);
733
733
  }
734
734
  this.closePopup(e, this.activeElem[0]);