@jupyterlab/codemirror 4.1.0-rc.1 → 4.1.1
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/package.json +7 -7
- package/style/base.css +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jupyterlab/codemirror",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"description": "JupyterLab - CodeMirror Editor Provider",
|
|
5
5
|
"homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
6
6
|
"bugs": {
|
|
@@ -59,11 +59,11 @@
|
|
|
59
59
|
"@codemirror/state": "^6.2.0",
|
|
60
60
|
"@codemirror/view": "^6.9.6",
|
|
61
61
|
"@jupyter/ydoc": "^1.1.1",
|
|
62
|
-
"@jupyterlab/codeeditor": "^4.1.
|
|
63
|
-
"@jupyterlab/coreutils": "^6.1.
|
|
64
|
-
"@jupyterlab/documentsearch": "^4.1.
|
|
65
|
-
"@jupyterlab/nbformat": "^4.1.
|
|
66
|
-
"@jupyterlab/translation": "^4.1.
|
|
62
|
+
"@jupyterlab/codeeditor": "^4.1.1",
|
|
63
|
+
"@jupyterlab/coreutils": "^6.1.1",
|
|
64
|
+
"@jupyterlab/documentsearch": "^4.1.1",
|
|
65
|
+
"@jupyterlab/nbformat": "^4.1.1",
|
|
66
|
+
"@jupyterlab/translation": "^4.1.1",
|
|
67
67
|
"@lezer/common": "^1.0.2",
|
|
68
68
|
"@lezer/generator": "^1.2.2",
|
|
69
69
|
"@lezer/highlight": "^1.1.4",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"yjs": "^13.5.40"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@jupyterlab/testing": "^4.1.
|
|
77
|
+
"@jupyterlab/testing": "^4.1.1",
|
|
78
78
|
"@lezer/generator": "^1.2.2",
|
|
79
79
|
"@lezer/lr": "^1.3.3",
|
|
80
80
|
"@types/jest": "^29.2.0",
|
package/style/base.css
CHANGED
|
@@ -43,10 +43,15 @@
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
/* stylelint-disable selector-max-class */
|
|
47
|
+
|
|
48
|
+
/* We need all this classes for higher specificity to override CodeMirror's rule */
|
|
49
|
+
.cm-editor.jp-mod-readOnly > .cm-scroller > .cm-cursorLayer .cm-cursor {
|
|
47
50
|
display: none;
|
|
48
51
|
}
|
|
49
52
|
|
|
53
|
+
/* stylelint-enable selector-max-class */
|
|
54
|
+
|
|
50
55
|
.jp-CollaboratorCursor {
|
|
51
56
|
border-left: 5px solid transparent;
|
|
52
57
|
border-right: 5px solid transparent;
|