@syncfusion/ej2-layouts 19.4.43 → 19.4.47

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 : 19.4.43
3
+ * version : 19.4.47
4
4
  * Copyright Syncfusion Inc. 2001 - 2020. 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-layouts@*",
3
- "_id": "@syncfusion/ej2-layouts@19.4.38",
3
+ "_id": "@syncfusion/ej2-layouts@19.4.43",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-8+kJiuIqBU/0ZllHsLHyTpBV+Hq12IiO8de+cU9iXhfqOWuMUdUF7ZB8LRodSn7gPUZYz2+nQ297BBTKr2JnCQ==",
5
+ "_integrity": "sha512-BdHEKSCZ+ZTWDSXjSH3zNKFvItohCwZMzkUsIGaQd+8JuQ1PbOuNr8BuXpBmAl78ncpm/f30y0Smd9EFxlXt0w==",
6
6
  "_location": "/@syncfusion/ej2-layouts",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -27,8 +27,8 @@
27
27
  "/@syncfusion/ej2-react-layouts",
28
28
  "/@syncfusion/ej2-vue-layouts"
29
29
  ],
30
- "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-layouts/-/ej2-layouts-19.4.38.tgz",
31
- "_shasum": "5ff4a9505771ce3e18e84035b49d6dc14d5dc737",
30
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-layouts/-/ej2-layouts-19.4.43.tgz",
31
+ "_shasum": "011b66ef3c020941ea19a18a765bff06489744c3",
32
32
  "_spec": "@syncfusion/ej2-layouts@*",
33
33
  "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
34
34
  "author": {
@@ -76,6 +76,6 @@
76
76
  "url": "https://github.com/syncfusion/ej2-javascript-ui-controls/tree/master/controls/layouts"
77
77
  },
78
78
  "typings": "index.d.ts",
79
- "version": "19.4.43",
79
+ "version": "19.4.47",
80
80
  "sideEffects": false
81
81
  }
@@ -872,8 +872,9 @@ var DashboardLayout = /** @class */ (function (_super) {
872
872
  else {
873
873
  if (this.element.classList.contains(responsive)) {
874
874
  removeClass([this.element], [responsive]);
875
- for (var i = 0; i < this.element.querySelectorAll('.e-panel').length; i++) {
876
- var ele = this.element.querySelectorAll('.e-panel')[i];
875
+ var internalPanels = this.element.querySelectorAll(((this.element.id) ? '#' + this.element.id + ' > ' : '') + '.e-panel');
876
+ for (var i = 0; i < internalPanels.length; i++) {
877
+ var ele = internalPanels[i];
877
878
  var cellInstance = this.getCellInstance(ele.id);
878
879
  var row = parseInt(ele.getAttribute('data-row'), 10);
879
880
  var col = parseInt(ele.getAttribute('data-col'), 10);