@syncfusion/ej2-splitbuttons 20.3.47 → 20.3.56

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.
@@ -644,6 +644,18 @@ var DropDownButton = /** @__PURE__ @class */ (function (_super) {
644
644
  };
645
645
  DropDownButton.prototype.focusoutHandler = function (e) {
646
646
  if (this.isPopupCreated && !this.canOpen()) {
647
+ var liTarget = e.relatedTarget;
648
+ if (liTarget && liTarget.className.indexOf('e-item') > -1) {
649
+ var li = this.getLI(liTarget);
650
+ if (li) {
651
+ var liIdx = Array.prototype.indexOf.call(this.getULElement().children, li);
652
+ var item = this.items[liIdx];
653
+ if (item) {
654
+ var selectEventArgs = { element: li, item: item };
655
+ this.trigger('select', selectEventArgs);
656
+ }
657
+ }
658
+ }
647
659
  this.closePopup(e);
648
660
  }
649
661
  };