@ckeditor/ckeditor5-email 0.0.0-internal-20251210.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 +58 -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 +30 -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/link.d.ts +35 -0
- package/src/integrations/link.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
|
|
11
|
+
------------------------------------------------------------
|
|
12
|
+
|
|
13
|
+
Where not otherwise indicated, all CKEditor 5 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://codecov.io/gh/ckeditor/ckeditor5)
|
|
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:()=>Mt,EmailConfigurationLogger:()=>u,EmptyBlockEmailIntegration:()=>F,ExportInlineStylesEmailIntegration:()=>L,FontEmailIntegration:()=>_,GeneralHtmlIntegrationSupport:()=>nt,HighlightEmailIntegration:()=>h,ImageEmailIntegration:()=>P,LinkEmailIntegration:()=>Nt,ListEmailIntegration:()=>T,MarkdownEmailIntegration:()=>z,MathTypeEmailIntegration:()=>E,MediaEmbedEmailIntegration:()=>dt,MergeFieldsEmailIntegration:()=>st,MultiLevelListEmailIntegration:()=>Ct,SourceEditingEmailIntegration:()=>R,TableEmailIntegration:()=>K,TemplateEmailIntegration:()=>ct,TodoListEmailIntegration:()=>bt,UploadEmailIntegration:()=>gt,getEmailInlineStylesTransformations:()=>en,isUnsupportedEmailColorFormat:()=>l,isUnsupportedEmailColorValue:()=>p});var t=e(782),n=e(584);const i=s;function s(t,n){const e=a();return(s=function(t,n){return e[t-=481]})(t,n)}function a(){const t=["_isSuppressedLog","lab","get","https://ckeditor.com/docs/ckeditor5/latest","\nRead more: ","_checkUnsupportedPlugin","suppressAll","16793ZDXxcT","string","pluginName","isOfficialPlugin","hwb","suppress","880JCKlLz","hsla","entries","color-mix","includes","info","lch","2jWOAah","editor","EmailConfigurationLogger","_validateConfigColorFormat","warn","180nOQywd","isArray","_logSuppressibleWarning","oklab","/support/error-codes.html#error-","_validateConfigColorValue","color","%cEmailConfigurationHelper%c ","246560FmGJyi","hsl","some","1637982uzFttx","join","plugins","define","email.logs","email-configuration-unsupported-color-format","943434SBWYKQ","390Wsvnbf","_logSuppressibleInfo","function","fromCharCode","oklch","19136HSfUmG","email-configuration-unsupported-plugin","config","href","background: #4169E1; color: white; padding: 2px 4px;","afterInit","email-configuration-unsupported-color-value","has","isPremiumPlugin","background: #E65100; color: white; padding: 2px 4px;","map","139062XfMmPW","1296336XnVsqp","rgba"];return(a=function(){return t})()}!function(t){const n=s,e=t();for(;;)try{if(158900===-parseInt(n(541))/1*(parseInt(n(528))/2)+parseInt(n(488))/3+parseInt(n(494))/4*(-parseInt(n(533))/5)+parseInt(n(506))/6+parseInt(n(515))/7*(-parseInt(n(521))/8)+-parseInt(n(482))/9+-parseInt(n(489))/10*(-parseInt(n(505))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(a);const o=i(511);class u extends t.Plugin{static get[i(517)](){return i(530)}static get[i(518)](){return!0}static get[i(502)](){return!0}constructor(t){const n=i;super(t),t[n(496)][n(485)](n(486),{suppress:[],suppressAll:!1})}[i(499)](){!async function(t){const e=m([117,105,122,84,100,118,121,66,73,97,52,82,75,115,110,79,89,109,69,88,71,77,102,106,101,104,119,74,81,113,98,80,83,67,107,55,68,116,90,103,70,53,56,76,120,108,50,57,72,111,54,99,65,85,87,49,112,86,51,78,114,48]),r=window[m([68,97,116,101])][m([110,111,119])](),i=t[m([101,100,105,116,111,114])],a=new(window[m([80,114,111,109,105,115,101])])(t=>{i[m([111,110,99,101])](m([114,101,97,100,121]),t)}),o={[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])},u=i[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;i[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=s;return t[n(504)](t=>String[n(492)](t))[n(483)]("")}!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([117]);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}();i[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,i[m([109,111,100,101,108])][m([99,104,97,110,103,101])]=h,i[m([109,111,100,101,108])][m([101,110,113,117,101,117,101,67,104,97,110,103,101])]=h,i[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 u==m([71,80,76])?m([78,111,116,65,108,108,111,119,101,100]):(t=function(){const t=u[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])])(u=>{if(s())return u(m([86,97,108,105,100]));o(),i[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){o(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])](u)[m([99,97,116,99,104])](()=>{u(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 o(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)})}}i[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 u(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])}),i[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||u(m([85,115,97,103,101,76,105,109,105,116]))})});function s(){return i[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 o(){i[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=u[m([115,112,108,105,116])](m([46])),[i,s,a]=r;return n(i),await e(i,s,a),t}catch{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 u=await a[m([105,109,112,111,114,116,75,101,121])](m([106,119,107]),o,{[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])}},u,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:1765324800;return t[m([101,120,112])]<n}()?m([69,120,112,105,114,101,100]):function(){const n=s,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(497)]);if(e[m([105,110,99,108,117,100,101,115])](r))return!0;const i=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([102,105,108,116,101,114])](t=>t[m([108,101,110,103,116,104])]<=i[m([108,101,110,103,116,104])])[m([109,97,112])](t=>Array(i[m([108,101,110,103,116,104])]-t[m([108,101,110,103,116,104])])[m([102,105,108,108])](t[0]===m([42])?m([42]):"")[m([99,111,110,99,97,116])](t))[m([115,111,109,101])](t=>i[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{return m([73,110,118,97,108,105,100])}}())}(this)}[i(535)](t,n){const e=i;if(this[e(508)](t,n))return;const r=o+e(537)+t;console[e(532)](e(540)+t,e(503),"",...n?[n]:[],e(512)+r)}[i(490)](t,n,e){const r=i;if(this[r(508)](t))return;let s=n;e&&(s+=r(512)+(o+"/")+e),console[r(526)](r(540)+t,r(498),"",s)}[i(513)](t,n){const e=i;this[e(529)][e(484)][e(501)](t)&&this[e(535)](e(495),{pluginName:t,...n})}[i(538)](t){const n=i,e=this[n(529)][n(496)][n(510)](t);if(!e)return;const r=Array[n(534)](e),s=r?e:[e];for(const[e,i]of s[n(523)]()){const s=n(516)==typeof i?i:i[n(539)];p(s)&&this[n(535)](n(500),{configPath:r?t+"["+e+"]":t,color:s})}}[i(531)](t){const n=i,e=this[n(529)][n(496)][n(510)](t);e&&l(e)&&this[n(535)](n(487),{configPath:t,format:e})}[i(508)](t,n){const e=i,r=this[e(529)][e(496)][e(510)](e(486));return!!r[e(514)]||!(e(491)!=typeof r[e(520)]||!r[e(520)](t,n))||!(!Array[e(534)](r[e(520)])||!r[e(520)][e(525)](t))}}const c=[i(542),i(522),i(519),i(509),i(527),i(536),i(493),i(524),i(507)];function p(t){const n=i;return!!t&&c[n(481)](e=>t[n(525)](e+"("))}function l(t){return!!t&&c[i(525)](t)}var f=I;function g(){var t=["HighlightEmailIntegration","_checkUnsupportedPlugin","afterInit","isPremiumPlugin","editor","2551434UNpCCs","1437669ycluaE","22864isfrBX","20PcvCZd","139915WdHPkO","315FCWqBt","901278bsQvJn","requires","isOfficialPlugin","plugins","get","pluginName","4vzfCoS","76EqJaje","11138017oxcPhk","86116TYAtqP","Highlight"];return(g=function(){return t})()}function I(t,n){var e=g();return(I=function(t,n){return e[t-=149]})(t,n)}!function(t){for(var n=I,e=t();;)try{if(270224===parseInt(n(154))/1*(parseInt(n(151))/2)+-parseInt(n(162))/3+-parseInt(n(152))/4*(parseInt(n(165))/5)+parseInt(n(161))/6+parseInt(n(166))/7*(-parseInt(n(163))/8)+-parseInt(n(167))/9*(parseInt(n(164))/10)+parseInt(n(153))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(g);class h extends t.Plugin{static get[f(168)](){return[u]}static get[f(150)](){return f(156)}static get[f(169)](){return!0}static get[f(159)](){return!0}[f(158)](){var t=f;this[t(160)][t(170)][t(149)](u)[t(157)](t(155))}}var m=y;function d(){var t=["3708944UowJny","get","ImageEmailIntegration","requires","plugins","_checkUnsupportedPlugin","isOfficialPlugin","2jJdukS","afterInit","2215707HAgPuG","editor","isPremiumPlugin","583780EfWcmr","5222qZoNkH","482578ouQawk","pluginName","8912riCTMq","ImageBlock","2102514gVwIzU","3408363WsISqx"];return(d=function(){return t})()}function y(t,n){var e=d();return(y=function(t,n){return e[t-=452]})(t,n)}!function(t){for(var n=y,e=t();;)try{if(979911===parseInt(n(468))/1*(parseInt(n(461))/2)+parseInt(n(463))/3+-parseInt(n(454))/4+-parseInt(n(466))/5+parseInt(n(452))/6+parseInt(n(467))/7*(parseInt(n(470))/8)+-parseInt(n(453))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(d);class P extends t.Plugin{static get[m(457)](){return[u]}static get[m(469)](){return m(456)}static get[m(460)](){return!0}static get[m(465)](){return!0}[m(462)](){var t=m;this[t(464)][t(458)][t(455)](u)[t(459)](t(471))}}var v=w;function b(){var t=["7097787kGLefq","7sIFhzB","get","MathTypeEmailIntegration","328982unEPKv","isPremiumPlugin","editor","234716IZlmoC","65pNgzDv","plugins","92328iayMbV","pluginName","_checkUnsupportedPlugin","5154870zHhacc","MathType","isOfficialPlugin","6649608LSJDDP","22SSqcTg","requires","6fceNJQ","4221510eghIpT","afterInit"];return(b=function(){return t})()}function w(t,n){var e=b();return(w=function(t,n){return e[t-=389]})(t,n)}!function(t){for(var n=w,e=t();;)try{if(450550===-parseInt(n(407))/1+-parseInt(n(401))/2*(parseInt(n(394))/3)+parseInt(n(404))/4*(-parseInt(n(405))/5)+parseInt(n(410))/6+-parseInt(n(398))/7*(-parseInt(n(391))/8)+parseInt(n(397))/9+parseInt(n(395))/10*(-parseInt(n(392))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(b);class E extends t.Plugin{static get[v(393)](){return[u]}static get[v(408)](){return v(400)}static get[v(390)](){return!0}static get[v(402)](){return!0}[v(396)](){var t=v;this[t(403)][t(406)][t(399)](u)[t(409)](t(389))}}function k(t,n){const e=C();return(k=function(t,n){return e[t-=438]})(t,n)}function C(){const t=["1687575mYiQRi","isOfficialPlugin","9767975WEEyBx","plugins","get","4781072slfuqY","isPremiumPlugin","ExportInlineStyles","_logSuppressibleWarning","pluginName","requires","85923cTccxM","afterInit","9962464WJmwZk","122rYkTev","1320520GvFatm","editor","ExportInlineStylesEmailIntegration","has","email-configuration-missing-export-inline-styles-plugin","7765350FpzxgQ"];return(C=function(){return t})()}const x=k;!function(t){const n=k,e=t();for(;;)try{if(915336===-parseInt(n(456))/1+-parseInt(n(455))/2*(-parseInt(n(452))/3)+-parseInt(n(446))/4+parseInt(n(441))/5+-parseInt(n(440))/6+parseInt(n(443))/7+parseInt(n(454))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(C);class L extends t.Plugin{static get[x(451)](){return[u]}static get[x(450)](){return x(458)}static get[x(442)](){return!0}static get[x(447)](){return!0}[x(453)](){const t=x,n=this[t(457)][t(444)][t(445)](u);this[t(457)][t(444)][t(438)](t(448))||n[t(449)](t(439))}}const S=O;function N(){const t=["591247SzNhmv","editor","483865bAutUo","email-configuration-unsupported-reversed-list","properties","30SBIdVE","plugins","58503RIaTII","110gxbYZh","isOfficialPlugin","requires","config","email-configuration-unsupported-list-item-marker-formatting","ListEmailIntegration","afterInit","41111gaSeVi","_logSuppressibleWarning","2699912Hibuxt","list","isPremiumPlugin","enableListItemMarkerFormatting","26172NesPzH","reversed","get","8xBBJEQ","318OQOnju","pluginName","1089kBaBTT","23400Dqspnr"];return(N=function(){return t})()}function O(t,n){const e=N();return(O=function(t,n){return e[t-=414]})(t,n)}!function(t){const n=O,e=t();for(;;)try{if(375925===parseInt(n(422))/1+-parseInt(n(427))/2*(parseInt(n(429))/3)+-parseInt(n(417))/4*(parseInt(n(424))/5)+parseInt(n(418))/6*(-parseInt(n(437))/7)+parseInt(n(439))/8+parseInt(n(421))/9*(parseInt(n(430))/10)+-parseInt(n(420))/11*(-parseInt(n(414))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(N);class T extends t.Plugin{static get[S(432)](){return[u]}static get[S(419)](){return S(435)}static get[S(431)](){return!0}static get[S(441)](){return!0}[S(436)](){const t=S,n=this[t(423)][t(428)][t(416)](u),e=this[t(423)][t(433)][t(416)](t(440));e&&e[t(426)]&&e[t(426)][t(415)]&&n[t(438)](t(425)),e&&e[t(442)]&&n[t(438)](t(434))}}const q=M;function M(t,n){const e=A();return(M=function(t,n){return e[t-=469]})(t,n)}function A(){const t=[".defaultProperties.borderColor","_checkTablePropertiesConfig","plugins","Table","isPremiumPlugin","16294cAodUy","get","_validateConfigColorFormat","editor","PlainTableOutput","22cHXqiv","269262YmZQTS","1740680AcgLts","8021060DQMpfD","TableLayout","tableCellProperties","has","42RAPMGC","_logSuppressibleWarning","3972267aOWXRM",".colorPicker.format","email-configuration-missing-table-layout-plugin","email-configuration-missing-plain-table-output-plugin","9oWeomf","106zfYkRa",".defaultProperties",".backgroundColors","table","_checkRequiredTablePlugins","requires","table.","TableEmailIntegration","_checkTableConfig","isOfficialPlugin","655708CkPNpj",".borderColors","_validateConfigColorValue","tableProperties","afterInit","pluginName","749824HXlflo"];return(A=function(){return t})()}!function(t){const n=M,e=t();for(;;)try{if(517610===-parseInt(n(498))/1*(parseInt(n(479))/2)+-parseInt(n(497))/3*(parseInt(n(508))/4)+-parseInt(n(486))/5+-parseInt(n(491))/6*(-parseInt(n(485))/7)+-parseInt(n(473))/8+parseInt(n(493))/9+parseInt(n(487))/10*(parseInt(n(484))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(A);class K extends t.Plugin{static get[q(503)](){return[u]}static get[q(472)](){return q(505)}static get[q(507)](){return!0}static get[q(478)](){return!0}[q(471)](){const t=q;this[t(502)](),this[t(506)]()}[q(502)](){const t=q,{plugins:n}=this[t(482)],e=n[t(480)](u);n[t(490)](t(477))&&(n[t(490)](t(483))||e[t(492)](t(496)),n[t(490)](t(488))||e[t(492)](t(495)))}[q(506)](){const t=q,{config:n,plugins:e}=this[t(482)];n[t(480)](t(501))&&e[t(490)](t(477))&&(this[t(475)](t(489)),this[t(475)](t(470)))}[q(475)](t){const n=q,e=this[n(482)][n(476)][n(480)](u);e[n(469)](n(504)+t+n(509)),e[n(469)](n(504)+t+n(500)),e[n(469)](n(504)+t+n(474)),e[n(469)](n(504)+t+n(499)),e[n(481)](n(504)+t+n(494))}}const H=U;function j(){const t=["has","EmptyBlock","afterInit","945EJQkCo","1103150FkQURZ","2298284qjfMqY","52504BvuOQx","417082BnbXiR","1867088lnkqlc","pluginName","editor","features/email-editing/email.html#empty-block-plugin","Consider enabling the EmptyBlock plugin to ensure that exported content has empty blocks.","_logSuppressibleInfo","EmptyBlockEmailIntegration","2234985OXuCHD","plugins","1712245JyxqXe","isOfficialPlugin","isPremiumPlugin","get","requires","9HcOaYf","12fKsBAN","email-configuration-missing-empty-block-plugin"];return(j=function(){return t})()}function U(t,n){const e=j();return(U=function(t,n){return e[t-=284]})(t,n)}!function(t){const n=U,e=t();for(;;)try{if(501016===-parseInt(n(284))/1+-parseInt(n(285))/2+parseInt(n(292))/3+-parseInt(n(307))/4+parseInt(n(294))/5*(parseInt(n(300))/6)+-parseInt(n(305))/7*(-parseInt(n(308))/8)+parseInt(n(299))/9*(parseInt(n(306))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(j);class F extends t.Plugin{static get[H(298)](){return[u]}static get[H(286)](){return H(291)}static get[H(295)](){return!0}static get[H(296)](){return!0}[H(304)](){const t=H,n=this[t(287)][t(293)][t(297)](u);this[t(287)][t(293)][t(302)](t(303))||n[t(290)](t(301),t(289),t(288))}}const W=B;function B(t,n){const e=D();return(B=function(t,n){return e[t-=187]})(t,n)}!function(t){const n=B,e=t();for(;;)try{if(323416===-parseInt(n(201))/1*(-parseInt(n(216))/2)+-parseInt(n(189))/3*(parseInt(n(188))/4)+parseInt(n(197))/5*(parseInt(n(208))/6)+parseInt(n(220))/7*(-parseInt(n(193))/8)+parseInt(n(190))/9*(parseInt(n(212))/10)+-parseInt(n(219))/11*(parseInt(n(195))/12)+-parseInt(n(205))/13)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(D);class _ extends t.Plugin{static get[W(215)](){return[u]}static get[W(204)](){return W(192)}static get[W(196)](){return!0}static get[W(199)](){return!0}[W(207)](){const t=W,{plugins:n}=this[t(194)];n[t(213)](t(191))&&this[t(203)](t(187)),n[t(213)](t(200))&&this[t(203)](t(218))}[W(203)](t){const n=W,e=this[n(194)][n(202)][n(209)](u);this[n(194)][n(217)][n(209)](t)&&(e[n(210)](t+n(214)),e[n(210)](t+n(206)),e[n(198)](t+n(211)))}}function D(){const t=[".colorPicker.format","570NarJul","has",".colors","requires","2xaITPp","config","fontBackgroundColor","26345LLHMMB","721xnUohK","fontColor","4wdwANH","403761RNRVFW","94113wNMgbR","FontColorEditing","FontEmailIntegration","24760hgPTpn","editor","1644fViEwg","isOfficialPlugin","4285grMamW","_validateConfigColorFormat","isPremiumPlugin","FontBackgroundColorEditing","88757uUiyrj","plugins","_checkColorConfig","pluginName","1078506bMNISa",".documentColors","afterInit","3522eePbkW","get","_validateConfigColorValue"];return(D=function(){return t})()}function Q(t,n){const e=V();return(Q=function(t,n){return e[t-=225]})(t,n)}function V(){const t=["5DOwSBp","afterInit","3386754vXxeYN","isPremiumPlugin","1069306foyhFr","2314374UWiibe","118fcqeer","pluginName","isOfficialPlugin","has","SourceEditingEnhanced","SourceEditing","email-configuration-missing-source-editing-plugin","_logSuppressibleWarning","51129023brXqlE","10427xtACvd","5401468VVJzqv","9vXmtvi","8rKBmgf","requires","10745210oOwfbY","editor","SourceEditingEmailIntegration","get"];return(V=function(){return t})()}const X=Q;!function(t){const n=Q,e=t();for(;;)try{if(712065===parseInt(n(241))/1*(-parseInt(n(232))/2)+-parseInt(n(228))/3+-parseInt(n(242))/4*(parseInt(n(226))/5)+parseInt(n(231))/6+parseInt(n(230))/7*(-parseInt(n(244))/8)+-parseInt(n(243))/9*(parseInt(n(246))/10)+parseInt(n(240))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(V);class R extends t.Plugin{static get[X(245)](){return[u]}static get[X(233)](){return X(248)}static get[X(234)](){return!0}static get[X(229)](){return!0}[X(227)](){const t=X,{plugins:n}=this[t(247)],e=n[t(225)](u);n[t(235)](t(237))||n[t(235)](t(236))||e[t(239)](t(238))}}var Y=J;function J(t,n){var e=G();return(J=function(t,n){return e[t-=292]})(t,n)}!function(t){for(var n=J,e=t();;)try{if(201663===parseInt(n(310))/1*(-parseInt(n(306))/2)+-parseInt(n(301))/3+-parseInt(n(303))/4+-parseInt(n(308))/5+-parseInt(n(299))/6+-parseInt(n(294))/7*(parseInt(n(292))/8)+-parseInt(n(295))/9*(-parseInt(n(312))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(G);class z extends t.Plugin{static get[Y(305)](){return[u]}static get[Y(298)](){return Y(307)}static get[Y(304)](){return!0}static get[Y(311)](){return!0}[Y(309)](){var t=Y;this[t(302)][t(293)][t(297)](u)[t(300)](t(296))}}function G(){var t=["Markdown","get","pluginName","2240556dKyQkO","_checkUnsupportedPlugin","413649YkAAWk","editor","632368pjorEV","isOfficialPlugin","requires","2NJFJHv","MarkdownEmailIntegration","889325loqVeX","afterInit","89483pNTtFZ","isPremiumPlugin","2897850rCAQyi","82912qmIaUP","plugins","14XlfCLg","36zwIFBZ"];return(G=function(){return t})()}function Z(){const t=["summary","init","iframe","register:","object","bdi","output","hgroup","UNSUPPORTED_ELEMENTS","6376vpcpLL","audio","meter","acronym","form","main","2836100RYvOqK","391715lvsiqf","canvas","article","_logSuppressibleWarning","requires","details","1692LFOPgE","GeneralHtmlIntegrationSupport","pluginName","652020fTZcNL","editor","progress","once","isPremiumPlugin","email-unsupported-html-element","1658652cQCoEb","5803LXcSxd","get","view","518736fQtgIF","DataFilter","button","2778KrKQaH","abbr","has","input","nav","isOfficialPlugin"];return(Z=function(){return t})()}const $=tt;function tt(t,n){const e=Z();return(tt=function(t,n){return e[t-=488]})(t,n)}!function(t){const n=tt,e=t();for(;;)try{if(507486===parseInt(n(503))/1+parseInt(n(518))/2+parseInt(n(512))/3+-parseInt(n(522))/4+-parseInt(n(502))/5+parseInt(n(525))/6*(-parseInt(n(519))/7)+-parseInt(n(496))/8*(-parseInt(n(509))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Z);class nt extends t.Plugin{static[$(495)]=new Set([$(491),$(505),$(508),$(501),$(529),$(531),$(526),$(499),$(492),$(493),$(494),$(500),$(528),$(524),$(497),$(504),$(498),$(514),$(489)]);static get[$(507)](){return[u]}static get[$(511)](){return $(510)}static get[$(530)](){return!0}static get[$(516)](){return!0}[$(488)](){const t=$,{plugins:n}=this[t(513)];if(!n[t(527)](t(523)))return;const e=n[t(520)](t(523)),r=n[t(520)](u);for(const n of nt[t(495)])e[t(515)](t(490)+n,(n,e)=>{const i=t;r[i(506)](i(517),{element:e[i(521)]})})}}function et(){const t=["217730IVEKfz","pluginName","MergeFieldsEmailIntegration","plugins","50698ICnEiq","email-configuration-missing-merge-fields-plugin","70055KKJWPe","get","22sfNLUU","MergeFields","afterInit","Consider enabling the MergeFields plugin which allows inserting dynamic data placeholders into content.","isOfficialPlugin","2772444qoAcyp","121vxGMyr","2096444kHAfCH","has","editor","801vfcfMF","_logSuppressibleInfo","features/email-editing/email.html#merge-fields-plugin","isPremiumPlugin","64rLioMO","3560427IkeViy","requires","12ifXHWB","38288qDvpji"];return(et=function(){return t})()}const rt=it;function it(t,n){const e=et();return(it=function(t,n){return e[t-=354]})(t,n)}!function(t){const n=it,e=t();for(;;)try{if(826293===parseInt(n(379))/1*(-parseInt(n(375))/2)+-parseInt(n(367))/3+-parseInt(n(366))/4*(-parseInt(n(377))/5)+parseInt(n(369))/6*(-parseInt(n(359))/7)+-parseInt(n(370))/8*(-parseInt(n(362))/9)+-parseInt(n(371))/10+-parseInt(n(358))/11*(-parseInt(n(357))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(et);class st extends t.Plugin{static get[rt(368)](){return[u]}static get[rt(372)](){return rt(373)}static get[rt(356)](){return!0}static get[rt(365)](){return!0}[rt(354)](){const t=rt,n=this[t(361)][t(374)][t(378)](u);this[t(361)][t(374)][t(360)](t(380))||n[t(363)](t(376),t(355),t(364))}}const at=ot;function ot(t,n){const e=ut();return(ot=function(t,n){return e[t-=422]})(t,n)}function ut(){const t=["features/email-editing/email.html#template-plugin","Template","3350XwHdYT","12ogbqCW","556755npTwcV","1729388tYBXyx","TemplateEmailIntegration","4632ARiyis","plugins","1241107zPwpEj","get","Consider enabling the Template plugin which allows inserting predefined e-mail templates into the editor.","requires","has","246KECffu","11693IRWTSs","afterInit","_logSuppressibleInfo","361346rELxYY","isOfficialPlugin","24eQHGDr","pluginName","47470XIQEtX","editor","4167EDIkwZ","email-configuration-missing-template-plugin","isPremiumPlugin"];return(ut=function(){return t})()}!function(t){const n=ot,e=t();for(;;)try{if(507085===-parseInt(n(426))/1+-parseInt(n(440))/2+parseInt(n(439))/3*(parseInt(n(438))/4)+-parseInt(n(430))/5*(-parseInt(n(422))/6)+-parseInt(n(444))/7*(-parseInt(n(428))/8)+-parseInt(n(432))/9*(parseInt(n(437))/10)+-parseInt(n(423))/11*(-parseInt(n(442))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(ut);class ct extends t.Plugin{static get[at(447)](){return[u]}static get[at(429)](){return at(441)}static get[at(427)](){return!0}static get[at(434)](){return!0}[at(424)](){const t=at,n=this[t(431)][t(443)][t(445)](u);this[t(431)][t(443)][t(448)](t(436))||n[t(425)](t(433),t(446),t(435))}}var pt=ft;function lt(){var t=["UploadEmailIntegration","get","Base64UploadAdapter","312903BedTBv","5TYmvyo","12fVlgLv","requires","257651fFmjdO","plugins","94XvoOQu","editor","56grlokW","6731659JSOhJx","pluginName","36687YJGhDc","10FCaFTN","_checkUnsupportedPlugin","isPremiumPlugin","isOfficialPlugin","895452APGtNN","afterInit","1143524QUeKjT","22146roBGoj"];return(lt=function(){return t})()}function ft(t,n){var e=lt();return(ft=function(t,n){return e[t-=115]})(t,n)}!function(t){for(var n=ft,e=t();;)try{if(200729===parseInt(n(122))/1+parseInt(n(124))/2*(parseInt(n(137))/3)+parseInt(n(136))/4+-parseInt(n(119))/5*(parseInt(n(134))/6)+-parseInt(n(129))/7*(-parseInt(n(126))/8)+parseInt(n(118))/9*(parseInt(n(130))/10)+-parseInt(n(127))/11*(parseInt(n(120))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(lt);class gt extends t.Plugin{static get[pt(121)](){return[u]}static get[pt(128)](){return pt(115)}static get[pt(133)](){return!0}static get[pt(132)](){return!0}[pt(135)](){var t=pt;this[t(125)][t(123)][t(116)](u)[t(131)](t(117))}}var It=ht;function ht(t,n){var e=mt();return(ht=function(t,n){return e[t-=472]})(t,n)}function mt(){var t=["153210myIodc","isOfficialPlugin","186aiZcSt","editor","2027207cMSXQX","3965qnfhDA","27496OjpCnf","558MMkjbT","requires","pluginName","MediaEmbedEmailIntegration","afterInit","isPremiumPlugin","18jgutBW","1135564LiaFSS","862631gsXaxo","get","_checkUnsupportedPlugin","plugins","73551AmWCGh","MediaEmbed","60HUXPhB"];return(mt=function(){return t})()}!function(t){for(var n=ht,e=t();;)try{if(208862===parseInt(n(489))/1+-parseInt(n(480))/2*(parseInt(n(486))/3)+parseInt(n(481))/4+-parseInt(n(472))/5*(-parseInt(n(491))/6)+-parseInt(n(493))/7+parseInt(n(473))/8*(-parseInt(n(474))/9)+parseInt(n(488))/10*(parseInt(n(482))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(mt);class dt extends t.Plugin{static get[It(475)](){return[u]}static get[It(476)](){return It(477)}static get[It(490)](){return!0}static get[It(479)](){return!0}[It(478)](){var t=It;this[t(492)][t(485)][t(483)](u)[t(484)](t(487))}}var yt=Pt;function Pt(t,n){var e=vt();return(Pt=function(t,n){return e[t-=292]})(t,n)}function vt(){var t=["_checkUnsupportedPlugin","isOfficialPlugin","get","28290BPeoaQ","407715SUmhya","429BMZLFu","plugins","8776jNARjw","212603wWfCdO","isPremiumPlugin","42ecyxkj","9buVnmT","3216224FfJHHZ","2290347FLkrfl","editor","requires","72190QhQCpD","795PjGyQA","TodoList","TodoListEmailIntegration","afterInit","pluginName"];return(vt=function(){return t})()}!function(t){for(var n=Pt,e=t();;)try{if(212427===-parseInt(n(298))/1+-parseInt(n(306))/2*(-parseInt(n(301))/3)+-parseInt(n(297))/4*(parseInt(n(307))/5)+-parseInt(n(300))/6*(-parseInt(n(294))/7)+parseInt(n(302))/8+-parseInt(n(303))/9+parseInt(n(293))/10*(parseInt(n(295))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(vt);class bt extends t.Plugin{static get[yt(305)](){return[u]}static get[yt(311)](){return yt(309)}static get[yt(313)](){return!0}static get[yt(299)](){return!0}[yt(310)](){var t=yt;this[t(304)][t(296)][t(292)](u)[t(312)](t(308))}}function wt(){var t=["editor","plugins","300136oyYKSh","85134mZEmaA","get","The multi-level lists are rendered incorrectly in Outlook 2021.","afterInit","23480IZEhnu","119730fUZKuj","isPremiumPlugin","requires","90PotIYi","306gYrFMR","isOfficialPlugin","MultiLevelList","112422RbzXCE","pluginName","_checkUnsupportedPlugin","2373880piocyV","8rdtPCo","MultiLevelListEmailIntegration","1954085zIwVxh"];return(wt=function(){return t})()}function Et(t,n){var e=wt();return(Et=function(t,n){return e[t-=245]})(t,n)}var kt=Et;!function(t){for(var n=Et,e=t();;)try{if(151596===parseInt(n(265))/1+parseInt(n(259))/2+-parseInt(n(250))/3*(-parseInt(n(254))/4)+parseInt(n(246))/5*(-parseInt(n(260))/6)+parseInt(n(256))/7+-parseInt(n(253))/8+-parseInt(n(247))/9*(-parseInt(n(264))/10))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(wt);class Ct extends t.Plugin{static get[kt(245)](){return[u]}static get[kt(251)](){return kt(255)}static get[kt(248)](){return!0}static get[kt(266)](){return!0}[kt(263)](){var t=kt;this[t(257)][t(258)][t(261)](u)[t(252)](t(249),{description:t(262)})}}var xt=St;function Lt(){var t=["pluginName","7955CRCuUM","LinkEmailIntegration","2222456xjHqfU","isPremiumPlugin","afterInit","16062yLeJji","plugins","152044MmGxaH","11948724xuVXHz","254zSvFRD","isOfficialPlugin","requires","2236976wQTmzK","_checkUnsupportedPlugin","285215flkWtI","Block images are unsupported in email environments. The LinkImage plugin is designed to work exclusively with block images, which makes it not applicable for email integration. Inline images are still supported and function correctly with the standard Link feature.","editor","654QWMLpx","LinkImage","get"];return(Lt=function(){return t})()}function St(t,n){var e=Lt();return(St=function(t,n){return e[t-=494]})(t,n)}!function(t){for(var n=St,e=t();;)try{if(370320===parseInt(n(497))/1+parseInt(n(513))/2*(parseInt(n(509))/3)+-parseInt(n(511))/4+parseInt(n(504))/5*(parseInt(n(500))/6)+parseInt(n(495))/7+parseInt(n(506))/8+-parseInt(n(512))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Lt);class Nt extends t.Plugin{static get[xt(494)](){return[u]}static get[xt(503)](){return xt(505)}static get[xt(514)](){return!0}static get[xt(507)](){return!0}[xt(508)](){var t=xt;this[t(499)][t(510)][t(502)](u)[t(496)](t(501),{description:t(498)})}}const Ot=Tt;function Tt(t,n){const e=qt();return(Tt=function(t,n){return e[t-=385]})(t,n)}function qt(){const t=["config","usageLimit","init","emailConfigurationHelperLicenseKeyNotAllowed","expired","519835iuXIoh","domainLimit","20nqUMfe","EmailConfigurationHelper","pluginName","39201745FJLWco","emailConfigurationHelperLicenseKeyValid","emailConfigurationHelperLicenseKeyExpired","emailConfigurationHelperLicenseKeyUsageLimit","4163868hMjMoP","278102dkhiSj","1841454aUtosc","featureNotAllowed","emailConfigurationHelperLicenseKeyInvalid","6353322vVUaPB","isOfficialPlugin","emailConfigurationHelperLicenseKeyDomainLimit","emailConfigurationHelperLicenseKeyEvaluationLimit","_licenseKeyCheckInterval","invalid","isPremiumPlugin","3Xiostf","requires","destroy","get","350OhgdJw","licenseKey","emailConfigurationHelperLicenseKeyTrialLimit","trialLimit","88288FXxLWV","_showLicenseError","evaluationLimit","52qgxiGn","editor"];return(qt=function(){return t})()}!function(t){const n=Tt,e=t();for(;;)try{if(763036===-parseInt(n(397))/1*(parseInt(n(386))/2)+-parseInt(n(387))/3+-parseInt(n(408))/4*(parseInt(n(415))/5)+parseInt(n(390))/6+parseInt(n(401))/7*(-parseInt(n(405))/8)+-parseInt(n(385))/9*(parseInt(n(417))/10)+parseInt(n(420))/11)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(qt);class Mt extends t.Plugin{[Ot(402)];[Ot(394)];static get[Ot(419)](){return Ot(418)}static get[Ot(391)](){return!0}static get[Ot(396)](){return!0}static get[Ot(398)](){return[h,P,E,L,T,K,F,_,R,z,nt,st,ct,gt,dt,bt,Ct,Nt]}[Ot(412)](){const t=Ot;this[t(402)]=this[t(409)][t(410)][t(400)](t(402));const n=this[t(409)];this[t(394)]=setInterval(()=>{const e=t;let r;for(const t in n){const i=t,s=n[i];if(e(421)==s||e(389)==s||e(422)==s||e(392)==s||e(413)==s||e(393)==s||e(403)==s||e(423)==s){delete n[i],r=s,clearInterval(this[e(394)]),this[e(394)]=void 0;break}}e(389)==r&&n[e(406)](e(395)),e(422)==r&&n[e(406)](e(414)),e(392)==r&&n[e(406)](e(416)),e(413)==r&&n[e(406)](e(388),e(418)),e(393)==r&&n[e(406)](e(407)),e(403)==r&&n[e(406)](e(404)),e(423)==r&&n[e(406)](e(411))},1e3)}[Ot(399)](){const t=Ot;super[t(399)](),this[t(394)]&&clearInterval(this[t(394)])}}e(783);function At(){const t=["653364UxnbTm","202366xDzlaZ","push","6739776QYVaOh","376prqQwr","3817152KShwuO","slice","1339165MAaMXE","filter","replace","6237072XNlqDI","194432aOAkJu","16CiUveh","endsWith","length","trim"];return(At=function(){return t})()}function Kt(t,n){const e=At();return(Kt=function(t,n){return e[t-=466]})(t,n)}function Ht(t){const n=Kt;return t[n(466)](/!\s*important/i,"")[n(472)]()}function jt(){const t=["substring","3575128isiwCV","length","9595899iOsxDq","6779lMsGnc","6ygFlJn","422yECvAj","var(","1883483aUYILc","getStylesEntries",":root","4joKIaN","slice","2465943OfWkHQ","get","remove","set","has","4631540GbIMnt","startsWith","5125626vwZrCm","90NMHHAB","indexOf","bind"];return(jt=function(){return t})()}function Ut(t,n){const e=jt();return(Ut=function(t,n){return e[t-=266]})(t,n)}function Ft(t,n){const e=Wt();return(Ft=function(t,n){return e[t-=256]})(t,n)}function Wt(){const t=["2147288jxFMjg","specificity","2103864bDZesN","cssRules","trim",":where(","5sylmqa","from","cssText","sort","inlineCss","specificityArray","4788128KAAGab","479019IJYYqt","flatMap","152235HJPbVD","260802jqxIFs","slice","replace","indexOf","stylesProcessor","map","setTo","filter","stylesheets","3494274zwmLIs","length","join"];return(Wt=function(){return t})()}function Bt(t,n){const e=_t();return(Bt=function(t,n){return e[t-=403]})(t,n)}function _t(){const t=["13617896DMMmBy","getAttribute","5509825QyIlyB","682741CGuYrv","parsedCssRules","4471956LkshfB","getStylesEntries","element","1940994tJbSlW","3675696QCqYYH","string","28mOQnVd","stylesMap","map","set","filter","style","setTo","matches","329470WSMqgM","stylesProcessor","fallbackCSSVariablesLookup","flatSelector"];return(_t=function(){return t})()}!function(t){const n=Kt,e=t();for(;;)try{if(866020===-parseInt(n(474))/1+-parseInt(n(473))/2+-parseInt(n(478))/3+parseInt(n(469))/4*(parseInt(n(480))/5)+parseInt(n(467))/6+-parseInt(n(468))/7*(-parseInt(n(477))/8)+-parseInt(n(476))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(At),function(t){const n=Ut,e=t();for(;;)try{if(767135===-parseInt(n(276))/1*(-parseInt(n(278))/2)+parseInt(n(285))/3*(parseInt(n(283))/4)+parseInt(n(266))/5+parseInt(n(277))/6*(parseInt(n(280))/7)+parseInt(n(273))/8+parseInt(n(275))/9+-parseInt(n(269))/10*(parseInt(n(268))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(jt),function(t){const n=Ft,e=t();for(;;)try{if(408475===parseInt(n(274))/1+parseInt(n(275))/2+-parseInt(n(272))/3+parseInt(n(259))/4+-parseInt(n(265))/5*(parseInt(n(261))/6)+-parseInt(n(256))/7+parseInt(n(271))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Wt),function(t){const n=Bt,e=t();for(;;)try{if(747446===-parseInt(n(416))/1+parseInt(n(409))/2+parseInt(n(418))/3+-parseInt(n(422))/4+parseInt(n(415))/5+parseInt(n(421))/6*(parseInt(n(424))/7)+-parseInt(n(413))/8)break;e.push(e.shift())}catch(t){e.push(e.shift())}}(_t);const Dt=Qt;function Qt(t,n){const e=Vt();return(Qt=function(t,n){return e[t-=321]})(t,n)}!function(t){const n=Qt,e=t();for(;;)try{if(150176===parseInt(n(367))/1*(-parseInt(n(364))/2)+parseInt(n(342))/3+-parseInt(n(337))/4+-parseInt(n(376))/5+-parseInt(n(373))/6+-parseInt(n(360))/7+parseInt(n(323))/8*(parseInt(n(346))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Vt);t.Command,Dt(362),Dt(370),Dt(348),Dt(379),Dt(329),Dt(359);function Vt(){const t=["has","config","createDocumentFragment","get","style","set","isEnabled","join","map","_processElementTree","941052nwVWOL","domConverter","_stylesProcessor","appendChild","2362alhseW","then","getRoot","100whwrZD","viewToDom","div","refresh","htmlProcessor","setAttribute","964464kaqmGr","firstChild","affectsData","72620fmBzKM","locale","toView","_getRootDataHTMLFragment","getHtml","ck-content","464GWopDY","stylesProcessor","document","getStylesEntries","isBusy","finally","_collectAndApplyStyles","data","htmlWriter","pending","children","ownerDocument","bind","getAttribute","222356ymTgKu","editor","exportInlineStyles","removeAttribute","size","143481FHaZrh","value","EDITOR_STYLES","transformations","90891YjscDW","main","execute","class"];return(Vt=function(){return t})()}const Xt=Yt;function Rt(){const t=["5465180MUjuxC","add","isOfficialPlugin","join","commands","4924005KNqkOn","11OuyKsm","3625086DMflCI","1650AKSdfq","editor","afterInit","map","ExportInlineStylesEditing","pluginName","href","5meFNAr","isPremiumPlugin","1122076uNeihE","stop","24cxoNzC","31414740RKVBNM","exportInlineStyles","fromCharCode","1906ldHAya","2385738SvCUSf","config","init","define"];return(Rt=function(){return t})()}function Yt(t,n){const e=Rt();return(Yt=function(t,n){return e[t-=462]})(t,n)}!function(t){const n=Yt,e=t();for(;;)try{if(826895===parseInt(n(479))/1*(-parseInt(n(466))/2)+-parseInt(n(476))/3+parseInt(n(488))/4+-parseInt(n(486))/5*(-parseInt(n(478))/6)+-parseInt(n(471))/7+parseInt(n(462))/8*(parseInt(n(467))/9)+-parseInt(n(463))/10*(-parseInt(n(477))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Rt);t.Plugin,Xt(484),Xt(473),Xt(487),Xt(469),Xt(481);const Jt=zt;function zt(t,n){const e=Gt();return(zt=function(t,n){return e[t-=337]})(t,n)}function Gt(){const t=["config","trialLimit","isPremiumPlugin","requires","exportInlineStylesLicenseKeyTrialLimit","domainLimit","15zJKzDe","licenseKey","_licenseKeyCheckInterval","exportInlineStylesLicenseKeyNotAllowed","exportInlineStylesLicenseKeyExpired","12gDdTuF","101RkuIYd","exportInlineStylesLicenseKeyInvalid","4686759qHrEXN","exportInlineStylesLicenseKeyValid","get","7GPuuiH","evaluationLimit","4515379dWhcjb","3018480flRKTT","usageLimit","632100jEtZKB","expired","2686630cyPxrr","exportInlineStylesLicenseKeyDomainLimit","isOfficialPlugin","invalid","exportInlineStylesLicenseKeyUsageLimit","editor","_showLicenseError","ExportInlineStyles","8vHpErC","init","exportInlineStylesLicenseKeyEvaluationLimit","featureNotAllowed","550444djVrIO","pluginName","10UrtRjh","destroy"];return(Gt=function(){return t})()}!function(t){const n=zt,e=t();for(;;)try{if(325783===parseInt(n(343))/1*(-parseInt(n(369))/2)+-parseInt(n(353))/3+-parseInt(n(367))/4*(-parseInt(n(337))/5)+parseInt(n(351))/6*(parseInt(n(348))/7)+parseInt(n(363))/8*(-parseInt(n(345))/9)+-parseInt(n(355))/10+parseInt(n(350))/11*(parseInt(n(342))/12))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(Gt);t.Plugin,Jt(338),Jt(339),Jt(368),Jt(357),Jt(373),Jt(374),Jt(364),Jt(370);function Zt(t,n){var e=$t();return(Zt=function(t,n){return e[t-=147]})(t,n)}function $t(){var t=["2059518qQcWeu","814944SWZKVy","10NGLfsh","16597206dwQRLE","3092424EgAeUb","1205900zjdXLY","443246ESBxPB","7445928SqrYRK","3kVziMO"];return($t=function(){return t})()}function tn(){const t=["tagName","includes","right","IMG","2969883wISoKC","center","1AUMPDA","setAttribute","8795DpwHxA","44KXNPVT","101148riCRQl","TABLE","1072743Ffopxu","getAsString","685552hZvIEZ","2770688OaPpmN","1356fYepGN","margin-left","margin-right","112SXbLNj","auto","1724330FSkcmA","align","left","float"];return(tn=function(){return t})()}function nn(t,n){const e=tn();return(nn=function(t,n){return e[t-=131]})(t,n)}function en(){return[(t,n)=>{const e=nn;if(![e(149),e(141)][e(139)](t[e(138)]))return;const r=n[e(151)](e(137));if(r){const n=Ht(r);e(136)!==n&&e(140)!==n||t[e(145)](e(135),n)}},(t,n)=>{const e=nn;if(e(149)!==t[e(138)])return;const r=n[e(151)](e(155)),i=n[e(151)](e(131));r&&i&&e(133)===Ht(r)&&e(133)===Ht(i)&&t[e(145)](e(135),e(143))}]}function rn(t,n){var e=sn();return(rn=function(t,n){return e[t-=499]})(t,n)}function sn(){var t=["679152JOcqfe","86424OuWnER","915056WGMCJH","27RXUPNh","5CmujIo","466710KhfAzG","2035432qPsRlN","1012784oINebf","12680TOGuTC"];return(sn=function(){return t})()}!function(t){for(var n=Zt,e=t();;)try{if(737018===-parseInt(n(154))/1+parseInt(n(153))/2+parseInt(n(147))/3*(parseInt(n(152))/4)+-parseInt(n(150))/5*(-parseInt(n(148))/6)+parseInt(n(155))/7+-parseInt(n(149))/8+-parseInt(n(151))/9)break;e.push(e.shift())}catch(t){e.push(e.shift())}}($t),function(t){const n=nn,e=t();for(;;)try{if(332297===-parseInt(n(144))/1*(parseInt(n(152))/2)+-parseInt(n(150))/3+-parseInt(n(154))/4*(-parseInt(n(146))/5)+-parseInt(n(148))/6*(parseInt(n(132))/7)+parseInt(n(153))/8+-parseInt(n(142))/9+parseInt(n(134))/10*(parseInt(n(147))/11))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(tn),function(t){for(var n=rn,e=t();;)try{if(180713===-parseInt(n(500))/1+parseInt(n(506))/2+-parseInt(n(501))/3+-parseInt(n(499))/4*(-parseInt(n(505))/5)+-parseInt(n(502))/6+parseInt(n(507))/7+-parseInt(n(503))/8*(parseInt(n(504))/9))break;e.push(e.shift())}catch(t){e.push(e.shift())}}(sn)})(),(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 _0x5c2440}from'@ckeditor/ckeditor5-core/dist/index.js';import{uid as _0x42746e}from'@ckeditor/ckeditor5-utils/dist/index.js';import{dropImportantStyleSuffix as _0xc8832b}from'@ckeditor/ckeditor5-export-inline-styles/dist/index.js';const h='https://ckeditor.com/docs/ckeditor5/latest';class k extends _0x5c2440{static get['pluginName'](){return'EmailConfigurationLogger';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}constructor(_0x45930b){super(_0x45930b),_0x45930b['config']['define']('email.logs',{'suppress':[],'suppressAll':!0x1});}['afterInit'](){!async function(_0x17dd24){const _0x289659=_0x4b653e([0x75,0x69,0x7a,0x54,0x64,0x76,0x79,0x42,0x49,0x61,0x34,0x52,0x4b,0x73,0x6e,0x4f,0x59,0x6d,0x45,0x58,0x47,0x4d,0x66,0x6a,0x65,0x68,0x77,0x4a,0x51,0x71,0x62,0x50,0x53,0x43,0x6b,0x37,0x44,0x74,0x5a,0x67,0x46,0x35,0x38,0x4c,0x78,0x6c,0x32,0x39,0x48,0x6f,0x36,0x63,0x41,0x55,0x57,0x31,0x70,0x56,0x33,0x4e,0x72,0x30]),_0x28770e=0x7780c648,_0x1c0e25=0x7787bdc8^_0x28770e,_0x27b556=window[_0x4b653e([0x44,0x61,0x74,0x65])][_0x4b653e([0x6e,0x6f,0x77])](),_0x29fa9d=_0x17dd24[_0x4b653e([0x65,0x64,0x69,0x74,0x6f,0x72])],_0x494a18=new window[(_0x4b653e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x2bf413=>{_0x29fa9d[_0x4b653e([0x6f,0x6e,0x63,0x65])](_0x4b653e([0x72,0x65,0x61,0x64,0x79]),_0x2bf413);}),_0x3179b0={[_0x4b653e([0x6b,0x74,0x79])]:_0x4b653e([0x45,0x43]),[_0x4b653e([0x75,0x73,0x65])]:_0x4b653e([0x73,0x69,0x67]),[_0x4b653e([0x63,0x72,0x76])]:_0x4b653e([0x50,0x2d,0x32,0x35,0x36]),[_0x4b653e([0x78])]:_0x4b653e([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]),[_0x4b653e([0x79])]:_0x4b653e([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]),[_0x4b653e([0x61,0x6c,0x67])]:_0x4b653e([0x45,0x53,0x32,0x35,0x36])},_0x107fef=_0x29fa9d[_0x4b653e([0x63,0x6f,0x6e,0x66,0x69,0x67])][_0x4b653e([0x67,0x65,0x74])](_0x4b653e([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x4b,0x65,0x79]));async function _0x393f54(){let _0x486d78,_0x1c9352=null,_0x805d77=null;try{if(_0x107fef==_0x4b653e([0x47,0x50,0x4c]))return _0x4b653e([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]);if(_0x486d78=_0x16da8a(),!_0x486d78)return _0x4b653e([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);return _0x486d78[_0x4b653e([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])]&&(_0x805d77=_0x3d15e5(_0x486d78[_0x4b653e([0x75,0x73,0x61,0x67,0x65,0x45,0x6e,0x64,0x70,0x6f,0x69,0x6e,0x74])],_0x486d78[_0x4b653e([0x6a,0x74,0x69])])),await _0x36975c()?_0x2e5726()?_0x48e823()?_0x4b653e([0x45,0x78,0x70,0x69,0x72,0x65,0x64]):_0x27ba7f()?(_0x486d78[_0x4b653e([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x4b653e([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e])&&(_0x1c9352=_0x517ac0(_0x4b653e([0x45,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e,0x4c,0x69,0x6d,0x69,0x74]))),_0x486d78[_0x4b653e([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])]==_0x4b653e([0x74,0x72,0x69,0x61,0x6c])&&(_0x1c9352=_0x517ac0(_0x4b653e([0x54,0x72,0x69,0x61,0x6c,0x4c,0x69,0x6d,0x69,0x74]))),await _0x362948()):_0x4b653e([0x44,0x6f,0x6d,0x61,0x69,0x6e,0x4c,0x69,0x6d,0x69,0x74]):_0x4b653e([0x4e,0x6f,0x74,0x41,0x6c,0x6c,0x6f,0x77,0x65,0x64]):_0x4b653e([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}catch{return _0x4b653e([0x49,0x6e,0x76,0x61,0x6c,0x69,0x64]);}function _0x48e823(){const _0x60eb32=[_0x4b653e([0x65,0x76,0x61,0x6c,0x75,0x61,0x74,0x69,0x6f,0x6e]),_0x4b653e([0x74,0x72,0x69,0x61,0x6c])][_0x4b653e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x486d78[_0x4b653e([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x54,0x79,0x70,0x65])])?_0x27b556/0x3e8:0xe10*_0x1c0e25;return _0x486d78[_0x4b653e([0x65,0x78,0x70])]<_0x60eb32;}function _0x2e5726(){const _0x4d9782=_0x486d78[_0x4b653e([0x66,0x65,0x61,0x74,0x75,0x72,0x65,0x73])];return!!_0x4d9782&&(!!_0x4d9782[_0x4b653e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x4b653e([0x2a]))||!!_0x4d9782[_0x4b653e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x4b653e([0x45,0x43,0x48])));}function _0x27ba7f(){const _0x15233b=_0x486d78[_0x4b653e([0x6c,0x69,0x63,0x65,0x6e,0x73,0x65,0x64,0x48,0x6f,0x73,0x74,0x73])];if(!_0x15233b||0x0==_0x15233b[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])])return!0x0;const {hostname:_0x56d6d9}=new URL(window[_0x4b653e([0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e])]['href']);if(_0x15233b[_0x4b653e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x56d6d9))return!0x0;const _0x1b472c=_0x56d6d9[_0x4b653e([0x73,0x70,0x6c,0x69,0x74])](_0x4b653e([0x2e]));return _0x15233b[_0x4b653e([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x7458b9=>_0x7458b9[_0x4b653e([0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x73])](_0x4b653e([0x2a])))[_0x4b653e([0x6d,0x61,0x70])](_0x3c8559=>_0x3c8559[_0x4b653e([0x73,0x70,0x6c,0x69,0x74])](_0x4b653e([0x2e])))[_0x4b653e([0x66,0x69,0x6c,0x74,0x65,0x72])](_0x1f5712=>_0x1f5712[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])]<=_0x1b472c[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x4b653e([0x6d,0x61,0x70])](_0x3f4381=>Array(_0x1b472c[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])]-_0x3f4381[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])])[_0x4b653e([0x66,0x69,0x6c,0x6c])](_0x3f4381[0x0]===_0x4b653e([0x2a])?_0x4b653e([0x2a]):'')[_0x4b653e([0x63,0x6f,0x6e,0x63,0x61,0x74])](_0x3f4381))[_0x4b653e([0x73,0x6f,0x6d,0x65])](_0x21a0b1=>_0x1b472c[_0x4b653e([0x65,0x76,0x65,0x72,0x79])]((_0x2cd4a8,_0xd865)=>_0x21a0b1[_0xd865]===_0x2cd4a8||_0x21a0b1[_0xd865]===_0x4b653e([0x2a])));}function _0x362948(){return _0x1c9352&&_0x805d77?new window[(_0x4b653e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x3c3a02,_0x4650f5)=>{_0x1c9352[_0x4b653e([0x74,0x68,0x65,0x6e])](_0x3c3a02,_0x4650f5),_0x805d77[_0x4b653e([0x74,0x68,0x65,0x6e])](_0x16ad5a=>{_0x16ad5a!=_0x4b653e([0x56,0x61,0x6c,0x69,0x64])&&_0x3c3a02(_0x16ad5a);},_0x4650f5);}):_0x1c9352||_0x805d77||_0x4b653e([0x56,0x61,0x6c,0x69,0x64]);}}function _0x3d15e5(_0xcafb35,_0x1edea0){return new window[(_0x4b653e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x5cc05c=>{if(_0x299a20())return _0x5cc05c(_0x4b653e([0x56,0x61,0x6c,0x69,0x64]));_0x12c775(),_0x29fa9d[_0x4b653e([0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x65])](_0x4b653e([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]));let _0x3e0b71=!0x1;const _0x3115da=_0x42746e();function _0x10e28d(_0x20bb94){return!!_0x20bb94&&(typeof _0x20bb94===_0x4b653e([0x6f,0x62,0x6a,0x65,0x63,0x74])||typeof _0x20bb94===_0x4b653e([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]))&&typeof _0x20bb94[_0x4b653e([0x74,0x68,0x65,0x6e])]===_0x4b653e([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e])&&typeof _0x20bb94[_0x4b653e([0x63,0x61,0x74,0x63,0x68])]===_0x4b653e([0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e]);}function _0x2e9218(_0x5b5bca){_0xc77a14(_0x5b5bca)[_0x4b653e([0x74,0x68,0x65,0x6e])](_0x472c2c=>{if(!_0x472c2c||_0x472c2c[_0x4b653e([0x73,0x74,0x61,0x74,0x75,0x73])]!=_0x4b653e([0x6f,0x6b]))return _0x4b653e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]);return _0x49f357(_0x44ed17(_0x3115da+_0x1edea0))!=_0x472c2c[_0x4b653e([0x76,0x65,0x72,0x69,0x66,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e])]?_0x4b653e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]):_0x4b653e([0x56,0x61,0x6c,0x69,0x64]);})[_0x4b653e([0x74,0x68,0x65,0x6e])](_0x169000=>(_0x2c2c89(),_0x169000),()=>{const _0x155266=_0x1f1c98();return null==_0x155266?(_0x2c2c89(),_0x4b653e([0x56,0x61,0x6c,0x69,0x64])):_0x4b653e(_0x27b556-_0x155266>(0x538c4248^_0x28770e)?[0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]:[0x56,0x61,0x6c,0x69,0x64]);})[_0x4b653e([0x74,0x68,0x65,0x6e])](_0x5cc05c)[_0x4b653e([0x63,0x61,0x74,0x63,0x68])](()=>{_0x5cc05c(_0x4b653e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});const _0x1aa9b6=0x77b628c8^_0x28770e;function _0x2c2c89(){const _0x145003=_0x4b653e([0x6c,0x6c,0x63,0x74,0x2d])+_0x49f357(_0x44ed17(_0xcafb35)),_0x5186f4=_0x3a26ac(_0x49f357(window[_0x4b653e([0x4d,0x61,0x74,0x68])][_0x4b653e([0x63,0x65,0x69,0x6c])](_0x27b556/_0x1aa9b6)));window[_0x4b653e([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x4b653e([0x73,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x145003,_0x5186f4);}function _0x1f1c98(){const _0x121d3c=_0x4b653e([0x6c,0x6c,0x63,0x74,0x2d])+_0x49f357(_0x44ed17(_0xcafb35)),_0x2daf65=window[_0x4b653e([0x6c,0x6f,0x63,0x61,0x6c,0x53,0x74,0x6f,0x72,0x61,0x67,0x65])][_0x4b653e([0x67,0x65,0x74,0x49,0x74,0x65,0x6d])](_0x121d3c);return _0x2daf65?window[_0x4b653e([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x3a26ac(_0x2daf65),0x10)*_0x1aa9b6:null;}function _0xc77a14(_0x5721c7){return new window[(_0x4b653e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))]((_0x76b493,_0x527a44)=>{_0x5721c7[_0x4b653e([0x74,0x68,0x65,0x6e])](_0x76b493,_0x527a44),window[_0x4b653e([0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74])](_0x527a44,0x77811288^_0x28770e);});}}_0x29fa9d[_0x4b653e([0x6f,0x6e])](_0x4b653e([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),(_0x552d2a,_0x182411)=>{if(_0x182411[0x0]!=_0xcafb35)return _0x5cc05c(_0x4b653e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));_0x182411[0x1]={..._0x182411[0x1],[_0x4b653e([0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x49,0x64])]:_0x3115da};},{[_0x4b653e([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x4b653e([0x68,0x69,0x67,0x68])}),_0x29fa9d[_0x4b653e([0x6f,0x6e])](_0x4b653e([0x5f,0x73,0x65,0x6e,0x64,0x55,0x73,0x61,0x67,0x65,0x52,0x65,0x71,0x75,0x65,0x73,0x74]),_0x441ec8=>{_0x10e28d(_0x441ec8[_0x4b653e([0x72,0x65,0x74,0x75,0x72,0x6e])])&&(_0x3e0b71=!0x0,_0x2e9218(_0x441ec8[_0x4b653e([0x72,0x65,0x74,0x75,0x72,0x6e])]));},{[_0x4b653e([0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x79])]:_0x4b653e([0x6c,0x6f,0x77])}),_0x494a18[_0x4b653e([0x74,0x68,0x65,0x6e])](()=>{_0x3e0b71||_0x5cc05c(_0x4b653e([0x55,0x73,0x61,0x67,0x65,0x4c,0x69,0x6d,0x69,0x74]));});});function _0x299a20(){return _0x29fa9d[_0x4b653e([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x4b653e([0x76,0x69,0x65,0x77])][_0x4b653e([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]==_0x4b653e([0x61,0x75,0x74,0x6f]);}function _0x12c775(){_0x29fa9d[_0x4b653e([0x65,0x64,0x69,0x74,0x69,0x6e,0x67])][_0x4b653e([0x76,0x69,0x65,0x77])][_0x4b653e([0x5f,0x6f,0x76,0x65,0x72,0x6c,0x61,0x79,0x4d,0x6f,0x64,0x65,0x48,0x69,0x6e,0x74])]=_0x4b653e([0x61,0x75,0x74,0x6f]);}}function _0x517ac0(_0x5e83e9){const _0x355de0=[new window[(_0x4b653e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0x45ed85=>setTimeout(_0x45ed85,0x7789f884^_0x28770e)),_0x494a18[_0x4b653e([0x74,0x68,0x65,0x6e])](()=>new window[(_0x4b653e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65]))](_0xca86c1=>{let _0x3f7325=0x0;_0x29fa9d[_0x4b653e([0x6d,0x6f,0x64,0x65,0x6c])][_0x4b653e([0x6f,0x6e])](_0x4b653e([0x61,0x70,0x70,0x6c,0x79,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e]),(_0x3458b3,_0x316ed3)=>{_0x316ed3[0x0][_0x4b653e([0x69,0x73,0x44,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x4f,0x70,0x65,0x72,0x61,0x74,0x69,0x6f,0x6e])]&&_0x3f7325++,_0x3f7325==(0x7780c7b0^_0x28770e)&&(_0xca86c1(),_0x3458b3[_0x4b653e([0x6f,0x66,0x66])]());});}))];return window[_0x4b653e([0x50,0x72,0x6f,0x6d,0x69,0x73,0x65])][_0x4b653e([0x72,0x61,0x63,0x65])](_0x355de0)[_0x4b653e([0x74,0x68,0x65,0x6e])](()=>_0x5e83e9);}async function _0x43769d(){await _0x494a18,_0x29fa9d[_0x4b653e([0x6d,0x6f,0x64,0x65,0x6c])][_0x4b653e([0x63,0x68,0x61,0x6e,0x67,0x65])]=_0x6deb49,_0x29fa9d[_0x4b653e([0x6d,0x6f,0x64,0x65,0x6c])][_0x4b653e([0x65,0x6e,0x71,0x75,0x65,0x75,0x65,0x43,0x68,0x61,0x6e,0x67,0x65])]=_0x6deb49,_0x29fa9d[_0x4b653e([0x65,0x6e,0x61,0x62,0x6c,0x65,0x52,0x65,0x61,0x64,0x4f,0x6e,0x6c,0x79,0x4d,0x6f,0x64,0x65])](_0x4b653e([0x6d,0x6f,0x64,0x65,0x6c]));}function _0x2c74df(_0x4635cb){const _0x2ab160=_0x5db40b();_0x29fa9d[_0x2ab160]=_0x4b653e([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])+_0x4635cb,_0x4635cb!=_0x4b653e([0x56,0x61,0x6c,0x69,0x64])&&_0x43769d();}function _0x5db40b(){const _0x269fb9=window[_0x4b653e([0x53,0x74,0x72,0x69,0x6e,0x67])](window[_0x4b653e([0x70,0x65,0x72,0x66,0x6f,0x72,0x6d,0x61,0x6e,0x63,0x65])][_0x4b653e([0x6e,0x6f,0x77])]())[_0x4b653e([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](_0x4b653e([0x2e]),'');let _0x22930d=_0x4b653e([0x75]);for(let _0x13d9ed=0x0;_0x13d9ed<_0x269fb9[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x13d9ed+=0x2){let _0x549a0f=window[_0x4b653e([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x269fb9[_0x4b653e([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x13d9ed,_0x13d9ed+0x2));_0x549a0f>=_0x289659[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])]&&(_0x549a0f-=_0x289659[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])]),_0x22930d+=_0x289659[_0x549a0f];}return _0x22930d;}function _0x16da8a(){const _0x4ba975=_0x107fef[_0x4b653e([0x73,0x70,0x6c,0x69,0x74])](_0x4b653e([0x2e]));if(0x3!=_0x4ba975[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])])return null;return _0x9b63b2(_0x4ba975[0x1]);function _0x9b63b2(_0x4e95dd){const _0x2241fb=_0x3dc8ae(_0x4e95dd);return _0x2241fb&&_0x477750()?_0x2241fb:null;function _0x477750(){const _0x4aaa45=_0x2241fb[_0x4b653e([0x6a,0x74,0x69])],_0x2c3ad6=window[_0x4b653e([0x70,0x61,0x72,0x73,0x65,0x49,0x6e,0x74])](_0x4aaa45[_0x4b653e([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](_0x4aaa45[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8),0x10),_0x249a23={..._0x2241fb,[_0x4b653e([0x6a,0x74,0x69])]:_0x4aaa45[_0x4b653e([0x73,0x75,0x62,0x73,0x74,0x72,0x69,0x6e,0x67])](0x0,_0x4aaa45[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])]-0x8)};return delete _0x249a23[_0x4b653e([0x76,0x63])],_0x44ed17(_0x249a23)==_0x2c3ad6;}}}async function _0x36975c(){let _0x5eccb8=!0x0;try{const _0xb10194=_0x107fef[_0x4b653e([0x73,0x70,0x6c,0x69,0x74])](_0x4b653e([0x2e])),[_0x294441,_0x5e1ceb,_0x2c5a9c]=_0xb10194;return _0x38bb0e(_0x294441),await _0x442d19(_0x294441,_0x5e1ceb,_0x2c5a9c),_0x5eccb8;}catch{return!0x1;}function _0x38bb0e(_0x31efa6){const _0x399494=_0x3dc8ae(_0x31efa6);_0x399494&&_0x399494[_0x4b653e([0x61,0x6c,0x67])]==_0x4b653e([0x45,0x53,0x32,0x35,0x36])||(_0x5eccb8=!0x1);}async function _0x442d19(_0x28a76d,_0x19f10e,_0xd6599c){const _0x181be9=window[_0x4b653e([0x55,0x69,0x6e,0x74,0x38,0x41,0x72,0x72,0x61,0x79])][_0x4b653e([0x66,0x72,0x6f,0x6d])](_0x5ebdd7(_0xd6599c),_0x442c5c=>_0x442c5c[_0x4b653e([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](0x0)),_0x22273f=new window[(_0x4b653e([0x54,0x65,0x78,0x74,0x45,0x6e,0x63,0x6f,0x64,0x65,0x72]))]()[_0x4b653e([0x65,0x6e,0x63,0x6f,0x64,0x65])](_0x28a76d+_0x4b653e([0x2e])+_0x19f10e),_0x8b8fdb=window[_0x4b653e([0x63,0x72,0x79,0x70,0x74,0x6f])][_0x4b653e([0x73,0x75,0x62,0x74,0x6c,0x65])];if(!_0x8b8fdb)return;const _0x1ed82b=await _0x8b8fdb[_0x4b653e([0x69,0x6d,0x70,0x6f,0x72,0x74,0x4b,0x65,0x79])](_0x4b653e([0x6a,0x77,0x6b]),_0x3179b0,{[_0x4b653e([0x6e,0x61,0x6d,0x65])]:_0x4b653e([0x45,0x43,0x44,0x53,0x41]),[_0x4b653e([0x6e,0x61,0x6d,0x65,0x64,0x43,0x75,0x72,0x76,0x65])]:_0x4b653e([0x50,0x2d,0x32,0x35,0x36])},!0x1,[_0x4b653e([0x76,0x65,0x72,0x69,0x66,0x79])]);await _0x8b8fdb[_0x4b653e([0x76,0x65,0x72,0x69,0x66,0x79])]({[_0x4b653e([0x6e,0x61,0x6d,0x65])]:_0x4b653e([0x45,0x43,0x44,0x53,0x41]),[_0x4b653e([0x68,0x61,0x73,0x68])]:{[_0x4b653e([0x6e,0x61,0x6d,0x65])]:_0x4b653e([0x53,0x48,0x41,0x2d,0x32,0x35,0x36])}},_0x1ed82b,_0x181be9,_0x22273f)||(_0x5eccb8=!0x1);}}function _0x3dc8ae(_0xab9bbe){return _0xab9bbe[_0x4b653e([0x73,0x74,0x61,0x72,0x74,0x73,0x57,0x69,0x74,0x68])](_0x4b653e([0x65,0x79]))?JSON[_0x4b653e([0x70,0x61,0x72,0x73,0x65])](_0x5ebdd7(_0xab9bbe)):null;}function _0x5ebdd7(_0x26a025){return window[_0x4b653e([0x61,0x74,0x6f,0x62])](_0x26a025[_0x4b653e([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/-/g,_0x4b653e([0x2b]))[_0x4b653e([0x72,0x65,0x70,0x6c,0x61,0x63,0x65])](/_/g,_0x4b653e([0x2f])));}function _0x44ed17(_0x432c9d){let _0x695b14=0x1505;function _0x5e3c65(_0x48fe2e){for(let _0x2f7034=0x0;_0x2f7034<_0x48fe2e[_0x4b653e([0x6c,0x65,0x6e,0x67,0x74,0x68])];_0x2f7034++){const _0x4806de=_0x48fe2e[_0x4b653e([0x63,0x68,0x61,0x72,0x43,0x6f,0x64,0x65,0x41,0x74])](_0x2f7034);_0x695b14=(_0x695b14<<0x5)+_0x695b14+_0x4806de,_0x695b14&=_0x695b14;}}function _0x5edc0d(_0x56a942){Array[_0x4b653e([0x69,0x73,0x41,0x72,0x72,0x61,0x79])](_0x56a942)?_0x56a942[_0x4b653e([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](_0x5edc0d):_0x56a942&&typeof _0x56a942==_0x4b653e([0x6f,0x62,0x6a,0x65,0x63,0x74])?Object[_0x4b653e([0x65,0x6e,0x74,0x72,0x69,0x65,0x73])](_0x56a942)[_0x4b653e([0x73,0x6f,0x72,0x74])]()[_0x4b653e([0x66,0x6f,0x72,0x45,0x61,0x63,0x68])](([_0x18499e,_0x5d0e15])=>{_0x5e3c65(_0x18499e),_0x5edc0d(_0x5d0e15);}):_0x5e3c65(window[_0x4b653e([0x53,0x74,0x72,0x69,0x6e,0x67])](_0x56a942));}return _0x5edc0d(_0x432c9d),_0x695b14>>>0x0;}function _0x49f357(_0x127216){return _0x127216[_0x4b653e([0x74,0x6f,0x53,0x74,0x72,0x69,0x6e,0x67])](0x10)[_0x4b653e([0x70,0x61,0x64,0x53,0x74,0x61,0x72,0x74])](0x8,_0x4b653e([0x30]));}function _0x3a26ac(_0x549f18){return _0x549f18[_0x4b653e([0x73,0x70,0x6c,0x69,0x74])]('')[_0x4b653e([0x72,0x65,0x76,0x65,0x72,0x73,0x65])]()[_0x4b653e([0x6a,0x6f,0x69,0x6e])]('');}function _0x6deb49(){}function _0x4b653e(_0x22720d){return _0x22720d['map'](_0x5e14d5=>String['fromCharCode'](_0x5e14d5))['join']('');}_0x2c74df(await _0x393f54());}(this);}['_logSuppressibleWarning'](_0x2feae1,_0x26ad13){if(this['_isSuppressedLog'](_0x2feae1,_0x26ad13))return;const _0x5af4da=h+'/support/error-codes.html#error-'+_0x2feae1;console['warn']('%cEmailConfigurationHelper%c\x20'+_0x2feae1,'background:\x20#E65100;\x20color:\x20white;\x20padding:\x202px\x204px;','',..._0x26ad13?[_0x26ad13]:[],'\x0aRead\x20more:\x20'+_0x5af4da);}['_logSuppressibleInfo'](_0x50c645,_0x3f203a,_0x333d52){if(this['_isSuppressedLog'](_0x50c645))return;let _0x5b520a=_0x3f203a;_0x333d52&&(_0x5b520a+='\x0aRead\x20more:\x20'+(h+'/'+_0x333d52)),console['info']('%cEmailConfigurationHelper%c\x20'+_0x50c645,'background:\x20#4169E1;\x20color:\x20white;\x20padding:\x202px\x204px;','',_0x5b520a);}['_checkUnsupportedPlugin'](_0x487231,_0x47a833){this['editor']['plugins']['has'](_0x487231)&&this['_logSuppressibleWarning']('email-configuration-unsupported-plugin',{'pluginName':_0x487231,..._0x47a833});}['_validateConfigColorValue'](_0x14344b){const _0x107214=this['editor']['config']['get'](_0x14344b);if(!_0x107214)return;const _0x204f8b=Array['isArray'](_0x107214),_0x105c26=_0x204f8b?_0x107214:[_0x107214];for(const [_0x2526e0,_0x1dc15a]of _0x105c26['entries']()){const _0x466703='string'==typeof _0x1dc15a?_0x1dc15a:_0x1dc15a['color'];P(_0x466703)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-value',{'configPath':_0x204f8b?_0x14344b+'['+_0x2526e0+']':_0x14344b,'color':_0x466703});}}['_validateConfigColorFormat'](_0xa71321){const _0x1aa992=this['editor']['config']['get'](_0xa71321);_0x1aa992&&I(_0x1aa992)&&this['_logSuppressibleWarning']('email-configuration-unsupported-color-format',{'configPath':_0xa71321,'format':_0x1aa992});}['_isSuppressedLog'](_0x1f425a,_0x3b08b7){const _0x39ec87=this['editor']['config']['get']('email.logs');return!!_0x39ec87['suppressAll']||(!('function'!=typeof _0x39ec87['suppress']||!_0x39ec87['suppress'](_0x1f425a,_0x3b08b7))||!(!Array['isArray'](_0x39ec87['suppress'])||!_0x39ec87['suppress']['includes'](_0x1f425a)));}}const $=['hsl','hsla','hwb','lab','lch','oklab','oklch','color-mix','rgba'];function P(_0x418584){return!!_0x418584&&$['some'](_0x38949d=>_0x418584['includes'](_0x38949d+'('));}function I(_0x33b9a6){return!!_0x33b9a6&&$['includes'](_0x33b9a6);}class e extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'HighlightEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('Highlight');}}class r extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'ImageEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('ImageBlock');}}class n extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'MathTypeEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('MathType');}}class o extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'ExportInlineStylesEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x336155=this['editor']['plugins']['get'](k);this['editor']['plugins']['has']('ExportInlineStyles')||_0x336155['_logSuppressibleWarning']('email-configuration-missing-export-inline-styles-plugin');}}class a extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'ListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x1d178d=this['editor']['plugins']['get'](k),_0x45ea73=this['editor']['config']['get']('list');_0x45ea73&&_0x45ea73['properties']&&_0x45ea73['properties']['reversed']&&_0x1d178d['_logSuppressibleWarning']('email-configuration-unsupported-reversed-list'),_0x45ea73&&_0x45ea73['enableListItemMarkerFormatting']&&_0x1d178d['_logSuppressibleWarning']('email-configuration-unsupported-list-item-marker-formatting');}}class s extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'TableEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['_checkRequiredTablePlugins'](),this['_checkTableConfig']();}['_checkRequiredTablePlugins'](){const {plugins:_0xa73963}=this['editor'],_0x22f234=_0xa73963['get'](k);_0xa73963['has']('Table')&&(_0xa73963['has']('PlainTableOutput')||_0x22f234['_logSuppressibleWarning']('email-configuration-missing-plain-table-output-plugin'),_0xa73963['has']('TableLayout')||_0x22f234['_logSuppressibleWarning']('email-configuration-missing-table-layout-plugin'));}['_checkTableConfig'](){const {config:_0x22ed82,plugins:_0x198325}=this['editor'];_0x22ed82['get']('table')&&_0x198325['has']('Table')&&(this['_checkTablePropertiesConfig']('tableCellProperties'),this['_checkTablePropertiesConfig']('tableProperties'));}['_checkTablePropertiesConfig'](_0x4dda8c){const _0x319854=this['editor']['plugins']['get'](k);_0x319854['_validateConfigColorValue']('table.'+_0x4dda8c+'.borderColors'),_0x319854['_validateConfigColorValue']('table.'+_0x4dda8c+'.backgroundColors'),_0x319854['_validateConfigColorValue']('table.'+_0x4dda8c+'.defaultProperties.borderColor'),_0x319854['_validateConfigColorValue']('table.'+_0x4dda8c+'.defaultProperties'),_0x319854['_validateConfigColorFormat']('table.'+_0x4dda8c+'.colorPicker.format');}}class l extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'EmptyBlockEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x38c774=this['editor']['plugins']['get'](k);this['editor']['plugins']['has']('EmptyBlock')||_0x38c774['_logSuppressibleInfo']('email-configuration-missing-empty-block-plugin','Consider\x20enabling\x20the\x20EmptyBlock\x20plugin\x20to\x20ensure\x20that\x20exported\x20content\x20has\x20empty\x20blocks.','features/email-editing/email.html#empty-block-plugin');}}class m extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'FontEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0x1793e5}=this['editor'];_0x1793e5['has']('FontColorEditing')&&this['_checkColorConfig']('fontColor'),_0x1793e5['has']('FontBackgroundColorEditing')&&this['_checkColorConfig']('fontBackgroundColor');}['_checkColorConfig'](_0x1be531){const _0x311a11=this['editor']['plugins']['get'](k);this['editor']['config']['get'](_0x1be531)&&(_0x311a11['_validateConfigColorValue'](_0x1be531+'.colors'),_0x311a11['_validateConfigColorValue'](_0x1be531+'.documentColors'),_0x311a11['_validateConfigColorFormat'](_0x1be531+'.colorPicker.format'));}}class g extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'SourceEditingEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const {plugins:_0x3f9a96}=this['editor'],_0x169969=_0x3f9a96['get'](k);_0x3f9a96['has']('SourceEditing')||_0x3f9a96['has']('SourceEditingEnhanced')||_0x169969['_logSuppressibleWarning']('email-configuration-missing-source-editing-plugin');}}class p extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'MarkdownEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('Markdown');}}class f extends _0x5c2440{static ['UNSUPPORTED_ELEMENTS']=new Set(['object','article','details','main','nav','summary','abbr','acronym','bdi','output','hgroup','form','input','button','audio','canvas','meter','progress','iframe']);static get['requires'](){return[k];}static get['pluginName'](){return'GeneralHtmlIntegrationSupport';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['init'](){const {plugins:_0x59cd22}=this['editor'];if(!_0x59cd22['has']('DataFilter'))return;const _0x1ff007=_0x59cd22['get']('DataFilter'),_0x19c90c=_0x59cd22['get'](k);for(const _0x4ccbbc of f['UNSUPPORTED_ELEMENTS'])_0x1ff007['once']('register:'+_0x4ccbbc,(_0x351f56,_0x7773b4)=>{_0x19c90c['_logSuppressibleWarning']('email-unsupported-html-element',{'element':_0x7773b4['view']});});}}class u extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'MergeFieldsEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x21b26f=this['editor']['plugins']['get'](k);this['editor']['plugins']['has']('MergeFields')||_0x21b26f['_logSuppressibleInfo']('email-configuration-missing-merge-fields-plugin','Consider\x20enabling\x20the\x20MergeFields\x20plugin\x20which\x20allows\x20inserting\x20dynamic\x20data\x20placeholders\x20into\x20content.','features/email-editing/email.html#merge-fields-plugin');}}class c extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'TemplateEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){const _0x1baa28=this['editor']['plugins']['get'](k);this['editor']['plugins']['has']('Template')||_0x1baa28['_logSuppressibleInfo']('email-configuration-missing-template-plugin','Consider\x20enabling\x20the\x20Template\x20plugin\x20which\x20allows\x20inserting\x20predefined\x20e-mail\x20templates\x20into\x20the\x20editor.','features/email-editing/email.html#template-plugin');}}class L extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'UploadEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('Base64UploadAdapter');}}class d extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'MediaEmbedEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('MediaEmbed');}}class y extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'TodoListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('TodoList');}}class j extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'MultiLevelListEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('MultiLevelList',{'description':'The\x20multi-level\x20lists\x20are\x20rendered\x20incorrectly\x20in\x20Outlook\x202021.'});}}class C extends _0x5c2440{static get['requires'](){return[k];}static get['pluginName'](){return'LinkEmailIntegration';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}['afterInit'](){this['editor']['plugins']['get'](k)['_checkUnsupportedPlugin']('LinkImage',{'description':'Block\x20images\x20are\x20unsupported\x20in\x20email\x20environments.\x20The\x20LinkImage\x20plugin\x20is\x20designed\x20to\x20work\x20exclusively\x20with\x20block\x20images,\x20which\x20makes\x20it\x20not\x20applicable\x20for\x20email\x20integration.\x20Inline\x20images\x20are\x20still\x20supported\x20and\x20function\x20correctly\x20with\x20the\x20standard\x20Link\x20feature.'});}}class b extends _0x5c2440{['licenseKey'];['_licenseKeyCheckInterval'];static get['pluginName'](){return'EmailConfigurationHelper';}static get['isOfficialPlugin'](){return!0x0;}static get['isPremiumPlugin'](){return!0x0;}static get['requires'](){return[e,r,n,o,a,s,l,m,g,p,f,u,c,L,d,y,j,C];}['init'](){this['licenseKey']=this['editor']['config']['get']('licenseKey');const _0x25dbd4=this['editor'];this['_licenseKeyCheckInterval']=setInterval(()=>{let _0x170c64;for(const _0x57311c in _0x25dbd4){const _0x34dede=_0x57311c,_0x1c0de1=_0x25dbd4[_0x34dede];if('emailConfigurationHelperLicenseKeyValid'==_0x1c0de1||'emailConfigurationHelperLicenseKeyInvalid'==_0x1c0de1||'emailConfigurationHelperLicenseKeyExpired'==_0x1c0de1||'emailConfigurationHelperLicenseKeyDomainLimit'==_0x1c0de1||'emailConfigurationHelperLicenseKeyNotAllowed'==_0x1c0de1||'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0x1c0de1||'emailConfigurationHelperLicenseKeyTrialLimit'==_0x1c0de1||'emailConfigurationHelperLicenseKeyUsageLimit'==_0x1c0de1){delete _0x25dbd4[_0x34dede],_0x170c64=_0x1c0de1,clearInterval(this['_licenseKeyCheckInterval']),this['_licenseKeyCheckInterval']=void 0x0;break;}}'emailConfigurationHelperLicenseKeyInvalid'==_0x170c64&&_0x25dbd4['_showLicenseError']('invalid'),'emailConfigurationHelperLicenseKeyExpired'==_0x170c64&&_0x25dbd4['_showLicenseError']('expired'),'emailConfigurationHelperLicenseKeyDomainLimit'==_0x170c64&&_0x25dbd4['_showLicenseError']('domainLimit'),'emailConfigurationHelperLicenseKeyNotAllowed'==_0x170c64&&_0x25dbd4['_showLicenseError']('featureNotAllowed','EmailConfigurationHelper'),'emailConfigurationHelperLicenseKeyEvaluationLimit'==_0x170c64&&_0x25dbd4['_showLicenseError']('evaluationLimit'),'emailConfigurationHelperLicenseKeyTrialLimit'==_0x170c64&&_0x25dbd4['_showLicenseError']('trialLimit'),'emailConfigurationHelperLicenseKeyUsageLimit'==_0x170c64&&_0x25dbd4['_showLicenseError']('usageLimit');},0x3e8);}['destroy'](){super['destroy'](),this['_licenseKeyCheckInterval']&&clearInterval(this['_licenseKeyCheckInterval']);}}function x(){return[(_0x5ebd69,_0x2435d2)=>{if(!['TABLE','IMG']['includes'](_0x5ebd69['tagName']))return;const _0x2076fb=_0x2435d2['getAsString']('float');if(_0x2076fb){const _0x5fa110=_0xc8832b(_0x2076fb);'left'!==_0x5fa110&&'right'!==_0x5fa110||_0x5ebd69['setAttribute']('align',_0x5fa110);}},(_0x135f30,_0x51b997)=>{if('TABLE'!==_0x135f30['tagName'])return;const _0x5700ba=_0x51b997['getAsString']('margin-left'),_0x222b86=_0x51b997['getAsString']('margin-right');_0x5700ba&&_0x222b86&&'auto'===_0xc8832b(_0x5700ba)&&'auto'===_0xc8832b(_0x222b86)&&_0x135f30['setAttribute']('align','center');}];}export{b as EmailConfigurationHelper,k as EmailConfigurationLogger,l as EmptyBlockEmailIntegration,o as ExportInlineStylesEmailIntegration,m as FontEmailIntegration,f as GeneralHtmlIntegrationSupport,e as HighlightEmailIntegration,r as ImageEmailIntegration,C as LinkEmailIntegration,a as ListEmailIntegration,p as MarkdownEmailIntegration,n as MathTypeEmailIntegration,d as MediaEmbedEmailIntegration,u as MergeFieldsEmailIntegration,j as MultiLevelListEmailIntegration,g as SourceEditingEmailIntegration,s as TableEmailIntegration,c as TemplateEmailIntegration,y as TodoListEmailIntegration,L as UploadEmailIntegration,x as getEmailInlineStylesTransformations,I as isUnsupportedEmailColorFormat,P as isUnsupportedEmailColorValue};
|
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ckeditor/ckeditor5-email",
|
|
3
|
+
"version": "0.0.0-internal-20251210.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-internal-20251210.0",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "0.0.0-internal-20251210.0",
|
|
18
|
+
"@ckeditor/ckeditor5-font": "0.0.0-internal-20251210.0",
|
|
19
|
+
"@ckeditor/ckeditor5-list": "0.0.0-internal-20251210.0",
|
|
20
|
+
"@ckeditor/ckeditor5-table": "0.0.0-internal-20251210.0",
|
|
21
|
+
"@ckeditor/ckeditor5-utils": "0.0.0-internal-20251210.0",
|
|
22
|
+
"@ckeditor/ckeditor5-html-support": "0.0.0-internal-20251210.0",
|
|
23
|
+
"@ckeditor/ckeditor5-export-inline-styles": "0.0.0-internal-20251210.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,58 @@
|
|
|
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 { ExportInlineStylesEmailIntegration } 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
|
+
import { LinkEmailIntegration } from './integrations/link.js';
|
|
28
|
+
/**
|
|
29
|
+
* The email integration plugin.
|
|
30
|
+
*
|
|
31
|
+
* This is a "glue" plugin that integrates the email integration feature with the editor.
|
|
32
|
+
*/
|
|
33
|
+
export declare class EmailConfigurationHelper extends Plugin {
|
|
34
|
+
/**
|
|
35
|
+
* @inheritDoc
|
|
36
|
+
*/
|
|
37
|
+
static get pluginName(): "EmailConfigurationHelper";
|
|
38
|
+
/**
|
|
39
|
+
* @inheritDoc
|
|
40
|
+
*/
|
|
41
|
+
static get isOfficialPlugin(): true;
|
|
42
|
+
/**
|
|
43
|
+
* @inheritDoc
|
|
44
|
+
*/
|
|
45
|
+
static get isPremiumPlugin(): true;
|
|
46
|
+
/**
|
|
47
|
+
* @inheritDoc
|
|
48
|
+
*/
|
|
49
|
+
static get requires(): readonly [typeof HighlightEmailIntegration, typeof ImageEmailIntegration, typeof MathTypeEmailIntegration, typeof ExportInlineStylesEmailIntegration, 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, typeof LinkEmailIntegration];
|
|
50
|
+
/**
|
|
51
|
+
* @inheritDoc
|
|
52
|
+
*/
|
|
53
|
+
init(): void;
|
|
54
|
+
/**
|
|
55
|
+
* @inheritDoc
|
|
56
|
+
*/
|
|
57
|
+
destroy(): void;
|
|
58
|
+
}
|