@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/upload
|
|
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 upload is proerly configured for the email integration.
|
|
13
|
+
*/
|
|
14
|
+
export default class UploadEmailIntegration extends Plugin {
|
|
15
|
+
/**
|
|
16
|
+
* @inheritDoc
|
|
17
|
+
*/
|
|
18
|
+
static get requires(): readonly [typeof EmailConfigurationLogger];
|
|
19
|
+
/**
|
|
20
|
+
* @inheritDoc
|
|
21
|
+
*/
|
|
22
|
+
static get pluginName(): "UploadEmailIntegration";
|
|
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 _0x1d1b12=_0x5c79;(function(_0x10267c,_0x10c427){var _0x12c6cc=_0x5c79,_0x51f14e=_0x10267c();while(!![]){try{var _0x371f28=parseInt(_0x12c6cc(0x85))/0x1+-parseInt(_0x12c6cc(0x8e))/0x2*(-parseInt(_0x12c6cc(0x89))/0x3)+-parseInt(_0x12c6cc(0x7b))/0x4*(-parseInt(_0x12c6cc(0x84))/0x5)+-parseInt(_0x12c6cc(0x8b))/0x6*(parseInt(_0x12c6cc(0x7e))/0x7)+parseInt(_0x12c6cc(0x88))/0x8+parseInt(_0x12c6cc(0x81))/0x9*(-parseInt(_0x12c6cc(0x7a))/0xa)+-parseInt(_0x12c6cc(0x7f))/0xb;if(_0x371f28===_0x10c427)break;else _0x51f14e['push'](_0x51f14e['shift']());}catch(_0x17a34a){_0x51f14e['push'](_0x51f14e['shift']());}}}(_0x1bbb,0xd0fd9));import{Plugin as _0x35c37d}from'ckeditor5/src/core.js';import _0x4869f7 from'../emailconfigurationlogger.js';function _0x1bbb(){var _0x26c360=['UploadEmailIntegration','get','4whWKwz','isPremiumPlugin','290YOTdaZ','2318972bcspeT','requires','editor','221102DWZuOT','8949831GTSbeB','_checkUnsupportedPlugin','256797vmpgqn','pluginName','isOfficialPlugin','10PicZhE','31494TuhnSE','Base64UploadAdapter','afterInit','4544536KYIaGm','1391358tmzqUT','plugins','36NqzaKF'];_0x1bbb=function(){return _0x26c360;};return _0x1bbb();}function _0x5c79(_0x5214a0,_0x58bebe){var _0x1bbb95=_0x1bbb();return _0x5c79=function(_0x5c79a3,_0x556777){_0x5c79a3=_0x5c79a3-0x7a;var _0x3eaf4e=_0x1bbb95[_0x5c79a3];return _0x3eaf4e;},_0x5c79(_0x5214a0,_0x58bebe);}export default class L extends _0x35c37d{static get[_0x1d1b12(0x7c)](){return[_0x4869f7];}static get[_0x1d1b12(0x82)](){var _0x1d678b=_0x1d1b12;return _0x1d678b(0x8c);}static get[_0x1d1b12(0x83)](){return!0x0;}static get[_0x1d1b12(0x8f)](){return!0x0;}[_0x1d1b12(0x87)](){var _0x13e567=_0x1d1b12;this[_0x13e567(0x7d)][_0x13e567(0x8a)][_0x13e567(0x8d)](_0x4869f7)[_0x13e567(0x80)](_0x13e567(0x86));}}
|