@syncfusion/ej2-layouts 27.1.51 → 27.1.56
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-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 +5 -2
- package/dist/es6/ej2-layouts.es2015.js.map +1 -1
- package/dist/es6/ej2-layouts.es5.js +5 -2
- 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 +4 -1
- package/src/splitter/splitter.js +1 -1
@@ -1331,7 +1331,7 @@ var Splitter = /** @__PURE__ @class */ (function (_super) {
|
|
1331
1331
|
else {
|
1332
1332
|
this.resizableModel(this.currentBarIndex, false);
|
1333
1333
|
if (!isNullOrUndefined(otherBar)) {
|
1334
|
-
this.resizableModel(otherBarIndex,
|
1334
|
+
this.resizableModel(otherBarIndex, true);
|
1335
1335
|
}
|
1336
1336
|
if (!this.paneSettings[this.prevPaneIndex].collapsible || !this.paneSettings[this.nextPaneIndex].collapsible) {
|
1337
1337
|
if (!isNullOrUndefined(otherBar)) {
|
@@ -4793,9 +4793,12 @@ var DashboardLayout = /** @__PURE__ @class */ (function (_super) {
|
|
4793
4793
|
this.checkCollision = [];
|
4794
4794
|
}
|
4795
4795
|
this.setPanelPosition(cell, panelProp.row, panelProp.col);
|
4796
|
+
this.addPanelCalled = false;
|
4796
4797
|
this.updatePanelLayout(cell, panelProp);
|
4797
4798
|
}
|
4798
|
-
this.addPanelCalled
|
4799
|
+
if (this.addPanelCalled) {
|
4800
|
+
this.addPanelCalled = false;
|
4801
|
+
}
|
4799
4802
|
if (this.allowDragging &&
|
4800
4803
|
this.mediaQuery ? !(this.checkMediaQuery()) : false) {
|
4801
4804
|
this.enableDraggingContent([document.getElementById(panelProp.id)]);
|