ninegrid2 6.1125.0 → 6.1126.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/nxButtons.js +3 -1
- package/package.json +1 -1
- package/src/nx/nxButtons.js +3 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -122039,13 +122039,15 @@ class nxButtons extends nxDiv {
|
|
|
122039
122039
|
}
|
|
122040
122040
|
|
|
122041
122041
|
connectedCallback() {
|
|
122042
|
+
super.connectedCallback();
|
|
122043
|
+
|
|
122042
122044
|
console.log("==========", super.isInitialized);
|
|
122043
122045
|
// 2. 초기화되지 않았을 때만 #init 함수를 호출합니다.
|
|
122044
122046
|
//if (!this.#isInitialized) {
|
|
122045
122047
|
//this.#init();
|
|
122046
122048
|
//this.#isInitialized = true; // 3. 초기화 후 플래그를 true로 변경합니다.
|
|
122047
122049
|
|
|
122048
|
-
|
|
122050
|
+
|
|
122049
122051
|
//}
|
|
122050
122052
|
}
|
|
122051
122053
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -122035,13 +122035,15 @@ class nxButtons extends nxDiv {
|
|
|
122035
122035
|
}
|
|
122036
122036
|
|
|
122037
122037
|
connectedCallback() {
|
|
122038
|
+
super.connectedCallback();
|
|
122039
|
+
|
|
122038
122040
|
console.log("==========", super.isInitialized);
|
|
122039
122041
|
// 2. 초기화되지 않았을 때만 #init 함수를 호출합니다.
|
|
122040
122042
|
//if (!this.#isInitialized) {
|
|
122041
122043
|
//this.#init();
|
|
122042
122044
|
//this.#isInitialized = true; // 3. 초기화 후 플래그를 true로 변경합니다.
|
|
122043
122045
|
|
|
122044
|
-
|
|
122046
|
+
|
|
122045
122047
|
//}
|
|
122046
122048
|
}
|
|
122047
122049
|
|
package/dist/nx/nxButtons.js
CHANGED
|
@@ -10,13 +10,15 @@ class nxButtons extends nxDiv {
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
connectedCallback() {
|
|
13
|
+
super.connectedCallback();
|
|
14
|
+
|
|
13
15
|
console.log("==========", super.isInitialized);
|
|
14
16
|
// 2. 초기화되지 않았을 때만 #init 함수를 호출합니다.
|
|
15
17
|
//if (!this.#isInitialized) {
|
|
16
18
|
//this.#init();
|
|
17
19
|
//this.#isInitialized = true; // 3. 초기화 후 플래그를 true로 변경합니다.
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
|
|
20
22
|
//}
|
|
21
23
|
}
|
|
22
24
|
|
package/package.json
CHANGED
package/src/nx/nxButtons.js
CHANGED
|
@@ -10,13 +10,15 @@ class nxButtons extends nxDiv {
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
connectedCallback() {
|
|
13
|
+
super.connectedCallback();
|
|
14
|
+
|
|
13
15
|
console.log("==========", super.isInitialized);
|
|
14
16
|
// 2. 초기화되지 않았을 때만 #init 함수를 호출합니다.
|
|
15
17
|
//if (!this.#isInitialized) {
|
|
16
18
|
//this.#init();
|
|
17
19
|
//this.#isInitialized = true; // 3. 초기화 후 플래그를 true로 변경합니다.
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
|
|
20
22
|
//}
|
|
21
23
|
}
|
|
22
24
|
|