ide-assi 0.400.0 → 0.402.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
|
@@ -235100,9 +235100,15 @@ class IdeDiff extends HTMLElement {
|
|
|
235100
235100
|
// 다음 프레임에서 데코레이션 효과만 별도로 디스패치합니다.
|
|
235101
235101
|
requestAnimationFrame(() => {
|
|
235102
235102
|
this.#asisEditorView.dispatch({
|
|
235103
|
-
effects:
|
|
235104
|
-
|
|
235105
|
-
|
|
235103
|
+
effects: [
|
|
235104
|
+
StateEffect.reconfigure.of(
|
|
235105
|
+
EditorView.decorations.of(
|
|
235106
|
+
Decoration.set(
|
|
235107
|
+
Decoration.line({ attributes: { style: "font-weight: bold" } }).range(0)
|
|
235108
|
+
)
|
|
235109
|
+
)
|
|
235110
|
+
)
|
|
235111
|
+
]
|
|
235106
235112
|
});
|
|
235107
235113
|
this.#tobeEditorView.dispatch({
|
|
235108
235114
|
//effects: [tobeEffect]
|
package/dist/bundle.esm.js
CHANGED
|
@@ -235096,9 +235096,15 @@ class IdeDiff extends HTMLElement {
|
|
|
235096
235096
|
// 다음 프레임에서 데코레이션 효과만 별도로 디스패치합니다.
|
|
235097
235097
|
requestAnimationFrame(() => {
|
|
235098
235098
|
this.#asisEditorView.dispatch({
|
|
235099
|
-
effects:
|
|
235100
|
-
|
|
235101
|
-
|
|
235099
|
+
effects: [
|
|
235100
|
+
StateEffect.reconfigure.of(
|
|
235101
|
+
EditorView.decorations.of(
|
|
235102
|
+
Decoration.set(
|
|
235103
|
+
Decoration.line({ attributes: { style: "font-weight: bold" } }).range(0)
|
|
235104
|
+
)
|
|
235105
|
+
)
|
|
235106
|
+
)
|
|
235107
|
+
]
|
|
235102
235108
|
});
|
|
235103
235109
|
this.#tobeEditorView.dispatch({
|
|
235104
235110
|
//effects: [tobeEffect]
|
|
@@ -348,9 +348,15 @@ export class IdeDiff extends HTMLElement {
|
|
|
348
348
|
// 다음 프레임에서 데코레이션 효과만 별도로 디스패치합니다.
|
|
349
349
|
requestAnimationFrame(() => {
|
|
350
350
|
this.#asisEditorView.dispatch({
|
|
351
|
-
effects:
|
|
352
|
-
|
|
353
|
-
|
|
351
|
+
effects: [
|
|
352
|
+
StateEffect.reconfigure.of(
|
|
353
|
+
EditorView.decorations.of(
|
|
354
|
+
Decoration.set(
|
|
355
|
+
Decoration.line({ attributes: { style: "font-weight: bold" } }).range(0)
|
|
356
|
+
)
|
|
357
|
+
)
|
|
358
|
+
)
|
|
359
|
+
]
|
|
354
360
|
});
|
|
355
361
|
this.#tobeEditorView.dispatch({
|
|
356
362
|
//effects: [tobeEffect]
|
package/package.json
CHANGED
|
@@ -348,9 +348,15 @@ export class IdeDiff extends HTMLElement {
|
|
|
348
348
|
// 다음 프레임에서 데코레이션 효과만 별도로 디스패치합니다.
|
|
349
349
|
requestAnimationFrame(() => {
|
|
350
350
|
this.#asisEditorView.dispatch({
|
|
351
|
-
effects:
|
|
352
|
-
|
|
353
|
-
|
|
351
|
+
effects: [
|
|
352
|
+
StateEffect.reconfigure.of(
|
|
353
|
+
EditorView.decorations.of(
|
|
354
|
+
Decoration.set(
|
|
355
|
+
Decoration.line({ attributes: { style: "font-weight: bold" } }).range(0)
|
|
356
|
+
)
|
|
357
|
+
)
|
|
358
|
+
)
|
|
359
|
+
]
|
|
354
360
|
});
|
|
355
361
|
this.#tobeEditorView.dispatch({
|
|
356
362
|
//effects: [tobeEffect]
|