@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
package/CHANGELOG.md
ADDED
package/LICENSE.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Software License Agreement
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
**CKEditor 5 Email feature** (https://ckeditor.com/ckeditor-5/)<br>
|
|
5
|
+
Copyright (c) 2003–2025, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
|
+
|
|
7
|
+
CKEditor 5 Email feature is licensed under a commercial license and is protected by copyright law.
|
|
8
|
+
For more information, see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing).
|
|
9
|
+
|
|
10
|
+
Sources of Intellectual Property Included in CKEditor 5 Email feature
|
|
11
|
+
--------------------------------------------------------------------------------
|
|
12
|
+
|
|
13
|
+
Where not otherwise indicated, all CKEditor 5 Email feature content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
|
|
14
|
+
|
|
15
|
+
Trademarks
|
|
16
|
+
----------
|
|
17
|
+
|
|
18
|
+
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks, or service marks of their respective holders.
|
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
CKEditor 5 Email integration feature
|
|
2
|
+
========================================
|
|
3
|
+
|
|
4
|
+
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-email)
|
|
5
|
+
[](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
|
6
|
+
[](https://app.circleci.com/pipelines/github/ckeditor/ckeditor5?branch=master)
|
|
7
|
+
|
|
8
|
+
This package implements email integration features for CKEditor 5. It provides basic functionality for handling email content.
|
|
9
|
+
|
|
10
|
+
This is a premium feature. Sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/checkout?plan=free), or see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing) for more information.
|
|
11
|
+
|
|
12
|
+
## Installation
|
|
13
|
+
|
|
14
|
+
This plugin is part of the `ckeditor5-premium-features` package. Install the whole package to use it.
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install ckeditor5-premium-features
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Create free account
|
|
21
|
+
|
|
22
|
+
If you want to check full CKEditor 5 capabilities, sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/checkout?plan=free).
|
|
23
|
+
|
|
24
|
+
## Demo
|
|
25
|
+
|
|
26
|
+
Check out the [demo in the email feature guide](https://ckeditor.com/docs/ckeditor5/latest/features/email-editing/email.html#demo).
|
|
27
|
+
|
|
28
|
+
## Documentation
|
|
29
|
+
|
|
30
|
+
See the [`@ckeditor/ckeditor5-email` package](https://ckeditor.com/docs/ckeditor5/latest/api/email.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
|
|
31
|
+
|
|
32
|
+
## Getting support
|
|
33
|
+
|
|
34
|
+
The CKEditor 5 Email feature comes with outstanding support from a dedicated team of customer care specialists, QA engineers, and CKEditor 5 developers. The team will gladly assist you in all aspects from setting up your account to integrating the CKEditor 5 Case change feature with your application.
|
|
35
|
+
|
|
36
|
+
As a licensed CKEditor 5 Email feature user you can report bugs and request features directly through the CKEditor Ecosystem customer dashboard.
|
|
37
|
+
|
|
38
|
+
## License
|
|
39
|
+
|
|
40
|
+
**CKEditor 5 Email feature** (https://ckeditor.com/ckeditor-5/)<br>
|
|
41
|
+
Copyright (c) 2003–2025, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
42
|
+
|
|
43
|
+
CKEditor 5 Case change feature is licensed under a commercial license and is protected by copyright law. For more information, see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing).
|
|
44
|
+
|
|
45
|
+
### Trademarks
|
|
46
|
+
|
|
47
|
+
**CKEditor** is a trademark of [CKSource Holding sp. z o.o.](https://cksource.com) All other brand and product names are trademarks, registered trademarks, or service marks of their respective holders.
|
|
48
|
+
|
package/build/email.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md.
|
|
4
|
+
*/(()=>{var t={237:t=>{"use strict";t.exports=CKEditor5.dll},584:(t,n,e)=>{t.exports=e(237)("./src/utils.js")},782:(t,n,e)=>{t.exports=e(237)("./src/core.js")},783:(t,n,e)=>{t.exports=e(237)("./src/engine.js")}},n={};function e(r){var i=n[r];if(void 0!==i)return i.exports;var s=n[r]={exports:{}};return t[r](s,s.exports,e),s.exports}e.d=(t,n)=>{for(var r in n)e.o(n,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:n[r]})},e.o=(t,n)=>Object.prototype.hasOwnProperty.call(t,n),e.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})};var r={};(()=>{"use strict";e.r(r),e.d(r,{EmailConfigurationHelper:()=>St,EmailConfigurationLogger:()=>u,EmptyBlockEmailIntegration:()=>B,ExportInlineStylesEmailIntegration:()=>k,FontEmailIntegration:()=>_,GeneralHtmlIntegrationSupport:()=>tt,HighlightEmailIntegration:()=>g,ImageEmailIntegration:()=>d,ListEmailIntegration:()=>T,MarkdownEmailIntegration:()=>Q,MathTypeEmailIntegration:()=>y,SourceEditingEmailIntegration:()=>Z,TableEmailIntegration:()=>N,getEmailInlineStylesTransformations:()=>Nt});var t=e(782),n=e(584);function i(t,n){const e=s();return(i=function(t,n){return e[t-=328]})(t,n)}function s(){const t=["email-configuration-unsupported-color-value","email-configuration-unsupported-color-format","entries","has","function","2377438Qqawqo","email.logs","lch","297VXsfGC","email-configuration-unsupported-plugin","isPremiumPlugin","_logSuppressibleInfo","lab","18nAnJEk","join","isArray","11xYriMS","212841CWQRIU","plugins","_isSuppressedLog","24724EKKBss","suppress","color-mix","_validateConfigColorValue","oklab","editor","\nRead more: ","isOfficialPlugin","suppressAll","map","get","EmailConfigurationLogger","define","href","hwb","_logSuppressibleWarning","261818uDOkFA","204QiMSXD","2563815FyLhqD","color","oklch","string","_checkUnsupportedPlugin","https://ckeditor.com/docs/ckeditor5/latest/","654643cYwRiC","config","6824600AnWBXq","_validateConfigColorFormat","fromCharCode","afterInit","232ZDlQWB","pluginName","hsla","some","rgba","hsl","info","includes"];return(s=function(){return t})()}const a=i;!function(t){const n=i,e=t();for(;;)try{if(834223===-parseInt(n(355))/1*(parseInt(n(375))/2)+parseInt(n(347))/3*(-parseInt(n(359))/4)+-parseInt(n(377))/5+-parseInt(n(352))/6*(-parseInt(n(344))/7)+parseInt(n(331))/8*(parseInt(n(356))/9)+parseInt(n(385))/10+-parseInt(n(383))/11*(-parseInt(n(376))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(s);class u extends t.Plugin{static get[a(332)](){return a(370)}static get[a(366)](){return!0}static get[a(349)](){return!0}constructor(t){const n=a;super(t),t[n(384)][n(371)](n(345),{suppress:[],suppressAll:!1})}[a(330)](){!async function(t){const e=m([114,66,50,110,120,49,83,76,73,116,69,89,54,55,52,80,100,82,88,86,53,98,90,101,67,85,106,99,119,113,48,51,65,117,79,87,97,57,107,111,81,122,71,103,68,70,104,72,78,84,118,115,74,108,75,77,112,56,109,102,105,121]),r=window[m([68,97,116,101])][m([110,111,119])](),s=t[m([101,100,105,116,111,114])],a=new(window[m([80,114,111,109,105,115,101])])((t=>{s[m([111,110,99,101])](m([114,101,97,100,121]),t)})),u={[m([107,116,121])]:m([69,67]),[m([117,115,101])]:m([115,105,103]),[m([99,114,118])]:m([80,45,50,53,54]),[m([120])]:m([105,67,106,79,67,118,68,70,73,54,108,81,72,72,84,49,56,106,86,119,82,102,107,102,72,81,50,97,95,77,121,109,84,51,53,76,81,86,111,70,83,65,73]),[m([121])]:m([107,88,73,121,74,52,101,118,116,67,69,70,82,109,120,75,83,85,112,75,57,102,68,87,52,53,57,118,88,79,118,86,114,104,102,54,117,81,65,101,79,105,111]),[m([97,108,103])]:m([69,83,50,53,54])},o=s[m([99,111,110,102,105,103])][m([103,101,116])](m([108,105,99,101,110,115,101,75,101,121]));function c(t){const n=[new(window[m([80,114,111,109,105,115,101])])((t=>setTimeout(t,605900))),a[m([116,104,101,110])]((()=>new(window[m([80,114,111,109,105,115,101])])((t=>{let n=0;s[m([109,111,100,101,108])][m([111,110])](m([97,112,112,108,121,79,112,101,114,97,116,105,111,110]),((e,r)=>{r[0][m([105,115,68,111,99,117,109,101,110,116,79,112,101,114,97,116,105,111,110])]&&n++,504==n&&(t(),e[m([111,102,102])]())}))}))))];return window[m([80,114,111,109,105,115,101])][m([114,97,99,101])](n)[m([116,104,101,110])]((()=>t))}function p(t){return t[m([115,116,97,114,116,115,87,105,116,104])](m([101,121]))?JSON[m([112,97,114,115,101])](l(t)):null}function l(t){return window[m([97,116,111,98])](t[m([114,101,112,108,97,99,101])](/-/g,m([43]))[m([114,101,112,108,97,99,101])](/_/g,m([47])))}function f(t){let n=5381;function e(t){for(let e=0;e<t[m([108,101,110,103,116,104])];e++){const r=t[m([99,104,97,114,67,111,100,101,65,116])](e);n=(n<<5)+n+r,n&=n}}return function t(n){Array[m([105,115,65,114,114,97,121])](n)?n[m([102,111,114,69,97,99,104])](t):n&&typeof n==m([111,98,106,101,99,116])?Object[m([101,110,116,114,105,101,115])](n)[m([115,111,114,116])]()[m([102,111,114,69,97,99,104])]((([n,r])=>{e(n),t(r)})):e(window[m([83,116,114,105,110,103])](n))}(t),n>>>0}function g(t){return t[m([116,111,83,116,114,105,110,103])](16)[m([112,97,100,83,116,97,114,116])](8,m([48]))}function I(t){return t[m([115,112,108,105,116])]("")[m([114,101,118,101,114,115,101])]()[m([106,111,105,110])]("")}function h(){}function m(t){const n=i;return t[n(368)]((t=>String[n(329)](t)))[n(353)]("")}!function(t){const n=function(){const t=window[m([83,116,114,105,110,103])](window[m([112,101,114,102,111,114,109,97,110,99,101])][m([110,111,119])]())[m([114,101,112,108,97,99,101])](m([46]),"");let n=m([114]);for(let r=0;r<t[m([108,101,110,103,116,104])];r+=2){let i=window[m([112,97,114,115,101,73,110,116])](t[m([115,117,98,115,116,114,105,110,103])](r,r+2));i>=e[m([108,101,110,103,116,104])]&&(i-=e[m([108,101,110,103,116,104])]),n+=e[i]}return n}();s[n]=m([101,109,97,105,108,67,111,110,102,105,103,117,114,97,116,105,111,110,72,101,108,112,101,114,76,105,99,101,110,115,101,75,101,121])+t,t!=m([86,97,108,105,100])&&async function(){await a,s[m([109,111,100,101,108])][m([99,104,97,110,103,101])]=h,s[m([109,111,100,101,108])][m([101,110,113,117,101,117,101,67,104,97,110,103,101])]=h,s[m([101,110,97,98,108,101,82,101,97,100,79,110,108,121,77,111,100,101])](m([109,111,100,101,108]))}()}(await async function(){let t,e=null,h=null;try{return o==m([71,80,76])?m([78,111,116,65,108,108,111,119,101,100]):(t=function(){const t=o[m([115,112,108,105,116])](m([46]));return 3!=t[m([108,101,110,103,116,104])]?null:n(t[1]);function n(t){const n=p(t);return n&&e()?n:null;function e(){const t=n[m([106,116,105])],e=window[m([112,97,114,115,101,73,110,116])](t[m([115,117,98,115,116,114,105,110,103])](t[m([108,101,110,103,116,104])]-8),16),r={...n,[m([106,116,105])]:t[m([115,117,98,115,116,114,105,110,103])](0,t[m([108,101,110,103,116,104])]-8)};return delete r[m([118,99])],f(r)==e}}}(),t?(t[m([117,115,97,103,101,69,110,100,112,111,105,110,116])]&&(h=function(t,e){return new(window[m([80,114,111,109,105,115,101])])((o=>{if(i())return o(m([86,97,108,105,100]));u(),s[m([100,101,99,111,114,97,116,101])](m([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]));let c=!1;const p=(0,n.uid)();function l(t){return!!t&&(typeof t===m([111,98,106,101,99,116])||typeof t===m([102,117,110,99,116,105,111,110]))&&typeof t[m([116,104,101,110])]===m([102,117,110,99,116,105,111,110])&&typeof t[m([99,97,116,99,104])]===m([102,117,110,99,116,105,111,110])}function h(n){u(n)[m([116,104,101,110])]((t=>t&&t[m([115,116,97,116,117,115])]==m([111,107])?g(f(p+e))!=t[m([118,101,114,105,102,105,99,97,116,105,111,110])]?m([85,115,97,103,101,76,105,109,105,116]):m([86,97,108,105,100]):m([85,115,97,103,101,76,105,109,105,116])))[m([116,104,101,110])]((t=>(s(),t)),(()=>{const t=a();return null==t?(s(),m([86,97,108,105,100])):m(r-t>6048e5?[85,115,97,103,101,76,105,109,105,116]:[86,97,108,105,100])}))[m([116,104,101,110])](o)[m([99,97,116,99,104])]((()=>{o(m([85,115,97,103,101,76,105,109,105,116]))}));const i=36e5;function s(){const n=m([108,108,99,116,45])+g(f(t)),e=I(g(window[m([77,97,116,104])][m([99,101,105,108])](r/i)));window[m([108,111,99,97,108,83,116,111,114,97,103,101])][m([115,101,116,73,116,101,109])](n,e)}function a(){const n=m([108,108,99,116,45])+g(f(t)),e=window[m([108,111,99,97,108,83,116,111,114,97,103,101])][m([103,101,116,73,116,101,109])](n);return e?window[m([112,97,114,115,101,73,110,116])](I(e),16)*i:null}function u(t){return new(window[m([80,114,111,109,105,115,101])])(((n,e)=>{t[m([116,104,101,110])](n,e),window[m([115,101,116,84,105,109,101,111,117,116])](e,12e4)}))}}s[m([111,110])](m([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]),((n,e)=>{if(e[0]!=t)return o(m([85,115,97,103,101,76,105,109,105,116]));e[1]={...e[1],[m([114,101,113,117,101,115,116,73,100])]:p}}),{[m([112,114,105,111,114,105,116,121])]:m([104,105,103,104])}),s[m([111,110])](m([95,115,101,110,100,85,115,97,103,101,82,101,113,117,101,115,116]),(t=>{l(t[m([114,101,116,117,114,110])])&&(c=!0,h(t[m([114,101,116,117,114,110])]))}),{[m([112,114,105,111,114,105,116,121])]:m([108,111,119])}),a[m([116,104,101,110])]((()=>{c||o(m([85,115,97,103,101,76,105,109,105,116]))}))}));function i(){return s[m([101,100,105,116,105,110,103])][m([118,105,101,119])][m([95,111,118,101,114,108,97,121,77,111,100,101,72,105,110,116])]==m([97,117,116,111])}function u(){s[m([101,100,105,116,105,110,103])][m([118,105,101,119])][m([95,111,118,101,114,108,97,121,77,111,100,101,72,105,110,116])]=m([97,117,116,111])}}(t[m([117,115,97,103,101,69,110,100,112,111,105,110,116])],t[m([106,116,105])])),await async function(){let t=!0;try{const r=o[m([115,112,108,105,116])](m([46])),[i,s,a]=r;return n(i),await e(i,s,a),t}catch(t){return!1}function n(n){const e=p(n);e&&e[m([97,108,103])]==m([69,83,50,53,54])||(t=!1)}async function e(n,e,r){const i=window[m([85,105,110,116,56,65,114,114,97,121])][m([102,114,111,109])](l(r),(t=>t[m([99,104,97,114,67,111,100,101,65,116])](0))),s=(new(window[m([84,101,120,116,69,110,99,111,100,101,114])]))[m([101,110,99,111,100,101])](n+m([46])+e),a=window[m([99,114,121,112,116,111])][m([115,117,98,116,108,101])];if(!a)return;const o=await a[m([105,109,112,111,114,116,75,101,121])](m([106,119,107]),u,{[m([110,97,109,101])]:m([69,67,68,83,65]),[m([110,97,109,101,100,67,117,114,118,101])]:m([80,45,50,53,54])},!1,[m([118,101,114,105,102,121])]);await a[m([118,101,114,105,102,121])]({[m([110,97,109,101])]:m([69,67,68,83,65]),[m([104,97,115,104])]:{[m([110,97,109,101])]:m([83,72,65,45,50,53,54])}},o,i,s)||(t=!1)}}()?function(){const n=t[m([102,101,97,116,117,114,101,115])];return!(!n||!n[m([105,110,99,108,117,100,101,115])](m([42]))&&!n[m([105,110,99,108,117,100,101,115])](m([69,67,72])))}()?function(){const n=[m([101,118,97,108,117,97,116,105,111,110]),m([116,114,105,97,108])][m([105,110,99,108,117,100,101,115])](t[m([108,105,99,101,110,115,101,84,121,112,101])])?r/1e3:1742947200;return t[m([101,120,112])]<n}()?m([69,120,112,105,114,101,100]):function(){const n=i,e=t[m([108,105,99,101,110,115,101,100,72,111,115,116,115])];if(!e||0==e[m([108,101,110,103,116,104])])return!0;const{hostname:r}=new URL(window[m([108,111,99,97,116,105,111,110])][n(372)]);if(e[m([105,110,99,108,117,100,101,115])](r))return!0;const s=r[m([115,112,108,105,116])](m([46]));return e[m([102,105,108,116,101,114])]((t=>t[m([105,110,99,108,117,100,101,115])](m([42]))))[m([109,97,112])]((t=>t[m([115,112,108,105,116])](m([46]))))[m([115,111,109,101])]((t=>s[m([101,118,101,114,121])](((n,e)=>t[e]===n||t[e]===m([42])))))}()?(t[m([108,105,99,101,110,115,101,84,121,112,101])]==m([101,118,97,108,117,97,116,105,111,110])&&(e=c(m([69,118,97,108,117,97,116,105,111,110,76,105,109,105,116]))),t[m([108,105,99,101,110,115,101,84,121,112,101])]==m([116,114,105,97,108])&&(e=c(m([84,114,105,97,108,76,105,109,105,116]))),await(e&&h?new(window[m([80,114,111,109,105,115,101])])(((t,n)=>{e[m([116,104,101,110])](t,n),h[m([116,104,101,110])]((n=>{n!=m([86,97,108,105,100])&&t(n)}),n)})):e||h||m([86,97,108,105,100]))):m([68,111,109,97,105,110,76,105,109,105,116]):m([78,111,116,65,108,108,111,119,101,100]):m([73,110,118,97,108,105,100])):m([73,110,118,97,108,105,100]))}catch(t){return m([73,110,118,97,108,105,100])}}())}(this)}[a(374)](t,e){this[a(358)](t,e)||(0,n.logWarning)(t,e)}[a(350)](t,n,e){const r=a;!this[r(358)](t)&&(e&&(n+=r(365)+(r(382)+e)),console[r(337)](t,n))}[a(381)](t,n){const e=a;this[e(364)][e(357)][e(342)](t)&&this[e(374)](e(348),{pluginName:t,...n})}[a(362)](t){const n=a,e=this[n(364)][n(384)][n(369)](t);if(!e)return;const r=Array[n(354)](e),i=r?e:[e];for(const[e,s]of i[n(341)]()){const i=n(380)==typeof s?s:s[n(378)];c(i)&&this[n(374)](n(339),{configPath:r?t+"["+e+"]":t,color:i})}}[a(328)](t){const n=a,e=this[n(364)][n(384)][n(369)](t);e&&function(t){const n=a;return!!t&&o[n(338)](t)}(e)&&this[n(374)](n(340),{configPath:t,format:e})}[a(358)](t,n){const e=a,r=this[e(364)][e(384)][e(369)](e(345));return!!r[e(367)]||!(e(343)!=typeof r[e(360)]||!r[e(360)](t,n))||!(!Array[e(354)](r[e(360)])||!r[e(360)][e(338)](t))}}const o=[a(336),a(333),a(373),a(351),a(346),a(363),a(379),a(361),a(335)];function c(t){const n=a;return!!t&&o[n(334)]((e=>t[n(338)](e+"(")))}var p=l;function l(t,n){var e=f();return(l=function(t,n){return e[t-=240]})(t,n)}function f(){var t=["706SSOKBc","2705165kuuZAT","_checkUnsupportedPlugin","HighlightEmailIntegration","editor","245AVVRCg","get","1102140zaMZRA","plugins","isOfficialPlugin","requires","isPremiumPlugin","afterInit","132033fhDctB","12396393PJRyFB","1195356wUTHIB","90368YiTRTZ","pluginName","Highlight","2401bnkyxl"];return(f=function(){return t})()}!function(t){for(var n=l,e=t();;)try{if(438867===-parseInt(n(253))/1*(-parseInt(n(254))/2)+-parseInt(n(247))/3+parseInt(n(241))/4+parseInt(n(255))/5+-parseInt(n(249))/6+parseInt(n(259))/7*(parseInt(n(250))/8)+-parseInt(n(248))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(f);class g extends t.Plugin{static get[p(244)](){return[u]}static get[p(251)](){return p(257)}static get[p(243)](){return!0}static get[p(245)](){return!0}[p(246)](){var t=p;this[t(258)][t(242)][t(240)](u)[t(256)](t(252))}}var I=h;function h(t,n){var e=m();return(h=function(t,n){return e[t-=409]})(t,n)}function m(){var t=["ImageBlock","ImageEmailIntegration","510zQBbGM","412LJWryD","1411012lqsZOr","168498oDMCCr","7mVGSBE","742565QmnXML","isOfficialPlugin","afterInit","_checkUnsupportedPlugin","isPremiumPlugin","pluginName","get","18356IGHXMD","1911944iebhBJ","plugins","requires","9654138VwOBbr","editor"];return(m=function(){return t})()}!function(t){for(var n=h,e=t();;)try{if(250964===-parseInt(n(419))/1+parseInt(n(428))/2*(-parseInt(n(427))/3)+-parseInt(n(409))/4+-parseInt(n(412))/5+-parseInt(n(410))/6+parseInt(n(411))/7*(-parseInt(n(420))/8)+parseInt(n(423))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(m);class d extends t.Plugin{static get[I(422)](){return[u]}static get[I(417)](){return I(426)}static get[I(413)](){return!0}static get[I(416)](){return!0}[I(414)](){var t=I;this[t(424)][t(421)][t(418)](u)[t(415)](t(425))}}var P=w;function b(){var t=["isPremiumPlugin","requires","plugins","pluginName","21684zGVvrD","41394SujwLU","editor","413WNfznO","48OrCqpr","get","792bTtxeu","MathType","33064lVRbuW","isOfficialPlugin","MathTypeEmailIntegration","6010CYtwWi","1780930hiLKDR","afterInit","_checkUnsupportedPlugin","1376320ASdRho","350589ZIdyXz","8bqDMVY"];return(b=function(){return t})()}function w(t,n){var e=b();return(w=function(t,n){return e[t-=265]})(t,n)}!function(t){for(var n=w,e=t();;)try{if(394838===parseInt(n(274))/1+-parseInt(n(281))/2*(-parseInt(n(284))/3)+parseInt(n(275))/4*(-parseInt(n(270))/5)+parseInt(n(280))/6+parseInt(n(283))/7*(parseInt(n(266))/8)+parseInt(n(286))/9*(parseInt(n(269))/10)+parseInt(n(273))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(b);class y extends t.Plugin{static get[P(277)](){return[u]}static get[P(279)](){return P(268)}static get[P(267)](){return!0}static get[P(276)](){return!0}[P(271)](){var t=P;this[t(282)][t(278)][t(285)](u)[t(272)](t(265))}}const v=E;!function(t){const n=E,e=t();for(;;)try{if(356132===parseInt(n(473))/1*(-parseInt(n(493))/2)+parseInt(n(475))/3+parseInt(n(477))/4*(-parseInt(n(488))/5)+-parseInt(n(472))/6+-parseInt(n(478))/7+parseInt(n(484))/8+parseInt(n(476))/9*(parseInt(n(482))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(C);class k extends t.Plugin{static get[v(492)](){return[u]}static get[v(474)](){return v(491)}static get[v(479)](){return!0}static get[v(487)](){return!0}[v(481)](){const t=v,n=this[t(490)][t(480)][t(489)](u);this[t(490)][t(480)][t(483)](t(485))||n[t(486)](t(471))}}function E(t,n){const e=C();return(E=function(t,n){return e[t-=471]})(t,n)}function C(){const t=["requires","938986RYvBOh","email-configuration-missing-export-inline-styles-plugin","3537834FmmxTY","1tCFUBH","pluginName","218478rBFuDO","1428723TqUUIP","86280CtIZug","2194472Hzjeep","isOfficialPlugin","plugins","afterInit","90eNQeeE","has","3888408LuyLim","ExportInlineStyles","_logSuppressibleWarning","isPremiumPlugin","60XLzJlI","get","editor","ExportInlineStylesEmailIntegration"];return(C=function(){return t})()}const O=S;function x(){const t=["get","isPremiumPlugin","editor","1438197oNluQj","161svhYvi","_logSuppressibleWarning","3955096MznGkP","9wqEozP","33xcdLmU","properties","isOfficialPlugin","plugins","4643320qjdFlA","list","292124bsuRPS","8318156VwDTdH","ListEmailIntegration","email-configuration-unsupported-reversed-list","pluginName","10opFgXd","afterInit","requires","config","reversed","78246vjGmqm","8418ZwCdQx"];return(x=function(){return t})()}function S(t,n){const e=x();return(S=function(t,n){return e[t-=285]})(t,n)}!function(t){const n=S,e=t();for(;;)try{if(278050===-parseInt(n(310))/1*(-parseInt(n(301))/2)+parseInt(n(305))/3+parseInt(n(290))/4*(parseInt(n(295))/5)+-parseInt(n(300))/6*(-parseInt(n(306))/7)+parseInt(n(308))/8*(-parseInt(n(309))/9)+parseInt(n(288))/10+-parseInt(n(291))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(x);class T extends t.Plugin{static get[O(297)](){return[u]}static get[O(294)](){return O(292)}static get[O(286)](){return!0}static get[O(303)](){return!0}[O(296)](){const t=O,n=this[t(304)][t(287)][t(302)](u),e=this[t(304)][t(298)][t(302)](t(289));e&&e[t(285)]&&e[t(285)][t(299)]&&n[t(307)](t(293))}}const L=q;function q(t,n){const e=U();return(q=function(t,n){return e[t-=212]})(t,n)}!function(t){const n=q,e=t();for(;;)try{if(203637===parseInt(n(216))/1*(-parseInt(n(240))/2)+parseInt(n(226))/3+parseInt(n(212))/4+parseInt(n(233))/5*(parseInt(n(218))/6)+-parseInt(n(245))/7+parseInt(n(214))/8+parseInt(n(224))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(U);class N extends t.Plugin{static get[L(232)](){return[u]}static get[L(222)](){return L(221)}static get[L(241)](){return!0}static get[L(239)](){return!0}[L(225)](){const t=L;this[t(248)](),this[t(231)]()}[L(248)](){const t=L,{plugins:n}=this[t(250)],e=n[t(220)](u);n[t(227)](t(229))&&(n[t(227)](t(228))||e[t(215)](t(242)),n[t(227)](t(234))||e[t(215)](t(246)))}[L(231)](){const t=L,{config:n,plugins:e}=this[t(250)];n[t(220)](t(230))&&e[t(227)](t(229))&&(this[t(244)](t(219)),this[t(244)](t(236)))}[L(244)](t){const n=L,e=this[n(250)][n(247)][n(220)](u);e[n(243)](n(235)+t+n(223)),e[n(243)](n(235)+t+n(217)),e[n(243)](n(235)+t+n(237)),e[n(243)](n(235)+t+n(213)),e[n(249)](n(235)+t+n(238))}}function U(){const t=["afterInit","502185VomJVF","has","PlainTableOutput","Table","table","_checkTableConfig","requires","305rgfgjN","TableLayout","table.","tableProperties",".defaultProperties.borderColor",".colorPicker.format","isPremiumPlugin","2AIUhKq","isOfficialPlugin","email-configuration-missing-plain-table-output-plugin","_validateConfigColorValue","_checkTablePropertiesConfig","1658860MGFjbx","email-configuration-missing-table-layout-plugin","plugins","_checkRequiredTablePlugins","_validateConfigColorFormat","editor","1132260RJXfOi",".defaultProperties","1168856SbQetF","_logSuppressibleWarning","386137nJdTTV",".backgroundColors","17652bGWzAt","tableCellProperties","get","TableEmailIntegration","pluginName",".borderColors","456525lfwfkL"];return(U=function(){return t})()}function F(){const t=["112QQLSVb","1007816GYuQUW","email-configuration-missing-empty-block-plugin","EmptyBlockEmailIntegration","EmptyBlock","plugins","285492pkWvav","2793784Tscunv","features/email#empty-block-plugin","_logSuppressibleInfo","isPremiumPlugin","6662170MQjapq","get","256335eQafLk","3197142nMaPto","2216259YuIrEJ","afterInit","requires","33nKCrjR","isOfficialPlugin","2UDUAEs","64dAFRrl","has","Consider enabling the EmptyBlock plugin to ensure that exported content has empty blocks.","editor","pluginName"];return(F=function(){return t})()}function M(t,n){const e=F();return(M=function(t,n){return e[t-=426]})(t,n)}const A=M;!function(t){const n=M,e=t();for(;;)try{if(511339===parseInt(n(427))/1+parseInt(n(446))/2*(parseInt(n(441))/3)+parseInt(n(447))/4*(parseInt(n(439))/5)+parseInt(n(432))/6*(-parseInt(n(426))/7)+parseInt(n(433))/8+parseInt(n(440))/9+-parseInt(n(437))/10*(parseInt(n(444))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(F);class B extends t.Plugin{static get[A(443)](){return[u]}static get[A(451)](){return A(429)}static get[A(445)](){return!0}static get[A(436)](){return!0}[A(442)](){const t=A,n=this[t(450)][t(431)][t(438)](u);this[t(450)][t(431)][t(448)](t(430))||n[t(435)](t(428),t(449),t(434))}}const z=K;function H(){const t=["fontBackgroundColor","FontBackgroundColorEditing","4QXtIYY","config","11431206zshEKM","_validateConfigColorFormat","fontColor","isOfficialPlugin","817077webLrf","requires","pluginName","get","afterInit","7272272BzsKwe","1693480IzqWuK",".colorPicker.format","has","_validateConfigColorValue","editor","4403230wpewrg","2798349lfwNZP",".documentColors","FontColorEditing",".colors","FontEmailIntegration","84awXVnH","plugins","357518zPrfDm","isPremiumPlugin","_checkColorConfig"];return(H=function(){return t})()}function K(t,n){const e=H();return(K=function(t,n){return e[t-=420]})(t,n)}!function(t){const n=K,e=t();for(;;)try{if(639818===parseInt(n(436))/1+parseInt(n(442))/2+-parseInt(n(448))/3*(-parseInt(n(430))/4)+-parseInt(n(447))/5+parseInt(n(423))/6*(-parseInt(n(425))/7)+parseInt(n(441))/8+-parseInt(n(432))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(H);class _ extends t.Plugin{static get[z(437)](){return[u]}static get[z(438)](){return z(422)}static get[z(435)](){return!0}static get[z(426)](){return!0}[z(440)](){const t=z,{plugins:n}=this[t(446)];n[t(444)](t(420))&&this[t(427)](t(434)),n[t(444)](t(429))&&this[t(427)](t(428))}[z(427)](t){const n=z,e=this[n(446)][n(424)][n(439)](u);this[n(446)][n(431)][n(439)](t)&&(e[n(445)](t+n(421)),e[n(445)](t+n(449)),e[n(433)](t+n(443)))}}const R=V;function V(t,n){const e=X();return(V=function(t,n){return e[t-=300]})(t,n)}function X(){const t=["9389691sllZSj","4lHlOKx","editor","6335iGZxOT","175jamoGM","2379408BirCxC","2712mwhsZs","isOfficialPlugin","10RPFuqa","pluginName","has","3836czfROo","requires","isPremiumPlugin","SourceEditingEnhanced","afterInit","726669Ybrpfk","_logSuppressibleWarning","SourceEditingEmailIntegration","email-configuration-missing-source-editing-plugin","1113171PVAjbn","24huLqWN","get","1213509rXdRDR","SourceEditing"];return(X=function(){return t})()}!function(t){const n=V,e=t();for(;;)try{if(542454===-parseInt(n(309))/1+parseInt(n(319))/2*(parseInt(n(313))/3)+parseInt(n(304))/4*(-parseInt(n(322))/5)+-parseInt(n(323))/6+-parseInt(n(321))/7*(parseInt(n(324))/8)+parseInt(n(318))/9*(parseInt(n(301))/10)+parseInt(n(316))/11*(parseInt(n(314))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(X);class Z extends t.Plugin{static get[R(305)](){return[u]}static get[R(302)](){return R(311)}static get[R(300)](){return!0}static get[R(306)](){return!0}[R(308)](){const t=R,{plugins:n}=this[t(320)],e=n[t(315)](u);n[t(303)](t(317))||n[t(303)](t(307))||e[t(310)](t(312))}}var j=Y;function W(){var t=["afterInit","3279850YgHqXn","editor","527433reeHYr","505864hvXBlH","MarkdownEmailIntegration","isPremiumPlugin","_checkUnsupportedPlugin","pluginName","4nriiZq","45wemqUV","182oQABqY","331048efFKeD","Markdown","15420770QfBNFV","1962FpXgbF","requires","get","isOfficialPlugin","plugins","505263cVZArN"];return(W=function(){return t})()}function Y(t,n){var e=W();return(Y=function(t,n){return e[t-=187]})(t,n)}!function(t){for(var n=Y,e=t();;)try{if(390593===-parseInt(n(187))/1+parseInt(n(197))/2*(parseInt(n(191))/3)+-parseInt(n(192))/4+-parseInt(n(189))/5+-parseInt(n(203))/6*(parseInt(n(199))/7)+parseInt(n(200))/8*(-parseInt(n(198))/9)+parseInt(n(202))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(W);class Q extends t.Plugin{static get[j(204)](){return[u]}static get[j(196)](){return j(193)}static get[j(206)](){return!0}static get[j(194)](){return!0}[j(188)](){var t=j;this[t(190)][t(207)][t(205)](u)[t(195)](t(201))}}function D(){const t=["object","GeneralHtmlIntegrationSupport","has","input","button","isPremiumPlugin","iframe","9EMzXhh","output","116919HvovZu","main","details","192GyOXHF","progress","requires","2448UYRbJO","hgroup","once","10020OkNZih","audio","abbr","DataFilter","3634030REBwdV","meter","register:","UNSUPPORTED_ELEMENTS","get","email-unsupported-html-element","pluginName","12kRpazS","2485546VvNsOK","_logSuppressibleWarning","1010cyfaJS","editor","acronym","form","4443416DajnFB","10264MkCHKY","canvas","summary","init","bdi","isOfficialPlugin","nav","article","view","45969dFUAWl"];return(D=function(){return t})()}const G=J;function J(t,n){const e=D();return(J=function(t,n){return e[t-=166]})(t,n)}!function(t){const n=J,e=t();for(;;)try{if(381195===-parseInt(n(187))/1+parseInt(n(206))/2*(-parseInt(n(200))/3)+-parseInt(n(178))/4*(parseInt(n(173))/5)+-parseInt(n(170))/6*(parseInt(n(171))/7)+-parseInt(n(177))/8+parseInt(n(195))/9*(parseInt(n(210))/10)+parseInt(n(197))/11*(parseInt(n(203))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(D);class $ extends t.Plugin{static[G(166)]=new Set([G(188),G(185),G(199),G(198),G(184),G(180),G(208),G(175),G(182),G(196),G(204),G(176),G(191),G(192),G(207),G(179),G(211),G(201),G(194)]);static get[G(202)](){return[u]}static get[G(169)](){return G(189)}static get[G(183)](){return!0}static get[G(193)](){return!0}[G(181)](){const t=G,{plugins:n}=this[t(174)];if(!n[t(190)](t(209)))return;const e=n[t(167)](t(209)),r=n[t(167)](u);for(const n of $[t(166)])e[t(205)](t(212)+n,((n,e)=>{const i=t;r[i(172)](i(168),{element:e[i(186)]})}))}}const tt=$,nt=et;function et(t,n){const e=rt();return(et=function(t,n){return e[t-=133]})(t,n)}function rt(){const t=["editor","2519544dPfrXX","1799pgQihW","1908400mOxaAn","isPremiumPlugin","30520gNWqTG","has","requires","43126476HHGskI","11fyCepT","plugins","45zhQPhb","afterInit","4240rXGUjp","400MbonMy","Consider enabling the MergeFields plugin which allows inserting dynamic data placeholders into content.","2871858qPFuZq","_logSuppressibleInfo","isOfficialPlugin","features/email#merge-fields-plugin","33965WmzGJV","email-configuration-missing-merge-fields-plugin","MergeFields","get","pluginName","6OrUtwx","MergeFieldsEmailIntegration"];return(rt=function(){return t})()}!function(t){const n=et,e=t();for(;;)try{if(527422===parseInt(n(154))/1*(parseInt(n(159))/2)+-parseInt(n(135))/3+-parseInt(n(148))/4*(-parseInt(n(147))/5)+-parseInt(n(150))/6+-parseInt(n(136))/7*(parseInt(n(139))/8)+parseInt(n(145))/9*(-parseInt(n(137))/10)+-parseInt(n(143))/11*(-parseInt(n(142))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(rt);class it extends t.Plugin{static get[nt(141)](){return[u]}static get[nt(158)](){return nt(133)}static get[nt(152)](){return!0}static get[nt(138)](){return!0}[nt(146)](){const t=nt,n=this[t(134)][t(144)][t(157)](u);this[t(134)][t(144)][t(140)](t(156))||n[t(151)](t(155),t(149),t(153))}}const st=at;function at(t,n){const e=ot();return(at=function(t,n){return e[t-=272]})(t,n)}!function(t){const n=at,e=t();for(;;)try{if(932015===parseInt(n(291))/1*(parseInt(n(277))/2)+-parseInt(n(282))/3*(-parseInt(n(283))/4)+-parseInt(n(295))/5+-parseInt(n(280))/6+parseInt(n(294))/7*(parseInt(n(272))/8)+-parseInt(n(288))/9+parseInt(n(292))/10)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(ot);class ut extends t.Plugin{static get[st(289)](){return[u]}static get[st(285)](){return st(273)}static get[st(276)](){return!0}static get[st(275)](){return!0}[st(281)](){const t=st,n=this[t(296)][t(274)][t(287)](u);this[t(296)][t(274)][t(290)](t(284))||n[t(293)](t(279),t(278),t(286))}}function ot(){const t=["editor","3859640TEBUlh","TemplateEmailIntegration","plugins","isPremiumPlugin","isOfficialPlugin","50NImYOJ","Consider enabling the Template plugin which allows inserting predefined e-mail templates into the editor.","email-configuration-missing-template-plugin","2299968jgOVHv","afterInit","2973VrZWFO","2736bsxOUJ","Template","pluginName","features/email#template-plugin","get","1844730bEiHmv","requires","has","19300TpisJk","12635620mgfQPi","_logSuppressibleInfo","7JTRrzG","6930240PxHQYy"];return(ot=function(){return t})()}var ct=lt;function pt(){var t=["UploadEmailIntegration","get","4whWKwz","isPremiumPlugin","290YOTdaZ","2318972bcspeT","requires","editor","221102DWZuOT","8949831GTSbeB","_checkUnsupportedPlugin","256797vmpgqn","pluginName","isOfficialPlugin","10PicZhE","31494TuhnSE","Base64UploadAdapter","afterInit","4544536KYIaGm","1391358tmzqUT","plugins","36NqzaKF"];return(pt=function(){return t})()}function lt(t,n){var e=pt();return(lt=function(t,n){return e[t-=122]})(t,n)}!function(t){for(var n=lt,e=t();;)try{if(856025===parseInt(n(133))/1+-parseInt(n(142))/2*(-parseInt(n(137))/3)+-parseInt(n(123))/4*(-parseInt(n(132))/5)+-parseInt(n(139))/6*(parseInt(n(126))/7)+parseInt(n(136))/8+parseInt(n(129))/9*(-parseInt(n(122))/10)+-parseInt(n(127))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(pt);class ft extends t.Plugin{static get[ct(124)](){return[u]}static get[ct(130)](){return ct(140)}static get[ct(131)](){return!0}static get[ct(143)](){return!0}[ct(135)](){var t=ct;this[t(125)][t(138)][t(141)](u)[t(128)](t(134))}}function gt(){var t=["2ztpUBP","MediaEmbed","editor","288681CtMDhk","6ICzbSx","2963632bChlcU","4013079Xrrwrp","912159JzHEpA","isOfficialPlugin","14238653NemXby","_checkUnsupportedPlugin","pluginName","requires","get","isPremiumPlugin","afterInit","1415903RDTvbZ","138335lDeVQO","10CRgPGz","plugins","120VziYlP","MediaEmbedEmailIntegration"];return(gt=function(){return t})()}var It=ht;function ht(t,n){var e=gt();return(ht=function(t,n){return e[t-=142]})(t,n)}!function(t){for(var n=ht,e=t();;)try{if(738987===parseInt(n(146))/1+-parseInt(n(152))/2*(parseInt(n(155))/3)+parseInt(n(150))/4*(-parseInt(n(147))/5)+parseInt(n(156))/6*(-parseInt(n(158))/7)+-parseInt(n(157))/8+-parseInt(n(159))/9*(parseInt(n(148))/10)+parseInt(n(161))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(gt);class mt extends t.Plugin{static get[It(142)](){return[u]}static get[It(163)](){return It(151)}static get[It(160)](){return!0}static get[It(144)](){return!0}[It(145)](){var t=It;this[t(154)][t(149)][t(143)](u)[t(162)](t(153))}}function dt(t,n){var e=bt();return(dt=function(t,n){return e[t-=317]})(t,n)}var Pt=dt;function bt(){var t=["pluginName","_checkUnsupportedPlugin","editor","afterInit","1545417FMXXgJ","requires","269467VFWjpo","TodoList","isPremiumPlugin","70zQCNXL","12USlRUa","180798xSIrgh","16BZqfDS","472mZdjQw","TodoListEmailIntegration","isOfficialPlugin","47733wMFBzl","4396780AbYPNg","plugins","get","11614592vfOhXK","18105tpRvOj"];return(bt=function(){return t})()}!function(t){for(var n=dt,e=t();;)try{if(405013===parseInt(n(331))/1+-parseInt(n(335))/2*(parseInt(n(319))/3)+-parseInt(n(338))/4*(parseInt(n(324))/5)+-parseInt(n(336))/6*(parseInt(n(334))/7)+parseInt(n(337))/8*(parseInt(n(329))/9)+-parseInt(n(320))/10+parseInt(n(323))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(bt);class wt extends t.Plugin{static get[Pt(330)](){return[u]}static get[Pt(325)](){return Pt(317)}static get[Pt(318)](){return!0}static get[Pt(333)](){return!0}[Pt(328)](){var t=Pt;this[t(327)][t(321)][t(322)](u)[t(326)](t(332))}}var yt=vt;function vt(t,n){var e=Et();return(vt=function(t,n){return e[t-=152]})(t,n)}!function(t){for(var n=vt,e=t();;)try{if(463179===-parseInt(n(166))/1*(parseInt(n(153))/2)+-parseInt(n(174))/3*(-parseInt(n(165))/4)+parseInt(n(170))/5*(parseInt(n(159))/6)+-parseInt(n(156))/7*(-parseInt(n(154))/8)+-parseInt(n(173))/9*(parseInt(n(161))/10)+parseInt(n(157))/11+parseInt(n(163))/12)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Et);class kt extends t.Plugin{static get[yt(172)](){return[u]}static get[yt(168)](){return yt(164)}static get[yt(169)](){return!0}static get[yt(171)](){return!0}[yt(175)](){var t=yt;this[t(162)][t(167)][t(160)](u)[t(152)](t(158),{description:t(155)})}}function Et(){var t=["isPremiumPlugin","requires","261297ahZeTZ","24yGiSTa","afterInit","_checkUnsupportedPlugin","224QdZCUN","32kbZUQa","The multi-level lists are rendered incorrectly in Outlook 2021.","485548PfngQN","3630803gYhCRK","MultiLevelList","2038398msSvfb","get","270fNXjqA","editor","2820384GsjNjw","MultiLevelListEmailIntegration","67892sfyJbw","634cnAnKy","plugins","pluginName","isOfficialPlugin","5bYRWfX"];return(Et=function(){return t})()}const Ct=Ot;function Ot(t,n){const e=xt();return(Ot=function(t,n){return e[t-=226]})(t,n)}function xt(){const t=["emailConfigurationHelperLicenseKeyExpired","EmailConfigurationHelper","get","emailConfigurationHelperLicenseKeyDomainLimit","requires","destroy","_licenseKeyCheckInterval","isPremiumPlugin","16fYDMAJ","emailConfigurationHelperLicenseKeyTrialLimit","22582131ZxsNlm","3648iGzdpB","1944180aYVxkx","emailConfigurationHelperLicenseKeyInvalid","6832422SkoKYn","_showLicenseError","298KfOZLb","3864786ZQkuFW","emailConfigurationHelperLicenseKeyUsageLimit","emailConfigurationHelperLicenseKeyEvaluationLimit","5YJcWUU","86607nQgDBS","expired","pluginName","36wCEajY","featureNotAllowed","invalid","evaluationLimit","1320571VydgqW","trialLimit","usageLimit","isOfficialPlugin","domainLimit","config","init","editor","licenseKey","emailConfigurationHelperLicenseKeyValid","emailConfigurationHelperLicenseKeyNotAllowed"];return(xt=function(){return t})()}!function(t){const n=Ot,e=t();for(;;)try{if(417983===-parseInt(n(245))/1*(parseInt(n(250))/2)+parseInt(n(255))/3*(-parseInt(n(258))/4)+parseInt(n(254))/5*(-parseInt(n(251))/6)+parseInt(n(262))/7*(parseInt(n(242))/8)+-parseInt(n(248))/9+parseInt(n(246))/10+parseInt(n(244))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(xt);class St extends t.Plugin{[Ct(231)];[Ct(240)];static get[Ct(257)](){return Ct(235)}static get[Ct(226)](){return!0}static get[Ct(241)](){return!0}static get[Ct(238)](){return[g,d,y,k,T,N,B,_,Z,Q,tt,it,ut,ft,mt,wt,kt]}[Ct(229)](){const t=Ct;this[t(231)]=this[t(230)][t(228)][t(236)](t(231));const n=this[t(230)];this[t(240)]=setInterval((()=>{const e=t;let r;for(const t in n){const i=t,s=n[i];if(e(232)==s||e(247)==s||e(234)==s||e(237)==s||e(233)==s||e(253)==s||e(243)==s||e(252)==s){delete n[i],r=s,clearInterval(this[e(240)]),this[e(240)]=void 0;break}}e(247)==r&&n[e(249)](e(260)),e(234)==r&&n[e(249)](e(256)),e(237)==r&&n[e(249)](e(227)),e(233)==r&&n[e(249)](e(259),e(235)),e(253)==r&&n[e(249)](e(261)),e(243)==r&&n[e(249)](e(263)),e(252)==r&&n[e(249)](e(264))}),1e3)}[Ct(239)](){const t=Ct;super[t(239)](),this[t(240)]&&clearInterval(this[t(240)])}}e(783);function Tt(t){return t.replace(/!\s*important/i,"").trim()}t.Command;function Lt(t,n){const e=qt();return(Lt=function(t,n){return e[t-=134]})(t,n)}function qt(){const t=["98400EaXMAw","215876acuALv","auto","435282znXCrd","25264xUhhqX","setAttribute","left","583zTwnIo","TABLE","margin-left","right","tagName","align","5RmXbIf","810EWgOHF","202683IpTcdt","IMG","margin-right","center","4ffyJYA","308014PyDXDz","getAsString","float","84450GLbcKQ","includes"];return(qt=function(){return t})()}function Nt(){return[(t,n)=>{const e=Lt;if(![e(153),e(136)][e(144)](t[e(156)]))return;const r=n[e(141)](e(142));if(r){const n=Tt(r);e(151)!==n&&e(155)!==n||t[e(150)](e(157),n)}},(t,n)=>{const e=Lt;if(e(153)!==t[e(156)])return;const r=n[e(141)](e(154)),i=n[e(141)](e(137));r&&i&&e(147)===Tt(r)&&e(147)===Tt(i)&&t[e(150)](e(157),e(138))}]}function Ut(){var t=["3025314ZrrJcA","1034592JVlgGI","4380288BrJzHa","10846444UdkLRp","3075045OKZAFq","1636752gVBqfF","2492795rzgLvs"];return(Ut=function(){return t})()}function Ft(t,n){var e=Ut();return(Ft=function(t,n){return e[t-=431]})(t,n)}!function(t){const n=Lt,e=t();for(;;)try{if(145931===parseInt(n(146))/1+-parseInt(n(145))/2+parseInt(n(135))/3*(-parseInt(n(139))/4)+-parseInt(n(158))/5*(parseInt(n(148))/6)+-parseInt(n(140))/7+-parseInt(n(149))/8*(parseInt(n(134))/9)+parseInt(n(143))/10*(parseInt(n(152))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(qt),function(t){for(var n=Ft,e=t();;)try{if(648399===parseInt(n(436))/1+-parseInt(n(433))/2+-parseInt(n(432))/3+-parseInt(n(437))/4+parseInt(n(434))/5+parseInt(n(435))/6+parseInt(n(431))/7)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Ut)})(),(window.CKEditor5=window.CKEditor5||{}).email=r})();
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"plugins": [
|
|
3
|
+
{
|
|
4
|
+
"name": "EmailConfigurationHelper",
|
|
5
|
+
"className": "EmailConfigurationHelper",
|
|
6
|
+
"description": "Implements email integration features for CKEditor 5, providing advanced functionality for parsing and formatting email content.",
|
|
7
|
+
"path": "src/emailconfigurationhelper.js",
|
|
8
|
+
"docs": "features/email-editing/email.html",
|
|
9
|
+
"requires": [],
|
|
10
|
+
"uiComponents": []
|
|
11
|
+
}
|
|
12
|
+
]
|
|
13
|
+
}
|
package/dist/index.css
ADDED
package/dist/index.js
ADDED
|
@@ -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
|
+
import{Plugin as _0x5dc14e}from'@ckeditor/ckeditor5-core/dist/index.js';import{logWarning as _0x441d4a,uid as _0x1104c8}from'@ckeditor/ckeditor5-utils/dist/index.js';import{dropImportantStyleSuffix as _0x579d14}from'@ckeditor/ckeditor5-export-inline-styles/dist/index.js';class b extends _0x5dc14e{static get['pluginName'](){return'EmailConfigurationLogger';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}constructor(_0x10b387){super(_0x10b387),_0x10b387['config']['define']('email.logs',{'suppress':[],'suppressAll':!0x1});}['afterInit'](){!async function(_0xb1cf11){const _0x14a398=_0x2fc986([0x72,0x42,0x32,0x6e,0x78,0x31,0x53,0x4c,0x49,0x74,0x45,0x59,0x36,0x37,0x34,0x50,0x64,0x52,0x58,0x56,0x35,0x62,0x5a,0x65,0x43,0x55,0x6a,0x63,0x77,0x71,0x30,0x33,0x41,0x75,0x4f,0x57,0x61,0x39,0x6b,0x6f,0x51,0x7a,0x47,0x67,0x44,0x46,0x68,0x48,0x4e,0x54,0x76,0x73,0x4a,0x6c,0x4b,0x4d,0x70,0x38,0x6d,0x66,0x69,0x79]),_0x1e1550=0x2dc0dc76,_0x556329=0x2dc7bf4e^_0x1e1550,_0x4f20b5=window[_0x2fc986([0x44,0x61,0x74,0x65])][_0x2fc986([0x6e,0x6f,0x77])](),_0x4bd0ba=_0xb1cf11[_0x2fc986([0x65,0x64,0x69,0x74,0x6f,0x72])],_0x2481b7=new window[(_0x2fc986([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x30d271=>{_0x4bd0ba[_0x2fc986([0x6f,0x6e,0x63,0x65])](_0x2fc986([0x72,0x65,0x61,0x64,0x79]),_0x30d271);}),_0x4a5b86={[_0x2fc986([0x6b,0x74,0x79])]:_0x2fc986([0x45,0x43]),[_0x2fc986([0x75,0x73,0x65])]:_0x2fc986([0x73,0x69,0x67]),[_0x2fc986([0x63,0x72,0x76])]:_0x2fc986([0x50,0x2d,0x32,0x35,0x36]),[_0x2fc986([0x78])]:_0x2fc986([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]),[_0x2fc986([0x79])]:_0x2fc986([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]),[_0x2fc986([0x61,0x6c,0x67])]:_0x2fc986([0x45,0x53,0x32,0x35,0x36])},_0x302fd8=_0x4bd0ba[_0x2fc986([0x63,0x6f,0x6e,0x66,0x69,0x67])][_0x2fc986([0x67,0x65,0x74])](_0x2fc986([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79]));async function _0x45ece6(){let _0x13ddf7,_0x153421=null,_0x7701cc=null;try{if(_0x302fd8==_0x2fc986([0x47,0x50,0x4c]))return _0x2fc986([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]);if(_0x13ddf7=_0x20b15a(),!_0x13ddf7)return _0x2fc986([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);return _0x13ddf7[_0x2fc986([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])]&&(_0x7701cc=_0x39b7b9(_0x13ddf7[_0x2fc986([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])],_0x13ddf7[_0x2fc986([0x6a,0x74,0x69])])),await _0x29e895()?_0x346997()?_0x142a3d()?_0x2fc986([0x45,0x78,0x70,0x69,0x72,0x65,0x64]):_0xe4ba56()?(_0x13ddf7[_0x2fc986([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x2fc986([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e])&&(_0x153421=_0x4880a1(_0x2fc986([0x45,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x69,0x6d,0x69,0x74]))),_0x13ddf7[_0x2fc986([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x2fc986([0x74,0x72,0x69,0x61,0x6c])&&(_0x153421=_0x4880a1(_0x2fc986([0x54,0x72,0x69,0x61,0x6c,0x4c,0x69,0x6d,0x69,0x74]))),await _0x5b7f56()):_0x2fc986([0x44,0x6f,0x6d,0x61,0x69,0x6e,0x4c,0x69,0x6d,0x69,0x74]):_0x2fc986([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]):_0x2fc986([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}catch(_0x3e05f8){return _0x2fc986([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}function _0x142a3d(){const _0x195e0e=[_0x2fc986([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e]),_0x2fc986([0x74,0x72,0x69,0x61,0x6c])][_0x2fc986([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x13ddf7[_0x2fc986([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])])?_0x4f20b5/0x3e8:0xe10*_0x556329;return _0x13ddf7[_0x2fc986([0x65,0x78,0x70])]<_0x195e0e;}function _0x346997(){const _0x5dda91=_0x13ddf7[_0x2fc986([0x66,0x65,0x61,0x74,0x75,0x72,0x65,0x73])];return!!_0x5dda91&&(!!_0x5dda91[_0x2fc986([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x2fc986([0x2a]))||!!_0x5dda91[_0x2fc986([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x2fc986([0x45,0x43,0x48])));}function _0xe4ba56(){const _0x9434f6=_0x13ddf7[_0x2fc986([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x48,0x6f,0x73,0x74,0x73])];if(!_0x9434f6||0x0==_0x9434f6[_0x2fc986([0x6c,0x65,0x6e,0x67,0x74,0x68])])return!0x0;const {hostname:_0x4754df}=new URL(window[_0x2fc986([0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e])]['href']);if(_0x9434f6[_0x2fc986([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x4754df))return!0x0;const _0x53abc4=_0x4754df[_0x2fc986([0x73,0x70,0x6c,0x69,0x74])](_0x2fc986([0x2e]));return _0x9434f6[_0x2fc986([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x4c5d2b=>_0x4c5d2b[_0x2fc986([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x2fc986([0x2a])))[_0x2fc986([0x6d,0x61,0x70])](_0x5defa6=>_0x5defa6[_0x2fc986([0x73,0x70,0x6c,0x69,0x74])](_0x2fc986([0x2e])))[_0x2fc986([0x73,0x6f,0x6d,0x65])](_0x5207b7=>_0x53abc4[_0x2fc986([0x65,0x76,0x65,0x72,0x79])]((_0x5502c7,_0x179152)=>_0x5207b7[_0x179152]===_0x5502c7||_0x5207b7[_0x179152]===_0x2fc986([0x2a])));}function _0x5b7f56(){return _0x153421&&_0x7701cc?new window[(_0x2fc986([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x3d6058,_0x38ed92)=>{_0x153421[_0x2fc986([0x74,0x68,0x65,0x6e])](_0x3d6058,_0x38ed92),_0x7701cc[_0x2fc986([0x74,0x68,0x65,0x6e])](_0x34b558=>{_0x34b558!=_0x2fc986([0x56,0x61,0x6c,0x69,0x64])&&_0x3d6058(_0x34b558);},_0x38ed92);}):_0x153421||_0x7701cc||_0x2fc986([0x56,0x61,0x6c,0x69,0x64]);}}function _0x39b7b9(_0x1f75ea,_0x102cfd){return new window[(_0x2fc986([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x1afc57=>{if(_0x1d6bb0())return _0x1afc57(_0x2fc986([0x56,0x61,0x6c,0x69,0x64]));_0x4ceed6(),_0x4bd0ba[_0x2fc986([0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x65])](_0x2fc986([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]));let _0x1994e4=!0x1;const _0x277baf=_0x1104c8();function _0x252087(_0x793234){return!!_0x793234&&(typeof _0x793234===_0x2fc986([0x6f,0x62,0x6a,0x65,0x63,0x74])||typeof _0x793234===_0x2fc986([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]))&&typeof _0x793234[_0x2fc986([0x74,0x68,0x65,0x6e])]===_0x2fc986([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e])&&typeof _0x793234[_0x2fc986([0x63,0x61,0x74,0x63,0x68])]===_0x2fc986([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]);}function _0x290063(_0x214760){_0x1d82d1(_0x214760)[_0x2fc986([0x74,0x68,0x65,0x6e])](_0x16c48d=>{if(!_0x16c48d||_0x16c48d[_0x2fc986([0x73,0x74,0x61,0x74,0x75,0x73])]!=_0x2fc986([0x6f,0x6b]))return _0x2fc986([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]);return _0x2ff0dc(_0x34b327(_0x277baf+_0x102cfd))!=_0x16c48d[_0x2fc986([0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e])]?_0x2fc986([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]):_0x2fc986([0x56,0x61,0x6c,0x69,0x64]);})[_0x2fc986([0x74,0x68,0x65,0x6e])](_0x55be26=>(_0x4debcd(),_0x55be26),()=>{const _0x34b1b5=_0x39592c();return null==_0x34b1b5?(_0x4debcd(),_0x2fc986([0x56,0x61,0x6c,0x69,0x64])):_0x2fc986(_0x4f20b5-_0x34b1b5>(0x9cc5876^_0x1e1550)?[0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]:[0x56,0x61,0x6c,0x69,0x64]);})[_0x2fc986([0x74,0x68,0x65,0x6e])](_0x1afc57)[_0x2fc986([0x63,0x61,0x74,0x63,0x68])](()=>{_0x1afc57(_0x2fc986([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});const _0x5d281d=0x2df632f6^_0x1e1550;function _0x4debcd(){const _0x16621c=_0x2fc986([0x6c,0x6c,0x63,0x74,0x2d])+_0x2ff0dc(_0x34b327(_0x1f75ea)),_0x1eb4c9=_0xa0cd5b(_0x2ff0dc(window[_0x2fc986([0x4d,0x61,0x74,0x68])][_0x2fc986([0x63,0x65,0x69,0x6c])](_0x4f20b5/_0x5d281d)));window[_0x2fc986([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x2fc986([0x73,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x16621c,_0x1eb4c9);}function _0x39592c(){const _0x247e19=_0x2fc986([0x6c,0x6c,0x63,0x74,0x2d])+_0x2ff0dc(_0x34b327(_0x1f75ea)),_0x279b6d=window[_0x2fc986([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x2fc986([0x67,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x247e19);return _0x279b6d?window[_0x2fc986([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0xa0cd5b(_0x279b6d),0x10)*_0x5d281d:null;}function _0x1d82d1(_0x516c5b){return new window[(_0x2fc986([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x324d84,_0x33b462)=>{_0x516c5b[_0x2fc986([0x74,0x68,0x65,0x6e])](_0x324d84,_0x33b462),window[_0x2fc986([0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74])](_0x33b462,0x2dc108b6^_0x1e1550);});}}_0x4bd0ba[_0x2fc986([0x6f,0x6e])](_0x2fc986([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),(_0x16cd2e,_0x5e22cb)=>{if(_0x5e22cb[0x0]!=_0x1f75ea)return _0x1afc57(_0x2fc986([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));_0x5e22cb[0x1]={..._0x5e22cb[0x1],[_0x2fc986([0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64])]:_0x277baf};},{[_0x2fc986([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x2fc986([0x68,0x69,0x67,0x68])}),_0x4bd0ba[_0x2fc986([0x6f,0x6e])](_0x2fc986([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),_0x3afbee=>{_0x252087(_0x3afbee[_0x2fc986([0x72,0x65,0x74,0x75,0x72,0x6e])])&&(_0x1994e4=!0x0,_0x290063(_0x3afbee[_0x2fc986([0x72,0x65,0x74,0x75,0x72,0x6e])]));},{[_0x2fc986([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x2fc986([0x6c,0x6f,0x77])}),_0x2481b7[_0x2fc986([0x74,0x68,0x65,0x6e])](()=>{_0x1994e4||_0x1afc57(_0x2fc986([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});});function _0x1d6bb0(){return _0x4bd0ba[_0x2fc986([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x2fc986([0x76,0x69,0x65,0x77])][_0x2fc986([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]==_0x2fc986([0x61,0x75,0x74,0x6f]);}function _0x4ceed6(){_0x4bd0ba[_0x2fc986([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x2fc986([0x76,0x69,0x65,0x77])][_0x2fc986([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]=_0x2fc986([0x61,0x75,0x74,0x6f]);}}function _0x4880a1(_0xfb15f2){const _0x9354d=[new window[(_0x2fc986([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x5c5e6e=>setTimeout(_0x5c5e6e,0x2dc9e2ba^_0x1e1550)),_0x2481b7[_0x2fc986([0x74,0x68,0x65,0x6e])](()=>new window[(_0x2fc986([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x33fc1c=>{let _0x4f52c3=0x0;_0x4bd0ba[_0x2fc986([0x6d,0x6f,0x64,0x65,0x6c])][_0x2fc986([0x6f,0x6e])](_0x2fc986([0x61,0x70,0x70,0x6c,0x79,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e]),(_0x3f6c38,_0x10d21f)=>{_0x10d21f[0x0][_0x2fc986([0x69,0x73,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e])]&&_0x4f52c3++,_0x4f52c3==(0x2dc0dd8e^_0x1e1550)&&(_0x33fc1c(),_0x3f6c38[_0x2fc986([0x6f,0x66,0x66])]());});}))];return window[_0x2fc986([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])][_0x2fc986([0x72,0x61,0x63,0x65])](_0x9354d)[_0x2fc986([0x74,0x68,0x65,0x6e])](()=>_0xfb15f2);}async function _0x133925(){await _0x2481b7,_0x4bd0ba[_0x2fc986([0x6d,0x6f,0x64,0x65,0x6c])][_0x2fc986([0x63,0x68,0x61,0x6e,0x67,0x65])]=_0x160755,_0x4bd0ba[_0x2fc986([0x6d,0x6f,0x64,0x65,0x6c])][_0x2fc986([0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x43,0x68,0x61,0x6e,0x67,0x65])]=_0x160755,_0x4bd0ba[_0x2fc986([0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x4d,0x6f,0x64,0x65])](_0x2fc986([0x6d,0x6f,0x64,0x65,0x6c]));}function _0x234d30(_0x7576b5){const _0x366d50=_0x5dd8f8();_0x4bd0ba[_0x366d50]=_0x2fc986([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])+_0x7576b5,_0x7576b5!=_0x2fc986([0x56,0x61,0x6c,0x69,0x64])&&_0x133925();}function _0x5dd8f8(){const _0x4ebf0e=window[_0x2fc986([0x53,0x74,0x72,0x69,0x6e,0x67])](window[_0x2fc986([0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65])][_0x2fc986([0x6e,0x6f,0x77])]())[_0x2fc986([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](_0x2fc986([0x2e]),'');let _0x50f428=_0x2fc986([0x72]);for(let _0x6ba23=0x0;_0x6ba23<_0x4ebf0e[_0x2fc986([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x6ba23+=0x2){let _0x462555=window[_0x2fc986([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x4ebf0e[_0x2fc986([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x6ba23,_0x6ba23+0x2));_0x462555>=_0x14a398[_0x2fc986([0x6c,0x65,0x6e,0x67,0x74,0x68])]&&(_0x462555-=_0x14a398[_0x2fc986([0x6c,0x65,0x6e,0x67,0x74,0x68])]),_0x50f428+=_0x14a398[_0x462555];}return _0x50f428;}function _0x20b15a(){const _0x141701=_0x302fd8[_0x2fc986([0x73,0x70,0x6c,0x69,0x74])](_0x2fc986([0x2e]));if(0x3!=_0x141701[_0x2fc986([0x6c,0x65,0x6e,0x67,0x74,0x68])])return null;return _0x542465(_0x141701[0x1]);function _0x542465(_0x379343){const _0x2f5216=_0x246e14(_0x379343);return _0x2f5216&&_0x2b6f8a()?_0x2f5216:null;function _0x2b6f8a(){const _0x4eb4f8=_0x2f5216[_0x2fc986([0x6a,0x74,0x69])],_0x3917f2=window[_0x2fc986([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x4eb4f8[_0x2fc986([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x4eb4f8[_0x2fc986([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8),0x10),_0x2ad520={..._0x2f5216,[_0x2fc986([0x6a,0x74,0x69])]:_0x4eb4f8[_0x2fc986([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](0x0,_0x4eb4f8[_0x2fc986([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8)};return delete _0x2ad520[_0x2fc986([0x76,0x63])],_0x34b327(_0x2ad520)==_0x3917f2;}}}async function _0x29e895(){let _0x3cb24d=!0x0;try{const _0x2b7630=_0x302fd8[_0x2fc986([0x73,0x70,0x6c,0x69,0x74])](_0x2fc986([0x2e])),[_0x161ae1,_0x211f27,_0x2ec45b]=_0x2b7630;return _0xdcfeec(_0x161ae1),await _0x1f794d(_0x161ae1,_0x211f27,_0x2ec45b),_0x3cb24d;}catch(_0xaffa26){return!0x1;}function _0xdcfeec(_0x2f9725){const _0x3401ea=_0x246e14(_0x2f9725);_0x3401ea&&_0x3401ea[_0x2fc986([0x61,0x6c,0x67])]==_0x2fc986([0x45,0x53,0x32,0x35,0x36])||(_0x3cb24d=!0x1);}async function _0x1f794d(_0x1c23ec,_0x44ff5b,_0x4383c3){const _0x48b00f=window[_0x2fc986([0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79])][_0x2fc986([0x66,0x72,0x6f,0x6d])](_0x4f50b2(_0x4383c3),_0x3c2a87=>_0x3c2a87[_0x2fc986([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](0x0)),_0x5f4fbb=new window[(_0x2fc986([0x54,0x65,0x78,0x74,0x45,0x6e,0x63,0x6f,0x64,0x65,0x72]))]()[_0x2fc986([0x65,0x6e,0x63,0x6f,0x64,0x65])](_0x1c23ec+_0x2fc986([0x2e])+_0x44ff5b),_0x58c36c=window[_0x2fc986([0x63,0x72,0x79,0x70,0x74,0x6f])][_0x2fc986([0x73,0x75,0x62,0x74,0x6c,0x65])];if(!_0x58c36c)return;const _0x5d9256=await _0x58c36c[_0x2fc986([0x69,0x6d,0x70,0x6f,0x72,0x74,0x4b,0x65,0x79])](_0x2fc986([0x6a,0x77,0x6b]),_0x4a5b86,{[_0x2fc986([0x6e,0x61,0x6d,0x65])]:_0x2fc986([0x45,0x43,0x44,0x53,0x41]),[_0x2fc986([0x6e,0x61,0x6d,0x65,0x64,0x43,0x75,0x72,0x76,0x65])]:_0x2fc986([0x50,0x2d,0x32,0x35,0x36])},!0x1,[_0x2fc986([0x76,0x65,0x72,0x69,0x66,0x79])]);await _0x58c36c[_0x2fc986([0x76,0x65,0x72,0x69,0x66,0x79])]({[_0x2fc986([0x6e,0x61,0x6d,0x65])]:_0x2fc986([0x45,0x43,0x44,0x53,0x41]),[_0x2fc986([0x68,0x61,0x73,0x68])]:{[_0x2fc986([0x6e,0x61,0x6d,0x65])]:_0x2fc986([0x53,0x48,0x41,0x2d,0x32,0x35,0x36])}},_0x5d9256,_0x48b00f,_0x5f4fbb)||(_0x3cb24d=!0x1);}}function _0x246e14(_0x318533){return _0x318533[_0x2fc986([0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68])](_0x2fc986([0x65,0x79]))?JSON[_0x2fc986([0x70,0x61,0x72,0x73,0x65])](_0x4f50b2(_0x318533)):null;}function _0x4f50b2(_0x48c689){return window[_0x2fc986([0x61,0x74,0x6f,0x62])](_0x48c689[_0x2fc986([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/-/g,_0x2fc986([0x2b]))[_0x2fc986([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/_/g,_0x2fc986([0x2f])));}function _0x34b327(_0x3f3bd1){let _0x4b55d7=0x1505;function _0x1869f1(_0x1a1f45){for(let _0x278abf=0x0;_0x278abf<_0x1a1f45[_0x2fc986([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x278abf++){const _0x37da7a=_0x1a1f45[_0x2fc986([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](_0x278abf);_0x4b55d7=(_0x4b55d7<<0x5)+_0x4b55d7+_0x37da7a,_0x4b55d7&=_0x4b55d7;}}function _0x487895(_0x484d75){Array[_0x2fc986([0x69,0x73,0x41,0x72,0x72,0x61,0x79])](_0x484d75)?_0x484d75[_0x2fc986([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](_0x487895):_0x484d75&&typeof _0x484d75==_0x2fc986([0x6f,0x62,0x6a,0x65,0x63,0x74])?Object[_0x2fc986([0x65,0x6e,0x74,0x72,0x69,0x65,0x73])](_0x484d75)[_0x2fc986([0x73,0x6f,0x72,0x74])]()[_0x2fc986([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](([_0xb4d47a,_0x3a7380])=>{_0x1869f1(_0xb4d47a),_0x487895(_0x3a7380);}):_0x1869f1(window[_0x2fc986([0x53,0x74,0x72,0x69,0x6e,0x67])](_0x484d75));}return _0x487895(_0x3f3bd1),_0x4b55d7>>>0x0;}function _0x2ff0dc(_0x5b7eef){return _0x5b7eef[_0x2fc986([0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67])](0x10)[_0x2fc986([0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74])](0x8,_0x2fc986([0x30]));}function _0xa0cd5b(_0x25ecdb){return _0x25ecdb[_0x2fc986([0x73,0x70,0x6c,0x69,0x74])]('')[_0x2fc986([0x72,0x65,0x76,0x65,0x72,0x73,0x65])]()[_0x2fc986([0x6a,0x6f,0x69,0x6e])]('');}function _0x160755(){}function _0x2fc986(_0x51937b){return _0x51937b['map'](_0xf01b1a=>String['fromCharCode'](_0xf01b1a))['join']('');}_0x234d30(await _0x45ece6());}(this);}['_logSuppressibleWarning'](_0x14d27e,_0x4280e7){this['_isSuppressedLog'](_0x14d27e,_0x4280e7)||_0x441d4a(_0x14d27e,_0x4280e7);}['_logSuppressibleInfo'](_0xec648d,_0x557508,_0x1857ec){!this['_isSuppressedLog'](_0xec648d)&&(_0x1857ec&&(_0x557508+='\x0aRead\x20more:\x20'+('https://ckeditor.com/docs/ckeditor5/latest/'+_0x1857ec)),console['info'](_0xec648d,_0x557508));}['_checkUnsupportedPlugin'](_0xd0ef4f,_0x2f5dad){this['editor']['plugins']['has'](_0xd0ef4f)&&this['_logSuppressibleWarning']('email-configuration-unsupported-plugin',{'pluginName':_0xd0ef4f,..._0x2f5dad});}['_validateConfigColorValue'](_0x5de3b6){const _0x2f9eb2=this['editor']['config']['get'](_0x5de3b6);if(!_0x2f9eb2)return;const _0x2c411e=Array['isArray'](_0x2f9eb2),_0x57a035=_0x2c411e?_0x2f9eb2:[_0x2f9eb2];for(const [_0x365e0b,_0x3fea95]of _0x57a035['entries']()){const _0x137e2f='string'==typeof _0x3fea95?_0x3fea95:_0x3fea95['color'];P(_0x137e2f)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-value',{'configPath':_0x2c411e?_0x5de3b6+'['+_0x365e0b+']':_0x5de3b6,'color':_0x137e2f});}}['_validateConfigColorFormat'](_0x5bcbbf){const _0x30fabf=this['editor']['config']['get'](_0x5bcbbf);var _0x44926b;_0x30fabf&&((_0x44926b=_0x30fabf)&&k['includes'](_0x44926b)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-format',{'configPath':_0x5bcbbf,'format':_0x30fabf}));}['_isSuppressedLog'](_0x1cf766,_0x5254a8){const _0x302bc9=this['editor']['config']['get']('email.logs');return!!_0x302bc9['suppressAll']||(!('function'!=typeof _0x302bc9['suppress']||!_0x302bc9['suppress'](_0x1cf766,_0x5254a8))||!(!Array['isArray'](_0x302bc9['suppress'])||!_0x302bc9['suppress']['includes'](_0x1cf766)));}}const k=['hsl','hsla','hwb','lab','lch','oklab','oklch','color-mix','rgba'];function P(_0x459e44){return!!_0x459e44&&k['some'](_0x2558f8=>_0x459e44['includes'](_0x2558f8+'('));}class e extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'HighlightEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('Highlight');}}class r extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'ImageEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('ImageBlock');}}class n extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'MathTypeEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('MathType');}}class x extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'ExportInlineStylesEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x4c14e5=this['editor']['plugins']['get'](b);this['editor']['plugins']['has']('ExportInlineStyles')||_0x4c14e5['_logSuppressibleWarning']('email-configuration-missing-export-inline-styles-plugin');}}class a extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'ListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x804a3=this['editor']['plugins']['get'](b),_0x303d5d=this['editor']['config']['get']('list');_0x303d5d&&_0x303d5d['properties']&&_0x303d5d['properties']['reversed']&&_0x804a3['_logSuppressibleWarning']('email-configuration-unsupported-reversed-list');}}class s extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'TableEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['_checkRequiredTablePlugins'](),this['_checkTableConfig']();}['_checkRequiredTablePlugins'](){const {plugins:_0xf77f}=this['editor'],_0x4744de=_0xf77f['get'](b);_0xf77f['has']('Table')&&(_0xf77f['has']('PlainTableOutput')||_0x4744de['_logSuppressibleWarning']('email-configuration-missing-plain-table-output-plugin'),_0xf77f['has']('TableLayout')||_0x4744de['_logSuppressibleWarning']('email-configuration-missing-table-layout-plugin'));}['_checkTableConfig'](){const {config:_0x163dfb,plugins:_0xef39bd}=this['editor'];_0x163dfb['get']('table')&&_0xef39bd['has']('Table')&&(this['_checkTablePropertiesConfig']('tableCellProperties'),this['_checkTablePropertiesConfig']('tableProperties'));}['_checkTablePropertiesConfig'](_0x463cc0){const _0x876a6a=this['editor']['plugins']['get'](b);_0x876a6a['_validateConfigColorValue']('table.'+_0x463cc0+'.borderColors'),_0x876a6a['_validateConfigColorValue']('table.'+_0x463cc0+'.backgroundColors'),_0x876a6a['_validateConfigColorValue']('table.'+_0x463cc0+'.defaultProperties.borderColor'),_0x876a6a['_validateConfigColorValue']('table.'+_0x463cc0+'.defaultProperties'),_0x876a6a['_validateConfigColorFormat']('table.'+_0x463cc0+'.colorPicker.format');}}class l extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'EmptyBlockEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x460d75=this['editor']['plugins']['get'](b);this['editor']['plugins']['has']('EmptyBlock')||_0x460d75['_logSuppressibleInfo']('email-configuration-missing-empty-block-plugin','Consider\x20enabling\x20the\x20EmptyBlock\x20plugin\x20to\x20ensure\x20that\x20exported\x20content\x20has\x20empty\x20blocks.','features/email#empty-block-plugin');}}class m extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'FontEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0xb779a1}=this['editor'];_0xb779a1['has']('FontColorEditing')&&this['_checkColorConfig']('fontColor'),_0xb779a1['has']('FontBackgroundColorEditing')&&this['_checkColorConfig']('fontBackgroundColor');}['_checkColorConfig'](_0x57d55b){const _0x3880b6=this['editor']['plugins']['get'](b);this['editor']['config']['get'](_0x57d55b)&&(_0x3880b6['_validateConfigColorValue'](_0x57d55b+'.colors'),_0x3880b6['_validateConfigColorValue'](_0x57d55b+'.documentColors'),_0x3880b6['_validateConfigColorFormat'](_0x57d55b+'.colorPicker.format'));}}class g extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'SourceEditingEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0x5cb061}=this['editor'],_0x247322=_0x5cb061['get'](b);_0x5cb061['has']('SourceEditing')||_0x5cb061['has']('SourceEditingEnhanced')||_0x247322['_logSuppressibleWarning']('email-configuration-missing-source-editing-plugin');}}class p extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'MarkdownEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('Markdown');}}class f extends _0x5dc14e{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[b];}static get['pluginName'](){return'GeneralHtmlIntegrationSupport';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['init'](){const {plugins:_0x2f992a}=this['editor'];if(!_0x2f992a['has']('DataFilter'))return;const _0x5ebd2d=_0x2f992a['get']('DataFilter'),_0x22118a=_0x2f992a['get'](b);for(const _0x37dfcc of f['UNSUPPORTED_ELEMENTS'])_0x5ebd2d['once']('register:'+_0x37dfcc,(_0x385c25,_0x546be1)=>{_0x22118a['_logSuppressibleWarning']('email-unsupported-html-element',{'element':_0x546be1['view']});});}}class u extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'MergeFieldsEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x28fad1=this['editor']['plugins']['get'](b);this['editor']['plugins']['has']('MergeFields')||_0x28fad1['_logSuppressibleInfo']('email-configuration-missing-merge-fields-plugin','Consider\x20enabling\x20the\x20MergeFields\x20plugin\x20which\x20allows\x20inserting\x20dynamic\x20data\x20placeholders\x20into\x20content.','features/email#merge-fields-plugin');}}class c extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'TemplateEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0xa9b5f7=this['editor']['plugins']['get'](b);this['editor']['plugins']['has']('Template')||_0xa9b5f7['_logSuppressibleInfo']('email-configuration-missing-template-plugin','Consider\x20enabling\x20the\x20Template\x20plugin\x20which\x20allows\x20inserting\x20predefined\x20e-mail\x20templates\x20into\x20the\x20editor.','features/email#template-plugin');}}class L extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'UploadEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('Base64UploadAdapter');}}class d extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'MediaEmbedEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('MediaEmbed');}}class y extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'TodoListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('TodoList');}}class j extends _0x5dc14e{static get['requires'](){return[b];}static get['pluginName'](){return'MultiLevelListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](b)['_checkUnsupportedPlugin']('MultiLevelList',{'description':'The\x20multi-level\x20lists\x20are\x20rendered\x20incorrectly\x20in\x20Outlook\x202021.'});}}class C extends _0x5dc14e{['licenseKey'];['_licenseKeyCheckInterval'];static get['pluginName'](){return'EmailConfigurationHelper';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}static get['requires'](){return[e,r,n,x,a,s,l,m,g,p,f,u,c,L,d,y,j];}['init'](){this['licenseKey']=this['editor']['config']['get']('licenseKey');const _0x4153be=this['editor'];this['_licenseKeyCheckInterval']=setInterval(()=>{let _0x3c4f49;for(const _0x5cd9a8 in _0x4153be){const _0x5649e1=_0x5cd9a8,_0x3084b4=_0x4153be[_0x5649e1];if('emailConfigurationHelperLicenseKeyValid'==_0x3084b4||'emailConfigurationHelperLicenseKeyInvalid'==_0x3084b4||'emailConfigurationHelperLicenseKeyExpired'==_0x3084b4||'emailConfigurationHelperLicenseKeyDomainLimit'==_0x3084b4||'emailConfigurationHelperLicenseKeyNotAllowed'==_0x3084b4||'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0x3084b4||'emailConfigurationHelperLicenseKeyTrialLimit'==_0x3084b4||'emailConfigurationHelperLicenseKeyUsageLimit'==_0x3084b4){delete _0x4153be[_0x5649e1],_0x3c4f49=_0x3084b4,clearInterval(this['_licenseKeyCheckInterval']),this['_licenseKeyCheckInterval']=void 0x0;break;}}'emailConfigurationHelperLicenseKeyInvalid'==_0x3c4f49&&_0x4153be['_showLicenseError']('invalid'),'emailConfigurationHelperLicenseKeyExpired'==_0x3c4f49&&_0x4153be['_showLicenseError']('expired'),'emailConfigurationHelperLicenseKeyDomainLimit'==_0x3c4f49&&_0x4153be['_showLicenseError']('domainLimit'),'emailConfigurationHelperLicenseKeyNotAllowed'==_0x3c4f49&&_0x4153be['_showLicenseError']('featureNotAllowed','EmailConfigurationHelper'),'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0x3c4f49&&_0x4153be['_showLicenseError']('evaluationLimit'),'emailConfigurationHelperLicenseKeyTrialLimit'==_0x3c4f49&&_0x4153be['_showLicenseError']('trialLimit'),'emailConfigurationHelperLicenseKeyUsageLimit'==_0x3c4f49&&_0x4153be['_showLicenseError']('usageLimit');},0x3e8);}['destroy'](){super['destroy'](),this['_licenseKeyCheckInterval']&&clearInterval(this['_licenseKeyCheckInterval']);}}function I(){return[(_0x1d9619,_0xe58b8b)=>{if(!['TABLE','IMG']['includes'](_0x1d9619['tagName']))return;const _0x4e8228=_0xe58b8b['getAsString']('float');if(_0x4e8228){const _0xf9fe50=_0x579d14(_0x4e8228);'left'!==_0xf9fe50&&'right'!==_0xf9fe50||_0x1d9619['setAttribute']('align',_0xf9fe50);}},(_0x342f40,_0x1c22ce)=>{if('TABLE'!==_0x342f40['tagName'])return;const _0x172531=_0x1c22ce['getAsString']('margin-left'),_0x47afa2=_0x1c22ce['getAsString']('margin-right');_0x172531&&_0x47afa2&&'auto'===_0x579d14(_0x172531)&&'auto'===_0x579d14(_0x47afa2)&&_0x342f40['setAttribute']('align','center');}];}export{C as EmailConfigurationHelper,b as EmailConfigurationLogger,l as EmptyBlockEmailIntegration,x as ExportInlineStylesEmailIntegration,m as FontEmailIntegration,f as GeneralHtmlIntegrationSupport,e as HighlightEmailIntegration,r as ImageEmailIntegration,a as ListEmailIntegration,p as MarkdownEmailIntegration,n as MathTypeEmailIntegration,g as SourceEditingEmailIntegration,s as TableEmailIntegration,I as getEmailInlineStylesTransformations};
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ckeditor/ckeditor5-email",
|
|
3
|
+
"version": "0.0.0-nightly-20250326.0",
|
|
4
|
+
"description": "Email integration feature for CKEditor 5.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ckeditor",
|
|
7
|
+
"ckeditor5",
|
|
8
|
+
"ckeditor 5",
|
|
9
|
+
"ckeditor5-feature",
|
|
10
|
+
"ckeditor5-plugin",
|
|
11
|
+
"ckeditor5-dll"
|
|
12
|
+
],
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "src/index.js",
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"ckeditor5": "0.0.0-nightly-20250326.0",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20250326.0",
|
|
18
|
+
"@ckeditor/ckeditor5-font": "0.0.0-nightly-20250326.0",
|
|
19
|
+
"@ckeditor/ckeditor5-list": "0.0.0-nightly-20250326.0",
|
|
20
|
+
"@ckeditor/ckeditor5-table": "0.0.0-nightly-20250326.0",
|
|
21
|
+
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250326.0",
|
|
22
|
+
"@ckeditor/ckeditor5-html-support": "0.0.0-nightly-20250326.0",
|
|
23
|
+
"@ckeditor/ckeditor5-export-inline-styles": "0.0.0-nightly-20250326.0"
|
|
24
|
+
},
|
|
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
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"build",
|
|
32
|
+
"lang",
|
|
33
|
+
"src/**/*.js",
|
|
34
|
+
"src/**/*.d.ts",
|
|
35
|
+
"theme",
|
|
36
|
+
"ckeditor5-metadata.json",
|
|
37
|
+
"CHANGELOG.md"
|
|
38
|
+
],
|
|
39
|
+
"types": "src/index.d.ts",
|
|
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
|
+
},
|
|
60
|
+
"obfuscated": true
|
|
61
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
import type { EmailConfigurationConfig } from './emailconfigurationconfig.js';
|
|
6
|
+
import type { EmailConfigurationHelper, EmailConfigurationLogger, EmptyBlockEmailIntegration, ExportInlineStylesEmailIntegration, FontEmailIntegration, HighlightEmailIntegration, ImageEmailIntegration, ListEmailIntegration, TableEmailIntegration, MathTypeEmailIntegration, SourceEditingEmailIntegration, MarkdownEmailIntegration } from './index.js';
|
|
7
|
+
declare module '@ckeditor/ckeditor5-core' {
|
|
8
|
+
interface EditorConfig {
|
|
9
|
+
/**
|
|
10
|
+
* The configuration of the {@link module:email/emailconfigurationhelper~EmailConfigurationHelper EmailIntegration feature}.
|
|
11
|
+
*
|
|
12
|
+
* Read more in {@link module:email/emailconfigurationconfig~EmailConfigurationConfig}.
|
|
13
|
+
*/
|
|
14
|
+
email?: EmailConfigurationConfig;
|
|
15
|
+
}
|
|
16
|
+
interface PluginsMap {
|
|
17
|
+
[EmailConfigurationHelper.pluginName]: EmailConfigurationHelper;
|
|
18
|
+
[EmailConfigurationLogger.pluginName]: EmailConfigurationLogger;
|
|
19
|
+
[EmptyBlockEmailIntegration.pluginName]: EmptyBlockEmailIntegration;
|
|
20
|
+
[ExportInlineStylesEmailIntegration.pluginName]: ExportInlineStylesEmailIntegration;
|
|
21
|
+
[FontEmailIntegration.pluginName]: FontEmailIntegration;
|
|
22
|
+
[HighlightEmailIntegration.pluginName]: HighlightEmailIntegration;
|
|
23
|
+
[ImageEmailIntegration.pluginName]: ImageEmailIntegration;
|
|
24
|
+
[ListEmailIntegration.pluginName]: ListEmailIntegration;
|
|
25
|
+
[TableEmailIntegration.pluginName]: TableEmailIntegration;
|
|
26
|
+
[MathTypeEmailIntegration.pluginName]: MathTypeEmailIntegration;
|
|
27
|
+
[SourceEditingEmailIntegration.pluginName]: SourceEditingEmailIntegration;
|
|
28
|
+
[MarkdownEmailIntegration.pluginName]: MarkdownEmailIntegration;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -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
|
+
export{};
|
|
@@ -0,0 +1,59 @@
|
|
|
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/emailconfigurationconfig
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* The configuration of the email integration feature.
|
|
11
|
+
*
|
|
12
|
+
* ```ts
|
|
13
|
+
* ClassicEditor
|
|
14
|
+
* .create( editorElement, {
|
|
15
|
+
* email: ... // Email integration feature options.
|
|
16
|
+
* } )
|
|
17
|
+
* .then( ... )
|
|
18
|
+
* .catch( ... );
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* See {@link module:core/editor/editorconfig~EditorConfig all editor configuration options}.
|
|
22
|
+
*/
|
|
23
|
+
export interface EmailConfigurationConfig {
|
|
24
|
+
/**
|
|
25
|
+
* Configuration for warning or log messages about email client compatibility.
|
|
26
|
+
*
|
|
27
|
+
* ```ts
|
|
28
|
+
* ClassicEditor
|
|
29
|
+
* .create( editorElement, {
|
|
30
|
+
* email: {
|
|
31
|
+
* logs: {
|
|
32
|
+
* suppressAll: false,
|
|
33
|
+
* suppress: [
|
|
34
|
+
* 'email-configuration-unsupported-reversed-list',
|
|
35
|
+
* 'email-configuration-missing-empty-block-plugin',
|
|
36
|
+
* // ... other warning codes
|
|
37
|
+
* ]
|
|
38
|
+
* }
|
|
39
|
+
* }
|
|
40
|
+
* } )
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
logs?: {
|
|
44
|
+
/**
|
|
45
|
+
* Setting this to `true` will silence all compatibility warnings,
|
|
46
|
+
* including any that might be added in future releases. This is not recommended
|
|
47
|
+
* as it may hide important information about the editor's behavior in email clients.
|
|
48
|
+
*
|
|
49
|
+
* @default false
|
|
50
|
+
*/
|
|
51
|
+
suppressAll?: boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Array of specific warning codes to suppress.
|
|
54
|
+
*
|
|
55
|
+
* @default []
|
|
56
|
+
*/
|
|
57
|
+
suppress?: Array<string> | ((warningCode: string, data?: object) => boolean);
|
|
58
|
+
};
|
|
59
|
+
}
|
|
@@ -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
|
+
export{};
|
|
@@ -0,0 +1,57 @@
|
|
|
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/emailconfigurationhelper
|
|
7
|
+
* @publicApi
|
|
8
|
+
*/
|
|
9
|
+
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
|
+
import HighlightEmailIntegration from './integrations/highlight.js';
|
|
11
|
+
import ImageEmailIntegration from './integrations/image.js';
|
|
12
|
+
import MathTypeEmailIntegration from './integrations/mathtype.js';
|
|
13
|
+
import ExportInlineStylesIntegration from './integrations/exportinlinestyles.js';
|
|
14
|
+
import ListEmailIntegration from './integrations/list.js';
|
|
15
|
+
import TableEmailIntegration from './integrations/table.js';
|
|
16
|
+
import EmptyBlockEmailIntegration from './integrations/emptyblock.js';
|
|
17
|
+
import FontEmailIntegration from './integrations/font.js';
|
|
18
|
+
import SourceEditingEmailIntegration from './integrations/sourceediting.js';
|
|
19
|
+
import MarkdownEmailIntegration from './integrations/markdown.js';
|
|
20
|
+
import GeneralHtmlIntegrationSupport from './integrations/generalhtmlintegration.js';
|
|
21
|
+
import MergeFieldsEmailIntegration from './integrations/mergefields.js';
|
|
22
|
+
import TemplateEmailIntegration from './integrations/template.js';
|
|
23
|
+
import UploadEmailIntegration from './integrations/upload.js';
|
|
24
|
+
import MediaEmbedEmailIntegration from './integrations/mediaembed.js';
|
|
25
|
+
import TodoListEmailIntegration from './integrations/todolist.js';
|
|
26
|
+
import MultiLevelListEmailIntegration from './integrations/listmultilevel.js';
|
|
27
|
+
/**
|
|
28
|
+
* The email integration plugin.
|
|
29
|
+
*
|
|
30
|
+
* This is a "glue" plugin that integrates the email integration feature with the editor.
|
|
31
|
+
*/
|
|
32
|
+
export default class EmailConfigurationHelper extends Plugin {
|
|
33
|
+
/**
|
|
34
|
+
* @inheritDoc
|
|
35
|
+
*/
|
|
36
|
+
static get pluginName(): "EmailConfigurationHelper";
|
|
37
|
+
/**
|
|
38
|
+
* @inheritDoc
|
|
39
|
+
*/
|
|
40
|
+
static get isOfficialPlugin(): true;
|
|
41
|
+
/**
|
|
42
|
+
* @inheritDoc
|
|
43
|
+
*/
|
|
44
|
+
static get isPremiumPlugin(): true;
|
|
45
|
+
/**
|
|
46
|
+
* @inheritDoc
|
|
47
|
+
*/
|
|
48
|
+
static get requires(): readonly [typeof HighlightEmailIntegration, typeof ImageEmailIntegration, typeof MathTypeEmailIntegration, typeof ExportInlineStylesIntegration, typeof ListEmailIntegration, typeof TableEmailIntegration, typeof EmptyBlockEmailIntegration, typeof FontEmailIntegration, typeof SourceEditingEmailIntegration, typeof MarkdownEmailIntegration, typeof GeneralHtmlIntegrationSupport, typeof MergeFieldsEmailIntegration, typeof TemplateEmailIntegration, typeof UploadEmailIntegration, typeof MediaEmbedEmailIntegration, typeof TodoListEmailIntegration, typeof MultiLevelListEmailIntegration];
|
|
49
|
+
/**
|
|
50
|
+
* @inheritDoc
|
|
51
|
+
*/
|
|
52
|
+
init(): void;
|
|
53
|
+
/**
|
|
54
|
+
* @inheritDoc
|
|
55
|
+
*/
|
|
56
|
+
destroy(): void;
|
|
57
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* +---------------------------------------------------------------------------------+
|
|
8
|
+
* | |
|
|
9
|
+
* | Hello stranger! |
|
|
10
|
+
* | |
|
|
11
|
+
* | |
|
|
12
|
+
* | What you're currently looking at is the source code of a legally protected, |
|
|
13
|
+
* | proprietary software. Any attempts to deobfuscate / disassemble this code |
|
|
14
|
+
* | are forbidden and will result in legal consequences. |
|
|
15
|
+
* | |
|
|
16
|
+
* | |
|
|
17
|
+
* +---------------------------------------------------------------------------------+
|
|
18
|
+
*
|
|
19
|
+
*
|
|
20
|
+
*
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
const _0x5bcd2d=_0x4cb8;(function(_0x3063f1,_0x3b681f){const _0x33cc0d=_0x4cb8,_0x2ad7ad=_0x3063f1();while(!![]){try{const _0x27de85=-parseInt(_0x33cc0d(0xf5))/0x1*(parseInt(_0x33cc0d(0xfa))/0x2)+parseInt(_0x33cc0d(0xff))/0x3*(-parseInt(_0x33cc0d(0x102))/0x4)+parseInt(_0x33cc0d(0xfe))/0x5*(-parseInt(_0x33cc0d(0xfb))/0x6)+parseInt(_0x33cc0d(0x106))/0x7*(parseInt(_0x33cc0d(0xf2))/0x8)+-parseInt(_0x33cc0d(0xf8))/0x9+parseInt(_0x33cc0d(0xf6))/0xa+parseInt(_0x33cc0d(0xf4))/0xb;if(_0x27de85===_0x3b681f)break;else _0x2ad7ad['push'](_0x2ad7ad['shift']());}catch(_0x39df89){_0x2ad7ad['push'](_0x2ad7ad['shift']());}}}(_0x3315,0x660bf));import{Plugin as _0x30135f}from'ckeditor5/src/core.js';import _0x1f4c2a from'./integrations/highlight.js';function _0x4cb8(_0x4dafdf,_0x3b8b8c){const _0x331529=_0x3315();return _0x4cb8=function(_0x4cb8ec,_0xc103e2){_0x4cb8ec=_0x4cb8ec-0xe2;let _0xc72e6e=_0x331529[_0x4cb8ec];return _0xc72e6e;},_0x4cb8(_0x4dafdf,_0x3b8b8c);}import _0x25e487 from'./integrations/image.js';import _0x527d8c from'./integrations/mathtype.js';import _0x5f2d94 from'./integrations/exportinlinestyles.js';import _0x1e5f55 from'./integrations/list.js';import _0x544338 from'./integrations/table.js';import _0x5d4729 from'./integrations/emptyblock.js';import _0x711ad3 from'./integrations/font.js';function _0x3315(){const _0x4024b6=['emailConfigurationHelperLicenseKeyExpired','EmailConfigurationHelper','get','emailConfigurationHelperLicenseKeyDomainLimit','requires','destroy','_licenseKeyCheckInterval','isPremiumPlugin','16fYDMAJ','emailConfigurationHelperLicenseKeyTrialLimit','22582131ZxsNlm','3648iGzdpB','1944180aYVxkx','emailConfigurationHelperLicenseKeyInvalid','6832422SkoKYn','_showLicenseError','298KfOZLb','3864786ZQkuFW','emailConfigurationHelperLicenseKeyUsageLimit','emailConfigurationHelperLicenseKeyEvaluationLimit','5YJcWUU','86607nQgDBS','expired','pluginName','36wCEajY','featureNotAllowed','invalid','evaluationLimit','1320571VydgqW','trialLimit','usageLimit','isOfficialPlugin','domainLimit','config','init','editor','licenseKey','emailConfigurationHelperLicenseKeyValid','emailConfigurationHelperLicenseKeyNotAllowed'];_0x3315=function(){return _0x4024b6;};return _0x3315();}import _0x314f21 from'./integrations/sourceediting.js';import _0x19ebea from'./integrations/markdown.js';import _0x27be50 from'./integrations/generalhtmlintegration.js';import _0x3ae47b from'./integrations/mergefields.js';import _0x3dc577 from'./integrations/template.js';import _0x49c8c5 from'./integrations/upload.js';import _0x5d3d23 from'./integrations/mediaembed.js';import _0x352d18 from'./integrations/todolist.js';import _0x190bbf from'./integrations/listmultilevel.js';export default class C extends _0x30135f{[_0x5bcd2d(0xe7)];[_0x5bcd2d(0xf0)];static get[_0x5bcd2d(0x101)](){const _0x4c123a=_0x5bcd2d;return _0x4c123a(0xeb);}static get[_0x5bcd2d(0xe2)](){return!0x0;}static get[_0x5bcd2d(0xf1)](){return!0x0;}static get[_0x5bcd2d(0xee)](){return[_0x1f4c2a,_0x25e487,_0x527d8c,_0x5f2d94,_0x1e5f55,_0x544338,_0x5d4729,_0x711ad3,_0x314f21,_0x19ebea,_0x27be50,_0x3ae47b,_0x3dc577,_0x49c8c5,_0x5d3d23,_0x352d18,_0x190bbf];}[_0x5bcd2d(0xe5)](){const _0x440ca5=_0x5bcd2d;this[_0x440ca5(0xe7)]=this[_0x440ca5(0xe6)][_0x440ca5(0xe4)][_0x440ca5(0xec)](_0x440ca5(0xe7));const _0x741c96=this[_0x440ca5(0xe6)];this[_0x440ca5(0xf0)]=setInterval(()=>{const _0x57b59d=_0x440ca5;let _0x311dae;for(const _0x3b11b1 in _0x741c96){const _0x51c637=_0x3b11b1,_0xc8d429=_0x741c96[_0x51c637];if(_0x57b59d(0xe8)==_0xc8d429||_0x57b59d(0xf7)==_0xc8d429||_0x57b59d(0xea)==_0xc8d429||_0x57b59d(0xed)==_0xc8d429||_0x57b59d(0xe9)==_0xc8d429||_0x57b59d(0xfd)==_0xc8d429||_0x57b59d(0xf3)==_0xc8d429||_0x57b59d(0xfc)==_0xc8d429){delete _0x741c96[_0x51c637],_0x311dae=_0xc8d429,clearInterval(this[_0x57b59d(0xf0)]),this[_0x57b59d(0xf0)]=void 0x0;break;}}_0x57b59d(0xf7)==_0x311dae&&_0x741c96[_0x57b59d(0xf9)](_0x57b59d(0x104)),_0x57b59d(0xea)==_0x311dae&&_0x741c96[_0x57b59d(0xf9)](_0x57b59d(0x100)),_0x57b59d(0xed)==_0x311dae&&_0x741c96[_0x57b59d(0xf9)](_0x57b59d(0xe3)),_0x57b59d(0xe9)==_0x311dae&&_0x741c96[_0x57b59d(0xf9)](_0x57b59d(0x103),_0x57b59d(0xeb)),_0x57b59d(0xfd)==_0x311dae&&_0x741c96[_0x57b59d(0xf9)](_0x57b59d(0x105)),_0x57b59d(0xf3)==_0x311dae&&_0x741c96[_0x57b59d(0xf9)](_0x57b59d(0x107)),_0x57b59d(0xfc)==_0x311dae&&_0x741c96[_0x57b59d(0xf9)](_0x57b59d(0x108));},0x3e8);}[_0x5bcd2d(0xef)](){const _0xf33789=_0x5bcd2d;super[_0xf33789(0xef)](),this[_0xf33789(0xf0)]&&clearInterval(this[_0xf33789(0xf0)]);}}
|