@ckeditor/ckeditor5-email 0.0.1 → 45.0.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/CHANGELOG.md +4 -0
- package/LICENSE.md +6 -6
- package/README.md +47 -3
- 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 +51 -4
- 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 _0x1e6c68=_0x471d;(function(_0x94087d,_0x3f0bf8){const _0x5ea8e8=_0x471d,_0x41ef8a=_0x94087d();while(!![]){try{const _0x44f414=-parseInt(_0x5ea8e8(0xf7))/0x1+parseInt(_0x5ea8e8(0xf5))/0x2*(-parseInt(_0x5ea8e8(0xfa))/0x3)+parseInt(_0x5ea8e8(0xf8))/0x4*(parseInt(_0x5ea8e8(0xfc))/0x5)+parseInt(_0x5ea8e8(0xf6))/0x6*(parseInt(_0x5ea8e8(0x103))/0x7)+-parseInt(_0x5ea8e8(0x100))/0x8*(-parseInt(_0x5ea8e8(0x107))/0x9)+parseInt(_0x5ea8e8(0x10b))/0xa+-parseInt(_0x5ea8e8(0x108))/0xb;if(_0x44f414===_0x3f0bf8)break;else _0x41ef8a['push'](_0x41ef8a['shift']());}catch(_0x29e869){_0x41ef8a['push'](_0x41ef8a['shift']());}}}(_0x5ede,0x319de));import{Plugin as _0x2eb0e5}from'ckeditor5/src/core.js';function _0x5ede(){const _0xcde1b8=['_logSuppressibleWarning','ListEmailIntegration','58034jCjqFr','30IThOLU','112992SLLwlV','111484bxQHAE','get','6QMcAXZ','afterInit','40nqnots','config','reversed','list','152TVbBZs','pluginName','requires','460593xpPHlH','isOfficialPlugin','plugins','email-configuration-unsupported-reversed-list','4527huoMji','4726821XDwdPg','editor','isPremiumPlugin','2424470EXEnIi','properties'];_0x5ede=function(){return _0xcde1b8;};return _0x5ede();}function _0x471d(_0x4952a0,_0x5e8876){const _0x5ede84=_0x5ede();return _0x471d=function(_0x471dc8,_0xb57c5e){_0x471dc8=_0x471dc8-0xf3;let _0x5325a0=_0x5ede84[_0x471dc8];return _0x5325a0;},_0x471d(_0x4952a0,_0x5e8876);}import _0x599b28 from'../emailconfigurationlogger.js';export default class a extends _0x2eb0e5{static get[_0x1e6c68(0x102)](){return[_0x599b28];}static get[_0x1e6c68(0x101)](){const _0x11c90f=_0x1e6c68;return _0x11c90f(0xf4);}static get[_0x1e6c68(0x104)](){return!0x0;}static get[_0x1e6c68(0x10a)](){return!0x0;}[_0x1e6c68(0xfb)](){const _0x32f72d=_0x1e6c68,_0x589785=this[_0x32f72d(0x109)][_0x32f72d(0x105)][_0x32f72d(0xf9)](_0x599b28),_0x4ee7aa=this[_0x32f72d(0x109)][_0x32f72d(0xfd)][_0x32f72d(0xf9)](_0x32f72d(0xff));_0x4ee7aa&&_0x4ee7aa[_0x32f72d(0x10c)]&&_0x4ee7aa[_0x32f72d(0x10c)][_0x32f72d(0xfe)]&&_0x589785[_0x32f72d(0xf3)](_0x32f72d(0x106));}}
|
|
@@ -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
|
+
function _0x2fd9(_0x117b9e,_0x38d6c1){var _0x5100ca=_0x5100();return _0x2fd9=function(_0x2fd9f6,_0x4fb5b6){_0x2fd9f6=_0x2fd9f6-0x100;var _0x2770d7=_0x5100ca[_0x2fd9f6];return _0x2770d7;},_0x2fd9(_0x117b9e,_0x38d6c1);}function _0x5100(){var _0x504fb2=['1498815BjyIPb','The\x20multi-level\x20lists\x20are\x20rendered\x20incorrectly\x20in\x20Outlook\x202021.','8128570kRUqTf','get','3600AvVydW','3712065rSSiSH','1476lXrcmy','4015iYuANx','_checkUnsupportedPlugin','afterInit','835032zpPSLB','9yZlsRN','MultiLevelListEmailIntegration','editor','isOfficialPlugin','2865408JHucBr','pluginName','plugins','requires','isPremiumPlugin','MultiLevelList','277PqLXGW'];_0x5100=function(){return _0x504fb2;};return _0x5100();}var _0x329785=_0x2fd9;(function(_0x1abe21,_0x3bbfb6){var _0x2f098a=_0x2fd9,_0x387abf=_0x1abe21();while(!![]){try{var _0x1fd4b6=-parseInt(_0x2f098a(0x109))/0x1*(-parseInt(_0x2f098a(0x10e))/0x2)+-parseInt(_0x2f098a(0x10a))/0x3+parseInt(_0x2f098a(0x114))/0x4+parseInt(_0x2f098a(0x111))/0x5*(parseInt(_0x2f098a(0x110))/0x6)+-parseInt(_0x2f098a(0x10f))/0x7+-parseInt(_0x2f098a(0x103))/0x8+parseInt(_0x2f098a(0x115))/0x9*(parseInt(_0x2f098a(0x10c))/0xa);if(_0x1fd4b6===_0x3bbfb6)break;else _0x387abf['push'](_0x387abf['shift']());}catch(_0x239e49){_0x387abf['push'](_0x387abf['shift']());}}}(_0x5100,0x507cd));import{Plugin as _0x8154f2}from'ckeditor5/src/core.js';import _0x77b65f from'../emailconfigurationlogger.js';export default class j extends _0x8154f2{static get[_0x329785(0x106)](){return[_0x77b65f];}static get[_0x329785(0x104)](){var _0x23f496=_0x329785;return _0x23f496(0x100);}static get[_0x329785(0x102)](){return!0x0;}static get[_0x329785(0x107)](){return!0x0;}[_0x329785(0x113)](){var _0x149d49=_0x329785;this[_0x149d49(0x101)][_0x149d49(0x105)][_0x149d49(0x10d)](_0x77b65f)[_0x149d49(0x112)](_0x149d49(0x108),{'description':_0x149d49(0x10b)});}}
|
|
@@ -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 _0x20f747=_0x39ff;(function(_0x46a812,_0x108635){var _0x177c78=_0x39ff,_0x1bae66=_0x46a812();while(!![]){try{var _0x5be287=parseInt(_0x177c78(0x1c5))/0x1+parseInt(_0x177c78(0x1b3))/0x2+parseInt(_0x177c78(0x1bf))/0x3*(parseInt(_0x177c78(0x1b7))/0x4)+parseInt(_0x177c78(0x1b2))/0x5*(-parseInt(_0x177c78(0x1c2))/0x6)+-parseInt(_0x177c78(0x1be))/0x7*(-parseInt(_0x177c78(0x1b6))/0x8)+-parseInt(_0x177c78(0x1c3))/0x9*(parseInt(_0x177c78(0x1c1))/0xa)+-parseInt(_0x177c78(0x1bb))/0xb;if(_0x5be287===_0x108635)break;else _0x1bae66['push'](_0x1bae66['shift']());}catch(_0x2aac71){_0x1bae66['push'](_0x1bae66['shift']());}}}(_0x36e8,0xc1ccf));function _0x36e8(){var _0x58cd89=['2069066JRsKey','_checkUnsupportedPlugin','pluginName','584YcbeTR','24LgQAAK','afterInit','MarkdownEmailIntegration','editor','6241642NbUeaf','requires','get','28651cTdWwp','304509OEbOnm','plugins','10QBQEKr','48DPGmAI','3427794sbryCU','isOfficialPlugin','510979zDJxxk','isPremiumPlugin','Markdown','444515LwdRdQ'];_0x36e8=function(){return _0x58cd89;};return _0x36e8();}import{Plugin as _0x1d436e}from'ckeditor5/src/core.js';import _0x294351 from'../emailconfigurationlogger.js';function _0x39ff(_0x1d9685,_0x40ccb9){var _0x36e8d4=_0x36e8();return _0x39ff=function(_0x39ff97,_0x3cded6){_0x39ff97=_0x39ff97-0x1b0;var _0x2d37cd=_0x36e8d4[_0x39ff97];return _0x2d37cd;},_0x39ff(_0x1d9685,_0x40ccb9);}export default class p extends _0x1d436e{static get[_0x20f747(0x1bc)](){return[_0x294351];}static get[_0x20f747(0x1b5)](){var _0x230d6c=_0x20f747;return _0x230d6c(0x1b9);}static get[_0x20f747(0x1c4)](){return!0x0;}static get[_0x20f747(0x1b0)](){return!0x0;}[_0x20f747(0x1b8)](){var _0x23bd2f=_0x20f747;this[_0x23bd2f(0x1ba)][_0x23bd2f(0x1c0)][_0x23bd2f(0x1bd)](_0x294351)[_0x23bd2f(0x1b4)](_0x23bd2f(0x1b1));}}
|
|
@@ -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
|
+
function _0x4639(_0x28a5c3,_0x27eae6){var _0x40a715=_0x40a7();return _0x4639=function(_0x4639e8,_0x2caa16){_0x4639e8=_0x4639e8-0xa8;var _0x3803f0=_0x40a715[_0x4639e8];return _0x3803f0;},_0x4639(_0x28a5c3,_0x27eae6);}var _0xaf915e=_0x4639;(function(_0x52e0ba,_0x389c6a){var _0x3e2dac=_0x4639,_0x3f1a24=_0x52e0ba();while(!![]){try{var _0x3a2c04=parseInt(_0x3e2dac(0xb3))/0x1*(parseInt(_0x3e2dac(0xae))/0x2)+parseInt(_0x3e2dac(0xac))/0x3*(-parseInt(_0x3e2dac(0xa8))/0x4)+parseInt(_0x3e2dac(0xa9))/0x5+parseInt(_0x3e2dac(0xbb))/0x6+-parseInt(_0x3e2dac(0xb9))/0x7*(parseInt(_0x3e2dac(0xaa))/0x8)+parseInt(_0x3e2dac(0xb8))/0x9+-parseInt(_0x3e2dac(0xab))/0xa;if(_0x3a2c04===_0x389c6a)break;else _0x3f1a24['push'](_0x3f1a24['shift']());}catch(_0x2596d1){_0x3f1a24['push'](_0x3f1a24['shift']());}}}(_0x40a7,0x6c4db));import{Plugin as _0x58f5d4}from'ckeditor5/src/core.js';import _0x4cfc70 from'../emailconfigurationlogger.js';export default class n extends _0x58f5d4{static get[_0xaf915e(0xb6)](){return[_0x4cfc70];}static get[_0xaf915e(0xb0)](){var _0x23df79=_0xaf915e;return _0x23df79(0xb1);}static get[_0xaf915e(0xad)](){return!0x0;}static get[_0xaf915e(0xbc)](){return!0x0;}[_0xaf915e(0xb7)](){var _0x587b44=_0xaf915e;this[_0x587b44(0xb5)][_0x587b44(0xaf)][_0x587b44(0xb4)](_0x4cfc70)[_0x587b44(0xb2)](_0x587b44(0xba));}}function _0x40a7(){var _0x4570e5=['pluginName','MathTypeEmailIntegration','_checkUnsupportedPlugin','833033dJbhrC','get','editor','requires','afterInit','4537944AXSXYX','256319SluYAR','MathType','225174QYZhJY','isPremiumPlugin','8XffLwi','3479495TzTWmd','8pVLYfJ','13986850fmVErH','287646fIcaCa','isOfficialPlugin','2GJCmkB','plugins'];_0x40a7=function(){return _0x4570e5;};return _0x40a7();}
|
|
@@ -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 _0x1416(_0x1de78b,_0x14933d){var _0x223656=_0x2236();return _0x1416=function(_0x14168d,_0x3dd39b){_0x14168d=_0x14168d-0x132;var _0x595cfb=_0x223656[_0x14168d];return _0x595cfb;},_0x1416(_0x1de78b,_0x14933d);}var _0x571c71=_0x1416;(function(_0x84f5c5,_0x3574e0){var _0x23fa16=_0x1416,_0x3c2bde=_0x84f5c5();while(!![]){try{var _0x59698c=parseInt(_0x23fa16(0x13c))/0x1*(parseInt(_0x23fa16(0x133))/0x2)+parseInt(_0x23fa16(0x13f))/0x3*(-parseInt(_0x23fa16(0x145))/0x4)+-parseInt(_0x23fa16(0x134))/0x5*(-parseInt(_0x23fa16(0x147))/0x6)+parseInt(_0x23fa16(0x140))/0x7+parseInt(_0x23fa16(0x142))/0x8*(parseInt(_0x23fa16(0x139))/0x9)+parseInt(_0x23fa16(0x13d))/0xa+-parseInt(_0x23fa16(0x136))/0xb;if(_0x59698c===_0x3574e0)break;else _0x3c2bde['push'](_0x3c2bde['shift']());}catch(_0x572e7b){_0x3c2bde['push'](_0x3c2bde['shift']());}}}(_0x2236,0xa4d18));import{Plugin as _0x1d3557}from'ckeditor5/src/core.js';function _0x2236(){var _0x3fbae3=['6PWWWzX','editor','2JlFpOQ','2819510QMeJQo','get','13367717EitROD','MediaEmbedEmailIntegration','requires','13194FQkVZY','plugins','pluginName','157737drvvrh','2463530SEdlpw','afterInit','135XGawPn','2335529OtsXgl','isOfficialPlugin','3272fNEHFw','_checkUnsupportedPlugin','MediaEmbed','968vclQzR','isPremiumPlugin'];_0x2236=function(){return _0x3fbae3;};return _0x2236();}import _0x41249c from'../emailconfigurationlogger.js';export default class d extends _0x1d3557{static get[_0x571c71(0x138)](){return[_0x41249c];}static get[_0x571c71(0x13b)](){var _0x3b02fd=_0x571c71;return _0x3b02fd(0x137);}static get[_0x571c71(0x141)](){return!0x0;}static get[_0x571c71(0x146)](){return!0x0;}[_0x571c71(0x13e)](){var _0xd6d3d7=_0x571c71;this[_0xd6d3d7(0x132)][_0xd6d3d7(0x13a)][_0xd6d3d7(0x135)](_0x41249c)[_0xd6d3d7(0x143)](_0xd6d3d7(0x144));}}
|
|
@@ -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 _0x1e797b=_0x1334;(function(_0x4a58b2,_0x25e095){const _0x2d64d6=_0x1334,_0x5a8104=_0x4a58b2();while(!![]){try{const _0x5da931=-parseInt(_0x2d64d6(0x1b8))/0x1+parseInt(_0x2d64d6(0x1b3))/0x2+-parseInt(_0x2d64d6(0x1bb))/0x3*(-parseInt(_0x2d64d6(0x1b5))/0x4)+parseInt(_0x2d64d6(0x1b4))/0x5+-parseInt(_0x2d64d6(0x1c6))/0x6+parseInt(_0x2d64d6(0x1c4))/0x7*(-parseInt(_0x2d64d6(0x1c8))/0x8)+-parseInt(_0x2d64d6(0x1bc))/0x9*(parseInt(_0x2d64d6(0x1c3))/0xa);if(_0x5da931===_0x25e095)break;else _0x5a8104['push'](_0x5a8104['shift']());}catch(_0xbbbf3){_0x5a8104['push'](_0x5a8104['shift']());}}}(_0x2777,0x53ba9));import{Plugin as _0x3ebe9c}from'ckeditor5/src/core.js';import _0x5cc7e5 from'../emailconfigurationlogger.js';function _0x2777(){const _0x34c853=['isOfficialPlugin','_logSuppressibleInfo','MergeFieldsEmailIntegration','pluginName','features/email#merge-fields-plugin','email-configuration-missing-merge-fields-plugin','1340zROchE','7wApWGc','has','139884pzAtGi','editor','3098712rkFeQP','plugins','afterInit','isPremiumPlugin','1162320pdNeOz','2611245XXheeL','4AvEukY','get','MergeFields','243756PENrqQ','requires','Consider\x20enabling\x20the\x20MergeFields\x20plugin\x20which\x20allows\x20inserting\x20dynamic\x20data\x20placeholders\x20into\x20content.','540933NprpeM','19233eXHJpk'];_0x2777=function(){return _0x34c853;};return _0x2777();}function _0x1334(_0x23f223,_0x1b7d84){const _0x2777c=_0x2777();return _0x1334=function(_0x1334af,_0x20e2ec){_0x1334af=_0x1334af-0x1b3;let _0x46abb8=_0x2777c[_0x1334af];return _0x46abb8;},_0x1334(_0x23f223,_0x1b7d84);}export default class u extends _0x3ebe9c{static get[_0x1e797b(0x1b9)](){return[_0x5cc7e5];}static get[_0x1e797b(0x1c0)](){const _0x194496=_0x1e797b;return _0x194496(0x1bf);}static get[_0x1e797b(0x1bd)](){return!0x0;}static get[_0x1e797b(0x1cb)](){return!0x0;}[_0x1e797b(0x1ca)](){const _0x388878=_0x1e797b,_0xfbc5a3=this[_0x388878(0x1c7)][_0x388878(0x1c9)][_0x388878(0x1b6)](_0x5cc7e5);this[_0x388878(0x1c7)][_0x388878(0x1c9)][_0x388878(0x1c5)](_0x388878(0x1b7))||_0xfbc5a3[_0x388878(0x1be)](_0x388878(0x1c2),_0x388878(0x1ba),_0x388878(0x1c1));}}
|
|
@@ -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
|
+
function _0x5d18(_0xe073b9,_0x483956){const _0x285941=_0x2859();return _0x5d18=function(_0x5d18b2,_0x151860){_0x5d18b2=_0x5d18b2-0x84;let _0x5a3740=_0x285941[_0x5d18b2];return _0x5a3740;},_0x5d18(_0xe073b9,_0x483956);}const _0x36b6cf=_0x5d18;(function(_0x16f024,_0x4dc16d){const _0x2f960f=_0x5d18,_0xe0ff31=_0x16f024();while(!![]){try{const _0x280aea=parseInt(_0x2f960f(0x94))/0x1*(parseInt(_0x2f960f(0x96))/0x2)+parseInt(_0x2f960f(0x91))/0x3*(-parseInt(_0x2f960f(0x9c))/0x4)+parseInt(_0x2f960f(0x97))/0x5+-parseInt(_0x2f960f(0x9a))/0x6*(-parseInt(_0x2f960f(0x8f))/0x7)+parseInt(_0x2f960f(0x89))/0x8*(-parseInt(_0x2f960f(0x8d))/0x9)+-parseInt(_0x2f960f(0x99))/0xa+parseInt(_0x2f960f(0x90))/0xb*(parseInt(_0x2f960f(0x8b))/0xc);if(_0x280aea===_0x4dc16d)break;else _0xe0ff31['push'](_0xe0ff31['shift']());}catch(_0x1ff13){_0xe0ff31['push'](_0xe0ff31['shift']());}}}(_0x2859,0x2f473));import{Plugin as _0x4fcc13}from'ckeditor5/src/core.js';function _0x2859(){const _0x4ef5f0=['264vbzOQY','177erpuCE','editor','requires','4468VUSYwH','email-configuration-missing-source-editing-plugin','92MXzSeq','844860nkjotn','SourceEditingEmailIntegration','2461880rzEgDS','6WoUAkM','SourceEditingEnhanced','4652SIiFuG','isPremiumPlugin','get','has','isOfficialPlugin','afterInit','536GxDguH','pluginName','197988fyKJVv','_logSuppressibleWarning','39357CDDaFe','SourceEditing','216797OxpfYh'];_0x2859=function(){return _0x4ef5f0;};return _0x2859();}import _0x22346d from'../emailconfigurationlogger.js';export default class g extends _0x4fcc13{static get[_0x36b6cf(0x93)](){return[_0x22346d];}static get[_0x36b6cf(0x8a)](){const _0x1c7022=_0x36b6cf;return _0x1c7022(0x98);}static get[_0x36b6cf(0x87)](){return!0x0;}static get[_0x36b6cf(0x84)](){return!0x0;}[_0x36b6cf(0x88)](){const _0x4fd9ce=_0x36b6cf,{plugins:_0x861950}=this[_0x4fd9ce(0x92)],_0x18b508=_0x861950[_0x4fd9ce(0x85)](_0x22346d);_0x861950[_0x4fd9ce(0x86)](_0x4fd9ce(0x8e))||_0x861950[_0x4fd9ce(0x86)](_0x4fd9ce(0x9b))||_0x18b508[_0x4fd9ce(0x8c)](_0x4fd9ce(0x95));}}
|
|
@@ -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 _0x3c7584=_0x4363;(function(_0x402a63,_0x5dcf6f){const _0x58a07b=_0x4363,_0x55c8c4=_0x402a63();while(!![]){try{const _0x1b9108=-parseInt(_0x58a07b(0x136))/0x1*(parseInt(_0x58a07b(0x11b))/0x2)+parseInt(_0x58a07b(0x112))/0x3+-parseInt(_0x58a07b(0x130))/0x4*(parseInt(_0x58a07b(0x123))/0x5)+-parseInt(_0x58a07b(0x135))/0x6+parseInt(_0x58a07b(0x115))/0x7*(parseInt(_0x58a07b(0x11c))/0x8)+parseInt(_0x58a07b(0x138))/0x9+parseInt(_0x58a07b(0x11e))/0xa*(parseInt(_0x58a07b(0x126))/0xb);if(_0x1b9108===_0x5dcf6f)break;else _0x55c8c4['push'](_0x55c8c4['shift']());}catch(_0x2e5673){_0x55c8c4['push'](_0x55c8c4['shift']());}}}(_0x58f8,0x4f307));import{Plugin as _0x1c0898}from'ckeditor5/src/core.js';function _0x4363(_0x3f21f7,_0x415594){const _0x58f851=_0x58f8();return _0x4363=function(_0x436323,_0x3db88b){_0x436323=_0x436323-0x112;let _0x20727b=_0x58f851[_0x436323];return _0x20727b;},_0x4363(_0x3f21f7,_0x415594);}function _0x58f8(){const _0x4fd0ef=['Table','_checkTableConfig','4208cKKoSY','.defaultProperties','_validateConfigColorFormat','isOfficialPlugin','isPremiumPlugin','2512080CGeDyO','309899crEuZv','plugins','4011309BGDGDt','.colorPicker.format','TableEmailIntegration','425622wWvfEu','_checkRequiredTablePlugins','tableCellProperties','49eftIqJ','.backgroundColors','has','email-configuration-missing-plain-table-output-plugin','.borderColors','afterInit','2oTFfxY','440592vhMQHM','.defaultProperties.borderColor','8650xtNyPf','email-configuration-missing-table-layout-plugin','TableLayout','_checkTablePropertiesConfig','requires','1450NocjVC','_validateConfigColorValue','tableProperties','4895phWeLz','PlainTableOutput','get','editor','table.','table','_logSuppressibleWarning','pluginName'];_0x58f8=function(){return _0x4fd0ef;};return _0x58f8();}import _0x186c3a from'../emailconfigurationlogger.js';export default class s extends _0x1c0898{static get[_0x3c7584(0x122)](){return[_0x186c3a];}static get[_0x3c7584(0x12d)](){const _0x23a0d9=_0x3c7584;return _0x23a0d9(0x13a);}static get[_0x3c7584(0x133)](){return!0x0;}static get[_0x3c7584(0x134)](){return!0x0;}[_0x3c7584(0x11a)](){const _0x136abd=_0x3c7584;this[_0x136abd(0x113)](),this[_0x136abd(0x12f)]();}[_0x3c7584(0x113)](){const _0x1d8157=_0x3c7584,{plugins:_0x3eef68}=this[_0x1d8157(0x129)],_0x3ec673=_0x3eef68[_0x1d8157(0x128)](_0x186c3a);_0x3eef68[_0x1d8157(0x117)](_0x1d8157(0x12e))&&(_0x3eef68[_0x1d8157(0x117)](_0x1d8157(0x127))||_0x3ec673[_0x1d8157(0x12c)](_0x1d8157(0x118)),_0x3eef68[_0x1d8157(0x117)](_0x1d8157(0x120))||_0x3ec673[_0x1d8157(0x12c)](_0x1d8157(0x11f)));}[_0x3c7584(0x12f)](){const _0x5633b3=_0x3c7584,{config:_0x10062a,plugins:_0x4fad30}=this[_0x5633b3(0x129)];_0x10062a[_0x5633b3(0x128)](_0x5633b3(0x12b))&&_0x4fad30[_0x5633b3(0x117)](_0x5633b3(0x12e))&&(this[_0x5633b3(0x121)](_0x5633b3(0x114)),this[_0x5633b3(0x121)](_0x5633b3(0x125)));}[_0x3c7584(0x121)](_0xfced59){const _0x557c1b=_0x3c7584,_0x9d8bd6=this[_0x557c1b(0x129)][_0x557c1b(0x137)][_0x557c1b(0x128)](_0x186c3a);_0x9d8bd6[_0x557c1b(0x124)](_0x557c1b(0x12a)+_0xfced59+_0x557c1b(0x119)),_0x9d8bd6[_0x557c1b(0x124)](_0x557c1b(0x12a)+_0xfced59+_0x557c1b(0x116)),_0x9d8bd6[_0x557c1b(0x124)](_0x557c1b(0x12a)+_0xfced59+_0x557c1b(0x11d)),_0x9d8bd6[_0x557c1b(0x124)](_0x557c1b(0x12a)+_0xfced59+_0x557c1b(0x131)),_0x9d8bd6[_0x557c1b(0x132)](_0x557c1b(0x12a)+_0xfced59+_0x557c1b(0x139));}}
|
|
@@ -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 _0x55d024=_0x5c0f;function _0x3225(){const _0x49c69d=['124103IvtLsW','183544UMwhqd','Consider\x20enabling\x20the\x20Template\x20plugin\x20which\x20allows\x20inserting\x20predefined\x20e-mail\x20templates\x20into\x20the\x20editor.','238280vjaSwk','has','10YFmNcR','3euAEIt','email-configuration-missing-template-plugin','1382976vViPUk','TemplateEmailIntegration','30AXQsOe','get','pluginName','_logSuppressibleInfo','requires','features/email#template-plugin','plugins','afterInit','isPremiumPlugin','editor','Template','262542emvNNv','392283MlVWdC','isOfficialPlugin','120072mUyVJq'];_0x3225=function(){return _0x49c69d;};return _0x3225();}function _0x5c0f(_0x96788b,_0x4e0fdd){const _0x3225dd=_0x3225();return _0x5c0f=function(_0x5c0f5e,_0x2ee502){_0x5c0f5e=_0x5c0f5e-0xb8;let _0x165a6a=_0x3225dd[_0x5c0f5e];return _0x165a6a;},_0x5c0f(_0x96788b,_0x4e0fdd);}(function(_0x326416,_0x2baf7a){const _0x1076e4=_0x5c0f,_0x2db135=_0x326416();while(!![]){try{const _0x2abffd=-parseInt(_0x1076e4(0xc9))/0x1+-parseInt(_0x1076e4(0xc5))/0x2*(-parseInt(_0x1076e4(0xcf))/0x3)+parseInt(_0x1076e4(0xcc))/0x4+parseInt(_0x1076e4(0xce))/0x5*(-parseInt(_0x1076e4(0xc8))/0x6)+parseInt(_0x1076e4(0xb8))/0x7+parseInt(_0x1076e4(0xca))/0x8+parseInt(_0x1076e4(0xc6))/0x9*(-parseInt(_0x1076e4(0xba))/0xa);if(_0x2abffd===_0x2baf7a)break;else _0x2db135['push'](_0x2db135['shift']());}catch(_0x1381f){_0x2db135['push'](_0x2db135['shift']());}}}(_0x3225,0x1c6f0));import{Plugin as _0x2bebd0}from'ckeditor5/src/core.js';import _0x19517a from'../emailconfigurationlogger.js';export default class c extends _0x2bebd0{static get[_0x55d024(0xbe)](){return[_0x19517a];}static get[_0x55d024(0xbc)](){const _0x2aef91=_0x55d024;return _0x2aef91(0xb9);}static get[_0x55d024(0xc7)](){return!0x0;}static get[_0x55d024(0xc2)](){return!0x0;}[_0x55d024(0xc1)](){const _0x48c664=_0x55d024,_0x4b9627=this[_0x48c664(0xc3)][_0x48c664(0xc0)][_0x48c664(0xbb)](_0x19517a);this[_0x48c664(0xc3)][_0x48c664(0xc0)][_0x48c664(0xcd)](_0x48c664(0xc4))||_0x4b9627[_0x48c664(0xbd)](_0x48c664(0xd0),_0x48c664(0xcb),_0x48c664(0xbf));}}
|
|
@@ -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
|
+
var _0x2e1dd1=_0x7f6e;(function(_0x6d1f64,_0x664de4){var _0x585bb3=_0x7f6e,_0x58a33d=_0x6d1f64();while(!![]){try{var _0x4612d1=-parseInt(_0x585bb3(0xa7))/0x1+-parseInt(_0x585bb3(0xaa))/0x2+-parseInt(_0x585bb3(0x98))/0x3+-parseInt(_0x585bb3(0xa8))/0x4*(-parseInt(_0x585bb3(0xa4))/0x5)+-parseInt(_0x585bb3(0xa2))/0x6+-parseInt(_0x585bb3(0xa9))/0x7*(parseInt(_0x585bb3(0xa5))/0x8)+parseInt(_0x585bb3(0x9a))/0x9;if(_0x4612d1===_0x664de4)break;else _0x58a33d['push'](_0x58a33d['shift']());}catch(_0x49b445){_0x58a33d['push'](_0x58a33d['shift']());}}}(_0x3a5e,0x49831));import{Plugin as _0x1b2341}from'ckeditor5/src/core.js';function _0x7f6e(_0x424599,_0x37bac3){var _0x3a5e8f=_0x3a5e();return _0x7f6e=function(_0x7f6e42,_0x1eea94){_0x7f6e42=_0x7f6e42-0x98;var _0x28596e=_0x3a5e8f[_0x7f6e42];return _0x28596e;},_0x7f6e(_0x424599,_0x37bac3);}import _0xab0110 from'../emailconfigurationlogger.js';function _0x3a5e(){var _0x9312a=['4loFtUl','1548022jKtTLI','919472hzPgJO','get','260577GaJRyN','afterInit','9861030RsFzKV','isPremiumPlugin','editor','plugins','TodoListEmailIntegration','pluginName','_checkUnsupportedPlugin','TodoList','377958LyJqEp','isOfficialPlugin','1003825MjSYpr','8xJGCAm','requires','164596JEhRks'];_0x3a5e=function(){return _0x9312a;};return _0x3a5e();}export default class y extends _0x1b2341{static get[_0x2e1dd1(0xa6)](){return[_0xab0110];}static get[_0x2e1dd1(0x9f)](){var _0x519899=_0x2e1dd1;return _0x519899(0x9e);}static get[_0x2e1dd1(0xa3)](){return!0x0;}static get[_0x2e1dd1(0x9b)](){return!0x0;}[_0x2e1dd1(0x99)](){var _0x2f20ec=_0x2e1dd1;this[_0x2f20ec(0x9c)][_0x2f20ec(0x9d)][_0x2f20ec(0xab)](_0xab0110)[_0x2f20ec(0xa0)](_0x2f20ec(0xa1));}}
|