@syncfusion/ej2-navigations 29.1.38 → 29.1.41

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.38
3
+ * version : 29.1.41
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-navigations@*",
3
- "_id": "@syncfusion/ej2-navigations@29.1.37",
3
+ "_id": "@syncfusion/ej2-navigations@29.1.38",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-HxYgu7qoNaDNQV6R/D5ApVuT0IQiM08jyZBctuHEZCSJkvnOEpctLNZmpjfP4/gGzOpszK12iiDkp6RbeIC4fA==",
5
+ "_integrity": "sha512-/OPUPqbnwIXo36+W0w/F8pH6cNjrJsgEEaZpZP7uklGeqIpyFLrPo4f4uDFKdbgrX+K3Bs01loThHmaB1447ig==",
6
6
  "_location": "/@syncfusion/ej2-navigations",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -40,8 +40,8 @@
40
40
  "/@syncfusion/ej2-spreadsheet",
41
41
  "/@syncfusion/ej2-vue-navigations"
42
42
  ],
43
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-29.1.37.tgz",
44
- "_shasum": "4154853be60d95a8f0a5ff83e1b6b46d7144abb8",
43
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-29.1.38.tgz",
44
+ "_shasum": "f3d612527b73d8271adacdf1811bfdec8e76b0f5",
45
45
  "_spec": "@syncfusion/ej2-navigations@*",
46
46
  "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
47
47
  "author": {
@@ -55,8 +55,8 @@
55
55
  "@syncfusion/ej2-base": "~29.1.36",
56
56
  "@syncfusion/ej2-buttons": "~29.1.34",
57
57
  "@syncfusion/ej2-data": "~29.1.33",
58
- "@syncfusion/ej2-inputs": "~29.1.38",
59
- "@syncfusion/ej2-lists": "~29.1.34",
58
+ "@syncfusion/ej2-inputs": "~29.1.39",
59
+ "@syncfusion/ej2-lists": "~29.1.40",
60
60
  "@syncfusion/ej2-popups": "~29.1.37"
61
61
  },
62
62
  "deprecated": false,
@@ -162,6 +162,6 @@
162
162
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
163
163
  },
164
164
  "typings": "index.d.ts",
165
- "version": "29.1.38",
165
+ "version": "29.1.41",
166
166
  "sideEffects": false
167
167
  }
@@ -1303,6 +1303,8 @@ var MenuBase = /** @class */ (function (_super) {
1303
1303
  }
1304
1304
  var cmenuWidth = Math.ceil(this.getMenuWidth(ul, ul.offsetWidth, this.enableRtl));
1305
1305
  var cmenu = addScrolling(this.createElement, wrapper, ul, 'vscroll', this.enableRtl, wrapper.offsetHeight);
1306
+ var newOffset = this.callFit(cmenu, false, true, top, left);
1307
+ top = newOffset.top;
1306
1308
  Object.assign(cmenu.style, {
1307
1309
  top: top + "px",
1308
1310
  left: left + "px",
package/src/tab/tab.js CHANGED
@@ -1956,14 +1956,14 @@ var Tab = /** @class */ (function (_super) {
1956
1956
  */
1957
1957
  Tab.prototype.removeTab = function (index) {
1958
1958
  var _this = this;
1959
- var trg = selectAll('.' + CLS_TB_ITEM, this.element)[index];
1959
+ var trg = selectAll('.' + CLS_TB_ITEM, this.hdrEle)[index];
1960
1960
  if (isNOU(trg)) {
1961
1961
  return;
1962
1962
  }
1963
1963
  var removeArgs = { removedItem: trg, removedIndex: index, cancel: false };
1964
1964
  this.trigger('removing', removeArgs, function (tabRemovingArgs) {
1965
1965
  if (!tabRemovingArgs.cancel) {
1966
- var header = select('#' + CLS_ITEM + _this.tabId + '_' + _this.extIndex(trg.id), select('.' + CLS_TB_ITEMS, _this.element));
1966
+ var header = select('#' + CLS_ITEM + _this.tabId + '_' + _this.extIndex(trg.id), select('.' + CLS_TB_ITEMS, _this.hdrEle));
1967
1967
  if (!isNOU(header)) {
1968
1968
  _this.clearTabTemplate(header, 'headerTemplate', CLS_TB_ITEM);
1969
1969
  }