@codemirror/autocomplete 6.7.0 → 6.8.0
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 +307 -288
- package/dist/index.d.cts +557 -0
- package/dist/index.d.ts +12 -2
- package/dist/index.js +308 -289
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 6.8.0 (2023-06-12)
|
|
2
|
+
|
|
3
|
+
### New features
|
|
4
|
+
|
|
5
|
+
The result of `Completion.info` may now include a `destroy` method that will be called when the tooltip is removed.
|
|
6
|
+
|
|
7
|
+
## 6.7.1 (2023-05-13)
|
|
8
|
+
|
|
9
|
+
### Bug fixes
|
|
10
|
+
|
|
11
|
+
Fix a bug that cause incorrect ordering of completions when some results covered input text and others didn't.
|
|
12
|
+
|
|
1
13
|
## 6.7.0 (2023-05-11)
|
|
2
14
|
|
|
3
15
|
### New features
|