@syncfusion/ej2-splitbuttons 29.1.33 → 29.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.
@@ -984,7 +984,9 @@ var DropDownButton = /** @__PURE__ @class */ (function (_super) {
984
984
  _this.element.removeAttribute('aria-owns');
985
985
  if (focusEle) {
986
986
  if (!_this.isSafari()) {
987
- focusEle.focus();
987
+ if (!(_this.isColorPicker() && e.keyCode === 27)) {
988
+ focusEle.focus();
989
+ }
988
990
  }
989
991
  else {
990
992
  focusEle.focus({ preventScroll: true });