ide-assi 0.397.0 → 0.398.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
|
@@ -235101,6 +235101,15 @@ class IdeDiff extends HTMLElement {
|
|
|
235101
235101
|
requestAnimationFrame(() => {
|
|
235102
235102
|
this.#asisEditorView.dispatch({
|
|
235103
235103
|
//effects: [asisEffect]
|
|
235104
|
+
effects: StateEffect.appendConfig.of([
|
|
235105
|
+
EditorView.decorations.of(
|
|
235106
|
+
Decoration.set(
|
|
235107
|
+
Decoration.line(
|
|
235108
|
+
{attributes: {style: "font-weight: bold"}}
|
|
235109
|
+
).range(0)
|
|
235110
|
+
)
|
|
235111
|
+
),
|
|
235112
|
+
])
|
|
235104
235113
|
});
|
|
235105
235114
|
this.#tobeEditorView.dispatch({
|
|
235106
235115
|
//effects: [tobeEffect]
|
package/dist/bundle.esm.js
CHANGED
|
@@ -235097,6 +235097,15 @@ class IdeDiff extends HTMLElement {
|
|
|
235097
235097
|
requestAnimationFrame(() => {
|
|
235098
235098
|
this.#asisEditorView.dispatch({
|
|
235099
235099
|
//effects: [asisEffect]
|
|
235100
|
+
effects: StateEffect.appendConfig.of([
|
|
235101
|
+
EditorView.decorations.of(
|
|
235102
|
+
Decoration.set(
|
|
235103
|
+
Decoration.line(
|
|
235104
|
+
{attributes: {style: "font-weight: bold"}}
|
|
235105
|
+
).range(0)
|
|
235106
|
+
)
|
|
235107
|
+
),
|
|
235108
|
+
])
|
|
235100
235109
|
});
|
|
235101
235110
|
this.#tobeEditorView.dispatch({
|
|
235102
235111
|
//effects: [tobeEffect]
|
|
@@ -349,6 +349,15 @@ export class IdeDiff extends HTMLElement {
|
|
|
349
349
|
requestAnimationFrame(() => {
|
|
350
350
|
this.#asisEditorView.dispatch({
|
|
351
351
|
//effects: [asisEffect]
|
|
352
|
+
effects: StateEffect.appendConfig.of([
|
|
353
|
+
EditorView.decorations.of(
|
|
354
|
+
Decoration.set(
|
|
355
|
+
Decoration.line(
|
|
356
|
+
{attributes: {style: "font-weight: bold"}}
|
|
357
|
+
).range(0)
|
|
358
|
+
)
|
|
359
|
+
),
|
|
360
|
+
])
|
|
352
361
|
});
|
|
353
362
|
this.#tobeEditorView.dispatch({
|
|
354
363
|
//effects: [tobeEffect]
|
package/package.json
CHANGED
|
@@ -349,6 +349,15 @@ export class IdeDiff extends HTMLElement {
|
|
|
349
349
|
requestAnimationFrame(() => {
|
|
350
350
|
this.#asisEditorView.dispatch({
|
|
351
351
|
//effects: [asisEffect]
|
|
352
|
+
effects: StateEffect.appendConfig.of([
|
|
353
|
+
EditorView.decorations.of(
|
|
354
|
+
Decoration.set(
|
|
355
|
+
Decoration.line(
|
|
356
|
+
{attributes: {style: "font-weight: bold"}}
|
|
357
|
+
).range(0)
|
|
358
|
+
)
|
|
359
|
+
),
|
|
360
|
+
])
|
|
352
361
|
});
|
|
353
362
|
this.#tobeEditorView.dispatch({
|
|
354
363
|
//effects: [tobeEffect]
|