@codemirror/autocomplete 6.7.1 → 6.8.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/CHANGELOG.md +12 -0
- package/dist/index.cjs +309 -291
- package/dist/index.d.cts +557 -0
- package/dist/index.d.ts +12 -2
- package/dist/index.js +310 -292
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 6.8.1 (2023-06-23)
|
|
2
|
+
|
|
3
|
+
### Bug fixes
|
|
4
|
+
|
|
5
|
+
`acceptCompletion` now returns false (allowing other handlers to take effect) when the completion popup is open but disabled.
|
|
6
|
+
|
|
7
|
+
## 6.8.0 (2023-06-12)
|
|
8
|
+
|
|
9
|
+
### New features
|
|
10
|
+
|
|
11
|
+
The result of `Completion.info` may now include a `destroy` method that will be called when the tooltip is removed.
|
|
12
|
+
|
|
1
13
|
## 6.7.1 (2023-05-13)
|
|
2
14
|
|
|
3
15
|
### Bug fixes
|