@ckeditor/ckeditor5-mention 43.2.0-alpha.7 → 43.3.0-alpha.0

Sign up to get free protection for your applications and to get access to all the features.
package/dist/mention.d.ts CHANGED
@@ -50,6 +50,10 @@ export default class Mention extends Plugin {
50
50
  * @inheritDoc
51
51
  */
52
52
  static get pluginName(): "Mention";
53
+ /**
54
+ * @inheritDoc
55
+ */
56
+ static get isOfficialPlugin(): true;
53
57
  /**
54
58
  * @inheritDoc
55
59
  */
@@ -24,6 +24,10 @@ export default class MentionEditing extends Plugin {
24
24
  * @inheritDoc
25
25
  */
26
26
  static get pluginName(): "MentionEditing";
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ static get isOfficialPlugin(): true;
27
31
  /**
28
32
  * @inheritDoc
29
33
  */
@@ -37,6 +37,10 @@ export default class MentionUI extends Plugin {
37
37
  * @inheritDoc
38
38
  */
39
39
  static get pluginName(): "MentionUI";
40
+ /**
41
+ * @inheritDoc
42
+ */
43
+ static get isOfficialPlugin(): true;
40
44
  /**
41
45
  * @inheritDoc
42
46
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-mention",
3
- "version": "43.2.0-alpha.7",
3
+ "version": "43.3.0-alpha.0",
4
4
  "description": "Mention feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,11 +13,11 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "43.2.0-alpha.7",
17
- "@ckeditor/ckeditor5-typing": "43.2.0-alpha.7",
18
- "@ckeditor/ckeditor5-ui": "43.2.0-alpha.7",
19
- "@ckeditor/ckeditor5-utils": "43.2.0-alpha.7",
20
- "ckeditor5": "43.2.0-alpha.7",
16
+ "@ckeditor/ckeditor5-core": "43.3.0-alpha.0",
17
+ "@ckeditor/ckeditor5-typing": "43.3.0-alpha.0",
18
+ "@ckeditor/ckeditor5-ui": "43.3.0-alpha.0",
19
+ "@ckeditor/ckeditor5-utils": "43.3.0-alpha.0",
20
+ "ckeditor5": "43.3.0-alpha.0",
21
21
  "lodash-es": "4.17.21"
22
22
  },
23
23
  "author": "CKSource (http://cksource.com/)",
package/src/mention.d.ts CHANGED
@@ -46,6 +46,10 @@ export default class Mention extends Plugin {
46
46
  * @inheritDoc
47
47
  */
48
48
  static get pluginName(): "Mention";
49
+ /**
50
+ * @inheritDoc
51
+ */
52
+ static get isOfficialPlugin(): true;
49
53
  /**
50
54
  * @inheritDoc
51
55
  */
package/src/mention.js CHANGED
@@ -24,6 +24,12 @@ export default class Mention extends Plugin {
24
24
  static get pluginName() {
25
25
  return 'Mention';
26
26
  }
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ static get isOfficialPlugin() {
31
+ return true;
32
+ }
27
33
  /**
28
34
  * @inheritDoc
29
35
  */
@@ -20,6 +20,10 @@ export default class MentionEditing extends Plugin {
20
20
  * @inheritDoc
21
21
  */
22
22
  static get pluginName(): "MentionEditing";
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ static get isOfficialPlugin(): true;
23
27
  /**
24
28
  * @inheritDoc
25
29
  */
@@ -22,6 +22,12 @@ export default class MentionEditing extends Plugin {
22
22
  static get pluginName() {
23
23
  return 'MentionEditing';
24
24
  }
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ static get isOfficialPlugin() {
29
+ return true;
30
+ }
25
31
  /**
26
32
  * @inheritDoc
27
33
  */
@@ -33,6 +33,10 @@ export default class MentionUI extends Plugin {
33
33
  * @inheritDoc
34
34
  */
35
35
  static get pluginName(): "MentionUI";
36
+ /**
37
+ * @inheritDoc
38
+ */
39
+ static get isOfficialPlugin(): true;
36
40
  /**
37
41
  * @inheritDoc
38
42
  */
package/src/mentionui.js CHANGED
@@ -35,6 +35,12 @@ export default class MentionUI extends Plugin {
35
35
  static get pluginName() {
36
36
  return 'MentionUI';
37
37
  }
38
+ /**
39
+ * @inheritDoc
40
+ */
41
+ static get isOfficialPlugin() {
42
+ return true;
43
+ }
38
44
  /**
39
45
  * @inheritDoc
40
46
  */