ide-assi 0.615.0 → 0.618.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.
@@ -202661,6 +202661,9 @@ console.log(el, href, title);
202661
202661
  menuUrl: where.menu.url,
202662
202662
  menuName: where.menu.name,
202663
202663
  baseClass: srcPath.baseClass,
202664
+ classFrom: srcPath.classFrom,
202665
+ classTo: srcPath.classTo,
202666
+ index: srcPath.index,
202664
202667
  mybatisXmlSource: mybatisXmlSource,
202665
202668
  controllerSource: controllerSrc,
202666
202669
  tableDefinitions: JSON.stringify(columnInfo),
@@ -203650,11 +203653,35 @@ class IdeDiffPopup extends HTMLElement
203650
203653
 
203651
203654
  setTimeout(() => {
203652
203655
 
203656
+ this.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
203657
+ console.log(el, index);
203658
+ switch (index) {
203659
+ case 0:
203660
+ el.innerHTML = index;
203661
+ break;
203662
+ case 1:
203663
+ el.innerHTML = index;
203664
+ break;
203665
+ case 2:
203666
+ el.innerHTML = index;
203667
+ break;
203668
+ case 3:
203669
+ el.innerHTML = index;
203670
+ break;
203671
+ case 4:
203672
+ el.innerHTML = index;
203673
+ break;
203674
+ }
203675
+ });
203676
+
203653
203677
  for (const item of changedSource) {
203654
203678
  const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
203655
203679
  const diff = ninegrid.querySelector(`ide-diff.${type}`, this.shadowRoot);
203656
203680
  if (!diff) continue;
203657
203681
 
203682
+ //const el = this.shadowRoot.querySelector(".tab-button data-target=''")
203683
+
203684
+
203658
203685
  diff.initialize(
203659
203686
  diffData.asis,
203660
203687
  diffData.tobe,
@@ -202657,6 +202657,9 @@ console.log(el, href, title);
202657
202657
  menuUrl: where.menu.url,
202658
202658
  menuName: where.menu.name,
202659
202659
  baseClass: srcPath.baseClass,
202660
+ classFrom: srcPath.classFrom,
202661
+ classTo: srcPath.classTo,
202662
+ index: srcPath.index,
202660
202663
  mybatisXmlSource: mybatisXmlSource,
202661
202664
  controllerSource: controllerSrc,
202662
202665
  tableDefinitions: JSON.stringify(columnInfo),
@@ -203646,11 +203649,35 @@ class IdeDiffPopup extends HTMLElement
203646
203649
 
203647
203650
  setTimeout(() => {
203648
203651
 
203652
+ this.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
203653
+ console.log(el, index);
203654
+ switch (index) {
203655
+ case 0:
203656
+ el.innerHTML = index;
203657
+ break;
203658
+ case 1:
203659
+ el.innerHTML = index;
203660
+ break;
203661
+ case 2:
203662
+ el.innerHTML = index;
203663
+ break;
203664
+ case 3:
203665
+ el.innerHTML = index;
203666
+ break;
203667
+ case 4:
203668
+ el.innerHTML = index;
203669
+ break;
203670
+ }
203671
+ });
203672
+
203649
203673
  for (const item of changedSource) {
203650
203674
  const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
203651
203675
  const diff = ninegrid.querySelector(`ide-diff.${type}`, this.shadowRoot);
203652
203676
  if (!diff) continue;
203653
203677
 
203678
+ //const el = this.shadowRoot.querySelector(".tab-button data-target=''")
203679
+
203680
+
203654
203681
  diff.initialize(
203655
203682
  diffData.asis,
203656
203683
  diffData.tobe,
@@ -791,6 +791,9 @@ console.log(el, href, title);
791
791
  menuUrl: where.menu.url,
792
792
  menuName: where.menu.name,
793
793
  baseClass: srcPath.baseClass,
794
+ classFrom: srcPath.classFrom,
795
+ classTo: srcPath.classTo,
796
+ index: srcPath.index,
794
797
  mybatisXmlSource: mybatisXmlSource,
795
798
  controllerSource: controllerSrc,
796
799
  tableDefinitions: JSON.stringify(columnInfo),
@@ -97,11 +97,35 @@ class IdeDiffPopup extends HTMLElement
97
97
 
98
98
  setTimeout(() => {
99
99
 
100
+ this.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
101
+ console.log(el, index);
102
+ switch (index) {
103
+ case 0:
104
+ el.innerHTML = index;
105
+ break;
106
+ case 1:
107
+ el.innerHTML = index;
108
+ break;
109
+ case 2:
110
+ el.innerHTML = index;
111
+ break;
112
+ case 3:
113
+ el.innerHTML = index;
114
+ break;
115
+ case 4:
116
+ el.innerHTML = index;
117
+ break;
118
+ }
119
+ });
120
+
100
121
  for (const item of changedSource) {
101
122
  const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
102
123
  const diff = ninegrid.querySelector(`ide-diff.${type}`, this.shadowRoot);
103
124
  if (!diff) continue;
104
125
 
126
+ //const el = this.shadowRoot.querySelector(".tab-button data-target=''")
127
+
128
+
105
129
  diff.initialize(
106
130
  diffData.asis,
107
131
  diffData.tobe,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.615.0",
4
+ "version": "0.618.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -791,6 +791,9 @@ console.log(el, href, title);
791
791
  menuUrl: where.menu.url,
792
792
  menuName: where.menu.name,
793
793
  baseClass: srcPath.baseClass,
794
+ classFrom: srcPath.classFrom,
795
+ classTo: srcPath.classTo,
796
+ index: srcPath.index,
794
797
  mybatisXmlSource: mybatisXmlSource,
795
798
  controllerSource: controllerSrc,
796
799
  tableDefinitions: JSON.stringify(columnInfo),
@@ -97,11 +97,35 @@ class IdeDiffPopup extends HTMLElement
97
97
 
98
98
  setTimeout(() => {
99
99
 
100
+ this.shadowRoot.querySelectorAll(".tab-button").forEach((el,index) => {
101
+ console.log(el, index);
102
+ switch (index) {
103
+ case 0:
104
+ el.innerHTML = index;
105
+ break;
106
+ case 1:
107
+ el.innerHTML = index;
108
+ break;
109
+ case 2:
110
+ el.innerHTML = index;
111
+ break;
112
+ case 3:
113
+ el.innerHTML = index;
114
+ break;
115
+ case 4:
116
+ el.innerHTML = index;
117
+ break;
118
+ }
119
+ });
120
+
100
121
  for (const item of changedSource) {
101
122
  const [type, diffData] = Object.entries(item)[0]; // 예: type = "mybatis", diffData = { asis, tobe }
102
123
  const diff = ninegrid.querySelector(`ide-diff.${type}`, this.shadowRoot);
103
124
  if (!diff) continue;
104
125
 
126
+ //const el = this.shadowRoot.querySelector(".tab-button data-target=''")
127
+
128
+
105
129
  diff.initialize(
106
130
  diffData.asis,
107
131
  diffData.tobe,