@ckeditor/ckeditor5-ui 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-ui",
3
- "version": "35.3.0",
3
+ "version": "35.3.2",
4
4
  "description": "The UI framework and standard UI library of 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-utils": "^35.3.0",
15
- "@ckeditor/ckeditor5-core": "^35.3.0",
14
+ "@ckeditor/ckeditor5-utils": "^35.3.2",
15
+ "@ckeditor/ckeditor5-core": "^35.3.2",
16
16
  "lodash-es": "^4.17.15"
17
17
  },
18
18
  "devDependencies": {
19
- "@ckeditor/ckeditor5-basic-styles": "^35.3.0",
20
- "@ckeditor/ckeditor5-block-quote": "^35.3.0",
21
- "@ckeditor/ckeditor5-editor-balloon": "^35.3.0",
22
- "@ckeditor/ckeditor5-editor-classic": "^35.3.0",
23
- "@ckeditor/ckeditor5-engine": "^35.3.0",
24
- "@ckeditor/ckeditor5-enter": "^35.3.0",
25
- "@ckeditor/ckeditor5-essentials": "^35.3.0",
26
- "@ckeditor/ckeditor5-font": "^35.3.0",
27
- "@ckeditor/ckeditor5-find-and-replace": "^35.3.0",
28
- "@ckeditor/ckeditor5-heading": "^35.3.0",
29
- "@ckeditor/ckeditor5-image": "^35.3.0",
30
- "@ckeditor/ckeditor5-link": "^35.3.0",
31
- "@ckeditor/ckeditor5-list": "^35.3.0",
32
- "@ckeditor/ckeditor5-mention": "^35.3.0",
33
- "@ckeditor/ckeditor5-paragraph": "^35.3.0",
34
- "@ckeditor/ckeditor5-horizontal-line": "^35.3.0",
35
- "@ckeditor/ckeditor5-table": "^35.3.0",
36
- "@ckeditor/ckeditor5-typing": "^35.3.0",
19
+ "@ckeditor/ckeditor5-basic-styles": "^35.3.2",
20
+ "@ckeditor/ckeditor5-block-quote": "^35.3.2",
21
+ "@ckeditor/ckeditor5-editor-balloon": "^35.3.2",
22
+ "@ckeditor/ckeditor5-editor-classic": "^35.3.2",
23
+ "@ckeditor/ckeditor5-engine": "^35.3.2",
24
+ "@ckeditor/ckeditor5-enter": "^35.3.2",
25
+ "@ckeditor/ckeditor5-essentials": "^35.3.2",
26
+ "@ckeditor/ckeditor5-font": "^35.3.2",
27
+ "@ckeditor/ckeditor5-find-and-replace": "^35.3.2",
28
+ "@ckeditor/ckeditor5-heading": "^35.3.2",
29
+ "@ckeditor/ckeditor5-image": "^35.3.2",
30
+ "@ckeditor/ckeditor5-link": "^35.3.2",
31
+ "@ckeditor/ckeditor5-list": "^35.3.2",
32
+ "@ckeditor/ckeditor5-mention": "^35.3.2",
33
+ "@ckeditor/ckeditor5-paragraph": "^35.3.2",
34
+ "@ckeditor/ckeditor5-horizontal-line": "^35.3.2",
35
+ "@ckeditor/ckeditor5-table": "^35.3.2",
36
+ "@ckeditor/ckeditor5-typing": "^35.3.2",
37
37
  "typescript": "^4.8.4",
38
38
  "webpack": "^5.58.1",
39
39
  "webpack-cli": "^4.9.0"
@@ -55,6 +55,12 @@ const toPx = toUnit('px');
55
55
  * @extends module:core/plugin~Plugin
56
56
  */
57
57
  export default class ContextualBalloon extends Plugin {
58
+ /**
59
+ * @inheritDoc
60
+ */
61
+ static get pluginName() {
62
+ return 'ContextualBalloon';
63
+ }
58
64
  /**
59
65
  * @inheritDoc
60
66
  */
@@ -145,12 +151,6 @@ export default class ContextualBalloon extends Plugin {
145
151
  */
146
152
  this._fakePanelsView = this._createFakePanelsView();
147
153
  }
148
- /**
149
- * @inheritDoc
150
- */
151
- static get pluginName() {
152
- return 'ContextualBalloon';
153
- }
154
154
  /**
155
155
  * @inheritDoc
156
156
  */
@@ -25,6 +25,18 @@ const toPx = toUnit('px');
25
25
  * @extends module:core/plugin~Plugin
26
26
  */
27
27
  export default class BalloonToolbar extends Plugin {
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ static get pluginName() {
32
+ return 'BalloonToolbar';
33
+ }
34
+ /**
35
+ * @inheritDoc
36
+ */
37
+ static get requires() {
38
+ return [ContextualBalloon];
39
+ }
28
40
  /**
29
41
  * @inheritDoc
30
42
  */
@@ -96,18 +108,6 @@ export default class BalloonToolbar extends Plugin {
96
108
  // It is possible to stop the #show event and this prevent the toolbar from showing up.
97
109
  this.decorate('show');
98
110
  }
99
- /**
100
- * @inheritDoc
101
- */
102
- static get pluginName() {
103
- return 'BalloonToolbar';
104
- }
105
- /**
106
- * @inheritDoc
107
- */
108
- static get requires() {
109
- return [ContextualBalloon];
110
- }
111
111
  /**
112
112
  * @inheritDoc
113
113
  */
@@ -61,6 +61,12 @@ const toPx = toUnit('px');
61
61
  * @extends module:core/plugin~Plugin
62
62
  */
63
63
  export default class BlockToolbar extends Plugin {
64
+ /**
65
+ * @inheritDoc
66
+ */
67
+ static get pluginName() {
68
+ return 'BlockToolbar';
69
+ }
64
70
  /**
65
71
  * @inheritDoc
66
72
  */
@@ -112,12 +118,6 @@ export default class BlockToolbar extends Plugin {
112
118
  callback: () => this._hidePanel()
113
119
  });
114
120
  }
115
- /**
116
- * @inheritDoc
117
- */
118
- static get pluginName() {
119
- return 'BlockToolbar';
120
- }
121
121
  /**
122
122
  * @inheritDoc
123
123
  */