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.
@@ -122004,45 +122004,7 @@ class nxPanel extends nxDiv {
122004
122004
 
122005
122005
  customElements.define("nx-panel", nxPanel);
122006
122006
 
122007
- let nxDiv$1 = class nxDiv extends HTMLElement
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
 
@@ -122000,45 +122000,7 @@ class nxPanel extends nxDiv {
122000
122000
 
122001
122001
  customElements.define("nx-panel", nxPanel);
122002
122002
 
122003
- let nxDiv$1 = class nxDiv extends HTMLElement
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
@@ -99,6 +99,8 @@ import "./etc/nxTopMenu.js";
99
99
  import "./utils/ngFiltering.js";
100
100
  import "./utils/ngPrototype.js";
101
101
 
102
+ import {nxDiv} from "./nx/_nxDiv.js";
103
+
102
104
  //import "./nx/nxDiv.js";
103
105
  import "./nx/nxCollapse.js";
104
106
  import "./nx/nxTab.js";
@@ -1,5 +1,4 @@
1
1
  import ninegrid from "../index.js";
2
- import {nxDiv} from "./_nxDiv.js";
3
2
 
4
3
  class nxButtons extends nxDiv {
5
4
  // 1. 초기화 상태를 저장할 플래그를 추가합니다.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ninegrid2",
3
3
  "type": "module",
4
- "version": "6.1140.0",
4
+ "version": "6.1142.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
package/src/index.js CHANGED
@@ -99,6 +99,8 @@ import "./etc/nxTopMenu.js";
99
99
  import "./utils/ngFiltering.js";
100
100
  import "./utils/ngPrototype.js";
101
101
 
102
+ import {nxDiv} from "./nx/_nxDiv.js";
103
+
102
104
  //import "./nx/nxDiv.js";
103
105
  import "./nx/nxCollapse.js";
104
106
  import "./nx/nxTab.js";
@@ -1,5 +1,4 @@
1
1
  import ninegrid from "../index.js";
2
- import {nxDiv} from "./_nxDiv.js";
3
2
 
4
3
  class nxButtons extends nxDiv {
5
4
  // 1. 초기화 상태를 저장할 플래그를 추가합니다.