@ckeditor/ckeditor5-enter 37.0.0-alpha.3 → 37.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-enter",
3
- "version": "37.0.0-alpha.3",
3
+ "version": "37.0.0",
4
4
  "description": "Enter feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,23 +12,23 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
16
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3"
15
+ "@ckeditor/ckeditor5-core": "^37.0.0",
16
+ "@ckeditor/ckeditor5-engine": "^37.0.0"
17
17
  },
18
18
  "devDependencies": {
19
- "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3",
20
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
21
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.3",
22
- "@ckeditor/ckeditor5-link": "^37.0.0-alpha.3",
23
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
24
- "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3",
25
- "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.3",
19
+ "@ckeditor/ckeditor5-basic-styles": "^37.0.0",
20
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0",
21
+ "@ckeditor/ckeditor5-heading": "^37.0.0",
22
+ "@ckeditor/ckeditor5-link": "^37.0.0",
23
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0",
24
+ "@ckeditor/ckeditor5-typing": "^37.0.0",
25
+ "@ckeditor/ckeditor5-undo": "^37.0.0",
26
26
  "typescript": "^4.8.4",
27
27
  "webpack": "^5.58.1",
28
28
  "webpack-cli": "^4.9.0"
29
29
  },
30
30
  "engines": {
31
- "node": ">=14.0.0",
31
+ "node": ">=16.0.0",
32
32
  "npm": ">=5.7.1"
33
33
  },
34
34
  "author": "CKSource (http://cksource.com/)",
@@ -18,6 +18,10 @@ export default class EnterObserver extends Observer {
18
18
  * @inheritDoc
19
19
  */
20
20
  observe(): void;
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ stopObserving(): void;
21
25
  }
22
26
  /**
23
27
  * Fired when the user presses the <kbd>Enter</kbd> key.
@@ -44,4 +44,8 @@ export default class EnterObserver extends Observer {
44
44
  * @inheritDoc
45
45
  */
46
46
  observe() { }
47
+ /**
48
+ * @inheritDoc
49
+ */
50
+ stopObserving() { }
47
51
  }