@syncfusion/ej2-filemanager 30.1.39 → 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.39
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.39",
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.39",
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.39",
19
- "@syncfusion/ej2-popups": "~30.1.37",
20
- "@syncfusion/ej2-splitbuttons": "~30.1.39"
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'; });