@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.
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-splitbuttons@*",
3
- "_id": "@syncfusion/ej2-splitbuttons@19.12.0",
3
+ "_id": "@syncfusion/ej2-splitbuttons@20.3.52",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-NGJ+syOLB85A7O0dMz23RD0p1tNYKfaXLRPZihtKZCiX8w3/vrp7FBfx0jWjIHvujfPHhMySBNYP7oWzluIx7Q==",
5
+ "_integrity": "sha512-VkibEmjYqL/4dezI+zV6dfAjypIeEqignDbQawhoJQi6hL2pGIzuRB2uHeP0yjuJlu1337VEfgv1Sw+Aq1pwRA==",
6
6
  "_location": "/@syncfusion/ej2-splitbuttons",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -32,10 +32,10 @@
32
32
  "/@syncfusion/ej2-richtexteditor",
33
33
  "/@syncfusion/ej2-vue-splitbuttons"
34
34
  ],
35
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-19.12.0.tgz",
36
- "_shasum": "a349e55d47efdf3feaac19a42167812ef17fac9e",
35
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-20.3.52.tgz",
36
+ "_shasum": "5f7f7924898f265ce0180d768ed46b4451552e0b",
37
37
  "_spec": "@syncfusion/ej2-splitbuttons@*",
38
- "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
38
+ "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
39
39
  "author": {
40
40
  "name": "Syncfusion Inc."
41
41
  },
@@ -44,8 +44,8 @@
44
44
  },
45
45
  "bundleDependencies": false,
46
46
  "dependencies": {
47
- "@syncfusion/ej2-base": "~20.3.47",
48
- "@syncfusion/ej2-popups": "~20.3.47"
47
+ "@syncfusion/ej2-base": "~20.3.56",
48
+ "@syncfusion/ej2-popups": "~20.3.56"
49
49
  },
50
50
  "deprecated": false,
51
51
  "description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup.",
@@ -88,6 +88,6 @@
88
88
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
89
89
  },
90
90
  "typings": "index.d.ts",
91
- "version": "20.3.47",
91
+ "version": "20.3.56",
92
92
  "sideEffects": false
93
93
  }
@@ -478,6 +478,18 @@ var DropDownButton = /** @class */ (function (_super) {
478
478
  };
479
479
  DropDownButton.prototype.focusoutHandler = function (e) {
480
480
  if (this.isPopupCreated && !this.canOpen()) {
481
+ var liTarget = e.relatedTarget;
482
+ if (liTarget && liTarget.className.indexOf('e-item') > -1) {
483
+ var li = this.getLI(liTarget);
484
+ if (li) {
485
+ var liIdx = Array.prototype.indexOf.call(this.getULElement().children, li);
486
+ var item = this.items[liIdx];
487
+ if (item) {
488
+ var selectEventArgs = { element: li, item: item };
489
+ this.trigger('select', selectEventArgs);
490
+ }
491
+ }
492
+ }
481
493
  this.closePopup(e);
482
494
  }
483
495
  };