ide-assi 0.396.0 → 0.397.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.
@@ -235080,8 +235080,6 @@ class IdeDiff extends HTMLElement {
235080
235080
  // 1단계: 텍스트 내용 변경과 언어 확장을 먼저 디스패치합니다.
235081
235081
  // 'to' 값을 현재 문서 길이 전체로 지정하여 정확한 교체를 보장합니다.
235082
235082
 
235083
- console.log(this.#asisEditorView, this.#asisEditorView.state.doc.length);
235084
-
235085
235083
  this.#asisEditorView.dispatch({
235086
235084
  changes: { from: 0, to: this.#asisEditorView.state.doc.length, insert: src1 },
235087
235085
  effects: [
@@ -235089,16 +235087,14 @@ class IdeDiff extends HTMLElement {
235089
235087
  ]
235090
235088
  });
235091
235089
 
235092
- console.log(this.#asisEditorView, this.#asisEditorView.state.doc.length);
235093
-
235094
- console.log(this.#tobeEditorView, this.#tobeEditorView.state.doc.length);
235095
235090
  this.#tobeEditorView.dispatch({
235096
235091
  changes: { from: 0, to: this.#tobeEditorView.state.doc.length, insert: src2 },
235097
235092
  effects: [
235098
235093
  this.#languageCompartment.reconfigure(langExtension)
235099
235094
  ]
235100
235095
  });
235101
- console.log(this.#tobeEditorView, this.#tobeEditorView.state.doc.length);
235096
+
235097
+ console.log(asisEffect, tobeEffect);
235102
235098
 
235103
235099
  // ⭐️ 2단계: 텍스트 및 언어 변경이 완전히 적용되고 뷰가 안정화될 시간을 줍니다.
235104
235100
  // 다음 프레임에서 데코레이션 효과만 별도로 디스패치합니다.
@@ -235076,8 +235076,6 @@ class IdeDiff extends HTMLElement {
235076
235076
  // 1단계: 텍스트 내용 변경과 언어 확장을 먼저 디스패치합니다.
235077
235077
  // 'to' 값을 현재 문서 길이 전체로 지정하여 정확한 교체를 보장합니다.
235078
235078
 
235079
- console.log(this.#asisEditorView, this.#asisEditorView.state.doc.length);
235080
-
235081
235079
  this.#asisEditorView.dispatch({
235082
235080
  changes: { from: 0, to: this.#asisEditorView.state.doc.length, insert: src1 },
235083
235081
  effects: [
@@ -235085,16 +235083,14 @@ class IdeDiff extends HTMLElement {
235085
235083
  ]
235086
235084
  });
235087
235085
 
235088
- console.log(this.#asisEditorView, this.#asisEditorView.state.doc.length);
235089
-
235090
- console.log(this.#tobeEditorView, this.#tobeEditorView.state.doc.length);
235091
235086
  this.#tobeEditorView.dispatch({
235092
235087
  changes: { from: 0, to: this.#tobeEditorView.state.doc.length, insert: src2 },
235093
235088
  effects: [
235094
235089
  this.#languageCompartment.reconfigure(langExtension)
235095
235090
  ]
235096
235091
  });
235097
- console.log(this.#tobeEditorView, this.#tobeEditorView.state.doc.length);
235092
+
235093
+ console.log(asisEffect, tobeEffect);
235098
235094
 
235099
235095
  // ⭐️ 2단계: 텍스트 및 언어 변경이 완전히 적용되고 뷰가 안정화될 시간을 줍니다.
235100
235096
  // 다음 프레임에서 데코레이션 효과만 별도로 디스패치합니다.
@@ -328,8 +328,6 @@ export class IdeDiff extends HTMLElement {
328
328
  // 1단계: 텍스트 내용 변경과 언어 확장을 먼저 디스패치합니다.
329
329
  // 'to' 값을 현재 문서 길이 전체로 지정하여 정확한 교체를 보장합니다.
330
330
 
331
- console.log(this.#asisEditorView, this.#asisEditorView.state.doc.length);
332
-
333
331
  this.#asisEditorView.dispatch({
334
332
  changes: { from: 0, to: this.#asisEditorView.state.doc.length, insert: src1 },
335
333
  effects: [
@@ -337,16 +335,14 @@ export class IdeDiff extends HTMLElement {
337
335
  ]
338
336
  });
339
337
 
340
- console.log(this.#asisEditorView, this.#asisEditorView.state.doc.length);
341
-
342
- console.log(this.#tobeEditorView, this.#tobeEditorView.state.doc.length);
343
338
  this.#tobeEditorView.dispatch({
344
339
  changes: { from: 0, to: this.#tobeEditorView.state.doc.length, insert: src2 },
345
340
  effects: [
346
341
  this.#languageCompartment.reconfigure(langExtension)
347
342
  ]
348
343
  });
349
- console.log(this.#tobeEditorView, this.#tobeEditorView.state.doc.length);
344
+
345
+ console.log(asisEffect, tobeEffect);
350
346
 
351
347
  // ⭐️ 2단계: 텍스트 및 언어 변경이 완전히 적용되고 뷰가 안정화될 시간을 줍니다.
352
348
  // 다음 프레임에서 데코레이션 효과만 별도로 디스패치합니다.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.396.0",
4
+ "version": "0.397.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -328,8 +328,6 @@ export class IdeDiff extends HTMLElement {
328
328
  // 1단계: 텍스트 내용 변경과 언어 확장을 먼저 디스패치합니다.
329
329
  // 'to' 값을 현재 문서 길이 전체로 지정하여 정확한 교체를 보장합니다.
330
330
 
331
- console.log(this.#asisEditorView, this.#asisEditorView.state.doc.length);
332
-
333
331
  this.#asisEditorView.dispatch({
334
332
  changes: { from: 0, to: this.#asisEditorView.state.doc.length, insert: src1 },
335
333
  effects: [
@@ -337,16 +335,14 @@ export class IdeDiff extends HTMLElement {
337
335
  ]
338
336
  });
339
337
 
340
- console.log(this.#asisEditorView, this.#asisEditorView.state.doc.length);
341
-
342
- console.log(this.#tobeEditorView, this.#tobeEditorView.state.doc.length);
343
338
  this.#tobeEditorView.dispatch({
344
339
  changes: { from: 0, to: this.#tobeEditorView.state.doc.length, insert: src2 },
345
340
  effects: [
346
341
  this.#languageCompartment.reconfigure(langExtension)
347
342
  ]
348
343
  });
349
- console.log(this.#tobeEditorView, this.#tobeEditorView.state.doc.length);
344
+
345
+ console.log(asisEffect, tobeEffect);
350
346
 
351
347
  // ⭐️ 2단계: 텍스트 및 언어 변경이 완전히 적용되고 뷰가 안정화될 시간을 줍니다.
352
348
  // 다음 프레임에서 데코레이션 효과만 별도로 디스패치합니다.