@ckeditor/ckeditor5-template 38.1.1 → 38.2.0-alpha.1
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/build/template.js +2 -2
- package/package.json +4 -3
- package/src/augmentation.d.ts +23 -23
- package/src/index.d.ts +13 -13
- package/src/index.js +1 -1
- package/src/template.d.ts +115 -115
- package/src/template.js +1 -1
- package/src/templatecommand.d.ts +23 -23
- package/src/templatecommand.js +1 -1
- package/src/templateediting.d.ts +30 -30
- package/src/templateediting.js +1 -1
- package/src/templateui.d.ts +29 -29
- package/src/templateui.js +1 -1
- package/src/ui/templateforminfoview.d.ts +51 -51
- package/src/ui/templateforminfoview.js +1 -1
- package/src/ui/templateformsearchfieldview.d.ts +43 -43
- package/src/ui/templateformsearchfieldview.js +1 -1
- package/src/ui/templateformview.d.ts +110 -110
- package/src/ui/templateformview.js +1 -1
- package/src/ui/templatelistbuttonview.d.ts +104 -104
- package/src/ui/templatelistbuttonview.js +1 -1
- package/src/ui/templatelistitemview.d.ts +34 -34
- package/src/ui/templatelistitemview.js +1 -1
package/src/template.d.ts
CHANGED
|
@@ -1,115 +1,115 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @module template/template
|
|
7
|
-
* @publicApi
|
|
8
|
-
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
10
|
-
import TemplateEditing from './templateediting';
|
|
11
|
-
import TemplateUI from './templateui';
|
|
12
|
-
/**
|
|
13
|
-
* The template feature.
|
|
14
|
-
*
|
|
15
|
-
* For a detailed overview, check the {@glink features/template Content templates} feature guide.
|
|
16
|
-
*/
|
|
17
|
-
export default class Template extends Plugin {
|
|
18
|
-
/**
|
|
19
|
-
* @inheritDoc
|
|
20
|
-
*/
|
|
21
|
-
static get requires(): readonly [typeof TemplateEditing, typeof TemplateUI];
|
|
22
|
-
/**
|
|
23
|
-
* @inheritDoc
|
|
24
|
-
*/
|
|
25
|
-
static get pluginName(): "Template";
|
|
26
|
-
}
|
|
27
|
-
/**
|
|
28
|
-
* The configuration of the template feature.
|
|
29
|
-
*
|
|
30
|
-
* ```ts
|
|
31
|
-
* ClassicEditor
|
|
32
|
-
* .create( {
|
|
33
|
-
* template: ... // Template feature configuration.
|
|
34
|
-
* } )
|
|
35
|
-
* .then( ... )
|
|
36
|
-
* .catch( ... );
|
|
37
|
-
*```
|
|
38
|
-
* See {@link module:core/editor/editorconfig~EditorConfig all editor options}.
|
|
39
|
-
*/
|
|
40
|
-
export interface TemplateConfig {
|
|
41
|
-
/**
|
|
42
|
-
* A list of all template definitions to be displayed in the `'insertTemplate'` UI dropdown.
|
|
43
|
-
*
|
|
44
|
-
* An example configuration:
|
|
45
|
-
*
|
|
46
|
-
* ```json
|
|
47
|
-
* {
|
|
48
|
-
* template: {
|
|
49
|
-
* definitions: [
|
|
50
|
-
* {
|
|
51
|
-
* title: 'Issue acknowledgement (plain text)',
|
|
52
|
-
* data: 'Dear customer, thank you for your report! The issue is currently being worked on by our development team.'
|
|
53
|
-
* },
|
|
54
|
-
* {
|
|
55
|
-
* title: 'Signature (multi-line)',
|
|
56
|
-
* data: '<p><b>Jane Doe</b></p><p>Marketing Specialist at <a href="https://example.com>Example.com</a></p>',
|
|
57
|
-
* description: 'Author signature with the link to the website.'
|
|
58
|
-
* },
|
|
59
|
-
* {
|
|
60
|
-
* title: 'Example table',
|
|
61
|
-
* data: '<table><tr><td>Cell #1</td><td></td></tr><tr><td></td><td>Cell #2</td></tr></table>',
|
|
62
|
-
* icon: '<svg viewBox="0 0 45 45" xmlns="http://www.w3.org/2000/svg">...</svg>',
|
|
63
|
-
* description: 'This template inserts a table.'
|
|
64
|
-
* },
|
|
65
|
-
* {
|
|
66
|
-
* title: 'Insert userAgent data',
|
|
67
|
-
* data: navigator.userAgent
|
|
68
|
-
* },
|
|
69
|
-
* {
|
|
70
|
-
* title: 'Insert translate to English link (function)',
|
|
71
|
-
* data: () => '<a href="' + location.href + '/en" title="Translate to English">Translate to English</a>'
|
|
72
|
-
* },
|
|
73
|
-
* // ...
|
|
74
|
-
* ]
|
|
75
|
-
* }
|
|
76
|
-
* }
|
|
77
|
-
* ```
|
|
78
|
-
*/
|
|
79
|
-
definitions?: Array<TemplateDefinition>;
|
|
80
|
-
}
|
|
81
|
-
/**
|
|
82
|
-
* An object describing a single template definition.
|
|
83
|
-
*
|
|
84
|
-
* ```json
|
|
85
|
-
* {
|
|
86
|
-
* // Mandatory fields:
|
|
87
|
-
* title: 'Example template',
|
|
88
|
-
* data: '<table><tr><td>Cell #1</td><td></td></tr><tr><td></td><td>Cell #2</td></tr></table>',
|
|
89
|
-
*
|
|
90
|
-
* // Optional configuration:
|
|
91
|
-
* icon: '<svg viewBox="0 0 45 45" xmlns="http://www.w3.org/2000/svg">...</svg>',
|
|
92
|
-
* description: 'This template inserts a table.'
|
|
93
|
-
* }
|
|
94
|
-
* ```
|
|
95
|
-
*/
|
|
96
|
-
export type TemplateDefinition = {
|
|
97
|
-
/**
|
|
98
|
-
* The title of the template.
|
|
99
|
-
*/
|
|
100
|
-
title: string;
|
|
101
|
-
/**
|
|
102
|
-
* An HTML string to be inserted into the document or a callback function that returns an HTML string
|
|
103
|
-
* to be inserted into the document when the template is selected.
|
|
104
|
-
*/
|
|
105
|
-
data: () => string | string;
|
|
106
|
-
/**
|
|
107
|
-
* An optional SVG string representing the icon of the template. The default size of the icon is 45x45 pixels.
|
|
108
|
-
* Be sure to set the correct `viewBox` attribute in the icon source. If not provided, a generic icon will be used instead.
|
|
109
|
-
*/
|
|
110
|
-
icon?: string;
|
|
111
|
-
/**
|
|
112
|
-
* An optional long description of the template presented to the users.
|
|
113
|
-
*/
|
|
114
|
-
description?: string;
|
|
115
|
-
};
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* @module template/template
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import TemplateEditing from './templateediting.js';
|
|
11
|
+
import TemplateUI from './templateui.js';
|
|
12
|
+
/**
|
|
13
|
+
* The template feature.
|
|
14
|
+
*
|
|
15
|
+
* For a detailed overview, check the {@glink features/template Content templates} feature guide.
|
|
16
|
+
*/
|
|
17
|
+
export default class Template extends Plugin {
|
|
18
|
+
/**
|
|
19
|
+
* @inheritDoc
|
|
20
|
+
*/
|
|
21
|
+
static get requires(): readonly [typeof TemplateEditing, typeof TemplateUI];
|
|
22
|
+
/**
|
|
23
|
+
* @inheritDoc
|
|
24
|
+
*/
|
|
25
|
+
static get pluginName(): "Template";
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* The configuration of the template feature.
|
|
29
|
+
*
|
|
30
|
+
* ```ts
|
|
31
|
+
* ClassicEditor
|
|
32
|
+
* .create( {
|
|
33
|
+
* template: ... // Template feature configuration.
|
|
34
|
+
* } )
|
|
35
|
+
* .then( ... )
|
|
36
|
+
* .catch( ... );
|
|
37
|
+
*```
|
|
38
|
+
* See {@link module:core/editor/editorconfig~EditorConfig all editor options}.
|
|
39
|
+
*/
|
|
40
|
+
export interface TemplateConfig {
|
|
41
|
+
/**
|
|
42
|
+
* A list of all template definitions to be displayed in the `'insertTemplate'` UI dropdown.
|
|
43
|
+
*
|
|
44
|
+
* An example configuration:
|
|
45
|
+
*
|
|
46
|
+
* ```json
|
|
47
|
+
* {
|
|
48
|
+
* template: {
|
|
49
|
+
* definitions: [
|
|
50
|
+
* {
|
|
51
|
+
* title: 'Issue acknowledgement (plain text)',
|
|
52
|
+
* data: 'Dear customer, thank you for your report! The issue is currently being worked on by our development team.'
|
|
53
|
+
* },
|
|
54
|
+
* {
|
|
55
|
+
* title: 'Signature (multi-line)',
|
|
56
|
+
* data: '<p><b>Jane Doe</b></p><p>Marketing Specialist at <a href="https://example.com>Example.com</a></p>',
|
|
57
|
+
* description: 'Author signature with the link to the website.'
|
|
58
|
+
* },
|
|
59
|
+
* {
|
|
60
|
+
* title: 'Example table',
|
|
61
|
+
* data: '<table><tr><td>Cell #1</td><td></td></tr><tr><td></td><td>Cell #2</td></tr></table>',
|
|
62
|
+
* icon: '<svg viewBox="0 0 45 45" xmlns="http://www.w3.org/2000/svg">...</svg>',
|
|
63
|
+
* description: 'This template inserts a table.'
|
|
64
|
+
* },
|
|
65
|
+
* {
|
|
66
|
+
* title: 'Insert userAgent data',
|
|
67
|
+
* data: navigator.userAgent
|
|
68
|
+
* },
|
|
69
|
+
* {
|
|
70
|
+
* title: 'Insert translate to English link (function)',
|
|
71
|
+
* data: () => '<a href="' + location.href + '/en" title="Translate to English">Translate to English</a>'
|
|
72
|
+
* },
|
|
73
|
+
* // ...
|
|
74
|
+
* ]
|
|
75
|
+
* }
|
|
76
|
+
* }
|
|
77
|
+
* ```
|
|
78
|
+
*/
|
|
79
|
+
definitions?: Array<TemplateDefinition>;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* An object describing a single template definition.
|
|
83
|
+
*
|
|
84
|
+
* ```json
|
|
85
|
+
* {
|
|
86
|
+
* // Mandatory fields:
|
|
87
|
+
* title: 'Example template',
|
|
88
|
+
* data: '<table><tr><td>Cell #1</td><td></td></tr><tr><td></td><td>Cell #2</td></tr></table>',
|
|
89
|
+
*
|
|
90
|
+
* // Optional configuration:
|
|
91
|
+
* icon: '<svg viewBox="0 0 45 45" xmlns="http://www.w3.org/2000/svg">...</svg>',
|
|
92
|
+
* description: 'This template inserts a table.'
|
|
93
|
+
* }
|
|
94
|
+
* ```
|
|
95
|
+
*/
|
|
96
|
+
export type TemplateDefinition = {
|
|
97
|
+
/**
|
|
98
|
+
* The title of the template.
|
|
99
|
+
*/
|
|
100
|
+
title: string;
|
|
101
|
+
/**
|
|
102
|
+
* An HTML string to be inserted into the document or a callback function that returns an HTML string
|
|
103
|
+
* to be inserted into the document when the template is selected.
|
|
104
|
+
*/
|
|
105
|
+
data: () => string | string;
|
|
106
|
+
/**
|
|
107
|
+
* An optional SVG string representing the icon of the template. The default size of the icon is 45x45 pixels.
|
|
108
|
+
* Be sure to set the correct `viewBox` attribute in the icon source. If not provided, a generic icon will be used instead.
|
|
109
|
+
*/
|
|
110
|
+
icon?: string;
|
|
111
|
+
/**
|
|
112
|
+
* An optional long description of the template presented to the users.
|
|
113
|
+
*/
|
|
114
|
+
description?: string;
|
|
115
|
+
};
|
package/src/template.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
var
|
|
23
|
+
var _0x4ae7=['requires','Template','pluginName'];(function(_0x4e6f59,_0x4ae7cf){var _0x4e4b94=function(_0x3fe486){while(--_0x3fe486){_0x4e6f59['push'](_0x4e6f59['shift']());}};_0x4e4b94(++_0x4ae7cf);}(_0x4ae7,0x1ad));var _0x4e4b=function(_0x4e6f59,_0x4ae7cf){_0x4e6f59=_0x4e6f59-0x0;var _0x4e4b94=_0x4ae7[_0x4e6f59];return _0x4e4b94;};import{Plugin as _0x2665d4}from'ckeditor5/src/core.js';import _0x1f5385 from'./templateediting.js';import _0x319f13 from'./templateui.js';export default class s extends _0x2665d4{static get[_0x4e4b('0x0')](){return[_0x1f5385,_0x319f13];}static get[_0x4e4b('0x2')](){return _0x4e4b('0x1');}}
|
package/src/templatecommand.d.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @module template/templatecommand
|
|
7
|
-
* @publicApi
|
|
8
|
-
*/
|
|
9
|
-
import { Command } from 'ckeditor5/src/core';
|
|
10
|
-
/**
|
|
11
|
-
* The template command.
|
|
12
|
-
*
|
|
13
|
-
* Inserts a template into the editor content.
|
|
14
|
-
*/
|
|
15
|
-
export default class TemplateCommand extends Command {
|
|
16
|
-
/**
|
|
17
|
-
* Inserts the template data at the position of the selection.
|
|
18
|
-
*
|
|
19
|
-
* @fires execute
|
|
20
|
-
* @param templateData Template data should be a raw HTML string or a function that returns one.
|
|
21
|
-
*/
|
|
22
|
-
execute(templateData: string | Function): void;
|
|
23
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* @module template/templatecommand
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Command } from 'ckeditor5/src/core.js';
|
|
10
|
+
/**
|
|
11
|
+
* The template command.
|
|
12
|
+
*
|
|
13
|
+
* Inserts a template into the editor content.
|
|
14
|
+
*/
|
|
15
|
+
export default class TemplateCommand extends Command {
|
|
16
|
+
/**
|
|
17
|
+
* Inserts the template data at the position of the selection.
|
|
18
|
+
*
|
|
19
|
+
* @fires execute
|
|
20
|
+
* @param templateData Template data should be a raw HTML string or a function that returns one.
|
|
21
|
+
*/
|
|
22
|
+
execute(templateData: string | Function): void;
|
|
23
|
+
}
|
package/src/templatecommand.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x50f3=['toView','function','toModel','execute','editor','string','insertContent','htmlProcessor'];(function(_0x5aa0f9,_0x50f3ae){const _0x2a19fb=function(_0x349544){while(--_0x349544){_0x5aa0f9['push'](_0x5aa0f9['shift']());}};_0x2a19fb(++_0x50f3ae);}(_0x50f3,0x1e1));const _0x2a19=function(_0x5aa0f9,_0x50f3ae){_0x5aa0f9=_0x5aa0f9-0x0;let _0x2a19fb=_0x50f3[_0x5aa0f9];return _0x2a19fb;};import{Command as _0x4ed1d1}from'ckeditor5/src/core.js';export default class o extends _0x4ed1d1{[_0x2a19('0x2')](_0x344deb){const {model:_0x3061b1}=this['editor'];let _0x4b1389;switch(typeof _0x344deb){case'string':_0x4b1389=_0x344deb;break;case _0x2a19('0x0'):_0x4b1389=_0x344deb();}_0x2a19('0x4')==typeof _0x4b1389&&_0x3061b1['change'](()=>{const _0x2ba865=this[_0x2a19('0x3')]['data'][_0x2a19('0x6')][_0x2a19('0x7')](_0x4b1389),_0xa027b2=this[_0x2a19('0x3')]['data'][_0x2a19('0x1')](_0x2ba865);_0x3061b1[_0x2a19('0x5')](_0xa027b2);});}}
|
package/src/templateediting.d.ts
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @module template/templateediting
|
|
7
|
-
*/
|
|
8
|
-
import { Plugin, type Editor } from 'ckeditor5/src/core';
|
|
9
|
-
/**
|
|
10
|
-
* The template editing plugin.
|
|
11
|
-
*/
|
|
12
|
-
export default class TemplateEditing extends Plugin {
|
|
13
|
-
licenseKey: string;
|
|
14
|
-
/**
|
|
15
|
-
* @inheritDoc
|
|
16
|
-
*/
|
|
17
|
-
static get pluginName(): "TemplateEditing";
|
|
18
|
-
/**
|
|
19
|
-
* @inheritDoc
|
|
20
|
-
*/
|
|
21
|
-
constructor(editor: Editor);
|
|
22
|
-
/**
|
|
23
|
-
* @inheritDoc
|
|
24
|
-
*/
|
|
25
|
-
init(): void;
|
|
26
|
-
/**
|
|
27
|
-
* @inheritDoc
|
|
28
|
-
*/
|
|
29
|
-
destroy(): void;
|
|
30
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* @module template/templateediting
|
|
7
|
+
*/
|
|
8
|
+
import { Plugin, type Editor } from 'ckeditor5/src/core.js';
|
|
9
|
+
/**
|
|
10
|
+
* The template editing plugin.
|
|
11
|
+
*/
|
|
12
|
+
export default class TemplateEditing extends Plugin {
|
|
13
|
+
licenseKey: string;
|
|
14
|
+
/**
|
|
15
|
+
* @inheritDoc
|
|
16
|
+
*/
|
|
17
|
+
static get pluginName(): "TemplateEditing";
|
|
18
|
+
/**
|
|
19
|
+
* @inheritDoc
|
|
20
|
+
*/
|
|
21
|
+
constructor(editor: Editor);
|
|
22
|
+
/**
|
|
23
|
+
* @inheritDoc
|
|
24
|
+
*/
|
|
25
|
+
init(): void;
|
|
26
|
+
/**
|
|
27
|
+
* @inheritDoc
|
|
28
|
+
*/
|
|
29
|
+
destroy(): void;
|
|
30
|
+
}
|
package/src/templateediting.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x3570=['destroy','templateLicenseKeyTrial','get','TemplateEditing','pluginName','config','templateLicenseKeyValid','templateLicenseKeyTrialLimit:operations','info','You\x20are\x20using\x20the\x20trial\x20version\x20of\x20CKEditor\x205\x20template\x20plugin\x20with\x20limited\x20usage.\x20Make\x20sure\x20you\x20will\x20not\x20use\x20it\x20in\x20the\x20production\x20environment.','template-invalid-license-key','licenseKey','template-trial-license-key-reached-limit-changes','_licenseKeyCheckInterval','add','editor','templateLicenseKeyInvalid'];(function(_0x4986f2,_0x357016){const _0x1141b2=function(_0x400b41){while(--_0x400b41){_0x4986f2['push'](_0x4986f2['shift']());}};_0x1141b2(++_0x357016);}(_0x3570,0x199));const _0x1141=function(_0x4986f2,_0x357016){_0x4986f2=_0x4986f2-0x0;let _0x1141b2=_0x3570[_0x4986f2];return _0x1141b2;};import{Plugin as _0x1fba12}from'ckeditor5/src/core.js';import{CKEditorError as _0x56f819}from'ckeditor5/src/utils.js';import _0x4902b5 from'./templatecommand.js';export default class i extends _0x1fba12{static get[_0x1141('0x3')](){return _0x1141('0x2');}constructor(_0x555fa1){super(_0x555fa1),this['_licenseKeyCheckInterval']=null;}['init'](){const {editor:_0x5e9937}=this;_0x5e9937['commands'][_0x1141('0xd')]('insertTemplate',new _0x4902b5(_0x5e9937)),this[_0x1141('0xa')]=_0x5e9937[_0x1141('0x4')][_0x1141('0x1')](_0x1141('0xa'));const _0x3bda63=this[_0x1141('0xe')];this[_0x1141('0xc')]=setInterval(()=>{let _0x4fabb7;for(const _0x14eae3 in _0x3bda63){const _0x4cbae8=_0x14eae3,_0x3a68f9=_0x3bda63[_0x4cbae8];if('templateLicenseKeyTrial'===_0x3a68f9||'templateLicenseKeyInvalid'===_0x3a68f9||_0x1141('0x5')===_0x3a68f9||'templateLicenseKeyTrialLimit:operations'===_0x3a68f9){delete _0x3bda63[_0x4cbae8],_0x4fabb7=_0x3a68f9;break;}}if(_0x1141('0xf')===_0x4fabb7)throw clearInterval(this[_0x1141('0xc')]),new _0x56f819(_0x1141('0x9'),null);if(_0x1141('0x0')===_0x4fabb7&&console[_0x1141('0x7')](_0x1141('0x8')),_0x1141('0x6')===_0x4fabb7)throw clearInterval(this[_0x1141('0xc')]),new _0x56f819(_0x1141('0xb'),null);_0x1141('0x5')===_0x4fabb7&&clearInterval(this[_0x1141('0xc')]);},0x3e8);}[_0x1141('0x10')](){this['_licenseKeyCheckInterval']&&clearInterval(this[_0x1141('0xc')]);}}
|
package/src/templateui.d.ts
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @module template/templateui
|
|
7
|
-
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5/src/core';
|
|
9
|
-
import '../theme/template.css';
|
|
10
|
-
/**
|
|
11
|
-
* The UI plugin of the template feature.
|
|
12
|
-
*
|
|
13
|
-
* It registers the `'insertTemplate'` UI dropdown in the editor's {@link module:ui/componentfactory~ComponentFactory component factory}
|
|
14
|
-
* that displays a list of templates and allows to insert them into the editor content.
|
|
15
|
-
*/
|
|
16
|
-
export default class TemplateUI extends Plugin {
|
|
17
|
-
/**
|
|
18
|
-
* @inheritDoc
|
|
19
|
-
*/
|
|
20
|
-
static get pluginName(): "TemplateUI";
|
|
21
|
-
/**
|
|
22
|
-
* @inheritDoc
|
|
23
|
-
*/
|
|
24
|
-
init(): void;
|
|
25
|
-
/**
|
|
26
|
-
* @inheritDoc
|
|
27
|
-
*/
|
|
28
|
-
afterInit(): void;
|
|
29
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* @module template/templateui
|
|
7
|
+
*/
|
|
8
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
+
import '../theme/template.css';
|
|
10
|
+
/**
|
|
11
|
+
* The UI plugin of the template feature.
|
|
12
|
+
*
|
|
13
|
+
* It registers the `'insertTemplate'` UI dropdown in the editor's {@link module:ui/componentfactory~ComponentFactory component factory}
|
|
14
|
+
* that displays a list of templates and allows to insert them into the editor content.
|
|
15
|
+
*/
|
|
16
|
+
export default class TemplateUI extends Plugin {
|
|
17
|
+
/**
|
|
18
|
+
* @inheritDoc
|
|
19
|
+
*/
|
|
20
|
+
static get pluginName(): "TemplateUI";
|
|
21
|
+
/**
|
|
22
|
+
* @inheritDoc
|
|
23
|
+
*/
|
|
24
|
+
init(): void;
|
|
25
|
+
/**
|
|
26
|
+
* @inheritDoc
|
|
27
|
+
*/
|
|
28
|
+
afterInit(): void;
|
|
29
|
+
}
|