@syncfusion/ej2-navigations 27.2.3 → 27.2.5

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 : 27.2.3
3
+ * version : 27.2.5
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.2.2",
3
+ "_id": "@syncfusion/ej2-navigations@27.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-wdKjMJAp1fCj8Lh+EcSicpaZ/dwG50/giQQAcaCTrDPrn0oGT9+/MS3gzDtxNgSOuDDANSCtJ8+2wFacDtAXRA==",
5
+ "_integrity": "sha512-GCmn63RwpvF61RmqeTULfV1HbEhZyt2IsBLqJFPEz6Bgs9+1+5E8my38kvN78NaKQ+r0+lPh8CgD12Z8ezdF0g==",
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.2.2.tgz",
44
- "_shasum": "b90419d23da0d3a8d0300f21f00b07015f3ea1b3",
43
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-navigations/-/ej2-navigations-27.2.4.tgz",
44
+ "_shasum": "66244247af321344aaf7c9a31dcef43e1043e83c",
45
45
  "_spec": "@syncfusion/ej2-navigations@*",
46
46
  "_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
47
47
  "author": {
@@ -52,11 +52,11 @@
52
52
  },
53
53
  "bundleDependencies": false,
54
54
  "dependencies": {
55
- "@syncfusion/ej2-base": "~27.2.2",
56
- "@syncfusion/ej2-buttons": "~27.2.2",
55
+ "@syncfusion/ej2-base": "~27.2.5",
56
+ "@syncfusion/ej2-buttons": "~27.2.4",
57
57
  "@syncfusion/ej2-data": "~27.2.2",
58
- "@syncfusion/ej2-inputs": "~27.2.2",
59
- "@syncfusion/ej2-lists": "~27.2.3",
58
+ "@syncfusion/ej2-inputs": "~27.2.4",
59
+ "@syncfusion/ej2-lists": "~27.2.5",
60
60
  "@syncfusion/ej2-popups": "~27.2.2"
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": "27.2.3",
165
+ "version": "27.2.5",
166
166
  "sideEffects": false
167
167
  }
package/src/tab/tab.js CHANGED
@@ -1743,7 +1743,7 @@ var Tab = /** @class */ (function (_super) {
1743
1743
  else {
1744
1744
  if (_this.items.length > 0 && _this.draggingItems.length > 0) {
1745
1745
  _this.items = _this.draggingItems;
1746
- _this.selectedItem = _this.droppedIndex;
1746
+ _this.selectedItem = isNOU(_this.droppedIndex) ? _this.getEleIndex(_this.dragItem) : _this.droppedIndex;
1747
1747
  _this.refresh();
1748
1748
  }
1749
1749
  else {
@@ -1073,7 +1073,9 @@ var TreeView = /** @class */ (function (_super) {
1073
1073
  .filter(function (childNode) {
1074
1074
  if (childNode && typeof childNode === 'object' && 'pid' in childNode) {
1075
1075
  var childNodePid = childNode.pid;
1076
- return childNodePid.toString() === dataUid;
1076
+ if (!isNOU(childNodePid)) {
1077
+ return childNodePid.toString() === dataUid;
1078
+ }
1077
1079
  }
1078
1080
  return false;
1079
1081
  });
@@ -5354,7 +5356,7 @@ var TreeView = /** @class */ (function (_super) {
5354
5356
  }
5355
5357
  else {
5356
5358
  this.expandAllNodes(excludeHiddenNodes);
5357
- if (!this.loadOnDemand) {
5359
+ if (!this.loadOnDemand || this.element.classList.contains('e-filtering')) {
5358
5360
  this.updateAttributes(this.element);
5359
5361
  this.updateList();
5360
5362
  }
@@ -129,7 +129,7 @@ $pager-current-item-font-weight: normal !default;
129
129
  $pager-skin: 'tailwind' !default;
130
130
  $pager-container-border-radius: 4px !default;
131
131
  $pager-bigger-tripledot-font-size: 14px !default;
132
- $pager-focus-bg-color: $white !default;
132
+ $pager-focus-bg-color: $transparent !default;
133
133
  $pager-focus-tripledot-padding: 4.5px 8.7px 7px !default;
134
134
  $pager-focus-tripledot-line-height: 18px !default;
135
135
  $pager-focus-active-box-shadow: none !default;
@@ -627,7 +627,7 @@
627
627
  .e-pager .e-mprev.e-focused,
628
628
  .e-pager .e-mnext.e-focused,
629
629
  .e-pager .e-mlast.e-focused {
630
- background-color: #fff;
630
+ background-color: transparent;
631
631
  }
632
632
  .e-pager .e-currentitem.e-numericitem.e-focused {
633
633
  background: #6b7280;
@@ -627,7 +627,7 @@
627
627
  .e-pager .e-mprev.e-focused,
628
628
  .e-pager .e-mnext.e-focused,
629
629
  .e-pager .e-mlast.e-focused {
630
- background-color: #fff;
630
+ background-color: transparent;
631
631
  }
632
632
  .e-pager .e-currentitem.e-numericitem.e-focused {
633
633
  background: #e5e7eb;
@@ -627,7 +627,7 @@
627
627
  .e-pager .e-mprev.e-focused,
628
628
  .e-pager .e-mnext.e-focused,
629
629
  .e-pager .e-mlast.e-focused {
630
- background-color: #fff;
630
+ background-color: transparent;
631
631
  }
632
632
  .e-pager .e-currentitem.e-numericitem.e-focused {
633
633
  background: #6b7280;
@@ -627,7 +627,7 @@
627
627
  .e-pager .e-mprev.e-focused,
628
628
  .e-pager .e-mnext.e-focused,
629
629
  .e-pager .e-mlast.e-focused {
630
- background-color: #fff;
630
+ background-color: transparent;
631
631
  }
632
632
  .e-pager .e-currentitem.e-numericitem.e-focused {
633
633
  background: #6b7280;
@@ -627,7 +627,7 @@
627
627
  .e-pager .e-mprev.e-focused,
628
628
  .e-pager .e-mnext.e-focused,
629
629
  .e-pager .e-mlast.e-focused {
630
- background-color: #fff;
630
+ background-color: transparent;
631
631
  }
632
632
  .e-pager .e-currentitem.e-numericitem.e-focused {
633
633
  background: #e5e7eb;
@@ -627,7 +627,7 @@
627
627
  .e-pager .e-mprev.e-focused,
628
628
  .e-pager .e-mnext.e-focused,
629
629
  .e-pager .e-mlast.e-focused {
630
- background-color: #fff;
630
+ background-color: transparent;
631
631
  }
632
632
  .e-pager .e-currentitem.e-numericitem.e-focused {
633
633
  background: #e5e7eb;