@syncfusion/ej2-filemanager 22.1.38 → 22.2.5
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/CHANGELOG.md +10 -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 +14 -0
- package/dist/es6/ej2-filemanager.es2015.js.map +1 -1
- package/dist/es6/ej2-filemanager.es5.js +14 -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 +15 -15
- package/src/file-manager/base/file-manager.js +11 -0
- package/src/file-manager/layout/large-icons-view.js +2 -0
- package/src/file-manager/pop-up/context-menu.js +1 -0
@@ -4581,6 +4581,8 @@ var LargeIconsView = /** @__PURE__ @class */ (function () {
|
|
4581
4581
|
if (this.listObj) {
|
4582
4582
|
this.unWireEvents();
|
4583
4583
|
}
|
4584
|
+
this.startItem = null;
|
4585
|
+
this.listElements = null;
|
4584
4586
|
};
|
4585
4587
|
LargeIconsView.prototype.wireEvents = function () {
|
4586
4588
|
this.wireClickEvent(true);
|
@@ -6436,6 +6438,7 @@ var ContextMenu$2 = /** @__PURE__ @class */ (function () {
|
|
6436
6438
|
}
|
6437
6439
|
this.removeEventListener();
|
6438
6440
|
this.contextMenu.destroy();
|
6441
|
+
this.targetElement = null;
|
6439
6442
|
};
|
6440
6443
|
/* istanbul ignore next */
|
6441
6444
|
ContextMenu$$1.prototype.getItemData = function (data) {
|
@@ -7518,7 +7521,18 @@ var FileManager = /** @__PURE__ @class */ (function (_super) {
|
|
7518
7521
|
this.addCssClass(this.cssClass, null);
|
7519
7522
|
removeClass([this.element], [RTL, MOBILE, CHECK_SELECT]);
|
7520
7523
|
this.element.innerHTML = '';
|
7524
|
+
this.breadCrumbBarNavigation = null;
|
7525
|
+
this.activeElements = null;
|
7526
|
+
this.virtualizationModule = null;
|
7527
|
+
this.virtualDragElement = null;
|
7528
|
+
this.visitedItem = null;
|
7521
7529
|
_super.prototype.destroy.call(this);
|
7530
|
+
this.navigationpaneModule = null;
|
7531
|
+
this.toolbarModule = null;
|
7532
|
+
this.contextmenuModule = null;
|
7533
|
+
this.largeiconsviewModule = null;
|
7534
|
+
this.detailsviewModule = null;
|
7535
|
+
this.breadcrumbbarModule = null;
|
7522
7536
|
};
|
7523
7537
|
/**
|
7524
7538
|
* Creates a new folder in file manager.
|