ide-assi 0.406.0 → 0.408.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.
@@ -234911,7 +234911,7 @@ class IdeDiff extends HTMLElement {
234911
234911
  drawSelection(),
234912
234912
  dropCursor(),
234913
234913
  EditorState.allowMultipleSelections.of(true),
234914
- indentOnInput(), // 함수 호출
234914
+ indentOnInput(), // ⭐️ 함수 호출
234915
234915
  bracketMatching(),
234916
234916
  highlightActiveLine(),
234917
234917
  highlightActiveLineGutter(),
@@ -234922,11 +234922,11 @@ class IdeDiff extends HTMLElement {
234922
234922
  ...historyKeymap,
234923
234923
  ...lintKeymap,
234924
234924
  ...completionKeymap,
234925
- indentWithTab(), // 함수 호출
234926
- selectAll() // 함수 호출
234925
+ indentWithTab(), // ⭐️ 함수 호출
234926
+ selectAll() // ⭐️ 함수 호출
234927
234927
  ]),
234928
- syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거
234929
- autocompletion(), // 함수 호출
234928
+ syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거 확인
234929
+ autocompletion(), // ⭐️ 함수 호출
234930
234930
  ];
234931
234931
 
234932
234932
  // ASIS 에디터 뷰 초기화
@@ -234907,7 +234907,7 @@ class IdeDiff extends HTMLElement {
234907
234907
  drawSelection(),
234908
234908
  dropCursor(),
234909
234909
  EditorState.allowMultipleSelections.of(true),
234910
- indentOnInput(), // 함수 호출
234910
+ indentOnInput(), // ⭐️ 함수 호출
234911
234911
  bracketMatching(),
234912
234912
  highlightActiveLine(),
234913
234913
  highlightActiveLineGutter(),
@@ -234918,11 +234918,11 @@ class IdeDiff extends HTMLElement {
234918
234918
  ...historyKeymap,
234919
234919
  ...lintKeymap,
234920
234920
  ...completionKeymap,
234921
- indentWithTab(), // 함수 호출
234922
- selectAll() // 함수 호출
234921
+ indentWithTab(), // ⭐️ 함수 호출
234922
+ selectAll() // ⭐️ 함수 호출
234923
234923
  ]),
234924
- syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거
234925
- autocompletion(), // 함수 호출
234924
+ syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거 확인
234925
+ autocompletion(), // ⭐️ 함수 호출
234926
234926
  ];
234927
234927
 
234928
234928
  // ASIS 에디터 뷰 초기화
@@ -12,10 +12,10 @@ import {
12
12
  StateEffect,
13
13
  Text
14
14
  } from "@codemirror/state";
15
- import { history, historyKeymap, indentWithTab, selectAll } from "@codemirror/commands";
16
- import { defaultKeymap } from "@codemirror/commands";
15
+ // ⭐️ indentWithTab, selectAll 함수로 임포트되었는지 확인하고, 아래에서 호출합니다.
16
+ import { history, historyKeymap, indentWithTab, selectAll, defaultKeymap } from "@codemirror/commands";
17
17
  import { searchKeymap, highlightSelectionMatches } from "@codemirror/search";
18
- // ⭐️ 줄을 수정합니다: indentOnInput을 추가합니다.
18
+ // ⭐️ indentOnInput 함수도 여기서 임포트되었는지 확인합니다.
19
19
  import { indentOnInput, bracketMatching, syntaxHighlighting, defaultHighlightStyle } from "@codemirror/language";
20
20
  import { javascript } from "@codemirror/lang-javascript";
21
21
 
@@ -137,7 +137,7 @@ export class IdeDiff extends HTMLElement {
137
137
  drawSelection(),
138
138
  dropCursor(),
139
139
  EditorState.allowMultipleSelections.of(true),
140
- indentOnInput(), // 함수 호출
140
+ indentOnInput(), // ⭐️ 함수 호출
141
141
  bracketMatching(),
142
142
  highlightActiveLine(),
143
143
  highlightActiveLineGutter(),
@@ -148,11 +148,11 @@ export class IdeDiff extends HTMLElement {
148
148
  ...historyKeymap,
149
149
  ...lintKeymap,
150
150
  ...completionKeymap,
151
- indentWithTab(), // 함수 호출
152
- selectAll() // 함수 호출
151
+ indentWithTab(), // ⭐️ 함수 호출
152
+ selectAll() // ⭐️ 함수 호출
153
153
  ]),
154
- syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거
155
- autocompletion(), // 함수 호출
154
+ syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거 확인
155
+ autocompletion(), // ⭐️ 함수 호출
156
156
  ];
157
157
 
158
158
  // ASIS 에디터 뷰 초기화
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ide-assi",
3
3
  "type": "module",
4
- "version": "0.406.0",
4
+ "version": "0.408.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
@@ -12,10 +12,10 @@ import {
12
12
  StateEffect,
13
13
  Text
14
14
  } from "@codemirror/state";
15
- import { history, historyKeymap, indentWithTab, selectAll } from "@codemirror/commands";
16
- import { defaultKeymap } from "@codemirror/commands";
15
+ // ⭐️ indentWithTab, selectAll 함수로 임포트되었는지 확인하고, 아래에서 호출합니다.
16
+ import { history, historyKeymap, indentWithTab, selectAll, defaultKeymap } from "@codemirror/commands";
17
17
  import { searchKeymap, highlightSelectionMatches } from "@codemirror/search";
18
- // ⭐️ 줄을 수정합니다: indentOnInput을 추가합니다.
18
+ // ⭐️ indentOnInput 함수도 여기서 임포트되었는지 확인합니다.
19
19
  import { indentOnInput, bracketMatching, syntaxHighlighting, defaultHighlightStyle } from "@codemirror/language";
20
20
  import { javascript } from "@codemirror/lang-javascript";
21
21
 
@@ -137,7 +137,7 @@ export class IdeDiff extends HTMLElement {
137
137
  drawSelection(),
138
138
  dropCursor(),
139
139
  EditorState.allowMultipleSelections.of(true),
140
- indentOnInput(), // 함수 호출
140
+ indentOnInput(), // ⭐️ 함수 호출
141
141
  bracketMatching(),
142
142
  highlightActiveLine(),
143
143
  highlightActiveLineGutter(),
@@ -148,11 +148,11 @@ export class IdeDiff extends HTMLElement {
148
148
  ...historyKeymap,
149
149
  ...lintKeymap,
150
150
  ...completionKeymap,
151
- indentWithTab(), // 함수 호출
152
- selectAll() // 함수 호출
151
+ indentWithTab(), // ⭐️ 함수 호출
152
+ selectAll() // ⭐️ 함수 호출
153
153
  ]),
154
- syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거
155
- autocompletion(), // 함수 호출
154
+ syntaxHighlighting(defaultHighlightStyle), // { fallback: true } 제거 확인
155
+ autocompletion(), // ⭐️ 함수 호출
156
156
  ];
157
157
 
158
158
  // ASIS 에디터 뷰 초기화