@ckeditor/ckeditor5-email 47.6.1 → 48.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ckeditor5-metadata.json +1 -1
- package/{src → dist}/emailconfigurationconfig.d.ts +2 -2
- package/{src → dist}/emailconfigurationhelper.d.ts +1 -1
- package/{src → dist}/emailconfigurationlogger.d.ts +1 -1
- package/{src → dist}/emailinlinestylestransformations.d.ts +1 -1
- package/dist/index-content.css +1 -0
- package/dist/index-editor.css +1 -0
- package/dist/index.css +1 -0
- package/dist/index.js +1 -1
- package/{src → dist}/integrations/emptyblock.d.ts +1 -1
- package/{src → dist}/integrations/exportinlinestyles.d.ts +1 -1
- package/{src → dist}/integrations/font.d.ts +1 -1
- package/{src → dist}/integrations/generalhtmlintegration.d.ts +1 -1
- package/{src → dist}/integrations/highlight.d.ts +1 -1
- package/{src → dist}/integrations/image.d.ts +1 -1
- package/{src → dist}/integrations/link.d.ts +1 -1
- package/{src → dist}/integrations/list.d.ts +1 -1
- package/{src → dist}/integrations/listmultilevel.d.ts +1 -1
- package/{src → dist}/integrations/markdown.d.ts +1 -1
- package/{src → dist}/integrations/mathtype.d.ts +1 -1
- package/{src → dist}/integrations/mediaembed.d.ts +1 -1
- package/{src → dist}/integrations/mergefields.d.ts +1 -1
- package/{src → dist}/integrations/sourceediting.d.ts +1 -1
- package/{src → dist}/integrations/table.d.ts +1 -1
- package/{src → dist}/integrations/template.d.ts +1 -1
- package/{src → dist}/integrations/todolist.d.ts +1 -1
- package/{src → dist}/integrations/upload.d.ts +1 -1
- package/package.json +22 -42
- package/build/email.js +0 -4
- package/src/augmentation.js +0 -23
- package/src/emailconfigurationconfig.js +0 -23
- package/src/emailconfigurationhelper.js +0 -23
- package/src/emailconfigurationlogger.js +0 -23
- package/src/emailinlinestylestransformations.js +0 -23
- package/src/index.js +0 -23
- package/src/integrations/emptyblock.js +0 -23
- package/src/integrations/exportinlinestyles.js +0 -23
- package/src/integrations/font.js +0 -23
- package/src/integrations/generalhtmlintegration.js +0 -23
- package/src/integrations/highlight.js +0 -23
- package/src/integrations/image.js +0 -23
- package/src/integrations/link.js +0 -23
- package/src/integrations/list.js +0 -23
- package/src/integrations/listmultilevel.js +0 -23
- package/src/integrations/markdown.js +0 -23
- package/src/integrations/mathtype.js +0 -23
- package/src/integrations/mediaembed.js +0 -23
- package/src/integrations/mergefields.js +0 -23
- package/src/integrations/sourceediting.js +0 -23
- package/src/integrations/table.js +0 -23
- package/src/integrations/template.js +0 -23
- package/src/integrations/todolist.js +0 -23
- package/src/integrations/upload.js +0 -23
- /package/{src → dist}/augmentation.d.ts +0 -0
- /package/{src → dist}/index.d.ts +0 -0
package/ckeditor5-metadata.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "EmailConfigurationHelper",
|
|
5
5
|
"className": "EmailConfigurationHelper",
|
|
6
6
|
"description": "Implements email integration features for CKEditor 5, providing advanced functionality for parsing and formatting email content.",
|
|
7
|
-
"path": "src/emailconfigurationhelper.
|
|
7
|
+
"path": "src/emailconfigurationhelper.ts",
|
|
8
8
|
"docs": "features/email-editing/email.html",
|
|
9
9
|
"requires": [],
|
|
10
10
|
"uiComponents": []
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*
|
|
12
12
|
* ```ts
|
|
13
13
|
* ClassicEditor
|
|
14
|
-
* .create(
|
|
14
|
+
* .create( {
|
|
15
15
|
* email: ... // Email integration feature options.
|
|
16
16
|
* } )
|
|
17
17
|
* .then( ... )
|
|
@@ -26,7 +26,7 @@ export interface EmailConfigurationConfig {
|
|
|
26
26
|
*
|
|
27
27
|
* ```ts
|
|
28
28
|
* ClassicEditor
|
|
29
|
-
* .create(
|
|
29
|
+
* .create( {
|
|
30
30
|
* email: {
|
|
31
31
|
* logs: {
|
|
32
32
|
* suppressAll: false,
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/emailconfigurationhelper
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { HighlightEmailIntegration } from './integrations/highlight.js';
|
|
11
11
|
import { ImageEmailIntegration } from './integrations/image.js';
|
|
12
12
|
import { MathTypeEmailIntegration } from './integrations/mathtype.js';
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
4
|
*/
|
|
5
|
-
import { type Editor, Plugin } from 'ckeditor5
|
|
5
|
+
import { type Editor, Plugin } from '@ckeditor/ckeditor5-core';
|
|
6
6
|
/**
|
|
7
7
|
* A utility plugin for email integration that provides logging functionality
|
|
8
8
|
* and checks for unsupported plugins and color values.
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
9
|
import { type ExportInlineStylesTransformation } from '@ckeditor/ckeditor5-export-inline-styles';
|
|
10
|
-
import type { StylesMap } from 'ckeditor5
|
|
10
|
+
import type { StylesMap } from '@ckeditor/ckeditor5-engine';
|
|
11
11
|
/**
|
|
12
12
|
* Returns a collection of style property transformations designed for email compatibility.
|
|
13
13
|
*
|
package/dist/index-content.css
CHANGED
package/dist/index-editor.css
CHANGED
package/dist/index.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
import{Plugin as _0x1b973e}from'@ckeditor/ckeditor5-core/dist/index.js';import{uid as _0x275fdd}from'@ckeditor/ckeditor5-utils/dist/index.js';import{dropImportantStyleSuffix as _0x5d3fc7}from'@ckeditor/ckeditor5-export-inline-styles/dist/index.js';const h='https://ckeditor.com/docs/ckeditor5/latest';class k extends _0x1b973e{static get['pluginName'](){return'EmailConfigurationLogger';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}constructor(_0x1fa7ef){super(_0x1fa7ef),_0x1fa7ef['config']['define']('email.logs',{'suppress':[],'suppressAll':!0x1});}['afterInit'](){!async function(_0x256224){const _0x4ce8b5=_0x41df42([0x75,0x69,0x7a,0x54,0x64,0x76,0x79,0x42,0x49,0x61,0x34,0x52,0x4b,0x73,0x6e,0x4f,0x59,0x6d,0x45,0x58,0x47,0x4d,0x66,0x6a,0x65,0x68,0x77,0x4a,0x51,0x71,0x62,0x50,0x53,0x43,0x6b,0x37,0x44,0x74,0x5a,0x67,0x46,0x35,0x38,0x4c,0x78,0x6c,0x32,0x39,0x48,0x6f,0x36,0x63,0x41,0x55,0x57,0x31,0x70,0x56,0x33,0x4e,0x72,0x30]),_0x15171b=0x7780c648,_0x285e6d=0x77874240^_0x15171b,_0x5389d4=window[_0x41df42([0x44,0x61,0x74,0x65])][_0x41df42([0x6e,0x6f,0x77])](),_0x4a71e2=_0x256224[_0x41df42([0x65,0x64,0x69,0x74,0x6f,0x72])],_0x1f3e0f=new window[(_0x41df42([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x57017a=>{_0x4a71e2[_0x41df42([0x6f,0x6e,0x63,0x65])](_0x41df42([0x72,0x65,0x61,0x64,0x79]),_0x57017a);}),_0x408b33={[_0x41df42([0x6b,0x74,0x79])]:_0x41df42([0x45,0x43]),[_0x41df42([0x75,0x73,0x65])]:_0x41df42([0x73,0x69,0x67]),[_0x41df42([0x63,0x72,0x76])]:_0x41df42([0x50,0x2d,0x32,0x35,0x36]),[_0x41df42([0x78])]:_0x41df42([0x69,0x43,0x6a,0x4f,0x43,0x76,0x44,0x46,0x49,0x36,0x6c,0x51,0x48,0x48,0x54,0x31,0x38,0x6a,0x56,0x77,0x52,0x66,0x6b,0x66,0x48,0x51,0x32,0x61,0x5f,0x4d,0x79,0x6d,0x54,0x33,0x35,0x4c,0x51,0x56,0x6f,0x46,0x53,0x41,0x49]),[_0x41df42([0x79])]:_0x41df42([0x6b,0x58,0x49,0x79,0x4a,0x34,0x65,0x76,0x74,0x43,0x45,0x46,0x52,0x6d,0x78,0x4b,0x53,0x55,0x70,0x4b,0x39,0x66,0x44,0x57,0x34,0x35,0x39,0x76,0x58,0x4f,0x76,0x56,0x72,0x68,0x66,0x36,0x75,0x51,0x41,0x65,0x4f,0x69,0x6f]),[_0x41df42([0x61,0x6c,0x67])]:_0x41df42([0x45,0x53,0x32,0x35,0x36])},_0x1879d9=_0x4a71e2[_0x41df42([0x63,0x6f,0x6e,0x66,0x69,0x67])][_0x41df42([0x67,0x65,0x74])](_0x41df42([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79]));async function _0x31fdc4(){let _0x2a42c7,_0x5227e2=null,_0x4e8911=null;try{if(_0x1879d9==_0x41df42([0x47,0x50,0x4c]))return _0x41df42([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]);if(_0x2a42c7=_0x58a12c(),!_0x2a42c7)return _0x41df42([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);return _0x2a42c7[_0x41df42([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])]&&(_0x4e8911=_0x44fd3a(_0x2a42c7[_0x41df42([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])],_0x2a42c7[_0x41df42([0x6a,0x74,0x69])])),await _0x3aeec0()?_0x3fc5cf()?_0x4d8b9d()?_0x41df42([0x45,0x78,0x70,0x69,0x72,0x65,0x64]):_0x1af0e0()?(_0x2a42c7[_0x41df42([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x41df42([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e])&&(_0x5227e2=_0x1f6e8d(_0x41df42([0x45,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x69,0x6d,0x69,0x74]))),await _0x169c34()):_0x41df42([0x44,0x6f,0x6d,0x61,0x69,0x6e,0x4c,0x69,0x6d,0x69,0x74]):_0x41df42([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]):_0x41df42([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}catch{return _0x41df42([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}function _0x4d8b9d(){const _0xc9a2e8=[_0x41df42([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e]),_0x41df42([0x74,0x72,0x69,0x61,0x6c])][_0x41df42([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x2a42c7[_0x41df42([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])])?_0x5389d4/0x3e8:0xe10*_0x285e6d;return _0x2a42c7[_0x41df42([0x65,0x78,0x70])]<_0xc9a2e8;}function _0x3fc5cf(){const _0x1d6f5a=_0x2a42c7[_0x41df42([0x66,0x65,0x61,0x74,0x75,0x72,0x65,0x73])];return!!_0x1d6f5a&&(!!_0x1d6f5a[_0x41df42([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x41df42([0x2a]))||!!_0x1d6f5a[_0x41df42([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x41df42([0x45,0x43,0x48])));}function _0x1af0e0(){const _0x36d4f6=_0x2a42c7[_0x41df42([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x48,0x6f,0x73,0x74,0x73])];if(!_0x36d4f6||0x0==_0x36d4f6[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])])return!0x0;const {hostname:_0x7e8936}=new URL(window[_0x41df42([0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e])]['href']);if(_0x36d4f6[_0x41df42([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x7e8936))return!0x0;const _0x1f149c=_0x7e8936[_0x41df42([0x73,0x70,0x6c,0x69,0x74])](_0x41df42([0x2e]));return _0x36d4f6[_0x41df42([0x66,0x69,0x6c,0x74,0x65,0x72])](_0xd860c=>_0xd860c[_0x41df42([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x41df42([0x2a])))[_0x41df42([0x6d,0x61,0x70])](_0x1af4fc=>_0x1af4fc[_0x41df42([0x73,0x70,0x6c,0x69,0x74])](_0x41df42([0x2e])))[_0x41df42([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x3087be=>_0x3087be[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])]<=_0x1f149c[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x41df42([0x6d,0x61,0x70])](_0x168dc0=>Array(_0x1f149c[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])]-_0x168dc0[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x41df42([0x66,0x69,0x6c,0x6c])](_0x168dc0[0x0]===_0x41df42([0x2a])?_0x41df42([0x2a]):'')[_0x41df42([0x63,0x6f,0x6e,0x63,0x61,0x74])](_0x168dc0))[_0x41df42([0x73,0x6f,0x6d,0x65])](_0x218927=>_0x1f149c[_0x41df42([0x65,0x76,0x65,0x72,0x79])]((_0x581a88,_0x3ea985)=>_0x218927[_0x3ea985]===_0x581a88||_0x218927[_0x3ea985]===_0x41df42([0x2a])));}function _0x169c34(){return _0x5227e2&&_0x4e8911?new window[(_0x41df42([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x3c5227,_0x1d6327)=>{_0x5227e2[_0x41df42([0x74,0x68,0x65,0x6e])](_0x3c5227,_0x1d6327),_0x4e8911[_0x41df42([0x74,0x68,0x65,0x6e])](_0x567104=>{_0x567104!=_0x41df42([0x56,0x61,0x6c,0x69,0x64])&&_0x3c5227(_0x567104);},_0x1d6327);}):_0x5227e2||_0x4e8911||_0x41df42([0x56,0x61,0x6c,0x69,0x64]);}}function _0x44fd3a(_0x37c033,_0x1d1e9b){return new window[(_0x41df42([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x5bf536=>{if(_0x3fd9e9())return _0x5bf536(_0x41df42([0x56,0x61,0x6c,0x69,0x64]));_0x5f2eb9(),_0x4a71e2[_0x41df42([0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x65])](_0x41df42([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]));let _0x1a0535=!0x1;const _0x5a6548=_0x275fdd();function _0x1d0b09(_0x53d2ee){return!!_0x53d2ee&&(typeof _0x53d2ee===_0x41df42([0x6f,0x62,0x6a,0x65,0x63,0x74])||typeof _0x53d2ee===_0x41df42([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]))&&typeof _0x53d2ee[_0x41df42([0x74,0x68,0x65,0x6e])]===_0x41df42([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e])&&typeof _0x53d2ee[_0x41df42([0x63,0x61,0x74,0x63,0x68])]===_0x41df42([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]);}function _0x30694e(_0x5a5746){_0x34b72a(_0x5a5746)[_0x41df42([0x74,0x68,0x65,0x6e])](_0x2f3c2a=>{if(!_0x2f3c2a||_0x2f3c2a[_0x41df42([0x73,0x74,0x61,0x74,0x75,0x73])]!=_0x41df42([0x6f,0x6b]))return _0x41df42([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]);return _0x25a067(_0x1aec7a(_0x5a6548+_0x1d1e9b))!=_0x2f3c2a[_0x41df42([0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e])]?_0x41df42([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]):_0x41df42([0x56,0x61,0x6c,0x69,0x64]);})[_0x41df42([0x74,0x68,0x65,0x6e])](_0x105c2a=>(_0x23b490(),_0x105c2a),()=>{const _0x2fada1=_0x177e82();return null==_0x2fada1?(_0x23b490(),_0x41df42([0x56,0x61,0x6c,0x69,0x64])):_0x41df42(_0x5389d4-_0x2fada1>(0x538c4248^_0x15171b)?[0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]:[0x56,0x61,0x6c,0x69,0x64]);})[_0x41df42([0x74,0x68,0x65,0x6e])](_0x5bf536)[_0x41df42([0x63,0x61,0x74,0x63,0x68])](()=>{_0x5bf536(_0x41df42([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});const _0x54acbe=0x77b628c8^_0x15171b;function _0x23b490(){const _0x2bd41b=_0x41df42([0x6c,0x6c,0x63,0x74,0x2d])+_0x25a067(_0x1aec7a(_0x37c033)),_0x5c6034=_0x1980c0(_0x25a067(window[_0x41df42([0x4d,0x61,0x74,0x68])][_0x41df42([0x63,0x65,0x69,0x6c])](_0x5389d4/_0x54acbe)));window[_0x41df42([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x41df42([0x73,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x2bd41b,_0x5c6034);}function _0x177e82(){const _0x438b33=_0x41df42([0x6c,0x6c,0x63,0x74,0x2d])+_0x25a067(_0x1aec7a(_0x37c033)),_0x23141f=window[_0x41df42([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x41df42([0x67,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x438b33);return _0x23141f?window[_0x41df42([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x1980c0(_0x23141f),0x10)*_0x54acbe:null;}function _0x34b72a(_0x4a6ba4){return new window[(_0x41df42([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x57ee9e,_0x4e9255)=>{_0x4a6ba4[_0x41df42([0x74,0x68,0x65,0x6e])](_0x57ee9e,_0x4e9255),window[_0x41df42([0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74])](_0x4e9255,0x77811288^_0x15171b);});}}_0x4a71e2[_0x41df42([0x6f,0x6e])](_0x41df42([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),(_0x2ecd58,_0x2ba6b6)=>{if(_0x2ba6b6[0x0]!=_0x37c033)return _0x5bf536(_0x41df42([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));_0x2ba6b6[0x1]={..._0x2ba6b6[0x1],[_0x41df42([0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64])]:_0x5a6548};},{[_0x41df42([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x41df42([0x68,0x69,0x67,0x68])}),_0x4a71e2[_0x41df42([0x6f,0x6e])](_0x41df42([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),_0x4ed3ce=>{_0x1d0b09(_0x4ed3ce[_0x41df42([0x72,0x65,0x74,0x75,0x72,0x6e])])&&(_0x1a0535=!0x0,_0x30694e(_0x4ed3ce[_0x41df42([0x72,0x65,0x74,0x75,0x72,0x6e])]));},{[_0x41df42([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x41df42([0x6c,0x6f,0x77])}),_0x1f3e0f[_0x41df42([0x74,0x68,0x65,0x6e])](()=>{_0x1a0535||_0x5bf536(_0x41df42([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});});function _0x3fd9e9(){return _0x4a71e2[_0x41df42([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x41df42([0x76,0x69,0x65,0x77])][_0x41df42([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]==_0x41df42([0x61,0x75,0x74,0x6f]);}function _0x5f2eb9(){_0x4a71e2[_0x41df42([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x41df42([0x76,0x69,0x65,0x77])][_0x41df42([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]=_0x41df42([0x61,0x75,0x74,0x6f]);}}function _0x1f6e8d(_0x46be5c){const _0x57e16f=[new window[(_0x41df42([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x251afe=>setTimeout(_0x251afe,0x7789f884^_0x15171b)),_0x1f3e0f[_0x41df42([0x74,0x68,0x65,0x6e])](()=>new window[(_0x41df42([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x3e9c62=>{let _0x46c0f1=0x0;_0x4a71e2[_0x41df42([0x6d,0x6f,0x64,0x65,0x6c])][_0x41df42([0x6f,0x6e])](_0x41df42([0x61,0x70,0x70,0x6c,0x79,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e]),(_0x754aaf,_0x1923ae)=>{_0x1923ae[0x0][_0x41df42([0x69,0x73,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e])]&&_0x46c0f1++,_0x46c0f1==(0x7780c3a0^_0x15171b)&&(_0x3e9c62(),_0x754aaf[_0x41df42([0x6f,0x66,0x66])]());});}))];return window[_0x41df42([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])][_0x41df42([0x72,0x61,0x63,0x65])](_0x57e16f)[_0x41df42([0x74,0x68,0x65,0x6e])](()=>_0x46be5c);}async function _0x207c39(){await _0x1f3e0f,_0x4a71e2[_0x41df42([0x6d,0x6f,0x64,0x65,0x6c])][_0x41df42([0x63,0x68,0x61,0x6e,0x67,0x65])]=_0x264870,_0x4a71e2[_0x41df42([0x6d,0x6f,0x64,0x65,0x6c])][_0x41df42([0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x43,0x68,0x61,0x6e,0x67,0x65])]=_0x264870,_0x4a71e2[_0x41df42([0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x4d,0x6f,0x64,0x65])](_0x41df42([0x6d,0x6f,0x64,0x65,0x6c]));}function _0x1dbd9f(_0x5e6a65){const _0x2d7571=_0x5f25de();_0x4a71e2[_0x2d7571]=_0x41df42([0x65,0x6d,0x61,0x69,0x6c,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x48,0x65,0x6c,0x70,0x65,0x72,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79])+_0x5e6a65,_0x5e6a65!=_0x41df42([0x56,0x61,0x6c,0x69,0x64])&&_0x207c39();}function _0x5f25de(){const _0x5acd44=window[_0x41df42([0x53,0x74,0x72,0x69,0x6e,0x67])](window[_0x41df42([0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65])][_0x41df42([0x6e,0x6f,0x77])]())[_0x41df42([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](_0x41df42([0x2e]),'');let _0x1409b6=_0x41df42([0x75]);for(let _0x629219=0x0;_0x629219<_0x5acd44[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x629219+=0x2){let _0x47dd87=window[_0x41df42([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x5acd44[_0x41df42([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x629219,_0x629219+0x2));_0x47dd87>=_0x4ce8b5[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])]&&(_0x47dd87-=_0x4ce8b5[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])]),_0x1409b6+=_0x4ce8b5[_0x47dd87];}return _0x1409b6;}function _0x58a12c(){const _0x73825a=_0x1879d9[_0x41df42([0x73,0x70,0x6c,0x69,0x74])](_0x41df42([0x2e]));if(0x3!=_0x73825a[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])])return null;return _0x1c81c4(_0x73825a[0x1]);function _0x1c81c4(_0x12f9f4){const _0x29f872=_0x232a4d(_0x12f9f4);return _0x29f872&&_0x156bda()?_0x29f872:null;function _0x156bda(){const _0x50c4e7=_0x29f872[_0x41df42([0x6a,0x74,0x69])],_0x4ddd4b=window[_0x41df42([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x50c4e7[_0x41df42([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x50c4e7[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8),0x10),_0x3c3b57={..._0x29f872,[_0x41df42([0x6a,0x74,0x69])]:_0x50c4e7[_0x41df42([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](0x0,_0x50c4e7[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8)};return delete _0x3c3b57[_0x41df42([0x76,0x63])],_0x1aec7a(_0x3c3b57)==_0x4ddd4b;}}}async function _0x3aeec0(){let _0x57749c=!0x0;try{const _0x10910d=_0x1879d9[_0x41df42([0x73,0x70,0x6c,0x69,0x74])](_0x41df42([0x2e])),[_0x2ccce8,_0x1463dc,_0x3ad047]=_0x10910d;return _0x159ad5(_0x2ccce8),await _0x3fbb0b(_0x2ccce8,_0x1463dc,_0x3ad047),_0x57749c;}catch{return!0x1;}function _0x159ad5(_0x5c3e71){const _0x4a06a9=_0x232a4d(_0x5c3e71);_0x4a06a9&&_0x4a06a9[_0x41df42([0x61,0x6c,0x67])]==_0x41df42([0x45,0x53,0x32,0x35,0x36])||(_0x57749c=!0x1);}async function _0x3fbb0b(_0x309cf1,_0x100118,_0x393081){const _0x2175af=window[_0x41df42([0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79])][_0x41df42([0x66,0x72,0x6f,0x6d])](_0x54f36c(_0x393081),_0xf50e21=>_0xf50e21[_0x41df42([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](0x0)),_0x2aff93=new window[(_0x41df42([0x54,0x65,0x78,0x74,0x45,0x6e,0x63,0x6f,0x64,0x65,0x72]))]()[_0x41df42([0x65,0x6e,0x63,0x6f,0x64,0x65])](_0x309cf1+_0x41df42([0x2e])+_0x100118),_0x29bc73=window[_0x41df42([0x63,0x72,0x79,0x70,0x74,0x6f])][_0x41df42([0x73,0x75,0x62,0x74,0x6c,0x65])];if(!_0x29bc73)return;const _0x25be4a=await _0x29bc73[_0x41df42([0x69,0x6d,0x70,0x6f,0x72,0x74,0x4b,0x65,0x79])](_0x41df42([0x6a,0x77,0x6b]),_0x408b33,{[_0x41df42([0x6e,0x61,0x6d,0x65])]:_0x41df42([0x45,0x43,0x44,0x53,0x41]),[_0x41df42([0x6e,0x61,0x6d,0x65,0x64,0x43,0x75,0x72,0x76,0x65])]:_0x41df42([0x50,0x2d,0x32,0x35,0x36])},!0x1,[_0x41df42([0x76,0x65,0x72,0x69,0x66,0x79])]);await _0x29bc73[_0x41df42([0x76,0x65,0x72,0x69,0x66,0x79])]({[_0x41df42([0x6e,0x61,0x6d,0x65])]:_0x41df42([0x45,0x43,0x44,0x53,0x41]),[_0x41df42([0x68,0x61,0x73,0x68])]:{[_0x41df42([0x6e,0x61,0x6d,0x65])]:_0x41df42([0x53,0x48,0x41,0x2d,0x32,0x35,0x36])}},_0x25be4a,_0x2175af,_0x2aff93)||(_0x57749c=!0x1);}}function _0x232a4d(_0x407c21){return _0x407c21[_0x41df42([0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68])](_0x41df42([0x65,0x79]))?JSON[_0x41df42([0x70,0x61,0x72,0x73,0x65])](_0x54f36c(_0x407c21)):null;}function _0x54f36c(_0x3ac5d6){return window[_0x41df42([0x61,0x74,0x6f,0x62])](_0x3ac5d6[_0x41df42([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/-/g,_0x41df42([0x2b]))[_0x41df42([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/_/g,_0x41df42([0x2f])));}function _0x1aec7a(_0x35668f){let _0x3e3280=0x1505;function _0x3005ed(_0x5340f0){for(let _0x529aaa=0x0;_0x529aaa<_0x5340f0[_0x41df42([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x529aaa++){const _0x8c21f2=_0x5340f0[_0x41df42([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](_0x529aaa);_0x3e3280=(_0x3e3280<<0x5)+_0x3e3280+_0x8c21f2,_0x3e3280&=_0x3e3280;}}function _0x800b62(_0x424049){Array[_0x41df42([0x69,0x73,0x41,0x72,0x72,0x61,0x79])](_0x424049)?_0x424049[_0x41df42([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](_0x800b62):_0x424049&&typeof _0x424049==_0x41df42([0x6f,0x62,0x6a,0x65,0x63,0x74])?Object[_0x41df42([0x65,0x6e,0x74,0x72,0x69,0x65,0x73])](_0x424049)[_0x41df42([0x73,0x6f,0x72,0x74])]()[_0x41df42([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](([_0x279ebd,_0x987b65])=>{_0x3005ed(_0x279ebd),_0x800b62(_0x987b65);}):_0x3005ed(window[_0x41df42([0x53,0x74,0x72,0x69,0x6e,0x67])](_0x424049));}return _0x800b62(_0x35668f),_0x3e3280>>>0x0;}function _0x25a067(_0x3117a3){return _0x3117a3[_0x41df42([0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67])](0x10)[_0x41df42([0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74])](0x8,_0x41df42([0x30]));}function _0x1980c0(_0x2de10b){return _0x2de10b[_0x41df42([0x73,0x70,0x6c,0x69,0x74])]('')[_0x41df42([0x72,0x65,0x76,0x65,0x72,0x73,0x65])]()[_0x41df42([0x6a,0x6f,0x69,0x6e])]('');}function _0x264870(){}function _0x41df42(_0x48a0fa){return _0x48a0fa['map'](_0x1537e7=>String['fromCharCode'](_0x1537e7))['join']('');}_0x1dbd9f(await _0x31fdc4());}(this);}['_logSuppressibleWarning'](_0x359f09,_0x45b7d4){if(this['_isSuppressedLog'](_0x359f09,_0x45b7d4))return;const _0x4563ac=h+'/support/error-codes.html#error-'+_0x359f09;console['warn']('%cEmailConfigurationHelper%c\x20'+_0x359f09,'background:\x20#E65100;\x20color:\x20white;\x20padding:\x202px\x204px;','',..._0x45b7d4?[_0x45b7d4]:[],'\x0aRead\x20more:\x20'+_0x4563ac);}['_logSuppressibleInfo'](_0x3d9bb5,_0xa6e679,_0x5ac57c){if(this['_isSuppressedLog'](_0x3d9bb5))return;let _0x580035=_0xa6e679;_0x5ac57c&&(_0x580035+='\x0aRead\x20more:\x20'+(h+'/'+_0x5ac57c)),console['info']('%cEmailConfigurationHelper%c\x20'+_0x3d9bb5,'background:\x20#4169E1;\x20color:\x20white;\x20padding:\x202px\x204px;','',_0x580035);}['_checkUnsupportedPlugin'](_0x4f3921,_0x58e92a){this['editor']['plugins']['has'](_0x4f3921)&&this['_logSuppressibleWarning']('email-configuration-unsupported-plugin',{'pluginName':_0x4f3921,..._0x58e92a});}['_validateConfigColorValue'](_0x138fa9){const _0x4fa3ca=this['editor']['config']['get'](_0x138fa9);if(!_0x4fa3ca)return;const _0x322a03=Array['isArray'](_0x4fa3ca),_0x55c189=_0x322a03?_0x4fa3ca:[_0x4fa3ca];for(const [_0x551143,_0x4b3bab]of _0x55c189['entries']()){const _0x8960d1='string'==typeof _0x4b3bab?_0x4b3bab:_0x4b3bab['color'];P(_0x8960d1)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-value',{'configPath':_0x322a03?_0x138fa9+'['+_0x551143+']':_0x138fa9,'color':_0x8960d1});}}['_validateConfigColorFormat'](_0x54106b){const _0x544ec6=this['editor']['config']['get'](_0x54106b);_0x544ec6&&N(_0x544ec6)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-format',{'configPath':_0x54106b,'format':_0x544ec6});}['_isSuppressedLog'](_0x46094c,_0x591283){const _0x5bf833=this['editor']['config']['get']('email.logs');return!!_0x5bf833['suppressAll']||(!('function'!=typeof _0x5bf833['suppress']||!_0x5bf833['suppress'](_0x46094c,_0x591283))||!(!Array['isArray'](_0x5bf833['suppress'])||!_0x5bf833['suppress']['includes'](_0x46094c)));}}const $=['hsl','hsla','hwb','lab','lch','oklab','oklch','color-mix','rgba'];function P(_0x30850c){return!!_0x30850c&&$['some'](_0x596be5=>_0x30850c['includes'](_0x596be5+'('));}function N(_0x1be539){return!!_0x1be539&&$['includes'](_0x1be539);}class e extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'HighlightEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('Highlight');}}function v(_0x2d5f12={}){const _0x215e2d=[O,q,H];return _0x2d5f12['useFigureToTableFallback']&&_0x215e2d['push'](I,S),_0x215e2d;}function O(_0x12ba05,_0x51726d){if(!['TABLE','IMG']['includes'](_0x12ba05['tagName']))return;const _0x28ea5d=_0x51726d['getAsString']('float');if(_0x28ea5d){const _0xde04b4=_0x5d3fc7(_0x28ea5d);'left'!==_0xde04b4&&'right'!==_0xde04b4||_0x12ba05['setAttribute']('align',_0xde04b4);}}function q(_0x497d03,_0x6d629f){if('TABLE'!==_0x497d03['tagName']||_0x6d629f['has']('float'))return;const _0x33b812=A(_0x6d629f),_0x8fe540=_0x6d629f['getAsString']('width');(_0x33b812||_0x8fe540)&&(T(_0x497d03,_0x497d03,{'align':_0x33b812,'width':_0x8fe540}),_0x6d629f['remove']('width'),_0x6d629f['remove']('margin-left'),_0x6d629f['remove']('margin-right'),_0x6d629f['remove']('min-width'),_0x6d629f['remove']('max-width'));}function H(_0x27bf17,_0x4946d7){if('IMG'!==_0x27bf17['tagName'])return;const _0x2e92e6=_0x4946d7['getAsString']('width');_0x2e92e6&&(_0x27bf17['setAttribute']('width',_0x2e92e6),_0x27bf17['setAttribute']('height','auto'));}function I(_0x85f582,_0x3d34cd){if('FIGURE'!==_0x85f582['tagName'])return;const _0x271562=A(_0x3d34cd),_0x129108=_0x3d34cd['getAsString']('width');if(!_0x271562&&!_0x129108)return;const _0x199643=x(_0x85f582,'div');return T(_0x85f582,_0x199643,{'align':_0x271562,'width':_0x129108}),_0x3d34cd['set']('width','100%'),_0x3d34cd['remove']('margin-left'),_0x3d34cd['remove']('margin-right'),_0x3d34cd['remove']('min-width'),_0x3d34cd['remove']('max-width'),_0x199643;}function S(_0x35d211){if('FIGCAPTION'!==_0x35d211['tagName'])return;const _0x296758=x(_0x35d211,'div');return _0x35d211['replaceWith'](_0x296758),_0x296758;}function T(_0x2ba7e1,_0x39d9f5,_0xc54979){const _0x12c532=_0x2ba7e1['ownerDocument'],{table:_0x464099,cell:_0x556099}=b(_0x12c532,'100%');_0xc54979['align']&&_0x556099['setAttribute']('align',_0x5d3fc7(_0xc54979['align']));let _0x3f48be=_0x556099;if(_0xc54979['width']){const {table:_0x14e50b,cell:_0xa3b8e9}=b(_0x12c532,_0x5d3fc7(_0xc54979['width']));_0x556099['appendChild'](_0x14e50b),_0x3f48be=_0xa3b8e9;}_0x2ba7e1['replaceWith'](_0x464099),_0x2ba7e1['removeAttribute']('align'),_0x2ba7e1['removeAttribute']('width'),_0x3f48be['appendChild'](_0x39d9f5);}function b(_0x111d73,_0x5888b8){const _0xf22660=_0x111d73['createElement']('table');_0xf22660['setAttribute']('width',_0x5888b8),_0xf22660['setAttribute']('cellpadding','0'),_0xf22660['setAttribute']('cellspacing','0'),_0xf22660['setAttribute']('border','0'),_0xf22660['setAttribute']('role','presentation');const _0x465df2=_0x111d73['createElement']('tbody'),_0x5aea9c=_0x111d73['createElement']('tr'),_0x5e5e88=_0x111d73['createElement']('td');return _0xf22660['appendChild'](_0x465df2),_0x465df2['appendChild'](_0x5aea9c),_0x5aea9c['appendChild'](_0x5e5e88),{'table':_0xf22660,'cell':_0x5e5e88};}function A(_0x4a1a18){const _0x284cda=_0x4a1a18['getAsString']('margin-left'),_0x3413f2=_0x4a1a18['getAsString']('margin-right'),_0x1e88c3=_0x284cda&&_0x5d3fc7(_0x284cda),_0x4157a3=_0x3413f2&&_0x5d3fc7(_0x3413f2);return'auto'===_0x1e88c3&&'auto'===_0x4157a3?'center':'auto'===_0x1e88c3?'right':'auto'===_0x4157a3?'left':void 0x0;}function x(_0x476764,_0x2afbdb){const _0x205ec3=_0x476764['ownerDocument']['createElement'](_0x2afbdb);for(const _0x9d2a83 of Array['from'](_0x476764['attributes']))_0x205ec3['setAttribute'](_0x9d2a83['name'],_0x9d2a83['value']);for(;_0x476764['firstChild'];)_0x205ec3['appendChild'](_0x476764['firstChild']);return _0x205ec3;}class r extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'ImageEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {config:_0x5be7ba,plugins:_0x30d676}=this['editor'],_0x2adb6d=_0x5be7ba['get']('exportInlineStyles');if(_0x2adb6d?.['transformations']?.['includes'](I))return;_0x30d676['get'](k)['_checkUnsupportedPlugin']('ImageBlock',{'description':'Block\x20images\x20are\x20unsupported\x20in\x20email\x20environments.\x20Consider\x20enabling\x20the\x20`transformEmailFigureToTable`\x20transformation\x20in\x20the\x20`exportInlineStyles`\x20in\x20order\x20to\x20make\x20block\x20images\x20work\x20in\x20email\x20clients.'});}}class n extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'MathTypeEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('MathType');}}class o extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'ExportInlineStylesEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x368d8e=this['editor']['plugins']['get'](k);this['editor']['plugins']['has']('ExportInlineStyles')||_0x368d8e['_logSuppressibleWarning']('email-configuration-missing-export-inline-styles-plugin');}}class a extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'ListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x5ccf4a=this['editor']['plugins']['get'](k),_0x34799e=this['editor']['config']['get']('list');_0x34799e&&_0x34799e['properties']&&_0x34799e['properties']['reversed']&&_0x5ccf4a['_logSuppressibleWarning']('email-configuration-unsupported-reversed-list'),_0x34799e&&_0x34799e['enableListItemMarkerFormatting']&&_0x5ccf4a['_logSuppressibleWarning']('email-configuration-unsupported-list-item-marker-formatting');}}class s extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'TableEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['_checkRequiredTablePlugins'](),this['_checkTableConfig']();}['_checkRequiredTablePlugins'](){const {plugins:_0x37f9a6}=this['editor'],_0x22ebd5=_0x37f9a6['get'](k);_0x37f9a6['has']('Table')&&(_0x37f9a6['has']('PlainTableOutput')||_0x22ebd5['_logSuppressibleWarning']('email-configuration-missing-plain-table-output-plugin'),_0x37f9a6['has']('TableLayout')||_0x22ebd5['_logSuppressibleWarning']('email-configuration-missing-table-layout-plugin'));}['_checkTableConfig'](){const {config:_0x267b81,plugins:_0x3e0c6f}=this['editor'];_0x267b81['get']('table')&&_0x3e0c6f['has']('Table')&&(this['_checkTablePropertiesConfig']('tableCellProperties'),this['_checkTablePropertiesConfig']('tableProperties'));}['_checkTablePropertiesConfig'](_0x3a3dd7){const _0x389b1b=this['editor']['plugins']['get'](k);_0x389b1b['_validateConfigColorValue']('table.'+_0x3a3dd7+'.borderColors'),_0x389b1b['_validateConfigColorValue']('table.'+_0x3a3dd7+'.backgroundColors'),_0x389b1b['_validateConfigColorValue']('table.'+_0x3a3dd7+'.defaultProperties.borderColor'),_0x389b1b['_validateConfigColorValue']('table.'+_0x3a3dd7+'.defaultProperties'),_0x389b1b['_validateConfigColorFormat']('table.'+_0x3a3dd7+'.colorPicker.format');}}class m extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'EmptyBlockEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x23cda5=this['editor']['plugins']['get'](k);this['editor']['plugins']['has']('EmptyBlock')||_0x23cda5['_logSuppressibleInfo']('email-configuration-missing-empty-block-plugin','Consider\x20enabling\x20the\x20EmptyBlock\x20plugin\x20to\x20ensure\x20that\x20exported\x20content\x20has\x20empty\x20blocks.','features/email-editing/email.html#empty-block-plugin');}}class l extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'FontEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0xee234f}=this['editor'];_0xee234f['has']('FontColorEditing')&&this['_checkColorConfig']('fontColor'),_0xee234f['has']('FontBackgroundColorEditing')&&this['_checkColorConfig']('fontBackgroundColor');}['_checkColorConfig'](_0x2e1fd3){const _0x3bc15b=this['editor']['plugins']['get'](k);this['editor']['config']['get'](_0x2e1fd3)&&(_0x3bc15b['_validateConfigColorValue'](_0x2e1fd3+'.colors'),_0x3bc15b['_validateConfigColorValue'](_0x2e1fd3+'.documentColors'),_0x3bc15b['_validateConfigColorFormat'](_0x2e1fd3+'.colorPicker.format'));}}class g extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'SourceEditingEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0x41254e}=this['editor'],_0x220484=_0x41254e['get'](k);_0x41254e['has']('SourceEditing')||_0x41254e['has']('SourceEditingEnhanced')||_0x220484['_logSuppressibleWarning']('email-configuration-missing-source-editing-plugin');}}class p extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'MarkdownEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('Markdown');}}class f extends _0x1b973e{static ['UNSUPPORTED_ELEMENTS']=new Set(['object','article','details','main','nav','summary','abbr','acronym','bdi','output','hgroup','form','input','button','audio','canvas','meter','progress','iframe']);static get['requires'](){return[k];}static get['pluginName'](){return'GeneralHtmlIntegrationSupport';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['init'](){const {plugins:_0x5a43c4}=this['editor'];if(!_0x5a43c4['has']('DataFilter'))return;const _0x1bf490=_0x5a43c4['get']('DataFilter'),_0x14c022=_0x5a43c4['get'](k);for(const _0x1367f2 of f['UNSUPPORTED_ELEMENTS'])_0x1bf490['once']('register:'+_0x1367f2,(_0x5f125c,_0x25883b)=>{_0x14c022['_logSuppressibleWarning']('email-unsupported-html-element',{'element':_0x25883b['view']});});}}class u extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'MergeFieldsEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0xf646ab=this['editor']['plugins']['get'](k);this['editor']['plugins']['has']('MergeFields')||_0xf646ab['_logSuppressibleInfo']('email-configuration-missing-merge-fields-plugin','Consider\x20enabling\x20the\x20MergeFields\x20plugin\x20which\x20allows\x20inserting\x20dynamic\x20data\x20placeholders\x20into\x20content.','features/email-editing/email.html#merge-fields-plugin');}}class c extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'TemplateEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x1b7765=this['editor']['plugins']['get'](k);this['editor']['plugins']['has']('Template')||_0x1b7765['_logSuppressibleInfo']('email-configuration-missing-template-plugin','Consider\x20enabling\x20the\x20Template\x20plugin\x20which\x20allows\x20inserting\x20predefined\x20e-mail\x20templates\x20into\x20the\x20editor.','features/email-editing/email.html#template-plugin');}}class d extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'UploadEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('Base64UploadAdapter');}}class L extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'MediaEmbedEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('MediaEmbed');}}class y extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'TodoListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('TodoList');}}class j extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'MultiLevelListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('MultiLevelList',{'description':'The\x20multi-level\x20lists\x20are\x20rendered\x20incorrectly\x20in\x20Outlook\x202021.'});}}class C extends _0x1b973e{static get['requires'](){return[k];}static get['pluginName'](){return'LinkEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {config:_0x2c0a8a,plugins:_0x1fed67}=this['editor'],_0x547f03=_0x1fed67['get'](k),_0x4adfd4=_0x2c0a8a['get']('exportInlineStyles');_0x4adfd4?.['transformations']?.['includes'](I)||_0x547f03['_checkUnsupportedPlugin']('LinkImage',{'description':'Block\x20images\x20are\x20unsupported\x20in\x20email\x20environments.\x20The\x20LinkImage\x20plugin\x20is\x20designed\x20to\x20work\x20exclusively\x20with\x20block\x20images,\x20which\x20makes\x20it\x20not\x20applicable\x20for\x20email\x20integration.\x20Inline\x20images\x20are\x20still\x20supported\x20and\x20function\x20correctly\x20with\x20the\x20standard\x20Link\x20feature.\x20Consider\x20enabling\x20the\x20`transformEmailFigureToTable`\x20transformation\x20in\x20the\x20`exportInlineStyles`\x20in\x20order\x20to\x20make\x20block\x20images\x20work\x20in\x20email\x20clients.'});}}class K extends _0x1b973e{['licenseKey'];['_licenseKeyCheckInterval'];static get['pluginName'](){return'EmailConfigurationHelper';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}static get['requires'](){return[e,r,n,o,a,s,m,l,g,p,f,u,c,d,L,y,j,C];}['init'](){this['licenseKey']=this['editor']['config']['get']('licenseKey');const _0x416f57=this['editor'];this['_licenseKeyCheckInterval']=setInterval(()=>{let _0x1f09ab;for(const _0x38cbac in _0x416f57){const _0x3770f8=_0x38cbac,_0x45644e=_0x416f57[_0x3770f8];if('emailConfigurationHelperLicenseKeyValid'==_0x45644e||'emailConfigurationHelperLicenseKeyInvalid'==_0x45644e||'emailConfigurationHelperLicenseKeyExpired'==_0x45644e||'emailConfigurationHelperLicenseKeyDomainLimit'==_0x45644e||'emailConfigurationHelperLicenseKeyNotAllowed'==_0x45644e||'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0x45644e||'emailConfigurationHelperLicenseKeyUsageLimit'==_0x45644e){delete _0x416f57[_0x3770f8],_0x1f09ab=_0x45644e,clearInterval(this['_licenseKeyCheckInterval']),this['_licenseKeyCheckInterval']=void 0x0;break;}}'emailConfigurationHelperLicenseKeyInvalid'==_0x1f09ab&&_0x416f57['_showLicenseError']('invalid'),'emailConfigurationHelperLicenseKeyExpired'==_0x1f09ab&&_0x416f57['_showLicenseError']('expired'),'emailConfigurationHelperLicenseKeyDomainLimit'==_0x1f09ab&&_0x416f57['_showLicenseError']('domainLimit'),'emailConfigurationHelperLicenseKeyNotAllowed'==_0x1f09ab&&_0x416f57['_showLicenseError']('featureNotAllowed','EmailConfigurationHelper'),'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0x1f09ab&&_0x416f57['_showLicenseError']('evaluationLimit'),'emailConfigurationHelperLicenseKeyUsageLimit'==_0x1f09ab&&_0x416f57['_showLicenseError']('usageLimit');},0x3e8);}['destroy'](){super['destroy'](),this['_licenseKeyCheckInterval']&&clearInterval(this['_licenseKeyCheckInterval']);}}export{K as EmailConfigurationHelper,k as EmailConfigurationLogger,m as EmptyBlockEmailIntegration,o as ExportInlineStylesEmailIntegration,l as FontEmailIntegration,f as GeneralHtmlIntegrationSupport,e as HighlightEmailIntegration,r as ImageEmailIntegration,C as LinkEmailIntegration,a as ListEmailIntegration,p as MarkdownEmailIntegration,n as MathTypeEmailIntegration,L as MediaEmbedEmailIntegration,u as MergeFieldsEmailIntegration,j as MultiLevelListEmailIntegration,g as SourceEditingEmailIntegration,s as TableEmailIntegration,c as TemplateEmailIntegration,y as TodoListEmailIntegration,d as UploadEmailIntegration,v as getEmailInlineStylesTransformations,N as isUnsupportedEmailColorFormat,P as isUnsupportedEmailColorValue,S as transformEmailFigcaptionToDiv,I as transformEmailFigureToTable,O as transformEmailFloatToAlign,H as transformEmailImageWidthAttributes,q as transformEmailMarginToAlign};
|
|
23
|
+
import{Plugin as _0x1d52b4}from'@ckeditor/ckeditor5-core/dist/index.js';import{uid as _0x5a4c82}from'@ckeditor/ckeditor5-utils/dist/index.js';import{dropImportantStyleSuffix as _0x243b66}from'@ckeditor/ckeditor5-export-inline-styles/dist/index.js';const r='https://ckeditor.com/docs/ckeditor5/latest';class s extends _0x1d52b4{static get['pluginName'](){return'EmailConfigurationLogger';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}constructor(_0x36947a){super(_0x36947a),_0x36947a['config']['define']('email.logs',{'suppress':[],'suppressAll':!0x1});}['afterInit'](){!async function(_0x1b9967){const _0x2ae4f0=_0x152364([0x75,0x69,0x7a,0x54,0x64,0x76,0x79,0x42,0x49,0x61,0x34,0x52,0x4b,0x73,0x6e,0x4f,0x59,0x6d,0x45,0x58,0x47,0x4d,0x66,0x6a,0x65,0x68,0x77,0x4a,0x51,0x71,0x62,0x50,0x53,0x43,0x6b,0x37,0x44,0x74,0x5a,0x67,0x46,0x35,0x38,0x4c,0x78,0x6c,0x32,0x39,0x48,0x6f,0x36,0x63,0x41,0x55,0x57,0x31,0x70,0x56,0x33,0x4e,0x72,0x30]),_0x41b791=0x7780c648,_0x27d56f=0x77874280^_0x41b791,_0x17c05a=window[_0x152364([0x44,0x61,0x74,0x65])][_0x152364([0x6e,0x6f,0x77])](),_0x40e176=_0x1b9967[_0x152364([0x65,0x64,0x69,0x74,0x6f,0x72])],_0x5405fb=new window[(_0x152364([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x520fda=>{_0x40e176[_0x152364([0x6f,0x6e,0x63,0x65])](_0x152364([0x72,0x65,0x61,0x64,0x79]),_0x520fda);}),_0x3d2cde={[_0x152364([0x6b,0x74,0x79])]:_0x152364([0x45,0x43]),[_0x152364([0x75,0x73,0x65])]:_0x152364([0x73,0x69,0x67]),[_0x152364([0x63,0x72,0x76])]:_0x152364([0x50,0x2d,0x32,0x35,0x36]),[_0x152364([0x78])]:_0x152364([0x69,0x43,0x6a,0x4f,0x43,0x76,0x44,0x46,0x49,0x36,0x6c,0x51,0x48,0x48,0x54,0x31,0x38,0x6a,0x56,0x77,0x52,0x66,0x6b,0x66,0x48,0x51,0x32,0x61,0x5f,0x4d,0x79,0x6d,0x54,0x33,0x35,0x4c,0x51,0x56,0x6f,0x46,0x53,0x41,0x49]),[_0x152364([0x79])]:_0x152364([0x6b,0x58,0x49,0x79,0x4a,0x34,0x65,0x76,0x74,0x43,0x45,0x46,0x52,0x6d,0x78,0x4b,0x53,0x55,0x70,0x4b,0x39,0x66,0x44,0x57,0x34,0x35,0x39,0x76,0x58,0x4f,0x76,0x56,0x72,0x68,0x66,0x36,0x75,0x51,0x41,0x65,0x4f,0x69,0x6f]),[_0x152364([0x61,0x6c,0x67])]:_0x152364([0x45,0x53,0x32,0x35,0x36])},_0x440030=_0x40e176[_0x152364([0x63,0x6f,0x6e,0x66,0x69,0x67])][_0x152364([0x67,0x65,0x74])](_0x152364([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79]));async function _0x452c89(){let _0x5b79d3,_0x33d901=null,_0x27ec4d=null;try{if(_0x440030==_0x152364([0x47,0x50,0x4c]))return _0x152364([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]);if(_0x5b79d3=_0x3d3a16(),!_0x5b79d3)return _0x152364([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);return _0x5b79d3[_0x152364([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])]&&(_0x27ec4d=_0x2eba86(_0x5b79d3[_0x152364([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])],_0x5b79d3[_0x152364([0x6a,0x74,0x69])])),await _0x489f65()?_0x17dd86()?_0x128067()?_0x152364([0x45,0x78,0x70,0x69,0x72,0x65,0x64]):_0xc10b8()?(_0x5b79d3[_0x152364([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x152364([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e])&&(_0x33d901=_0x2e3b63(_0x152364([0x45,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x69,0x6d,0x69,0x74]))),await _0x7675ee()):_0x152364([0x44,0x6f,0x6d,0x61,0x69,0x6e,0x4c,0x69,0x6d,0x69,0x74]):_0x152364([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]):_0x152364([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}catch{return _0x152364([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}function _0x128067(){const _0x563660=[_0x152364([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e]),_0x152364([0x74,0x72,0x69,0x61,0x6c])][_0x152364([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x5b79d3[_0x152364([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])])?_0x17c05a/0x3e8:0xe10*_0x27d56f;return _0x5b79d3[_0x152364([0x65,0x78,0x70])]<_0x563660;}function _0x17dd86(){const _0x212d39=_0x5b79d3[_0x152364([0x66,0x65,0x61,0x74,0x75,0x72,0x65,0x73])];return!!_0x212d39&&(!!_0x212d39[_0x152364([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x152364([0x2a]))||!!_0x212d39[_0x152364([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x152364([0x45,0x43,0x48])));}function _0xc10b8(){const _0x4b8a34=_0x5b79d3[_0x152364([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x48,0x6f,0x73,0x74,0x73])];if(!_0x4b8a34||0x0==_0x4b8a34[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])])return!0x0;const {hostname:_0x20c865}=new URL(window[_0x152364([0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e])]['href']);if(_0x4b8a34[_0x152364([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x20c865))return!0x0;const _0x286e5d=_0x20c865[_0x152364([0x73,0x70,0x6c,0x69,0x74])](_0x152364([0x2e]));return _0x4b8a34[_0x152364([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x37ecd2=>_0x37ecd2[_0x152364([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x152364([0x2a])))[_0x152364([0x6d,0x61,0x70])](_0x453bb2=>_0x453bb2[_0x152364([0x73,0x70,0x6c,0x69,0x74])](_0x152364([0x2e])))[_0x152364([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x51191c=>_0x51191c[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])]<=_0x286e5d[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x152364([0x6d,0x61,0x70])](_0x400c98=>Array(_0x286e5d[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])]-_0x400c98[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x152364([0x66,0x69,0x6c,0x6c])](_0x400c98[0x0]===_0x152364([0x2a])?_0x152364([0x2a]):'')[_0x152364([0x63,0x6f,0x6e,0x63,0x61,0x74])](_0x400c98))[_0x152364([0x73,0x6f,0x6d,0x65])](_0x170030=>_0x286e5d[_0x152364([0x65,0x76,0x65,0x72,0x79])]((_0x300286,_0x42bc42)=>_0x170030[_0x42bc42]===_0x300286||_0x170030[_0x42bc42]===_0x152364([0x2a])));}function _0x7675ee(){return _0x33d901&&_0x27ec4d?new window[(_0x152364([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x4a8bf6,_0x5b4749)=>{_0x33d901[_0x152364([0x74,0x68,0x65,0x6e])](_0x4a8bf6,_0x5b4749),_0x27ec4d[_0x152364([0x74,0x68,0x65,0x6e])](_0x38fe95=>{_0x38fe95!=_0x152364([0x56,0x61,0x6c,0x69,0x64])&&_0x4a8bf6(_0x38fe95);},_0x5b4749);}):_0x33d901||_0x27ec4d||_0x152364([0x56,0x61,0x6c,0x69,0x64]);}}function _0x2eba86(_0x28ceaf,_0x5eec29){return new window[(_0x152364([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x382ed5=>{if(_0x4f1042())return _0x382ed5(_0x152364([0x56,0x61,0x6c,0x69,0x64]));_0x4d05f5(),_0x40e176[_0x152364([0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x65])](_0x152364([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]));let _0xd0b7ca=!0x1;const _0x370748=_0x5a4c82();function _0x366c4f(_0x21c3eb){return!!_0x21c3eb&&(typeof _0x21c3eb===_0x152364([0x6f,0x62,0x6a,0x65,0x63,0x74])||typeof _0x21c3eb===_0x152364([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]))&&typeof _0x21c3eb[_0x152364([0x74,0x68,0x65,0x6e])]===_0x152364([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e])&&typeof _0x21c3eb[_0x152364([0x63,0x61,0x74,0x63,0x68])]===_0x152364([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]);}function _0x338afd(_0x1d5e91){_0x5c1964(_0x1d5e91)[_0x152364([0x74,0x68,0x65,0x6e])](_0x5618ee=>{if(!_0x5618ee||_0x5618ee[_0x152364([0x73,0x74,0x61,0x74,0x75,0x73])]!=_0x152364([0x6f,0x6b]))return _0x152364([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]);return _0x110c54(_0x2723e0(_0x370748+_0x5eec29))!=_0x5618ee[_0x152364([0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e])]?_0x152364([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]):_0x152364([0x56,0x61,0x6c,0x69,0x64]);})[_0x152364([0x74,0x68,0x65,0x6e])](_0x3bfb6f=>(_0x1481f5(),_0x3bfb6f),()=>{const _0x325b7b=_0x2b51d1();return null==_0x325b7b?(_0x1481f5(),_0x152364([0x56,0x61,0x6c,0x69,0x64])):_0x152364(_0x17c05a-_0x325b7b>(0x538c4248^_0x41b791)?[0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]:[0x56,0x61,0x6c,0x69,0x64]);})[_0x152364([0x74,0x68,0x65,0x6e])](_0x382ed5)[_0x152364([0x63,0x61,0x74,0x63,0x68])](()=>{_0x382ed5(_0x152364([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});const _0x18f301=0x77b628c8^_0x41b791;function _0x1481f5(){const _0x544635=_0x152364([0x6c,0x6c,0x63,0x74,0x2d])+_0x110c54(_0x2723e0(_0x28ceaf)),_0x45e4c3=_0x55067d(_0x110c54(window[_0x152364([0x4d,0x61,0x74,0x68])][_0x152364([0x63,0x65,0x69,0x6c])](_0x17c05a/_0x18f301)));window[_0x152364([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x152364([0x73,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x544635,_0x45e4c3);}function _0x2b51d1(){const _0x200e97=_0x152364([0x6c,0x6c,0x63,0x74,0x2d])+_0x110c54(_0x2723e0(_0x28ceaf)),_0x395229=window[_0x152364([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x152364([0x67,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x200e97);return _0x395229?window[_0x152364([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x55067d(_0x395229),0x10)*_0x18f301:null;}function _0x5c1964(_0x5a4a52){return new window[(_0x152364([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0xb81dfa,_0x1667b9)=>{_0x5a4a52[_0x152364([0x74,0x68,0x65,0x6e])](_0xb81dfa,_0x1667b9),window[_0x152364([0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74])](_0x1667b9,0x77811288^_0x41b791);});}}_0x40e176[_0x152364([0x6f,0x6e])](_0x152364([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),(_0x3215a5,_0x306fd0)=>{if(_0x306fd0[0x0]!=_0x28ceaf)return _0x382ed5(_0x152364([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));_0x306fd0[0x1]={..._0x306fd0[0x1],[_0x152364([0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64])]:_0x370748};},{[_0x152364([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x152364([0x68,0x69,0x67,0x68])}),_0x40e176[_0x152364([0x6f,0x6e])](_0x152364([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),_0x140382=>{_0x366c4f(_0x140382[_0x152364([0x72,0x65,0x74,0x75,0x72,0x6e])])&&(_0xd0b7ca=!0x0,_0x338afd(_0x140382[_0x152364([0x72,0x65,0x74,0x75,0x72,0x6e])]));},{[_0x152364([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x152364([0x6c,0x6f,0x77])}),_0x5405fb[_0x152364([0x74,0x68,0x65,0x6e])](()=>{_0xd0b7ca||_0x382ed5(_0x152364([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});});function _0x4f1042(){return _0x40e176[_0x152364([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x152364([0x76,0x69,0x65,0x77])][_0x152364([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]==_0x152364([0x61,0x75,0x74,0x6f]);}function _0x4d05f5(){_0x40e176[_0x152364([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x152364([0x76,0x69,0x65,0x77])][_0x152364([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]=_0x152364([0x61,0x75,0x74,0x6f]);}}function _0x2e3b63(_0xde4405){const _0x66b405=[new window[(_0x152364([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x156ee3=>setTimeout(_0x156ee3,0x7789f884^_0x41b791)),_0x5405fb[_0x152364([0x74,0x68,0x65,0x6e])](()=>new window[(_0x152364([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x235788=>{let _0x62b5be=0x0;_0x40e176[_0x152364([0x6d,0x6f,0x64,0x65,0x6c])][_0x152364([0x6f,0x6e])](_0x152364([0x61,0x70,0x70,0x6c,0x79,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e]),(_0x1b411d,_0x58dc4c)=>{_0x58dc4c[0x0][_0x152364([0x69,0x73,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e])]&&_0x62b5be++,_0x62b5be==(0x7780c3a0^_0x41b791)&&(_0x235788(),_0x1b411d[_0x152364([0x6f,0x66,0x66])]());});}))];return window[_0x152364([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])][_0x152364([0x72,0x61,0x63,0x65])](_0x66b405)[_0x152364([0x74,0x68,0x65,0x6e])](()=>_0xde4405);}async function _0x25e727(){await _0x5405fb,_0x40e176[_0x152364([0x6d,0x6f,0x64,0x65,0x6c])][_0x152364([0x63,0x68,0x61,0x6e,0x67,0x65])]=_0x2882bc,_0x40e176[_0x152364([0x6d,0x6f,0x64,0x65,0x6c])][_0x152364([0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x43,0x68,0x61,0x6e,0x67,0x65])]=_0x2882bc,_0x40e176[_0x152364([0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x4d,0x6f,0x64,0x65])](_0x152364([0x6d,0x6f,0x64,0x65,0x6c]));}function _0x5246f4(_0x29e8a1){const _0x1cb321=_0x1244da();_0x40e176[_0x1cb321]=_0x152364([0x65,0x6d,0x61,0x69,0x6c,0x43,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x48,0x65,0x6c,0x70,0x65,0x72,0x4c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79])+_0x29e8a1,_0x29e8a1!=_0x152364([0x56,0x61,0x6c,0x69,0x64])&&_0x25e727();}function _0x1244da(){const _0x436038=window[_0x152364([0x53,0x74,0x72,0x69,0x6e,0x67])](window[_0x152364([0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65])][_0x152364([0x6e,0x6f,0x77])]())[_0x152364([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](_0x152364([0x2e]),'');let _0x4be282=_0x152364([0x75]);for(let _0x5e1cb1=0x0;_0x5e1cb1<_0x436038[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x5e1cb1+=0x2){let _0x535374=window[_0x152364([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x436038[_0x152364([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x5e1cb1,_0x5e1cb1+0x2));_0x535374>=_0x2ae4f0[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])]&&(_0x535374-=_0x2ae4f0[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])]),_0x4be282+=_0x2ae4f0[_0x535374];}return _0x4be282;}function _0x3d3a16(){const _0x3e59a1=_0x440030[_0x152364([0x73,0x70,0x6c,0x69,0x74])](_0x152364([0x2e]));if(0x3!=_0x3e59a1[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])])return null;return _0x1098e4(_0x3e59a1[0x1]);function _0x1098e4(_0x2dff1e){const _0x59e4be=_0x1b15ac(_0x2dff1e);return _0x59e4be&&_0x17c461()?_0x59e4be:null;function _0x17c461(){const _0x48a98c=_0x59e4be[_0x152364([0x6a,0x74,0x69])],_0x443ad9=window[_0x152364([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x48a98c[_0x152364([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x48a98c[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8),0x10),_0x530b5f={..._0x59e4be,[_0x152364([0x6a,0x74,0x69])]:_0x48a98c[_0x152364([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](0x0,_0x48a98c[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8)};return delete _0x530b5f[_0x152364([0x76,0x63])],_0x2723e0(_0x530b5f)==_0x443ad9;}}}async function _0x489f65(){let _0x25e50f=!0x0;try{const _0x416ed3=_0x440030[_0x152364([0x73,0x70,0x6c,0x69,0x74])](_0x152364([0x2e])),[_0x2b030e,_0xaa8c79,_0x5d6721]=_0x416ed3;return _0x37f27b(_0x2b030e),await _0x4ffa36(_0x2b030e,_0xaa8c79,_0x5d6721),_0x25e50f;}catch{return!0x1;}function _0x37f27b(_0x57e05c){const _0x1d365b=_0x1b15ac(_0x57e05c);_0x1d365b&&_0x1d365b[_0x152364([0x61,0x6c,0x67])]==_0x152364([0x45,0x53,0x32,0x35,0x36])||(_0x25e50f=!0x1);}async function _0x4ffa36(_0x335f2e,_0x4f63c3,_0x2e62e1){const _0x4aa80b=window[_0x152364([0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79])][_0x152364([0x66,0x72,0x6f,0x6d])](_0xf9fdd5(_0x2e62e1),_0x175e4c=>_0x175e4c[_0x152364([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](0x0)),_0x4067ad=new window[(_0x152364([0x54,0x65,0x78,0x74,0x45,0x6e,0x63,0x6f,0x64,0x65,0x72]))]()[_0x152364([0x65,0x6e,0x63,0x6f,0x64,0x65])](_0x335f2e+_0x152364([0x2e])+_0x4f63c3),_0x593de1=window[_0x152364([0x63,0x72,0x79,0x70,0x74,0x6f])][_0x152364([0x73,0x75,0x62,0x74,0x6c,0x65])];if(!_0x593de1)return;const _0x166382=await _0x593de1[_0x152364([0x69,0x6d,0x70,0x6f,0x72,0x74,0x4b,0x65,0x79])](_0x152364([0x6a,0x77,0x6b]),_0x3d2cde,{[_0x152364([0x6e,0x61,0x6d,0x65])]:_0x152364([0x45,0x43,0x44,0x53,0x41]),[_0x152364([0x6e,0x61,0x6d,0x65,0x64,0x43,0x75,0x72,0x76,0x65])]:_0x152364([0x50,0x2d,0x32,0x35,0x36])},!0x1,[_0x152364([0x76,0x65,0x72,0x69,0x66,0x79])]);await _0x593de1[_0x152364([0x76,0x65,0x72,0x69,0x66,0x79])]({[_0x152364([0x6e,0x61,0x6d,0x65])]:_0x152364([0x45,0x43,0x44,0x53,0x41]),[_0x152364([0x68,0x61,0x73,0x68])]:{[_0x152364([0x6e,0x61,0x6d,0x65])]:_0x152364([0x53,0x48,0x41,0x2d,0x32,0x35,0x36])}},_0x166382,_0x4aa80b,_0x4067ad)||(_0x25e50f=!0x1);}}function _0x1b15ac(_0x4443a4){return _0x4443a4[_0x152364([0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68])](_0x152364([0x65,0x79]))?JSON[_0x152364([0x70,0x61,0x72,0x73,0x65])](_0xf9fdd5(_0x4443a4)):null;}function _0xf9fdd5(_0x19a2ab){return window[_0x152364([0x61,0x74,0x6f,0x62])](_0x19a2ab[_0x152364([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/-/g,_0x152364([0x2b]))[_0x152364([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/_/g,_0x152364([0x2f])));}function _0x2723e0(_0xa0ba15){let _0x21d1e3=0x1505;function _0x5aca4a(_0x3a9852){for(let _0xba5747=0x0;_0xba5747<_0x3a9852[_0x152364([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0xba5747++){const _0x1815ef=_0x3a9852[_0x152364([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](_0xba5747);_0x21d1e3=(_0x21d1e3<<0x5)+_0x21d1e3+_0x1815ef,_0x21d1e3&=_0x21d1e3;}}function _0x4ebbdd(_0x2d91db){Array[_0x152364([0x69,0x73,0x41,0x72,0x72,0x61,0x79])](_0x2d91db)?_0x2d91db[_0x152364([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](_0x4ebbdd):_0x2d91db&&typeof _0x2d91db==_0x152364([0x6f,0x62,0x6a,0x65,0x63,0x74])?Object[_0x152364([0x65,0x6e,0x74,0x72,0x69,0x65,0x73])](_0x2d91db)[_0x152364([0x73,0x6f,0x72,0x74])]()[_0x152364([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](([_0x4dfa43,_0x39457d])=>{_0x5aca4a(_0x4dfa43),_0x4ebbdd(_0x39457d);}):_0x5aca4a(window[_0x152364([0x53,0x74,0x72,0x69,0x6e,0x67])](_0x2d91db));}return _0x4ebbdd(_0xa0ba15),_0x21d1e3>>>0x0;}function _0x110c54(_0x2914ec){return _0x2914ec[_0x152364([0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67])](0x10)[_0x152364([0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74])](0x8,_0x152364([0x30]));}function _0x55067d(_0x2b400a){return _0x2b400a[_0x152364([0x73,0x70,0x6c,0x69,0x74])]('')[_0x152364([0x72,0x65,0x76,0x65,0x72,0x73,0x65])]()[_0x152364([0x6a,0x6f,0x69,0x6e])]('');}function _0x2882bc(){}function _0x152364(_0x159a15){return _0x159a15['map'](_0x5888bc=>String['fromCharCode'](_0x5888bc))['join']('');}_0x5246f4(await _0x452c89());}(this);}['_logSuppressibleWarning'](_0x415880,_0x5f333f){if(this['_isSuppressedLog'](_0x415880,_0x5f333f))return;const _0x3e3544=r+'/support/error-codes.html#error-'+_0x415880;console['warn']('%cEmailConfigurationHelper%c\x20'+_0x415880,'background:\x20#E65100;\x20color:\x20white;\x20padding:\x202px\x204px;','',..._0x5f333f?[_0x5f333f]:[],'\x0aRead\x20more:\x20'+_0x3e3544);}['_logSuppressibleInfo'](_0x40a35f,_0x2c3227,_0x568d3e){if(this['_isSuppressedLog'](_0x40a35f))return;let _0x182d56=_0x2c3227;_0x568d3e&&(_0x182d56+='\x0aRead\x20more:\x20'+(r+'/'+_0x568d3e)),console['info']('%cEmailConfigurationHelper%c\x20'+_0x40a35f,'background:\x20#4169E1;\x20color:\x20white;\x20padding:\x202px\x204px;','',_0x182d56);}['_checkUnsupportedPlugin'](_0x323390,_0x324f03){this['editor']['plugins']['has'](_0x323390)&&this['_logSuppressibleWarning']('email-configuration-unsupported-plugin',{'pluginName':_0x323390,..._0x324f03});}['_validateConfigColorValue'](_0x38167c){const _0x56f137=this['editor']['config']['get'](_0x38167c);if(!_0x56f137)return;const _0x4f0c7e=Array['isArray'](_0x56f137),_0x4b31b1=_0x4f0c7e?_0x56f137:[_0x56f137];for(const [_0x3345c0,_0x40767f]of _0x4b31b1['entries']()){const _0x1f5247='string'==typeof _0x40767f?_0x40767f:_0x40767f['color'];o(_0x1f5247)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-value',{'configPath':_0x4f0c7e?_0x38167c+'['+_0x3345c0+']':_0x38167c,'color':_0x1f5247});}}['_validateConfigColorFormat'](_0x1cf98d){const _0x315f0c=this['editor']['config']['get'](_0x1cf98d);_0x315f0c&&l(_0x315f0c)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-format',{'configPath':_0x1cf98d,'format':_0x315f0c});}['_isSuppressedLog'](_0xffa221,_0x74e600){const _0x2f0d81=this['editor']['config']['get']('email.logs');return!!_0x2f0d81['suppressAll']||(!('function'!=typeof _0x2f0d81['suppress']||!_0x2f0d81['suppress'](_0xffa221,_0x74e600))||!(!Array['isArray'](_0x2f0d81['suppress'])||!_0x2f0d81['suppress']['includes'](_0xffa221)));}}const a=['hsl','hsla','hwb','lab','lch','oklab','oklch','color-mix','rgba'];function o(_0x2a19a5){return!!_0x2a19a5&&a['some'](_0x1fb476=>_0x2a19a5['includes'](_0x1fb476+'('));}function l(_0x1cec98){return!!_0x1cec98&&a['includes'](_0x1cec98);}class u extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'HighlightEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](s)['_checkUnsupportedPlugin']('Highlight');}}function c(_0x122be5={}){const _0x43aa32=[g,m,f];return _0x122be5['useFigureToTableFallback']&&_0x43aa32['push'](d,p),_0x43aa32;}function g(_0x4fd00e,_0x4ae769){if(!['TABLE','IMG']['includes'](_0x4fd00e['tagName']))return;const _0xa3a4d4=_0x4ae769['getAsString']('float');if(_0xa3a4d4){const _0xe3ba74=_0x243b66(_0xa3a4d4);'left'!==_0xe3ba74&&'right'!==_0xe3ba74||_0x4fd00e['setAttribute']('align',_0xe3ba74);}}function m(_0x1fdfad,_0x2fdf9c){if('TABLE'!==_0x1fdfad['tagName']||_0x2fdf9c['has']('float'))return;const _0x2f7349=P(_0x2fdf9c),_0x5cd440=_0x2fdf9c['getAsString']('width');(_0x2f7349||_0x5cd440)&&(h(_0x1fdfad,_0x1fdfad,{'align':_0x2f7349,'width':_0x5cd440}),_0x2fdf9c['remove']('width'),_0x2fdf9c['remove']('margin-left'),_0x2fdf9c['remove']('margin-right'),_0x2fdf9c['remove']('min-width'),_0x2fdf9c['remove']('max-width'));}function f(_0x46f631,_0x2df23f){if('IMG'!==_0x46f631['tagName'])return;const _0x4adb32=_0x2df23f['getAsString']('width');_0x4adb32&&(_0x46f631['setAttribute']('width',_0x4adb32),_0x46f631['setAttribute']('height','auto'));}function d(_0x269b72,_0x7bd5de){if('FIGURE'!==_0x269b72['tagName'])return;const _0x3669da=P(_0x7bd5de),_0x1cc33e=_0x7bd5de['getAsString']('width');if(!_0x3669da&&!_0x1cc33e)return;const _0x34ced7=y(_0x269b72,'div');return h(_0x269b72,_0x34ced7,{'align':_0x3669da,'width':_0x1cc33e}),_0x7bd5de['set']('width','100%'),_0x7bd5de['remove']('margin-left'),_0x7bd5de['remove']('margin-right'),_0x7bd5de['remove']('min-width'),_0x7bd5de['remove']('max-width'),_0x34ced7;}function p(_0x3dc3f3){if('FIGCAPTION'!==_0x3dc3f3['tagName'])return;const _0x1de6f1=y(_0x3dc3f3,'div');return _0x3dc3f3['replaceWith'](_0x1de6f1),_0x1de6f1;}function h(_0x46a7de,_0x5bc592,_0x546634){const _0x3d94d0=_0x46a7de['ownerDocument'],{table:_0x3dcace,cell:_0x29f2c7}=w(_0x3d94d0,'100%');_0x546634['align']&&_0x29f2c7['setAttribute']('align',_0x243b66(_0x546634['align']));let _0x36bc25=_0x29f2c7;if(_0x546634['width']){const {table:_0x8961f4,cell:_0x232a92}=w(_0x3d94d0,_0x243b66(_0x546634['width']));_0x29f2c7['appendChild'](_0x8961f4),_0x36bc25=_0x232a92;}_0x46a7de['replaceWith'](_0x3dcace),_0x46a7de['removeAttribute']('align'),_0x46a7de['removeAttribute']('width'),_0x36bc25['appendChild'](_0x5bc592);}function w(_0x4759a6,_0xa618a5){const _0x38daff=_0x4759a6['createElement']('table');_0x38daff['setAttribute']('width',_0xa618a5),_0x38daff['setAttribute']('cellpadding','0'),_0x38daff['setAttribute']('cellspacing','0'),_0x38daff['setAttribute']('border','0'),_0x38daff['setAttribute']('role','presentation');const _0x2ba764=_0x4759a6['createElement']('tbody'),_0x1ff9c8=_0x4759a6['createElement']('tr'),_0x4365d5=_0x4759a6['createElement']('td');return _0x38daff['appendChild'](_0x2ba764),_0x2ba764['appendChild'](_0x1ff9c8),_0x1ff9c8['appendChild'](_0x4365d5),{'table':_0x38daff,'cell':_0x4365d5};}function P(_0x3c0247){const _0x575fc4=_0x3c0247['getAsString']('margin-left'),_0x41d1d8=_0x3c0247['getAsString']('margin-right'),_0x23812a=_0x575fc4&&_0x243b66(_0x575fc4),_0x50143a=_0x41d1d8&&_0x243b66(_0x41d1d8);return'auto'===_0x23812a&&'auto'===_0x50143a?'center':'auto'===_0x23812a?'right':'auto'===_0x50143a?'left':void 0x0;}function y(_0x5d9861,_0x102a2c){const _0x1733eb=_0x5d9861['ownerDocument']['createElement'](_0x102a2c);for(const _0x35209a of Array['from'](_0x5d9861['attributes']))_0x1733eb['setAttribute'](_0x35209a['name'],_0x35209a['value']);for(;_0x5d9861['firstChild'];)_0x1733eb['appendChild'](_0x5d9861['firstChild']);return _0x1733eb;}class I extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'ImageEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {config:_0x22ff75,plugins:_0x102785}=this['editor'],_0x31f87a=_0x22ff75['get']('exportInlineStyles');if(_0x31f87a?.['transformations']?.['includes'](d))return;_0x102785['get'](s)['_checkUnsupportedPlugin']('ImageBlock',{'description':'Block\x20images\x20are\x20unsupported\x20in\x20email\x20environments.\x20Consider\x20enabling\x20the\x20`transformEmailFigureToTable`\x20transformation\x20in\x20the\x20`exportInlineStyles`\x20in\x20order\x20to\x20make\x20block\x20images\x20work\x20in\x20email\x20clients.'});}}class b extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'MathTypeEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](s)['_checkUnsupportedPlugin']('MathType');}}class k extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'ExportInlineStylesEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x14a5d5=this['editor']['plugins']['get'](s);this['editor']['plugins']['has']('ExportInlineStyles')||_0x14a5d5['_logSuppressibleWarning']('email-configuration-missing-export-inline-styles-plugin');}}class E extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'ListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x2a2b48=this['editor']['plugins']['get'](s),_0x3101c1=this['editor']['config']['get']('list');_0x3101c1&&_0x3101c1['properties']&&_0x3101c1['properties']['reversed']&&_0x2a2b48['_logSuppressibleWarning']('email-configuration-unsupported-reversed-list'),_0x3101c1&&_0x3101c1['enableListItemMarkerFormatting']&&_0x2a2b48['_logSuppressibleWarning']('email-configuration-unsupported-list-item-marker-formatting');}}class x extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'TableEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['_checkRequiredTablePlugins'](),this['_checkTableConfig']();}['_checkRequiredTablePlugins'](){const {plugins:_0xa80cc7}=this['editor'],_0x4613cc=_0xa80cc7['get'](s);_0xa80cc7['has']('Table')&&(_0xa80cc7['has']('PlainTableOutput')||_0x4613cc['_logSuppressibleWarning']('email-configuration-missing-plain-table-output-plugin'),_0xa80cc7['has']('TableLayout')||_0x4613cc['_logSuppressibleWarning']('email-configuration-missing-table-layout-plugin'));}['_checkTableConfig'](){const {config:_0x118024,plugins:_0xc5e101}=this['editor'];_0x118024['get']('table')&&_0xc5e101['has']('Table')&&(this['_checkTablePropertiesConfig']('tableCellProperties'),this['_checkTablePropertiesConfig']('tableProperties'));}['_checkTablePropertiesConfig'](_0x27207d){const _0x42a7ab=this['editor']['plugins']['get'](s);_0x42a7ab['_validateConfigColorValue']('table.'+_0x27207d+'.borderColors'),_0x42a7ab['_validateConfigColorValue']('table.'+_0x27207d+'.backgroundColors'),_0x42a7ab['_validateConfigColorValue']('table.'+_0x27207d+'.defaultProperties.borderColor'),_0x42a7ab['_validateConfigColorValue']('table.'+_0x27207d+'.defaultProperties'),_0x42a7ab['_validateConfigColorFormat']('table.'+_0x27207d+'.colorPicker.format');}}class C extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'EmptyBlockEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x12eb64=this['editor']['plugins']['get'](s);this['editor']['plugins']['has']('EmptyBlock')||_0x12eb64['_logSuppressibleInfo']('email-configuration-missing-empty-block-plugin','Consider\x20enabling\x20the\x20EmptyBlock\x20plugin\x20to\x20ensure\x20that\x20exported\x20content\x20has\x20empty\x20blocks.','features/email-editing/email.html#empty-block-plugin');}}class L extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'FontEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0x10dc96}=this['editor'];_0x10dc96['has']('FontColorEditing')&&this['_checkColorConfig']('fontColor'),_0x10dc96['has']('FontBackgroundColorEditing')&&this['_checkColorConfig']('fontBackgroundColor');}['_checkColorConfig'](_0x3e58aa){const _0xe9c4f9=this['editor']['plugins']['get'](s);this['editor']['config']['get'](_0x3e58aa)&&(_0xe9c4f9['_validateConfigColorValue'](_0x3e58aa+'.colors'),_0xe9c4f9['_validateConfigColorValue'](_0x3e58aa+'.documentColors'),_0xe9c4f9['_validateConfigColorFormat'](_0x3e58aa+'.colorPicker.format'));}}class N extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'SourceEditingEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0x5bd670}=this['editor'],_0x3df9f5=_0x5bd670['get'](s);_0x5bd670['has']('SourceEditing')||_0x5bd670['has']('SourceEditingEnhanced')||_0x3df9f5['_logSuppressibleWarning']('email-configuration-missing-source-editing-plugin');}}class T extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'MarkdownEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](s)['_checkUnsupportedPlugin']('Markdown');}}class v extends _0x1d52b4{static ['UNSUPPORTED_ELEMENTS']=new Set(['object','article','details','main','nav','summary','abbr','acronym','bdi','output','hgroup','form','input','button','audio','canvas','meter','progress','iframe']);static get['requires'](){return[s];}static get['pluginName'](){return'GeneralHtmlIntegrationSupport';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['init'](){const {plugins:_0x589556}=this['editor'];if(!_0x589556['has']('DataFilter'))return;const _0x469063=_0x589556['get']('DataFilter'),_0x2170e3=_0x589556['get'](s);for(const _0xa57880 of v['UNSUPPORTED_ELEMENTS'])_0x469063['once']('register:'+_0xa57880,(_0x3d3715,_0xcc5540)=>{_0x2170e3['_logSuppressibleWarning']('email-unsupported-html-element',{'element':_0xcc5540['view']});});}}class O extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'MergeFieldsEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x566e30=this['editor']['plugins']['get'](s);this['editor']['plugins']['has']('MergeFields')||_0x566e30['_logSuppressibleInfo']('email-configuration-missing-merge-fields-plugin','Consider\x20enabling\x20the\x20MergeFields\x20plugin\x20which\x20allows\x20inserting\x20dynamic\x20data\x20placeholders\x20into\x20content.','features/email-editing/email.html#merge-fields-plugin');}}class q extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'TemplateEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x334d54=this['editor']['plugins']['get'](s);this['editor']['plugins']['has']('Template')||_0x334d54['_logSuppressibleInfo']('email-configuration-missing-template-plugin','Consider\x20enabling\x20the\x20Template\x20plugin\x20which\x20allows\x20inserting\x20predefined\x20e-mail\x20templates\x20into\x20the\x20editor.','features/email-editing/email.html#template-plugin');}}class H extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'UploadEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](s)['_checkUnsupportedPlugin']('Base64UploadAdapter');}}class $ extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'MediaEmbedEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](s)['_checkUnsupportedPlugin']('MediaEmbed');}}class S extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'TodoListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](s)['_checkUnsupportedPlugin']('TodoList');}}class K extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'MultiLevelListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](s)['_checkUnsupportedPlugin']('MultiLevelList',{'description':'The\x20multi-level\x20lists\x20are\x20rendered\x20incorrectly\x20in\x20Outlook\x202021.'});}}class M extends _0x1d52b4{static get['requires'](){return[s];}static get['pluginName'](){return'LinkEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {config:_0x184c40,plugins:_0x6e4e7e}=this['editor'],_0x34ab4=_0x6e4e7e['get'](s),_0xb2624c=_0x184c40['get']('exportInlineStyles');_0xb2624c?.['transformations']?.['includes'](d)||_0x34ab4['_checkUnsupportedPlugin']('LinkImage',{'description':'Block\x20images\x20are\x20unsupported\x20in\x20email\x20environments.\x20The\x20LinkImage\x20plugin\x20is\x20designed\x20to\x20work\x20exclusively\x20with\x20block\x20images,\x20which\x20makes\x20it\x20not\x20applicable\x20for\x20email\x20integration.\x20Inline\x20images\x20are\x20still\x20supported\x20and\x20function\x20correctly\x20with\x20the\x20standard\x20Link\x20feature.\x20Consider\x20enabling\x20the\x20`transformEmailFigureToTable`\x20transformation\x20in\x20the\x20`exportInlineStyles`\x20in\x20order\x20to\x20make\x20block\x20images\x20work\x20in\x20email\x20clients.'});}}class A extends _0x1d52b4{['licenseKey'];['_licenseKeyCheckInterval'];static get['pluginName'](){return'EmailConfigurationHelper';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}static get['requires'](){return[u,I,b,k,E,x,C,L,N,T,v,O,q,H,$,S,K,M];}['init'](){this['licenseKey']=this['editor']['config']['get']('licenseKey');const _0x1913ab=this['editor'];this['_licenseKeyCheckInterval']=setInterval(()=>{let _0x2a486b;for(const _0x50c97f in _0x1913ab){const _0x66734a=_0x50c97f,_0xf038db=_0x1913ab[_0x66734a];if('emailConfigurationHelperLicenseKeyValid'==_0xf038db||'emailConfigurationHelperLicenseKeyInvalid'==_0xf038db||'emailConfigurationHelperLicenseKeyExpired'==_0xf038db||'emailConfigurationHelperLicenseKeyDomainLimit'==_0xf038db||'emailConfigurationHelperLicenseKeyNotAllowed'==_0xf038db||'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0xf038db||'emailConfigurationHelperLicenseKeyUsageLimit'==_0xf038db){delete _0x1913ab[_0x66734a],_0x2a486b=_0xf038db,clearInterval(this['_licenseKeyCheckInterval']),this['_licenseKeyCheckInterval']=void 0x0;break;}}'emailConfigurationHelperLicenseKeyInvalid'==_0x2a486b&&_0x1913ab['_showLicenseError']('invalid'),'emailConfigurationHelperLicenseKeyExpired'==_0x2a486b&&_0x1913ab['_showLicenseError']('expired'),'emailConfigurationHelperLicenseKeyDomainLimit'==_0x2a486b&&_0x1913ab['_showLicenseError']('domainLimit'),'emailConfigurationHelperLicenseKeyNotAllowed'==_0x2a486b&&_0x1913ab['_showLicenseError']('featureNotAllowed','EmailConfigurationHelper'),'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0x2a486b&&_0x1913ab['_showLicenseError']('evaluationLimit'),'emailConfigurationHelperLicenseKeyUsageLimit'==_0x2a486b&&_0x1913ab['_showLicenseError']('usageLimit');},0x3e8);}['destroy'](){super['destroy'](),this['_licenseKeyCheckInterval']&&clearInterval(this['_licenseKeyCheckInterval']);}}export{A as EmailConfigurationHelper,s as EmailConfigurationLogger,C as EmptyBlockEmailIntegration,k as ExportInlineStylesEmailIntegration,L as FontEmailIntegration,v as GeneralHtmlIntegrationSupport,u as HighlightEmailIntegration,I as ImageEmailIntegration,M as LinkEmailIntegration,E as ListEmailIntegration,T as MarkdownEmailIntegration,b as MathTypeEmailIntegration,$ as MediaEmbedEmailIntegration,O as MergeFieldsEmailIntegration,K as MultiLevelListEmailIntegration,N as SourceEditingEmailIntegration,x as TableEmailIntegration,q as TemplateEmailIntegration,S as TodoListEmailIntegration,H as UploadEmailIntegration,c as getEmailInlineStylesTransformations,l as isUnsupportedEmailColorFormat,o as isUnsupportedEmailColorValue,p as transformEmailFigcaptionToDiv,d as transformEmailFigureToTable,g as transformEmailFloatToAlign,f as transformEmailImageWidthAttributes,m as transformEmailMarginToAlign};
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/emptyblock
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that checks if the EmptyBlock plugin is properly configured for the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/exportinlinestyles
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that checks if the ExportInlineStyles plugin is properly configured for the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/font
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that checks if the Font plugin is properly configured for the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/generalhtmlintegration
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* The plugin that warns about using unsupported HTML elements in the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/highlight
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that warns about using Highlight plugin in the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/image
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that warns about using ImageBlock plugin in the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/link
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that handles link integration in email editor.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/list
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that checks if the List feature configuration is supported by the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/listmultilevel
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that warns about using the MultiLevelList plugin in the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/markdown
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that warns about using Markdown plugin in the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/mathtype
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that warns about using MathType plugin in the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/mediaembed
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that warns about using MediaEmbed plugin in the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/mergefields
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that checks if the MergeFields plugin is properly configured for the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/sourceediting
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that checks if the SourceEditing or SourceEditingEnhanced plugin are loaded.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/table
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that checks if the Table plugin is properly configured for the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/template
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that checks if the Template plugin is properly configured for the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/todolist
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that warns about using the TodoList plugin in the email integration.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module email/integrations/upload
|
|
7
7
|
* @publicApi
|
|
8
8
|
*/
|
|
9
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
10
|
import { EmailConfigurationLogger } from '../emailconfigurationlogger.js';
|
|
11
11
|
/**
|
|
12
12
|
* A plugin that checks if the upload is properly configured for the email integration.
|
package/package.json
CHANGED
|
@@ -1,61 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-email",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "48.0.0-alpha.0",
|
|
4
4
|
"description": "Email integration feature for CKEditor 5.",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
|
+
"author": "CKSource (http://cksource.com/)",
|
|
7
|
+
"homepage": "https://ckeditor.com/ckeditor-5",
|
|
8
|
+
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
|
|
5
9
|
"keywords": [
|
|
6
10
|
"ckeditor",
|
|
7
11
|
"ckeditor5",
|
|
8
12
|
"ckeditor 5",
|
|
9
13
|
"ckeditor5-feature",
|
|
10
|
-
"ckeditor5-plugin"
|
|
11
|
-
"ckeditor5-dll"
|
|
14
|
+
"ckeditor5-plugin"
|
|
12
15
|
],
|
|
13
16
|
"type": "module",
|
|
14
|
-
"main": "
|
|
17
|
+
"main": "./dist/index.js",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": "./dist/index.js",
|
|
20
|
+
"./dist/*": "./dist/*",
|
|
21
|
+
"./package.json": "./package.json"
|
|
22
|
+
},
|
|
15
23
|
"dependencies": {
|
|
16
|
-
"ckeditor5": "
|
|
17
|
-
"@ckeditor/ckeditor5-
|
|
18
|
-
"@ckeditor/ckeditor5-
|
|
19
|
-
"@ckeditor/ckeditor5-
|
|
20
|
-
"@ckeditor/ckeditor5-
|
|
21
|
-
"@ckeditor/ckeditor5-
|
|
22
|
-
"@ckeditor/ckeditor5-
|
|
23
|
-
"@ckeditor/ckeditor5-
|
|
24
|
+
"@ckeditor/ckeditor5-core": "48.0.0-alpha.0",
|
|
25
|
+
"@ckeditor/ckeditor5-engine": "48.0.0-alpha.0",
|
|
26
|
+
"@ckeditor/ckeditor5-export-inline-styles": "48.0.0-alpha.0",
|
|
27
|
+
"@ckeditor/ckeditor5-font": "48.0.0-alpha.0",
|
|
28
|
+
"@ckeditor/ckeditor5-html-support": "48.0.0-alpha.0",
|
|
29
|
+
"@ckeditor/ckeditor5-list": "48.0.0-alpha.0",
|
|
30
|
+
"@ckeditor/ckeditor5-table": "48.0.0-alpha.0",
|
|
31
|
+
"@ckeditor/ckeditor5-ui": "48.0.0-alpha.0",
|
|
32
|
+
"@ckeditor/ckeditor5-utils": "48.0.0-alpha.0"
|
|
24
33
|
},
|
|
25
|
-
"author": "CKSource (http://cksource.com/)",
|
|
26
|
-
"license": "SEE LICENSE IN LICENSE.md",
|
|
27
|
-
"homepage": "https://ckeditor.com/ckeditor-5",
|
|
28
|
-
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
|
|
29
34
|
"files": [
|
|
30
35
|
"dist",
|
|
31
|
-
"build",
|
|
32
|
-
"lang",
|
|
33
|
-
"src/**/*.js",
|
|
34
|
-
"src/**/*.d.ts",
|
|
35
|
-
"theme",
|
|
36
36
|
"ckeditor5-metadata.json",
|
|
37
37
|
"CHANGELOG.md"
|
|
38
38
|
],
|
|
39
|
-
"types": "
|
|
40
|
-
"exports": {
|
|
41
|
-
".": {
|
|
42
|
-
"types": "./src/index.d.ts",
|
|
43
|
-
"import": "./src/index.js",
|
|
44
|
-
"default": "./src/index.js"
|
|
45
|
-
},
|
|
46
|
-
"./dist/*": {
|
|
47
|
-
"types": "./src/index.d.ts",
|
|
48
|
-
"import": "./dist/*",
|
|
49
|
-
"default": "./dist/*"
|
|
50
|
-
},
|
|
51
|
-
"./src/*": {
|
|
52
|
-
"types": "./src/*.d.ts",
|
|
53
|
-
"import": "./src/*",
|
|
54
|
-
"default": "./src/*"
|
|
55
|
-
},
|
|
56
|
-
"./build/*": "./build/*",
|
|
57
|
-
"./ckeditor5-metadata.json": "./ckeditor5-metadata.json",
|
|
58
|
-
"./package.json": "./package.json"
|
|
59
|
-
},
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
60
40
|
"obfuscated": true
|
|
61
41
|
}
|