ninegrid2 6.1140.0 → 6.1142.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 -39
- package/dist/bundle.esm.js +1 -39
- package/dist/index.js +2 -0
- package/dist/nx/nxButtons.js +0 -1
- package/package.json +1 -1
- package/src/index.js +2 -0
- package/src/nx/nxButtons.js +0 -1
package/dist/bundle.cjs.js
CHANGED
|
@@ -122004,45 +122004,7 @@ class nxPanel extends nxDiv {
|
|
|
122004
122004
|
|
|
122005
122005
|
customElements.define("nx-panel", nxPanel);
|
|
122006
122006
|
|
|
122007
|
-
|
|
122008
|
-
{
|
|
122009
|
-
originContents = '';
|
|
122010
|
-
#isInitialized = false;
|
|
122011
|
-
|
|
122012
|
-
constructor () {
|
|
122013
|
-
super();
|
|
122014
|
-
this.attachShadow({ mode: 'open' });
|
|
122015
|
-
}
|
|
122016
|
-
|
|
122017
|
-
connectedCallback() {
|
|
122018
|
-
if (!this.#isInitialized) {
|
|
122019
|
-
this.#init();
|
|
122020
|
-
this.#isInitialized = true; // 3. 초기화 후 플래그를 true로 변경합니다.
|
|
122021
|
-
return true;
|
|
122022
|
-
}
|
|
122023
|
-
|
|
122024
|
-
return false;
|
|
122025
|
-
}
|
|
122026
|
-
|
|
122027
|
-
#init = () => {
|
|
122028
|
-
console.log("super.connectedCallback");
|
|
122029
|
-
|
|
122030
|
-
/**
|
|
122031
|
-
* css style 적용
|
|
122032
|
-
*/
|
|
122033
|
-
for (const attr of this.attributes) {
|
|
122034
|
-
if (attr.name.startsWith("css-")) {
|
|
122035
|
-
// "css-" 접두사를 제거하고 CSS 속성명으로 변환
|
|
122036
|
-
this.style.setProperty(attr.name.substring(4), attr.value);
|
|
122037
|
-
}
|
|
122038
|
-
}
|
|
122039
|
-
|
|
122040
|
-
this.originContents = this.innerHTML.trim();
|
|
122041
|
-
this.innerHTML = ""; // 기존 내부 HTML 제거
|
|
122042
|
-
};
|
|
122043
|
-
};
|
|
122044
|
-
|
|
122045
|
-
class nxButtons extends nxDiv$1 {
|
|
122007
|
+
class nxButtons extends nxDiv {
|
|
122046
122008
|
// 1. 초기화 상태를 저장할 플래그를 추가합니다.
|
|
122047
122009
|
//#isInitialized = false;
|
|
122048
122010
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -122000,45 +122000,7 @@ class nxPanel extends nxDiv {
|
|
|
122000
122000
|
|
|
122001
122001
|
customElements.define("nx-panel", nxPanel);
|
|
122002
122002
|
|
|
122003
|
-
|
|
122004
|
-
{
|
|
122005
|
-
originContents = '';
|
|
122006
|
-
#isInitialized = false;
|
|
122007
|
-
|
|
122008
|
-
constructor () {
|
|
122009
|
-
super();
|
|
122010
|
-
this.attachShadow({ mode: 'open' });
|
|
122011
|
-
}
|
|
122012
|
-
|
|
122013
|
-
connectedCallback() {
|
|
122014
|
-
if (!this.#isInitialized) {
|
|
122015
|
-
this.#init();
|
|
122016
|
-
this.#isInitialized = true; // 3. 초기화 후 플래그를 true로 변경합니다.
|
|
122017
|
-
return true;
|
|
122018
|
-
}
|
|
122019
|
-
|
|
122020
|
-
return false;
|
|
122021
|
-
}
|
|
122022
|
-
|
|
122023
|
-
#init = () => {
|
|
122024
|
-
console.log("super.connectedCallback");
|
|
122025
|
-
|
|
122026
|
-
/**
|
|
122027
|
-
* css style 적용
|
|
122028
|
-
*/
|
|
122029
|
-
for (const attr of this.attributes) {
|
|
122030
|
-
if (attr.name.startsWith("css-")) {
|
|
122031
|
-
// "css-" 접두사를 제거하고 CSS 속성명으로 변환
|
|
122032
|
-
this.style.setProperty(attr.name.substring(4), attr.value);
|
|
122033
|
-
}
|
|
122034
|
-
}
|
|
122035
|
-
|
|
122036
|
-
this.originContents = this.innerHTML.trim();
|
|
122037
|
-
this.innerHTML = ""; // 기존 내부 HTML 제거
|
|
122038
|
-
};
|
|
122039
|
-
};
|
|
122040
|
-
|
|
122041
|
-
class nxButtons extends nxDiv$1 {
|
|
122003
|
+
class nxButtons extends nxDiv {
|
|
122042
122004
|
// 1. 초기화 상태를 저장할 플래그를 추가합니다.
|
|
122043
122005
|
//#isInitialized = false;
|
|
122044
122006
|
|
package/dist/index.js
CHANGED
package/dist/nx/nxButtons.js
CHANGED
package/package.json
CHANGED
package/src/index.js
CHANGED