@syncfusion/ej2-filemanager 30.1.38 → 30.1.39
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/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 +1 -2
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +1 -2
- 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 +4 -4
- package/src/file-manager/layout/navigation-pane.js +1 -2
package/dist/global/index.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: index.d.ts
|
3
|
-
* version : 30.1.
|
3
|
+
* version : 30.1.39
|
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.
|
3
|
+
"version": "30.1.39",
|
4
4
|
"description": "Essential JS 2 FileManager Component",
|
5
5
|
"author": "Syncfusion Inc.",
|
6
6
|
"license": "SEE LICENSE IN license",
|
@@ -11,13 +11,13 @@
|
|
11
11
|
"@syncfusion/ej2-base": "~30.1.38",
|
12
12
|
"@syncfusion/ej2-buttons": "~30.1.37",
|
13
13
|
"@syncfusion/ej2-data": "~30.1.38",
|
14
|
-
"@syncfusion/ej2-grids": "~30.1.
|
14
|
+
"@syncfusion/ej2-grids": "~30.1.39",
|
15
15
|
"@syncfusion/ej2-inputs": "~30.1.38",
|
16
16
|
"@syncfusion/ej2-layouts": "~30.1.37",
|
17
17
|
"@syncfusion/ej2-lists": "~30.1.37",
|
18
|
-
"@syncfusion/ej2-navigations": "~30.1.
|
18
|
+
"@syncfusion/ej2-navigations": "~30.1.39",
|
19
19
|
"@syncfusion/ej2-popups": "~30.1.37",
|
20
|
-
"@syncfusion/ej2-splitbuttons": "~30.1.
|
20
|
+
"@syncfusion/ej2-splitbuttons": "~30.1.39"
|
21
21
|
},
|
22
22
|
"devDependencies": {},
|
23
23
|
"keywords": [
|
@@ -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
|
}
|