@ckeditor/ckeditor5-widget 35.3.1 → 35.3.2

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-widget",
3
- "version": "35.3.1",
3
+ "version": "35.3.2",
4
4
  "description": "Widget API for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -11,29 +11,29 @@
11
11
  ],
12
12
  "main": "src/index.js",
13
13
  "dependencies": {
14
- "@ckeditor/ckeditor5-core": "^35.3.1",
15
- "@ckeditor/ckeditor5-engine": "^35.3.1",
16
- "@ckeditor/ckeditor5-enter": "^35.3.1",
17
- "@ckeditor/ckeditor5-ui": "^35.3.1",
18
- "@ckeditor/ckeditor5-utils": "^35.3.1",
19
- "@ckeditor/ckeditor5-typing": "^35.3.1",
14
+ "@ckeditor/ckeditor5-core": "^35.3.2",
15
+ "@ckeditor/ckeditor5-engine": "^35.3.2",
16
+ "@ckeditor/ckeditor5-enter": "^35.3.2",
17
+ "@ckeditor/ckeditor5-ui": "^35.3.2",
18
+ "@ckeditor/ckeditor5-utils": "^35.3.2",
19
+ "@ckeditor/ckeditor5-typing": "^35.3.2",
20
20
  "lodash-es": "^4.17.15"
21
21
  },
22
22
  "devDependencies": {
23
- "@ckeditor/ckeditor5-basic-styles": "^35.3.1",
24
- "@ckeditor/ckeditor5-block-quote": "^35.3.1",
25
- "@ckeditor/ckeditor5-clipboard": "^35.3.1",
26
- "@ckeditor/ckeditor5-editor-balloon": "^35.3.1",
27
- "@ckeditor/ckeditor5-editor-classic": "^35.3.1",
28
- "@ckeditor/ckeditor5-essentials": "^35.3.1",
29
- "@ckeditor/ckeditor5-heading": "^35.3.1",
30
- "@ckeditor/ckeditor5-horizontal-line": "^35.3.1",
31
- "@ckeditor/ckeditor5-image": "^35.3.1",
32
- "@ckeditor/ckeditor5-link": "^35.3.1",
33
- "@ckeditor/ckeditor5-media-embed": "^35.3.1",
34
- "@ckeditor/ckeditor5-paragraph": "^35.3.1",
35
- "@ckeditor/ckeditor5-table": "^35.3.1",
36
- "@ckeditor/ckeditor5-undo": "^35.3.1",
23
+ "@ckeditor/ckeditor5-basic-styles": "^35.3.2",
24
+ "@ckeditor/ckeditor5-block-quote": "^35.3.2",
25
+ "@ckeditor/ckeditor5-clipboard": "^35.3.2",
26
+ "@ckeditor/ckeditor5-editor-balloon": "^35.3.2",
27
+ "@ckeditor/ckeditor5-editor-classic": "^35.3.2",
28
+ "@ckeditor/ckeditor5-essentials": "^35.3.2",
29
+ "@ckeditor/ckeditor5-heading": "^35.3.2",
30
+ "@ckeditor/ckeditor5-horizontal-line": "^35.3.2",
31
+ "@ckeditor/ckeditor5-image": "^35.3.2",
32
+ "@ckeditor/ckeditor5-link": "^35.3.2",
33
+ "@ckeditor/ckeditor5-media-embed": "^35.3.2",
34
+ "@ckeditor/ckeditor5-paragraph": "^35.3.2",
35
+ "@ckeditor/ckeditor5-table": "^35.3.2",
36
+ "@ckeditor/ckeditor5-undo": "^35.3.2",
37
37
  "typescript": "^4.8.4",
38
38
  "webpack": "^5.58.1",
39
39
  "webpack-cli": "^4.9.0"
@@ -33,6 +33,18 @@ const PLUGIN_DISABLED_EDITING_ROOT_CLASS = 'ck-widget__type-around_disabled';
33
33
  * @extends module:core/plugin~Plugin
34
34
  */
35
35
  export default class WidgetTypeAround extends Plugin {
36
+ /**
37
+ * @inheritDoc
38
+ */
39
+ static get pluginName() {
40
+ return 'WidgetTypeAround';
41
+ }
42
+ /**
43
+ * @inheritDoc
44
+ */
45
+ static get requires() {
46
+ return [Enter, Delete];
47
+ }
36
48
  /**
37
49
  * @inheritDoc
38
50
  */
@@ -48,18 +60,6 @@ export default class WidgetTypeAround extends Plugin {
48
60
  */
49
61
  this._currentFakeCaretModelElement = null;
50
62
  }
51
- /**
52
- * @inheritDoc
53
- */
54
- static get pluginName() {
55
- return 'WidgetTypeAround';
56
- }
57
- /**
58
- * @inheritDoc
59
- */
60
- static get requires() {
61
- return [Enter, Delete];
62
- }
63
63
  /**
64
64
  * @inheritDoc
65
65
  */