@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.
- package/aceconfig.js +17 -0
- package/dist/ej2-filemanager.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js +2 -2
- package/dist/ej2-filemanager.umd.min.js.map +1 -1
- package/dist/es6/ej2-filemanager.es2015.js +3 -0
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +3 -0
- package/dist/es6/ej2-filemanager.es5.js.map +1 -1
- package/dist/global/ej2-filemanager.min.js +2 -2
- package/dist/global/ej2-filemanager.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/file-manager/layout/details-view.js +3 -0
package/dist/global/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: index.d.ts
|
3
|
-
* version : 30.
|
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.
|
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.
|
12
|
-
"@syncfusion/ej2-buttons": "~30.
|
13
|
-
"@syncfusion/ej2-data": "~30.
|
14
|
-
"@syncfusion/ej2-grids": "~30.
|
15
|
-
"@syncfusion/ej2-inputs": "~30.
|
16
|
-
"@syncfusion/ej2-layouts": "~30.
|
17
|
-
"@syncfusion/ej2-lists": "~30.
|
18
|
-
"@syncfusion/ej2-navigations": "~30.
|
19
|
-
"@syncfusion/ej2-popups": "~30.
|
20
|
-
"@syncfusion/ej2-splitbuttons": "~30.
|
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'; });
|