@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
@@ -10163,6 +10163,7 @@ class NavigationPane {
|
|
10163
10163
|
this.parent.activeModule = 'navigationpane';
|
10164
10164
|
const nodeData = this.getTreeData(getValue('id', args.nodeData));
|
10165
10165
|
if (args.node.getAttribute('data-uid') !== this.parent.pathId[this.parent.pathId.length - 1] && !this.isRightClick && !this.isNodeClickCalled || this.isSameNodeClicked || this.isPathDragged) {
|
10166
|
+
this.isSameNodeClicked = false;
|
10166
10167
|
this.isNodeClickCalled = false;
|
10167
10168
|
if (!this.isSameNodeClicked) {
|
10168
10169
|
this.isSameNodeClicked = true;
|
@@ -10184,7 +10185,6 @@ class NavigationPane {
|
|
10184
10185
|
}
|
10185
10186
|
}
|
10186
10187
|
else if (this.previousSelected[0] !== args.node.getAttribute('data-uid')) {
|
10187
|
-
this.isSameNodeClicked = true;
|
10188
10188
|
const selecEventArgs = { action: args.action, fileDetails: nodeData[0], isInteracted: this.isNodeClickCalled };
|
10189
10189
|
this.parent.trigger('fileSelect', selecEventArgs);
|
10190
10190
|
}
|
@@ -10238,7 +10238,6 @@ class NavigationPane {
|
|
10238
10238
|
if (previousPath !== this.parent.path) {
|
10239
10239
|
if (!this.isRightClick && this.isSameNodeClicked) {
|
10240
10240
|
read(this.parent, this.isPathDragged ? pasteEnd : pathChanged, this.parent.path);
|
10241
|
-
this.isNodeClickCalled = true;
|
10242
10241
|
}
|
10243
10242
|
this.parent.visitedItem = args.node;
|
10244
10243
|
}
|