ide-assi 0.355.0 → 0.356.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
CHANGED
|
@@ -235102,12 +235102,13 @@ class IdeDiff extends HTMLElement {
|
|
|
235102
235102
|
// 먼저 데코레이션 효과를 계산하여 가져옵니다.
|
|
235103
235103
|
const { asisEffect, tobeEffect } = this.#applyDiffDecorations(src1, src2);
|
|
235104
235104
|
|
|
235105
|
+
console.log(asisEffect, tobeEffect);
|
|
235105
235106
|
// asis 에디터의 텍스트 변경 및 데코레이션 효과를 단일 트랜잭션으로 디스패치합니다.
|
|
235106
235107
|
this.#asisEditorView.dispatch({
|
|
235107
235108
|
changes: { from: 0, to: this.#asisEditorView.state.doc.length, insert: src1 },
|
|
235108
235109
|
effects: [
|
|
235109
235110
|
this.#languageCompartment.reconfigure(langExtension),
|
|
235110
|
-
|
|
235111
|
+
asisEffect // 계산된 데코레이션 효과를 포함
|
|
235111
235112
|
]
|
|
235112
235113
|
});
|
|
235113
235114
|
|
package/dist/bundle.esm.js
CHANGED
|
@@ -235098,12 +235098,13 @@ class IdeDiff extends HTMLElement {
|
|
|
235098
235098
|
// 먼저 데코레이션 효과를 계산하여 가져옵니다.
|
|
235099
235099
|
const { asisEffect, tobeEffect } = this.#applyDiffDecorations(src1, src2);
|
|
235100
235100
|
|
|
235101
|
+
console.log(asisEffect, tobeEffect);
|
|
235101
235102
|
// asis 에디터의 텍스트 변경 및 데코레이션 효과를 단일 트랜잭션으로 디스패치합니다.
|
|
235102
235103
|
this.#asisEditorView.dispatch({
|
|
235103
235104
|
changes: { from: 0, to: this.#asisEditorView.state.doc.length, insert: src1 },
|
|
235104
235105
|
effects: [
|
|
235105
235106
|
this.#languageCompartment.reconfigure(langExtension),
|
|
235106
|
-
|
|
235107
|
+
asisEffect // 계산된 데코레이션 효과를 포함
|
|
235107
235108
|
]
|
|
235108
235109
|
});
|
|
235109
235110
|
|
|
@@ -351,12 +351,13 @@ export class IdeDiff extends HTMLElement {
|
|
|
351
351
|
// 먼저 데코레이션 효과를 계산하여 가져옵니다.
|
|
352
352
|
const { asisEffect, tobeEffect } = this.#applyDiffDecorations(src1, src2);
|
|
353
353
|
|
|
354
|
+
console.log(asisEffect, tobeEffect);
|
|
354
355
|
// asis 에디터의 텍스트 변경 및 데코레이션 효과를 단일 트랜잭션으로 디스패치합니다.
|
|
355
356
|
this.#asisEditorView.dispatch({
|
|
356
357
|
changes: { from: 0, to: this.#asisEditorView.state.doc.length, insert: src1 },
|
|
357
358
|
effects: [
|
|
358
359
|
this.#languageCompartment.reconfigure(langExtension),
|
|
359
|
-
|
|
360
|
+
asisEffect // 계산된 데코레이션 효과를 포함
|
|
360
361
|
]
|
|
361
362
|
});
|
|
362
363
|
|
package/package.json
CHANGED
|
@@ -351,12 +351,13 @@ export class IdeDiff extends HTMLElement {
|
|
|
351
351
|
// 먼저 데코레이션 효과를 계산하여 가져옵니다.
|
|
352
352
|
const { asisEffect, tobeEffect } = this.#applyDiffDecorations(src1, src2);
|
|
353
353
|
|
|
354
|
+
console.log(asisEffect, tobeEffect);
|
|
354
355
|
// asis 에디터의 텍스트 변경 및 데코레이션 효과를 단일 트랜잭션으로 디스패치합니다.
|
|
355
356
|
this.#asisEditorView.dispatch({
|
|
356
357
|
changes: { from: 0, to: this.#asisEditorView.state.doc.length, insert: src1 },
|
|
357
358
|
effects: [
|
|
358
359
|
this.#languageCompartment.reconfigure(langExtension),
|
|
359
|
-
|
|
360
|
+
asisEffect // 계산된 데코레이션 효과를 포함
|
|
360
361
|
]
|
|
361
362
|
});
|
|
362
363
|
|