@syncfusion/ej2-filemanager 29.1.37 → 29.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 : 29.1.37
3
+ * version : 29.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,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-filemanager@*",
3
- "_id": "@syncfusion/ej2-filemanager@29.1.33",
3
+ "_id": "@syncfusion/ej2-filemanager@29.1.39",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-gC86B58GmVTA9Npp7eJveLGgxLrV1i4HiqAbyjuDMcZHEG6Aw4UAoTdO99x45s0nh80TRqpzWc7IeNmKUgFcjA==",
5
+ "_integrity": "sha512-p5x5HwziUe5OMG4A51sngKiLzi4/+zcMdE4AcHQj4FXX7CgdgtZf2GVPbe9m5aGhguxlFzvr7C21WDoE56EOfg==",
6
6
  "_location": "/@syncfusion/ej2-filemanager",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -24,8 +24,8 @@
24
24
  "/@syncfusion/ej2-richtexteditor",
25
25
  "/@syncfusion/ej2-vue-filemanager"
26
26
  ],
27
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-29.1.33.tgz",
28
- "_shasum": "965fb58405171cd3b4f684bf5f9bcedabc2ea042",
27
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-filemanager/-/ej2-filemanager-29.1.39.tgz",
28
+ "_shasum": "d424ce063416976707acd7533b3396ea8a536006",
29
29
  "_spec": "@syncfusion/ej2-filemanager@*",
30
30
  "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
31
31
  "author": {
@@ -36,16 +36,16 @@
36
36
  },
37
37
  "bundleDependencies": false,
38
38
  "dependencies": {
39
- "@syncfusion/ej2-base": "~29.1.36",
40
- "@syncfusion/ej2-buttons": "~29.1.34",
41
- "@syncfusion/ej2-data": "~29.1.33",
42
- "@syncfusion/ej2-grids": "~29.1.37",
43
- "@syncfusion/ej2-inputs": "~29.1.34",
44
- "@syncfusion/ej2-layouts": "~29.1.37",
45
- "@syncfusion/ej2-lists": "~29.1.34",
46
- "@syncfusion/ej2-navigations": "~29.1.37",
47
- "@syncfusion/ej2-popups": "~29.1.37",
48
- "@syncfusion/ej2-splitbuttons": "~29.1.33"
39
+ "@syncfusion/ej2-base": "~29.2.4",
40
+ "@syncfusion/ej2-buttons": "~29.2.4",
41
+ "@syncfusion/ej2-data": "~29.2.4",
42
+ "@syncfusion/ej2-grids": "~29.2.4",
43
+ "@syncfusion/ej2-inputs": "~29.2.4",
44
+ "@syncfusion/ej2-layouts": "~29.2.4",
45
+ "@syncfusion/ej2-lists": "~29.2.4",
46
+ "@syncfusion/ej2-navigations": "~29.2.4",
47
+ "@syncfusion/ej2-popups": "~29.2.4",
48
+ "@syncfusion/ej2-splitbuttons": "~29.2.4"
49
49
  },
50
50
  "deprecated": false,
51
51
  "description": "Essential JS 2 FileManager Component",
@@ -75,6 +75,6 @@
75
75
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
76
76
  },
77
77
  "typings": "index.d.ts",
78
- "version": "29.1.37",
78
+ "version": "29.2.4",
79
79
  "sideEffects": false
80
80
  }
@@ -712,21 +712,24 @@ var FileManager = /** @class */ (function (_super) {
712
712
  if (isBind) {
713
713
  this.viewElem = this.view === 'LargeIcons' ? this.largeiconsviewModule.element : this.element.querySelector('.e-gridcontent');
714
714
  }
715
- if (!this.viewElem) {
716
- return;
717
- }
718
715
  if (isBind) {
719
716
  if (this.allowMultiSelection) {
720
- EventHandler.add(this.viewElem, 'mousedown', this.onDragStart, this);
721
717
  this.on(events.layoutChange, this.onLayoutChange, this);
722
718
  this.on(events.selectionChanged, this.onLayoutChange, this);
723
719
  }
724
720
  }
725
721
  else {
726
- EventHandler.remove(this.viewElem, 'mousedown', this.onDragStart);
727
722
  this.off(events.layoutChange, this.onLayoutChange);
728
723
  this.off(events.selectionChanged, this.onLayoutChange);
729
724
  }
725
+ if (this.viewElem) {
726
+ if (isBind && this.allowMultiSelection) {
727
+ EventHandler.add(this.viewElem, 'mousedown', this.onDragStart, this);
728
+ }
729
+ else {
730
+ EventHandler.remove(this.viewElem, 'mousedown', this.onDragStart);
731
+ }
732
+ }
730
733
  };
731
734
  FileManager.prototype.wireEvents = function () {
732
735
  if (this.enableRangeSelection) {
@@ -826,7 +829,9 @@ var FileManager = /** @class */ (function (_super) {
826
829
  addClass(selectAll('.e-rowcell', item), ['e-active']);
827
830
  this.dragSelectedItems.push(item.querySelector('.e-drag-text').textContent);
828
831
  }
829
- item.querySelector('.e-frame').classList.add('e-check');
832
+ if (this.showItemCheckBoxes) {
833
+ item.querySelector('.e-frame').classList.add('e-check');
834
+ }
830
835
  }
831
836
  }
832
837
  };