@ckeditor/ckeditor5-mention 0.0.0-nightly-20240117.0 → 0.0.0-nightly-20240119.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +5 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -22,7 +22,7 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
22
22
|
|
23
23
|
### Features
|
24
24
|
|
25
|
-
* Implemented
|
25
|
+
* Implemented a debounce mechanism for requesting a mention feed. Closes [ckeditor/ckeditor5#4619](https://github.com/ckeditor/ckeditor5/issues/4619). ([f50db9c](https://github.com/ckeditor/ckeditor5-mention/commit/f50db9c))
|
26
26
|
|
27
27
|
|
28
28
|
## [16.0.0](https://github.com/ckeditor/ckeditor5-mention/compare/v15.0.0...v16.0.0) (December 4, 2019)
|
@@ -44,11 +44,11 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
44
44
|
### Other changes
|
45
45
|
|
46
46
|
* The issue tracker for this package was moved to https://github.com/ckeditor/ckeditor5/issues. See [ckeditor/ckeditor5#1988](https://github.com/ckeditor/ckeditor5/issues/1988). ([2a33675](https://github.com/ckeditor/ckeditor5-mention/commit/2a33675))
|
47
|
-
* Use RegExp Unicode support feature detection
|
47
|
+
* Use RegExp Unicode support feature detection from `ckeditor5-utils`. ([d47923e](https://github.com/ckeditor/ckeditor5-mention/commit/d47923e))
|
48
48
|
|
49
49
|
### BREAKING CHANGES
|
50
50
|
|
51
|
-
* The `mention/featuredetection` namespace is removed.
|
51
|
+
* The `mention/featuredetection` namespace is removed. Use `env.features` from `ckeditor5-utils` instead.
|
52
52
|
|
53
53
|
|
54
54
|
## [12.0.1](https://github.com/ckeditor/ckeditor5-mention/compare/v12.0.0...v12.0.1) (July 10, 2019)
|
@@ -66,11 +66,11 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
66
66
|
|
67
67
|
### Other changes
|
68
68
|
|
69
|
-
* Moved the `TextWatcher`
|
69
|
+
* Moved the `TextWatcher` utility to `@ckeditor/ckeditor5-typing`. ([a644043](https://github.com/ckeditor/ckeditor5-mention/commit/a644043))
|
70
70
|
|
71
71
|
### BREAKING CHANGES
|
72
72
|
|
73
|
-
* The `TextWatcher`
|
73
|
+
* The `TextWatcher` utility was moved to `@ckeditor/ckeditor5-typing`.
|
74
74
|
|
75
75
|
|
76
76
|
## [11.0.0](https://github.com/ckeditor/ckeditor5-mention/compare/v10.0.0...v11.0.0) (June 6, 2019)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-mention",
|
3
|
-
"version": "0.0.0-nightly-
|
3
|
+
"version": "0.0.0-nightly-20240119.0",
|
4
4
|
"description": "Mention feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"type": "module",
|
14
14
|
"main": "src/index.js",
|
15
15
|
"dependencies": {
|
16
|
-
"ckeditor5": "0.0.0-nightly-
|
16
|
+
"ckeditor5": "0.0.0-nightly-20240119.0",
|
17
17
|
"lodash-es": "4.17.21"
|
18
18
|
},
|
19
19
|
"author": "CKSource (http://cksource.com/)",
|