@ckeditor/ckeditor5-typing 43.2.0 → 43.3.0-alpha.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/dist/input.d.ts CHANGED
@@ -22,6 +22,10 @@ export default class Input extends Plugin {
22
22
  * @inheritDoc
23
23
  */
24
24
  static get pluginName(): "Input";
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ static get isOfficialPlugin(): true;
25
29
  /**
26
30
  * @inheritDoc
27
31
  */
@@ -22,6 +22,10 @@ export default class TextTransformation extends Plugin {
22
22
  * @inheritDoc
23
23
  */
24
24
  static get pluginName(): "TextTransformation";
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ static get isOfficialPlugin(): true;
25
29
  /**
26
30
  * @inheritDoc
27
31
  */
@@ -153,6 +153,10 @@ export default class TwoStepCaretMovement extends Plugin {
153
153
  * @inheritDoc
154
154
  */
155
155
  static get pluginName(): "TwoStepCaretMovement";
156
+ /**
157
+ * @inheritDoc
158
+ */
159
+ static get isOfficialPlugin(): true;
156
160
  /**
157
161
  * @inheritDoc
158
162
  */
package/dist/typing.d.ts CHANGED
@@ -24,4 +24,8 @@ export default class Typing extends Plugin {
24
24
  * @inheritDoc
25
25
  */
26
26
  static get pluginName(): "Typing";
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ static get isOfficialPlugin(): true;
27
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-typing",
3
- "version": "43.2.0",
3
+ "version": "43.3.0-alpha.0",
4
4
  "description": "Typing feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,9 +13,9 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "43.2.0",
17
- "@ckeditor/ckeditor5-engine": "43.2.0",
18
- "@ckeditor/ckeditor5-utils": "43.2.0",
16
+ "@ckeditor/ckeditor5-core": "43.3.0-alpha.0",
17
+ "@ckeditor/ckeditor5-engine": "43.3.0-alpha.0",
18
+ "@ckeditor/ckeditor5-utils": "43.3.0-alpha.0",
19
19
  "lodash-es": "4.17.21"
20
20
  },
21
21
  "author": "CKSource (http://cksource.com/)",
package/src/delete.d.ts CHANGED
@@ -19,6 +19,10 @@ export default class Delete extends Plugin {
19
19
  * @inheritDoc
20
20
  */
21
21
  static get pluginName(): "Delete";
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get isOfficialPlugin(): true;
22
26
  /**
23
27
  * @inheritDoc
24
28
  */
package/src/delete.js CHANGED
@@ -19,6 +19,12 @@ export default class Delete extends Plugin {
19
19
  static get pluginName() {
20
20
  return 'Delete';
21
21
  }
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ static get isOfficialPlugin() {
26
+ return true;
27
+ }
22
28
  /**
23
29
  * @inheritDoc
24
30
  */
package/src/input.d.ts CHANGED
@@ -18,6 +18,10 @@ export default class Input extends Plugin {
18
18
  * @inheritDoc
19
19
  */
20
20
  static get pluginName(): "Input";
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ static get isOfficialPlugin(): true;
21
25
  /**
22
26
  * @inheritDoc
23
27
  */
package/src/input.js CHANGED
@@ -21,6 +21,12 @@ export default class Input extends Plugin {
21
21
  static get pluginName() {
22
22
  return 'Input';
23
23
  }
24
+ /**
25
+ * @inheritDoc
26
+ */
27
+ static get isOfficialPlugin() {
28
+ return true;
29
+ }
24
30
  /**
25
31
  * @inheritDoc
26
32
  */
@@ -18,6 +18,10 @@ export default class TextTransformation extends Plugin {
18
18
  * @inheritDoc
19
19
  */
20
20
  static get pluginName(): "TextTransformation";
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ static get isOfficialPlugin(): true;
21
25
  /**
22
26
  * @inheritDoc
23
27
  */
@@ -74,6 +74,12 @@ export default class TextTransformation extends Plugin {
74
74
  static get pluginName() {
75
75
  return 'TextTransformation';
76
76
  }
77
+ /**
78
+ * @inheritDoc
79
+ */
80
+ static get isOfficialPlugin() {
81
+ return true;
82
+ }
77
83
  /**
78
84
  * @inheritDoc
79
85
  */
@@ -149,6 +149,10 @@ export default class TwoStepCaretMovement extends Plugin {
149
149
  * @inheritDoc
150
150
  */
151
151
  static get pluginName(): "TwoStepCaretMovement";
152
+ /**
153
+ * @inheritDoc
154
+ */
155
+ static get isOfficialPlugin(): true;
152
156
  /**
153
157
  * @inheritDoc
154
158
  */
@@ -138,6 +138,12 @@ export default class TwoStepCaretMovement extends Plugin {
138
138
  static get pluginName() {
139
139
  return 'TwoStepCaretMovement';
140
140
  }
141
+ /**
142
+ * @inheritDoc
143
+ */
144
+ static get isOfficialPlugin() {
145
+ return true;
146
+ }
141
147
  /**
142
148
  * @inheritDoc
143
149
  */
package/src/typing.d.ts CHANGED
@@ -20,4 +20,8 @@ export default class Typing extends Plugin {
20
20
  * @inheritDoc
21
21
  */
22
22
  static get pluginName(): "Typing";
23
+ /**
24
+ * @inheritDoc
25
+ */
26
+ static get isOfficialPlugin(): true;
23
27
  }
package/src/typing.js CHANGED
@@ -24,4 +24,10 @@ export default class Typing extends Plugin {
24
24
  static get pluginName() {
25
25
  return 'Typing';
26
26
  }
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ static get isOfficialPlugin() {
31
+ return true;
32
+ }
27
33
  }