@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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 29.1.33
3
+ * version : 29.2.4
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-splitbuttons@*",
3
- "_id": "@syncfusion/ej2-splitbuttons@28.1.33",
3
+ "_id": "@syncfusion/ej2-splitbuttons@29.1.33",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-9OvMrPJ+hKEkuBwonTT3478UNHR/UIBp4M824inyFJ2HjpfBQqcb5hd0ZNDYhXEUedNIgba0dKYtulVoQHdlWQ==",
5
+ "_integrity": "sha512-hAhJ4u6iTvisd11wKMYN6t9MGu64FJ3F0TW1y8F+QuuvW5VqbTpy2xJ/ALgVrOcMFL4r+zqFOTlhdNYd6Jx+1A==",
6
6
  "_location": "/@syncfusion/ej2-splitbuttons",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -33,8 +33,8 @@
33
33
  "/@syncfusion/ej2-richtexteditor",
34
34
  "/@syncfusion/ej2-vue-splitbuttons"
35
35
  ],
36
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-release/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-28.1.33.tgz",
37
- "_shasum": "9d2f3fe807a911970bf049c278a8ac0d8b93e54e",
36
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-29.1.33.tgz",
37
+ "_shasum": "828efa561bf78a98fa0c10ca02865a9e82a0dd7c",
38
38
  "_spec": "@syncfusion/ej2-splitbuttons@*",
39
39
  "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
40
40
  "author": {
@@ -45,8 +45,8 @@
45
45
  },
46
46
  "bundleDependencies": false,
47
47
  "dependencies": {
48
- "@syncfusion/ej2-base": "~29.1.33",
49
- "@syncfusion/ej2-popups": "~29.1.33"
48
+ "@syncfusion/ej2-base": "~29.2.4",
49
+ "@syncfusion/ej2-popups": "~29.2.4"
50
50
  },
51
51
  "deprecated": false,
52
52
  "description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup.",
@@ -89,6 +89,6 @@
89
89
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
90
90
  },
91
91
  "typings": "index.d.ts",
92
- "version": "29.1.33",
92
+ "version": "29.2.4",
93
93
  "sideEffects": false
94
94
  }
@@ -812,7 +812,9 @@ var DropDownButton = /** @class */ (function (_super) {
812
812
  _this.element.removeAttribute('aria-owns');
813
813
  if (focusEle) {
814
814
  if (!_this.isSafari()) {
815
- focusEle.focus();
815
+ if (!(_this.isColorPicker() && e.keyCode === 27)) {
816
+ focusEle.focus();
817
+ }
816
818
  }
817
819
  else {
818
820
  focusEle.focus({ preventScroll: true });