ninegrid2 6.1164.0 → 6.1166.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 -2
- package/dist/bundle.esm.js +2 -2
- package/dist/nx/nxLayout2.js +2 -2
- package/package.json +1 -1
- package/src/nx/nxLayout2.js +2 -2
package/dist/bundle.cjs.js
CHANGED
|
@@ -121944,7 +121944,7 @@ class NxLayout2 extends HTMLElement {
|
|
|
121944
121944
|
|
|
121945
121945
|
setTimeout(() => {
|
|
121946
121946
|
this.#position();
|
|
121947
|
-
},
|
|
121947
|
+
}, 300);
|
|
121948
121948
|
};
|
|
121949
121949
|
|
|
121950
121950
|
#position = () => {
|
|
@@ -121975,7 +121975,7 @@ class NxLayout2 extends HTMLElement {
|
|
|
121975
121975
|
// 7. 측정이 끝나면 복제본을 제거합니다.
|
|
121976
121976
|
document.body.removeChild(clone);
|
|
121977
121977
|
|
|
121978
|
-
return width;
|
|
121978
|
+
return width + 4;
|
|
121979
121979
|
};
|
|
121980
121980
|
|
|
121981
121981
|
const allLabels = [];
|
package/dist/bundle.esm.js
CHANGED
|
@@ -121940,7 +121940,7 @@ class NxLayout2 extends HTMLElement {
|
|
|
121940
121940
|
|
|
121941
121941
|
setTimeout(() => {
|
|
121942
121942
|
this.#position();
|
|
121943
|
-
},
|
|
121943
|
+
}, 300);
|
|
121944
121944
|
};
|
|
121945
121945
|
|
|
121946
121946
|
#position = () => {
|
|
@@ -121971,7 +121971,7 @@ class NxLayout2 extends HTMLElement {
|
|
|
121971
121971
|
// 7. 측정이 끝나면 복제본을 제거합니다.
|
|
121972
121972
|
document.body.removeChild(clone);
|
|
121973
121973
|
|
|
121974
|
-
return width;
|
|
121974
|
+
return width + 4;
|
|
121975
121975
|
};
|
|
121976
121976
|
|
|
121977
121977
|
const allLabels = [];
|
package/dist/nx/nxLayout2.js
CHANGED
|
@@ -57,7 +57,7 @@ class NxLayout2 extends HTMLElement {
|
|
|
57
57
|
|
|
58
58
|
setTimeout(() => {
|
|
59
59
|
this.#position();
|
|
60
|
-
},
|
|
60
|
+
}, 300);
|
|
61
61
|
};
|
|
62
62
|
|
|
63
63
|
#position = () => {
|
|
@@ -88,7 +88,7 @@ class NxLayout2 extends HTMLElement {
|
|
|
88
88
|
// 7. 측정이 끝나면 복제본을 제거합니다.
|
|
89
89
|
document.body.removeChild(clone);
|
|
90
90
|
|
|
91
|
-
return width;
|
|
91
|
+
return width + 4;
|
|
92
92
|
};
|
|
93
93
|
|
|
94
94
|
const allLabels = [];
|
package/package.json
CHANGED
package/src/nx/nxLayout2.js
CHANGED
|
@@ -57,7 +57,7 @@ class NxLayout2 extends HTMLElement {
|
|
|
57
57
|
|
|
58
58
|
setTimeout(() => {
|
|
59
59
|
this.#position();
|
|
60
|
-
},
|
|
60
|
+
}, 300);
|
|
61
61
|
};
|
|
62
62
|
|
|
63
63
|
#position = () => {
|
|
@@ -88,7 +88,7 @@ class NxLayout2 extends HTMLElement {
|
|
|
88
88
|
// 7. 측정이 끝나면 복제본을 제거합니다.
|
|
89
89
|
document.body.removeChild(clone);
|
|
90
90
|
|
|
91
|
-
return width;
|
|
91
|
+
return width + 4;
|
|
92
92
|
};
|
|
93
93
|
|
|
94
94
|
const allLabels = [];
|