@syncfusion/ej2-layouts 22.1.37 → 22.2.9
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 +8 -0
- package/dist/ej2-layouts.min.js +2 -2
- package/dist/ej2-layouts.umd.min.js +2 -2
- package/dist/ej2-layouts.umd.min.js.map +1 -1
- package/dist/es6/ej2-layouts.es2015.js +26 -0
- package/dist/es6/ej2-layouts.es2015.js.map +1 -1
- package/dist/es6/ej2-layouts.es5.js +26 -0
- package/dist/es6/ej2-layouts.es5.js.map +1 -1
- package/dist/global/ej2-layouts.min.js +2 -2
- package/dist/global/ej2-layouts.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +6 -6
- package/src/dashboard-layout/dashboard-layout.js +21 -0
- package/src/splitter/splitter.js +5 -0
@@ -2189,6 +2189,11 @@ var Splitter = /** @__PURE__ @class */ (function (_super) {
|
|
2189
2189
|
if (this.isReact) {
|
2190
2190
|
this.clearTemplate();
|
2191
2191
|
}
|
2192
|
+
this.allBars = [];
|
2193
|
+
this.allPanes = [];
|
2194
|
+
this.previousPane = null;
|
2195
|
+
this.nextPane = null;
|
2196
|
+
this.currentSeparator = null;
|
2192
2197
|
}
|
2193
2198
|
};
|
2194
2199
|
Splitter.prototype.restoreElem = function () {
|
@@ -5041,6 +5046,27 @@ var DashboardLayout = /** @__PURE__ @class */ (function (_super) {
|
|
5041
5046
|
this.dragCollection[i].destroy();
|
5042
5047
|
}
|
5043
5048
|
this.removeAllPanel();
|
5049
|
+
this.panelCollection = null;
|
5050
|
+
this.checkCollision = null;
|
5051
|
+
this.mainElement = null;
|
5052
|
+
this.dragobj = null;
|
5053
|
+
this.dragStartArgs = null;
|
5054
|
+
this.dragStopEventArgs = null;
|
5055
|
+
this.draggedEventArgs = null;
|
5056
|
+
this.sortedArray = null;
|
5057
|
+
this.cloneArray = null;
|
5058
|
+
this.overlapElement = null;
|
5059
|
+
this.overlapElementClone = null;
|
5060
|
+
this.dragCollection = [];
|
5061
|
+
this.allItems = null;
|
5062
|
+
this.moveTarget = null;
|
5063
|
+
this.upTarget = null;
|
5064
|
+
this.downTarget = null;
|
5065
|
+
this.checkingElement = null;
|
5066
|
+
this.panelHeaderElement = null;
|
5067
|
+
this.panelContent = null;
|
5068
|
+
this.panelBody = null;
|
5069
|
+
this.table = null;
|
5044
5070
|
_super.prototype.destroy.call(this);
|
5045
5071
|
this.clearTemplate();
|
5046
5072
|
this.renderReactTemplates();
|