@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
@@ -1302,7 +1302,7 @@ let Splitter = class Splitter extends Component {
|
|
1302
1302
|
else {
|
1303
1303
|
this.resizableModel(this.currentBarIndex, false);
|
1304
1304
|
if (!isNullOrUndefined(otherBar)) {
|
1305
|
-
this.resizableModel(otherBarIndex,
|
1305
|
+
this.resizableModel(otherBarIndex, true);
|
1306
1306
|
}
|
1307
1307
|
if (!this.paneSettings[this.prevPaneIndex].collapsible || !this.paneSettings[this.nextPaneIndex].collapsible) {
|
1308
1308
|
if (!isNullOrUndefined(otherBar)) {
|
@@ -4713,9 +4713,12 @@ let DashboardLayout = class DashboardLayout extends Component {
|
|
4713
4713
|
this.checkCollision = [];
|
4714
4714
|
}
|
4715
4715
|
this.setPanelPosition(cell, panelProp.row, panelProp.col);
|
4716
|
+
this.addPanelCalled = false;
|
4716
4717
|
this.updatePanelLayout(cell, panelProp);
|
4717
4718
|
}
|
4718
|
-
this.addPanelCalled
|
4719
|
+
if (this.addPanelCalled) {
|
4720
|
+
this.addPanelCalled = false;
|
4721
|
+
}
|
4719
4722
|
if (this.allowDragging &&
|
4720
4723
|
this.mediaQuery ? !(this.checkMediaQuery()) : false) {
|
4721
4724
|
this.enableDraggingContent([document.getElementById(panelProp.id)]);
|