@ckeditor/ckeditor5-essentials 48.2.0 → 48.3.0-alpha.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/dist/augmentation.d.ts +8 -8
- package/dist/essentials.d.ts +40 -40
- package/dist/index-content.css +1 -0
- package/dist/index-editor.css +1 -0
- package/dist/index.css +0 -2
- package/dist/index.d.ts +7 -7
- package/dist/index.js +64 -48
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/dist/index.css.map +0 -1
package/dist/augmentation.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import type { Essentials } from
|
|
6
|
-
declare module
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
|
+
import type { Essentials } from "./index.js";
|
|
6
|
+
declare module "@ckeditor/ckeditor5-core" {
|
|
7
|
+
interface PluginsMap {
|
|
8
|
+
[Essentials.pluginName]: Essentials;
|
|
9
|
+
}
|
|
10
10
|
}
|
package/dist/essentials.d.ts
CHANGED
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
import { Plugin } from
|
|
9
|
-
import { Clipboard } from
|
|
10
|
-
import { Enter, ShiftEnter } from
|
|
11
|
-
import { SelectAll } from
|
|
12
|
-
import { Typing } from
|
|
13
|
-
import { Undo } from
|
|
14
|
-
import { AccessibilityHelp } from
|
|
6
|
+
* @module essentials/essentials
|
|
7
|
+
*/
|
|
8
|
+
import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core";
|
|
9
|
+
import { Clipboard } from "@ckeditor/ckeditor5-clipboard";
|
|
10
|
+
import { Enter, ShiftEnter } from "@ckeditor/ckeditor5-enter";
|
|
11
|
+
import { SelectAll } from "@ckeditor/ckeditor5-select-all";
|
|
12
|
+
import { Typing } from "@ckeditor/ckeditor5-typing";
|
|
13
|
+
import { Undo } from "@ckeditor/ckeditor5-undo";
|
|
14
|
+
import { AccessibilityHelp } from "@ckeditor/ckeditor5-ui";
|
|
15
15
|
/**
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
16
|
+
* A plugin including all essential editing features. It represents a set of features that enables similar functionalities
|
|
17
|
+
* to a `<textarea>` element.
|
|
18
|
+
*
|
|
19
|
+
* It includes:
|
|
20
|
+
*
|
|
21
|
+
* * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},
|
|
22
|
+
* * {@link module:clipboard/clipboard~Clipboard},
|
|
23
|
+
* * {@link module:enter/enter~Enter},
|
|
24
|
+
* * {@link module:select-all/selectall~SelectAll},
|
|
25
|
+
* * {@link module:enter/shiftenter~ShiftEnter},
|
|
26
|
+
* * {@link module:typing/typing~Typing},
|
|
27
|
+
* * {@link module:undo/undo~Undo}.
|
|
28
|
+
*
|
|
29
|
+
* This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).
|
|
30
|
+
* If your editor is supposed to handle block content, make sure to include it.
|
|
31
|
+
*/
|
|
32
32
|
export declare class Essentials extends Plugin {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
33
|
+
/**
|
|
34
|
+
* @inheritDoc
|
|
35
|
+
*/
|
|
36
|
+
static get requires(): PluginDependenciesOf<[AccessibilityHelp, Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo]>;
|
|
37
|
+
/**
|
|
38
|
+
* @inheritDoc
|
|
39
|
+
*/
|
|
40
|
+
static get pluginName(): "Essentials";
|
|
41
|
+
/**
|
|
42
|
+
* @inheritDoc
|
|
43
|
+
*/
|
|
44
|
+
static override get isOfficialPlugin(): true;
|
|
45
45
|
}
|
package/dist/index-content.css
CHANGED
package/dist/index-editor.css
CHANGED
package/dist/index.css
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
5
5
|
/**
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export { Essentials } from
|
|
9
|
-
import
|
|
6
|
+
* @module essentials
|
|
7
|
+
*/
|
|
8
|
+
export { Essentials } from "./essentials.js";
|
|
9
|
+
import "./augmentation.js";
|
package/dist/index.js
CHANGED
|
@@ -2,55 +2,71 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
|
-
import { Plugin } from
|
|
6
|
-
import { Clipboard } from
|
|
7
|
-
import { Enter, ShiftEnter } from
|
|
8
|
-
import { SelectAll } from
|
|
9
|
-
import { Typing } from
|
|
10
|
-
import { Undo } from
|
|
11
|
-
import { AccessibilityHelp } from
|
|
5
|
+
import { Plugin } from "@ckeditor/ckeditor5-core";
|
|
6
|
+
import { Clipboard } from "@ckeditor/ckeditor5-clipboard";
|
|
7
|
+
import { Enter, ShiftEnter } from "@ckeditor/ckeditor5-enter";
|
|
8
|
+
import { SelectAll } from "@ckeditor/ckeditor5-select-all";
|
|
9
|
+
import { Typing } from "@ckeditor/ckeditor5-typing";
|
|
10
|
+
import { Undo } from "@ckeditor/ckeditor5-undo";
|
|
11
|
+
import { AccessibilityHelp } from "@ckeditor/ckeditor5-ui";
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
14
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
15
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
16
|
+
*/
|
|
17
|
+
/**
|
|
18
|
+
* @module essentials/essentials
|
|
19
|
+
*/
|
|
20
|
+
/**
|
|
21
|
+
* A plugin including all essential editing features. It represents a set of features that enables similar functionalities
|
|
22
|
+
* to a `<textarea>` element.
|
|
23
|
+
*
|
|
24
|
+
* It includes:
|
|
25
|
+
*
|
|
26
|
+
* * {@link module:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},
|
|
27
|
+
* * {@link module:clipboard/clipboard~Clipboard},
|
|
28
|
+
* * {@link module:enter/enter~Enter},
|
|
29
|
+
* * {@link module:select-all/selectall~SelectAll},
|
|
30
|
+
* * {@link module:enter/shiftenter~ShiftEnter},
|
|
31
|
+
* * {@link module:typing/typing~Typing},
|
|
32
|
+
* * {@link module:undo/undo~Undo}.
|
|
33
|
+
*
|
|
34
|
+
* This plugin set does not define any block-level containers (such as {@link module:paragraph/paragraph~Paragraph}).
|
|
35
|
+
* If your editor is supposed to handle block content, make sure to include it.
|
|
36
|
+
*/
|
|
37
|
+
var Essentials = class extends Plugin {
|
|
38
|
+
/**
|
|
39
|
+
* @inheritDoc
|
|
40
|
+
*/
|
|
41
|
+
static get requires() {
|
|
42
|
+
return [
|
|
43
|
+
AccessibilityHelp,
|
|
44
|
+
Clipboard,
|
|
45
|
+
Enter,
|
|
46
|
+
SelectAll,
|
|
47
|
+
ShiftEnter,
|
|
48
|
+
Typing,
|
|
49
|
+
Undo
|
|
50
|
+
];
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* @inheritDoc
|
|
54
|
+
*/
|
|
55
|
+
static get pluginName() {
|
|
56
|
+
return "Essentials";
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @inheritDoc
|
|
60
|
+
*/
|
|
61
|
+
static get isOfficialPlugin() {
|
|
62
|
+
return true;
|
|
63
|
+
}
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
68
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
69
|
+
*/
|
|
54
70
|
|
|
55
71
|
export { Essentials };
|
|
56
|
-
//# sourceMappingURL=index.js.map
|
|
72
|
+
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["index.js","../src/essentials.ts"],"names":[
|
|
1
|
+
{"version":3,"sources":["index.js","../src/essentials.ts"],"names":[],"mappings":";;;;AAAA,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC;AACjD,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,SAAS,CAAC;AACzD,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,KAAK,CAAC;AAC7D,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,MAAM,CAAC,GAAG,CAAC;AAC1D,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,MAAM,CAAC;AACnD,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,IAAI,CAAC;AAC/C,MAAM,CAAC,CAAC,CAAC,iBAAiB,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,SAAS,CAAC,EAAE,CAAC;;AAE1D,CAAC,CAAC;AACF,CAAC,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ;AACnF,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,SAAS,CAAC;AACjF,CAAC;AACD,CAAC,CAAC;AACF,CAAC,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC;AACrB,CAAC;AACD,CAAC,CAAC;AACF,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,GAAG,CAAC,SAAS,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC;AAC1G,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO;AAC3B;AACA,CAAC,CAAC,EAAE,CAAC,QAAQ;AACb;AACA,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,iBAAiB,CAAC;AACpF,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,SAAS,CAAC,SAAS,CAAC;AAChD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC;AACpC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,SAAS,CAAC,SAAS,CAAC;AACjD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,UAAU,CAAC,UAAU,CAAC;AAC9C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC;AACvC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC;AACjC;AACA,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,SAAS,CAAC,SAAS,CAAC,CAAC;AACnH,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE;AAC7E,CAAC;ACID,GAAA,CAAa,UAAA,CAAA,CAAA,CAAb,KAAA,CAAA,OAAA,CAAgC,MAAA,CAAO;ADFvC,CAAC,CAAC,CAAC;AACH,CAAC,CAAC,CAAC,CAAC;AACJ,CAAC,CAAC;AACF,CCGC,MAAA,CAAA,GAAA,CAAkB,QAAA,CAAA,CAAA,CAA+G;ADFlI,CAAC,CCGC,MAAA,CAAO;ADFT,CAAC,CAAC,CCES,iBAAA;ADDX,CAAC,CAAC,CCC4B,SAAA;ADA9B,CAAC,CAAC,CCAuC,KAAA;ADCzC,CAAC,CAAC,CCD8C,SAAA;ADEhD,CAAC,CAAC,CCFyD,UAAA;ADG3D,CAAC,CAAC,CCHqE,MAAA;ADIvE,CAAC,CAAC,CCJ6E;ADK/E,CAAC,CCLmF,CAAA;ADMpF,CCLC;ADMD,CAAC,CAAC,CAAC;AACH,CAAC,CAAC,CAAC,CAAC;AACJ,CAAC,CAAC;AACF,CCJC,MAAA,CAAA,GAAA,CAAkB,UAAA,CAAA,CAAA,CAAa;ADKhC,CAAC,CCJC,MAAA,CAAO,CAAA,UAAA,CAAA;ADKT,CCJC;ADKD,CAAC,CAAC,CAAC;AACH,CAAC,CAAC,CAAC,CAAC;AACJ,CAAC,CAAC;AACF,CCHC,MAAA,CAAA,GAAA,CAA2B,gBAAA,CAAA,CAAA,CAAyB;ADIrD,CAAC,CCHC,MAAA,CAAO,IAAA;ADIT,CCHC;AACD,CAAA;;ADKA,CAAC,CAAC;AACF,CAAC,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ;AACnF,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,SAAS,CAAC;AACjF,CAAC;;AAED,MAAM,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC;AACrB,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,EAAE,CAAC","file":"index.js.map","sourcesContent":["import { Plugin } from \"@ckeditor/ckeditor5-core\";\nimport { Clipboard } from \"@ckeditor/ckeditor5-clipboard\";\nimport { Enter, ShiftEnter } from \"@ckeditor/ckeditor5-enter\";\nimport { SelectAll } from \"@ckeditor/ckeditor5-select-all\";\nimport { Typing } from \"@ckeditor/ckeditor5-typing\";\nimport { Undo } from \"@ckeditor/ckeditor5-undo\";\nimport { AccessibilityHelp } from \"@ckeditor/ckeditor5-ui\";\n\n/**\n* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n*/\n/**\n* @module essentials/essentials\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:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},\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*/\nvar Essentials = class extends Plugin {\n\t/**\n\t* @inheritDoc\n\t*/\n\tstatic get requires() {\n\t\treturn [\n\t\t\tAccessibilityHelp,\n\t\t\tClipboard,\n\t\t\tEnter,\n\t\t\tSelectAll,\n\t\t\tShiftEnter,\n\t\t\tTyping,\n\t\t\tUndo\n\t\t];\n\t}\n\t/**\n\t* @inheritDoc\n\t*/\n\tstatic get pluginName() {\n\t\treturn \"Essentials\";\n\t}\n\t/**\n\t* @inheritDoc\n\t*/\n\tstatic get isOfficialPlugin() {\n\t\treturn true;\n\t}\n};\n\n/**\n* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n*/\n\nexport { Essentials };\n//# sourceMappingURL=index.js.map","/**\n * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.\n * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options\n */\n\n/**\n * @module essentials/essentials\n */\n\nimport { Plugin, type PluginDependenciesOf } from '@ckeditor/ckeditor5-core';\n\nimport { Clipboard } from '@ckeditor/ckeditor5-clipboard';\nimport { Enter, ShiftEnter } from '@ckeditor/ckeditor5-enter';\nimport { SelectAll } from '@ckeditor/ckeditor5-select-all';\nimport { Typing } from '@ckeditor/ckeditor5-typing';\nimport { Undo } from '@ckeditor/ckeditor5-undo';\nimport { AccessibilityHelp } from '@ckeditor/ckeditor5-ui';\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:ui/editorui/accessibilityhelp/accessibilityhelp~AccessibilityHelp},\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 */\nexport class Essentials extends Plugin {\n\t/**\n\t * @inheritDoc\n\t */\n\tpublic static get requires(): PluginDependenciesOf<[ AccessibilityHelp, Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo ]> {\n\t\treturn [ AccessibilityHelp, Clipboard, Enter, SelectAll, ShiftEnter, Typing, Undo ];\n\t}\n\n\t/**\n\t * @inheritDoc\n\t */\n\tpublic static get pluginName() {\n\t\treturn 'Essentials' as const;\n\t}\n\n\t/**\n\t * @inheritDoc\n\t */\n\tpublic static override get isOfficialPlugin(): true {\n\t\treturn true;\n\t}\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-essentials",
|
|
3
|
-
"version": "48.
|
|
3
|
+
"version": "48.3.0-alpha.0",
|
|
4
4
|
"description": "Essential editing features for CKEditor 5.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"./package.json": "./package.json"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@ckeditor/ckeditor5-clipboard": "48.
|
|
30
|
-
"@ckeditor/ckeditor5-core": "48.
|
|
31
|
-
"@ckeditor/ckeditor5-enter": "48.
|
|
32
|
-
"@ckeditor/ckeditor5-select-all": "48.
|
|
33
|
-
"@ckeditor/ckeditor5-typing": "48.
|
|
34
|
-
"@ckeditor/ckeditor5-ui": "48.
|
|
35
|
-
"@ckeditor/ckeditor5-undo": "48.
|
|
29
|
+
"@ckeditor/ckeditor5-clipboard": "48.3.0-alpha.0",
|
|
30
|
+
"@ckeditor/ckeditor5-core": "48.3.0-alpha.0",
|
|
31
|
+
"@ckeditor/ckeditor5-enter": "48.3.0-alpha.0",
|
|
32
|
+
"@ckeditor/ckeditor5-select-all": "48.3.0-alpha.0",
|
|
33
|
+
"@ckeditor/ckeditor5-typing": "48.3.0-alpha.0",
|
|
34
|
+
"@ckeditor/ckeditor5-ui": "48.3.0-alpha.0",
|
|
35
|
+
"@ckeditor/ckeditor5-undo": "48.3.0-alpha.0"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
38
38
|
"dist",
|
package/dist/index.css.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["index.css"],"names":[],"mappings":";;;;;;AAEA,CAAC,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC","file":"index.css.map","sourcesContent":["\n\n/*# sourceMappingURL=index.css.map */"]}
|