@syncfusion/ej2-ribbon 29.1.34 → 29.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,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 29.1.33
3
+ * version : 29.1.39
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,30 +1,32 @@
1
1
  {
2
- "_from": "@syncfusion/ej2-ribbon@29.1.33",
2
+ "_from": "@syncfusion/ej2-ribbon@*",
3
3
  "_id": "@syncfusion/ej2-ribbon@29.1.33",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-deL3H0cN+gm6owujV1VPMIu3LekzchV867ThU9w+0hq3smMS/gmbJP+gnqjAQjUYQ+W/5yYJoENGtKv1DN9IcA==",
5
+ "_integrity": "sha512-2VYDg6mkyT9DvTRQgWsLA0X7AJvNmPZprEUszqW3AVSO69mc9wFVXAn7EZucKzLSJxWEtMpiojrVZGqF0ntSYQ==",
6
6
  "_location": "/@syncfusion/ej2-ribbon",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
9
- "type": "version",
9
+ "type": "range",
10
10
  "registry": true,
11
- "raw": "@syncfusion/ej2-ribbon@29.1.33",
11
+ "raw": "@syncfusion/ej2-ribbon@*",
12
12
  "name": "@syncfusion/ej2-ribbon",
13
13
  "escapedName": "@syncfusion%2fej2-ribbon",
14
14
  "scope": "@syncfusion",
15
- "rawSpec": "29.1.34",
15
+ "rawSpec": "*",
16
16
  "saveSpec": null,
17
- "fetchSpec": "29.1.34"
17
+ "fetchSpec": "*"
18
18
  },
19
19
  "_requiredBy": [
20
+ "/",
21
+ "/@syncfusion/ej2",
20
22
  "/@syncfusion/ej2-angular-ribbon",
21
23
  "/@syncfusion/ej2-react-ribbon",
22
24
  "/@syncfusion/ej2-vue-ribbon"
23
25
  ],
24
- "_resolved": "https://registry.npmjs.org/@syncfusion/ej2-ribbon/-/ej2-ribbon-29.1.33.tgz",
25
- "_shasum": "c8d35dba484385467e183cdba3f856466125568c",
26
- "_spec": "@syncfusion/ej2-ribbon@29.1.33",
27
- "_where": "E:\\march2025\\memory-leaks\\node_modules\\@syncfusion\\ej2-angular-ribbon",
26
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-ribbon/-/ej2-ribbon-29.1.33.tgz",
27
+ "_shasum": "36e18eee9f3f2e7ebea766645ef31cea2182f2ef",
28
+ "_spec": "@syncfusion/ej2-ribbon@*",
29
+ "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
28
30
  "author": {
29
31
  "name": "Syncfusion Inc."
30
32
  },
@@ -33,12 +35,12 @@
33
35
  },
34
36
  "bundleDependencies": false,
35
37
  "dependencies": {
36
- "@syncfusion/ej2-base": "~29.1.33",
37
- "@syncfusion/ej2-buttons": "~29.1.33",
38
- "@syncfusion/ej2-dropdowns": "~29.1.33",
39
- "@syncfusion/ej2-lists": "~29.1.33",
40
- "@syncfusion/ej2-navigations": "~29.1.33",
41
- "@syncfusion/ej2-popups": "~29.1.33",
38
+ "@syncfusion/ej2-base": "~29.1.36",
39
+ "@syncfusion/ej2-buttons": "~29.1.34",
40
+ "@syncfusion/ej2-dropdowns": "~29.1.38",
41
+ "@syncfusion/ej2-lists": "~29.1.34",
42
+ "@syncfusion/ej2-navigations": "~29.1.38",
43
+ "@syncfusion/ej2-popups": "~29.1.37",
42
44
  "@syncfusion/ej2-splitbuttons": "~29.1.33"
43
45
  },
44
46
  "deprecated": false,
@@ -59,7 +61,7 @@
59
61
  "type": "git",
60
62
  "url": "git+https://github.com/syncfusion/ej2-ribbon-component.git"
61
63
  },
62
- "sideEffects": false,
63
64
  "typings": "index.d.ts",
64
- "version": "29.1.34"
65
- }
65
+ "version": "29.1.39",
66
+ "sideEffects": false
67
+ }
@@ -2423,6 +2423,14 @@ var Ribbon = /** @class */ (function (_super) {
2423
2423
  }
2424
2424
  }
2425
2425
  }
2426
+ if (this.tabsInternal !== this.tabs) {
2427
+ this.tabsInternal = this.tabs;
2428
+ var tabItems = this.createTabItems(this.tabs);
2429
+ if (this.selectedTab >= this.tabs.length) {
2430
+ this.selectedTab = this.tabs.length - 1;
2431
+ }
2432
+ this.tabObj.setProperties({ items: tabItems, selectedItem: this.selectedTab });
2433
+ }
2426
2434
  var activeContent = this.tabObj.element.querySelector('#' + this.tabs[this.selectedTab].id + constants.CONTENT_ID);
2427
2435
  this.checkOverflow(this.selectedTab, activeContent);
2428
2436
  };