ide-assi 0.413.0 → 0.415.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 +52 -6
- package/dist/bundle.esm.js +52 -6
- package/dist/components/ideAssi.js +51 -4
- package/dist/components/ideDiff.js +0 -4
- package/package.json +1 -1
- package/src/components/ideAssi.js +51 -4
- package/src/components/ideDiff.js +0 -4
package/dist/bundle.cjs.js
CHANGED
|
@@ -201853,7 +201853,7 @@ class IdeAssi extends HTMLElement
|
|
|
201853
201853
|
this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
|
|
201854
201854
|
|
|
201855
201855
|
//setTimeout(() => {
|
|
201856
|
-
|
|
201856
|
+
let src1 = `
|
|
201857
201857
|
import React, { useRef, useEffect } from "react" adfa;
|
|
201858
201858
|
import { api, ai } from "ide-assi";
|
|
201859
201859
|
import ninegrid from "ninegrid2";
|
|
@@ -202025,7 +202025,7 @@ const DocManager = () => {
|
|
|
202025
202025
|
export default DocManager;
|
|
202026
202026
|
`;
|
|
202027
202027
|
|
|
202028
|
-
|
|
202028
|
+
let src2 = `
|
|
202029
202029
|
import React, { useRef, useEffect } from "react";
|
|
202030
202030
|
import { api, ai } from "ide-assi";
|
|
202031
202031
|
import ninegrid from "ninegrid2";
|
|
@@ -202197,6 +202197,56 @@ const DocManager = () => {
|
|
|
202197
202197
|
export default DocManager;
|
|
202198
202198
|
`;
|
|
202199
202199
|
|
|
202200
|
+
src1 = `
|
|
202201
|
+
<tr>
|
|
202202
|
+
<th>No.</th>
|
|
202203
|
+
<th>문서ID</th>
|
|
202204
|
+
<th>매출액</th>
|
|
202205
|
+
<th>최종수정자</th>
|
|
202206
|
+
<th>문서명</th>
|
|
202207
|
+
<th>최초등록자</th>
|
|
202208
|
+
<th>최초등록일</th>
|
|
202209
|
+
<th>최종수정일</th>
|
|
202210
|
+
</tr>
|
|
202211
|
+
`;
|
|
202212
|
+
src2 = `
|
|
202213
|
+
<tr>
|
|
202214
|
+
<th>No.</th>
|
|
202215
|
+
<th>매출액</th>
|
|
202216
|
+
<th>문서ID</th>
|
|
202217
|
+
<th>최종수정자</th>
|
|
202218
|
+
<th>문서명</th>
|
|
202219
|
+
<th>최초등록자</th>
|
|
202220
|
+
<th>최초등록일</th>
|
|
202221
|
+
<th>최종수정일</th>
|
|
202222
|
+
</tr>
|
|
202223
|
+
`;
|
|
202224
|
+
|
|
202225
|
+
src1 = `
|
|
202226
|
+
<tr>
|
|
202227
|
+
<th>No.</th>
|
|
202228
|
+
<th>문서ID</th>
|
|
202229
|
+
<th>매출액</th>
|
|
202230
|
+
<th>최종수정자</th>
|
|
202231
|
+
<th>문서명</th>
|
|
202232
|
+
<th>최초등록자</th>
|
|
202233
|
+
<th>최초등록일</th>
|
|
202234
|
+
<th>최종수정일</th>
|
|
202235
|
+
</tr>
|
|
202236
|
+
`;
|
|
202237
|
+
src2 = `
|
|
202238
|
+
<tr>
|
|
202239
|
+
<th>No.</th>
|
|
202240
|
+
<th>매출액</th>
|
|
202241
|
+
<th>최종수정자</th>
|
|
202242
|
+
<th>문서ID</th>
|
|
202243
|
+
<th>문서명</th>
|
|
202244
|
+
<th>최초등록자</th>
|
|
202245
|
+
<th>최초등록일</th>
|
|
202246
|
+
<th>최종수정일</th>
|
|
202247
|
+
</tr>
|
|
202248
|
+
`;
|
|
202249
|
+
|
|
202200
202250
|
this.shadowRoot.querySelector("ide-diff-popup").popup(src1, src2);
|
|
202201
202251
|
|
|
202202
202252
|
return;
|
|
@@ -234855,10 +234905,6 @@ class IdeDiff extends HTMLElement {
|
|
|
234855
234905
|
/* ninegrid CSS 및 필요한 기본 스타일 */
|
|
234856
234906
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideDiff.css";
|
|
234857
234907
|
${ninegrid.getCustomPath(this, "ideDiff.css")}
|
|
234858
|
-
|
|
234859
|
-
/* Diff 데코레이션 CSS 직접 추가 (없으면 ideDiff.css에 추가) */
|
|
234860
|
-
.cm-inserted-line-bg { background-color: #e6ffed; border-left: 3px solid #66bb6a; }
|
|
234861
|
-
.cm-deleted-line-bg { background-color: #ffebe9; border-left: 3px solid #ef5350; }
|
|
234862
234908
|
</style>
|
|
234863
234909
|
|
|
234864
234910
|
<div class="wrapper">
|
package/dist/bundle.esm.js
CHANGED
|
@@ -201849,7 +201849,7 @@ class IdeAssi extends HTMLElement
|
|
|
201849
201849
|
this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
|
|
201850
201850
|
|
|
201851
201851
|
//setTimeout(() => {
|
|
201852
|
-
|
|
201852
|
+
let src1 = `
|
|
201853
201853
|
import React, { useRef, useEffect } from "react" adfa;
|
|
201854
201854
|
import { api, ai } from "ide-assi";
|
|
201855
201855
|
import ninegrid from "ninegrid2";
|
|
@@ -202021,7 +202021,7 @@ const DocManager = () => {
|
|
|
202021
202021
|
export default DocManager;
|
|
202022
202022
|
`;
|
|
202023
202023
|
|
|
202024
|
-
|
|
202024
|
+
let src2 = `
|
|
202025
202025
|
import React, { useRef, useEffect } from "react";
|
|
202026
202026
|
import { api, ai } from "ide-assi";
|
|
202027
202027
|
import ninegrid from "ninegrid2";
|
|
@@ -202193,6 +202193,56 @@ const DocManager = () => {
|
|
|
202193
202193
|
export default DocManager;
|
|
202194
202194
|
`;
|
|
202195
202195
|
|
|
202196
|
+
src1 = `
|
|
202197
|
+
<tr>
|
|
202198
|
+
<th>No.</th>
|
|
202199
|
+
<th>문서ID</th>
|
|
202200
|
+
<th>매출액</th>
|
|
202201
|
+
<th>최종수정자</th>
|
|
202202
|
+
<th>문서명</th>
|
|
202203
|
+
<th>최초등록자</th>
|
|
202204
|
+
<th>최초등록일</th>
|
|
202205
|
+
<th>최종수정일</th>
|
|
202206
|
+
</tr>
|
|
202207
|
+
`;
|
|
202208
|
+
src2 = `
|
|
202209
|
+
<tr>
|
|
202210
|
+
<th>No.</th>
|
|
202211
|
+
<th>매출액</th>
|
|
202212
|
+
<th>문서ID</th>
|
|
202213
|
+
<th>최종수정자</th>
|
|
202214
|
+
<th>문서명</th>
|
|
202215
|
+
<th>최초등록자</th>
|
|
202216
|
+
<th>최초등록일</th>
|
|
202217
|
+
<th>최종수정일</th>
|
|
202218
|
+
</tr>
|
|
202219
|
+
`;
|
|
202220
|
+
|
|
202221
|
+
src1 = `
|
|
202222
|
+
<tr>
|
|
202223
|
+
<th>No.</th>
|
|
202224
|
+
<th>문서ID</th>
|
|
202225
|
+
<th>매출액</th>
|
|
202226
|
+
<th>최종수정자</th>
|
|
202227
|
+
<th>문서명</th>
|
|
202228
|
+
<th>최초등록자</th>
|
|
202229
|
+
<th>최초등록일</th>
|
|
202230
|
+
<th>최종수정일</th>
|
|
202231
|
+
</tr>
|
|
202232
|
+
`;
|
|
202233
|
+
src2 = `
|
|
202234
|
+
<tr>
|
|
202235
|
+
<th>No.</th>
|
|
202236
|
+
<th>매출액</th>
|
|
202237
|
+
<th>최종수정자</th>
|
|
202238
|
+
<th>문서ID</th>
|
|
202239
|
+
<th>문서명</th>
|
|
202240
|
+
<th>최초등록자</th>
|
|
202241
|
+
<th>최초등록일</th>
|
|
202242
|
+
<th>최종수정일</th>
|
|
202243
|
+
</tr>
|
|
202244
|
+
`;
|
|
202245
|
+
|
|
202196
202246
|
this.shadowRoot.querySelector("ide-diff-popup").popup(src1, src2);
|
|
202197
202247
|
|
|
202198
202248
|
return;
|
|
@@ -234851,10 +234901,6 @@ class IdeDiff extends HTMLElement {
|
|
|
234851
234901
|
/* ninegrid CSS 및 필요한 기본 스타일 */
|
|
234852
234902
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideDiff.css";
|
|
234853
234903
|
${ninegrid.getCustomPath(this, "ideDiff.css")}
|
|
234854
|
-
|
|
234855
|
-
/* Diff 데코레이션 CSS 직접 추가 (없으면 ideDiff.css에 추가) */
|
|
234856
|
-
.cm-inserted-line-bg { background-color: #e6ffed; border-left: 3px solid #66bb6a; }
|
|
234857
|
-
.cm-deleted-line-bg { background-color: #ffebe9; border-left: 3px solid #ef5350; }
|
|
234858
234904
|
</style>
|
|
234859
234905
|
|
|
234860
234906
|
<div class="wrapper">
|
|
@@ -123,7 +123,7 @@ export class IdeAssi extends HTMLElement
|
|
|
123
123
|
this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
|
|
124
124
|
|
|
125
125
|
//setTimeout(() => {
|
|
126
|
-
|
|
126
|
+
let src1 = `
|
|
127
127
|
import React, { useRef, useEffect } from "react" adfa;
|
|
128
128
|
import { api, ai } from "ide-assi";
|
|
129
129
|
import ninegrid from "ninegrid2";
|
|
@@ -295,7 +295,7 @@ const DocManager = () => {
|
|
|
295
295
|
export default DocManager;
|
|
296
296
|
`;
|
|
297
297
|
|
|
298
|
-
|
|
298
|
+
let src2 = `
|
|
299
299
|
import React, { useRef, useEffect } from "react";
|
|
300
300
|
import { api, ai } from "ide-assi";
|
|
301
301
|
import ninegrid from "ninegrid2";
|
|
@@ -467,8 +467,55 @@ const DocManager = () => {
|
|
|
467
467
|
export default DocManager;
|
|
468
468
|
`;
|
|
469
469
|
|
|
470
|
-
|
|
471
|
-
|
|
470
|
+
src1 = `
|
|
471
|
+
<tr>
|
|
472
|
+
<th>No.</th>
|
|
473
|
+
<th>문서ID</th>
|
|
474
|
+
<th>매출액</th>
|
|
475
|
+
<th>최종수정자</th>
|
|
476
|
+
<th>문서명</th>
|
|
477
|
+
<th>최초등록자</th>
|
|
478
|
+
<th>최초등록일</th>
|
|
479
|
+
<th>최종수정일</th>
|
|
480
|
+
</tr>
|
|
481
|
+
`;
|
|
482
|
+
src2 = `
|
|
483
|
+
<tr>
|
|
484
|
+
<th>No.</th>
|
|
485
|
+
<th>매출액</th>
|
|
486
|
+
<th>문서ID</th>
|
|
487
|
+
<th>최종수정자</th>
|
|
488
|
+
<th>문서명</th>
|
|
489
|
+
<th>최초등록자</th>
|
|
490
|
+
<th>최초등록일</th>
|
|
491
|
+
<th>최종수정일</th>
|
|
492
|
+
</tr>
|
|
493
|
+
`;
|
|
494
|
+
|
|
495
|
+
src1 = `
|
|
496
|
+
<tr>
|
|
497
|
+
<th>No.</th>
|
|
498
|
+
<th>문서ID</th>
|
|
499
|
+
<th>매출액</th>
|
|
500
|
+
<th>최종수정자</th>
|
|
501
|
+
<th>문서명</th>
|
|
502
|
+
<th>최초등록자</th>
|
|
503
|
+
<th>최초등록일</th>
|
|
504
|
+
<th>최종수정일</th>
|
|
505
|
+
</tr>
|
|
506
|
+
`;
|
|
507
|
+
src2 = `
|
|
508
|
+
<tr>
|
|
509
|
+
<th>No.</th>
|
|
510
|
+
<th>매출액</th>
|
|
511
|
+
<th>최종수정자</th>
|
|
512
|
+
<th>문서ID</th>
|
|
513
|
+
<th>문서명</th>
|
|
514
|
+
<th>최초등록자</th>
|
|
515
|
+
<th>최초등록일</th>
|
|
516
|
+
<th>최종수정일</th>
|
|
517
|
+
</tr>
|
|
518
|
+
`;
|
|
472
519
|
|
|
473
520
|
this.shadowRoot.querySelector("ide-diff-popup").popup(src1, src2);
|
|
474
521
|
|
|
@@ -88,10 +88,6 @@ export class IdeDiff extends HTMLElement {
|
|
|
88
88
|
/* ninegrid CSS 및 필요한 기본 스타일 */
|
|
89
89
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideDiff.css";
|
|
90
90
|
${ninegrid.getCustomPath(this, "ideDiff.css")}
|
|
91
|
-
|
|
92
|
-
/* Diff 데코레이션 CSS 직접 추가 (없으면 ideDiff.css에 추가) */
|
|
93
|
-
.cm-inserted-line-bg { background-color: #e6ffed; border-left: 3px solid #66bb6a; }
|
|
94
|
-
.cm-deleted-line-bg { background-color: #ffebe9; border-left: 3px solid #ef5350; }
|
|
95
91
|
</style>
|
|
96
92
|
|
|
97
93
|
<div class="wrapper">
|
package/package.json
CHANGED
|
@@ -123,7 +123,7 @@ export class IdeAssi extends HTMLElement
|
|
|
123
123
|
this.shadowRoot.appendChild(document.createElement('ide-diff-popup'));
|
|
124
124
|
|
|
125
125
|
//setTimeout(() => {
|
|
126
|
-
|
|
126
|
+
let src1 = `
|
|
127
127
|
import React, { useRef, useEffect } from "react" adfa;
|
|
128
128
|
import { api, ai } from "ide-assi";
|
|
129
129
|
import ninegrid from "ninegrid2";
|
|
@@ -295,7 +295,7 @@ const DocManager = () => {
|
|
|
295
295
|
export default DocManager;
|
|
296
296
|
`;
|
|
297
297
|
|
|
298
|
-
|
|
298
|
+
let src2 = `
|
|
299
299
|
import React, { useRef, useEffect } from "react";
|
|
300
300
|
import { api, ai } from "ide-assi";
|
|
301
301
|
import ninegrid from "ninegrid2";
|
|
@@ -467,8 +467,55 @@ const DocManager = () => {
|
|
|
467
467
|
export default DocManager;
|
|
468
468
|
`;
|
|
469
469
|
|
|
470
|
-
|
|
471
|
-
|
|
470
|
+
src1 = `
|
|
471
|
+
<tr>
|
|
472
|
+
<th>No.</th>
|
|
473
|
+
<th>문서ID</th>
|
|
474
|
+
<th>매출액</th>
|
|
475
|
+
<th>최종수정자</th>
|
|
476
|
+
<th>문서명</th>
|
|
477
|
+
<th>최초등록자</th>
|
|
478
|
+
<th>최초등록일</th>
|
|
479
|
+
<th>최종수정일</th>
|
|
480
|
+
</tr>
|
|
481
|
+
`;
|
|
482
|
+
src2 = `
|
|
483
|
+
<tr>
|
|
484
|
+
<th>No.</th>
|
|
485
|
+
<th>매출액</th>
|
|
486
|
+
<th>문서ID</th>
|
|
487
|
+
<th>최종수정자</th>
|
|
488
|
+
<th>문서명</th>
|
|
489
|
+
<th>최초등록자</th>
|
|
490
|
+
<th>최초등록일</th>
|
|
491
|
+
<th>최종수정일</th>
|
|
492
|
+
</tr>
|
|
493
|
+
`;
|
|
494
|
+
|
|
495
|
+
src1 = `
|
|
496
|
+
<tr>
|
|
497
|
+
<th>No.</th>
|
|
498
|
+
<th>문서ID</th>
|
|
499
|
+
<th>매출액</th>
|
|
500
|
+
<th>최종수정자</th>
|
|
501
|
+
<th>문서명</th>
|
|
502
|
+
<th>최초등록자</th>
|
|
503
|
+
<th>최초등록일</th>
|
|
504
|
+
<th>최종수정일</th>
|
|
505
|
+
</tr>
|
|
506
|
+
`;
|
|
507
|
+
src2 = `
|
|
508
|
+
<tr>
|
|
509
|
+
<th>No.</th>
|
|
510
|
+
<th>매출액</th>
|
|
511
|
+
<th>최종수정자</th>
|
|
512
|
+
<th>문서ID</th>
|
|
513
|
+
<th>문서명</th>
|
|
514
|
+
<th>최초등록자</th>
|
|
515
|
+
<th>최초등록일</th>
|
|
516
|
+
<th>최종수정일</th>
|
|
517
|
+
</tr>
|
|
518
|
+
`;
|
|
472
519
|
|
|
473
520
|
this.shadowRoot.querySelector("ide-diff-popup").popup(src1, src2);
|
|
474
521
|
|
|
@@ -88,10 +88,6 @@ export class IdeDiff extends HTMLElement {
|
|
|
88
88
|
/* ninegrid CSS 및 필요한 기본 스타일 */
|
|
89
89
|
@import "https://cdn.jsdelivr.net/npm/ninegrid@${ninegrid.version}/dist/css/ideDiff.css";
|
|
90
90
|
${ninegrid.getCustomPath(this, "ideDiff.css")}
|
|
91
|
-
|
|
92
|
-
/* Diff 데코레이션 CSS 직접 추가 (없으면 ideDiff.css에 추가) */
|
|
93
|
-
.cm-inserted-line-bg { background-color: #e6ffed; border-left: 3px solid #66bb6a; }
|
|
94
|
-
.cm-deleted-line-bg { background-color: #ffebe9; border-left: 3px solid #ef5350; }
|
|
95
91
|
</style>
|
|
96
92
|
|
|
97
93
|
<div class="wrapper">
|