@ckeditor/ckeditor5-typing 35.3.0 → 35.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-typing",
3
- "version": "35.3.0",
3
+ "version": "35.3.2",
4
4
  "description": "Typing feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,29 +12,29 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "^35.3.0",
16
- "@ckeditor/ckeditor5-engine": "^35.3.0",
17
- "@ckeditor/ckeditor5-utils": "^35.3.0",
15
+ "@ckeditor/ckeditor5-core": "^35.3.2",
16
+ "@ckeditor/ckeditor5-engine": "^35.3.2",
17
+ "@ckeditor/ckeditor5-utils": "^35.3.2",
18
18
  "lodash-es": "^4.17.15"
19
19
  },
20
20
  "devDependencies": {
21
- "@ckeditor/ckeditor5-autoformat": "^35.3.0",
22
- "@ckeditor/ckeditor5-basic-styles": "^35.3.0",
23
- "@ckeditor/ckeditor5-block-quote": "^35.3.0",
24
- "@ckeditor/ckeditor5-code-block": "^35.3.0",
25
- "@ckeditor/ckeditor5-editor-classic": "^35.3.0",
26
- "@ckeditor/ckeditor5-enter": "^35.3.0",
27
- "@ckeditor/ckeditor5-essentials": "^35.3.0",
28
- "@ckeditor/ckeditor5-heading": "^35.3.0",
29
- "@ckeditor/ckeditor5-image": "^35.3.0",
30
- "@ckeditor/ckeditor5-indent": "^35.3.0",
31
- "@ckeditor/ckeditor5-link": "^35.3.0",
32
- "@ckeditor/ckeditor5-list": "^35.3.0",
33
- "@ckeditor/ckeditor5-media-embed": "^35.3.0",
34
- "@ckeditor/ckeditor5-mention": "^35.3.0",
35
- "@ckeditor/ckeditor5-paragraph": "^35.3.0",
36
- "@ckeditor/ckeditor5-table": "^35.3.0",
37
- "@ckeditor/ckeditor5-undo": "^35.3.0",
21
+ "@ckeditor/ckeditor5-autoformat": "^35.3.2",
22
+ "@ckeditor/ckeditor5-basic-styles": "^35.3.2",
23
+ "@ckeditor/ckeditor5-block-quote": "^35.3.2",
24
+ "@ckeditor/ckeditor5-code-block": "^35.3.2",
25
+ "@ckeditor/ckeditor5-editor-classic": "^35.3.2",
26
+ "@ckeditor/ckeditor5-enter": "^35.3.2",
27
+ "@ckeditor/ckeditor5-essentials": "^35.3.2",
28
+ "@ckeditor/ckeditor5-heading": "^35.3.2",
29
+ "@ckeditor/ckeditor5-image": "^35.3.2",
30
+ "@ckeditor/ckeditor5-indent": "^35.3.2",
31
+ "@ckeditor/ckeditor5-link": "^35.3.2",
32
+ "@ckeditor/ckeditor5-list": "^35.3.2",
33
+ "@ckeditor/ckeditor5-media-embed": "^35.3.2",
34
+ "@ckeditor/ckeditor5-mention": "^35.3.2",
35
+ "@ckeditor/ckeditor5-paragraph": "^35.3.2",
36
+ "@ckeditor/ckeditor5-table": "^35.3.2",
37
+ "@ckeditor/ckeditor5-undo": "^35.3.2",
38
38
  "typescript": "^4.8.4",
39
39
  "webpack": "^5.58.1",
40
40
  "webpack-cli": "^4.9.0"
@@ -99,6 +99,12 @@ import { keyCodes } from '@ckeditor/ckeditor5-utils/src/keyboard';
99
99
  *
100
100
  */
101
101
  export default class TwoStepCaretMovement extends Plugin {
102
+ /**
103
+ * @inheritDoc
104
+ */
105
+ static get pluginName() {
106
+ return 'TwoStepCaretMovement';
107
+ }
102
108
  /**
103
109
  * @inheritDoc
104
110
  */
@@ -120,12 +126,6 @@ export default class TwoStepCaretMovement extends Plugin {
120
126
  */
121
127
  this._overrideUid = null;
122
128
  }
123
- /**
124
- * @inheritDoc
125
- */
126
- static get pluginName() {
127
- return 'TwoStepCaretMovement';
128
- }
129
129
  /**
130
130
  * @inheritDoc
131
131
  */