@codemirror/autocomplete 6.3.3 → 6.3.4

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.3.4 (2022-11-24)
2
+
3
+ ### Bug fixes
4
+
5
+ Fix an issue where completion lists could end up being higher than the tooltip they were in.
6
+
1
7
  ## 6.3.3 (2022-11-18)
2
8
 
3
9
  ### Bug fixes
package/dist/index.cjs CHANGED
@@ -1070,6 +1070,7 @@ const baseTheme = view.EditorView.baseTheme({
1070
1070
  maxWidth: "min(700px, 95vw)",
1071
1071
  minWidth: "250px",
1072
1072
  maxHeight: "10em",
1073
+ height: "100%",
1073
1074
  listStyle: "none",
1074
1075
  margin: 0,
1075
1076
  padding: 0,
package/dist/index.js CHANGED
@@ -1066,6 +1066,7 @@ const baseTheme = /*@__PURE__*/EditorView.baseTheme({
1066
1066
  maxWidth: "min(700px, 95vw)",
1067
1067
  minWidth: "250px",
1068
1068
  maxHeight: "10em",
1069
+ height: "100%",
1069
1070
  listStyle: "none",
1070
1071
  margin: 0,
1071
1072
  padding: 0,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemirror/autocomplete",
3
- "version": "6.3.3",
3
+ "version": "6.3.4",
4
4
  "description": "Autocompletion for the CodeMirror code editor",
5
5
  "scripts": {
6
6
  "test": "cm-runtests",
@@ -28,7 +28,7 @@
28
28
  "dependencies": {
29
29
  "@codemirror/language": "^6.0.0",
30
30
  "@codemirror/state": "^6.0.0",
31
- "@codemirror/view": "^6.5.0",
31
+ "@codemirror/view": "^6.6.0",
32
32
  "@lezer/common": "^1.0.0"
33
33
  },
34
34
  "peerDependencies": {