@ckeditor/ckeditor5-essentials 28.0.0 → 30.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/README.md +2 -2
- package/ckeditor5-metadata.json +27 -0
- package/package.json +16 -14
- package/CHANGELOG.md +0 -159
- package/build/essentials.js.map +0 -1
package/README.md
CHANGED
|
@@ -2,8 +2,8 @@ CKEditor 5 essentials plugin
|
|
|
2
2
|
========================================
|
|
3
3
|
|
|
4
4
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-essentials)
|
|
5
|
-
[](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
|
6
|
+
[](https://travis-ci.com/ckeditor/ckeditor5)
|
|
7
7
|
|
|
8
8
|
Essential editing features for CKEditor 5 wrapped in one plugin.
|
|
9
9
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"plugins": [
|
|
3
|
+
{
|
|
4
|
+
"name": "Essentials",
|
|
5
|
+
"className": "Essentials",
|
|
6
|
+
"description": "Includes all essential editing features like the clipboard, <kbd>Enter</kbd> and <kbd>Shift</kbd>+<kbd>Enter</kbd> keystrokes, typing and the undo support.",
|
|
7
|
+
"path": "src/essentials.js",
|
|
8
|
+
"uiComponents": [
|
|
9
|
+
{
|
|
10
|
+
"type": "Button",
|
|
11
|
+
"name": "undo",
|
|
12
|
+
"iconPath": "@ckeditor/ckeditor5-undo/theme/icons/undo.svg"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"type": "Button",
|
|
16
|
+
"name": "redo",
|
|
17
|
+
"iconPath": "@ckeditor/ckeditor5-undo/theme/icons/redo.svg"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"htmlOutput": [
|
|
21
|
+
{
|
|
22
|
+
"elements": "br"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
package/package.json
CHANGED
|
@@ -1,29 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-essentials",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "30.0.0",
|
|
4
4
|
"description": "Essential editing features for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
7
7
|
"ckeditor5",
|
|
8
8
|
"ckeditor 5",
|
|
9
9
|
"ckeditor5-feature",
|
|
10
|
-
"ckeditor5-plugin"
|
|
10
|
+
"ckeditor5-plugin",
|
|
11
|
+
"ckeditor5-dll"
|
|
11
12
|
],
|
|
12
13
|
"main": "src/index.js",
|
|
13
14
|
"dependencies": {
|
|
14
|
-
"ckeditor5": "^
|
|
15
|
+
"ckeditor5": "^30.0.0"
|
|
15
16
|
},
|
|
16
17
|
"devDependencies": {
|
|
17
|
-
"@ckeditor/ckeditor5-clipboard": "^
|
|
18
|
-
"@ckeditor/ckeditor5-core": "^
|
|
19
|
-
"@ckeditor/ckeditor5-dev-utils": "^25.
|
|
20
|
-
"@ckeditor/ckeditor5-editor-classic": "^
|
|
21
|
-
"@ckeditor/ckeditor5-enter": "^
|
|
22
|
-
"@ckeditor/ckeditor5-paragraph": "^
|
|
23
|
-
"@ckeditor/ckeditor5-select-all": "^
|
|
24
|
-
"@ckeditor/ckeditor5-theme-lark": "^
|
|
25
|
-
"@ckeditor/ckeditor5-typing": "^
|
|
26
|
-
"@ckeditor/ckeditor5-undo": "^
|
|
18
|
+
"@ckeditor/ckeditor5-clipboard": "^30.0.0",
|
|
19
|
+
"@ckeditor/ckeditor5-core": "^30.0.0",
|
|
20
|
+
"@ckeditor/ckeditor5-dev-utils": "^25.4.0",
|
|
21
|
+
"@ckeditor/ckeditor5-editor-classic": "^30.0.0",
|
|
22
|
+
"@ckeditor/ckeditor5-enter": "^30.0.0",
|
|
23
|
+
"@ckeditor/ckeditor5-paragraph": "^30.0.0",
|
|
24
|
+
"@ckeditor/ckeditor5-select-all": "^30.0.0",
|
|
25
|
+
"@ckeditor/ckeditor5-theme-lark": "^30.0.0",
|
|
26
|
+
"@ckeditor/ckeditor5-typing": "^30.0.0",
|
|
27
|
+
"@ckeditor/ckeditor5-undo": "^30.0.0",
|
|
27
28
|
"webpack": "^4.43.0",
|
|
28
29
|
"webpack-cli": "^3.3.11"
|
|
29
30
|
},
|
|
@@ -44,7 +45,8 @@
|
|
|
44
45
|
"lang",
|
|
45
46
|
"src",
|
|
46
47
|
"theme",
|
|
47
|
-
"build"
|
|
48
|
+
"build",
|
|
49
|
+
"ckeditor5-metadata.json"
|
|
48
50
|
],
|
|
49
51
|
"scripts": {
|
|
50
52
|
"dll:build": "webpack"
|
package/CHANGELOG.md
DELETED
|
@@ -1,159 +0,0 @@
|
|
|
1
|
-
Changelog
|
|
2
|
-
=========
|
|
3
|
-
|
|
4
|
-
All changes in the package are documented in the main repository. See: https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md.
|
|
5
|
-
|
|
6
|
-
Changes for the past releases are available below.
|
|
7
|
-
|
|
8
|
-
## [19.0.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v18.0.0...v19.0.0) (2020-04-29)
|
|
9
|
-
|
|
10
|
-
### Features
|
|
11
|
-
|
|
12
|
-
* Added the [`SelectAll`](https://ckeditor.com/docs/ckeditor5/latest/api/module_select-all_selectall-SelectAll.html) plugin to the list of essential editor features (see [ckeditor/ckeditor5#6536](https://github.com/ckeditor/ckeditor5/issues/6536)). ([253d4a0](https://github.com/ckeditor/ckeditor5-essentials/commit/253d4a0))
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
## [18.0.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v17.0.0...v18.0.0) (2020-03-19)
|
|
16
|
-
|
|
17
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
## [17.0.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v16.0.0...v17.0.0) (2020-02-19)
|
|
21
|
-
|
|
22
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
## [16.0.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v15.0.0...v16.0.0) (2019-12-04)
|
|
26
|
-
|
|
27
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
## [15.0.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v11.0.5...v15.0.0) (2019-10-23)
|
|
31
|
-
|
|
32
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
## [11.0.5](https://github.com/ckeditor/ckeditor5-essentials/compare/v11.0.4...v11.0.5) (2019-08-26)
|
|
36
|
-
|
|
37
|
-
### Other changes
|
|
38
|
-
|
|
39
|
-
* The issue tracker for this package was moved to https://github.com/ckeditor/ckeditor5/issues. See [ckeditor/ckeditor5#1988](https://github.com/ckeditor/ckeditor5/issues/1988). ([7bba679](https://github.com/ckeditor/ckeditor5-essentials/commit/7bba679))
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
## [11.0.4](https://github.com/ckeditor/ckeditor5-essentials/compare/v11.0.3...v11.0.4) (2019-07-10)
|
|
43
|
-
|
|
44
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
## [11.0.3](https://github.com/ckeditor/ckeditor5-essentials/compare/v11.0.2...v11.0.3) (2019-07-04)
|
|
48
|
-
|
|
49
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
## [11.0.2](https://github.com/ckeditor/ckeditor5-essentials/compare/v11.0.1...v11.0.2) (2019-06-05)
|
|
53
|
-
|
|
54
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
## [11.0.1](https://github.com/ckeditor/ckeditor5-essentials/compare/v11.0.0...v11.0.1) (2019-04-10)
|
|
58
|
-
|
|
59
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
## [11.0.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v10.1.3...v11.0.0) (2019-02-28)
|
|
63
|
-
|
|
64
|
-
### BREAKING CHANGES
|
|
65
|
-
|
|
66
|
-
* Upgraded minimal versions of Node to `8.0.0` and npm to `5.7.1`. See: [ckeditor/ckeditor5#1507](https://github.com/ckeditor/ckeditor5/issues/1507). ([612ea3c](https://github.com/ckeditor/ckeditor5-cloud-services/commit/612ea3c))
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
## [10.1.3](https://github.com/ckeditor/ckeditor5-essentials/compare/v10.1.2...v10.1.3) (2018-12-05)
|
|
70
|
-
|
|
71
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
## [10.1.2](https://github.com/ckeditor/ckeditor5-essentials/compare/v10.1.1...v10.1.2) (2018-10-08)
|
|
75
|
-
|
|
76
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
## [10.1.1](https://github.com/ckeditor/ckeditor5-essentials/compare/v10.1.0...v10.1.1) (2018-07-18)
|
|
80
|
-
|
|
81
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
## [10.1.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v10.0.0...v10.1.0) (2018-06-21)
|
|
85
|
-
|
|
86
|
-
### Features
|
|
87
|
-
|
|
88
|
-
* Introduced soft breaks support in the `Essential` plugin. Closes [#6](https://github.com/ckeditor/ckeditor5-essentials/issues/6). ([47c9c8c](https://github.com/ckeditor/ckeditor5-essentials/commit/47c9c8c))
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
## [10.0.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v1.0.0-beta.4...v10.0.0) (2018-04-25)
|
|
92
|
-
|
|
93
|
-
### Other changes
|
|
94
|
-
|
|
95
|
-
* Changed the license to GPL2+ only. See [ckeditor/ckeditor5#991](https://github.com/ckeditor/ckeditor5/issues/991). ([570bbb9](https://github.com/ckeditor/ckeditor5-essentials/commit/570bbb9))
|
|
96
|
-
|
|
97
|
-
### BREAKING CHANGES
|
|
98
|
-
|
|
99
|
-
* The license under which CKEditor 5 is released has been changed from a triple GPL, LGPL and MPL license to a GPL2+ only. See [ckeditor/ckeditor5#991](https://github.com/ckeditor/ckeditor5/issues/991) for more information.
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
## [1.0.0-beta.4](https://github.com/ckeditor/ckeditor5-essentials/compare/v1.0.0-beta.2...v1.0.0-beta.4) (2018-04-19)
|
|
103
|
-
|
|
104
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
## [1.0.0-beta.2](https://github.com/ckeditor/ckeditor5-essentials/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2018-04-10)
|
|
108
|
-
|
|
109
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
## [1.0.0-beta.1](https://github.com/ckeditor/ckeditor5-essentials/compare/v1.0.0-alpha.2...v1.0.0-beta.1) (2018-03-15)
|
|
113
|
-
|
|
114
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
## [1.0.0-alpha.2](https://github.com/ckeditor/ckeditor5-essentials/compare/v1.0.0-alpha.1...v1.0.0-alpha.2) (2017-11-14)
|
|
118
|
-
|
|
119
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
120
|
-
|
|
121
|
-
## [1.0.0-alpha.1](https://github.com/ckeditor/ckeditor5-essentials/compare/v0.3.0...v1.0.0-alpha.1) (2017-10-03)
|
|
122
|
-
|
|
123
|
-
### Other changes
|
|
124
|
-
|
|
125
|
-
* The `Article` plugin became a `@ckeditor/ckeditor5-core`'s test util. See [#1](https://github.com/ckeditor/ckeditor5-essentials/issues/1). ([c0bbd28](https://github.com/ckeditor/ckeditor5-essentials/commit/c0bbd28))
|
|
126
|
-
* This package was renamed from `@ckeditor/ckeditor-presets` to `@ckeditor/ckeditor5-essentials`. The `Article` preset was removed. Closes [#1](https://github.com/ckeditor/ckeditor5-essentials/issues/1). ([7e5e82b](https://github.com/ckeditor/ckeditor5-essentials/commit/7e5e82b))
|
|
127
|
-
|
|
128
|
-
### BREAKING CHANGES
|
|
129
|
-
|
|
130
|
-
* This package was renamed to `@ckeditor/ckeditor5-essentials`.
|
|
131
|
-
* The `Article` presets was removed.
|
|
132
|
-
* The `Article` plugin was removed.
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
## [0.3.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v0.2.2...v0.3.0) (2017-09-03)
|
|
136
|
-
|
|
137
|
-
### Features
|
|
138
|
-
|
|
139
|
-
* Added the autoformat feature to the article preset. ([cb65328](https://github.com/ckeditor/ckeditor5-essentials/commit/cb65328))
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
## [0.2.2](https://github.com/ckeditor/ckeditor5-essentials/compare/v0.2.1...v0.2.2) (2017-05-07)
|
|
143
|
-
|
|
144
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
145
|
-
|
|
146
|
-
## [0.2.1](https://github.com/ckeditor/ckeditor5-essentials/compare/v0.2.0...v0.2.1) (2017-04-06)
|
|
147
|
-
|
|
148
|
-
Internal changes only (updated dependencies, documentation, etc.).
|
|
149
|
-
|
|
150
|
-
## [0.2.0](https://github.com/ckeditor/ckeditor5-essentials/compare/v0.1.1...v0.2.0) (2017-04-05)
|
|
151
|
-
|
|
152
|
-
### Features
|
|
153
|
-
|
|
154
|
-
* Added block quote feature to the article preset. Closes [#4](https://github.com/ckeditor/ckeditor5-essentials/issues/4). ([30d7bd5](https://github.com/ckeditor/ckeditor5-essentials/commit/30d7bd5))
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
## [0.1.1](https://github.com/ckeditor/ckeditor5-essentials/compare/v0.1.0...v0.1.1) (2017-03-06)
|
|
158
|
-
|
|
159
|
-
Initial release.
|
package/build/essentials.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack://CKEditor5.essentials/webpack/bootstrap","webpack://CKEditor5.essentials/./src/essentials.js","webpack://CKEditor5.essentials/./src/index.js","webpack://CKEditor5.essentials/delegated ./clipboard.js from dll-reference CKEditor5.dll","webpack://CKEditor5.essentials/delegated ./core.js from dll-reference CKEditor5.dll","webpack://CKEditor5.essentials/delegated ./enter.js from dll-reference CKEditor5.dll","webpack://CKEditor5.essentials/delegated ./select-all.js from dll-reference CKEditor5.dll","webpack://CKEditor5.essentials/delegated ./typing.js from dll-reference CKEditor5.dll","webpack://CKEditor5.essentials/delegated ./undo.js from dll-reference CKEditor5.dll","webpack://CKEditor5.essentials/external \"CKEditor5.dll\""],"names":[],"mappings":";;;;;;QAAA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;;;QAGA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA,0CAA0C,gCAAgC;QAC1E;QACA;;QAEA;QACA;QACA;QACA,wDAAwD,kBAAkB;QAC1E;QACA,iDAAiD,cAAc;QAC/D;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA,yCAAyC,iCAAiC;QAC1E,gHAAgH,mBAAmB,EAAE;QACrI;QACA;;QAEA;QACA;QACA;QACA,2BAA2B,0BAA0B,EAAE;QACvD,iCAAiC,eAAe;QAChD;QACA;QACA;;QAEA;QACA,sDAAsD,+DAA+D;;QAErH;QACA;;;QAGA;QACA;;;;;;;;;;;;;AClFA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAE4C;;AAEQ;AACI;AACH;AACP;AACJ;;AAE1C;AACA;AACA;AACA;AACA;AACA;AACA,MAAM,2CAA2C;AACjD,MAAM,+BAA+B;AACrC,MAAM,4CAA4C;AAClD,MAAM,yCAAyC;AAC/C,MAAM,kCAAkC;AACxC,MAAM,4BAA4B;AAClC;AACA,wEAAwE,2CAA2C;AACnH;AACA;AACA;AACA;AACe,yBAAyB,yDAAM;AAC9C;AACA;AACA;AACA;AACA,WAAW,iEAAS,EAAE,yDAAK,EAAE,kEAAS,EAAE,8DAAU,EAAE,2DAAM,EAAE,uDAAI;AAChE;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACjDA;AAAA;AAAA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEsC;;AAEvB;AACf,CAAC,+DAAU;AACX,CAAC,EAAC;;;;;;;;;;;;;ACbF,+H;;;;;;;;;;;ACAA,0H;;;;;;;;;;;ACAA,2H;;;;;;;;;;;ACAA,gI;;;;;;;;;;;ACAA,4H;;;;;;;;;;;ACAA,0H;;;;;;;;;;;ACAA,+B","file":"essentials.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"./src/index.js\");\n","/**\n * @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license\n */\n\n/**\n * @module essentials/essentials\n */\n\nimport { Plugin } from 'ckeditor5/src/core';\n\nimport { Clipboard } from 'ckeditor5/src/clipboard';\nimport { Enter, ShiftEnter } from 'ckeditor5/src/enter';\nimport { SelectAll } from 'ckeditor5/src/select-all';\nimport { Typing } from 'ckeditor5/src/typing';\nimport { Undo } from 'ckeditor5/src/undo';\n\n/**\n * A plugin including all essential editing features. It represents a set of features that enables similar functionalities\n * to a `<textarea>` element.\n *\n * It includes:\n *\n * * {@link module:clipboard/clipboard~Clipboard},\n * * {@link module:enter/enter~Enter},\n * * {@link module:select-all/selectall~SelectAll},\n * * {@link module:enter/shiftenter~ShiftEnter},\n * * {@link module:typing/typing~Typing},\n * * {@link module:undo/undo~Undo}.\n *\n * This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).\n * If your editor is supposed to handle block content, make sure to include it.\n *\n * @extends module:core/plugin~Plugin\n */\nexport default class Essentials extends Plugin {\n\t/**\n\t * @inheritDoc\n\t */\n\tstatic get requires() {\n\t\treturn [ Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo ];\n\t}\n\n\t/**\n\t * @inheritDoc\n\t */\n\tstatic get pluginName() {\n\t\treturn 'Essentials';\n\t}\n}\n","/**\n * @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license\n */\n\n/**\n * @module essentials\n */\n\nimport Essentials from './essentials';\n\nexport default {\n\tEssentials\n};\n\n","module.exports = (__webpack_require__(/*! dll-reference CKEditor5.dll */ \"dll-reference CKEditor5.dll\"))(\"./src/clipboard.js\");","module.exports = (__webpack_require__(/*! dll-reference CKEditor5.dll */ \"dll-reference CKEditor5.dll\"))(\"./src/core.js\");","module.exports = (__webpack_require__(/*! dll-reference CKEditor5.dll */ \"dll-reference CKEditor5.dll\"))(\"./src/enter.js\");","module.exports = (__webpack_require__(/*! dll-reference CKEditor5.dll */ \"dll-reference CKEditor5.dll\"))(\"./src/select-all.js\");","module.exports = (__webpack_require__(/*! dll-reference CKEditor5.dll */ \"dll-reference CKEditor5.dll\"))(\"./src/typing.js\");","module.exports = (__webpack_require__(/*! dll-reference CKEditor5.dll */ \"dll-reference CKEditor5.dll\"))(\"./src/undo.js\");","module.exports = CKEditor5.dll;"],"sourceRoot":""}
|