@syncfusion/ej2-navigations 27.1.55 → 27.1.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/dist/ej2-navigations.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js +2 -2
- package/dist/ej2-navigations.umd.min.js.map +1 -1
- package/dist/es6/ej2-navigations.es2015.js +5 -0
- package/dist/es6/ej2-navigations.es2015.js.map +1 -1
- package/dist/es6/ej2-navigations.es5.js +5 -0
- package/dist/es6/ej2-navigations.es5.js.map +1 -1
- package/dist/global/ej2-navigations.min.js +2 -2
- package/dist/global/ej2-navigations.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/src/breadcrumb/breadcrumb.js +5 -0
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 27.1.
|
|
3
|
+
* version : 27.1.56
|
|
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-navigations@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-navigations@27.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-navigations@27.1.55",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-iZx6AbsopcQcpqLe1Jy4utWH7FkkDd6B5ViVn1BYSj42cbcd6EMVT7bcxaUw6RnEBy4Vbg7iQXEfe+OvKSzMqg==",
|
|
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-27.1.
|
|
44
|
-
"_shasum": "
|
|
43
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-27.1.55.tgz",
|
|
44
|
+
"_shasum": "02ddea6fbc65915fc2c5a3b93a211593a9530361",
|
|
45
45
|
"_spec": "@syncfusion/ej2-navigations@*",
|
|
46
46
|
"_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
|
|
47
47
|
"author": {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@syncfusion/ej2-data": "~27.1.52",
|
|
58
58
|
"@syncfusion/ej2-inputs": "~27.1.55",
|
|
59
59
|
"@syncfusion/ej2-lists": "~27.1.50",
|
|
60
|
-
"@syncfusion/ej2-popups": "~27.1.
|
|
60
|
+
"@syncfusion/ej2-popups": "~27.1.56"
|
|
61
61
|
},
|
|
62
62
|
"deprecated": false,
|
|
63
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",
|
|
@@ -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": "27.1.
|
|
165
|
+
"version": "27.1.56",
|
|
166
166
|
"sideEffects": false
|
|
167
167
|
}
|
|
@@ -749,6 +749,11 @@ var Breadcrumb = /** @class */ (function (_super) {
|
|
|
749
749
|
*/
|
|
750
750
|
Breadcrumb.prototype.destroy = function () {
|
|
751
751
|
var _this = this;
|
|
752
|
+
if (this.popupObj && this.popupObj.element.classList.contains('e-popup-open')) {
|
|
753
|
+
this.popupObj.destroy();
|
|
754
|
+
this.isPopupCreated = false;
|
|
755
|
+
detach(this.popupObj.element);
|
|
756
|
+
}
|
|
752
757
|
var classes = [];
|
|
753
758
|
var attributes = ['aria-label'];
|
|
754
759
|
if (this.cssClass) {
|