@ckeditor/ckeditor5-mention 48.1.1 → 48.2.0-alpha.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/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/mentionconfig.d.ts +6 -6
- package/package.json +6 -6
package/dist/mentionconfig.d.ts
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*
|
|
13
13
|
* ```ts
|
|
14
14
|
* ClassicEditor
|
|
15
|
-
* .create(
|
|
15
|
+
* .create( {
|
|
16
16
|
* mention: ... // Mention feature options.
|
|
17
17
|
* } )
|
|
18
18
|
* .then( ... )
|
|
@@ -27,7 +27,7 @@ export interface MentionConfig {
|
|
|
27
27
|
*
|
|
28
28
|
* ```ts
|
|
29
29
|
* ClassicEditor
|
|
30
|
-
* .create(
|
|
30
|
+
* .create( {
|
|
31
31
|
* plugins: [ Mention, ... ],
|
|
32
32
|
* mention: {
|
|
33
33
|
* feeds: [
|
|
@@ -52,7 +52,7 @@ export interface MentionConfig {
|
|
|
52
52
|
*
|
|
53
53
|
* ```ts
|
|
54
54
|
* ClassicEditor
|
|
55
|
-
* .create(
|
|
55
|
+
* .create( {
|
|
56
56
|
* plugins: [ Mention, ... ],
|
|
57
57
|
* mention: {
|
|
58
58
|
* // [ Enter, Space ]
|
|
@@ -83,7 +83,7 @@ export interface MentionConfig {
|
|
|
83
83
|
*
|
|
84
84
|
* ```ts
|
|
85
85
|
* ClassicEditor
|
|
86
|
-
* .create(
|
|
86
|
+
* .create( {
|
|
87
87
|
* plugins: [ Mention, ... ],
|
|
88
88
|
* mention: {
|
|
89
89
|
* dropdownLimit: 20,
|
|
@@ -97,7 +97,7 @@ export interface MentionConfig {
|
|
|
97
97
|
* .catch( ... );
|
|
98
98
|
*
|
|
99
99
|
* ClassicEditor
|
|
100
|
-
* .create(
|
|
100
|
+
* .create( {
|
|
101
101
|
* plugins: [ Mention, ... ],
|
|
102
102
|
* mention: {
|
|
103
103
|
* dropdownLimit: Infinity,
|
|
@@ -208,7 +208,7 @@ export type MentionItemRenderer = (item: MentionFeedObjectItem) => HTMLElement |
|
|
|
208
208
|
*
|
|
209
209
|
* ```ts
|
|
210
210
|
* ClassicEditor
|
|
211
|
-
* .create(
|
|
211
|
+
* .create( {
|
|
212
212
|
* plugins: [ Mention, ... ],
|
|
213
213
|
* mention: {
|
|
214
214
|
* feeds: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-mention",
|
|
3
|
-
"version": "48.
|
|
3
|
+
"version": "48.2.0-alpha.1",
|
|
4
4
|
"description": "Mention feature for CKEditor 5.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@ckeditor/ckeditor5-core": "48.
|
|
30
|
-
"@ckeditor/ckeditor5-engine": "48.
|
|
31
|
-
"@ckeditor/ckeditor5-typing": "48.
|
|
32
|
-
"@ckeditor/ckeditor5-ui": "48.
|
|
33
|
-
"@ckeditor/ckeditor5-utils": "48.
|
|
29
|
+
"@ckeditor/ckeditor5-core": "48.2.0-alpha.1",
|
|
30
|
+
"@ckeditor/ckeditor5-engine": "48.2.0-alpha.1",
|
|
31
|
+
"@ckeditor/ckeditor5-typing": "48.2.0-alpha.1",
|
|
32
|
+
"@ckeditor/ckeditor5-ui": "48.2.0-alpha.1",
|
|
33
|
+
"@ckeditor/ckeditor5-utils": "48.2.0-alpha.1",
|
|
34
34
|
"es-toolkit": "1.45.1"
|
|
35
35
|
},
|
|
36
36
|
"files": [
|