@ckeditor/ckeditor5-collaboration-core 0.0.0-nightly-20230807.0 → 0.0.0-nightly-20230808.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 +1 -1
- package/LICENSE.md +5 -5
- package/README.md +8 -8
- package/package.json +2 -2
- package/src/permissions.js +1 -1
- package/src/users/view/userview.js +1 -1
- package/src/users.js +1 -1
- package/src/utils/common-translations.js +1 -1
- package/src/utils/confirmmixin.js +1 -1
- package/src/utils/confirmview.js +1 -1
- package/src/utils/getdatetimeformatter.js +1 -1
- package/src/utils/getmarkerdomelement.js +1 -1
- package/src/utils/hashobject.js +1 -1
- package/src/utils/sanitizeEditorConfig.js +1 -1
- package/src/utils/trim-html.js +1 -1
package/CHANGELOG.md
CHANGED
@@ -101,4 +101,4 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
101
101
|
|
102
102
|
## 1.0.0 (2018-12-06)
|
103
103
|
|
104
|
-
The initialization of this repository. CKEditor
|
104
|
+
The initialization of this repository. CKEditor 5 collaboration core was extracted from the CKEditor 5 collaboration package. It contains a plugin that supports [user handling](https://ckeditor.com/docs/ckeditor5/latest/features/collaboration/users.html) which is a common part for two collaboration features: [real-time collaboration](https://ckeditor.com/collaboration/real-time/) and [comments](https://ckeditor.com/collaboration/comments/).
|
package/LICENSE.md
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
Software License Agreement
|
2
2
|
==========================
|
3
3
|
|
4
|
-
**CKEditor
|
4
|
+
**CKEditor 5 collaboration core** (https://ckeditor.com/collaboration/)<br>
|
5
5
|
Copyright (c) 2003-2022, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
6
6
|
|
7
|
-
CKEditor
|
7
|
+
CKEditor 5 collaboration core is licensed under a commercial license and is protected by copyright law.
|
8
8
|
We operate on subscription-based licensing terms. For more details about available licensing options please contact us at sales@cksource.com.
|
9
9
|
|
10
|
-
Sources of Intellectual Property Included in CKEditor
|
10
|
+
Sources of Intellectual Property Included in CKEditor 5 collaboration core
|
11
11
|
--------------------------------------------------------------------------
|
12
12
|
|
13
|
-
Where not otherwise indicated, all CKEditor
|
13
|
+
Where not otherwise indicated, all CKEditor 5 collaboration core content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
|
14
14
|
|
15
|
-
The following libraries are included in CKEditor
|
15
|
+
The following libraries are included in CKEditor 5 collaboration core under the [MIT license](https://opensource.org/licenses/MIT):
|
16
16
|
|
17
17
|
* Lo-Dash - Copyright (c) JS Foundation and other contributors https://js.foundation/. Based on Underscore.js, copyright Jeremy Ashkenas,
|
18
18
|
* date-fns - Copyright (c) Sasha Koss.
|
package/README.md
CHANGED
@@ -1,27 +1,27 @@
|
|
1
|
-
# CKEditor
|
1
|
+
# CKEditor 5 collaboration core
|
2
2
|
|
3
3
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-collaboration-core)
|
4
4
|
|
5
|
-
CKEditor
|
5
|
+
CKEditor 5 collaboration core is a low-level API that provides base features to support multiple users working together in a rich text editor. It is used in collaborative features such as [comments](https://ckeditor.com/collaboration/comments/), [track changes](https://ckeditor.com/collaboration/track-changes/) or [real-time collaboration](https://ckeditor.com/collaboration/real-time/) in CKEditor 5.
|
6
6
|
|
7
7
|
## Documentation
|
8
8
|
|
9
|
-
For more information about collaboration features visit [CKEditor
|
9
|
+
For more information about collaboration features visit [CKEditor 5 collaboration features overview documentation](https://ckeditor.com/docs/ckeditor5/latest/features/collaboration/collaboration.html).
|
10
10
|
|
11
|
-
Also, make sure you visit the [CKEditor
|
11
|
+
Also, make sure you visit the [CKEditor 5 changelog](https://github.com/ckeditor/ckeditor5/blob/master/CHANGELOG.md) whenever a new version of the package is released.
|
12
12
|
|
13
13
|
## Getting support
|
14
14
|
|
15
|
-
CKEditor
|
15
|
+
CKEditor 5 collaboration core 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 CKEditor 5 collaboration features with your application.
|
16
16
|
|
17
|
-
As a licensed CKEditor
|
17
|
+
As a licensed CKEditor 5 collaboration features user you can report bugs and request features directly through the CKEditor Ecosystem customer dashboard.
|
18
18
|
|
19
19
|
## License
|
20
20
|
|
21
|
-
**CKEditor
|
21
|
+
**CKEditor 5 collaboration core**<br>
|
22
22
|
Copyright (c) 2003-2022, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
23
23
|
|
24
|
-
CKEditor
|
24
|
+
CKEditor 5 collaboration core is licensed under a commercial license and is protected by copyright law.
|
25
25
|
For more details about available licensing options please contact us at sales@cksource.com.
|
26
26
|
|
27
27
|
### Trademarks
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-collaboration-core",
|
3
|
-
"version": "0.0.0-nightly-
|
3
|
+
"version": "0.0.0-nightly-20230808.0",
|
4
4
|
"description": "Base utilities used by CKEditor 5 collaboration features to support multiple users working together in a rich text editor.",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
@@ -31,7 +31,7 @@
|
|
31
31
|
],
|
32
32
|
"main": "src/index.js",
|
33
33
|
"dependencies": {
|
34
|
-
"ckeditor5": "0.0.0-nightly-
|
34
|
+
"ckeditor5": "0.0.0-nightly-20230808.0",
|
35
35
|
"date-fns": "2.30.0"
|
36
36
|
},
|
37
37
|
"files": [
|
package/src/permissions.js
CHANGED
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x5e9d=['isEnabled','enableReadOnlyMode','has','collaboration.channelId','CommentsOnly','context','editors','get','document:write','permissions-set-permissions-invalid-channel-id','pluginName','comment:modify_all','config','commands','comment:admin','clearForceDisabled','no-permissions','Permissions','CommentsRepository','includes','addCommentThread','disableReadOnlyMode','comment:write'];(function(_0x177b49,_0x5e9de7){const _0x4e93d6=function(_0x23983f){while(--_0x23983f){_0x177b49['push'](_0x177b49['shift']());}};_0x4e93d6(++_0x5e9de7);}(_0x5e9d,0xc6));const _0x4e93=function(_0x177b49,_0x5e9de7){_0x177b49=_0x177b49-0x0;let _0x4e93d6=_0x5e9d[_0x177b49];return _0x4e93d6;};import{ContextPlugin as _0x5790ab,Editor as _0x56f411}from'ckeditor5/src/core';import{CKEditorError as _0x13607c}from'ckeditor5/src/utils';export default class n extends _0x5790ab{static get[_0x4e93('0x13')](){return _0x4e93('0x3');}['setPermissions'](_0x337398,_0x49b4b5){let _0x4cf468;if(_0x49b4b5||(_0x49b4b5=this[_0x4e93('0xe')][_0x4e93('0x15')]['get'](_0x4e93('0xc'))),this['context']['config'][_0x4e93('0x10')](_0x4e93('0xc'))==_0x49b4b5?_0x4cf468=this[_0x4e93('0xe')]:_0x4e93('0xf')in this['context']&&this[_0x4e93('0xe')][_0x4e93('0xf')]&&(_0x4cf468=this[_0x4e93('0xe')][_0x4e93('0xf')]['find'](_0x19a70e=>_0x19a70e[_0x4e93('0x15')]['get'](_0x4e93('0xc'))==_0x49b4b5)),!_0x4cf468)throw new _0x13607c(_0x4e93('0x12'),null);const _0x4aecb3=_0x4cf468['plugins'],_0x411f54=_0x4aecb3[_0x4e93('0xb')](_0x4e93('0x4'))?_0x4aecb3[_0x4e93('0x10')]('CommentsRepository'):void 0x0,_0x2457a9=_0x4aecb3['has']('CommentsOnly')&&_0x4aecb3[_0x4e93('0x10')](_0x4e93('0xd')),_0x160c5c=_0x337398['includes'](_0x4e93('0x11')),_0xf93acb=_0x337398[_0x4e93('0x5')](_0x4e93('0x14')),_0xfc3301=_0x337398[_0x4e93('0x5')](_0x4e93('0x0')),_0x51519e=_0x337398[_0x4e93('0x5')](_0x4e93('0x8')),_0x45a6ef=_0x51519e||_0xfc3301,_0x45f2b1=_0x45a6ef||_0xf93acb,_0x3018c3=_0x160c5c||_0x45a6ef;(_0x2457a9&&(_0x2457a9[_0x4e93('0x9')]=!_0x160c5c&&_0x45f2b1),_0x4cf468 instanceof _0x56f411)&&(!(_0x160c5c||_0x45f2b1&&_0x411f54)?_0x4cf468[_0x4e93('0xa')](_0x4e93('0x2')):_0x4cf468[_0x4e93('0x7')](_0x4e93('0x2')));if(_0x411f54){_0x411f54['setPermissions']({'admin':_0xfc3301,'modifyAll':_0xf93acb,'write':_0x51519e,'resolve':_0x3018c3},_0x49b4b5);const _0x3a6ee8=_0x4cf468 instanceof _0x56f411&&_0x4cf468[_0x4e93('0x16')][_0x4e93('0x10')](_0x4e93('0x6'));_0x3a6ee8&&(_0x45a6ef?_0x3a6ee8[_0x4e93('0x1')]('noPermissions'):_0x3a6ee8['forceDisabled']('noPermissions'));}}}
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x24c2=['ck\x20ck-user__name\x20ck-user__name--hidden','ck\x20ck-user__name','initials','push','ck-user','ck-user__img','content','avatar','name','url(\x27','notificationView','extendTemplate','ck-user__avatar','div','ck-user__icon'];(function(_0x1416c0,_0x24c24d){const _0x1b44ee=function(_0x27fdbe){while(--_0x27fdbe){_0x1416c0['push'](_0x1416c0['shift']());}};_0x1b44ee(++_0x24c24d);}(_0x24c2,0xb8));const _0x1b44=function(_0x1416c0,_0x24c24d){_0x1416c0=_0x1416c0-0x0;let _0x1b44ee=_0x24c2[_0x1416c0];return _0x1b44ee;};import{View as _0x433f6e,IconView as _0x587acd}from'ckeditor5/src/ui';import _0x445a25 from'../../../theme/icons/notification.svg';import'../../../theme/users.css';export default class B extends _0x433f6e{constructor(_0x33a7f,_0x1a1ba4,_0x265438){super(_0x33a7f),this['name']=_0x1a1ba4[_0x1b44('0x4')],this['notificationView']=null;const _0xe801db=['ck',_0x1b44('0x1')];if(_0x1a1ba4['isAnonymous']&&_0xe801db[_0x1b44('0xe')]('ck-user__anonymous'),_0x1a1ba4[_0x1b44('0x3')]&&_0xe801db[_0x1b44('0xe')](_0x1b44('0x8')),_0x265438){const _0x45636b=new _0x587acd();_0x45636b[_0x1b44('0x7')]({'attributes':{'class':[_0x1b44('0xa')]}}),_0x45636b[_0x1b44('0x2')]=_0x445a25,this[_0x1b44('0x6')]={'tag':'div','attributes':{'class':['ck','ck-user__notification'],'data-cke-tooltip-position':'n','data-cke-tooltip-text':_0x265438},'children':[_0x45636b]};}const _0x3b7ccd=[{'tag':'div','attributes':{'class':_0xe801db,'style':{'background-image':_0x1a1ba4[_0x1b44('0x3')]?_0x1b44('0x5')+_0x1a1ba4[_0x1b44('0x3')]+'\x27)':''}}},{'tag':_0x1b44('0x9'),'attributes':{'class':_0x1a1ba4[_0x1b44('0x3')]?_0x1b44('0xb'):_0x1b44('0xc')},'children':[{'text':_0x1a1ba4[_0x1b44('0xd')]}]}];this[_0x1b44('0x6')]&&_0x3b7ccd[_0x1b44('0xe')](this[_0x1b44('0x6')]),this['setTemplate']({'tag':_0x1b44('0x9'),'attributes':{'class':['ck',_0x1b44('0x0')],'data-user-id':_0x1a1ba4['id']},'children':_0x3b7ccd});}}
|
package/src/users.js
CHANGED
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x8ac2=['requires','string','config','anonymous-user','users','get','defineMe','has','users-me-already-defined','isAnonymous','name','licenseKeyTrial','getMarkerClass','context','_getInitial','includes','_lastColor','licenseKeyTrialLimit:revisions','avatar','destroy','_myId','invalid-license-key','init','_locale','Users','licenseKeyValid','color','trial-license-key-reached-limit-changes','_getNextColor','getBackgroundColorClass','users.anonymousUserId','split','define','licenseKeyTrialLimit:operations','licenseKeyInvalid','ck-user__bg-color--','licenseKeyTrialLimit:time','charAt','_isAnonymous','users-add-invalid-id','users.colorsCount','length','initials','_licenseKeyCheckInterval','You\x20are\x20using\x20the\x20trial\x20version\x20of\x20CKEditor\x205\x20collaboration\x20plugin\x20with\x20limited\x20usage.\x20Make\x20sure\x20you\x20will\x20not\x20use\x20it\x20in\x20the\x20production\x20environment.','decorate','_addAnonymousUser','_id','users-add-duplicated-id','Anonymous','addUser','ck-user__selection--','licenseKey'];(function(_0x1e1a2d,_0x8ac28b){const _0x54b902=function(_0x51ac36){while(--_0x51ac36){_0x1e1a2d['push'](_0x1e1a2d['shift']());}};_0x54b902(++_0x8ac28b);}(_0x8ac2,0xe2));const _0x54b9=function(_0x1e1a2d,_0x8ac28b){_0x1e1a2d=_0x1e1a2d-0x0;let _0x54b902=_0x8ac2[_0x1e1a2d];return _0x54b902;};import{ContextPlugin as _0x5d62ca}from'ckeditor5/src/core';import{Collection as _0x273f7b,CKEditorError as _0x166da9}from'ckeditor5/src/utils';import _0x464788 from'./permissions';import{getTranslation as _0x15b4d7}from'./utils/common-translations';import'../theme/usercolors.css';export default class l extends _0x5d62ca{static get['pluginName'](){return _0x54b9('0xa');}static get[_0x54b9('0x27')](){return[_0x464788];}constructor(_0x1a4551){super(_0x1a4551),this[_0x54b9('0x34')][_0x54b9('0x29')][_0x54b9('0x12')](_0x54b9('0x10'),_0x54b9('0x2a')),this['context'][_0x54b9('0x29')][_0x54b9('0x12')](_0x54b9('0x1a'),0x8),this['users']=new _0x273f7b(),this[_0x54b9('0x9')]=_0x1a4551['locale'],this['_licenseKeyCheckInterval']=null,this[_0x54b9('0x2')]=0x0,this[_0x54b9('0x6')]=null,this[_0x54b9('0x1f')]('getOperationAuthor');}[_0x54b9('0x8')](){const _0x3b1d97=this[_0x54b9('0x34')];this[_0x54b9('0x26')]=_0x3b1d97[_0x54b9('0x29')]['get'](_0x54b9('0x26'));const _0x258d3e=[_0x54b9('0x32'),'licenseKeyInvalid',_0x54b9('0xb'),'licenseKeyTrialLimit:operations',_0x54b9('0x16'),_0x54b9('0x3')];this['_licenseKeyCheckInterval']=setInterval(()=>{let _0x512874;for(const _0x15b872 in _0x3b1d97){const _0x5e75e2=_0x3b1d97[_0x15b872];if(_0x258d3e[_0x54b9('0x1')](_0x5e75e2)){delete _0x3b1d97[_0x15b872],_0x512874=_0x5e75e2;break;}}if(_0x54b9('0x14')===_0x512874)throw clearInterval(this['_licenseKeyCheckInterval']),new _0x166da9(_0x54b9('0x7'),null);if(_0x54b9('0x32')===_0x512874&&console['info'](_0x54b9('0x1e')),_0x54b9('0x13')===_0x512874)throw clearInterval(this['_licenseKeyCheckInterval']),new _0x166da9(_0x54b9('0xd'),null);if('licenseKeyTrialLimit:time'===_0x512874)throw clearInterval(this[_0x54b9('0x1d')]),new _0x166da9('trial-license-key-reached-limit-time',null);if(_0x54b9('0x3')===_0x512874)throw clearInterval(this[_0x54b9('0x1d')]),new _0x166da9('trial-license-key-reached-limit-revisions',null);_0x54b9('0xb')===_0x512874&&clearInterval(this[_0x54b9('0x1d')]);},0x3e8),this[_0x54b9('0x20')]();}get['me'](){return null==this[_0x54b9('0x6')]?null:this['getUser'](this['_myId']);}[_0x54b9('0x24')]({id:_0x3cfef9,name:_0x2273f4,..._0x96aa3a}){if(!_0x3cfef9||_0x54b9('0x28')!=typeof _0x3cfef9)throw new _0x166da9(_0x54b9('0x19'));if(this[_0x54b9('0x2b')][_0x54b9('0x2e')](_0x3cfef9))throw new _0x166da9(_0x54b9('0x22'),null,{'id':_0x3cfef9});const _0x266de3={..._0x96aa3a,'id':_0x3cfef9,'name':a(this['_locale'],_0x2273f4),'color':this[_0x54b9('0xe')]()};_0x266de3[_0x54b9('0x31')]=a(this['_locale'],_0x266de3['name']);const _0x25aee4=new User(_0x266de3);return this['users']['add'](_0x25aee4),_0x25aee4;}['getUser'](_0x55d11c){return this['users'][_0x54b9('0x2c')](_0x55d11c);}['useAnonymousUser'](){const _0x46d9bc=this[_0x54b9('0x34')][_0x54b9('0x29')][_0x54b9('0x2c')](_0x54b9('0x10'));this[_0x54b9('0x6')]||this['defineMe'](_0x46d9bc);}[_0x54b9('0x2d')](_0x50d90a){if(this[_0x54b9('0x6')])throw new _0x166da9(_0x54b9('0x2f'),null);if(!this['getUser'](_0x50d90a))throw new _0x166da9('users-me-missing-user',null);this[_0x54b9('0x6')]=_0x50d90a;}['getOperationAuthor'](){return this['me'];}[_0x54b9('0x5')](){super['destroy'](),clearInterval(this[_0x54b9('0x1d')]);}['_getNextColor'](){const _0x4f4258=this['context']['config']['get']('users.colorsCount');return this['_lastColor']>=_0x4f4258&&(this[_0x54b9('0x2')]=0x0),new u(this['_lastColor']++);}[_0x54b9('0x20')](){const _0x4cc38d=this[_0x54b9('0x34')][_0x54b9('0x29')][_0x54b9('0x2c')](_0x54b9('0x10'));this[_0x54b9('0x24')]({'id':_0x4cc38d,'name':_0x15b4d7(this['_locale'],_0x54b9('0x23'))})[_0x54b9('0x18')]=!0x0;}}export class User{constructor(_0x575912){this['id']=_0x575912['id'],this[_0x54b9('0xc')]=_0x575912[_0x54b9('0xc')],this[_0x54b9('0x31')]=_0x575912['name'],this[_0x54b9('0x4')]=_0x575912['avatar'],this['_isAnonymous']=!0x1;}get[_0x54b9('0x30')](){return this[_0x54b9('0x18')];}get[_0x54b9('0x1c')](){const _0x34d956=this[_0x54b9('0x31')][_0x54b9('0x11')]('\x20');return 0x1===_0x34d956[_0x54b9('0x1b')]?this['_getInitial'](_0x34d956[0x0]):this['_getInitial'](_0x34d956[0x0])+this['_getInitial'](_0x34d956[_0x34d956[_0x54b9('0x1b')]-0x1]);}[_0x54b9('0x0')](_0x400709){return _0x400709[_0x54b9('0x17')](0x0)['toUpperCase']();}}function a(_0x4da787,_0x1ca51f=''){return''==(_0x1ca51f=_0x1ca51f['trim']())?_0x15b4d7(_0x4da787,_0x54b9('0x23')):_0x1ca51f;}class u{constructor(_0xec60a6){this[_0x54b9('0x21')]=_0xec60a6;}[_0x54b9('0xf')](){return _0x54b9('0x15')+this['_id'];}['getSelectionClass'](){return _0x54b9('0x25')+this[_0x54b9('0x21')];}[_0x54b9('0x33')](){return'ck-user__marker--'+this[_0x54b9('0x21')];}}
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
export function getTranslation(
|
23
|
+
export function getTranslation(_0x1096ad,_0x2f9ba9){const t=_0x1096ad['t'];switch(_0x2f9ba9){case'Anonymous':return t('Anonymous');case'Yes':return t('Yes');case'No':return t('No');case'Are\x20you\x20sure?':return t('Are\x20you\x20sure?');default:return'';}}
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
var
|
23
|
+
var _0x3eab=['element','cancel','isConfirm','appendChild','submit','showConfirm','set','confirmView','_removeConfirm','once','deregisterChild','render','remove','destroy','focus','cancelConfirm','message','registerChild'];(function(_0xe5aee5,_0x3eabcd){var _0x328270=function(_0x30b5a8){while(--_0x30b5a8){_0xe5aee5['push'](_0xe5aee5['shift']());}};_0x328270(++_0x3eabcd);}(_0x3eab,0xa0));var _0x3282=function(_0xe5aee5,_0x3eabcd){_0xe5aee5=_0xe5aee5-0x0;var _0x328270=_0x3eab[_0xe5aee5];return _0x328270;};import _0x25013b from'./confirmview';export default function m(_0x2d1a76){return class extends _0x2d1a76{[_0x3282('0x7')](_0x2d4d2f,_0x129f9a){return this[_0x3282('0x9')]=new _0x25013b(this['locale']),this[_0x3282('0x9')][_0x3282('0xd')](),this[_0x3282('0x9')][_0x3282('0x0')]=_0x2d4d2f,this['confirmView'][_0x3282('0xb')]('cancel',()=>{this[_0x3282('0xa')]();}),this['confirmView'][_0x3282('0xb')](_0x3282('0x6'),()=>{this[_0x3282('0xa')]();}),_0x129f9a[_0x3282('0x5')](this[_0x3282('0x9')][_0x3282('0x2')]),this[_0x3282('0x1')](this[_0x3282('0x9')]),this[_0x3282('0x2')][_0x3282('0x10')](),this[_0x3282('0x8')]('isConfirm',!0x0),new Promise(_0x2c3312=>this['confirmView']['on']('submit',_0x2c3312));}[_0x3282('0x11')](){this[_0x3282('0x4')]&&this['confirmView']['fire'](_0x3282('0x3'));}[_0x3282('0xa')](){this[_0x3282('0x2')]&&this['confirmView']&&this[_0x3282('0x9')][_0x3282('0x2')]&&(this[_0x3282('0x2')][_0x3282('0x10')](),this['confirmView'][_0x3282('0x2')][_0x3282('0xe')](),this[_0x3282('0xc')](this[_0x3282('0x9')]),this[_0x3282('0x4')]=!0x1,this['confirmView'][_0x3282('0xf')](),this['confirmView']=void 0x0);}};}
|
package/src/utils/confirmview.js
CHANGED
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x5a7c=['Are\x20you\x20sure?','cancelView','check','submitView','bindTemplate','setTemplate','_createButtonView','execute','label','ck-thread__remove-confirm-inner','Yes','icon','submit','ck-thread__remove-confirm','fire','message'];(function(_0x1901a6,_0x5a7c27){const _0x2dd074=function(_0x2d494b){while(--_0x2d494b){_0x1901a6['push'](_0x1901a6['shift']());}};_0x2dd074(++_0x5a7c27);}(_0x5a7c,0xcd));const _0x2dd0=function(_0x1901a6,_0x5a7c27){_0x1901a6=_0x1901a6-0x0;let _0x2dd074=_0x5a7c[_0x1901a6];return _0x2dd074;};import{View as _0x576f83,ButtonView as _0x1010e3}from'ckeditor5/src/ui';import{icons as _0x5f2db8}from'ckeditor5/src/core';import{getTranslation as _0x5c3e8e}from'./common-translations';export default class h extends _0x576f83{constructor(_0x46cb83){super(_0x46cb83);const _0x4f0042=this[_0x2dd0('0x7')];this[_0x2dd0('0x6')]=this[_0x2dd0('0x9')](_0x46cb83,_0x5c3e8e(_0x46cb83,_0x2dd0('0xd')),_0x5f2db8[_0x2dd0('0x5')],_0x2dd0('0xf')),this[_0x2dd0('0x4')]=this[_0x2dd0('0x9')](_0x46cb83,_0x5c3e8e(_0x46cb83,'No'),_0x5f2db8['cancel'],'cancel'),this['set'](_0x2dd0('0x2'),_0x5c3e8e(_0x46cb83,_0x2dd0('0x3'))),this[_0x2dd0('0x8')]({'tag':'div','attributes':{'class':[_0x2dd0('0x0')]},'children':[{'tag':'div','attributes':{'class':_0x2dd0('0xc')},'children':[{'tag':'p','children':[{'text':_0x4f0042['to'](_0x2dd0('0x2'))}]},{'tag':'div','attributes':{'class':'ck-thread__remove-confirm-actions'},'children':[this[_0x2dd0('0x6')],this[_0x2dd0('0x4')]]}]}]});}[_0x2dd0('0x9')](_0x216a51,_0x28443c,_0x191d3f,_0x1b13e2){const _0x4c6357=new _0x1010e3(_0x216a51);return _0x4c6357[_0x2dd0('0xb')]=_0x28443c,_0x4c6357[_0x2dd0('0xe')]=_0x191d3f,_0x4c6357['extendTemplate']({'attributes':{'class':'ck-thread__remove-confirm-'+_0x1b13e2}}),_0x4c6357['on'](_0x2dd0('0xa'),()=>this[_0x2dd0('0x1')](_0x1b13e2)),_0x4c6357;}}
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x3d5a=['MM-dd-yyyy\x20hh:mma','dateTimeFormat','\x27Yesterday\x27\x20hh:mma','\x27Today\x27\x20hh:mma','\x27Last\x27\x20EEEE\x20hh:mma','invalid-date-time-format'];(function(_0x3aa36c,_0x3d5a24){const _0x713830=function(_0x1456c3){while(--_0x1456c3){_0x3aa36c['push'](_0x3aa36c['shift']());}};_0x713830(++_0x3d5a24);}(_0x3d5a,0x15a));const _0x7138=function(_0x3aa36c,_0x3d5a24){_0x3aa36c=_0x3aa36c-0x0;let _0x713830=_0x3d5a[_0x3aa36c];return _0x713830;};import _0x5318de from'date-fns/format';import _0x6a0f7 from'date-fns/parseISO';import _0x317803 from'date-fns/differenceInCalendarDays';import{CKEditorError as _0x203087}from'ckeditor5/src/utils';export default function E(_0x31dad6={}){if(void 0x0!==_0x31dad6[_0x7138('0x3')]&&'function'!=typeof _0x31dad6[_0x7138('0x3')])throw new _0x203087(_0x7138('0x1'));return _0x956ab8=>{const _0x3d2077='string'==typeof _0x956ab8?_0x6a0f7(_0x956ab8):_0x956ab8,_0x3c4bd7=new Date(),_0x58dee8=_0x317803(_0x3c4bd7,_0x3d2077);return _0x31dad6['dateTimeFormat']?_0x31dad6[_0x7138('0x3')](_0x3d2077):_0x5318de(_0x3d2077,0x0===_0x58dee8?_0x7138('0x5'):0x1===_0x58dee8?_0x7138('0x4'):_0x58dee8<0x7?_0x7138('0x0'):_0x7138('0x2'));};}
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x110e=['filter','mapViewToDom','values','push','length','from','getClientRects','markerNameToElements','view','domElement','name','mapper','sort'];(function(_0x2b6fd9,_0x110e06){const _0xb72a23=function(_0x368d6b){while(--_0x368d6b){_0x2b6fd9['push'](_0x2b6fd9['shift']());}};_0xb72a23(++_0x110e06);}(_0x110e,0x11a));const _0xb72a=function(_0x2b6fd9,_0x110e06){_0x2b6fd9=_0x2b6fd9-0x0;let _0xb72a23=_0x110e[_0x2b6fd9];return _0xb72a23;};import{first as _0x3465e8}from'ckeditor5/src/utils';export default function k(_0x44c10e,_0x2fa294){const _0x12aa06=_0x44c10e[_0xb72a('0x2')]['markerNameToElements'](_0x2fa294['name']);if(!_0x12aa06)return null;const _0x57a105=_0x3465e8(_0x12aa06[_0xb72a('0x6')]());return _0x44c10e[_0xb72a('0xc')]['domConverter'][_0xb72a('0x5')](_0x57a105)||null;}export function getAllMarkersDomElementsSorted(_0xbb9b65,_0x2748a4){if(0x0===_0x2748a4[_0xb72a('0x8')])return null;const _0xf2a4d2=[],_0x346579=_0xbb9b65['view']['domConverter'];for(const _0x11fd31 of _0x2748a4){const _0x2bb1ff=_0xbb9b65[_0xb72a('0x2')][_0xb72a('0xb')](_0x11fd31[_0xb72a('0x1')]);if(!_0x2bb1ff)continue;const _0x124052=Array[_0xb72a('0x9')](_0x2bb1ff)['map'](_0x14d706=>_0x346579[_0xb72a('0x5')](_0x14d706))[_0xb72a('0x4')](_0x275904=>!!_0x275904);_0xf2a4d2[_0xb72a('0x7')](..._0x124052);}if(0x0===_0xf2a4d2[_0xb72a('0x8')])return null;const _0x2e85ae=[];for(const _0x4ee1ef of _0xf2a4d2){const _0x395df5=_0x4ee1ef[_0xb72a('0xa')]()['item'](0x0);_0x395df5&&_0x2e85ae['push']({'x':_0x395df5['x'],'y':_0x395df5['y'],'domElement':_0x4ee1ef});}return 0x0===_0x2e85ae[_0xb72a('0x8')]?null:(_0x2e85ae[_0xb72a('0x3')]((_0x29fb68,_0x4ab3b5)=>_0x29fb68['y']-_0x4ab3b5['y']||_0x29fb68['x']-_0x4ab3b5['x']),_0x2e85ae['map'](_0x100111=>_0x100111[_0xb72a('0x0')]));}
|
package/src/utils/hashobject.js
CHANGED
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x576d=['number','sort','charCodeAt','sign','object','isArray','string'];(function(_0x31e1aa,_0x576dc1){const _0x479aa9=function(_0x5d51a4){while(--_0x5d51a4){_0x31e1aa['push'](_0x31e1aa['shift']());}};_0x479aa9(++_0x576dc1);}(_0x576d,0x135));const _0x479a=function(_0x31e1aa,_0x576dc1){_0x31e1aa=_0x31e1aa-0x0;let _0x479aa9=_0x576d[_0x31e1aa];return _0x479aa9;};export default function b(_0xc09dff){let _0x3e0782=0x0,_0x378250=0x0;for(const _0x14df59 of g(_0xc09dff))_0x3e0782=(_0x3e0782<<0x5)-_0x3e0782+_0x14df59,_0x3e0782&=_0x3e0782,[_0x3e0782,_0x378250]=[_0x378250,_0x3e0782];return O(_0x3e0782)+O(_0x378250);}function*j(_0xb88b3c){_0xb88b3c?'boolean'==typeof _0xb88b3c?yield 0x1:Array[_0x479a('0x4')](_0xb88b3c)?yield*function*(_0x2ce688){for(const _0x5bbf40 of _0x2ce688)yield*j(_0x5bbf40);}(_0xb88b3c):_0x479a('0x3')==typeof _0xb88b3c?yield*g(_0xb88b3c):_0x479a('0x5')==typeof _0xb88b3c?yield*A(_0xb88b3c):_0x479a('0x6')==typeof _0xb88b3c&&(yield _0xb88b3c):yield 0x0;}function*g(_0x57651d){if(yield M('{'),_0x57651d){const _0x573a17=Object['keys'](_0x57651d)[_0x479a('0x0')]();for(const _0x32b3e7 of _0x573a17){yield*A(_0x32b3e7),yield M(':');const _0x419252=_0x57651d[_0x32b3e7];yield*j(_0x419252);}}yield M('}');}function*A(_0x4bf166){yield M('\x22');for(const _0x28b236 of _0x4bf166)yield M(_0x28b236);yield M('\x22');}function M(_0x1563f3){return _0x1563f3[_0x479a('0x1')](0x0);}function O(_0x340ef2){return(_0x340ef2*=Math[_0x479a('0x2')](_0x340ef2))['toString'](0x24);}
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x39f6=['string','context','config','WordCount','concat','name','filter','get','extraPlugins','requires','WebSocketGateway','from','every','WProofreader','Autosave','plugins','has','constructor','DocumentOutline','includes','toolbar','map','removePlugins','names','set','_context','rootsAttributes','length','pluginName'];(function(_0x3d1697,_0x39f6d5){const _0x26eeac=function(_0x42b664){while(--_0x42b664){_0x3d1697['push'](_0x3d1697['shift']());}};_0x26eeac(++_0x39f6d5);}(_0x39f6,0x164));const _0x26ee=function(_0x3d1697,_0x39f6d5){_0x3d1697=_0x3d1697-0x0;let _0x26eeac=_0x39f6[_0x3d1697];return _0x26eeac;};const w=['initialData',_0x26ee('0x16'),_0x26ee('0xc'),_0x26ee('0x12')],W=[_0x26ee('0x2'),'RevisionTracker',_0x26ee('0x6'),_0x26ee('0x18'),_0x26ee('0xa'),_0x26ee('0x5')];function v(_0x1bfa4f,_0x2f0c7e,_0x1956d2,_0x2a583c=[]){const _0x270fdb=_0x26ee('0x15')==typeof _0x1bfa4f?_0x1956d2[_0x26ee('0x1c')](_0x1bfa4f)[_0x26ee('0x9')]:_0x1bfa4f,_0x4c0b77=_0x270fdb[_0x26ee('0x14')]||_0x270fdb[_0x26ee('0x1a')];if(_0x2f0c7e[_0x26ee('0x8')](_0x4c0b77))return _0x2f0c7e[_0x26ee('0x1c')](_0x4c0b77);if(_0x2f0c7e[_0x26ee('0x10')](_0x4c0b77,!0x0),_0x4c0b77&&W['concat'](_0x2a583c)['includes'](_0x4c0b77))return _0x2f0c7e[_0x26ee('0x10')](_0x4c0b77,!0x1),!0x1;if(!_0x270fdb['requires'])return _0x2f0c7e[_0x26ee('0x10')](_0x4c0b77,!0x0),!0x0;const _0xb10696=_0x270fdb[_0x26ee('0x1')][_0x26ee('0x4')](_0x4a8a96=>v(_0x4a8a96,_0x2f0c7e,_0x1956d2,_0x2a583c));return _0x2f0c7e[_0x26ee('0x10')](_0x4c0b77,_0xb10696),_0xb10696;}export default function D(_0x24bfc9,_0x4a7263){const _0x2e3898={};for(const _0xa8b540 of _0x24bfc9[_0x26ee('0x17')][_0x26ee('0xf')]())w[_0x26ee('0xb')](_0xa8b540)||(_0x2e3898[_0xa8b540]=_0x24bfc9['config'][_0x26ee('0x1c')](_0xa8b540));const _0xd4e913=_0x2e3898[_0x26ee('0x7')]||[],_0x4f1b03=_0x24bfc9['constructor']['builtinPlugins']||[],_0x4f9e87=_0xd4e913[_0x26ee('0x13')]?_0xd4e913:_0x4f1b03,_0x519fb0=_0x2e3898[_0x26ee('0x0')]||[];delete _0x2e3898[_0x26ee('0x0')];const _0x2ad03c=_0x2e3898[_0x26ee('0xe')]||[];delete _0x2e3898[_0x26ee('0xe')];const _0x4f786a=_0x24bfc9[_0x26ee('0x11')][_0x26ee('0x17')][_0x26ee('0x1c')](_0x26ee('0x7'))||[],_0x242332=_0x4f9e87[_0x26ee('0x19')](_0x519fb0)[_0x26ee('0x19')](_0x4f786a)[_0x26ee('0xd')](_0x25ba13=>_0x26ee('0x15')==typeof _0x25ba13?_0x4f1b03['find'](_0x23395e=>_0x23395e['pluginName']==_0x25ba13):_0x25ba13)['filter'](_0x24a5b5=>!_0x2ad03c[_0x26ee('0xb')](_0x24a5b5)),_0x3a3f7=Array[_0x26ee('0x3')](new Set(_0x242332)),_0x2d20b7=new Map();return _0x2e3898[_0x26ee('0x7')]=_0x3a3f7[_0x26ee('0x1b')](_0x578b1a=>v(_0x578b1a,_0x2d20b7,_0x24bfc9['plugins'],_0x4a7263)),_0x2e3898;}
|
package/src/utils/trim-html.js
CHANGED
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x3cae=['indexOf','pop','startsWith','split','...','push','join','length','replace','match'];(function(_0x2f00ea,_0x3cae55){const _0x168cbc=function(_0x20c1d0){while(--_0x20c1d0){_0x2f00ea['push'](_0x2f00ea['shift']());}};_0x168cbc(++_0x3cae55);}(_0x3cae,0x129));const _0x168c=function(_0x2f00ea,_0x3cae55){_0x2f00ea=_0x2f00ea-0x0;let _0x168cbc=_0x3cae[_0x2f00ea];return _0x168cbc;};export default function z(_0xaed960,{limit:_0x2e0764,suffix:_0x2c9cf4=_0x168c('0x7')}){const _0x36135d=[];let _0x43c396=0x0;const _0x44a3d8=_0xaed960[_0x168c('0x1')](/</g,'\x0a<')[_0x168c('0x1')](/>/g,'>\x0a')[_0x168c('0x1')](/^\n/g,'')[_0x168c('0x1')](/\n$/g,'')[_0x168c('0x6')]('\x0a');for(let _0x465a53=0x0;_0x465a53<_0x44a3d8[_0x168c('0x0')];_0x465a53++){let _0x59a95d=_0x44a3d8[_0x465a53];const _0x38d4dd=Z(_0x59a95d);if(_0x59a95d[_0x168c('0x5')]('<')){if(_0x43c396>=_0x2e0764){const _0x44a282=_0x59a95d[_0x168c('0x2')](/[a-zA-Z]+/);if(!_0x44a282){_0x44a3d8[_0x465a53]='';continue;}const _0x1f0472=_0x44a282[0x0];_0x59a95d[_0x168c('0x5')]('</')?(_0x36135d[_0x168c('0x0')]&&(_0x59a95d=''),_0x36135d[_0x168c('0x4')]()):(_0x36135d['push'](_0x1f0472),_0x59a95d='');}}else{if(_0x43c396>=_0x2e0764)_0x59a95d='';else{if(_0x43c396+_0x38d4dd[_0x168c('0x0')]>=_0x2e0764){let _0x22dc11=_0x2e0764-_0x43c396;if('\x20'===_0x38d4dd[_0x22dc11-0x1])_0x22dc11--;else{const _0xb7f7ac=_0x38d4dd['slice'](_0x22dc11)[_0x168c('0x3')]('\x20');-0x1!==_0xb7f7ac?_0x22dc11+=_0xb7f7ac:_0x22dc11=_0x59a95d[_0x168c('0x0')];}_0x59a95d=_0x38d4dd['slice'](0x0,_0x22dc11)[_0x168c('0x9')]('')+_0x2c9cf4,_0x43c396=_0x2e0764;}else _0x43c396+=_0x38d4dd['length'];}}_0x44a3d8[_0x465a53]=_0x59a95d;}return _0x44a3d8[_0x168c('0x9')]('\x0a')[_0x168c('0x1')](/\n/g,'');}function Z(_0x1aab7f){const _0x1e8f7f=[];for(let _0x2cf3d9=0x0;_0x2cf3d9<_0x1aab7f[_0x168c('0x0')];_0x2cf3d9++){const _0x29eb8c=_0x1aab7f['substring'](_0x2cf3d9)['match'](/^&[a-z0-9#]+;/);if(_0x29eb8c){const _0x3a0158=_0x29eb8c[0x0];_0x1e8f7f[_0x168c('0x8')](_0x3a0158),_0x2cf3d9+=_0x3a0158['length']-0x1;}else _0x1e8f7f['push'](_0x1aab7f[_0x2cf3d9]);}return _0x1e8f7f;}
|