@syncfusion/ej2-filemanager 28.1.36 → 28.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.
@@ -1,3 +1,12 @@
1
+ /*!
2
+ * filename: index.d.ts
3
+ * version : 28.1.39
4
+ * Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
5
+ * Use of this code is subject to the terms of our license.
6
+ * A copy of the current license can be obtained at any time by e-mailing
7
+ * licensing@syncfusion.com. Any infringement will be prosecuted under
8
+ * applicable laws.
9
+ */
1
10
  import * as _filemanager from '@syncfusion/ej2-filemanager';
2
11
 
3
12
  export declare namespace ej {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "_from": "@syncfusion/ej2-filemanager@*",
3
3
  "_id": "@syncfusion/ej2-filemanager@28.1.33",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-YC0/Yxh34dCNbHhc8GlueONPkYBzkK//zTCOIplztS/ThVIs8lbp+5G5jCTdDG6VdCHiexPwUTV5uneKFWDNDQ==",
5
+ "_integrity": "sha512-Cc9VMJHKuyACNrPOUjKhwcbBKYyBeqd1/4StmBIGI0QTsxk3n8DvguI2LUIV80FNQrrBfDlMhz+YDRT1mUyLQA==",
6
6
  "_location": "/@syncfusion/ej2-filemanager",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -18,13 +18,14 @@
18
18
  },
19
19
  "_requiredBy": [
20
20
  "/",
21
+ "/@syncfusion/ej2",
21
22
  "/@syncfusion/ej2-angular-filemanager",
22
23
  "/@syncfusion/ej2-react-filemanager",
23
24
  "/@syncfusion/ej2-richtexteditor",
24
25
  "/@syncfusion/ej2-vue-filemanager"
25
26
  ],
26
27
  "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-28.1.33.tgz",
27
- "_shasum": "2067fc573960580b9fa858834b89558ff39edf13",
28
+ "_shasum": "ea905122d6fe360ca88de8ca0d28faf8d9860324",
28
29
  "_spec": "@syncfusion/ej2-filemanager@*",
29
30
  "_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included",
30
31
  "author": {
@@ -36,15 +37,15 @@
36
37
  "bundleDependencies": false,
37
38
  "dependencies": {
38
39
  "@syncfusion/ej2-base": "~28.1.33",
39
- "@syncfusion/ej2-buttons": "~28.1.36",
40
+ "@syncfusion/ej2-buttons": "~28.1.39",
40
41
  "@syncfusion/ej2-data": "~28.1.33",
41
- "@syncfusion/ej2-grids": "~28.1.36",
42
- "@syncfusion/ej2-inputs": "~28.1.33",
42
+ "@syncfusion/ej2-grids": "~28.1.38",
43
+ "@syncfusion/ej2-inputs": "~28.1.37",
43
44
  "@syncfusion/ej2-layouts": "~28.1.33",
44
- "@syncfusion/ej2-lists": "~28.1.33",
45
- "@syncfusion/ej2-navigations": "~28.1.36",
46
- "@syncfusion/ej2-popups": "~28.1.33",
47
- "@syncfusion/ej2-splitbuttons": "~28.1.33"
45
+ "@syncfusion/ej2-lists": "~28.1.37",
46
+ "@syncfusion/ej2-navigations": "~28.1.39",
47
+ "@syncfusion/ej2-popups": "~28.1.39",
48
+ "@syncfusion/ej2-splitbuttons": "~28.1.37"
48
49
  },
49
50
  "deprecated": false,
50
51
  "description": "Essential JS 2 FileManager Component",
@@ -74,6 +75,6 @@
74
75
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
75
76
  },
76
77
  "typings": "index.d.ts",
77
- "version": "28.1.36",
78
+ "version": "28.1.39",
78
79
  "sideEffects": false
79
80
  }
@@ -195,7 +195,7 @@ var NavigationPane = /** @class */ (function () {
195
195
  if (!this.renameParent) {
196
196
  this.parent.activeModule = 'navigationpane';
197
197
  var nodeData = this.getTreeData(getValue('id', args.nodeData));
198
- if (args.node.getAttribute('data-uid') !== this.parent.pathId[this.parent.pathId.length - 1] && !this.isRightClick && !this.isNodeClickCalled || this.isSameNodeClicked) {
198
+ if (args.node.getAttribute('data-uid') !== this.parent.pathId[this.parent.pathId.length - 1] && !this.isRightClick && !this.isNodeClickCalled || this.isSameNodeClicked || this.isPathDragged) {
199
199
  this.isNodeClickCalled = false;
200
200
  if (!this.isSameNodeClicked) {
201
201
  this.isSameNodeClicked = true;
@@ -211,6 +211,7 @@ var NavigationPane = /** @class */ (function () {
211
211
  this.restrictSelecting = this.isNodeClickCalled ? this.previousSelected[0] !== args.node.getAttribute('data-uid') : false;
212
212
  this.isNodeClickCalled = true;
213
213
  this.isSameNodeClicked = false;
214
+ this.isPathDragged = false;
214
215
  this.previousSelected = this.treeObj.selectedNodes;
215
216
  this.treeObj.setProperties({ selectedNodes: [args.node.getAttribute('data-uid')] });
216
217
  }