@syncfusion/ej2-navigations 26.2.8 → 26.2.11

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 : 26.2.8
3
+ * version : 26.2.11
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@26.2.7",
3
+ "_id": "@syncfusion/ej2-navigations@26.2.10",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-10S8S5pPmsFdksCQtLx9TkfGr5I4VrNRh3b3/Omt9NqZnGe0LFi4Gnm8h8NzNZR5j/+UsLcwXQOmaDPPSpFNrw==",
5
+ "_integrity": "sha512-AIMiDEXs1BzcAOiaANBXcaE2ogbKR4jUx/33xiSfMtqdfwiCbVrBjCzdj9RPVBoGCHyidGNzHHHmH1WrcTJ07Q==",
6
6
  "_location": "/@syncfusion/ej2-navigations",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -39,8 +39,8 @@
39
39
  "/@syncfusion/ej2-spreadsheet",
40
40
  "/@syncfusion/ej2-vue-navigations"
41
41
  ],
42
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-26.2.7.tgz",
43
- "_shasum": "f1186b87de272bdf11de2b054dc8c1f7118730e9",
42
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-26.2.10.tgz",
43
+ "_shasum": "b709fb12837964acbcd57d8e3aa767d0e676623f",
44
44
  "_spec": "@syncfusion/ej2-navigations@*",
45
45
  "_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
46
46
  "author": {
@@ -51,12 +51,12 @@
51
51
  },
52
52
  "bundleDependencies": false,
53
53
  "dependencies": {
54
- "@syncfusion/ej2-base": "~26.2.5",
55
- "@syncfusion/ej2-buttons": "~26.2.8",
56
- "@syncfusion/ej2-data": "~26.2.5",
57
- "@syncfusion/ej2-inputs": "~26.2.5",
58
- "@syncfusion/ej2-lists": "~26.2.5",
59
- "@syncfusion/ej2-popups": "~26.2.8"
54
+ "@syncfusion/ej2-base": "~26.2.10",
55
+ "@syncfusion/ej2-buttons": "~26.2.10",
56
+ "@syncfusion/ej2-data": "~26.2.10",
57
+ "@syncfusion/ej2-inputs": "~26.2.11",
58
+ "@syncfusion/ej2-lists": "~26.2.11",
59
+ "@syncfusion/ej2-popups": "~26.2.11"
60
60
  },
61
61
  "deprecated": false,
62
62
  "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",
@@ -161,6 +161,6 @@
161
161
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
162
162
  },
163
163
  "typings": "index.d.ts",
164
- "version": "26.2.8",
164
+ "version": "26.2.11",
165
165
  "sideEffects": false
166
166
  }
@@ -517,6 +517,12 @@ var Breadcrumb = /** @class */ (function (_super) {
517
517
  }
518
518
  };
519
519
  Breadcrumb.prototype.reRenderItems = function () {
520
+ if (this.overflowMode === 'Menu' && this.popupObj && this.popupObj.element.classList.contains('e-popup-open') && this.popupObj.element.querySelector('.e-edit-template')) {
521
+ this.popupObj.hide();
522
+ this.popupObj.destroy();
523
+ this.isPopupCreated = false;
524
+ detach(this.popupObj.element);
525
+ }
520
526
  this.element.innerHTML = '';
521
527
  this.renderItems(this.items);
522
528
  };
@@ -606,7 +612,7 @@ var Breadcrumb = /** @class */ (function (_super) {
606
612
  this.popupObj.show();
607
613
  };
608
614
  Breadcrumb.prototype.documentClickHandler = function (e) {
609
- if (this.overflowMode === 'Menu' && this.popupObj && this.popupObj.element.classList.contains('e-popup-open') && !closest(e.target, DOT + MENUCLASS)) {
615
+ if (this.overflowMode === 'Menu' && this.popupObj && this.popupObj.element.classList.contains('e-popup-open') && !closest(e.target, DOT + MENUCLASS) && !closest(e.target, DOT + 'e-edit-template')) {
610
616
  this.popupObj.hide();
611
617
  this.popupObj.destroy();
612
618
  this.isPopupCreated = false;
@@ -1535,7 +1535,9 @@ var MenuBase = /** @class */ (function (_super) {
1535
1535
  this.removeLIStateByClass([SELECTED], [wrapper]);
1536
1536
  }
1537
1537
  if (!cli || !cli.querySelector('.' + CARET)) {
1538
- this.closeMenu(null, e);
1538
+ if (navigator.platform.toUpperCase().indexOf('MAC') < 0 || (navigator.platform.toUpperCase().indexOf('MAC') >= 0 && !e.ctrlKey)) {
1539
+ this.closeMenu(null, e);
1540
+ }
1539
1541
  }
1540
1542
  }
1541
1543
  }
@@ -722,6 +722,9 @@
722
722
  .e-pager div.e-icons.e-pager-default {
723
723
  color: var(--color-sf-icon-color);
724
724
  }
725
+ .e-pager div.e-icons.e-pager-default:not(.e-numericitem):hover {
726
+ color: var(--color-sf-content-text-color-hover);
727
+ }
725
728
  .e-pager div.e-icons.e-disable {
726
729
  color: var(--color-sf-icon-color-disabled);
727
730
  }
@@ -28,6 +28,12 @@
28
28
  color: $pager-icon-color;
29
29
  }
30
30
 
31
+ div.e-icons.e-pager-default:not(.e-numericitem):hover {
32
+ @if $pager-skin == 'fluent2' {
33
+ color: $pager-hover-color;
34
+ }
35
+ }
36
+
31
37
  div.e-icons.e-disable {
32
38
  color: $pager-numeric-txt-bg-color;
33
39
  }
@@ -722,6 +722,9 @@
722
722
  .e-pager div.e-icons.e-pager-default {
723
723
  color: var(--color-sf-icon-color);
724
724
  }
725
+ .e-pager div.e-icons.e-pager-default:not(.e-numericitem):hover {
726
+ color: var(--color-sf-content-text-color-hover);
727
+ }
725
728
  .e-pager div.e-icons.e-disable {
726
729
  color: var(--color-sf-icon-color-disabled);
727
730
  }
@@ -1 +0,0 @@
1
- hotfix/26.1.35_Vol2