@ckeditor/ckeditor5-collaboration-core 38.2.0-alpha.1 → 39.0.1
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/README.md +0 -1
- package/package.json +3 -4
- package/src/augmentation.d.ts +6 -2
- package/src/augmentation.js +1 -1
- package/src/collaborationhistory.d.ts +5 -1
- package/src/collaborationhistory.js +1 -1
- package/src/collaborationoperation.d.ts +5 -1
- package/src/collaborationoperation.js +1 -1
- package/src/config.d.ts +5 -1
- package/src/config.js +1 -1
- package/src/index.d.ts +18 -14
- package/src/index.js +2 -2
- package/src/permissions.d.ts +5 -1
- package/src/permissions.js +2 -2
- package/src/suggestionstyles.d.ts +4 -0
- package/src/suggestionstyles.js +1 -1
- package/src/users/view/userview.d.ts +7 -3
- package/src/users/view/userview.js +2 -2
- package/src/users.d.ts +7 -3
- package/src/users.js +2 -2
- package/src/utils/common-translations.d.ts +5 -1
- package/src/utils/common-translations.js +2 -2
- package/src/utils/confirmmixin.d.ts +6 -2
- package/src/utils/confirmmixin.js +2 -2
- package/src/utils/confirmview.d.ts +6 -2
- package/src/utils/confirmview.js +2 -2
- package/src/utils/getdatetimeformatter.d.ts +4 -4
- package/src/utils/getdatetimeformatter.js +2 -2
- package/src/utils/getmarkerdomelement.d.ts +3 -2
- package/src/utils/getmarkerdomelement.js +2 -2
- package/src/utils/hashobject.d.ts +4 -0
- package/src/utils/hashobject.js +2 -2
- package/src/utils/sanitizeEditorConfig.d.ts +4 -0
- package/src/utils/sanitizeEditorConfig.js +2 -2
- package/src/utils/trim-html.d.ts +4 -0
- package/src/utils/trim-html.js +2 -2
- package/theme/icons/notification.svg +2 -2
- package/theme/suggestionmarker.css +2 -2
package/README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# CKEditor 5 collaboration core
|
2
2
|
|
3
3
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-collaboration-core)
|
4
|
-

|
5
4
|
|
6
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.
|
7
6
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-collaboration-core",
|
3
|
-
"version": "
|
3
|
+
"version": "39.0.1",
|
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/)",
|
@@ -30,10 +30,9 @@
|
|
30
30
|
"framework"
|
31
31
|
],
|
32
32
|
"main": "src/index.js",
|
33
|
-
"type": "module",
|
34
33
|
"dependencies": {
|
35
|
-
"ckeditor5": "
|
36
|
-
"date-fns": "
|
34
|
+
"ckeditor5": "39.0.1",
|
35
|
+
"date-fns": "2.30.0"
|
37
36
|
},
|
38
37
|
"engines": {
|
39
38
|
"node": ">=16.0.0",
|
package/src/augmentation.d.ts
CHANGED
@@ -1,5 +1,9 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
5
|
+
import type { LocaleConfig, Users } from './index';
|
6
|
+
import type { RealTimeCollaborationConfig } from './config';
|
3
7
|
declare module '@ckeditor/ckeditor5-core' {
|
4
8
|
interface EditorConfig {
|
5
9
|
/**
|
package/src/augmentation.js
CHANGED
@@ -1,8 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
/**
|
2
6
|
* @module collaboration-core/collaborationhistory
|
3
7
|
* @publicApi
|
4
8
|
*/
|
5
|
-
import type { default as CollaborationOperation } from './collaborationoperation
|
9
|
+
import type { default as CollaborationOperation } from './collaborationoperation';
|
6
10
|
/**
|
7
11
|
* Interface compatible with {@link module:engine/model/history~History} with the difference that it uses
|
8
12
|
* {@link module:collaboration-core/collaborationoperation~CollaborationOperation} instead of regular model operations.
|
@@ -1,8 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
/**
|
2
6
|
* @module collaboration-core/collaborationoperation
|
3
7
|
* @publicApi
|
4
8
|
*/
|
5
|
-
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';
|
6
10
|
/**
|
7
11
|
* Extends the {@link module:engine/model/operation/operation operation}.
|
8
12
|
*/
|
package/src/config.d.ts
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
/**
|
2
6
|
* @module collaboration-core/config
|
3
7
|
* @publicApi
|
@@ -26,7 +30,7 @@ export interface LocaleConfig {
|
|
26
30
|
* The default formatting can be changed by setting a custom formatting function to `config.locale.dateTimeFormat`.
|
27
31
|
*
|
28
32
|
* ```ts
|
29
|
-
* import format from 'date-fns/
|
33
|
+
* import format from 'date-fns/format';
|
30
34
|
*
|
31
35
|
* ClassicEditor
|
32
36
|
* .create( document.querySelector( '#editor' ), {
|
package/src/config.js
CHANGED
package/src/index.d.ts
CHANGED
@@ -1,14 +1,18 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
export { default as
|
6
|
-
export { default as
|
7
|
-
export { default as
|
8
|
-
export { default as
|
9
|
-
export { default as
|
10
|
-
export
|
11
|
-
export
|
12
|
-
export
|
13
|
-
export
|
14
|
-
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
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 CollaborationOperation, InsertCollaborationOperation, SplitCollaborationOperation, MarkerCollaborationOperation, MoveCollaborationOperation, MergeCollaborationOperation, RootCollaborationOperation, RootAttributeCollaborationOperation } from './collaborationoperation';
|
15
|
+
export { default as CollaborationHistory } from './collaborationhistory';
|
16
|
+
export type { LocaleConfig, RealTimeCollaborationConfig } from './config';
|
17
|
+
export * from './suggestionstyles';
|
18
|
+
import './augmentation';
|
package/src/index.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
export{default as Permissions}from'./permissions
|
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*from'./suggestionstyles';import'./augmentation';
|
package/src/permissions.d.ts
CHANGED
@@ -1,8 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
/**
|
2
6
|
* @module collaboration-core/permissions
|
3
7
|
* @publicApi
|
4
8
|
*/
|
5
|
-
import { ContextPlugin } from 'ckeditor5/src/core
|
9
|
+
import { ContextPlugin } from 'ckeditor5/src/core';
|
6
10
|
/**
|
7
11
|
* The `Permissions` plugin manages permissions set for the local user.
|
8
12
|
*
|
package/src/permissions.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0xac1c=['plugins','collaboration.channelId','isEnabled','find','noPermissions','commands','permissions-set-permissions-invalid-channel-id','pluginName','CommentsRepository','disableReadOnlyMode','comment:modify_all','Permissions','no-permissions','context','get','setPermissions','forceDisabled','includes','clearForceDisabled','comment:write','enableReadOnlyMode','editors','config','CommentsOnly'];(function(_0x27fef9,_0xac1cf9){const _0x1ba86e=function(_0x340c6c){while(--_0x340c6c){_0x27fef9['push'](_0x27fef9['shift']());}};_0x1ba86e(++_0xac1cf9);}(_0xac1c,0x10c));const _0x1ba8=function(_0x27fef9,_0xac1cf9){_0x27fef9=_0x27fef9-0x0;let _0x1ba86e=_0xac1c[_0x27fef9];return _0x1ba86e;};import{ContextPlugin as _0x342656,Editor as _0x22f10f}from'ckeditor5/src/core';import{CKEditorError as _0x2aa86d}from'ckeditor5/src/utils';export default class n extends _0x342656{static get[_0x1ba8('0x3')](){return _0x1ba8('0x7');}['setPermissions'](_0x57f15c,_0x50262a){let _0x2f3068;if(_0x50262a||(_0x50262a=this[_0x1ba8('0x9')][_0x1ba8('0x12')][_0x1ba8('0xa')]('collaboration.channelId')),this['context'][_0x1ba8('0x12')][_0x1ba8('0xa')]('collaboration.channelId')==_0x50262a?_0x2f3068=this['context']:_0x1ba8('0x11')in this[_0x1ba8('0x9')]&&this[_0x1ba8('0x9')][_0x1ba8('0x11')]&&(_0x2f3068=this[_0x1ba8('0x9')][_0x1ba8('0x11')][_0x1ba8('0x17')](_0x461857=>_0x461857[_0x1ba8('0x12')][_0x1ba8('0xa')](_0x1ba8('0x15'))==_0x50262a)),!_0x2f3068)throw new _0x2aa86d(_0x1ba8('0x2'),null);const _0x4a8b4a=_0x2f3068[_0x1ba8('0x14')],_0x81c06e=_0x4a8b4a['has'](_0x1ba8('0x4'))?_0x4a8b4a[_0x1ba8('0xa')](_0x1ba8('0x4')):void 0x0,_0x183a8c=_0x4a8b4a['has'](_0x1ba8('0x13'))&&_0x4a8b4a[_0x1ba8('0xa')]('CommentsOnly'),_0x456852=_0x57f15c['includes']('document:write'),_0x37da27=_0x57f15c['includes'](_0x1ba8('0x6')),_0x1459ac=_0x57f15c[_0x1ba8('0xd')]('comment:admin'),_0x250fc0=_0x57f15c['includes'](_0x1ba8('0xf')),_0x3e7a9f=_0x250fc0||_0x1459ac,_0x5e178b=_0x3e7a9f||_0x37da27,_0x2f2bc4=_0x456852||_0x3e7a9f;(_0x183a8c&&(_0x183a8c[_0x1ba8('0x16')]=!_0x456852&&_0x5e178b),_0x2f3068 instanceof _0x22f10f)&&(!(_0x456852||_0x5e178b&&_0x81c06e)?_0x2f3068[_0x1ba8('0x10')](_0x1ba8('0x8')):_0x2f3068[_0x1ba8('0x5')]('no-permissions'));if(_0x81c06e){_0x81c06e[_0x1ba8('0xb')]({'admin':_0x1459ac,'modifyAll':_0x37da27,'write':_0x250fc0,'resolve':_0x2f2bc4},_0x50262a);const _0x54001a=_0x2f3068 instanceof _0x22f10f&&_0x2f3068[_0x1ba8('0x1')][_0x1ba8('0xa')]('addCommentThread');_0x54001a&&(_0x3e7a9f?_0x54001a[_0x1ba8('0xe')](_0x1ba8('0x0')):_0x54001a[_0x1ba8('0xc')](_0x1ba8('0x0')));}}}
|
@@ -1,3 +1,7 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
import '../theme/suggestion.css';
|
2
6
|
import '../theme/suggestionmarker.css';
|
3
7
|
import '../theme/integrations/image.css';
|
package/src/suggestionstyles.js
CHANGED
@@ -1,9 +1,13 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
/**
|
2
6
|
* @module collaboration-core/users/view/userview
|
3
7
|
*/
|
4
|
-
import { View, type TemplateDefinition } from 'ckeditor5/src/ui
|
5
|
-
import type { Locale } from 'ckeditor5/src/utils
|
6
|
-
import type { User } from '../../users
|
8
|
+
import { View, type TemplateDefinition } from 'ckeditor5/src/ui';
|
9
|
+
import type { Locale } from 'ckeditor5/src/utils';
|
10
|
+
import type { User } from '../../users';
|
7
11
|
import '../../../theme/users.css';
|
8
12
|
export default class UserView extends View {
|
9
13
|
name: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x6e9b=['initials','ck-user__anonymous','ck\x20ck-user__name','ck-user__img','push','setTemplate','notificationView','ck-user','div','isAnonymous','extendTemplate','url(\x27','ck-user__notification','avatar','name','ck\x20ck-user__name\x20ck-user__name--hidden'];(function(_0x3f65b4,_0x6e9b6a){const _0x5893a8=function(_0x3b115d){while(--_0x3b115d){_0x3f65b4['push'](_0x3f65b4['shift']());}};_0x5893a8(++_0x6e9b6a);}(_0x6e9b,0x16e));const _0x5893=function(_0x3f65b4,_0x6e9b6a){_0x3f65b4=_0x3f65b4-0x0;let _0x5893a8=_0x6e9b[_0x3f65b4];return _0x5893a8;};import{View as _0x34ed80,IconView as _0xa80182}from'ckeditor5/src/ui';import _0x33880d from'../../../theme/icons/notification.svg';import'../../../theme/users.css';export default class B extends _0x34ed80{constructor(_0x155de8,_0x548b7d,_0x4e7a57){super(_0x155de8),this[_0x5893('0x0')]=_0x548b7d[_0x5893('0x0')],this[_0x5893('0x8')]=null;const _0x5e11ae=['ck',_0x5893('0x5')];if(_0x548b7d[_0x5893('0xb')]&&_0x5e11ae[_0x5893('0x6')](_0x5893('0x3')),_0x548b7d[_0x5893('0xf')]&&_0x5e11ae[_0x5893('0x6')]('ck-user__avatar'),_0x4e7a57){const _0x5ae556=new _0xa80182();_0x5ae556[_0x5893('0xc')]({'attributes':{'class':['ck-user__icon']}}),_0x5ae556['content']=_0x33880d,this[_0x5893('0x8')]={'tag':_0x5893('0xa'),'attributes':{'class':['ck',_0x5893('0xe')],'data-cke-tooltip-position':'n','data-cke-tooltip-text':_0x4e7a57},'children':[_0x5ae556]};}const _0x311cc5=[{'tag':'div','attributes':{'class':_0x5e11ae,'style':{'background-image':_0x548b7d['avatar']?_0x5893('0xd')+_0x548b7d[_0x5893('0xf')]+'\x27)':''}}},{'tag':_0x5893('0xa'),'attributes':{'class':_0x548b7d['avatar']?_0x5893('0x1'):_0x5893('0x4')},'children':[{'text':_0x548b7d[_0x5893('0x2')]}]}];this[_0x5893('0x8')]&&_0x311cc5[_0x5893('0x6')](this['notificationView']),this[_0x5893('0x7')]({'tag':_0x5893('0xa'),'attributes':{'class':['ck',_0x5893('0x9')],'data-user-id':_0x548b7d['id']},'children':_0x311cc5});}}
|
package/src/users.d.ts
CHANGED
@@ -1,10 +1,14 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
/**
|
2
6
|
* @module collaboration-core/users
|
3
7
|
* @publicApi
|
4
8
|
*/
|
5
|
-
import { ContextPlugin, type Context, type Editor } from 'ckeditor5/src/core
|
6
|
-
import { Collection } from 'ckeditor5/src/utils
|
7
|
-
import Permissions from './permissions
|
9
|
+
import { ContextPlugin, type Context, type Editor } from 'ckeditor5/src/core';
|
10
|
+
import { Collection } from 'ckeditor5/src/utils';
|
11
|
+
import Permissions from './permissions';
|
8
12
|
import '../theme/usercolors.css';
|
9
13
|
/**
|
10
14
|
* The `Users` plugin provides the basic interface for setting and getting users involved in the document editing process.
|
package/src/users.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x2425=['avatar','users-add-invalid-id','locale','_addAnonymousUser','context','_getInitial','destroy','trial-license-key-reached-limit-time','users-me-already-defined','getBackgroundColorClass','pluginName','initials','licenseKeyTrialLimit:time','licenseKeyTrialLimit:operations','Anonymous','getMarkerClass','init','users.colorsCount','_locale','length','ck-user__selection--','get','_isAnonymous','ck-user__marker--','_id','users-me-missing-user','includes','getUser','trial-license-key-reached-limit-changes','requires','_lastColor','getSelectionClass','decorate','users','getOperationAuthor','users-add-duplicated-id','licenseKey','anonymous-user','color','licenseKeyInvalid','licenseKeyValid','useAnonymousUser','string','config','toUpperCase','addUser','_licenseKeyCheckInterval','_getNextColor','licenseKeyTrialLimit:revisions','licenseKeyTrial','define','defineMe','info','name','_myId','users.anonymousUserId','invalid-license-key'];(function(_0x3ac4c9,_0x2425a0){const _0x29e3cf=function(_0x248c71){while(--_0x248c71){_0x3ac4c9['push'](_0x3ac4c9['shift']());}};_0x29e3cf(++_0x2425a0);}(_0x2425,0x15b));const _0x29e3=function(_0x3ac4c9,_0x2425a0){_0x3ac4c9=_0x3ac4c9-0x0;let _0x29e3cf=_0x2425[_0x3ac4c9];return _0x29e3cf;};import{ContextPlugin as _0x32f3a8}from'ckeditor5/src/core';import{Collection as _0x53eff0,CKEditorError as _0x29f1d9}from'ckeditor5/src/utils';import _0x2e45f8 from'./permissions';import{getTranslation as _0x2d9ece}from'./utils/common-translations';import'../theme/usercolors.css';export default class l extends _0x32f3a8{static get[_0x29e3('0x5')](){return'Users';}static get[_0x29e3('0x18')](){return[_0x2e45f8];}constructor(_0x8048c){super(_0x8048c),this[_0x29e3('0x38')]['config'][_0x29e3('0x2d')]('users.anonymousUserId',_0x29e3('0x20')),this[_0x29e3('0x38')][_0x29e3('0x26')][_0x29e3('0x2d')](_0x29e3('0xc'),0x8),this['users']=new _0x53eff0(),this[_0x29e3('0xd')]=_0x8048c[_0x29e3('0x36')],this['_licenseKeyCheckInterval']=null,this[_0x29e3('0x19')]=0x0,this[_0x29e3('0x31')]=null,this[_0x29e3('0x1b')]('getOperationAuthor');}[_0x29e3('0xb')](){const _0xb510fe=this[_0x29e3('0x38')];this['licenseKey']=_0xb510fe[_0x29e3('0x26')][_0x29e3('0x10')](_0x29e3('0x1f'));const _0xc32d73=[_0x29e3('0x2c'),'licenseKeyInvalid',_0x29e3('0x23'),'licenseKeyTrialLimit:operations',_0x29e3('0x7'),_0x29e3('0x2b')];this['_licenseKeyCheckInterval']=setInterval(()=>{let _0x4567ee;for(const _0xe91fdc in _0xb510fe){const _0x13a194=_0xb510fe[_0xe91fdc];if(_0xc32d73[_0x29e3('0x15')](_0x13a194)){delete _0xb510fe[_0xe91fdc],_0x4567ee=_0x13a194;break;}}if(_0x29e3('0x22')===_0x4567ee)throw clearInterval(this[_0x29e3('0x29')]),new _0x29f1d9(_0x29e3('0x33'),null);if(_0x29e3('0x2c')===_0x4567ee&&console[_0x29e3('0x2f')]('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.'),_0x29e3('0x8')===_0x4567ee)throw clearInterval(this[_0x29e3('0x29')]),new _0x29f1d9(_0x29e3('0x17'),null);if(_0x29e3('0x7')===_0x4567ee)throw clearInterval(this[_0x29e3('0x29')]),new _0x29f1d9(_0x29e3('0x2'),null);if('licenseKeyTrialLimit:revisions'===_0x4567ee)throw clearInterval(this[_0x29e3('0x29')]),new _0x29f1d9('trial-license-key-reached-limit-revisions',null);'licenseKeyValid'===_0x4567ee&&clearInterval(this[_0x29e3('0x29')]);},0x3e8),this[_0x29e3('0x37')]();}get['me'](){return null==this[_0x29e3('0x31')]?null:this[_0x29e3('0x16')](this[_0x29e3('0x31')]);}['addUser']({id:_0x1cc5a9,name:_0xa3a947,..._0x64606f}){if(!_0x1cc5a9||_0x29e3('0x25')!=typeof _0x1cc5a9)throw new _0x29f1d9(_0x29e3('0x35'));if(this[_0x29e3('0x1c')]['has'](_0x1cc5a9))throw new _0x29f1d9(_0x29e3('0x1e'),null,{'id':_0x1cc5a9});const _0x2f1c19={..._0x64606f,'id':_0x1cc5a9,'name':a(this['_locale'],_0xa3a947),'color':this[_0x29e3('0x2a')]()};_0x2f1c19['name']=a(this[_0x29e3('0xd')],_0x2f1c19['name']);const _0x5826f6=new User(_0x2f1c19);return this[_0x29e3('0x1c')]['add'](_0x5826f6),_0x5826f6;}[_0x29e3('0x16')](_0x19502e){return this['users']['get'](_0x19502e);}[_0x29e3('0x24')](){const _0x147f3b=this['context'][_0x29e3('0x26')][_0x29e3('0x10')](_0x29e3('0x32'));this[_0x29e3('0x31')]||this[_0x29e3('0x2e')](_0x147f3b);}[_0x29e3('0x2e')](_0x506cee){if(this['_myId'])throw new _0x29f1d9(_0x29e3('0x3'),null);if(!this[_0x29e3('0x16')](_0x506cee))throw new _0x29f1d9(_0x29e3('0x14'),null);this[_0x29e3('0x31')]=_0x506cee;}[_0x29e3('0x1d')](){return this['me'];}['destroy'](){super[_0x29e3('0x1')](),clearInterval(this[_0x29e3('0x29')]);}[_0x29e3('0x2a')](){const _0x3ebc48=this[_0x29e3('0x38')][_0x29e3('0x26')][_0x29e3('0x10')](_0x29e3('0xc'));return this['_lastColor']>=_0x3ebc48&&(this[_0x29e3('0x19')]=0x0),new u(this[_0x29e3('0x19')]++);}[_0x29e3('0x37')](){const _0x21ce4e=this[_0x29e3('0x38')][_0x29e3('0x26')][_0x29e3('0x10')]('users.anonymousUserId');this[_0x29e3('0x28')]({'id':_0x21ce4e,'name':_0x2d9ece(this[_0x29e3('0xd')],_0x29e3('0x9'))})[_0x29e3('0x11')]=!0x0;}}export class User{constructor(_0x44eddb){this['id']=_0x44eddb['id'],this[_0x29e3('0x21')]=_0x44eddb[_0x29e3('0x21')],this[_0x29e3('0x30')]=_0x44eddb[_0x29e3('0x30')],this[_0x29e3('0x34')]=_0x44eddb['avatar'],this[_0x29e3('0x11')]=!0x1;}get['isAnonymous'](){return this[_0x29e3('0x11')];}get[_0x29e3('0x6')](){const _0x5c5fad=this['name']['split']('\x20');return 0x1===_0x5c5fad[_0x29e3('0xe')]?this[_0x29e3('0x0')](_0x5c5fad[0x0]):this[_0x29e3('0x0')](_0x5c5fad[0x0])+this[_0x29e3('0x0')](_0x5c5fad[_0x5c5fad[_0x29e3('0xe')]-0x1]);}[_0x29e3('0x0')](_0x27dbdc){return _0x27dbdc['charAt'](0x0)[_0x29e3('0x27')]();}}function a(_0x18e201,_0x4d9121=''){return''==(_0x4d9121=_0x4d9121['trim']())?_0x2d9ece(_0x18e201,_0x29e3('0x9')):_0x4d9121;}class u{constructor(_0x2df19a){this['_id']=_0x2df19a;}[_0x29e3('0x4')](){return'ck-user__bg-color--'+this[_0x29e3('0x13')];}[_0x29e3('0x1a')](){return _0x29e3('0xf')+this[_0x29e3('0x13')];}[_0x29e3('0xa')](){return _0x29e3('0x12')+this['_id'];}}
|
@@ -1,5 +1,9 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
/**
|
2
6
|
* @module collaboration-core/utils/common-translations
|
3
7
|
*/
|
4
|
-
import type { Locale } from 'ckeditor5/src/utils
|
8
|
+
import type { Locale } from 'ckeditor5/src/utils';
|
5
9
|
export declare function getTranslation(locale: Locale, id: string): string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
export function getTranslation(
|
23
|
+
export function getTranslation(_0x4c1d0d,_0x5cee2d){const t=_0x4c1d0d['t'];switch(_0x5cee2d){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'';}}
|
@@ -1,8 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
/**
|
2
6
|
* @module comments/comments/ui/view/confirmmixin
|
3
7
|
*/
|
4
|
-
import type { View } from 'ckeditor5/src/ui
|
5
|
-
import type { Locale, Mixed } from 'ckeditor5/src/utils
|
8
|
+
import type { View } from 'ckeditor5/src/ui';
|
9
|
+
import type { Locale, Mixed } from 'ckeditor5/src/utils';
|
6
10
|
/**
|
7
11
|
* Adds interface for showing confirmation view in the specific for `CommentThreadView` and `CommentView` structure
|
8
12
|
* Confirm is always set to the `content` collection at the last position.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
var
|
23
|
+
var _0x41ae=['message','element','focus','locale','isConfirm','destroy','submit','once','deregisterChild','remove','cancel','confirmView','cancelConfirm','set','appendChild','fire','showConfirm','_removeConfirm'];(function(_0x35e017,_0x41ae9c){var _0x2de17f=function(_0x567cba){while(--_0x567cba){_0x35e017['push'](_0x35e017['shift']());}};_0x2de17f(++_0x41ae9c);}(_0x41ae,0x146));var _0x2de1=function(_0x35e017,_0x41ae9c){_0x35e017=_0x35e017-0x0;var _0x2de17f=_0x41ae[_0x35e017];return _0x2de17f;};import _0x2103af from'./confirmview';export default function m(_0x20687d){return class extends _0x20687d{[_0x2de1('0xe')](_0xe9c989,_0x1a71fc){return this[_0x2de1('0x9')]=new _0x2103af(this[_0x2de1('0x1')]),this['confirmView']['render'](),this[_0x2de1('0x9')][_0x2de1('0x10')]=_0xe9c989,this[_0x2de1('0x9')][_0x2de1('0x5')]('cancel',()=>{this[_0x2de1('0xf')]();}),this[_0x2de1('0x9')][_0x2de1('0x5')]('submit',()=>{this[_0x2de1('0xf')]();}),_0x1a71fc[_0x2de1('0xc')](this[_0x2de1('0x9')]['element']),this['registerChild'](this[_0x2de1('0x9')]),this[_0x2de1('0x11')][_0x2de1('0x0')](),this[_0x2de1('0xb')](_0x2de1('0x2'),!0x0),new Promise(_0x50d85c=>this[_0x2de1('0x9')]['on'](_0x2de1('0x4'),_0x50d85c));}[_0x2de1('0xa')](){this[_0x2de1('0x2')]&&this[_0x2de1('0x9')][_0x2de1('0xd')](_0x2de1('0x8'));}[_0x2de1('0xf')](){this[_0x2de1('0x11')]&&this[_0x2de1('0x9')]&&this[_0x2de1('0x9')][_0x2de1('0x11')]&&(this[_0x2de1('0x11')][_0x2de1('0x0')](),this['confirmView'][_0x2de1('0x11')][_0x2de1('0x7')](),this[_0x2de1('0x6')](this['confirmView']),this[_0x2de1('0x2')]=!0x1,this[_0x2de1('0x9')][_0x2de1('0x3')](),this['confirmView']=void 0x0);}};}
|
@@ -1,8 +1,12 @@
|
|
1
|
+
/**
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
|
+
*/
|
1
5
|
/**
|
2
6
|
* @module comments/comments/ui/view/confirmview
|
3
7
|
*/
|
4
|
-
import { View } from 'ckeditor5/src/ui
|
5
|
-
import type { Locale } from 'ckeditor5/src/utils
|
8
|
+
import { View } from 'ckeditor5/src/ui';
|
9
|
+
import type { Locale } from 'ckeditor5/src/utils';
|
6
10
|
export default class ConfirmView extends View {
|
7
11
|
message: string;
|
8
12
|
constructor(locale: Locale);
|
package/src/utils/confirmview.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x2db1=['icon','submitView','Are\x20you\x20sure?','ck-thread__remove-confirm-','ck-thread__remove-confirm-actions','div','bindTemplate','set','message','setTemplate','execute','_createButtonView','ck-thread__remove-confirm-inner','cancelView','fire','submit','cancel','ck-thread__remove-confirm','extendTemplate','label'];(function(_0x132f4b,_0x2db137){const _0x41a6b8=function(_0x43e425){while(--_0x43e425){_0x132f4b['push'](_0x132f4b['shift']());}};_0x41a6b8(++_0x2db137);}(_0x2db1,0xb4));const _0x41a6=function(_0x132f4b,_0x2db137){_0x132f4b=_0x132f4b-0x0;let _0x41a6b8=_0x2db1[_0x132f4b];return _0x41a6b8;};import{View as _0x2f43c0,ButtonView as _0x22845f}from'ckeditor5/src/ui';import{icons as _0x3c1d0f}from'ckeditor5/src/core';import{getTranslation as _0x36e032}from'./common-translations';export default class h extends _0x2f43c0{constructor(_0x2c36f4){super(_0x2c36f4);const _0x516cb4=this[_0x41a6('0x6')];this[_0x41a6('0x1')]=this[_0x41a6('0xb')](_0x2c36f4,_0x36e032(_0x2c36f4,'Yes'),_0x3c1d0f['check'],_0x41a6('0xf')),this[_0x41a6('0xd')]=this['_createButtonView'](_0x2c36f4,_0x36e032(_0x2c36f4,'No'),_0x3c1d0f[_0x41a6('0x10')],'cancel'),this[_0x41a6('0x7')](_0x41a6('0x8'),_0x36e032(_0x2c36f4,_0x41a6('0x2'))),this[_0x41a6('0x9')]({'tag':_0x41a6('0x5'),'attributes':{'class':[_0x41a6('0x11')]},'children':[{'tag':'div','attributes':{'class':_0x41a6('0xc')},'children':[{'tag':'p','children':[{'text':_0x516cb4['to']('message')}]},{'tag':_0x41a6('0x5'),'attributes':{'class':_0x41a6('0x4')},'children':[this[_0x41a6('0x1')],this[_0x41a6('0xd')]]}]}]});}[_0x41a6('0xb')](_0x5b3f82,_0x2391f6,_0x6bb6f0,_0x1beba3){const _0x15d337=new _0x22845f(_0x5b3f82);return _0x15d337[_0x41a6('0x13')]=_0x2391f6,_0x15d337[_0x41a6('0x0')]=_0x6bb6f0,_0x15d337[_0x41a6('0x12')]({'attributes':{'class':_0x41a6('0x3')+_0x1beba3}}),_0x15d337['on'](_0x41a6('0xa'),()=>this[_0x41a6('0xe')](_0x1beba3)),_0x15d337;}}
|
@@ -1,15 +1,15 @@
|
|
1
1
|
/**
|
2
|
-
* @
|
3
|
-
*
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
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';
|
6
6
|
/**
|
7
7
|
* Returns a function that formats the date to the set format.
|
8
8
|
*
|
9
9
|
* The default formatting can be changed by setting a custom formatting function to `config.locale.dateTimeFormat`.
|
10
10
|
*
|
11
11
|
* ```ts
|
12
|
-
* import format from 'date-fns/
|
12
|
+
* import format from 'date-fns/format';
|
13
13
|
*
|
14
14
|
* ClassicEditor
|
15
15
|
* .create( document.querySelector( '#editor' ), {
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x6f9b=['function','\x27Last\x27\x20EEEE\x20hh:mma','MM-dd-yyyy\x20hh:mma','string','dateTimeFormat','\x27Yesterday\x27\x20hh:mma'];(function(_0x52de90,_0x6f9b4){const _0x129610=function(_0x2da718){while(--_0x2da718){_0x52de90['push'](_0x52de90['shift']());}};_0x129610(++_0x6f9b4);}(_0x6f9b,0x1c0));const _0x1296=function(_0x52de90,_0x6f9b4){_0x52de90=_0x52de90-0x0;let _0x129610=_0x6f9b[_0x52de90];return _0x129610;};import _0x1319c2 from'date-fns/format';import _0x5aaa61 from'date-fns/parseISO';import _0x4d87a5 from'date-fns/differenceInCalendarDays';import{CKEditorError as _0x16d9cf}from'ckeditor5/src/utils';export default function E(_0x53bf8c={}){if(void 0x0!==_0x53bf8c[_0x1296('0x0')]&&_0x1296('0x2')!=typeof _0x53bf8c[_0x1296('0x0')])throw new _0x16d9cf('invalid-date-time-format');return _0x2eb18b=>{const _0x49f10b=_0x1296('0x5')==typeof _0x2eb18b?_0x5aaa61(_0x2eb18b):_0x2eb18b,_0x6557c8=new Date(),_0x58c12f=_0x4d87a5(_0x6557c8,_0x49f10b);return _0x53bf8c[_0x1296('0x0')]?_0x53bf8c[_0x1296('0x0')](_0x49f10b):_0x1319c2(_0x49f10b,0x0===_0x58c12f?'\x27Today\x27\x20hh:mma':0x1===_0x58c12f?_0x1296('0x1'):_0x58c12f<0x7?_0x1296('0x3'):_0x1296('0x4'));};}
|
@@ -1,7 +1,8 @@
|
|
1
1
|
/**
|
2
|
-
* @
|
2
|
+
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
3
4
|
*/
|
4
|
-
import type { EditingController, Marker } from 'ckeditor5/src/engine
|
5
|
+
import type { EditingController, Marker } from 'ckeditor5/src/engine';
|
5
6
|
/**
|
6
7
|
* Returns a first DOM element mapped with the marker.
|
7
8
|
*
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x1104=['domConverter','length','name','sort','filter','push','values','domElement','mapper','item','view','map','getClientRects','mapViewToDom'];(function(_0xfcfb3a,_0x11049d){const _0x20a1f2=function(_0x1f1fa7){while(--_0x1f1fa7){_0xfcfb3a['push'](_0xfcfb3a['shift']());}};_0x20a1f2(++_0x11049d);}(_0x1104,0xa6));const _0x20a1=function(_0xfcfb3a,_0x11049d){_0xfcfb3a=_0xfcfb3a-0x0;let _0x20a1f2=_0x1104[_0xfcfb3a];return _0x20a1f2;};import{first as _0x39828e}from'ckeditor5/src/utils';export default function k(_0x1ab420,_0x536057){const _0x14761b=_0x1ab420[_0x20a1('0xa')]['markerNameToElements'](_0x536057[_0x20a1('0x4')]);if(!_0x14761b)return null;const _0x4a6967=_0x39828e(_0x14761b[_0x20a1('0x8')]());return _0x1ab420[_0x20a1('0xc')][_0x20a1('0x2')][_0x20a1('0x1')](_0x4a6967)||null;}export function getAllMarkersDomElementsSorted(_0x5e80af,_0x5ab756){if(0x0===_0x5ab756['length'])return null;const _0x16a46b=[],_0x457d22=_0x5e80af[_0x20a1('0xc')][_0x20a1('0x2')];for(const _0x23864f of _0x5ab756){const _0x4dbea3=_0x5e80af['mapper']['markerNameToElements'](_0x23864f[_0x20a1('0x4')]);if(!_0x4dbea3)continue;const _0x2e1628=Array['from'](_0x4dbea3)[_0x20a1('0xd')](_0x30e355=>_0x457d22[_0x20a1('0x1')](_0x30e355))[_0x20a1('0x6')](_0x5471f8=>!!_0x5471f8);_0x16a46b['push'](..._0x2e1628);}if(0x0===_0x16a46b[_0x20a1('0x3')])return null;const _0x4c6f1f=[];for(const _0x41ecdc of _0x16a46b){const _0x3be2ee=_0x41ecdc[_0x20a1('0x0')]()[_0x20a1('0xb')](0x0);_0x3be2ee&&_0x4c6f1f[_0x20a1('0x7')]({'x':_0x3be2ee['x'],'y':_0x3be2ee['y'],'domElement':_0x41ecdc});}return 0x0===_0x4c6f1f[_0x20a1('0x3')]?null:(_0x4c6f1f[_0x20a1('0x5')]((_0xc0647,_0x5e1cf3)=>_0xc0647['y']-_0x5e1cf3['y']||_0xc0647['x']-_0x5e1cf3['x']),_0x4c6f1f[_0x20a1('0xd')](_0x4c6d6c=>_0x4c6d6c[_0x20a1('0x9')]));}
|
package/src/utils/hashobject.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x6f37=['sign','keys','sort','string','isArray','number','object'];(function(_0x3f536d,_0x6f3739){const _0x223a1e=function(_0x3fffe9){while(--_0x3fffe9){_0x3f536d['push'](_0x3f536d['shift']());}};_0x223a1e(++_0x6f3739);}(_0x6f37,0x16e));const _0x223a=function(_0x3f536d,_0x6f3739){_0x3f536d=_0x3f536d-0x0;let _0x223a1e=_0x6f37[_0x3f536d];return _0x223a1e;};export default function b(_0x536cf0){let _0x34befc=0x0,_0x545005=0x0;for(const _0x34ce71 of g(_0x536cf0))_0x34befc=(_0x34befc<<0x5)-_0x34befc+_0x34ce71,_0x34befc&=_0x34befc,[_0x34befc,_0x545005]=[_0x545005,_0x34befc];return O(_0x34befc)+O(_0x545005);}function*j(_0x1b4f28){_0x1b4f28?'boolean'==typeof _0x1b4f28?yield 0x1:Array[_0x223a('0x2')](_0x1b4f28)?yield*function*(_0x1ab0a0){for(const _0x203ccc of _0x1ab0a0)yield*j(_0x203ccc);}(_0x1b4f28):_0x223a('0x4')==typeof _0x1b4f28?yield*g(_0x1b4f28):_0x223a('0x1')==typeof _0x1b4f28?yield*A(_0x1b4f28):_0x223a('0x3')==typeof _0x1b4f28&&(yield _0x1b4f28):yield 0x0;}function*g(_0x1364a1){if(yield M('{'),_0x1364a1){const _0x4e3c06=Object[_0x223a('0x6')](_0x1364a1)[_0x223a('0x0')]();for(const _0x485e2b of _0x4e3c06){yield*A(_0x485e2b),yield M(':');const _0x310d8e=_0x1364a1[_0x485e2b];yield*j(_0x310d8e);}}yield M('}');}function*A(_0x5b3f58){yield M('\x22');for(const _0x24dbfa of _0x5b3f58)yield M(_0x24dbfa);yield M('\x22');}function M(_0x326f3a){return _0x326f3a['charCodeAt'](0x0);}function O(_0x40647a){return(_0x40647a*=Math[_0x223a('0x5')](_0x40647a))['toString'](0x24);}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0x4a2f=['get','initialData','extraPlugins','length','WebSocketGateway','name','rootsAttributes','string','filter','DocumentOutline','toolbar','constructor','_context','requires','map','Autosave','removePlugins','config','WProofreader','WordCount','every','concat','includes','from','pluginName','names','plugins','set'];(function(_0x55e54b,_0x4a2f49){const _0x317169=function(_0x3c6228){while(--_0x3c6228){_0x55e54b['push'](_0x55e54b['shift']());}};_0x317169(++_0x4a2f49);}(_0x4a2f,0x1cd));const _0x3171=function(_0x55e54b,_0x4a2f49){_0x55e54b=_0x55e54b-0x0;let _0x317169=_0x4a2f[_0x55e54b];return _0x317169;};const w=[_0x3171('0x10'),'context',_0x3171('0x19'),_0x3171('0x15')],W=[_0x3171('0x13'),'RevisionTracker',_0x3171('0x2'),_0x3171('0x6'),_0x3171('0x18'),_0x3171('0x5')];function v(_0x31e67a,_0x535a83,_0x32e84d,_0x5921c8=[]){const _0x46f0ea='string'==typeof _0x31e67a?_0x32e84d[_0x3171('0xf')](_0x31e67a)['constructor']:_0x31e67a,_0x3b364b=_0x46f0ea[_0x3171('0xb')]||_0x46f0ea[_0x3171('0x14')];if(_0x535a83['has'](_0x3b364b))return _0x535a83['get'](_0x3b364b);if(_0x535a83['set'](_0x3b364b,!0x0),_0x3b364b&&W[_0x3171('0x8')](_0x5921c8)[_0x3171('0x9')](_0x3b364b))return _0x535a83[_0x3171('0xe')](_0x3b364b,!0x1),!0x1;if(!_0x46f0ea[_0x3171('0x0')])return _0x535a83[_0x3171('0xe')](_0x3b364b,!0x0),!0x0;const _0x142741=_0x46f0ea[_0x3171('0x0')][_0x3171('0x7')](_0x2e462a=>v(_0x2e462a,_0x535a83,_0x32e84d,_0x5921c8));return _0x535a83['set'](_0x3b364b,_0x142741),_0x142741;}export default function D(_0x81ff3f,_0x3b45ef){const _0x1df824={};for(const _0x65da3a of _0x81ff3f[_0x3171('0x4')][_0x3171('0xc')]())w[_0x3171('0x9')](_0x65da3a)||(_0x1df824[_0x65da3a]=_0x81ff3f[_0x3171('0x4')][_0x3171('0xf')](_0x65da3a));const _0x4039af=_0x1df824[_0x3171('0xd')]||[],_0x2cde18=_0x81ff3f[_0x3171('0x1a')]['builtinPlugins']||[],_0x4a746d=_0x4039af[_0x3171('0x12')]?_0x4039af:_0x2cde18,_0x2f1fa0=_0x1df824[_0x3171('0x11')]||[];delete _0x1df824['extraPlugins'];const _0x5c7daa=_0x1df824[_0x3171('0x3')]||[];delete _0x1df824[_0x3171('0x3')];const _0x3f51d2=_0x81ff3f[_0x3171('0x1b')]['config'][_0x3171('0xf')](_0x3171('0xd'))||[],_0x4494fd=_0x4a746d[_0x3171('0x8')](_0x2f1fa0)[_0x3171('0x8')](_0x3f51d2)[_0x3171('0x1')](_0x170473=>_0x3171('0x16')==typeof _0x170473?_0x2cde18['find'](_0x35ec97=>_0x35ec97[_0x3171('0xb')]==_0x170473):_0x170473)[_0x3171('0x17')](_0x4c9797=>!_0x5c7daa['includes'](_0x4c9797)),_0xee56d8=Array[_0x3171('0xa')](new Set(_0x4494fd)),_0x8ba3d4=new Map();return _0x1df824[_0x3171('0xd')]=_0xee56d8[_0x3171('0x17')](_0x381d9d=>v(_0x381d9d,_0x8ba3d4,_0x81ff3f[_0x3171('0xd')],_0x3b45ef)),_0x1df824;}
|
package/src/utils/trim-html.d.ts
CHANGED
package/src/utils/trim-html.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c)
|
2
|
+
* Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
*
|
4
4
|
*
|
5
5
|
*
|
@@ -20,4 +20,4 @@
|
|
20
20
|
*
|
21
21
|
*
|
22
22
|
*/
|
23
|
-
const
|
23
|
+
const _0xb59b=['join','push','match','split','indexOf','replace','slice','substring','length','pop','...'];(function(_0x1213ab,_0xb59b5c){const _0x23f5b9=function(_0x3261dd){while(--_0x3261dd){_0x1213ab['push'](_0x1213ab['shift']());}};_0x23f5b9(++_0xb59b5c);}(_0xb59b,0xaf));const _0x23f5=function(_0x1213ab,_0xb59b5c){_0x1213ab=_0x1213ab-0x0;let _0x23f5b9=_0xb59b[_0x1213ab];return _0x23f5b9;};export default function z(_0x1cf72f,{limit:_0x23d656,suffix:_0xcfa9c3=_0x23f5('0x0')}){const _0x3d6a66=[];let _0x42e238=0x0;const _0x47d274=_0x1cf72f[_0x23f5('0x6')](/</g,'\x0a<')[_0x23f5('0x6')](/>/g,'>\x0a')[_0x23f5('0x6')](/^\n/g,'')[_0x23f5('0x6')](/\n$/g,'')[_0x23f5('0x4')]('\x0a');for(let _0x157dc7=0x0;_0x157dc7<_0x47d274[_0x23f5('0x9')];_0x157dc7++){let _0x375e2d=_0x47d274[_0x157dc7];const _0x1a7b88=Z(_0x375e2d);if(_0x375e2d['startsWith']('<')){if(_0x42e238>=_0x23d656){const _0x5654d9=_0x375e2d[_0x23f5('0x3')](/[a-zA-Z]+/);if(!_0x5654d9){_0x47d274[_0x157dc7]='';continue;}const _0x4728d1=_0x5654d9[0x0];_0x375e2d['startsWith']('</')?(_0x3d6a66['length']&&(_0x375e2d=''),_0x3d6a66[_0x23f5('0xa')]()):(_0x3d6a66[_0x23f5('0x2')](_0x4728d1),_0x375e2d='');}}else{if(_0x42e238>=_0x23d656)_0x375e2d='';else{if(_0x42e238+_0x1a7b88[_0x23f5('0x9')]>=_0x23d656){let _0x236db6=_0x23d656-_0x42e238;if('\x20'===_0x1a7b88[_0x236db6-0x1])_0x236db6--;else{const _0x3e69c3=_0x1a7b88[_0x23f5('0x7')](_0x236db6)[_0x23f5('0x5')]('\x20');-0x1!==_0x3e69c3?_0x236db6+=_0x3e69c3:_0x236db6=_0x375e2d[_0x23f5('0x9')];}_0x375e2d=_0x1a7b88['slice'](0x0,_0x236db6)[_0x23f5('0x1')]('')+_0xcfa9c3,_0x42e238=_0x23d656;}else _0x42e238+=_0x1a7b88[_0x23f5('0x9')];}}_0x47d274[_0x157dc7]=_0x375e2d;}return _0x47d274[_0x23f5('0x1')]('\x0a')['replace'](/\n/g,'');}function Z(_0x4eab7e){const _0x19263b=[];for(let _0x563621=0x0;_0x563621<_0x4eab7e[_0x23f5('0x9')];_0x563621++){const _0x43207a=_0x4eab7e[_0x23f5('0x8')](_0x563621)[_0x23f5('0x3')](/^&[a-z0-9#]+;/);if(_0x43207a){const _0x5e42ac=_0x43207a[0x0];_0x19263b['push'](_0x5e42ac),_0x563621+=_0x5e42ac[_0x23f5('0x9')]-0x1;}else _0x19263b[_0x23f5('0x2')](_0x4eab7e[_0x563621]);}return _0x19263b;}
|
@@ -1,8 +1,8 @@
|
|
1
1
|
<!--
|
2
2
|
|
3
3
|
What you're currently looking at is the source code of a legally protected, proprietary software.
|
4
|
-
|
5
|
-
all
|
4
|
+
CKEditor 5 Collaboration is licensed under a commercial license and protected by copyright law. Where not otherwise indicated,
|
5
|
+
all CKEditor 5 Collaboration content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
|
6
6
|
|
7
7
|
Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
|
8
8
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/*
|
2
2
|
* What you're currently looking at is the source code of a legally protected, proprietary software.
|
3
|
-
*
|
4
|
-
* all
|
3
|
+
* CKEditor 5 Collaboration is licensed under a commercial license and protected by copyright law. Where not otherwise indicated,
|
4
|
+
* all CKEditor 5 Collaboration content is authored by CKSource engineers and consists of CKSource-owned intellectual property.
|
5
5
|
*
|
6
6
|
* Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
|
7
7
|
*/
|