@ckeditor/ckeditor5-widget 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 +21 -21
- package/src/widgettypearound/widgettypearound.js +12 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-widget",
|
|
3
|
-
"version": "35.3.
|
|
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.
|
|
15
|
-
"@ckeditor/ckeditor5-engine": "^35.3.
|
|
16
|
-
"@ckeditor/ckeditor5-enter": "^35.3.
|
|
17
|
-
"@ckeditor/ckeditor5-ui": "^35.3.
|
|
18
|
-
"@ckeditor/ckeditor5-utils": "^35.3.
|
|
19
|
-
"@ckeditor/ckeditor5-typing": "^35.3.
|
|
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.
|
|
24
|
-
"@ckeditor/ckeditor5-block-quote": "^35.3.
|
|
25
|
-
"@ckeditor/ckeditor5-clipboard": "^35.3.
|
|
26
|
-
"@ckeditor/ckeditor5-editor-balloon": "^35.3.
|
|
27
|
-
"@ckeditor/ckeditor5-editor-classic": "^35.3.
|
|
28
|
-
"@ckeditor/ckeditor5-essentials": "^35.3.
|
|
29
|
-
"@ckeditor/ckeditor5-heading": "^35.3.
|
|
30
|
-
"@ckeditor/ckeditor5-horizontal-line": "^35.3.
|
|
31
|
-
"@ckeditor/ckeditor5-image": "^35.3.
|
|
32
|
-
"@ckeditor/ckeditor5-link": "^35.3.
|
|
33
|
-
"@ckeditor/ckeditor5-media-embed": "^35.3.
|
|
34
|
-
"@ckeditor/ckeditor5-paragraph": "^35.3.
|
|
35
|
-
"@ckeditor/ckeditor5-table": "^35.3.
|
|
36
|
-
"@ckeditor/ckeditor5-undo": "^35.3.
|
|
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
|
*/
|