ide-assi 0.357.0 → 0.359.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.
@@ -129,6 +129,8 @@ export class IdeDiff extends HTMLElement {
129
129
  }
130
130
 
131
131
  #initCodeMirror = () => {
132
+ return;
133
+
132
134
  this.#asisEditorEl = this.shadowRoot.querySelector('.panel.asis');
133
135
  this.#tobeEditorEl = this.shadowRoot.querySelector('.panel.tobe');
134
136
 
@@ -195,6 +197,7 @@ export class IdeDiff extends HTMLElement {
195
197
 
196
198
  // ⭐️ 스크롤 리스너를 제어할 수 있도록 플래그 및 클래스 메서드 사용
197
199
  #setupScrollSync = () => {
200
+ return;
198
201
  // 기존 리스너가 있다면 제거 (중복 방지 및 disconnectedCallback에서 제거 용이)
199
202
  if (this._asisScrollHandler) { // 핸들러가 이미 할당되어 있다면
200
203
  this.#asisEditorView.scrollDOM.removeEventListener('scroll', this._asisScrollHandler);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.357.0",
4
+ "version": "0.359.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -129,6 +129,8 @@ export class IdeDiff extends HTMLElement {
129
129
  }
130
130
 
131
131
  #initCodeMirror = () => {
132
+ return;
133
+
132
134
  this.#asisEditorEl = this.shadowRoot.querySelector('.panel.asis');
133
135
  this.#tobeEditorEl = this.shadowRoot.querySelector('.panel.tobe');
134
136
 
@@ -195,6 +197,7 @@ export class IdeDiff extends HTMLElement {
195
197
 
196
198
  // ⭐️ 스크롤 리스너를 제어할 수 있도록 플래그 및 클래스 메서드 사용
197
199
  #setupScrollSync = () => {
200
+ return;
198
201
  // 기존 리스너가 있다면 제거 (중복 방지 및 disconnectedCallback에서 제거 용이)
199
202
  if (this._asisScrollHandler) { // 핸들러가 이미 할당되어 있다면
200
203
  this.#asisEditorView.scrollDOM.removeEventListener('scroll', this._asisScrollHandler);