@ckeditor/ckeditor5-email 0.0.0-nightly-20250326.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/CHANGELOG.md +4 -0
- package/LICENSE.md +18 -0
- package/README.md +48 -0
- package/build/email.js +4 -0
- package/ckeditor5-metadata.json +13 -0
- package/dist/index-content.css +4 -0
- package/dist/index-editor.css +4 -0
- package/dist/index.css +4 -0
- package/dist/index.js +23 -0
- package/package.json +61 -0
- package/src/augmentation.d.ts +30 -0
- package/src/augmentation.js +23 -0
- package/src/emailconfigurationconfig.d.ts +59 -0
- package/src/emailconfigurationconfig.js +23 -0
- package/src/emailconfigurationhelper.d.ts +57 -0
- package/src/emailconfigurationhelper.js +23 -0
- package/src/emailconfigurationlogger.d.ts +39 -0
- package/src/emailconfigurationlogger.js +23 -0
- package/src/emailinlinestylestransformations.d.ts +32 -0
- package/src/emailinlinestylestransformations.js +23 -0
- package/src/index.d.ts +22 -0
- package/src/index.js +23 -0
- package/src/integrations/emptyblock.d.ts +35 -0
- package/src/integrations/emptyblock.js +23 -0
- package/src/integrations/exportinlinestyles.d.ts +35 -0
- package/src/integrations/exportinlinestyles.js +23 -0
- package/src/integrations/font.d.ts +35 -0
- package/src/integrations/font.js +23 -0
- package/src/integrations/generalhtmlintegration.d.ts +35 -0
- package/src/integrations/generalhtmlintegration.js +23 -0
- package/src/integrations/highlight.d.ts +35 -0
- package/src/integrations/highlight.js +23 -0
- package/src/integrations/image.d.ts +35 -0
- package/src/integrations/image.js +23 -0
- package/src/integrations/list.d.ts +35 -0
- package/src/integrations/list.js +23 -0
- package/src/integrations/listmultilevel.d.ts +35 -0
- package/src/integrations/listmultilevel.js +23 -0
- package/src/integrations/markdown.d.ts +35 -0
- package/src/integrations/markdown.js +23 -0
- package/src/integrations/mathtype.d.ts +35 -0
- package/src/integrations/mathtype.js +23 -0
- package/src/integrations/mediaembed.d.ts +35 -0
- package/src/integrations/mediaembed.js +23 -0
- package/src/integrations/mergefields.d.ts +35 -0
- package/src/integrations/mergefields.js +23 -0
- package/src/integrations/sourceediting.d.ts +35 -0
- package/src/integrations/sourceediting.js +23 -0
- package/src/integrations/table.d.ts +35 -0
- package/src/integrations/table.js +23 -0
- package/src/integrations/template.d.ts +35 -0
- package/src/integrations/template.js +23 -0
- package/src/integrations/todolist.d.ts +35 -0
- package/src/integrations/todolist.js +23 -0
- package/src/integrations/upload.d.ts +35 -0
- package/src/integrations/upload.js +23 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/list
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that checks if the List feature configuration is supported by the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class ListEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "ListEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
const _0x557790=_0x40a8;function _0x29be(){const _0x16783a=['get','isPremiumPlugin','editor','1438197oNluQj','161svhYvi','_logSuppressibleWarning','3955096MznGkP','9wqEozP','33xcdLmU','properties','isOfficialPlugin','plugins','4643320qjdFlA','list','292124bsuRPS','8318156VwDTdH','ListEmailIntegration','email-configuration-unsupported-reversed-list','pluginName','10opFgXd','afterInit','requires','config','reversed','78246vjGmqm','8418ZwCdQx'];_0x29be=function(){return _0x16783a;};return _0x29be();}(function(_0x350126,_0x4c135b){const _0x36c054=_0x40a8,_0x26245a=_0x350126();while(!![]){try{const _0xd4a533=-parseInt(_0x36c054(0x136))/0x1*(-parseInt(_0x36c054(0x12d))/0x2)+parseInt(_0x36c054(0x131))/0x3+parseInt(_0x36c054(0x122))/0x4*(parseInt(_0x36c054(0x127))/0x5)+-parseInt(_0x36c054(0x12c))/0x6*(-parseInt(_0x36c054(0x132))/0x7)+parseInt(_0x36c054(0x134))/0x8*(-parseInt(_0x36c054(0x135))/0x9)+parseInt(_0x36c054(0x120))/0xa+-parseInt(_0x36c054(0x123))/0xb;if(_0xd4a533===_0x4c135b)break;else _0x26245a['push'](_0x26245a['shift']());}catch(_0x4f791a){_0x26245a['push'](_0x26245a['shift']());}}}(_0x29be,0x43e22));function _0x40a8(_0x51d5fd,_0x3e765a){const _0x29bea6=_0x29be();return _0x40a8=function(_0x40a8b4,_0x5f2284){_0x40a8b4=_0x40a8b4-0x11d;let _0x1b9547=_0x29bea6[_0x40a8b4];return _0x1b9547;},_0x40a8(_0x51d5fd,_0x3e765a);}import{Plugin as _0x5d9423}from'ckeditor5/src/core.js';import _0x93d6b8 from'../emailconfigurationlogger.js';export default class a extends _0x5d9423{static get[_0x557790(0x129)](){return[_0x93d6b8];}static get[_0x557790(0x126)](){const _0x175d97=_0x557790;return _0x175d97(0x124);}static get[_0x557790(0x11e)](){return!0x0;}static get[_0x557790(0x12f)](){return!0x0;}[_0x557790(0x128)](){const _0x39977e=_0x557790,_0x596650=this[_0x39977e(0x130)][_0x39977e(0x11f)][_0x39977e(0x12e)](_0x93d6b8),_0xc36468=this[_0x39977e(0x130)][_0x39977e(0x12a)][_0x39977e(0x12e)](_0x39977e(0x121));_0xc36468&&_0xc36468[_0x39977e(0x11d)]&&_0xc36468[_0x39977e(0x11d)][_0x39977e(0x12b)]&&_0x596650[_0x39977e(0x133)](_0x39977e(0x125));}}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/listmultilevel
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that warns about using the MultiLevelList plugin in the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class MultiLevelListEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "MultiLevelListEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
var _0x5b6e65=_0x4ad2;(function(_0x29079f,_0x37eb47){var _0x466c11=_0x4ad2,_0x3c5859=_0x29079f();while(!![]){try{var _0x390ec2=-parseInt(_0x466c11(0xa6))/0x1*(parseInt(_0x466c11(0x99))/0x2)+-parseInt(_0x466c11(0xae))/0x3*(-parseInt(_0x466c11(0xa5))/0x4)+parseInt(_0x466c11(0xaa))/0x5*(parseInt(_0x466c11(0x9f))/0x6)+-parseInt(_0x466c11(0x9c))/0x7*(-parseInt(_0x466c11(0x9a))/0x8)+-parseInt(_0x466c11(0xad))/0x9*(parseInt(_0x466c11(0xa1))/0xa)+parseInt(_0x466c11(0x9d))/0xb+parseInt(_0x466c11(0xa3))/0xc;if(_0x390ec2===_0x37eb47)break;else _0x3c5859['push'](_0x3c5859['shift']());}catch(_0x180dc7){_0x3c5859['push'](_0x3c5859['shift']());}}}(_0x405d,0x7114b));import{Plugin as _0x4e2a70}from'ckeditor5/src/core.js';import _0x4153d2 from'../emailconfigurationlogger.js';function _0x4ad2(_0x3f196f,_0x43949d){var _0x405d94=_0x405d();return _0x4ad2=function(_0x4ad247,_0x4ea2a5){_0x4ad247=_0x4ad247-0x98;var _0x1175f0=_0x405d94[_0x4ad247];return _0x1175f0;},_0x4ad2(_0x3f196f,_0x43949d);}export default class j extends _0x4e2a70{static get[_0x5b6e65(0xac)](){return[_0x4153d2];}static get[_0x5b6e65(0xa8)](){var _0x30a714=_0x5b6e65;return _0x30a714(0xa4);}static get[_0x5b6e65(0xa9)](){return!0x0;}static get[_0x5b6e65(0xab)](){return!0x0;}[_0x5b6e65(0xaf)](){var _0x263f12=_0x5b6e65;this[_0x263f12(0xa2)][_0x263f12(0xa7)][_0x263f12(0xa0)](_0x4153d2)[_0x263f12(0x98)](_0x263f12(0x9e),{'description':_0x263f12(0x9b)});}}function _0x405d(){var _0x896c5e=['isPremiumPlugin','requires','261297ahZeTZ','24yGiSTa','afterInit','_checkUnsupportedPlugin','224QdZCUN','32kbZUQa','The\x20multi-level\x20lists\x20are\x20rendered\x20incorrectly\x20in\x20Outlook\x202021.','485548PfngQN','3630803gYhCRK','MultiLevelList','2038398msSvfb','get','270fNXjqA','editor','2820384GsjNjw','MultiLevelListEmailIntegration','67892sfyJbw','634cnAnKy','plugins','pluginName','isOfficialPlugin','5bYRWfX'];_0x405d=function(){return _0x896c5e;};return _0x405d();}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/markdown
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that warns about using Markdown plugin in the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class MarkdownEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "MarkdownEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
var _0x4550c1=_0x4ec0;(function(_0x2035b8,_0x2c0b43){var _0x5d6de7=_0x4ec0,_0x4d53d1=_0x2035b8();while(!![]){try{var _0x221ea0=-parseInt(_0x5d6de7(0xbb))/0x1+parseInt(_0x5d6de7(0xc5))/0x2*(parseInt(_0x5d6de7(0xbf))/0x3)+-parseInt(_0x5d6de7(0xc0))/0x4+-parseInt(_0x5d6de7(0xbd))/0x5+-parseInt(_0x5d6de7(0xcb))/0x6*(parseInt(_0x5d6de7(0xc7))/0x7)+parseInt(_0x5d6de7(0xc8))/0x8*(-parseInt(_0x5d6de7(0xc6))/0x9)+parseInt(_0x5d6de7(0xca))/0xa;if(_0x221ea0===_0x2c0b43)break;else _0x4d53d1['push'](_0x4d53d1['shift']());}catch(_0x6c2e2b){_0x4d53d1['push'](_0x4d53d1['shift']());}}}(_0x52df,0x5f5c1));function _0x52df(){var _0x174897=['afterInit','3279850YgHqXn','editor','527433reeHYr','505864hvXBlH','MarkdownEmailIntegration','isPremiumPlugin','_checkUnsupportedPlugin','pluginName','4nriiZq','45wemqUV','182oQABqY','331048efFKeD','Markdown','15420770QfBNFV','1962FpXgbF','requires','get','isOfficialPlugin','plugins','505263cVZArN'];_0x52df=function(){return _0x174897;};return _0x52df();}function _0x4ec0(_0x391a5a,_0x3ebeba){var _0x52dff0=_0x52df();return _0x4ec0=function(_0x4ec0bf,_0x1a3e76){_0x4ec0bf=_0x4ec0bf-0xbb;var _0x3adc83=_0x52dff0[_0x4ec0bf];return _0x3adc83;},_0x4ec0(_0x391a5a,_0x3ebeba);}import{Plugin as _0x57be35}from'ckeditor5/src/core.js';import _0x504035 from'../emailconfigurationlogger.js';export default class p extends _0x57be35{static get[_0x4550c1(0xcc)](){return[_0x504035];}static get[_0x4550c1(0xc4)](){var _0x18a17a=_0x4550c1;return _0x18a17a(0xc1);}static get[_0x4550c1(0xce)](){return!0x0;}static get[_0x4550c1(0xc2)](){return!0x0;}[_0x4550c1(0xbc)](){var _0x3f265a=_0x4550c1;this[_0x3f265a(0xbe)][_0x3f265a(0xcf)][_0x3f265a(0xcd)](_0x504035)[_0x3f265a(0xc3)](_0x3f265a(0xc9));}}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/mathtype
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that warns about using MathType plugin in the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class MathTypeEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "MathTypeEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
var _0x44dfe0=_0x3e86;(function(_0x14bcd9,_0x37b33a){var _0x8131c8=_0x3e86,_0x1b3880=_0x14bcd9();while(!![]){try{var _0x4168cd=parseInt(_0x8131c8(0x112))/0x1+-parseInt(_0x8131c8(0x119))/0x2*(-parseInt(_0x8131c8(0x11c))/0x3)+parseInt(_0x8131c8(0x113))/0x4*(-parseInt(_0x8131c8(0x10e))/0x5)+parseInt(_0x8131c8(0x118))/0x6+parseInt(_0x8131c8(0x11b))/0x7*(parseInt(_0x8131c8(0x10a))/0x8)+parseInt(_0x8131c8(0x11e))/0x9*(parseInt(_0x8131c8(0x10d))/0xa)+parseInt(_0x8131c8(0x111))/0xb;if(_0x4168cd===_0x37b33a)break;else _0x1b3880['push'](_0x1b3880['shift']());}catch(_0xe006e1){_0x1b3880['push'](_0x1b3880['shift']());}}}(_0xfc31,0x60656));function _0xfc31(){var _0x4cd564=['isPremiumPlugin','requires','plugins','pluginName','21684zGVvrD','41394SujwLU','editor','413WNfznO','48OrCqpr','get','792bTtxeu','MathType','33064lVRbuW','isOfficialPlugin','MathTypeEmailIntegration','6010CYtwWi','1780930hiLKDR','afterInit','_checkUnsupportedPlugin','1376320ASdRho','350589ZIdyXz','8bqDMVY'];_0xfc31=function(){return _0x4cd564;};return _0xfc31();}import{Plugin as _0x56515e}from'ckeditor5/src/core.js';function _0x3e86(_0x17638f,_0x2d1bdc){var _0xfc3199=_0xfc31();return _0x3e86=function(_0x3e86fb,_0x476341){_0x3e86fb=_0x3e86fb-0x109;var _0x2c3167=_0xfc3199[_0x3e86fb];return _0x2c3167;},_0x3e86(_0x17638f,_0x2d1bdc);}import _0x5e78e2 from'../emailconfigurationlogger.js';export default class n extends _0x56515e{static get[_0x44dfe0(0x115)](){return[_0x5e78e2];}static get[_0x44dfe0(0x117)](){var _0x5b526=_0x44dfe0;return _0x5b526(0x10c);}static get[_0x44dfe0(0x10b)](){return!0x0;}static get[_0x44dfe0(0x114)](){return!0x0;}[_0x44dfe0(0x10f)](){var _0x547c13=_0x44dfe0;this[_0x547c13(0x11a)][_0x547c13(0x116)][_0x547c13(0x11d)](_0x5e78e2)[_0x547c13(0x110)](_0x547c13(0x109));}}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/mediaembed
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that warns about using MediaEmbed plugin in the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class MediaEmbedEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "MediaEmbedEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
function _0x2306(){var _0x554c36=['2ztpUBP','MediaEmbed','editor','288681CtMDhk','6ICzbSx','2963632bChlcU','4013079Xrrwrp','912159JzHEpA','isOfficialPlugin','14238653NemXby','_checkUnsupportedPlugin','pluginName','requires','get','isPremiumPlugin','afterInit','1415903RDTvbZ','138335lDeVQO','10CRgPGz','plugins','120VziYlP','MediaEmbedEmailIntegration'];_0x2306=function(){return _0x554c36;};return _0x2306();}var _0x2d41c7=_0x449d;(function(_0x55cbf0,_0x2d94a0){var _0x58fc9b=_0x449d,_0x560d37=_0x55cbf0();while(!![]){try{var _0x5a61dc=parseInt(_0x58fc9b(0x92))/0x1+-parseInt(_0x58fc9b(0x98))/0x2*(parseInt(_0x58fc9b(0x9b))/0x3)+parseInt(_0x58fc9b(0x96))/0x4*(-parseInt(_0x58fc9b(0x93))/0x5)+parseInt(_0x58fc9b(0x9c))/0x6*(-parseInt(_0x58fc9b(0x9e))/0x7)+-parseInt(_0x58fc9b(0x9d))/0x8+-parseInt(_0x58fc9b(0x9f))/0x9*(parseInt(_0x58fc9b(0x94))/0xa)+parseInt(_0x58fc9b(0xa1))/0xb;if(_0x5a61dc===_0x2d94a0)break;else _0x560d37['push'](_0x560d37['shift']());}catch(_0x5adb92){_0x560d37['push'](_0x560d37['shift']());}}}(_0x2306,0xb46ab));import{Plugin as _0x511f92}from'ckeditor5/src/core.js';function _0x449d(_0x51567f,_0x346eb6){var _0x23062b=_0x2306();return _0x449d=function(_0x449d0f,_0x4061fd){_0x449d0f=_0x449d0f-0x8e;var _0x39cbe5=_0x23062b[_0x449d0f];return _0x39cbe5;},_0x449d(_0x51567f,_0x346eb6);}import _0x40186f from'../emailconfigurationlogger.js';export default class d extends _0x511f92{static get[_0x2d41c7(0x8e)](){return[_0x40186f];}static get[_0x2d41c7(0xa3)](){var _0x15f93b=_0x2d41c7;return _0x15f93b(0x97);}static get[_0x2d41c7(0xa0)](){return!0x0;}static get[_0x2d41c7(0x90)](){return!0x0;}[_0x2d41c7(0x91)](){var _0x2bdf2d=_0x2d41c7;this[_0x2bdf2d(0x9a)][_0x2bdf2d(0x95)][_0x2bdf2d(0x8f)](_0x40186f)[_0x2bdf2d(0xa2)](_0x2bdf2d(0x99));}}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/mergefields
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that checks if the MergeFields plugin is properly configured for the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class MergeFieldsEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "MergeFieldsEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
const _0x53ac9c=_0x174a;(function(_0xd603ac,_0x1d70dd){const _0x2b7e75=_0x174a,_0x3ff1d0=_0xd603ac();while(!![]){try{const _0x20d319=parseInt(_0x2b7e75(0x9a))/0x1*(parseInt(_0x2b7e75(0x9f))/0x2)+-parseInt(_0x2b7e75(0x87))/0x3+-parseInt(_0x2b7e75(0x94))/0x4*(-parseInt(_0x2b7e75(0x93))/0x5)+-parseInt(_0x2b7e75(0x96))/0x6+-parseInt(_0x2b7e75(0x88))/0x7*(parseInt(_0x2b7e75(0x8b))/0x8)+parseInt(_0x2b7e75(0x91))/0x9*(-parseInt(_0x2b7e75(0x89))/0xa)+-parseInt(_0x2b7e75(0x8f))/0xb*(-parseInt(_0x2b7e75(0x8e))/0xc);if(_0x20d319===_0x1d70dd)break;else _0x3ff1d0['push'](_0x3ff1d0['shift']());}catch(_0x142744){_0x3ff1d0['push'](_0x3ff1d0['shift']());}}}(_0xc988,0x80c3e));function _0x174a(_0x2dedc0,_0x2cf150){const _0xc988f7=_0xc988();return _0x174a=function(_0x174abd,_0x4375a6){_0x174abd=_0x174abd-0x85;let _0xd16a99=_0xc988f7[_0x174abd];return _0xd16a99;},_0x174a(_0x2dedc0,_0x2cf150);}import{Plugin as _0x804bf4}from'ckeditor5/src/core.js';import _0x524881 from'../emailconfigurationlogger.js';function _0xc988(){const _0x3dedf8=['editor','2519544dPfrXX','1799pgQihW','1908400mOxaAn','isPremiumPlugin','30520gNWqTG','has','requires','43126476HHGskI','11fyCepT','plugins','45zhQPhb','afterInit','4240rXGUjp','400MbonMy','Consider\x20enabling\x20the\x20MergeFields\x20plugin\x20which\x20allows\x20inserting\x20dynamic\x20data\x20placeholders\x20into\x20content.','2871858qPFuZq','_logSuppressibleInfo','isOfficialPlugin','features/email#merge-fields-plugin','33965WmzGJV','email-configuration-missing-merge-fields-plugin','MergeFields','get','pluginName','6OrUtwx','MergeFieldsEmailIntegration'];_0xc988=function(){return _0x3dedf8;};return _0xc988();}export default class u extends _0x804bf4{static get[_0x53ac9c(0x8d)](){return[_0x524881];}static get[_0x53ac9c(0x9e)](){const _0x397a44=_0x53ac9c;return _0x397a44(0x85);}static get[_0x53ac9c(0x98)](){return!0x0;}static get[_0x53ac9c(0x8a)](){return!0x0;}[_0x53ac9c(0x92)](){const _0x12de05=_0x53ac9c,_0x2da352=this[_0x12de05(0x86)][_0x12de05(0x90)][_0x12de05(0x9d)](_0x524881);this[_0x12de05(0x86)][_0x12de05(0x90)][_0x12de05(0x8c)](_0x12de05(0x9c))||_0x2da352[_0x12de05(0x97)](_0x12de05(0x9b),_0x12de05(0x95),_0x12de05(0x99));}}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/sourceediting
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that checks if the SourceEditing or SourceEditingEnhanced plugin are loaded.
|
|
13
|
+
*/
|
|
14
|
+
export default class SourceEditingEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "SourceEditingEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
const _0x2d6a9a=_0x1cc6;function _0x1cc6(_0x48de7f,_0x36d742){const _0x102b6b=_0x102b();return _0x1cc6=function(_0x1cc6b8,_0x948464){_0x1cc6b8=_0x1cc6b8-0x12c;let _0x337d2d=_0x102b6b[_0x1cc6b8];return _0x337d2d;},_0x1cc6(_0x48de7f,_0x36d742);}(function(_0x69e03b,_0x2643f3){const _0x3c56ff=_0x1cc6,_0x16af1c=_0x69e03b();while(!![]){try{const _0x5589a1=-parseInt(_0x3c56ff(0x135))/0x1+parseInt(_0x3c56ff(0x13f))/0x2*(parseInt(_0x3c56ff(0x139))/0x3)+parseInt(_0x3c56ff(0x130))/0x4*(-parseInt(_0x3c56ff(0x142))/0x5)+-parseInt(_0x3c56ff(0x143))/0x6+-parseInt(_0x3c56ff(0x141))/0x7*(parseInt(_0x3c56ff(0x144))/0x8)+parseInt(_0x3c56ff(0x13e))/0x9*(parseInt(_0x3c56ff(0x12d))/0xa)+parseInt(_0x3c56ff(0x13c))/0xb*(parseInt(_0x3c56ff(0x13a))/0xc);if(_0x5589a1===_0x2643f3)break;else _0x16af1c['push'](_0x16af1c['shift']());}catch(_0x4759da){_0x16af1c['push'](_0x16af1c['shift']());}}}(_0x102b,0x846f6));function _0x102b(){const _0xfd52b3=['9389691sllZSj','4lHlOKx','editor','6335iGZxOT','175jamoGM','2379408BirCxC','2712mwhsZs','isOfficialPlugin','10RPFuqa','pluginName','has','3836czfROo','requires','isPremiumPlugin','SourceEditingEnhanced','afterInit','726669Ybrpfk','_logSuppressibleWarning','SourceEditingEmailIntegration','email-configuration-missing-source-editing-plugin','1113171PVAjbn','24huLqWN','get','1213509rXdRDR','SourceEditing'];_0x102b=function(){return _0xfd52b3;};return _0x102b();}import{Plugin as _0x4a70ef}from'ckeditor5/src/core.js';import _0x38c10c from'../emailconfigurationlogger.js';export default class g extends _0x4a70ef{static get[_0x2d6a9a(0x131)](){return[_0x38c10c];}static get[_0x2d6a9a(0x12e)](){const _0xd0af61=_0x2d6a9a;return _0xd0af61(0x137);}static get[_0x2d6a9a(0x12c)](){return!0x0;}static get[_0x2d6a9a(0x132)](){return!0x0;}[_0x2d6a9a(0x134)](){const _0x55841e=_0x2d6a9a,{plugins:_0x3fab35}=this[_0x55841e(0x140)],_0x4fa530=_0x3fab35[_0x55841e(0x13b)](_0x38c10c);_0x3fab35[_0x55841e(0x12f)](_0x55841e(0x13d))||_0x3fab35[_0x55841e(0x12f)](_0x55841e(0x133))||_0x4fa530[_0x55841e(0x136)](_0x55841e(0x138));}}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/table
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that checks if the Table plugin is properly configured for the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class TableEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "TableEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
const _0x537c78=_0x59e0;function _0x59e0(_0x2a0c68,_0x260f82){const _0x3c0938=_0x3c09();return _0x59e0=function(_0x59e023,_0x240ae3){_0x59e023=_0x59e023-0xd4;let _0x1e448c=_0x3c0938[_0x59e023];return _0x1e448c;},_0x59e0(_0x2a0c68,_0x260f82);}(function(_0xeff117,_0x281212){const _0x2acb03=_0x59e0,_0x4af893=_0xeff117();while(!![]){try{const _0x54436d=parseInt(_0x2acb03(0xd8))/0x1*(-parseInt(_0x2acb03(0xf0))/0x2)+parseInt(_0x2acb03(0xe2))/0x3+parseInt(_0x2acb03(0xd4))/0x4+parseInt(_0x2acb03(0xe9))/0x5*(parseInt(_0x2acb03(0xda))/0x6)+-parseInt(_0x2acb03(0xf5))/0x7+parseInt(_0x2acb03(0xd6))/0x8+parseInt(_0x2acb03(0xe0))/0x9;if(_0x54436d===_0x281212)break;else _0x4af893['push'](_0x4af893['shift']());}catch(_0x41c99c){_0x4af893['push'](_0x4af893['shift']());}}}(_0x3c09,0x31b75));import{Plugin as _0x35c61f}from'ckeditor5/src/core.js';import _0x39e5e1 from'../emailconfigurationlogger.js';export default class s extends _0x35c61f{static get[_0x537c78(0xe8)](){return[_0x39e5e1];}static get[_0x537c78(0xde)](){const _0x28bda5=_0x537c78;return _0x28bda5(0xdd);}static get[_0x537c78(0xf1)](){return!0x0;}static get[_0x537c78(0xef)](){return!0x0;}[_0x537c78(0xe1)](){const _0xc22326=_0x537c78;this[_0xc22326(0xf8)](),this[_0xc22326(0xe7)]();}[_0x537c78(0xf8)](){const _0x1df5d8=_0x537c78,{plugins:_0x3f6853}=this[_0x1df5d8(0xfa)],_0x26c49e=_0x3f6853[_0x1df5d8(0xdc)](_0x39e5e1);_0x3f6853[_0x1df5d8(0xe3)](_0x1df5d8(0xe5))&&(_0x3f6853[_0x1df5d8(0xe3)](_0x1df5d8(0xe4))||_0x26c49e[_0x1df5d8(0xd7)](_0x1df5d8(0xf2)),_0x3f6853[_0x1df5d8(0xe3)](_0x1df5d8(0xea))||_0x26c49e[_0x1df5d8(0xd7)](_0x1df5d8(0xf6)));}[_0x537c78(0xe7)](){const _0x8b3199=_0x537c78,{config:_0x321cc4,plugins:_0x35c046}=this[_0x8b3199(0xfa)];_0x321cc4[_0x8b3199(0xdc)](_0x8b3199(0xe6))&&_0x35c046[_0x8b3199(0xe3)](_0x8b3199(0xe5))&&(this[_0x8b3199(0xf4)](_0x8b3199(0xdb)),this[_0x8b3199(0xf4)](_0x8b3199(0xec)));}[_0x537c78(0xf4)](_0x1bac2b){const _0x453eed=_0x537c78,_0x4b0588=this[_0x453eed(0xfa)][_0x453eed(0xf7)][_0x453eed(0xdc)](_0x39e5e1);_0x4b0588[_0x453eed(0xf3)](_0x453eed(0xeb)+_0x1bac2b+_0x453eed(0xdf)),_0x4b0588[_0x453eed(0xf3)](_0x453eed(0xeb)+_0x1bac2b+_0x453eed(0xd9)),_0x4b0588[_0x453eed(0xf3)](_0x453eed(0xeb)+_0x1bac2b+_0x453eed(0xed)),_0x4b0588[_0x453eed(0xf3)](_0x453eed(0xeb)+_0x1bac2b+_0x453eed(0xd5)),_0x4b0588[_0x453eed(0xf9)](_0x453eed(0xeb)+_0x1bac2b+_0x453eed(0xee));}}function _0x3c09(){const _0x536309=['afterInit','502185VomJVF','has','PlainTableOutput','Table','table','_checkTableConfig','requires','305rgfgjN','TableLayout','table.','tableProperties','.defaultProperties.borderColor','.colorPicker.format','isPremiumPlugin','2AIUhKq','isOfficialPlugin','email-configuration-missing-plain-table-output-plugin','_validateConfigColorValue','_checkTablePropertiesConfig','1658860MGFjbx','email-configuration-missing-table-layout-plugin','plugins','_checkRequiredTablePlugins','_validateConfigColorFormat','editor','1132260RJXfOi','.defaultProperties','1168856SbQetF','_logSuppressibleWarning','386137nJdTTV','.backgroundColors','17652bGWzAt','tableCellProperties','get','TableEmailIntegration','pluginName','.borderColors','456525lfwfkL'];_0x3c09=function(){return _0x536309;};return _0x3c09();}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/template
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that checks if the Template plugin is properly configured for the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class TemplateEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "TemplateEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
const _0x10938e=_0x19c5;(function(_0x148896,_0x12183c){const _0x2aca50=_0x19c5,_0x3b4193=_0x148896();while(!![]){try{const _0x484f36=parseInt(_0x2aca50(0x123))/0x1*(parseInt(_0x2aca50(0x115))/0x2)+-parseInt(_0x2aca50(0x11a))/0x3*(-parseInt(_0x2aca50(0x11b))/0x4)+-parseInt(_0x2aca50(0x127))/0x5+-parseInt(_0x2aca50(0x118))/0x6+parseInt(_0x2aca50(0x126))/0x7*(parseInt(_0x2aca50(0x110))/0x8)+-parseInt(_0x2aca50(0x120))/0x9+parseInt(_0x2aca50(0x124))/0xa;if(_0x484f36===_0x12183c)break;else _0x3b4193['push'](_0x3b4193['shift']());}catch(_0x2d062c){_0x3b4193['push'](_0x3b4193['shift']());}}}(_0x542f,0xe38af));import{Plugin as _0x4b70db}from'ckeditor5/src/core.js';function _0x19c5(_0x57640d,_0x2add9e){const _0x542f78=_0x542f();return _0x19c5=function(_0x19c5cb,_0x5b091a){_0x19c5cb=_0x19c5cb-0x110;let _0x149f6a=_0x542f78[_0x19c5cb];return _0x149f6a;},_0x19c5(_0x57640d,_0x2add9e);}import _0x5bb9ac from'../emailconfigurationlogger.js';export default class c extends _0x4b70db{static get[_0x10938e(0x121)](){return[_0x5bb9ac];}static get[_0x10938e(0x11d)](){const _0x59bf17=_0x10938e;return _0x59bf17(0x111);}static get[_0x10938e(0x114)](){return!0x0;}static get[_0x10938e(0x113)](){return!0x0;}[_0x10938e(0x119)](){const _0x1524c6=_0x10938e,_0x5682f0=this[_0x1524c6(0x128)][_0x1524c6(0x112)][_0x1524c6(0x11f)](_0x5bb9ac);this[_0x1524c6(0x128)][_0x1524c6(0x112)][_0x1524c6(0x122)](_0x1524c6(0x11c))||_0x5682f0[_0x1524c6(0x125)](_0x1524c6(0x117),_0x1524c6(0x116),_0x1524c6(0x11e));}}function _0x542f(){const _0x449f9a=['editor','3859640TEBUlh','TemplateEmailIntegration','plugins','isPremiumPlugin','isOfficialPlugin','50NImYOJ','Consider\x20enabling\x20the\x20Template\x20plugin\x20which\x20allows\x20inserting\x20predefined\x20e-mail\x20templates\x20into\x20the\x20editor.','email-configuration-missing-template-plugin','2299968jgOVHv','afterInit','2973VrZWFO','2736bsxOUJ','Template','pluginName','features/email#template-plugin','get','1844730bEiHmv','requires','has','19300TpisJk','12635620mgfQPi','_logSuppressibleInfo','7JTRrzG','6930240PxHQYy'];_0x542f=function(){return _0x449f9a;};return _0x542f();}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2025, 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
|
+
/**
|
|
6
|
+
* @module email/integrations/todolist
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import EmailConfigurationLogger from '../emailconfigurationlogger.js';
|
|
11
|
+
/**
|
|
12
|
+
* A plugin that warns about using the TodoList plugin in the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class TodoListEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "TodoListEmailIntegration";
|
|
23
|
+
/**
|
|
24
|
+
* @inheritDoc
|
|
25
|
+
*/
|
|
26
|
+
static get isOfficialPlugin(): true;
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
*/
|
|
30
|
+
static get isPremiumPlugin(): true;
|
|
31
|
+
/**
|
|
32
|
+
* @inheritDoc
|
|
33
|
+
*/
|
|
34
|
+
afterInit(): void;
|
|
35
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
function _0x153c(_0x54cb9b,_0x2592f2){var _0x318d6a=_0x318d();return _0x153c=function(_0x153ca6,_0x1d334b){_0x153ca6=_0x153ca6-0x13d;var _0x514f72=_0x318d6a[_0x153ca6];return _0x514f72;},_0x153c(_0x54cb9b,_0x2592f2);}var _0x597990=_0x153c;(function(_0x4efb76,_0x1bd876){var _0x54da84=_0x153c,_0x33fbfc=_0x4efb76();while(!![]){try{var _0x3e66c8=parseInt(_0x54da84(0x14b))/0x1+-parseInt(_0x54da84(0x14f))/0x2*(parseInt(_0x54da84(0x13f))/0x3)+-parseInt(_0x54da84(0x152))/0x4*(parseInt(_0x54da84(0x144))/0x5)+-parseInt(_0x54da84(0x150))/0x6*(parseInt(_0x54da84(0x14e))/0x7)+parseInt(_0x54da84(0x151))/0x8*(parseInt(_0x54da84(0x149))/0x9)+-parseInt(_0x54da84(0x140))/0xa+parseInt(_0x54da84(0x143))/0xb;if(_0x3e66c8===_0x1bd876)break;else _0x33fbfc['push'](_0x33fbfc['shift']());}catch(_0x23aed3){_0x33fbfc['push'](_0x33fbfc['shift']());}}}(_0x318d,0x62e15));function _0x318d(){var _0x50ec63=['pluginName','_checkUnsupportedPlugin','editor','afterInit','1545417FMXXgJ','requires','269467VFWjpo','TodoList','isPremiumPlugin','70zQCNXL','12USlRUa','180798xSIrgh','16BZqfDS','472mZdjQw','TodoListEmailIntegration','isOfficialPlugin','47733wMFBzl','4396780AbYPNg','plugins','get','11614592vfOhXK','18105tpRvOj'];_0x318d=function(){return _0x50ec63;};return _0x318d();}import{Plugin as _0x1016b5}from'ckeditor5/src/core.js';import _0x35ed19 from'../emailconfigurationlogger.js';export default class y extends _0x1016b5{static get[_0x597990(0x14a)](){return[_0x35ed19];}static get[_0x597990(0x145)](){var _0x2f4cc6=_0x597990;return _0x2f4cc6(0x13d);}static get[_0x597990(0x13e)](){return!0x0;}static get[_0x597990(0x14d)](){return!0x0;}[_0x597990(0x148)](){var _0x4db983=_0x597990;this[_0x4db983(0x147)][_0x4db983(0x141)][_0x4db983(0x142)](_0x35ed19)[_0x4db983(0x146)](_0x4db983(0x14c));}}
|