@codemirror/view 0.19.33 → 0.19.34
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/CHANGELOG.md +6 -0
- package/dist/index.cjs +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1331,6 +1331,7 @@ class LineView extends ContentView {
|
|
|
1331
1331
|
}
|
|
1332
1332
|
else if (this.dirty & 4 /* Attrs */) {
|
|
1333
1333
|
clearAttributes(this.dom);
|
|
1334
|
+
this.dom.className = "cm-line";
|
|
1334
1335
|
this.prevAttrs = this.attrs ? null : undefined;
|
|
1335
1336
|
}
|
|
1336
1337
|
if (this.prevAttrs !== undefined) {
|
package/dist/index.js
CHANGED
|
@@ -1327,6 +1327,7 @@ class LineView extends ContentView {
|
|
|
1327
1327
|
}
|
|
1328
1328
|
else if (this.dirty & 4 /* Attrs */) {
|
|
1329
1329
|
clearAttributes(this.dom);
|
|
1330
|
+
this.dom.className = "cm-line";
|
|
1330
1331
|
this.prevAttrs = this.attrs ? null : undefined;
|
|
1331
1332
|
}
|
|
1332
1333
|
if (this.prevAttrs !== undefined) {
|