@syncfusion/ej2-splitbuttons 23.1.41 → 23.1.43

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 : 23.1.41
3
+ * version : 23.1.43
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. 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@23.1.36",
3
+ "_id": "@syncfusion/ej2-splitbuttons@23.1.41",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-eNpbWTgWfST6tCZlET/CMlvY/FLJk0bwzXOMqO/Qq4x7CRvDoOHNjeDIIiXw9q1Ooyjl/EFURBLqL2KfFzIVZw==",
5
+ "_integrity": "sha512-Eo3mgsNoaayCTGGKv5i518ozZWjxjjEtAbfq3uZFky6+lc2Y8mXVIqe/FerL6/0doDTgT+GW3i92M0FVEPO8zA==",
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.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-23.1.36.tgz",
37
- "_shasum": "143d9d206ff348b784ea0854a03e3ab570779800",
36
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-splitbuttons/-/ej2-splitbuttons-23.1.41.tgz",
37
+ "_shasum": "3c51dc940ff319f213750b28d0b7123e8d25092e",
38
38
  "_spec": "@syncfusion/ej2-splitbuttons@*",
39
39
  "_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
40
40
  "author": {
@@ -46,7 +46,7 @@
46
46
  "bundleDependencies": false,
47
47
  "dependencies": {
48
48
  "@syncfusion/ej2-base": "~23.1.41",
49
- "@syncfusion/ej2-popups": "~23.1.38"
49
+ "@syncfusion/ej2-popups": "~23.1.43"
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": "23.1.41",
92
+ "version": "23.1.43",
93
93
  "sideEffects": false
94
94
  }
@@ -69,6 +69,7 @@ export declare class Item extends ChildProperty<Item> {
69
69
  export interface MenuEventArgs extends BaseEventArgs {
70
70
  element: HTMLElement;
71
71
  item: ItemModel;
72
+ event?: Event;
72
73
  }
73
74
  /**
74
75
  * Interface for before open / close event.
@@ -515,7 +515,7 @@ var DropDownButton = /** @class */ (function (_super) {
515
515
  var liIdx = Array.prototype.indexOf.call(this.getULElement().children, li);
516
516
  var item = this.items[liIdx];
517
517
  if (item) {
518
- var selectEventArgs = { element: li, item: item };
518
+ var selectEventArgs = { element: li, item: item, event: e };
519
519
  this.trigger('select', selectEventArgs);
520
520
  }
521
521
  }
@@ -552,7 +552,7 @@ var DropDownButton = /** @class */ (function (_super) {
552
552
  liIdx = Array.prototype.indexOf.call(this.getULElement().children, li);
553
553
  item = this.items[liIdx];
554
554
  if (item) {
555
- eventArgs = { element: li, item: item };
555
+ eventArgs = { element: li, item: item, event: e };
556
556
  this.trigger('select', eventArgs);
557
557
  }
558
558
  this.closePopup(e, this.activeElem[0]);