ninegrid2 6.1006.0 → 6.1007.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 +1 -0
- package/dist/bundle.esm.js +1 -0
- package/dist/nx/nxLayout.js +1 -0
- package/package.json +1 -1
- package/src/nx/nxLayout.js +1 -0
package/dist/bundle.cjs.js
CHANGED
|
@@ -121989,6 +121989,7 @@ class NxLayout extends HTMLElement {
|
|
|
121989
121989
|
if (row < numRows - 1) {
|
|
121990
121990
|
const splitter = document.createElement('nx-splitter');
|
|
121991
121991
|
//splitter.setAttribute('class', 'v');
|
|
121992
|
+
splitter.classList.remove('h');
|
|
121992
121993
|
splitter.classList.add('v');
|
|
121993
121994
|
this.appendChild(splitter);
|
|
121994
121995
|
}
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121985,6 +121985,7 @@ class NxLayout extends HTMLElement {
|
|
|
121985
121985
|
if (row < numRows - 1) {
|
|
121986
121986
|
const splitter = document.createElement('nx-splitter');
|
|
121987
121987
|
//splitter.setAttribute('class', 'v');
|
|
121988
|
+
splitter.classList.remove('h');
|
|
121988
121989
|
splitter.classList.add('v');
|
|
121989
121990
|
this.appendChild(splitter);
|
|
121990
121991
|
}
|
package/dist/nx/nxLayout.js
CHANGED
|
@@ -94,6 +94,7 @@ class NxLayout extends HTMLElement {
|
|
|
94
94
|
if (row < numRows - 1) {
|
|
95
95
|
const splitter = document.createElement('nx-splitter');
|
|
96
96
|
//splitter.setAttribute('class', 'v');
|
|
97
|
+
splitter.classList.remove('h');
|
|
97
98
|
splitter.classList.add('v');
|
|
98
99
|
this.appendChild(splitter);
|
|
99
100
|
}
|
package/package.json
CHANGED
package/src/nx/nxLayout.js
CHANGED
|
@@ -94,6 +94,7 @@ class NxLayout extends HTMLElement {
|
|
|
94
94
|
if (row < numRows - 1) {
|
|
95
95
|
const splitter = document.createElement('nx-splitter');
|
|
96
96
|
//splitter.setAttribute('class', 'v');
|
|
97
|
+
splitter.classList.remove('h');
|
|
97
98
|
splitter.classList.add('v');
|
|
98
99
|
this.appendChild(splitter);
|
|
99
100
|
}
|