@ckeditor/ckeditor5-clipboard 38.0.0 → 38.1.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-clipboard",
3
- "version": "38.0.0",
3
+ "version": "38.1.0",
4
4
  "description": "Clipboard integration feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,52 +12,13 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "^38.0.0",
16
- "@ckeditor/ckeditor5-engine": "^38.0.0",
17
- "@ckeditor/ckeditor5-ui": "^38.0.0",
18
- "@ckeditor/ckeditor5-utils": "^38.0.0",
19
- "@ckeditor/ckeditor5-widget": "^38.0.0",
15
+ "@ckeditor/ckeditor5-core": "38.1.0",
16
+ "@ckeditor/ckeditor5-engine": "38.1.0",
17
+ "@ckeditor/ckeditor5-ui": "38.1.0",
18
+ "@ckeditor/ckeditor5-utils": "38.1.0",
19
+ "@ckeditor/ckeditor5-widget": "38.1.0",
20
20
  "lodash-es": "^4.17.15"
21
21
  },
22
- "devDependencies": {
23
- "@ckeditor/ckeditor5-alignment": "^38.0.0",
24
- "@ckeditor/ckeditor5-autoformat": "^38.0.0",
25
- "@ckeditor/ckeditor5-basic-styles": "^38.0.0",
26
- "@ckeditor/ckeditor5-block-quote": "^38.0.0",
27
- "@ckeditor/ckeditor5-cloud-services": "^38.0.0",
28
- "@ckeditor/ckeditor5-code-block": "^38.0.0",
29
- "@ckeditor/ckeditor5-easy-image": "^38.0.0",
30
- "@ckeditor/ckeditor5-editor-balloon": "^38.0.0",
31
- "@ckeditor/ckeditor5-editor-classic": "^38.0.0",
32
- "@ckeditor/ckeditor5-editor-decoupled": "^38.0.0",
33
- "@ckeditor/ckeditor5-enter": "^38.0.0",
34
- "@ckeditor/ckeditor5-essentials": "^38.0.0",
35
- "@ckeditor/ckeditor5-find-and-replace": "^38.0.0",
36
- "@ckeditor/ckeditor5-font": "^38.0.0",
37
- "@ckeditor/ckeditor5-heading": "^38.0.0",
38
- "@ckeditor/ckeditor5-highlight": "^38.0.0",
39
- "@ckeditor/ckeditor5-horizontal-line": "^38.0.0",
40
- "@ckeditor/ckeditor5-html-embed": "^38.0.0",
41
- "@ckeditor/ckeditor5-html-support": "^38.0.0",
42
- "@ckeditor/ckeditor5-image": "^38.0.0",
43
- "@ckeditor/ckeditor5-indent": "^38.0.0",
44
- "@ckeditor/ckeditor5-language": "^38.0.0",
45
- "@ckeditor/ckeditor5-link": "^38.0.0",
46
- "@ckeditor/ckeditor5-list": "^38.0.0",
47
- "@ckeditor/ckeditor5-mention": "^38.0.0",
48
- "@ckeditor/ckeditor5-page-break": "^38.0.0",
49
- "@ckeditor/ckeditor5-paragraph": "^38.0.0",
50
- "@ckeditor/ckeditor5-paste-from-office": "^38.0.0",
51
- "@ckeditor/ckeditor5-remove-format": "^38.0.0",
52
- "@ckeditor/ckeditor5-source-editing": "^38.0.0",
53
- "@ckeditor/ckeditor5-style": "^38.0.0",
54
- "@ckeditor/ckeditor5-table": "^38.0.0",
55
- "@ckeditor/ckeditor5-typing": "^38.0.0",
56
- "@ckeditor/ckeditor5-undo": "^38.0.0",
57
- "typescript": "^4.8.4",
58
- "webpack": "^5.58.1",
59
- "webpack-cli": "^4.9.0"
60
- },
61
22
  "engines": {
62
23
  "node": ">=16.0.0",
63
24
  "npm": ">=5.7.1"
@@ -79,9 +40,5 @@
79
40
  "ckeditor5-metadata.json",
80
41
  "CHANGELOG.md"
81
42
  ],
82
- "scripts": {
83
- "build": "tsc -p ./tsconfig.json",
84
- "postversion": "npm run build"
85
- },
86
43
  "types": "src/index.d.ts"
87
44
  }
@@ -23,7 +23,7 @@ export default class Clipboard extends Plugin {
23
23
  /**
24
24
  * @inheritDoc
25
25
  */
26
- static get pluginName(): 'Clipboard';
26
+ static get pluginName(): "Clipboard";
27
27
  /**
28
28
  * @inheritDoc
29
29
  */
@@ -72,7 +72,7 @@ export default class ClipboardPipeline extends Plugin {
72
72
  /**
73
73
  * @inheritDoc
74
74
  */
75
- static get pluginName(): 'ClipboardPipeline';
75
+ static get pluginName(): "ClipboardPipeline";
76
76
  /**
77
77
  * @inheritDoc
78
78
  */
package/src/dragdrop.d.ts CHANGED
@@ -44,7 +44,7 @@ export default class DragDrop extends Plugin {
44
44
  /**
45
45
  * @inheritDoc
46
46
  */
47
- static get pluginName(): 'DragDrop';
47
+ static get pluginName(): "DragDrop";
48
48
  /**
49
49
  * @inheritDoc
50
50
  */
@@ -23,7 +23,7 @@ export default class DragDropBlockToolbar extends Plugin {
23
23
  /**
24
24
  * @inheritDoc
25
25
  */
26
- static get pluginName(): 'DragDropBlockToolbar';
26
+ static get pluginName(): "DragDropBlockToolbar";
27
27
  /**
28
28
  * @inheritDoc
29
29
  */
@@ -51,7 +51,7 @@ export default class DragDropExperimental extends Plugin {
51
51
  /**
52
52
  * @inheritDoc
53
53
  */
54
- static get pluginName(): 'DragDropExperimental';
54
+ static get pluginName(): "DragDropExperimental";
55
55
  /**
56
56
  * @inheritDoc
57
57
  */
@@ -42,7 +42,7 @@ export default class DragDropTarget extends Plugin {
42
42
  /**
43
43
  * @inheritDoc
44
44
  */
45
- static get pluginName(): 'DragDropTarget';
45
+ static get pluginName(): "DragDropTarget";
46
46
  /**
47
47
  * @inheritDoc
48
48
  */
@@ -16,7 +16,7 @@ export default class PastePlainText extends Plugin {
16
16
  /**
17
17
  * @inheritDoc
18
18
  */
19
- static get pluginName(): 'PastePlainText';
19
+ static get pluginName(): "PastePlainText";
20
20
  /**
21
21
  * @inheritDoc
22
22
  */