@ckeditor/ckeditor5-collaboration-core 0.0.0-nightly-20231215.0 → 0.0.0-nightly-20231217.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-collaboration-core",
3
- "version": "0.0.0-nightly-20231215.0",
3
+ "version": "0.0.0-nightly-20231217.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/)",
@@ -29,9 +29,10 @@
29
29
  "real time",
30
30
  "framework"
31
31
  ],
32
+ "type": "module",
32
33
  "main": "src/index.js",
33
34
  "dependencies": {
34
- "ckeditor5": "0.0.0-nightly-20231215.0",
35
+ "ckeditor5": "0.0.0-nightly-20231217.0",
35
36
  "date-fns": "2.30.0"
36
37
  },
37
38
  "files": [
@@ -2,8 +2,8 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
- import type { LocaleConfig, Users } from './index';
6
- import type { RealTimeCollaborationConfig } from './config';
5
+ import type { LocaleConfig, Users } from './index.js';
6
+ import type { RealTimeCollaborationConfig } from './config.js';
7
7
  declare module '@ckeditor/ckeditor5-core' {
8
8
  interface EditorConfig {
9
9
  /**
@@ -6,7 +6,7 @@
6
6
  * @module collaboration-core/collaborationhistory
7
7
  * @publicApi
8
8
  */
9
- import type { default as CollaborationOperation } from './collaborationoperation';
9
+ import type { default as CollaborationOperation } from './collaborationoperation.js';
10
10
  /**
11
11
  * Interface compatible with {@link module:engine/model/history~History} with the difference that it uses
12
12
  * {@link module:collaboration-core/collaborationoperation~CollaborationOperation} instead of regular model operations.
@@ -6,7 +6,7 @@
6
6
  * @module collaboration-core/collaborationoperation
7
7
  * @publicApi
8
8
  */
9
- import type { Operation, InsertOperation, MergeOperation, MoveOperation, SplitOperation, MarkerOperation, RootOperation, RootAttributeOperation } from 'ckeditor5/src/engine';
9
+ import type { Operation, InsertOperation, MergeOperation, MoveOperation, SplitOperation, MarkerOperation, RootOperation, RootAttributeOperation } from 'ckeditor5/src/engine.js';
10
10
  /**
11
11
  * Extends the {@link module:engine/model/operation/operation operation}.
12
12
  */
package/src/index.d.ts CHANGED
@@ -2,18 +2,18 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
- export { default as Permissions } from './permissions';
6
- export { default as Users, type User } from './users';
7
- export { default as UserView } from './users/view/userview';
8
- export { default as getDateTimeFormatter } from './utils/getdatetimeformatter';
9
- export { default as getMarkerDomElement, getAllMarkersDomElementsSorted } from './utils/getmarkerdomelement';
10
- export { default as trimHtml } from './utils/trim-html';
11
- export { default as ConfirmMixin } from './utils/confirmmixin';
12
- export { default as hashObject } from './utils/hashobject';
13
- export { default as sanitizeEditorConfig } from './utils/sanitizeEditorConfig';
14
- export { default as surroundingMarkersDetector } from './utils/surroundingmarkersdetector';
15
- export { default as CollaborationOperation, InsertCollaborationOperation, SplitCollaborationOperation, MarkerCollaborationOperation, MoveCollaborationOperation, MergeCollaborationOperation, RootCollaborationOperation, RootAttributeCollaborationOperation } from './collaborationoperation';
16
- export { default as CollaborationHistory } from './collaborationhistory';
17
- export type { LocaleConfig, RealTimeCollaborationConfig } from './config';
18
- export * from './suggestionstyles';
19
- import './augmentation';
5
+ export { default as Permissions } from './permissions.js';
6
+ export { default as Users, type User } from './users.js';
7
+ export { default as UserView } from './users/view/userview.js';
8
+ export { default as getDateTimeFormatter } from './utils/getdatetimeformatter.js';
9
+ export { default as getMarkerDomElement, getAllMarkersDomElementsSorted } from './utils/getmarkerdomelement.js';
10
+ export { default as trimHtml } from './utils/trim-html.js';
11
+ export { default as ConfirmMixin } from './utils/confirmmixin.js';
12
+ export { default as hashObject } from './utils/hashobject.js';
13
+ export { default as sanitizeEditorConfig } from './utils/sanitizeEditorConfig.js';
14
+ export { default as surroundingMarkersDetector } from './utils/surroundingmarkersdetector.js';
15
+ export { default as CollaborationOperation, InsertCollaborationOperation, SplitCollaborationOperation, MarkerCollaborationOperation, MoveCollaborationOperation, MergeCollaborationOperation, RootCollaborationOperation, RootAttributeCollaborationOperation } from './collaborationoperation.js';
16
+ export { default as CollaborationHistory } from './collaborationhistory.js';
17
+ export type { LocaleConfig, RealTimeCollaborationConfig } from './config.js';
18
+ export * from './suggestionstyles.js';
19
+ import './augmentation.js';
package/src/index.js CHANGED
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- export{default as Permissions}from'./permissions';export{default as Users}from'./users';export{default as UserView}from'./users/view/userview';export{default as getDateTimeFormatter}from'./utils/getdatetimeformatter';export{default as getMarkerDomElement,getAllMarkersDomElementsSorted}from'./utils/getmarkerdomelement';export{default as trimHtml}from'./utils/trim-html';export{default as ConfirmMixin}from'./utils/confirmmixin';export{default as hashObject}from'./utils/hashobject';export{default as sanitizeEditorConfig}from'./utils/sanitizeEditorConfig';export{default as surroundingMarkersDetector}from'./utils/surroundingmarkersdetector';export*from'./suggestionstyles';import'./augmentation';
23
+ export{default as Permissions}from'./permissions.js';export{default as Users}from'./users.js';export{default as UserView}from'./users/view/userview.js';export{default as getDateTimeFormatter}from'./utils/getdatetimeformatter.js';export{default as getMarkerDomElement,getAllMarkersDomElementsSorted}from'./utils/getmarkerdomelement.js';export{default as trimHtml}from'./utils/trim-html.js';export{default as ConfirmMixin}from'./utils/confirmmixin.js';export{default as hashObject}from'./utils/hashobject.js';export{default as sanitizeEditorConfig}from'./utils/sanitizeEditorConfig.js';export{default as surroundingMarkersDetector}from'./utils/surroundingmarkersdetector.js';export*from'./suggestionstyles.js';import'./augmentation.js';
@@ -6,7 +6,7 @@
6
6
  * @module collaboration-core/permissions
7
7
  * @publicApi
8
8
  */
9
- import { ContextPlugin } from 'ckeditor5/src/core';
9
+ import { ContextPlugin } from 'ckeditor5/src/core.js';
10
10
  /**
11
11
  * The `Permissions` plugin manages permissions set for the local user.
12
12
  *
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x3e66=['setPermissions','forceDisabled','has','config','includes','clearForceDisabled','enableReadOnlyMode','find','comment:modify_all','comment:write','noPermissions','comment:admin','commands','collaboration.channelId','document:write','no-permissions','pluginName','isEnabled','Permissions','CommentsOnly','context','permissions-set-permissions-invalid-channel-id','editors','CommentsRepository','get'];(function(_0x174541,_0x3e662f){const _0xdffd29=function(_0x9e9652){while(--_0x9e9652){_0x174541['push'](_0x174541['shift']());}};_0xdffd29(++_0x3e662f);}(_0x3e66,0xc5));const _0xdffd=function(_0x174541,_0x3e662f){_0x174541=_0x174541-0x0;let _0xdffd29=_0x3e66[_0x174541];return _0xdffd29;};import{ContextPlugin as _0x16cc37,Editor as _0x24ca49}from'ckeditor5/src/core';import{CKEditorError as _0xcd524e}from'ckeditor5/src/utils';export default class n extends _0x16cc37{static get[_0xdffd('0x13')](){return _0xdffd('0x15');}[_0xdffd('0x3')](_0x1724b6,_0xa85ebd){let _0x38065c;if(_0xa85ebd||(_0xa85ebd=this[_0xdffd('0x17')][_0xdffd('0x6')]['get'](_0xdffd('0x10'))),this[_0xdffd('0x17')][_0xdffd('0x6')]['get'](_0xdffd('0x10'))==_0xa85ebd?_0x38065c=this[_0xdffd('0x17')]:'editors'in this['context']&&this[_0xdffd('0x17')][_0xdffd('0x0')]&&(_0x38065c=this[_0xdffd('0x17')][_0xdffd('0x0')][_0xdffd('0xa')](_0x517ff0=>_0x517ff0['config'][_0xdffd('0x2')]('collaboration.channelId')==_0xa85ebd)),!_0x38065c)throw new _0xcd524e(_0xdffd('0x18'),null);const _0x53e6d0=_0x38065c['plugins'],_0x48c0d1=_0x53e6d0['has'](_0xdffd('0x1'))?_0x53e6d0[_0xdffd('0x2')](_0xdffd('0x1')):void 0x0,_0x4a6720=_0x53e6d0[_0xdffd('0x5')](_0xdffd('0x16'))&&_0x53e6d0[_0xdffd('0x2')](_0xdffd('0x16')),_0x1d1302=_0x1724b6['includes'](_0xdffd('0x11')),_0x48e2d6=_0x1724b6[_0xdffd('0x7')](_0xdffd('0xb')),_0x4d9897=_0x1724b6[_0xdffd('0x7')](_0xdffd('0xe')),_0x5da64a=_0x1724b6[_0xdffd('0x7')](_0xdffd('0xc')),_0x47c9e0=_0x5da64a||_0x4d9897,_0x1547b6=_0x47c9e0||_0x48e2d6,_0x5dfe7a=_0x1d1302||_0x47c9e0;(_0x4a6720&&(_0x4a6720[_0xdffd('0x14')]=!_0x1d1302&&_0x1547b6),_0x38065c instanceof _0x24ca49)&&(!(_0x1d1302||_0x1547b6&&_0x48c0d1)?_0x38065c[_0xdffd('0x9')](_0xdffd('0x12')):_0x38065c['disableReadOnlyMode'](_0xdffd('0x12')));if(_0x48c0d1){_0x48c0d1['setPermissions']({'admin':_0x4d9897,'modifyAll':_0x48e2d6,'write':_0x5da64a,'resolve':_0x5dfe7a},_0xa85ebd);const _0x1b9e3e=_0x38065c instanceof _0x24ca49&&_0x38065c[_0xdffd('0xf')][_0xdffd('0x2')]('addCommentThread');_0x1b9e3e&&(_0x47c9e0?_0x1b9e3e[_0xdffd('0x8')](_0xdffd('0xd')):_0x1b9e3e[_0xdffd('0x4')]('noPermissions'));}}}
23
+ const _0x2ab5=['plugins','has','permissions-set-permissions-invalid-channel-id','clearForceDisabled','CommentsOnly','addCommentThread','noPermissions','config','comment:modify_all','editors','comment:admin','CommentsRepository','get','disableReadOnlyMode','context','find','includes','document:write','commands','isEnabled','collaboration.channelId','comment:write','Permissions','enableReadOnlyMode','no-permissions','forceDisabled','setPermissions'];(function(_0x9331a0,_0x2ab5fd){const _0x56d8ce=function(_0x3b71fd){while(--_0x3b71fd){_0x9331a0['push'](_0x9331a0['shift']());}};_0x56d8ce(++_0x2ab5fd);}(_0x2ab5,0x8a));const _0x56d8=function(_0x9331a0,_0x2ab5fd){_0x9331a0=_0x9331a0-0x0;let _0x56d8ce=_0x2ab5[_0x9331a0];return _0x56d8ce;};import{ContextPlugin as _0x24ea4e,Editor as _0x4f88f7}from'ckeditor5/src/core.js';import{CKEditorError as _0x4277ba}from'ckeditor5/src/utils.js';export default class n extends _0x24ea4e{static get['pluginName'](){return _0x56d8('0x13');}[_0x56d8('0x17')](_0x2c896d,_0x10d38f){let _0x453b11;if(_0x10d38f||(_0x10d38f=this[_0x56d8('0xb')][_0x56d8('0x4')][_0x56d8('0x9')](_0x56d8('0x11'))),this['context'][_0x56d8('0x4')][_0x56d8('0x9')]('collaboration.channelId')==_0x10d38f?_0x453b11=this[_0x56d8('0xb')]:'editors'in this[_0x56d8('0xb')]&&this[_0x56d8('0xb')][_0x56d8('0x6')]&&(_0x453b11=this[_0x56d8('0xb')][_0x56d8('0x6')][_0x56d8('0xc')](_0x4e35d6=>_0x4e35d6['config'][_0x56d8('0x9')](_0x56d8('0x11'))==_0x10d38f)),!_0x453b11)throw new _0x4277ba(_0x56d8('0x1a'),null);const _0x3a0912=_0x453b11[_0x56d8('0x18')],_0x33480f=_0x3a0912[_0x56d8('0x19')]('CommentsRepository')?_0x3a0912['get'](_0x56d8('0x8')):void 0x0,_0x41b241=_0x3a0912[_0x56d8('0x19')]('CommentsOnly')&&_0x3a0912[_0x56d8('0x9')](_0x56d8('0x1')),_0x435cf8=_0x2c896d[_0x56d8('0xd')](_0x56d8('0xe')),_0x98bdcd=_0x2c896d[_0x56d8('0xd')](_0x56d8('0x5')),_0x5d2ecf=_0x2c896d[_0x56d8('0xd')](_0x56d8('0x7')),_0x4a9fd4=_0x2c896d['includes'](_0x56d8('0x12')),_0x2fe463=_0x4a9fd4||_0x5d2ecf,_0x13ca14=_0x2fe463||_0x98bdcd,_0x84f089=_0x435cf8||_0x2fe463;(_0x41b241&&(_0x41b241[_0x56d8('0x10')]=!_0x435cf8&&_0x13ca14),_0x453b11 instanceof _0x4f88f7)&&(!(_0x435cf8||_0x13ca14&&_0x33480f)?_0x453b11[_0x56d8('0x14')](_0x56d8('0x15')):_0x453b11[_0x56d8('0xa')](_0x56d8('0x15')));if(_0x33480f){_0x33480f[_0x56d8('0x17')]({'admin':_0x5d2ecf,'modifyAll':_0x98bdcd,'write':_0x4a9fd4,'resolve':_0x84f089},_0x10d38f);const _0x1819de=_0x453b11 instanceof _0x4f88f7&&_0x453b11[_0x56d8('0xf')][_0x56d8('0x9')](_0x56d8('0x2'));_0x1819de&&(_0x2fe463?_0x1819de[_0x56d8('0x0')](_0x56d8('0x3')):_0x1819de[_0x56d8('0x16')](_0x56d8('0x3')));}}}
@@ -5,9 +5,9 @@
5
5
  /**
6
6
  * @module collaboration-core/users/view/userview
7
7
  */
8
- import { View, type TemplateDefinition } from 'ckeditor5/src/ui';
9
- import type { Locale } from 'ckeditor5/src/utils';
10
- import type { User } from '../../users';
8
+ import { View, type TemplateDefinition } from 'ckeditor5/src/ui.js';
9
+ import type { Locale } from 'ckeditor5/src/utils.js';
10
+ import type { User } from '../../users.js';
11
11
  import '../../../theme/users.css';
12
12
  export default class UserView extends View {
13
13
  name: string;
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x145d=['ck-user','ck-user__img','notificationView','name','ck\x20ck-user__name\x20ck-user__name--hidden','push','ck-user__anonymous','isAnonymous','ck-user__notification','content','setTemplate','ck-user__icon','avatar','url(\x27','initials','div','extendTemplate','ck-user__avatar'];(function(_0x5c3e81,_0x145de1){const _0x3c826e=function(_0x3d1187){while(--_0x3d1187){_0x5c3e81['push'](_0x5c3e81['shift']());}};_0x3c826e(++_0x145de1);}(_0x145d,0x1e7));const _0x3c82=function(_0x5c3e81,_0x145de1){_0x5c3e81=_0x5c3e81-0x0;let _0x3c826e=_0x145d[_0x5c3e81];return _0x3c826e;};import{View as _0x26a12b,IconView as _0x26745c}from'ckeditor5/src/ui';import _0x2162f7 from'../../../theme/icons/notification.svg';import'../../../theme/users.css';export default class C extends _0x26a12b{constructor(_0x10a1dd,_0x325a0a,_0x3403e5){super(_0x10a1dd),this[_0x3c82('0x2')]=_0x325a0a[_0x3c82('0x2')],this[_0x3c82('0x1')]=null;const _0x390282=['ck',_0x3c82('0x0')];if(_0x325a0a[_0x3c82('0x6')]&&_0x390282['push'](_0x3c82('0x5')),_0x325a0a['avatar']&&_0x390282['push'](_0x3c82('0x10')),_0x3403e5){const _0x50245a=new _0x26745c();_0x50245a[_0x3c82('0xf')]({'attributes':{'class':[_0x3c82('0xa')]}}),_0x50245a[_0x3c82('0x8')]=_0x2162f7,this[_0x3c82('0x1')]={'tag':'div','attributes':{'class':['ck',_0x3c82('0x7')],'data-cke-tooltip-position':'n','data-cke-tooltip-text':_0x3403e5},'children':[_0x50245a]};}const _0x1e60d6=[{'tag':_0x3c82('0xe'),'attributes':{'class':_0x390282,'style':{'background-image':_0x325a0a[_0x3c82('0xb')]?_0x3c82('0xc')+_0x325a0a[_0x3c82('0xb')]+'\x27)':''}}},{'tag':_0x3c82('0xe'),'attributes':{'class':_0x325a0a['avatar']?_0x3c82('0x3'):'ck\x20ck-user__name'},'children':[{'text':_0x325a0a[_0x3c82('0xd')]}]}];this[_0x3c82('0x1')]&&_0x1e60d6[_0x3c82('0x4')](this[_0x3c82('0x1')]),this[_0x3c82('0x9')]({'tag':_0x3c82('0xe'),'attributes':{'class':['ck',_0x3c82('0x11')],'data-user-id':_0x325a0a['id']},'children':_0x1e60d6});}}
23
+ const _0x3f98=['avatar','extendTemplate','notificationView','ck-user','ck-user__avatar','ck\x20ck-user__name\x20ck-user__name--hidden','ck-user__notification','setTemplate','push','content','initials','ck\x20ck-user__name','div'];(function(_0x5c07fb,_0x3f98e1){const _0x49b4e6=function(_0x2a5e4f){while(--_0x2a5e4f){_0x5c07fb['push'](_0x5c07fb['shift']());}};_0x49b4e6(++_0x3f98e1);}(_0x3f98,0x7c));const _0x49b4=function(_0x5c07fb,_0x3f98e1){_0x5c07fb=_0x5c07fb-0x0;let _0x49b4e6=_0x3f98[_0x5c07fb];return _0x49b4e6;};import{View as _0x174458,IconView as _0x330c7c}from'ckeditor5/src/ui.js';import _0x591da3 from'../../../theme/icons/notification.svg';import'../../../theme/users.css';export default class E extends _0x174458{constructor(_0x5b80cf,_0xcddbeb,_0x1792c2){super(_0x5b80cf),this['name']=_0xcddbeb['name'],this[_0x49b4('0x8')]=null;const _0x435ca2=['ck','ck-user__img'];if(_0xcddbeb['isAnonymous']&&_0x435ca2[_0x49b4('0x1')]('ck-user__anonymous'),_0xcddbeb[_0x49b4('0x6')]&&_0x435ca2[_0x49b4('0x1')](_0x49b4('0xa')),_0x1792c2){const _0x443311=new _0x330c7c();_0x443311[_0x49b4('0x7')]({'attributes':{'class':['ck-user__icon']}}),_0x443311[_0x49b4('0x2')]=_0x591da3,this[_0x49b4('0x8')]={'tag':_0x49b4('0x5'),'attributes':{'class':['ck',_0x49b4('0xc')],'data-cke-tooltip-position':'n','data-cke-tooltip-text':_0x1792c2},'children':[_0x443311]};}const _0x1e83d1=[{'tag':_0x49b4('0x5'),'attributes':{'class':_0x435ca2,'style':{'background-image':_0xcddbeb['avatar']?'url(\x27'+_0xcddbeb[_0x49b4('0x6')]+'\x27)':''}}},{'tag':'div','attributes':{'class':_0xcddbeb['avatar']?_0x49b4('0xb'):_0x49b4('0x4')},'children':[{'text':_0xcddbeb[_0x49b4('0x3')]}]}];this[_0x49b4('0x8')]&&_0x1e83d1[_0x49b4('0x1')](this['notificationView']),this[_0x49b4('0x0')]({'tag':_0x49b4('0x5'),'attributes':{'class':['ck',_0x49b4('0x9')],'data-user-id':_0xcddbeb['id']},'children':_0x1e83d1});}}
package/src/users.d.ts CHANGED
@@ -6,9 +6,9 @@
6
6
  * @module collaboration-core/users
7
7
  * @publicApi
8
8
  */
9
- import { ContextPlugin, type Context, type Editor } from 'ckeditor5/src/core';
10
- import { Collection } from 'ckeditor5/src/utils';
11
- import Permissions from './permissions';
9
+ import { ContextPlugin, type Context, type Editor } from 'ckeditor5/src/core.js';
10
+ import { Collection } from 'ckeditor5/src/utils.js';
11
+ import Permissions from './permissions.js';
12
12
  import '../theme/usercolors.css';
13
13
  /**
14
14
  * The `Users` plugin provides the basic interface for setting and getting users involved in the document editing process.
package/src/users.js CHANGED
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x29cc=['isAnonymous','_id','trial-license-key-reached-limit-time','users-me-missing-user','licenseKey','add','ck-user__marker--','get','users.colorsCount','_isAnonymous','requires','users-me-already-defined','anonymous-user','destroy','config','users','avatar','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.','ck-user__bg-color--','users.anonymousUserId','charAt','define','_addAnonymousUser','getOperationAuthor','users-add-invalid-id','locale','licenseKeyInvalid','toUpperCase','pluginName','licenseKeyTrialLimit:operations','name','_getInitial','useAnonymousUser','getUser','color','defineMe','decorate','length','_licenseKeyCheckInterval','_locale','init','ck-user__selection--','_myId','trial-license-key-reached-limit-changes','licenseKeyTrialLimit:time','_lastColor','addUser','Anonymous','_getNextColor','users-add-duplicated-id','context','licenseKeyTrial','licenseKeyTrialLimit:revisions'];(function(_0x3c9f7b,_0x29cca9){const _0x5d97bb=function(_0x19b29c){while(--_0x19b29c){_0x3c9f7b['push'](_0x3c9f7b['shift']());}};_0x5d97bb(++_0x29cca9);}(_0x29cc,0x162));const _0x5d97=function(_0x3c9f7b,_0x29cca9){_0x3c9f7b=_0x3c9f7b-0x0;let _0x5d97bb=_0x29cc[_0x3c9f7b];return _0x5d97bb;};import{ContextPlugin as _0x2be292}from'ckeditor5/src/core';import{Collection as _0x11d4ab,CKEditorError as _0x22d71d}from'ckeditor5/src/utils';import _0x7acd5f from'./permissions';import{getTranslation as _0xa5d6e2}from'./utils/common-translations';import'../theme/usercolors.css';export default class l extends _0x2be292{static get[_0x5d97('0x2d')](){return'Users';}static get[_0x5d97('0x1b')](){return[_0x7acd5f];}constructor(_0x51ebe7){super(_0x51ebe7),this[_0x5d97('0xe')][_0x5d97('0x1f')][_0x5d97('0x26')](_0x5d97('0x24'),_0x5d97('0x1d')),this[_0x5d97('0xe')][_0x5d97('0x1f')][_0x5d97('0x26')](_0x5d97('0x19'),0x8),this['users']=new _0x11d4ab(),this[_0x5d97('0x3')]=_0x51ebe7[_0x5d97('0x2a')],this[_0x5d97('0x2')]=null,this[_0x5d97('0x9')]=0x0,this[_0x5d97('0x6')]=null,this[_0x5d97('0x0')](_0x5d97('0x28'));}[_0x5d97('0x4')](){const _0x2e371b=this[_0x5d97('0xe')];this[_0x5d97('0x15')]=_0x2e371b['config'][_0x5d97('0x18')](_0x5d97('0x15'));const _0x58321b=[_0x5d97('0xf'),_0x5d97('0x2b'),'licenseKeyValid','licenseKeyTrialLimit:operations','licenseKeyTrialLimit:time','licenseKeyTrialLimit:revisions'];this[_0x5d97('0x2')]=setInterval(()=>{let _0x1d35b5;for(const _0x162cd5 in _0x2e371b){const _0x2dc622=_0x2e371b[_0x162cd5];if(_0x58321b['includes'](_0x2dc622)){delete _0x2e371b[_0x162cd5],_0x1d35b5=_0x2dc622;break;}}if(_0x5d97('0x2b')===_0x1d35b5)throw clearInterval(this[_0x5d97('0x2')]),new _0x22d71d('invalid-license-key',null);if('licenseKeyTrial'===_0x1d35b5&&console['info'](_0x5d97('0x22')),_0x5d97('0x2e')===_0x1d35b5)throw clearInterval(this[_0x5d97('0x2')]),new _0x22d71d(_0x5d97('0x7'),null);if(_0x5d97('0x8')===_0x1d35b5)throw clearInterval(this[_0x5d97('0x2')]),new _0x22d71d(_0x5d97('0x13'),null);if(_0x5d97('0x10')===_0x1d35b5)throw clearInterval(this[_0x5d97('0x2')]),new _0x22d71d('trial-license-key-reached-limit-revisions',null);'licenseKeyValid'===_0x1d35b5&&clearInterval(this[_0x5d97('0x2')]);},0x3e8),this[_0x5d97('0x27')]();}get['me'](){return null==this[_0x5d97('0x6')]?null:this[_0x5d97('0x32')](this[_0x5d97('0x6')]);}[_0x5d97('0xa')]({id:_0x33713a,name:_0x45eae4,..._0xc3f0d}){if(!_0x33713a||'string'!=typeof _0x33713a)throw new _0x22d71d(_0x5d97('0x29'));if(this['users']['has'](_0x33713a))throw new _0x22d71d(_0x5d97('0xd'),null,{'id':_0x33713a});const _0x14f6b9={..._0xc3f0d,'id':_0x33713a,'name':a(this[_0x5d97('0x3')],_0x45eae4),'color':this[_0x5d97('0xc')]()};_0x14f6b9[_0x5d97('0x2f')]=a(this[_0x5d97('0x3')],_0x14f6b9[_0x5d97('0x2f')]);const _0xe5a5b6=new User(_0x14f6b9);return this[_0x5d97('0x20')][_0x5d97('0x16')](_0xe5a5b6),_0xe5a5b6;}[_0x5d97('0x32')](_0x3950f6){return this[_0x5d97('0x20')]['get'](_0x3950f6);}[_0x5d97('0x31')](){const _0x3e7b63=this[_0x5d97('0xe')][_0x5d97('0x1f')][_0x5d97('0x18')]('users.anonymousUserId');this[_0x5d97('0x6')]||this[_0x5d97('0x34')](_0x3e7b63);}[_0x5d97('0x34')](_0x2e3170){if(this['_myId'])throw new _0x22d71d(_0x5d97('0x1c'),null);if(!this[_0x5d97('0x32')](_0x2e3170))throw new _0x22d71d(_0x5d97('0x14'),null);this[_0x5d97('0x6')]=_0x2e3170;}[_0x5d97('0x28')](){return this['me'];}[_0x5d97('0x1e')](){super[_0x5d97('0x1e')](),clearInterval(this[_0x5d97('0x2')]);}['_getNextColor'](){const _0x47dac1=this[_0x5d97('0xe')][_0x5d97('0x1f')][_0x5d97('0x18')](_0x5d97('0x19'));return this[_0x5d97('0x9')]>=_0x47dac1&&(this[_0x5d97('0x9')]=0x0),new u(this[_0x5d97('0x9')]++);}[_0x5d97('0x27')](){const _0x3e5e91=this[_0x5d97('0xe')][_0x5d97('0x1f')][_0x5d97('0x18')](_0x5d97('0x24'));this['addUser']({'id':_0x3e5e91,'name':_0xa5d6e2(this[_0x5d97('0x3')],_0x5d97('0xb'))})[_0x5d97('0x1a')]=!0x0;}}export class User{constructor(_0x852199){this['id']=_0x852199['id'],this[_0x5d97('0x33')]=_0x852199[_0x5d97('0x33')],this[_0x5d97('0x2f')]=_0x852199[_0x5d97('0x2f')],this[_0x5d97('0x21')]=_0x852199[_0x5d97('0x21')],this[_0x5d97('0x1a')]=!0x1;}get[_0x5d97('0x11')](){return this[_0x5d97('0x1a')];}get['initials'](){const _0x443e34=this[_0x5d97('0x2f')]['split']('\x20');return 0x1===_0x443e34[_0x5d97('0x1')]?this[_0x5d97('0x30')](_0x443e34[0x0]):this['_getInitial'](_0x443e34[0x0])+this[_0x5d97('0x30')](_0x443e34[_0x443e34['length']-0x1]);}['_getInitial'](_0x346c06){return _0x346c06[_0x5d97('0x25')](0x0)[_0x5d97('0x2c')]();}}function a(_0x397e74,_0x113082=''){return''==(_0x113082=_0x113082['trim']())?_0xa5d6e2(_0x397e74,_0x5d97('0xb')):_0x113082;}class u{constructor(_0x181cad){this[_0x5d97('0x12')]=_0x181cad;}['getBackgroundColorClass'](){return _0x5d97('0x23')+this['_id'];}['getSelectionClass'](){return _0x5d97('0x5')+this['_id'];}['getMarkerClass'](){return _0x5d97('0x17')+this[_0x5d97('0x12')];}}
23
+ const _0x28ca=['config','licenseKey','init','context','info','decorate','_id','requires','useAnonymousUser','addUser','_addAnonymousUser','get','licenseKeyTrialLimit:time','getSelectionClass','_licenseKeyCheckInterval','getUser','invalid-license-key','has','string','name','users.anonymousUserId','licenseKeyInvalid','_isAnonymous','length','_getInitial','users-me-missing-user','ck-user__bg-color--','getMarkerClass','_lastColor','color','ck-user__selection--','locale','licenseKeyTrialLimit:revisions','licenseKeyValid','users-me-already-defined','Anonymous','toUpperCase','anonymous-user','trial-license-key-reached-limit-time','destroy','users','users-add-invalid-id','getOperationAuthor','trial-license-key-reached-limit-revisions','split','_locale','_myId','licenseKeyTrial','initials','avatar','users-add-duplicated-id','licenseKeyTrialLimit:operations','Users','users.colorsCount','getBackgroundColorClass'];(function(_0x101cd2,_0x28caca){const _0x156b34=function(_0x44354b){while(--_0x44354b){_0x101cd2['push'](_0x101cd2['shift']());}};_0x156b34(++_0x28caca);}(_0x28ca,0xa7));const _0x156b=function(_0x101cd2,_0x28caca){_0x101cd2=_0x101cd2-0x0;let _0x156b34=_0x28ca[_0x101cd2];return _0x156b34;};import{ContextPlugin as _0x43299c}from'ckeditor5/src/core.js';import{Collection as _0x4d6a7c,CKEditorError as _0x1a07c3}from'ckeditor5/src/utils.js';import _0x4f6541 from'./permissions.js';import{getTranslation as _0x431e02}from'./utils/common-translations.js';import'../theme/usercolors.css';export default class l extends _0x43299c{static get['pluginName'](){return _0x156b('0x32');}static get[_0x156b('0x5')](){return[_0x4f6541];}constructor(_0x4b57a1){super(_0x4b57a1),this['context'][_0x156b('0x35')]['define']('users.anonymousUserId',_0x156b('0x23')),this[_0x156b('0x1')][_0x156b('0x35')]['define']('users.colorsCount',0x8),this[_0x156b('0x26')]=new _0x4d6a7c(),this[_0x156b('0x2b')]=_0x4b57a1[_0x156b('0x1d')],this[_0x156b('0xc')]=null,this[_0x156b('0x1a')]=0x0,this[_0x156b('0x2c')]=null,this[_0x156b('0x3')](_0x156b('0x28'));}[_0x156b('0x0')](){const _0x2905eb=this['context'];this[_0x156b('0x36')]=_0x2905eb[_0x156b('0x35')][_0x156b('0x9')](_0x156b('0x36'));const _0x547b84=[_0x156b('0x2d'),_0x156b('0x13'),'licenseKeyValid',_0x156b('0x31'),_0x156b('0xa'),_0x156b('0x1e')];this[_0x156b('0xc')]=setInterval(()=>{let _0x5d5f04;for(const _0x57f4ac in _0x2905eb){const _0x529130=_0x2905eb[_0x57f4ac];if(_0x547b84['includes'](_0x529130)){delete _0x2905eb[_0x57f4ac],_0x5d5f04=_0x529130;break;}}if(_0x156b('0x13')===_0x5d5f04)throw clearInterval(this['_licenseKeyCheckInterval']),new _0x1a07c3(_0x156b('0xe'),null);if('licenseKeyTrial'===_0x5d5f04&&console[_0x156b('0x2')]('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.'),_0x156b('0x31')===_0x5d5f04)throw clearInterval(this[_0x156b('0xc')]),new _0x1a07c3('trial-license-key-reached-limit-changes',null);if(_0x156b('0xa')===_0x5d5f04)throw clearInterval(this[_0x156b('0xc')]),new _0x1a07c3(_0x156b('0x24'),null);if(_0x156b('0x1e')===_0x5d5f04)throw clearInterval(this['_licenseKeyCheckInterval']),new _0x1a07c3(_0x156b('0x29'),null);_0x156b('0x1f')===_0x5d5f04&&clearInterval(this['_licenseKeyCheckInterval']);},0x3e8),this['_addAnonymousUser']();}get['me'](){return null==this[_0x156b('0x2c')]?null:this[_0x156b('0xd')](this[_0x156b('0x2c')]);}[_0x156b('0x7')]({id:_0x3dc56b,name:_0x3f7ed8,..._0x2dfc4c}){if(!_0x3dc56b||_0x156b('0x10')!=typeof _0x3dc56b)throw new _0x1a07c3(_0x156b('0x27'));if(this['users'][_0x156b('0xf')](_0x3dc56b))throw new _0x1a07c3(_0x156b('0x30'),null,{'id':_0x3dc56b});const _0x56536c={..._0x2dfc4c,'id':_0x3dc56b,'name':a(this[_0x156b('0x2b')],_0x3f7ed8),'color':this['_getNextColor']()};_0x56536c['name']=a(this['_locale'],_0x56536c['name']);const _0x3db51c=new User(_0x56536c);return this['users']['add'](_0x3db51c),_0x3db51c;}[_0x156b('0xd')](_0x26d9a7){return this[_0x156b('0x26')]['get'](_0x26d9a7);}[_0x156b('0x6')](){const _0x96a021=this[_0x156b('0x1')][_0x156b('0x35')][_0x156b('0x9')](_0x156b('0x12'));this['_myId']||this['defineMe'](_0x96a021);}['defineMe'](_0x468431){if(this[_0x156b('0x2c')])throw new _0x1a07c3(_0x156b('0x20'),null);if(!this['getUser'](_0x468431))throw new _0x1a07c3(_0x156b('0x17'),null);this[_0x156b('0x2c')]=_0x468431;}[_0x156b('0x28')](){return this['me'];}[_0x156b('0x25')](){super[_0x156b('0x25')](),clearInterval(this[_0x156b('0xc')]);}['_getNextColor'](){const _0x549c6f=this[_0x156b('0x1')][_0x156b('0x35')][_0x156b('0x9')](_0x156b('0x33'));return this[_0x156b('0x1a')]>=_0x549c6f&&(this[_0x156b('0x1a')]=0x0),new u(this[_0x156b('0x1a')]++);}[_0x156b('0x8')](){const _0x88ab40=this[_0x156b('0x1')]['config']['get'](_0x156b('0x12'));this[_0x156b('0x7')]({'id':_0x88ab40,'name':_0x431e02(this[_0x156b('0x2b')],_0x156b('0x21'))})[_0x156b('0x14')]=!0x0;}}export class User{constructor(_0x1ae3bf){this['id']=_0x1ae3bf['id'],this['color']=_0x1ae3bf[_0x156b('0x1b')],this[_0x156b('0x11')]=_0x1ae3bf[_0x156b('0x11')],this[_0x156b('0x2f')]=_0x1ae3bf[_0x156b('0x2f')],this[_0x156b('0x14')]=!0x1;}get['isAnonymous'](){return this[_0x156b('0x14')];}get[_0x156b('0x2e')](){const _0x3fdd5f=this[_0x156b('0x11')][_0x156b('0x2a')]('\x20');return 0x1===_0x3fdd5f[_0x156b('0x15')]?this[_0x156b('0x16')](_0x3fdd5f[0x0]):this['_getInitial'](_0x3fdd5f[0x0])+this[_0x156b('0x16')](_0x3fdd5f[_0x3fdd5f[_0x156b('0x15')]-0x1]);}[_0x156b('0x16')](_0x501585){return _0x501585['charAt'](0x0)[_0x156b('0x22')]();}}function a(_0x4593df,_0x335048=''){return''==(_0x335048=_0x335048['trim']())?_0x431e02(_0x4593df,_0x156b('0x21')):_0x335048;}class u{constructor(_0x2a0df9){this[_0x156b('0x4')]=_0x2a0df9;}[_0x156b('0x34')](){return _0x156b('0x18')+this[_0x156b('0x4')];}[_0x156b('0xb')](){return _0x156b('0x1c')+this[_0x156b('0x4')];}[_0x156b('0x19')](){return'ck-user__marker--'+this[_0x156b('0x4')];}}
@@ -5,5 +5,5 @@
5
5
  /**
6
6
  * @module collaboration-core/utils/common-translations
7
7
  */
8
- import type { Locale } from 'ckeditor5/src/utils';
8
+ import type { Locale } from 'ckeditor5/src/utils.js';
9
9
  export declare function getTranslation(locale: Locale, id: string): string;
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- export function getTranslation(_0x27b8d4,_0x439ef9){const t=_0x27b8d4['t'];switch(_0x439ef9){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'';}}
23
+ export function getTranslation(_0x4111a1,_0x5373ea){const t=_0x4111a1['t'];switch(_0x5373ea){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'';}}
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module comments/comments/ui/view/confirmmixin
7
7
  */
8
- import type { View } from 'ckeditor5/src/ui';
9
- import type { Locale, Mixed } from 'ckeditor5/src/utils';
8
+ import type { View } from 'ckeditor5/src/ui.js';
9
+ import type { Locale, Mixed } from 'ckeditor5/src/utils.js';
10
10
  /**
11
11
  * Adds interface for showing confirmation view in the specific for `CommentThreadView` and `CommentView` structure
12
12
  * Confirm is always set to the `content` collection at the last position.
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- var _0x1d92=['once','cancel','set','message','_removeConfirm','confirmView','locale','cancelConfirm','remove','isConfirm','deregisterChild','focus','appendChild','element','registerChild','render','submit'];(function(_0x4d9d37,_0x1d92ac){var _0x2b554b=function(_0x5207b3){while(--_0x5207b3){_0x4d9d37['push'](_0x4d9d37['shift']());}};_0x2b554b(++_0x1d92ac);}(_0x1d92,0x1aa));var _0x2b55=function(_0x4d9d37,_0x1d92ac){_0x4d9d37=_0x4d9d37-0x0;var _0x2b554b=_0x1d92[_0x4d9d37];return _0x2b554b;};import _0x3afd86 from'./confirmview';export default function m(_0x3843f2){return class extends _0x3843f2{['showConfirm'](_0x1ac79b,_0x37f908){return this[_0x2b55('0x4')]=new _0x3afd86(this[_0x2b55('0x5')]),this[_0x2b55('0x4')][_0x2b55('0xe')](),this['confirmView'][_0x2b55('0x2')]=_0x1ac79b,this[_0x2b55('0x4')][_0x2b55('0x10')]('cancel',()=>{this['_removeConfirm']();}),this[_0x2b55('0x4')]['once'](_0x2b55('0xf'),()=>{this[_0x2b55('0x3')]();}),_0x37f908[_0x2b55('0xb')](this['confirmView']['element']),this[_0x2b55('0xd')](this[_0x2b55('0x4')]),this[_0x2b55('0xc')][_0x2b55('0xa')](),this[_0x2b55('0x1')](_0x2b55('0x8'),!0x0),new Promise(_0x364acc=>this[_0x2b55('0x4')]['on'](_0x2b55('0xf'),_0x364acc));}[_0x2b55('0x6')](){this['isConfirm']&&this[_0x2b55('0x4')]['fire'](_0x2b55('0x0'));}[_0x2b55('0x3')](){this[_0x2b55('0xc')]&&this[_0x2b55('0x4')]&&this[_0x2b55('0x4')][_0x2b55('0xc')]&&(this[_0x2b55('0xc')][_0x2b55('0xa')](),this[_0x2b55('0x4')]['element'][_0x2b55('0x7')](),this[_0x2b55('0x9')](this[_0x2b55('0x4')]),this['isConfirm']=!0x1,this[_0x2b55('0x4')]['destroy'](),this[_0x2b55('0x4')]=void 0x0);}};}
23
+ var _0x58ff=['_removeConfirm','element','cancel','render','locale','showConfirm','isConfirm','focus','deregisterChild','fire','remove','submit','destroy','once','registerChild','confirmView'];(function(_0x278b12,_0x58ff2b){var _0x20658d=function(_0x584143){while(--_0x584143){_0x278b12['push'](_0x278b12['shift']());}};_0x20658d(++_0x58ff2b);}(_0x58ff,0x10a));var _0x2065=function(_0x278b12,_0x58ff2b){_0x278b12=_0x278b12-0x0;var _0x20658d=_0x58ff[_0x278b12];return _0x20658d;};import _0x55be19 from'./confirmview.js';export default function m(_0x479701){return class extends _0x479701{[_0x2065('0xb')](_0x4f2a7e,_0x249dc2){return this['confirmView']=new _0x55be19(this[_0x2065('0xa')]),this[_0x2065('0x5')][_0x2065('0x9')](),this['confirmView']['message']=_0x4f2a7e,this[_0x2065('0x5')]['once'](_0x2065('0x8'),()=>{this[_0x2065('0x6')]();}),this[_0x2065('0x5')][_0x2065('0x3')]('submit',()=>{this[_0x2065('0x6')]();}),_0x249dc2['appendChild'](this[_0x2065('0x5')][_0x2065('0x7')]),this[_0x2065('0x4')](this[_0x2065('0x5')]),this['element'][_0x2065('0xd')](),this['set'](_0x2065('0xc'),!0x0),new Promise(_0x43f216=>this[_0x2065('0x5')]['on'](_0x2065('0x1'),_0x43f216));}['cancelConfirm'](){this[_0x2065('0xc')]&&this[_0x2065('0x5')][_0x2065('0xf')](_0x2065('0x8'));}[_0x2065('0x6')](){this[_0x2065('0x7')]&&this[_0x2065('0x5')]&&this[_0x2065('0x5')]['element']&&(this[_0x2065('0x7')]['focus'](),this[_0x2065('0x5')][_0x2065('0x7')][_0x2065('0x0')](),this[_0x2065('0xe')](this[_0x2065('0x5')]),this[_0x2065('0xc')]=!0x1,this['confirmView'][_0x2065('0x2')](),this[_0x2065('0x5')]=void 0x0);}};}
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module comments/comments/ui/view/confirmview
7
7
  */
8
- import { View } from 'ckeditor5/src/ui';
9
- import type { Locale } from 'ckeditor5/src/utils';
8
+ import { View } from 'ckeditor5/src/ui.js';
9
+ import type { Locale } from 'ckeditor5/src/utils.js';
10
10
  export default class ConfirmView extends View {
11
11
  message: string;
12
12
  constructor(locale: Locale);
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x3f73=['submit','ck-thread__remove-confirm-actions','message','set','cancelView','cancel','_createButtonView','Are\x20you\x20sure?','ck-thread__remove-confirm-','icon','div','fire','execute','ck-thread__remove-confirm','setTemplate','Yes','extendTemplate','submitView'];(function(_0x22d6cf,_0x3f73e6){const _0x116c3d=function(_0x288e7c){while(--_0x288e7c){_0x22d6cf['push'](_0x22d6cf['shift']());}};_0x116c3d(++_0x3f73e6);}(_0x3f73,0xf6));const _0x116c=function(_0x22d6cf,_0x3f73e6){_0x22d6cf=_0x22d6cf-0x0;let _0x116c3d=_0x3f73[_0x22d6cf];return _0x116c3d;};import{View as _0x34ea97,ButtonView as _0x236c7c}from'ckeditor5/src/ui';import{icons as _0x58fc7e}from'ckeditor5/src/core';import{getTranslation as _0x2ac181}from'./common-translations';export default class h extends _0x34ea97{constructor(_0x2c263b){super(_0x2c263b);const _0x49ee44=this['bindTemplate'];this[_0x116c('0x5')]=this[_0x116c('0xc')](_0x2c263b,_0x2ac181(_0x2c263b,_0x116c('0x3')),_0x58fc7e['check'],_0x116c('0x6')),this['cancelView']=this[_0x116c('0xc')](_0x2c263b,_0x2ac181(_0x2c263b,'No'),_0x58fc7e['cancel'],_0x116c('0xb')),this[_0x116c('0x9')]('message',_0x2ac181(_0x2c263b,_0x116c('0xd'))),this[_0x116c('0x2')]({'tag':'div','attributes':{'class':[_0x116c('0x1')]},'children':[{'tag':_0x116c('0x10'),'attributes':{'class':'ck-thread__remove-confirm-inner'},'children':[{'tag':'p','children':[{'text':_0x49ee44['to'](_0x116c('0x8'))}]},{'tag':'div','attributes':{'class':_0x116c('0x7')},'children':[this[_0x116c('0x5')],this[_0x116c('0xa')]]}]}]});}[_0x116c('0xc')](_0x374e97,_0x211ce0,_0x171c87,_0xf9355d){const _0x561ca7=new _0x236c7c(_0x374e97);return _0x561ca7['label']=_0x211ce0,_0x561ca7[_0x116c('0xf')]=_0x171c87,_0x561ca7[_0x116c('0x4')]({'attributes':{'class':_0x116c('0xe')+_0xf9355d}}),_0x561ca7['on'](_0x116c('0x0'),()=>this[_0x116c('0x11')](_0xf9355d)),_0x561ca7;}}
23
+ const _0x5b85=['ck-thread__remove-confirm-','submit','setTemplate','div','fire','submitView','ck-thread__remove-confirm-inner','Yes','ck-thread__remove-confirm','icon','label','bindTemplate','_createButtonView','cancelView','cancel','Are\x20you\x20sure?','execute','extendTemplate','ck-thread__remove-confirm-actions'];(function(_0x57e1cd,_0x5b85e6){const _0xdec776=function(_0x3127e9){while(--_0x3127e9){_0x57e1cd['push'](_0x57e1cd['shift']());}};_0xdec776(++_0x5b85e6);}(_0x5b85,0x1d5));const _0xdec7=function(_0x57e1cd,_0x5b85e6){_0x57e1cd=_0x57e1cd-0x0;let _0xdec776=_0x5b85[_0x57e1cd];return _0xdec776;};import{View as _0x30938e,ButtonView as _0x63b97}from'ckeditor5/src/ui.js';import{icons as _0x1cdcbc}from'ckeditor5/src/core.js';import{getTranslation as _0x2e955b}from'./common-translations.js';export default class h extends _0x30938e{constructor(_0x45e93d){super(_0x45e93d);const _0xf67842=this[_0xdec7('0x11')];this['submitView']=this['_createButtonView'](_0x45e93d,_0x2e955b(_0x45e93d,_0xdec7('0xd')),_0x1cdcbc['check'],_0xdec7('0x7')),this['cancelView']=this[_0xdec7('0x12')](_0x45e93d,_0x2e955b(_0x45e93d,'No'),_0x1cdcbc['cancel'],_0xdec7('0x1')),this['set']('message',_0x2e955b(_0x45e93d,_0xdec7('0x2'))),this[_0xdec7('0x8')]({'tag':_0xdec7('0x9'),'attributes':{'class':[_0xdec7('0xe')]},'children':[{'tag':_0xdec7('0x9'),'attributes':{'class':_0xdec7('0xc')},'children':[{'tag':'p','children':[{'text':_0xf67842['to']('message')}]},{'tag':_0xdec7('0x9'),'attributes':{'class':_0xdec7('0x5')},'children':[this[_0xdec7('0xb')],this[_0xdec7('0x0')]]}]}]});}[_0xdec7('0x12')](_0x2c29cb,_0x517802,_0x25d645,_0x20e2b1){const _0x283299=new _0x63b97(_0x2c29cb);return _0x283299[_0xdec7('0x10')]=_0x517802,_0x283299[_0xdec7('0xf')]=_0x25d645,_0x283299[_0xdec7('0x4')]({'attributes':{'class':_0xdec7('0x6')+_0x20e2b1}}),_0x283299['on'](_0xdec7('0x3'),()=>this[_0xdec7('0xa')](_0x20e2b1)),_0x283299;}}
@@ -2,7 +2,7 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
- import type { LocaleConfig } from '../config';
5
+ import type { LocaleConfig } from '../config.js';
6
6
  /**
7
7
  * Returns a function that formats the date to the set format.
8
8
  *
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x2db7=['invalid-date-time-format','\x27Today\x27\x20hh:mma','MM-dd-yyyy\x20hh:mma','\x27Last\x27\x20EEEE\x20hh:mma','function','dateTimeFormat','\x27Yesterday\x27\x20hh:mma','string'];(function(_0xa6a677,_0x2db790){const _0xcc4013=function(_0x5ca3fe){while(--_0x5ca3fe){_0xa6a677['push'](_0xa6a677['shift']());}};_0xcc4013(++_0x2db790);}(_0x2db7,0x8f));const _0xcc40=function(_0xa6a677,_0x2db790){_0xa6a677=_0xa6a677-0x0;let _0xcc4013=_0x2db7[_0xa6a677];return _0xcc4013;};import _0x1bdf40 from'date-fns/format';import _0x1f3810 from'date-fns/parseISO';import _0x51aad5 from'date-fns/differenceInCalendarDays';import{CKEditorError as _0x24a427}from'ckeditor5/src/utils';export default function E(_0x3b7ca7={}){if(void 0x0!==_0x3b7ca7[_0xcc40('0x6')]&&_0xcc40('0x5')!=typeof _0x3b7ca7[_0xcc40('0x6')])throw new _0x24a427(_0xcc40('0x1'));return _0x23613b=>{const _0x89c2f1=_0xcc40('0x0')==typeof _0x23613b?_0x1f3810(_0x23613b):_0x23613b,_0x2a58b6=new Date(),_0x181a10=_0x51aad5(_0x2a58b6,_0x89c2f1);return _0x3b7ca7[_0xcc40('0x6')]?_0x3b7ca7[_0xcc40('0x6')](_0x89c2f1):_0x1bdf40(_0x89c2f1,0x0===_0x181a10?_0xcc40('0x2'):0x1===_0x181a10?_0xcc40('0x7'):_0x181a10<0x7?_0xcc40('0x4'):_0xcc40('0x3'));};}
23
+ const _0x497f=['\x27Yesterday\x27\x20hh:mma','invalid-date-time-format','string','\x27Last\x27\x20EEEE\x20hh:mma','MM-dd-yyyy\x20hh:mma','\x27Today\x27\x20hh:mma','dateTimeFormat'];(function(_0x172c55,_0x497f55){const _0x44c2b8=function(_0x3ffaa5){while(--_0x3ffaa5){_0x172c55['push'](_0x172c55['shift']());}};_0x44c2b8(++_0x497f55);}(_0x497f,0xc5));const _0x44c2=function(_0x172c55,_0x497f55){_0x172c55=_0x172c55-0x0;let _0x44c2b8=_0x497f[_0x172c55];return _0x44c2b8;};import _0x35e9e5 from'date-fns/format/index.js';import _0x1553a8 from'date-fns/parseISO/index.js';import _0x3cb59b from'date-fns/differenceInCalendarDays/index.js';import{CKEditorError as _0x44091f}from'ckeditor5/src/utils.js';export default function j(_0x1b852e={}){if(void 0x0!==_0x1b852e[_0x44c2('0x5')]&&'function'!=typeof _0x1b852e['dateTimeFormat'])throw new _0x44091f(_0x44c2('0x0'));return _0x11d05c=>{const _0x3c7471=_0x44c2('0x1')==typeof _0x11d05c?_0x1553a8(_0x11d05c):_0x11d05c,_0x274579=new Date(),_0x3b9e5f=_0x3cb59b(_0x274579,_0x3c7471);return _0x1b852e['dateTimeFormat']?_0x1b852e[_0x44c2('0x5')](_0x3c7471):_0x35e9e5(_0x3c7471,0x0===_0x3b9e5f?_0x44c2('0x4'):0x1===_0x3b9e5f?_0x44c2('0x6'):_0x3b9e5f<0x7?_0x44c2('0x2'):_0x44c2('0x3'));};}
@@ -2,7 +2,7 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
- import type { EditingController, Marker } from 'ckeditor5/src/engine';
5
+ import type { EditingController, Marker } from 'ckeditor5/src/engine.js';
6
6
  /**
7
7
  * Returns a first DOM element mapped with the marker.
8
8
  *
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x581c=['map','push','domElement','name','markerNameToElements','mapViewToDom','view','sort','item','length','mapper','domConverter','getClientRects','from'];(function(_0x533c48,_0x581c95){const _0x35693d=function(_0x31cae7){while(--_0x31cae7){_0x533c48['push'](_0x533c48['shift']());}};_0x35693d(++_0x581c95);}(_0x581c,0x1c1));const _0x3569=function(_0x533c48,_0x581c95){_0x533c48=_0x533c48-0x0;let _0x35693d=_0x581c[_0x533c48];return _0x35693d;};import{first as _0xe67320}from'ckeditor5/src/utils';export default function k(_0x1e7677,_0x5c1357){const _0x1757fb=_0x1e7677[_0x3569('0x9')]['markerNameToElements'](_0x5c1357[_0x3569('0x2')]);if(!_0x1757fb)return null;const _0x895360=_0xe67320(_0x1757fb['values']());return _0x1e7677[_0x3569('0x5')][_0x3569('0xa')]['mapViewToDom'](_0x895360)||null;}export function getAllMarkersDomElementsSorted(_0x1514b6,_0x21b37d){if(0x0===_0x21b37d['length'])return null;const _0x1a329e=[],_0x189c9b=_0x1514b6['view'][_0x3569('0xa')];for(const _0x55e309 of _0x21b37d){const _0x1432a0=_0x1514b6['mapper'][_0x3569('0x3')](_0x55e309[_0x3569('0x2')]);if(!_0x1432a0)continue;const _0x2d327d=Array[_0x3569('0xc')](_0x1432a0)[_0x3569('0xd')](_0x233b7c=>_0x189c9b[_0x3569('0x4')](_0x233b7c))['filter'](_0x18e097=>!!_0x18e097);_0x1a329e[_0x3569('0x0')](..._0x2d327d);}if(0x0===_0x1a329e[_0x3569('0x8')])return null;const _0x37f144=[];for(const _0x59ac06 of _0x1a329e){const _0x37eabc=_0x59ac06[_0x3569('0xb')]()[_0x3569('0x7')](0x0);_0x37eabc&&_0x37f144['push']({'x':_0x37eabc['x'],'y':_0x37eabc['y'],'domElement':_0x59ac06});}return 0x0===_0x37f144[_0x3569('0x8')]?null:(_0x37f144[_0x3569('0x6')]((_0x2f5777,_0x1667a4)=>_0x2f5777['y']-_0x1667a4['y']||_0x2f5777['x']-_0x1667a4['x']),_0x37f144['map'](_0x208716=>_0x208716[_0x3569('0x1')]));}
23
+ const _0x46f0=['mapViewToDom','length','values','name','markerNameToElements','push','map','mapper','filter','domConverter','sort','domElement','getClientRects','from','item'];(function(_0x1d25fa,_0x46f0ef){const _0x141a76=function(_0x16ff6f){while(--_0x16ff6f){_0x1d25fa['push'](_0x1d25fa['shift']());}};_0x141a76(++_0x46f0ef);}(_0x46f0,0xde));const _0x141a=function(_0x1d25fa,_0x46f0ef){_0x1d25fa=_0x1d25fa-0x0;let _0x141a76=_0x46f0[_0x1d25fa];return _0x141a76;};import{first as _0x1e1500}from'ckeditor5/src/utils.js';export default function k(_0x133c49,_0x1ed24c){const _0xae66d2=_0x133c49[_0x141a('0xa')][_0x141a('0x7')](_0x1ed24c[_0x141a('0x6')]);if(!_0xae66d2)return null;const _0x3358cf=_0x1e1500(_0xae66d2[_0x141a('0x5')]());return _0x133c49['view'][_0x141a('0xc')][_0x141a('0x3')](_0x3358cf)||null;}export function getAllMarkersDomElementsSorted(_0x130e91,_0x3127ee){if(0x0===_0x3127ee['length'])return null;const _0x5e35ee=[],_0x523c1f=_0x130e91['view']['domConverter'];for(const _0x36e476 of _0x3127ee){const _0x157747=_0x130e91[_0x141a('0xa')]['markerNameToElements'](_0x36e476[_0x141a('0x6')]);if(!_0x157747)continue;const _0x3b7a62=Array[_0x141a('0x1')](_0x157747)[_0x141a('0x9')](_0x57ec3a=>_0x523c1f[_0x141a('0x3')](_0x57ec3a))[_0x141a('0xb')](_0x2e5b0f=>!!_0x2e5b0f);_0x5e35ee[_0x141a('0x8')](..._0x3b7a62);}if(0x0===_0x5e35ee[_0x141a('0x4')])return null;const _0x176abf=[];for(const _0x273a3d of _0x5e35ee){const _0x5dcf1a=_0x273a3d[_0x141a('0x0')]()[_0x141a('0x2')](0x0);_0x5dcf1a&&_0x176abf[_0x141a('0x8')]({'x':_0x5dcf1a['x'],'y':_0x5dcf1a['y'],'domElement':_0x273a3d});}return 0x0===_0x176abf[_0x141a('0x4')]?null:(_0x176abf[_0x141a('0xd')]((_0x22314c,_0x1eb9e0)=>_0x22314c['y']-_0x1eb9e0['y']||_0x22314c['x']-_0x1eb9e0['x']),_0x176abf[_0x141a('0x9')](_0x6f9fe0=>_0x6f9fe0[_0x141a('0xe')]));}
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x3eb3=['string','object','sign','keys','charCodeAt','sort','boolean','toString'];(function(_0x11b20e,_0x3eb3a8){const _0x154b8f=function(_0x556451){while(--_0x556451){_0x11b20e['push'](_0x11b20e['shift']());}};_0x154b8f(++_0x3eb3a8);}(_0x3eb3,0xae));const _0x154b=function(_0x11b20e,_0x3eb3a8){_0x11b20e=_0x11b20e-0x0;let _0x154b8f=_0x3eb3[_0x11b20e];return _0x154b8f;};export default function b(_0x3531c6){let _0x339692=0x0,_0x3f2c09=0x0;for(const _0x4fac2e of g(_0x3531c6))_0x339692=(_0x339692<<0x5)-_0x339692+_0x4fac2e,_0x339692&=_0x339692,[_0x339692,_0x3f2c09]=[_0x3f2c09,_0x339692];return O(_0x339692)+O(_0x3f2c09);}function*j(_0x3febc8){_0x3febc8?_0x154b('0x0')==typeof _0x3febc8?yield 0x1:Array['isArray'](_0x3febc8)?yield*function*(_0x134e8b){for(const _0x1d91e8 of _0x134e8b)yield*j(_0x1d91e8);}(_0x3febc8):_0x154b('0x3')==typeof _0x3febc8?yield*g(_0x3febc8):_0x154b('0x2')==typeof _0x3febc8?yield*A(_0x3febc8):'number'==typeof _0x3febc8&&(yield _0x3febc8):yield 0x0;}function*g(_0x3866cd){if(yield M('{'),_0x3866cd){const _0x1ea391=Object[_0x154b('0x5')](_0x3866cd)[_0x154b('0x7')]();for(const _0x54f1e1 of _0x1ea391){yield*A(_0x54f1e1),yield M(':');const _0x564ce9=_0x3866cd[_0x54f1e1];yield*j(_0x564ce9);}}yield M('}');}function*A(_0x5dcb15){yield M('\x22');for(const _0x5b90d of _0x5dcb15)yield M(_0x5b90d);yield M('\x22');}function M(_0x114f30){return _0x114f30[_0x154b('0x6')](0x0);}function O(_0x24e85d){return(_0x24e85d*=Math[_0x154b('0x4')](_0x24e85d))[_0x154b('0x1')](0x24);}
23
+ const _0x2f4a=['toString','sort','charCodeAt','object','keys','isArray','number'];(function(_0x336af3,_0x2f4add){const _0x368860=function(_0x8e9cdf){while(--_0x8e9cdf){_0x336af3['push'](_0x336af3['shift']());}};_0x368860(++_0x2f4add);}(_0x2f4a,0x13c));const _0x3688=function(_0x336af3,_0x2f4add){_0x336af3=_0x336af3-0x0;let _0x368860=_0x2f4a[_0x336af3];return _0x368860;};export default function b(_0x1c0b1d){let _0x4a09c7=0x0,_0x394f16=0x0;for(const _0xe24c7 of A(_0x1c0b1d))_0x4a09c7=(_0x4a09c7<<0x5)-_0x4a09c7+_0xe24c7,_0x4a09c7&=_0x4a09c7,[_0x4a09c7,_0x394f16]=[_0x394f16,_0x4a09c7];return q(_0x4a09c7)+q(_0x394f16);}function*g(_0x2d7d07){_0x2d7d07?'boolean'==typeof _0x2d7d07?yield 0x1:Array[_0x3688('0x4')](_0x2d7d07)?yield*function*(_0x4e337c){for(const _0x53159b of _0x4e337c)yield*g(_0x53159b);}(_0x2d7d07):_0x3688('0x2')==typeof _0x2d7d07?yield*A(_0x2d7d07):'string'==typeof _0x2d7d07?yield*M(_0x2d7d07):_0x3688('0x5')==typeof _0x2d7d07&&(yield _0x2d7d07):yield 0x0;}function*A(_0x4c54d8){if(yield O('{'),_0x4c54d8){const _0x522fd3=Object[_0x3688('0x3')](_0x4c54d8)[_0x3688('0x0')]();for(const _0x2177f1 of _0x522fd3){yield*M(_0x2177f1),yield O(':');const _0x27832c=_0x4c54d8[_0x2177f1];yield*g(_0x27832c);}}yield O('}');}function*M(_0x5a8adc){yield O('\x22');for(const _0xae508 of _0x5a8adc)yield O(_0xae508);yield O('\x22');}function O(_0x32cbd1){return _0x32cbd1[_0x3688('0x1')](0x0);}function q(_0x40ad55){return(_0x40ad55*=Math['sign'](_0x40ad55))[_0x3688('0x6')](0x24);}
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module collaboration-core/utils/common-translations
7
7
  */
8
- import type { Editor, EditorConfig } from 'ckeditor5/src/core';
8
+ import type { Editor, EditorConfig } from 'ckeditor5/src/core.js';
9
9
  /**
10
10
  * A function that prepares config for internal editors removing all unnecessary plugins like RTC.
11
11
  *
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x4dd5=['plugins','constructor','has','pluginName','WebSocketGateway','_context','WProofreader','from','DocumentOutline','set','concat','get','removePlugins','toolbar','includes','config','builtinPlugins','requires','context','filter','string','length','extraPlugins','map','every','rootsAttributes'];(function(_0x109c32,_0x4dd579){const _0x39b586=function(_0x53cb4f){while(--_0x53cb4f){_0x109c32['push'](_0x109c32['shift']());}};_0x39b586(++_0x4dd579);}(_0x4dd5,0xa9));const _0x39b5=function(_0x109c32,_0x4dd579){_0x109c32=_0x109c32-0x0;let _0x39b586=_0x4dd5[_0x109c32];return _0x39b586;};const w=['initialData',_0x39b5('0x5'),_0x39b5('0x0'),_0x39b5('0xc')],W=[_0x39b5('0x11'),'RevisionTracker','Autosave','WordCount',_0x39b5('0x15'),_0x39b5('0x13')];function v(_0x2ff996,_0x4e4958,_0x23418d,_0x21e5bb=[]){const _0xe3b668=_0x39b5('0x7')==typeof _0x2ff996?_0x23418d[_0x39b5('0x18')](_0x2ff996)[_0x39b5('0xe')]:_0x2ff996,_0x46c9a6=_0xe3b668['pluginName']||_0xe3b668['name'];if(_0x4e4958[_0x39b5('0xf')](_0x46c9a6))return _0x4e4958[_0x39b5('0x18')](_0x46c9a6);if(_0x4e4958['set'](_0x46c9a6,!0x0),_0x46c9a6&&W[_0x39b5('0x17')](_0x21e5bb)[_0x39b5('0x1')](_0x46c9a6))return _0x4e4958['set'](_0x46c9a6,!0x1),!0x1;if(!_0xe3b668[_0x39b5('0x4')])return _0x4e4958['set'](_0x46c9a6,!0x0),!0x0;const _0x34d032=_0xe3b668[_0x39b5('0x4')][_0x39b5('0xb')](_0x4b2b12=>v(_0x4b2b12,_0x4e4958,_0x23418d,_0x21e5bb));return _0x4e4958[_0x39b5('0x16')](_0x46c9a6,_0x34d032),_0x34d032;}export default function D(_0x544810,_0x14bf01){const _0xbfa697={};for(const _0x5d7af of _0x544810[_0x39b5('0x2')]['names']())w['includes'](_0x5d7af)||(_0xbfa697[_0x5d7af]=_0x544810[_0x39b5('0x2')][_0x39b5('0x18')](_0x5d7af));const _0x3320c3=_0xbfa697[_0x39b5('0xd')]||[],_0xe4ded5=_0x544810['constructor'][_0x39b5('0x3')]||[],_0x561c02=_0x3320c3[_0x39b5('0x8')]?_0x3320c3:_0xe4ded5,_0xe6fe1a=_0xbfa697['extraPlugins']||[];delete _0xbfa697[_0x39b5('0x9')];const _0x3fd2d3=_0xbfa697[_0x39b5('0x19')]||[];delete _0xbfa697[_0x39b5('0x19')];const _0x3be2c9=_0x544810[_0x39b5('0x12')]['config']['get'](_0x39b5('0xd'))||[],_0x4dfaaf=_0x561c02[_0x39b5('0x17')](_0xe6fe1a)['concat'](_0x3be2c9)[_0x39b5('0xa')](_0x4e7cd8=>'string'==typeof _0x4e7cd8?_0xe4ded5['find'](_0x14fa33=>_0x14fa33[_0x39b5('0x10')]==_0x4e7cd8):_0x4e7cd8)[_0x39b5('0x6')](_0x4d6ea8=>!_0x3fd2d3[_0x39b5('0x1')](_0x4d6ea8)&&!_0x3fd2d3['includes'](_0x4d6ea8[_0x39b5('0x10')])),_0x4aa8f9=Array[_0x39b5('0x14')](new Set(_0x4dfaaf)),_0x44f69e=new Map();return _0xbfa697[_0x39b5('0xd')]=_0x4aa8f9[_0x39b5('0x6')](_0x385a81=>v(_0x385a81,_0x44f69e,_0x544810['plugins'],_0x14bf01)),_0xbfa697;}
23
+ const _0x4d51=['extraPlugins','DocumentOutline','rootsAttributes','initialData','every','config','WebSocketGateway','filter','names','includes','set','requires','removePlugins','find','has','WordCount','map','Autosave','_context','get','builtinPlugins','concat','pluginName','length','name','RevisionTracker','WProofreader','toolbar','plugins','constructor'];(function(_0xeef905,_0x4d5114){const _0x117675=function(_0x29884c){while(--_0x29884c){_0xeef905['push'](_0xeef905['shift']());}};_0x117675(++_0x4d5114);}(_0x4d51,0xa2));const _0x1176=function(_0xeef905,_0x4d5114){_0xeef905=_0xeef905-0x0;let _0x117675=_0x4d51[_0xeef905];return _0x117675;};const w=[_0x1176('0x15'),'context',_0x1176('0xf'),_0x1176('0x14')],W=[_0x1176('0x18'),_0x1176('0xd'),_0x1176('0x5'),_0x1176('0x3'),_0x1176('0x13'),_0x1176('0xe')];function v(_0x308c4b,_0x1b8821,_0x141f1d,_0x20263f=[]){const _0x31d6cb='string'==typeof _0x308c4b?_0x141f1d['get'](_0x308c4b)[_0x1176('0x11')]:_0x308c4b,_0x337d19=_0x31d6cb[_0x1176('0xa')]||_0x31d6cb[_0x1176('0xc')];if(_0x1b8821[_0x1176('0x2')](_0x337d19))return _0x1b8821[_0x1176('0x7')](_0x337d19);if(_0x1b8821[_0x1176('0x1c')](_0x337d19,!0x0),_0x337d19&&W[_0x1176('0x9')](_0x20263f)['includes'](_0x337d19))return _0x1b8821[_0x1176('0x1c')](_0x337d19,!0x1),!0x1;if(!_0x31d6cb[_0x1176('0x1d')])return _0x1b8821[_0x1176('0x1c')](_0x337d19,!0x0),!0x0;const _0x4568e8=_0x31d6cb[_0x1176('0x1d')][_0x1176('0x16')](_0x37dc35=>v(_0x37dc35,_0x1b8821,_0x141f1d,_0x20263f));return _0x1b8821['set'](_0x337d19,_0x4568e8),_0x4568e8;}export default function D(_0x136ec,_0x19bfeb){const _0x41e806={};for(const _0x43fcdf of _0x136ec[_0x1176('0x17')][_0x1176('0x1a')]())w[_0x1176('0x1b')](_0x43fcdf)||(_0x41e806[_0x43fcdf]=_0x136ec[_0x1176('0x17')][_0x1176('0x7')](_0x43fcdf));const _0x1a5be0=_0x41e806[_0x1176('0x10')]||[],_0x36b1bd=_0x136ec[_0x1176('0x11')][_0x1176('0x8')]||[],_0x10e72=_0x1a5be0[_0x1176('0xb')]?_0x1a5be0:_0x36b1bd,_0x22fed1=_0x41e806[_0x1176('0x12')]||[];delete _0x41e806[_0x1176('0x12')];const _0x54fdee=_0x41e806['removePlugins']||[];delete _0x41e806[_0x1176('0x0')];const _0x44c4bb=_0x136ec[_0x1176('0x6')]['config'][_0x1176('0x7')](_0x1176('0x10'))||[],_0x9fce80=_0x10e72['concat'](_0x22fed1)[_0x1176('0x9')](_0x44c4bb)[_0x1176('0x4')](_0x1b22f7=>'string'==typeof _0x1b22f7?_0x36b1bd[_0x1176('0x1')](_0xf27d1f=>_0xf27d1f['pluginName']==_0x1b22f7):_0x1b22f7)['filter'](_0x49ad11=>!_0x54fdee[_0x1176('0x1b')](_0x49ad11)&&!_0x54fdee[_0x1176('0x1b')](_0x49ad11[_0x1176('0xa')])),_0x34c563=Array['from'](new Set(_0x9fce80)),_0x442dc3=new Map();return _0x41e806[_0x1176('0x10')]=_0x34c563[_0x1176('0x19')](_0x2d8d38=>v(_0x2d8d38,_0x442dc3,_0x136ec[_0x1176('0x10')],_0x19bfeb)),_0x41e806;}
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module collaboration-core/utils/surroundingmarkersdetector
7
7
  */
8
- import type { Marker, Model } from 'ckeditor5/src/engine';
8
+ import type { Marker, Model } from 'ckeditor5/src/engine.js';
9
9
  /**
10
10
  * A utility that responds to range changes in the document selection and detects which markers' ranges
11
11
  * touch or contain (surround) the document selection's focus.
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x36c8=['isEqual','includes','length','getRange','document','end','start','containsPosition','focus','change:range','markers','push','selection'];(function(_0x339180,_0x36c862){const _0x5a7968=function(_0x17d856){while(--_0x17d856){_0x339180['push'](_0x339180['shift']());}};_0x5a7968(++_0x36c862);}(_0x36c8,0x13c));const _0x5a79=function(_0x339180,_0x36c862){_0x339180=_0x339180-0x0;let _0x5a7968=_0x36c8[_0x339180];return _0x5a7968;};export default function q(_0x5008aa,_0x548da0){const _0x543614=[];_0x5008aa['document'][_0x5a79('0x8')]['on'](_0x5a79('0x5'),()=>{const _0xac0b19=function(_0x1df962,_0x760fd7){const _0x351655=[];for(const _0xa0e98b of _0x1df962[_0x5a79('0x6')]){const _0x3c0121=_0xa0e98b[_0x5a79('0xc')]();(_0x3c0121[_0x5a79('0x3')](_0x760fd7)||_0x3c0121[_0x5a79('0x2')][_0x5a79('0x9')](_0x760fd7)||_0x3c0121[_0x5a79('0x1')]['isEqual'](_0x760fd7))&&_0x351655['push'](_0xa0e98b);}return _0x351655;}(_0x5008aa,_0x5008aa[_0x5a79('0x0')]['selection'][_0x5a79('0x4')]),_0x5a6c27=[],_0x53f153=[],_0x48554f=[];for(const _0x733fbb of _0x543614)_0xac0b19[_0x5a79('0xa')](_0x733fbb)||_0x5a6c27['push'](_0x733fbb);for(const _0x2e0bd6 of _0xac0b19)_0x543614[_0x5a79('0xa')](_0x2e0bd6)||_0x53f153['push'](_0x2e0bd6),_0x48554f[_0x5a79('0x7')](_0x2e0bd6);(_0x5a6c27['length']||_0x53f153[_0x5a79('0xb')])&&_0x548da0({'left':_0x5a6c27,'entered':_0x53f153}),_0x543614[_0x5a79('0xb')]=0x0,_0x543614['push'](..._0x48554f);});}
23
+ const _0x4e4f=['getRange','push','document','change:range','start','markers','end','includes','selection','isEqual','length'];(function(_0x4607da,_0x4e4fe6){const _0x52cbc2=function(_0x40f259){while(--_0x40f259){_0x4607da['push'](_0x4607da['shift']());}};_0x52cbc2(++_0x4e4fe6);}(_0x4e4f,0x18a));const _0x52cb=function(_0x4607da,_0x4e4fe6){_0x4607da=_0x4607da-0x0;let _0x52cbc2=_0x4e4f[_0x4607da];return _0x52cbc2;};export default function z(_0x2794e5,_0x5fd553){const _0xf6cdcf=[];_0x2794e5[_0x52cb('0x4')][_0x52cb('0xa')]['on'](_0x52cb('0x5'),()=>{const _0x1dac3f=function(_0x11fbdf,_0x401c1b){const _0x3b4f52=[];for(const _0x4b93a9 of _0x11fbdf[_0x52cb('0x7')]){const _0x1cd819=_0x4b93a9[_0x52cb('0x2')]();(_0x1cd819['containsPosition'](_0x401c1b)||_0x1cd819[_0x52cb('0x6')][_0x52cb('0x0')](_0x401c1b)||_0x1cd819[_0x52cb('0x8')][_0x52cb('0x0')](_0x401c1b))&&_0x3b4f52[_0x52cb('0x3')](_0x4b93a9);}return _0x3b4f52;}(_0x2794e5,_0x2794e5[_0x52cb('0x4')][_0x52cb('0xa')]['focus']),_0x385467=[],_0x783b78=[],_0x136570=[];for(const _0x102c1a of _0xf6cdcf)_0x1dac3f[_0x52cb('0x9')](_0x102c1a)||_0x385467[_0x52cb('0x3')](_0x102c1a);for(const _0x81ebe5 of _0x1dac3f)_0xf6cdcf['includes'](_0x81ebe5)||_0x783b78[_0x52cb('0x3')](_0x81ebe5),_0x136570['push'](_0x81ebe5);(_0x385467[_0x52cb('0x1')]||_0x783b78[_0x52cb('0x1')])&&_0x5fd553({'left':_0x385467,'entered':_0x783b78}),_0xf6cdcf['length']=0x0,_0xf6cdcf['push'](..._0x136570);});}
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x5525=['join','push','...','match','substring','length','startsWith','indexOf','slice','replace'];(function(_0x13ee48,_0x5525c9){const _0x4d240e=function(_0x424cda){while(--_0x424cda){_0x13ee48['push'](_0x13ee48['shift']());}};_0x4d240e(++_0x5525c9);}(_0x5525,0xb7));const _0x4d24=function(_0x13ee48,_0x5525c9){_0x13ee48=_0x13ee48-0x0;let _0x4d240e=_0x5525[_0x13ee48];return _0x4d240e;};export default function z(_0x12dbad,{limit:_0x236cd9,suffix:_0x183202=_0x4d24('0x9')}){const _0x169c80=[];let _0x11aea7=0x0;const _0x51bdde=_0x12dbad[_0x4d24('0x6')](/</g,'\x0a<')[_0x4d24('0x6')](/>/g,'>\x0a')['replace'](/^\n/g,'')[_0x4d24('0x6')](/\n$/g,'')['split']('\x0a');for(let _0x812317=0x0;_0x812317<_0x51bdde['length'];_0x812317++){let _0x4aebf0=_0x51bdde[_0x812317];const _0x4d09b0=Z(_0x4aebf0);if(_0x4aebf0['startsWith']('<')){if(_0x11aea7>=_0x236cd9){const _0x156dc3=_0x4aebf0['match'](/[a-zA-Z]+/);if(!_0x156dc3){_0x51bdde[_0x812317]='';continue;}const _0x5f5c5b=_0x156dc3[0x0];_0x4aebf0[_0x4d24('0x3')]('</')?(_0x169c80[_0x4d24('0x2')]&&(_0x4aebf0=''),_0x169c80['pop']()):(_0x169c80[_0x4d24('0x8')](_0x5f5c5b),_0x4aebf0='');}}else{if(_0x11aea7>=_0x236cd9)_0x4aebf0='';else{if(_0x11aea7+_0x4d09b0[_0x4d24('0x2')]>=_0x236cd9){let _0x1fee14=_0x236cd9-_0x11aea7;if('\x20'===_0x4d09b0[_0x1fee14-0x1])_0x1fee14--;else{const _0x3b10cc=_0x4d09b0[_0x4d24('0x5')](_0x1fee14)[_0x4d24('0x4')]('\x20');-0x1!==_0x3b10cc?_0x1fee14+=_0x3b10cc:_0x1fee14=_0x4aebf0['length'];}_0x4aebf0=_0x4d09b0[_0x4d24('0x5')](0x0,_0x1fee14)[_0x4d24('0x7')]('')+_0x183202,_0x11aea7=_0x236cd9;}else _0x11aea7+=_0x4d09b0[_0x4d24('0x2')];}}_0x51bdde[_0x812317]=_0x4aebf0;}return _0x51bdde[_0x4d24('0x7')]('\x0a')[_0x4d24('0x6')](/\n/g,'');}function Z(_0x453aa6){const _0xd18a40=[];for(let _0x5b4a71=0x0;_0x5b4a71<_0x453aa6[_0x4d24('0x2')];_0x5b4a71++){const _0x346596=_0x453aa6[_0x4d24('0x1')](_0x5b4a71)[_0x4d24('0x0')](/^&[a-z0-9#]+;/);if(_0x346596){const _0x4d2412=_0x346596[0x0];_0xd18a40[_0x4d24('0x8')](_0x4d2412),_0x5b4a71+=_0x4d2412[_0x4d24('0x2')]-0x1;}else _0xd18a40[_0x4d24('0x8')](_0x453aa6[_0x5b4a71]);}return _0xd18a40;}
23
+ const _0x54b4=['startsWith','replace','push','length','join','split','match','indexOf','slice','pop','...','substring'];(function(_0xb3682e,_0x54b422){const _0x40214c=function(_0x569407){while(--_0x569407){_0xb3682e['push'](_0xb3682e['shift']());}};_0x40214c(++_0x54b422);}(_0x54b4,0x93));const _0x4021=function(_0xb3682e,_0x54b422){_0xb3682e=_0xb3682e-0x0;let _0x40214c=_0x54b4[_0xb3682e];return _0x40214c;};export default function Z(_0x132b00,{limit:_0x481732,suffix:_0x39f89f=_0x4021('0x7')}){const _0x25701b=[];let _0x10504d=0x0;const _0x3c736e=_0x132b00[_0x4021('0xa')](/</g,'\x0a<')[_0x4021('0xa')](/>/g,'>\x0a')[_0x4021('0xa')](/^\n/g,'')[_0x4021('0xa')](/\n$/g,'')[_0x4021('0x2')]('\x0a');for(let _0x56e0ed=0x0;_0x56e0ed<_0x3c736e[_0x4021('0x0')];_0x56e0ed++){let _0xfffec4=_0x3c736e[_0x56e0ed];const _0x183ddc=$(_0xfffec4);if(_0xfffec4[_0x4021('0x9')]('<')){if(_0x10504d>=_0x481732){const _0x448312=_0xfffec4[_0x4021('0x3')](/[a-zA-Z]+/);if(!_0x448312){_0x3c736e[_0x56e0ed]='';continue;}const _0x29ccc9=_0x448312[0x0];_0xfffec4['startsWith']('</')?(_0x25701b[_0x4021('0x0')]&&(_0xfffec4=''),_0x25701b[_0x4021('0x6')]()):(_0x25701b[_0x4021('0xb')](_0x29ccc9),_0xfffec4='');}}else{if(_0x10504d>=_0x481732)_0xfffec4='';else{if(_0x10504d+_0x183ddc[_0x4021('0x0')]>=_0x481732){let _0x436d56=_0x481732-_0x10504d;if('\x20'===_0x183ddc[_0x436d56-0x1])_0x436d56--;else{const _0x1bd84a=_0x183ddc[_0x4021('0x5')](_0x436d56)[_0x4021('0x4')]('\x20');-0x1!==_0x1bd84a?_0x436d56+=_0x1bd84a:_0x436d56=_0xfffec4[_0x4021('0x0')];}_0xfffec4=_0x183ddc['slice'](0x0,_0x436d56)[_0x4021('0x1')]('')+_0x39f89f,_0x10504d=_0x481732;}else _0x10504d+=_0x183ddc[_0x4021('0x0')];}}_0x3c736e[_0x56e0ed]=_0xfffec4;}return _0x3c736e[_0x4021('0x1')]('\x0a')[_0x4021('0xa')](/\n/g,'');}function $(_0x13767b){const _0x1c65a4=[];for(let _0x5b1035=0x0;_0x5b1035<_0x13767b['length'];_0x5b1035++){const _0x4ce223=_0x13767b[_0x4021('0x8')](_0x5b1035)[_0x4021('0x3')](/^&[a-z0-9#]+;/);if(_0x4ce223){const _0x487bfe=_0x4ce223[0x0];_0x1c65a4['push'](_0x487bfe),_0x5b1035+=_0x487bfe[_0x4021('0x0')]-0x1;}else _0x1c65a4[_0x4021('0xb')](_0x13767b[_0x5b1035]);}return _0x1c65a4;}