ide-assi 0.620.0 → 0.623.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.
@@ -203653,28 +203653,7 @@ class IdeDiffPopup extends HTMLElement
203653
203653
 
203654
203654
  setTimeout(() => {
203655
203655
 
203656
- console.log("==================================");
203657
- console.log(tab.shadowRoot.querySelectorAll(".tab-button"));
203658
- tab.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
203659
- console.log(el, index);
203660
- switch (index) {
203661
- case 0:
203662
- el.innerHTML = index;
203663
- break;
203664
- case 1:
203665
- el.innerHTML = index;
203666
- break;
203667
- case 2:
203668
- el.innerHTML = index;
203669
- break;
203670
- case 3:
203671
- el.innerHTML = index;
203672
- break;
203673
- case 4:
203674
- el.innerHTML = index;
203675
- break;
203676
- }
203677
- });
203656
+
203678
203657
 
203679
203658
  for (const item of changedSource) {
203680
203659
  const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
@@ -203683,7 +203662,6 @@ class IdeDiffPopup extends HTMLElement
203683
203662
 
203684
203663
  //const el = this.shadowRoot.querySelector(".tab-button data-target=''")
203685
203664
 
203686
-
203687
203665
  diff.initialize(
203688
203666
  diffData.asis,
203689
203667
  diffData.tobe,
@@ -203702,6 +203680,29 @@ class IdeDiffPopup extends HTMLElement
203702
203680
  });
203703
203681
  //this.shadowRoot.querySelector('nx-tab').tabpage.hide("mybatis");
203704
203682
 
203683
+ console.log(changedSource);
203684
+
203685
+ tab.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
203686
+ console.log(el, index);
203687
+ switch (index) {
203688
+ case 0:
203689
+ el.innerHTML = index;
203690
+ break;
203691
+ case 1:
203692
+ el.innerHTML = index;
203693
+ break;
203694
+ case 2:
203695
+ el.innerHTML = index;
203696
+ break;
203697
+ case 3:
203698
+ el.innerHTML = index;
203699
+ break;
203700
+ case 4:
203701
+ el.innerHTML = index;
203702
+ break;
203703
+ }
203704
+ });
203705
+
203705
203706
  tab.initialize();
203706
203707
 
203707
203708
  this.shadowRoot.querySelector('nx-dialog')?.showModal();
@@ -203649,28 +203649,7 @@ class IdeDiffPopup extends HTMLElement
203649
203649
 
203650
203650
  setTimeout(() => {
203651
203651
 
203652
- console.log("==================================");
203653
- console.log(tab.shadowRoot.querySelectorAll(".tab-button"));
203654
- tab.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
203655
- console.log(el, index);
203656
- switch (index) {
203657
- case 0:
203658
- el.innerHTML = index;
203659
- break;
203660
- case 1:
203661
- el.innerHTML = index;
203662
- break;
203663
- case 2:
203664
- el.innerHTML = index;
203665
- break;
203666
- case 3:
203667
- el.innerHTML = index;
203668
- break;
203669
- case 4:
203670
- el.innerHTML = index;
203671
- break;
203672
- }
203673
- });
203652
+
203674
203653
 
203675
203654
  for (const item of changedSource) {
203676
203655
  const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
@@ -203679,7 +203658,6 @@ class IdeDiffPopup extends HTMLElement
203679
203658
 
203680
203659
  //const el = this.shadowRoot.querySelector(".tab-button data-target=''")
203681
203660
 
203682
-
203683
203661
  diff.initialize(
203684
203662
  diffData.asis,
203685
203663
  diffData.tobe,
@@ -203698,6 +203676,29 @@ class IdeDiffPopup extends HTMLElement
203698
203676
  });
203699
203677
  //this.shadowRoot.querySelector('nx-tab').tabpage.hide("mybatis");
203700
203678
 
203679
+ console.log(changedSource);
203680
+
203681
+ tab.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
203682
+ console.log(el, index);
203683
+ switch (index) {
203684
+ case 0:
203685
+ el.innerHTML = index;
203686
+ break;
203687
+ case 1:
203688
+ el.innerHTML = index;
203689
+ break;
203690
+ case 2:
203691
+ el.innerHTML = index;
203692
+ break;
203693
+ case 3:
203694
+ el.innerHTML = index;
203695
+ break;
203696
+ case 4:
203697
+ el.innerHTML = index;
203698
+ break;
203699
+ }
203700
+ });
203701
+
203701
203702
  tab.initialize();
203702
203703
 
203703
203704
  this.shadowRoot.querySelector('nx-dialog')?.showModal();
@@ -97,28 +97,7 @@ class IdeDiffPopup extends HTMLElement
97
97
 
98
98
  setTimeout(() => {
99
99
 
100
- console.log("==================================");
101
- console.log(tab.shadowRoot.querySelectorAll(".tab-button"));
102
- tab.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
103
- console.log(el, index);
104
- switch (index) {
105
- case 0:
106
- el.innerHTML = index;
107
- break;
108
- case 1:
109
- el.innerHTML = index;
110
- break;
111
- case 2:
112
- el.innerHTML = index;
113
- break;
114
- case 3:
115
- el.innerHTML = index;
116
- break;
117
- case 4:
118
- el.innerHTML = index;
119
- break;
120
- }
121
- });
100
+
122
101
 
123
102
  for (const item of changedSource) {
124
103
  const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
@@ -127,7 +106,6 @@ class IdeDiffPopup extends HTMLElement
127
106
 
128
107
  //const el = this.shadowRoot.querySelector(".tab-button data-target=''")
129
108
 
130
-
131
109
  diff.initialize(
132
110
  diffData.asis,
133
111
  diffData.tobe,
@@ -146,6 +124,29 @@ class IdeDiffPopup extends HTMLElement
146
124
  });
147
125
  //this.shadowRoot.querySelector('nx-tab').tabpage.hide("mybatis");
148
126
 
127
+ console.log(changedSource);
128
+
129
+ tab.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
130
+ console.log(el, index);
131
+ switch (index) {
132
+ case 0:
133
+ el.innerHTML = index;
134
+ break;
135
+ case 1:
136
+ el.innerHTML = index;
137
+ break;
138
+ case 2:
139
+ el.innerHTML = index;
140
+ break;
141
+ case 3:
142
+ el.innerHTML = index;
143
+ break;
144
+ case 4:
145
+ el.innerHTML = index;
146
+ break;
147
+ }
148
+ });
149
+
149
150
  tab.initialize();
150
151
 
151
152
  this.shadowRoot.querySelector('nx-dialog')?.showModal();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.620.0",
4
+ "version": "0.623.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -97,28 +97,7 @@ class IdeDiffPopup extends HTMLElement
97
97
 
98
98
  setTimeout(() => {
99
99
 
100
- console.log("==================================");
101
- console.log(tab.shadowRoot.querySelectorAll(".tab-button"));
102
- tab.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
103
- console.log(el, index);
104
- switch (index) {
105
- case 0:
106
- el.innerHTML = index;
107
- break;
108
- case 1:
109
- el.innerHTML = index;
110
- break;
111
- case 2:
112
- el.innerHTML = index;
113
- break;
114
- case 3:
115
- el.innerHTML = index;
116
- break;
117
- case 4:
118
- el.innerHTML = index;
119
- break;
120
- }
121
- });
100
+
122
101
 
123
102
  for (const item of changedSource) {
124
103
  const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
@@ -127,7 +106,6 @@ class IdeDiffPopup extends HTMLElement
127
106
 
128
107
  //const el = this.shadowRoot.querySelector(".tab-button data-target=''")
129
108
 
130
-
131
109
  diff.initialize(
132
110
  diffData.asis,
133
111
  diffData.tobe,
@@ -146,6 +124,29 @@ class IdeDiffPopup extends HTMLElement
146
124
  });
147
125
  //this.shadowRoot.querySelector('nx-tab').tabpage.hide("mybatis");
148
126
 
127
+ console.log(changedSource);
128
+
129
+ tab.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
130
+ console.log(el, index);
131
+ switch (index) {
132
+ case 0:
133
+ el.innerHTML = index;
134
+ break;
135
+ case 1:
136
+ el.innerHTML = index;
137
+ break;
138
+ case 2:
139
+ el.innerHTML = index;
140
+ break;
141
+ case 3:
142
+ el.innerHTML = index;
143
+ break;
144
+ case 4:
145
+ el.innerHTML = index;
146
+ break;
147
+ }
148
+ });
149
+
149
150
  tab.initialize();
150
151
 
151
152
  this.shadowRoot.querySelector('nx-dialog')?.showModal();