@codemirror/lint 6.8.2 → 6.8.3

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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## 6.8.3 (2024-11-21)
2
+
3
+ ### Bug fixes
4
+
5
+ Fix an issue that prevented tooltips in the lint gutter from being displayed.
6
+
1
7
  ## 6.8.2 (2024-09-24)
2
8
 
3
9
  ### Bug fixes
package/dist/index.cjs CHANGED
@@ -680,6 +680,7 @@ function gutterMarkerMouseOver(view, marker, diagnostics) {
680
680
  view.dispatch({ effects: setLintGutterTooltip.of({
681
681
  pos: line.from,
682
682
  above: false,
683
+ clip: false,
683
684
  create() {
684
685
  return {
685
686
  dom: diagnosticsTooltip(view, diagnostics),
package/dist/index.js CHANGED
@@ -678,6 +678,7 @@ function gutterMarkerMouseOver(view, marker, diagnostics) {
678
678
  view.dispatch({ effects: setLintGutterTooltip.of({
679
679
  pos: line.from,
680
680
  above: false,
681
+ clip: false,
681
682
  create() {
682
683
  return {
683
684
  dom: diagnosticsTooltip(view, diagnostics),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemirror/lint",
3
- "version": "6.8.2",
3
+ "version": "6.8.3",
4
4
  "description": "Linting support for the CodeMirror code editor",
5
5
  "scripts": {
6
6
  "test": "cm-runtests",
@@ -27,7 +27,7 @@
27
27
  "license": "MIT",
28
28
  "dependencies": {
29
29
  "@codemirror/state": "^6.0.0",
30
- "@codemirror/view": "^6.0.0",
30
+ "@codemirror/view": "^6.35.0",
31
31
  "crelt": "^1.0.5"
32
32
  },
33
33
  "devDependencies": {