@syncfusion/ej2-filemanager 30.1.38 → 30.2.4

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 : 30.1.38
3
+ * version : 30.2.4
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncfusion/ej2-filemanager",
3
- "version": "30.1.38",
3
+ "version": "30.2.4",
4
4
  "description": "Essential JS 2 FileManager Component",
5
5
  "author": "Syncfusion Inc.",
6
6
  "license": "SEE LICENSE IN license",
@@ -8,16 +8,16 @@
8
8
  "module": "./index.js",
9
9
  "es2015": "./dist/es6/ej2-filemanager.es5.js",
10
10
  "dependencies": {
11
- "@syncfusion/ej2-base": "~30.1.38",
12
- "@syncfusion/ej2-buttons": "~30.1.37",
13
- "@syncfusion/ej2-data": "~30.1.38",
14
- "@syncfusion/ej2-grids": "~30.1.38",
15
- "@syncfusion/ej2-inputs": "~30.1.38",
16
- "@syncfusion/ej2-layouts": "~30.1.37",
17
- "@syncfusion/ej2-lists": "~30.1.37",
18
- "@syncfusion/ej2-navigations": "~30.1.37",
19
- "@syncfusion/ej2-popups": "~30.1.37",
20
- "@syncfusion/ej2-splitbuttons": "~30.1.37"
11
+ "@syncfusion/ej2-base": "~30.2.4",
12
+ "@syncfusion/ej2-buttons": "~30.2.4",
13
+ "@syncfusion/ej2-data": "~30.2.4",
14
+ "@syncfusion/ej2-grids": "~30.2.4",
15
+ "@syncfusion/ej2-inputs": "~30.2.4",
16
+ "@syncfusion/ej2-layouts": "~30.2.4",
17
+ "@syncfusion/ej2-lists": "~30.2.4",
18
+ "@syncfusion/ej2-navigations": "~30.2.4",
19
+ "@syncfusion/ej2-popups": "~30.2.4",
20
+ "@syncfusion/ej2-splitbuttons": "~30.2.4"
21
21
  },
22
22
  "devDependencies": {},
23
23
  "keywords": [
@@ -760,6 +760,9 @@ var DetailsView = /** @class */ (function () {
760
760
  }
761
761
  };
762
762
  DetailsView.prototype.removePathColumn = function (isRefresh) {
763
+ if (this.gridObj == null) {
764
+ return;
765
+ }
763
766
  var len = this.gridObj.columns.length;
764
767
  var columnData = JSON.parse(JSON.stringify(this.gridObj.columns));
765
768
  var filterPathInSettings = this.parent.detailsViewSettings.columns.some(function (col) { return col.field === 'filterPath'; });
@@ -195,6 +195,7 @@ var NavigationPane = /** @class */ (function () {
195
195
  this.parent.activeModule = 'navigationpane';
196
196
  var nodeData = this.getTreeData(getValue('id', args.nodeData));
197
197
  if (args.node.getAttribute('data-uid') !== this.parent.pathId[this.parent.pathId.length - 1] && !this.isRightClick && !this.isNodeClickCalled || this.isSameNodeClicked || this.isPathDragged) {
198
+ this.isSameNodeClicked = false;
198
199
  this.isNodeClickCalled = false;
199
200
  if (!this.isSameNodeClicked) {
200
201
  this.isSameNodeClicked = true;
@@ -216,7 +217,6 @@ var NavigationPane = /** @class */ (function () {
216
217
  }
217
218
  }
218
219
  else if (this.previousSelected[0] !== args.node.getAttribute('data-uid')) {
219
- this.isSameNodeClicked = true;
220
220
  var selecEventArgs = { action: args.action, fileDetails: nodeData[0], isInteracted: this.isNodeClickCalled };
221
221
  this.parent.trigger('fileSelect', selecEventArgs);
222
222
  }
@@ -270,7 +270,6 @@ var NavigationPane = /** @class */ (function () {
270
270
  if (previousPath !== this.parent.path) {
271
271
  if (!this.isRightClick && this.isSameNodeClicked) {
272
272
  read(this.parent, this.isPathDragged ? events.pasteEnd : events.pathChanged, this.parent.path);
273
- this.isNodeClickCalled = true;
274
273
  }
275
274
  this.parent.visitedItem = args.node;
276
275
  }