ninegrid2 6.1162.0 → 6.1163.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 +3 -1
- package/dist/bundle.esm.js +3 -1
- package/dist/nx/nxLayout2.js +3 -1
- package/package.json +1 -1
- package/src/nx/nxLayout2.js +3 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -121942,7 +121942,9 @@ class NxLayout2 extends HTMLElement {
|
|
|
121942
121942
|
this.appendChild(rowWrapper);
|
|
121943
121943
|
}
|
|
121944
121944
|
|
|
121945
|
-
|
|
121945
|
+
setTimeout(() => {
|
|
121946
|
+
this.#position();
|
|
121947
|
+
}, 500);
|
|
121946
121948
|
};
|
|
121947
121949
|
|
|
121948
121950
|
#position = () => {
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121938,7 +121938,9 @@ class NxLayout2 extends HTMLElement {
|
|
|
121938
121938
|
this.appendChild(rowWrapper);
|
|
121939
121939
|
}
|
|
121940
121940
|
|
|
121941
|
-
|
|
121941
|
+
setTimeout(() => {
|
|
121942
|
+
this.#position();
|
|
121943
|
+
}, 500);
|
|
121942
121944
|
};
|
|
121943
121945
|
|
|
121944
121946
|
#position = () => {
|
package/dist/nx/nxLayout2.js
CHANGED
package/package.json
CHANGED