ninegrid2 6.960.0 → 6.961.0
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/bundle.cjs.js +2 -0
- package/dist/bundle.esm.js +2 -0
- package/dist/nx/nxLayout.js +2 -0
- package/package.json +1 -1
- package/src/nx/nxLayout.js +2 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -121913,6 +121913,8 @@ class NxLayout extends HTMLElement {
|
|
|
121913
121913
|
const numRows = parseInt(this.getAttribute('rows'), 1);
|
|
121914
121914
|
const children = Array.from(this.children);
|
|
121915
121915
|
|
|
121916
|
+
if (children.length <= 0) return;
|
|
121917
|
+
|
|
121916
121918
|
console.log(children);
|
|
121917
121919
|
|
|
121918
121920
|
this.innerHTML = '';
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121909,6 +121909,8 @@ class NxLayout extends HTMLElement {
|
|
|
121909
121909
|
const numRows = parseInt(this.getAttribute('rows'), 1);
|
|
121910
121910
|
const children = Array.from(this.children);
|
|
121911
121911
|
|
|
121912
|
+
if (children.length <= 0) return;
|
|
121913
|
+
|
|
121912
121914
|
console.log(children);
|
|
121913
121915
|
|
|
121914
121916
|
this.innerHTML = '';
|
package/dist/nx/nxLayout.js
CHANGED
package/package.json
CHANGED
package/src/nx/nxLayout.js
CHANGED