@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.
@@ -936,7 +936,9 @@ let DropDownButton = class DropDownButton extends Component {
936
936
  this.element.removeAttribute('aria-owns');
937
937
  if (focusEle) {
938
938
  if (!this.isSafari()) {
939
- focusEle.focus();
939
+ if (!(this.isColorPicker() && e.keyCode === 27)) {
940
+ focusEle.focus();
941
+ }
940
942
  }
941
943
  else {
942
944
  focusEle.focus({ preventScroll: true });