@syncfusion/ej2-navigations 28.1.36 → 28.1.39

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,3 +1,12 @@
1
+ /*!
2
+ * filename: index.d.ts
3
+ * version : 28.1.39
4
+ * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
+ * Use of this code is subject to the terms of our license.
6
+ * A copy of the current license can be obtained at any time by e-mailing
7
+ * licensing@syncfusion.com. Any infringement will be prosecuted under
8
+ * applicable laws.
9
+ */
1
10
  import * as _navigations from '@syncfusion/ej2-navigations';
2
11
 
3
12
  export declare namespace ej {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "_from": "@syncfusion/ej2-navigations@*",
3
3
  "_id": "@syncfusion/ej2-navigations@28.1.35",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-bcsL2Mi4X0LHoyO46yKJPW91IwJa8SvmdIwjHzJlsxKzAoALmLZPdbLMwQN8fqrr0j8DzVO7PA2IZ3X4Wi1Aew==",
5
+ "_integrity": "sha512-DfoiKu0Ty+W9EEEdLGr+dOBgL49Swh2Atz6fR4L8J6o6KMJYYtoj9OrfZuN20hP5i5WrCVbbu8/ORFHYL6RWTQ==",
6
6
  "_location": "/@syncfusion/ej2-navigations",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -18,6 +18,7 @@
18
18
  },
19
19
  "_requiredBy": [
20
20
  "/",
21
+ "/@syncfusion/ej2",
21
22
  "/@syncfusion/ej2-angular-navigations",
22
23
  "/@syncfusion/ej2-charts",
23
24
  "/@syncfusion/ej2-diagrams",
@@ -26,18 +27,21 @@
26
27
  "/@syncfusion/ej2-filemanager",
27
28
  "/@syncfusion/ej2-gantt",
28
29
  "/@syncfusion/ej2-grids",
30
+ "/@syncfusion/ej2-image-editor",
29
31
  "/@syncfusion/ej2-inplace-editor",
32
+ "/@syncfusion/ej2-interactive-chat",
30
33
  "/@syncfusion/ej2-kanban",
31
34
  "/@syncfusion/ej2-pdfviewer",
32
35
  "/@syncfusion/ej2-pivotview",
33
36
  "/@syncfusion/ej2-react-navigations",
37
+ "/@syncfusion/ej2-ribbon",
34
38
  "/@syncfusion/ej2-richtexteditor",
35
39
  "/@syncfusion/ej2-schedule",
36
40
  "/@syncfusion/ej2-spreadsheet",
37
41
  "/@syncfusion/ej2-vue-navigations"
38
42
  ],
39
43
  "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-28.1.35.tgz",
40
- "_shasum": "54d9a735dcd1ea095cbb46fc9830f844e4acfa6a",
44
+ "_shasum": "685ff5b2d985a4c45b82f43fbb9b78c8f0a8a289",
41
45
  "_spec": "@syncfusion/ej2-navigations@*",
42
46
  "_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included",
43
47
  "author": {
@@ -49,11 +53,11 @@
49
53
  "bundleDependencies": false,
50
54
  "dependencies": {
51
55
  "@syncfusion/ej2-base": "~28.1.33",
52
- "@syncfusion/ej2-buttons": "~28.1.36",
56
+ "@syncfusion/ej2-buttons": "~28.1.39",
53
57
  "@syncfusion/ej2-data": "~28.1.33",
54
- "@syncfusion/ej2-inputs": "~28.1.33",
55
- "@syncfusion/ej2-lists": "~28.1.33",
56
- "@syncfusion/ej2-popups": "~28.1.33"
58
+ "@syncfusion/ej2-inputs": "~28.1.37",
59
+ "@syncfusion/ej2-lists": "~28.1.37",
60
+ "@syncfusion/ej2-popups": "~28.1.39"
57
61
  },
58
62
  "deprecated": false,
59
63
  "description": "A package of Essential JS 2 navigation components such as Tree-view, Tab, Toolbar, Context-menu, and Accordion which is used to navigate from one page to another",
@@ -158,6 +162,6 @@
158
162
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
159
163
  },
160
164
  "typings": "index.d.ts",
161
- "version": "28.1.36",
165
+ "version": "28.1.39",
162
166
  "sideEffects": false
163
167
  }
package/src/tab/tab.js CHANGED
@@ -2456,6 +2456,10 @@ var Tab = /** @class */ (function (_super) {
2456
2456
  * @returns {void}
2457
2457
  */
2458
2458
  Tab.prototype.refreshActiveTabBorder = function () {
2459
+ if (this.heightAdjustMode === 'None' && this.height !== 'auto' && this.cntEle && !this.isVertical()) {
2460
+ var hdrEle = this.getTabHeader();
2461
+ setStyle(this.cntEle, { 'height': (this.element.clientHeight - hdrEle.offsetHeight) + 'px' });
2462
+ }
2459
2463
  var activeEle = select('.' + CLS_TB_ITEM + '.' + CLS_TB_POPUP + '.' + CLS_ACTIVE, this.element);
2460
2464
  if (!isNOU(activeEle) && this.reorderActiveTab) {
2461
2465
  this.select(this.getEleIndex(activeEle));