@ckeditor/ckeditor5-operations-compressor 44.1.0 → 44.2.0-alpha.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.
Files changed (54) hide show
  1. package/LICENSE.md +1 -1
  2. package/README.md +1 -1
  3. package/dist/index-content.css +2 -2
  4. package/dist/index-editor.css +2 -2
  5. package/dist/index.css +2 -2
  6. package/dist/index.js +3 -3
  7. package/package.json +21 -3
  8. package/src/actioncompressor/actioncompressor.d.ts +1 -1
  9. package/src/actioncompressor/actioncompressor.js +2 -2
  10. package/src/actioncompressor/deletingactioncompressor.d.ts +1 -1
  11. package/src/actioncompressor/deletingactioncompressor.js +2 -2
  12. package/src/actioncompressor/forwarddeletingactioncompressor.d.ts +1 -1
  13. package/src/actioncompressor/forwarddeletingactioncompressor.js +2 -2
  14. package/src/actioncompressor/typingactioncompressor.d.ts +1 -1
  15. package/src/actioncompressor/typingactioncompressor.js +2 -2
  16. package/src/actioncompressor/userselectionactioncompressor.d.ts +1 -1
  17. package/src/actioncompressor/userselectionactioncompressor.js +2 -2
  18. package/src/compressor.d.ts +1 -1
  19. package/src/compressor.js +2 -2
  20. package/src/index.d.ts +1 -1
  21. package/src/index.js +2 -2
  22. package/src/lib/compiledmessages.js +3 -3
  23. package/src/lib/protobufdescriptions.js +2 -2
  24. package/src/operationcompressor/annotationmarkeroperationcompressor.d.ts +1 -1
  25. package/src/operationcompressor/annotationmarkeroperationcompressor.js +2 -2
  26. package/src/operationcompressor/attributeoperationcompressor.d.ts +1 -1
  27. package/src/operationcompressor/attributeoperationcompressor.js +2 -2
  28. package/src/operationcompressor/insertoperationcompressor.d.ts +1 -1
  29. package/src/operationcompressor/insertoperationcompressor.js +2 -2
  30. package/src/operationcompressor/markeroperationcompressor.d.ts +1 -1
  31. package/src/operationcompressor/markeroperationcompressor.js +2 -2
  32. package/src/operationcompressor/nooperationcompressor.d.ts +1 -1
  33. package/src/operationcompressor/nooperationcompressor.js +2 -2
  34. package/src/operationcompressor/operationcompressor.d.ts +1 -1
  35. package/src/operationcompressor/operationcompressor.js +2 -2
  36. package/src/protobuffactory.d.ts +1 -1
  37. package/src/protobuffactory.js +2 -2
  38. package/src/utils.d.ts +1 -1
  39. package/src/utils.js +2 -2
  40. package/dist/actioncompressor/actioncompressor.d.ts +0 -64
  41. package/dist/actioncompressor/deletingactioncompressor.d.ts +0 -32
  42. package/dist/actioncompressor/forwarddeletingactioncompressor.d.ts +0 -32
  43. package/dist/actioncompressor/typingactioncompressor.d.ts +0 -32
  44. package/dist/actioncompressor/userselectionactioncompressor.d.ts +0 -20
  45. package/dist/compressor.d.ts +0 -49
  46. package/dist/index.d.ts +0 -9
  47. package/dist/operationcompressor/annotationmarkeroperationcompressor.d.ts +0 -26
  48. package/dist/operationcompressor/attributeoperationcompressor.d.ts +0 -21
  49. package/dist/operationcompressor/insertoperationcompressor.d.ts +0 -21
  50. package/dist/operationcompressor/markeroperationcompressor.d.ts +0 -17
  51. package/dist/operationcompressor/nooperationcompressor.d.ts +0 -24
  52. package/dist/operationcompressor/operationcompressor.d.ts +0 -32
  53. package/dist/protobuffactory.d.ts +0 -9
  54. package/dist/utils.d.ts +0 -34
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-operations-compressor",
3
- "version": "44.1.0",
3
+ "version": "44.2.0-alpha.0",
4
4
  "description": "CKEditor 5 operations compressor for real-time collaboration.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "homepage": "https://ckeditor.com/collaboration/real-time/",
@@ -33,8 +33,8 @@
33
33
  "main": "src/index.js",
34
34
  "types": "src/index.d.ts",
35
35
  "dependencies": {
36
- "@ckeditor/ckeditor5-utils": "44.1.0",
37
- "ckeditor5": "44.1.0",
36
+ "@ckeditor/ckeditor5-utils": "44.2.0-alpha.0",
37
+ "ckeditor5": "44.2.0-alpha.0",
38
38
  "lodash-es": "4.17.21",
39
39
  "protobufjs": "7.4.0"
40
40
  },
@@ -44,5 +44,23 @@
44
44
  "src/**/*.d.ts",
45
45
  "CHANGELOG.md"
46
46
  ],
47
+ "exports": {
48
+ ".": {
49
+ "types": "./src/index.d.ts",
50
+ "import": "./src/index.js",
51
+ "default": "./src/index.js"
52
+ },
53
+ "./dist/*": {
54
+ "types": "./src/index.d.ts",
55
+ "import": "./dist/*",
56
+ "default": "./dist/*"
57
+ },
58
+ "./src/*": {
59
+ "types": "./src/*.d.ts",
60
+ "import": "./src/*",
61
+ "default": "./src/*"
62
+ },
63
+ "./package.json": "./package.json"
64
+ },
47
65
  "obfuscated": true
48
66
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
5
  import type { CompressedOperationsData, default as Compressor } from '../compressor.js';
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * Copyright (c) 2003-2025, 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 _0x9f21dd=_0x3697;(function(_0xb8f906,_0x2ce3eb){const _0x1e3a39=_0x3697,_0x3058e4=_0xb8f906();while(!![]){try{const _0x3c5ab5=parseInt(_0x1e3a39(0x1b8))/0x1+parseInt(_0x1e3a39(0x1bf))/0x2*(-parseInt(_0x1e3a39(0x1c7))/0x3)+parseInt(_0x1e3a39(0x1b9))/0x4+-parseInt(_0x1e3a39(0x1c3))/0x5+-parseInt(_0x1e3a39(0x1ca))/0x6+parseInt(_0x1e3a39(0x1b6))/0x7+parseInt(_0x1e3a39(0x1c1))/0x8;if(_0x3c5ab5===_0x2ce3eb)break;else _0x3058e4['push'](_0x3058e4['shift']());}catch(_0x36fb8d){_0x3058e4['push'](_0x3058e4['shift']());}}}(_0x58a7,0x9e717));import{cloneDeep as _0x17661a}from'lodash-es';function _0x58a7(){const _0x434692=['_compressSingleOperation','6919920Ekvyza','_combineNext','809815OwBXJt','types','_context','_splitCurrent','1175928JxAuwm','_compareOperations','length','5285022fOcVQC','compress','3066686hekXrT','buffers','895352CmkWuz','2677084GlFIDy','push','decompress','shift','_decompressSingleOperation','_id','6tbCzeV'];_0x58a7=function(){return _0x434692;};return _0x58a7();}function _0x3697(_0x383c41,_0xf229a9){const _0x58a7a7=_0x58a7();return _0x3697=function(_0x36979e,_0xc14fc4){_0x36979e=_0x36979e-0x1b6;let _0x27da8d=_0x58a7a7[_0x36979e];return _0x27da8d;},_0x3697(_0x383c41,_0xf229a9);}export default class b{constructor(_0x34d2e7,_0x3da3c2){const _0x5b01e6=_0x3697;this[_0x5b01e6(0x1be)]=_0x34d2e7,this[_0x5b01e6(0x1c5)]=_0x3da3c2;}[_0x9f21dd(0x1cb)](_0x22ebbe,_0x37f35e){const _0x1cdc4b=_0x9f21dd;let _0x227fae;for(;_0x37f35e[_0x1cdc4b(0x1c9)]>0x1&&this[_0x1cdc4b(0x1c8)](_0x37f35e[0x0],_0x37f35e[0x1]);)_0x227fae?(_0x227fae=this[_0x1cdc4b(0x1c2)](_0x37f35e[_0x1cdc4b(0x1bc)](),_0x227fae),_0x22ebbe[_0x1cdc4b(0x1c4)][_0x1cdc4b(0x1ba)](0x0)):(_0x227fae=_0x17661a(_0x37f35e[_0x1cdc4b(0x1bc)]()),_0x22ebbe[_0x1cdc4b(0x1c4)][_0x1cdc4b(0x1ba)](this[_0x1cdc4b(0x1be)]));return!!_0x227fae&&(_0x227fae=this[_0x1cdc4b(0x1c2)](_0x37f35e[_0x1cdc4b(0x1bc)](),_0x227fae),_0x22ebbe[_0x1cdc4b(0x1c4)][_0x1cdc4b(0x1ba)](0x0),_0x22ebbe[_0x1cdc4b(0x1b7)][_0x1cdc4b(0x1ba)](this[_0x1cdc4b(0x1c0)](_0x227fae)),!0x0);}[_0x9f21dd(0x1bb)](_0xff114c,_0x15b487){const _0x20eca0=_0x9f21dd,_0x262ff3=this[_0x20eca0(0x1bd)](_0x15b487);for(;0x0==_0x15b487[_0x20eca0(0x1c4)][0x0];)_0x15b487[_0x20eca0(0x1c4)][_0x20eca0(0x1bc)](),_0xff114c[_0x20eca0(0x1ba)](this[_0x20eca0(0x1c6)](_0x262ff3));_0xff114c[_0x20eca0(0x1ba)](_0x262ff3);}}
23
+ const _0x173e33=_0x13bd;(function(_0x2ea86d,_0x5412a3){const _0x44cee5=_0x13bd,_0x3d66c3=_0x2ea86d();while(!![]){try{const _0x459efe=parseInt(_0x44cee5(0x18b))/0x1+parseInt(_0x44cee5(0x185))/0x2+parseInt(_0x44cee5(0x18e))/0x3+parseInt(_0x44cee5(0x18f))/0x4*(parseInt(_0x44cee5(0x197))/0x5)+-parseInt(_0x44cee5(0x196))/0x6+-parseInt(_0x44cee5(0x183))/0x7*(parseInt(_0x44cee5(0x191))/0x8)+parseInt(_0x44cee5(0x190))/0x9;if(_0x459efe===_0x5412a3)break;else _0x3d66c3['push'](_0x3d66c3['shift']());}catch(_0x1115db){_0x3d66c3['push'](_0x3d66c3['shift']());}}}(_0x1238,0x97a39));import{cloneDeep as _0x36620b}from'lodash-es';function _0x13bd(_0x3a5df0,_0x8a9fd7){const _0x12387c=_0x1238();return _0x13bd=function(_0x13bd9a,_0x26bd89){_0x13bd9a=_0x13bd9a-0x182;let _0x351cda=_0x12387c[_0x13bd9a];return _0x351cda;},_0x13bd(_0x3a5df0,_0x8a9fd7);}export default class b{constructor(_0x4d577d,_0x48b620){const _0x2131de=_0x13bd;this[_0x2131de(0x182)]=_0x4d577d,this[_0x2131de(0x198)]=_0x48b620;}[_0x173e33(0x18c)](_0x41762a,_0x59d28b){const _0xd6b5a2=_0x173e33;let _0x4d98fe;for(;_0x59d28b[_0xd6b5a2(0x189)]>0x1&&this[_0xd6b5a2(0x186)](_0x59d28b[0x0],_0x59d28b[0x1]);)_0x4d98fe?(_0x4d98fe=this[_0xd6b5a2(0x187)](_0x59d28b[_0xd6b5a2(0x192)](),_0x4d98fe),_0x41762a[_0xd6b5a2(0x188)][_0xd6b5a2(0x193)](0x0)):(_0x4d98fe=_0x36620b(_0x59d28b[_0xd6b5a2(0x192)]()),_0x41762a[_0xd6b5a2(0x188)][_0xd6b5a2(0x193)](this[_0xd6b5a2(0x182)]));return!!_0x4d98fe&&(_0x4d98fe=this[_0xd6b5a2(0x187)](_0x59d28b[_0xd6b5a2(0x192)](),_0x4d98fe),_0x41762a[_0xd6b5a2(0x188)][_0xd6b5a2(0x193)](0x0),_0x41762a[_0xd6b5a2(0x184)][_0xd6b5a2(0x193)](this[_0xd6b5a2(0x195)](_0x4d98fe)),!0x0);}[_0x173e33(0x194)](_0x5369f0,_0x12976c){const _0x9b0135=_0x173e33,_0x1b7c1a=this[_0x9b0135(0x18a)](_0x12976c);for(;0x0==_0x12976c[_0x9b0135(0x188)][0x0];)_0x12976c[_0x9b0135(0x188)][_0x9b0135(0x192)](),_0x5369f0[_0x9b0135(0x193)](this[_0x9b0135(0x18d)](_0x1b7c1a));_0x5369f0[_0x9b0135(0x193)](_0x1b7c1a);}}function _0x1238(){const _0x443393=['length','_decompressSingleOperation','604177xmskco','compress','_splitCurrent','3101970WKDwxY','1223932THVkAH','2553957LrzByP','8LhQmEs','shift','push','decompress','_compressSingleOperation','3713178sYADcY','5eVzrGW','_context','_id','7203854Smrprt','buffers','82350wStZbi','_compareOperations','_combineNext','types'];_0x1238=function(){return _0x443393;};return _0x1238();}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
5
  import ActionCompressor from './actioncompressor.js';
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * Copyright (c) 2003-2025, 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 _0x1882db=_0x2e80;(function(_0x284666,_0x347c25){const _0x58d132=_0x2e80,_0x15029b=_0x284666();while(!![]){try{const _0x5aa064=parseInt(_0x58d132(0x105))/0x1+parseInt(_0x58d132(0x107))/0x2+parseInt(_0x58d132(0xfa))/0x3+parseInt(_0x58d132(0x108))/0x4+-parseInt(_0x58d132(0x102))/0x5*(parseInt(_0x58d132(0x106))/0x6)+-parseInt(_0x58d132(0xff))/0x7+parseInt(_0x58d132(0xf7))/0x8*(parseInt(_0x58d132(0xf1))/0x9);if(_0x5aa064===_0x347c25)break;else _0x15029b['push'](_0x15029b['shift']());}catch(_0x25a9b2){_0x15029b['push'](_0x15029b['shift']());}}}(_0x2bb1,0xd05f0));import _0x1b49fb from'./actioncompressor.js';function _0x2e80(_0x58920f,_0x3ea6ec){const _0x2bb168=_0x2bb1();return _0x2e80=function(_0x2e800d,_0x4d870){_0x2e800d=_0x2e800d-0xf0;let _0x34d451=_0x2bb168[_0x2e800d];return _0x34d451;},_0x2e80(_0x58920f,_0x3ea6ec);}function _0x2bb1(){const _0x48594a=['__className','decompress','50408kljANm','_splitCurrent','_compressSingleOperation','2142336WOmtcs','$graveyard','_combineNext','_getCompressorByName','MoveOperation','5566806NMQjPk','_checkOperation','sourcePosition','30hTEJrt','root','targetPosition','406jHogNr','1413246VIWqfa','2707944lPndtc','2436564kuPUeX','compress','_context','_decompressSingleOperation','howMany','549BECZQc','wasUndone','buffers','_compareOperations'];_0x2bb1=function(){return _0x48594a;};return _0x2bb1();}import{arePositionsEqual as _0x1230df,getPositionShiftedBy as _0x341846}from'../utils.js';import{cloneDeep as _0x4d0698}from'lodash-es';export default class c extends _0x1b49fb{[_0x1882db(0xfc)](_0x3987d0,_0x557a40){const _0x296611=_0x1882db;return _0x557a40[_0x296611(0xf0)]++,_0x557a40[_0x296611(0x101)]=_0x4d0698(_0x3987d0[_0x296611(0x101)]),_0x557a40;}[_0x1882db(0xf8)](_0x44cd1a){const _0x16afda=_0x1882db,_0x37cd26=_0x4d0698(_0x44cd1a);return _0x44cd1a[_0x16afda(0xf0)]--,_0x37cd26[_0x16afda(0xf0)]=0x1,_0x37cd26[_0x16afda(0x101)]=_0x341846(_0x37cd26[_0x16afda(0x101)],_0x44cd1a[_0x16afda(0xf0)]),_0x37cd26;}[_0x1882db(0xf4)](_0xff9e9c,_0x1de1bb){const _0x594670=_0x1882db;return!(!this[_0x594670(0x100)](_0xff9e9c)||!this[_0x594670(0x100)](_0x1de1bb))&&(_0x1230df(_0x341846(_0xff9e9c[_0x594670(0x101)],-0x1),_0x1de1bb[_0x594670(0x101)])&&_0x1230df(_0xff9e9c[_0x594670(0x104)],_0x1de1bb[_0x594670(0x104)]));}[_0x1882db(0xf9)](_0x465d90){const _0x15cf50=_0x1882db,_0x24c044={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x15cf50(0x10a)][_0x15cf50(0xfd)](_0x15cf50(0xfe))[_0x15cf50(0x109)](_0x24c044,[_0x465d90]),_0x24c044[_0x15cf50(0xf3)][0x0];}[_0x1882db(0x10b)](_0x27534a){const _0x38557a=_0x1882db,_0xdd03ad=[];return this[_0x38557a(0x10a)][_0x38557a(0xfd)](_0x38557a(0xfe))[_0x38557a(0xf6)](_0xdd03ad,_0x27534a),_0xdd03ad[0x0];}[_0x1882db(0x100)](_0xca64a0){const _0x6cf9bd=_0x1882db;return _0x6cf9bd(0xfe)==_0xca64a0[_0x6cf9bd(0xf5)]&&_0x6cf9bd(0xfb)==_0xca64a0[_0x6cf9bd(0x104)][_0x6cf9bd(0x103)]&&0x1==_0xca64a0[_0x6cf9bd(0xf0)]&&!_0xca64a0[_0x6cf9bd(0xf2)];}}
23
+ function _0x61bd(){const _0x44d2d5=['_compareOperations','$graveyard','_compressSingleOperation','18RpreDb','6jbUloL','decompress','howMany','1822392ZGEZvG','_getCompressorByName','42017JOnZLm','wasUndone','_splitCurrent','18mnhExW','buffers','sourcePosition','__className','_context','328720yRCEcx','835555anubPy','targetPosition','compress','MoveOperation','_combineNext','799256wefZXT','146552YsgOwb','_checkOperation','12148TZemkO','360ZvGdwL','root','_decompressSingleOperation'];_0x61bd=function(){return _0x44d2d5;};return _0x61bd();}const _0x530ce1=_0x4569;(function(_0x25734b,_0x3005e1){const _0x439eeb=_0x4569,_0x2ef173=_0x25734b();while(!![]){try{const _0x4dfe86=-parseInt(_0x439eeb(0xe2))/0x1*(-parseInt(_0x439eeb(0xe5))/0x2)+-parseInt(_0x439eeb(0xd6))/0x3*(parseInt(_0x439eeb(0xd5))/0x4)+-parseInt(_0x439eeb(0xeb))/0x5+-parseInt(_0x439eeb(0xdd))/0x6*(parseInt(_0x439eeb(0xd3))/0x7)+-parseInt(_0x439eeb(0xd2))/0x8*(-parseInt(_0x439eeb(0xdc))/0x9)+parseInt(_0x439eeb(0xea))/0xa+parseInt(_0x439eeb(0xe0))/0xb;if(_0x4dfe86===_0x3005e1)break;else _0x2ef173['push'](_0x2ef173['shift']());}catch(_0x24cd09){_0x2ef173['push'](_0x2ef173['shift']());}}}(_0x61bd,0x36b18));import _0x4f3259 from'./actioncompressor.js';import{arePositionsEqual as _0x1a2036,getPositionShiftedBy as _0x57327f}from'../utils.js';function _0x4569(_0x579f82,_0x483ff4){const _0x61bd37=_0x61bd();return _0x4569=function(_0x45692d,_0xf54cf5){_0x45692d=_0x45692d-0xce;let _0x4ba880=_0x61bd37[_0x45692d];return _0x4ba880;},_0x4569(_0x579f82,_0x483ff4);}import{cloneDeep as _0x21a4ab}from'lodash-es';export default class c extends _0x4f3259{[_0x530ce1(0xd1)](_0x38f3a2,_0x2780f3){const _0x17d315=_0x530ce1;return _0x2780f3[_0x17d315(0xdf)]++,_0x2780f3[_0x17d315(0xe7)]=_0x21a4ab(_0x38f3a2[_0x17d315(0xe7)]),_0x2780f3;}[_0x530ce1(0xe4)](_0x1d956a){const _0x43ce57=_0x530ce1,_0x338181=_0x21a4ab(_0x1d956a);return _0x1d956a[_0x43ce57(0xdf)]--,_0x338181[_0x43ce57(0xdf)]=0x1,_0x338181[_0x43ce57(0xe7)]=_0x57327f(_0x338181[_0x43ce57(0xe7)],_0x1d956a[_0x43ce57(0xdf)]),_0x338181;}[_0x530ce1(0xd9)](_0x262544,_0x58b680){const _0x12d9cf=_0x530ce1;return!(!this[_0x12d9cf(0xd4)](_0x262544)||!this[_0x12d9cf(0xd4)](_0x58b680))&&(_0x1a2036(_0x57327f(_0x262544[_0x12d9cf(0xe7)],-0x1),_0x58b680[_0x12d9cf(0xe7)])&&_0x1a2036(_0x262544[_0x12d9cf(0xce)],_0x58b680[_0x12d9cf(0xce)]));}[_0x530ce1(0xdb)](_0x256706){const _0x1d86c2=_0x530ce1,_0x5b4928={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x1d86c2(0xe9)][_0x1d86c2(0xe1)](_0x1d86c2(0xd0))[_0x1d86c2(0xcf)](_0x5b4928,[_0x256706]),_0x5b4928[_0x1d86c2(0xe6)][0x0];}[_0x530ce1(0xd8)](_0x4b64b3){const _0x2d14da=_0x530ce1,_0x29c09f=[];return this[_0x2d14da(0xe9)][_0x2d14da(0xe1)](_0x2d14da(0xd0))[_0x2d14da(0xde)](_0x29c09f,_0x4b64b3),_0x29c09f[0x0];}[_0x530ce1(0xd4)](_0x2cda5f){const _0x406179=_0x530ce1;return _0x406179(0xd0)==_0x2cda5f[_0x406179(0xe8)]&&_0x406179(0xda)==_0x2cda5f[_0x406179(0xce)][_0x406179(0xd7)]&&0x1==_0x2cda5f[_0x406179(0xdf)]&&!_0x2cda5f[_0x406179(0xe3)];}}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
5
  import ActionCompressor from './actioncompressor.js';
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * Copyright (c) 2003-2025, 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
- function _0x4298(){const _0x55c28d=['root','$graveyard','977166mmqqDk','_checkOperation','MoveOperation','_splitCurrent','buffers','7448070pEoipp','1155168xaNtXR','targetPosition','decompress','sourcePosition','_combineNext','_compareOperations','12cnATLA','1351847Asgjad','howMany','4337690EuSjyi','_decompressSingleOperation','_getCompressorByName','_context','24920370HyCueA','_compressSingleOperation','__className','compress','4pJUetF','wasUndone','446572CdtUsY'];_0x4298=function(){return _0x55c28d;};return _0x4298();}function _0xd1e9(_0x5cfb91,_0x48964c){const _0x429814=_0x4298();return _0xd1e9=function(_0xd1e97e,_0x2c7809){_0xd1e97e=_0xd1e97e-0x8b;let _0x2ea484=_0x429814[_0xd1e97e];return _0x2ea484;},_0xd1e9(_0x5cfb91,_0x48964c);}const _0xfc70c8=_0xd1e9;(function(_0x5785be,_0x1ed758){const _0x1b9c98=_0xd1e9,_0x812bc5=_0x5785be();while(!![]){try{const _0x533d76=-parseInt(_0x1b9c98(0x98))/0x1+parseInt(_0x1b9c98(0xa4))/0x2*(-parseInt(_0x1b9c98(0x97))/0x3)+parseInt(_0x1b9c98(0xa2))/0x4*(-parseInt(_0x1b9c98(0x9a))/0x5)+-parseInt(_0x1b9c98(0x8b))/0x6+parseInt(_0x1b9c98(0x90))/0x7+parseInt(_0x1b9c98(0x91))/0x8+parseInt(_0x1b9c98(0x9e))/0x9;if(_0x533d76===_0x1ed758)break;else _0x812bc5['push'](_0x812bc5['shift']());}catch(_0x49ae8e){_0x812bc5['push'](_0x812bc5['shift']());}}}(_0x4298,0xab5fa));import _0x2d465a from'./actioncompressor.js';import{arePositionsEqual as _0x5381d5}from'../utils.js';import{cloneDeep as _0xaa271f}from'lodash-es';export default class h extends _0x2d465a{[_0xfc70c8(0x95)](_0x32319e,_0x55f0db){const _0x23dd4b=_0xfc70c8;return _0x55f0db[_0x23dd4b(0x99)]++,_0x55f0db;}[_0xfc70c8(0x8e)](_0x4516a7){const _0x1068a1=_0xfc70c8,_0x1047c6=_0xaa271f(_0x4516a7);return _0x1047c6[_0x1068a1(0x99)]=0x1,_0x4516a7[_0x1068a1(0x99)]--,_0x1047c6;}[_0xfc70c8(0x96)](_0x15152e,_0x115381){const _0x491996=_0xfc70c8;return!(!this[_0x491996(0x8c)](_0x15152e)||!this[_0x491996(0x8c)](_0x115381))&&(_0x5381d5(_0x15152e[_0x491996(0x94)],_0x115381[_0x491996(0x94)])&&_0x5381d5(_0x15152e[_0x491996(0x92)],_0x115381[_0x491996(0x92)]));}[_0xfc70c8(0x9f)](_0x83ae2a){const _0xce4ae2=_0xfc70c8,_0x1be4bd={'types':[],'buffers':[],'baseVersion':0x0};return this[_0xce4ae2(0x9d)][_0xce4ae2(0x9c)](_0xce4ae2(0x8d))[_0xce4ae2(0xa1)](_0x1be4bd,[_0x83ae2a]),_0x1be4bd[_0xce4ae2(0x8f)][0x0];}[_0xfc70c8(0x9b)](_0x51b1ad){const _0x40d148=_0xfc70c8,_0x126f8d=[];return this[_0x40d148(0x9d)][_0x40d148(0x9c)](_0x40d148(0x8d))[_0x40d148(0x93)](_0x126f8d,_0x51b1ad),_0x126f8d[0x0];}[_0xfc70c8(0x8c)](_0x256af2){const _0x1aa5fd=_0xfc70c8;return _0x1aa5fd(0x8d)==_0x256af2[_0x1aa5fd(0xa0)]&&_0x1aa5fd(0xa6)==_0x256af2[_0x1aa5fd(0x92)][_0x1aa5fd(0xa5)]&&0x1==_0x256af2[_0x1aa5fd(0x99)]&&!_0x256af2[_0x1aa5fd(0xa3)];}}
23
+ const _0x2983e8=_0x546a;(function(_0x226500,_0x207ce5){const _0x1a4c69=_0x546a,_0x550f13=_0x226500();while(!![]){try{const _0x194283=-parseInt(_0x1a4c69(0xcf))/0x1*(-parseInt(_0x1a4c69(0xd5))/0x2)+parseInt(_0x1a4c69(0xd4))/0x3+-parseInt(_0x1a4c69(0xd7))/0x4*(-parseInt(_0x1a4c69(0xdf))/0x5)+-parseInt(_0x1a4c69(0xdd))/0x6*(-parseInt(_0x1a4c69(0xca))/0x7)+-parseInt(_0x1a4c69(0xe5))/0x8*(-parseInt(_0x1a4c69(0xdb))/0x9)+parseInt(_0x1a4c69(0xcc))/0xa+-parseInt(_0x1a4c69(0xcd))/0xb;if(_0x194283===_0x207ce5)break;else _0x550f13['push'](_0x550f13['shift']());}catch(_0xe2d70c){_0x550f13['push'](_0x550f13['shift']());}}}(_0x32b3,0x5840b));import _0x358186 from'./actioncompressor.js';import{arePositionsEqual as _0x3b5564}from'../utils.js';import{cloneDeep as _0x5a5526}from'lodash-es';function _0x546a(_0x2e6290,_0x21f0b3){const _0x32b384=_0x32b3();return _0x546a=function(_0x546a5c,_0x3bfe65){_0x546a5c=_0x546a5c-0xc9;let _0x265ab9=_0x32b384[_0x546a5c];return _0x265ab9;},_0x546a(_0x2e6290,_0x21f0b3);}export default class h extends _0x358186{[_0x2983e8(0xcb)](_0x2ec82a,_0x19f6a1){const _0x2e882f=_0x2983e8;return _0x19f6a1[_0x2e882f(0xe0)]++,_0x19f6a1;}[_0x2983e8(0xd0)](_0x484e23){const _0x135c3a=_0x2983e8,_0x17e6c3=_0x5a5526(_0x484e23);return _0x17e6c3[_0x135c3a(0xe0)]=0x1,_0x484e23[_0x135c3a(0xe0)]--,_0x17e6c3;}[_0x2983e8(0xe2)](_0x2413d5,_0x442ddf){const _0x45c110=_0x2983e8;return!(!this[_0x45c110(0xce)](_0x2413d5)||!this[_0x45c110(0xce)](_0x442ddf))&&(_0x3b5564(_0x2413d5[_0x45c110(0xe6)],_0x442ddf[_0x45c110(0xe6)])&&_0x3b5564(_0x2413d5[_0x45c110(0xc9)],_0x442ddf[_0x45c110(0xc9)]));}[_0x2983e8(0xd9)](_0x5598f3){const _0x249918=_0x2983e8,_0x186151={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x249918(0xda)][_0x249918(0xd2)](_0x249918(0xd6))[_0x249918(0xd3)](_0x186151,[_0x5598f3]),_0x186151[_0x249918(0xe4)][0x0];}[_0x2983e8(0xd8)](_0x536c99){const _0x35f948=_0x2983e8,_0x14ffad=[];return this[_0x35f948(0xda)][_0x35f948(0xd2)](_0x35f948(0xd6))[_0x35f948(0xde)](_0x14ffad,_0x536c99),_0x14ffad[0x0];}[_0x2983e8(0xce)](_0x1ebe79){const _0x50ca26=_0x2983e8;return _0x50ca26(0xd6)==_0x1ebe79[_0x50ca26(0xd1)]&&_0x50ca26(0xdc)==_0x1ebe79[_0x50ca26(0xc9)][_0x50ca26(0xe1)]&&0x1==_0x1ebe79[_0x50ca26(0xe0)]&&!_0x1ebe79[_0x50ca26(0xe3)];}}function _0x32b3(){const _0x5ed5a0=['_checkOperation','585218JAoJfQ','_splitCurrent','__className','_getCompressorByName','compress','1311609WTXyMM','2KPrmxZ','MoveOperation','4OvRcfb','_decompressSingleOperation','_compressSingleOperation','_context','12033kUxSil','$graveyard','76098xbAbtB','decompress','2371445QEalKl','howMany','root','_compareOperations','wasUndone','buffers','2976oGORrY','sourcePosition','targetPosition','119RSHkqo','_combineNext','251650JwjwNq','20607037cKZesA'];_0x32b3=function(){return _0x5ed5a0;};return _0x32b3();}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
5
  import ActionCompressor from './actioncompressor.js';
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * Copyright (c) 2003-2025, 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 _0x31ba10=_0x4f2c;function _0x2f32(){const _0x5b82c9=['compress','next','substr','1064862RNrsIh','nodes','_compressSingleOperation','793322MNJQjv','841890ZNelmR','iterator','keys','attributes','wasUndone','value','_context','buffers','10tkzWzr','position','_splitCurrent','_compareOperations','_decompressSingleOperation','from','3979444HDXHGR','_getCompressorByName','_combineNext','__className','4218552bwflZu','every','data','_checkOperation','8tjBgAm','length','3nNEOkR','InsertOperation','74090GXarXk','decompress','_compareAttributes','380444grfPeX'];_0x2f32=function(){return _0x5b82c9;};return _0x2f32();}(function(_0x352d63,_0x195f0e){const _0x1fa185=_0x4f2c,_0x3dd08b=_0x352d63();while(!![]){try{const _0x491b97=parseInt(_0x1fa185(0x1ca))/0x1+-parseInt(_0x1fa185(0x1d4))/0x2+parseInt(_0x1fa185(0x1c8))/0x3*(parseInt(_0x1fa185(0x1cd))/0x4)+parseInt(_0x1fa185(0x1b8))/0x5*(parseInt(_0x1fa185(0x1d1))/0x6)+parseInt(_0x1fa185(0x1be))/0x7+parseInt(_0x1fa185(0x1c6))/0x8*(-parseInt(_0x1fa185(0x1c2))/0x9)+parseInt(_0x1fa185(0x1d5))/0xa;if(_0x491b97===_0x195f0e)break;else _0x3dd08b['push'](_0x3dd08b['shift']());}catch(_0x4dc53f){_0x3dd08b['push'](_0x3dd08b['shift']());}}}(_0x2f32,0x4c097));import _0x1efb3d from'./actioncompressor.js';import{arePositionsEqual as _0x4658e8,getPositionShiftedBy as _0x173f5d}from'../utils.js';function _0x4f2c(_0xd865a8,_0x1fc126){const _0x2f3288=_0x2f32();return _0x4f2c=function(_0x4f2c77,_0x2e9b21){_0x4f2c77=_0x4f2c77-0x1b7;let _0x4e5956=_0x2f3288[_0x4f2c77];return _0x4e5956;},_0x4f2c(_0xd865a8,_0x1fc126);}import{cloneDeep as _0x4b55fd}from'lodash-es';export default class m extends _0x1efb3d{[_0x31ba10(0x1c0)](_0x265ddd,_0x55c183){const _0x4a247a=_0x31ba10;return _0x55c183[_0x4a247a(0x1d2)][0x0][_0x4a247a(0x1c4)]+=_0x265ddd[_0x4a247a(0x1d2)][0x0][_0x4a247a(0x1c4)],_0x55c183;}[_0x31ba10(0x1ba)](_0x4039fe){const _0x48b933=_0x31ba10,_0x94f728=_0x4b55fd(_0x4039fe),_0x3b4839=_0x94f728[_0x48b933(0x1d2)][0x0],_0x2c7380=_0x4039fe[_0x48b933(0x1d2)][0x0],_0x265ba6=_0x2c7380[_0x48b933(0x1c4)][Symbol[_0x48b933(0x1d6)]]()[_0x48b933(0x1cf)]()[_0x48b933(0x1da)],_0x3e6bf9=_0x265ba6[_0x48b933(0x1c7)];return _0x3b4839[_0x48b933(0x1c4)]=_0x265ba6,_0x2c7380[_0x48b933(0x1c4)]=_0x2c7380[_0x48b933(0x1c4)][_0x48b933(0x1d0)](_0x3e6bf9),_0x4039fe[_0x48b933(0x1b9)]=_0x173f5d(_0x4039fe[_0x48b933(0x1b9)],_0x3e6bf9),_0x94f728;}[_0x31ba10(0x1bb)](_0x255c18,_0x91a32f){const _0x5631ab=_0x31ba10;if(this[_0x5631ab(0x1c5)](_0x255c18)&&this[_0x5631ab(0x1c5)](_0x91a32f)){const _0x5bf165=_0x255c18[_0x5631ab(0x1d2)][0x0][_0x5631ab(0x1c4)][_0x5631ab(0x1c7)],_0x3baa63=_0x4658e8(_0x173f5d(_0x255c18[_0x5631ab(0x1b9)],_0x5bf165),_0x91a32f[_0x5631ab(0x1b9)]),_0x52030e=_0x255c18[_0x5631ab(0x1d2)][0x0],_0x103082=_0x91a32f[_0x5631ab(0x1d2)][0x0];return _0x3baa63&&this[_0x5631ab(0x1cc)](_0x52030e,_0x103082);}return!0x1;}[_0x31ba10(0x1d3)](_0x35dc2a){const _0x301a48=_0x31ba10,_0x59d72a={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x301a48(0x1db)][_0x301a48(0x1bf)](_0x301a48(0x1c9))[_0x301a48(0x1ce)](_0x59d72a,[_0x35dc2a]),_0x59d72a[_0x301a48(0x1b7)][0x0];}[_0x31ba10(0x1bc)](_0x1c0b86){const _0x5e3a37=_0x31ba10,_0x2d52d0=[];return this[_0x5e3a37(0x1db)][_0x5e3a37(0x1bf)](_0x5e3a37(0x1c9))[_0x5e3a37(0x1cb)](_0x2d52d0,_0x1c0b86),_0x2d52d0[0x0];}[_0x31ba10(0x1c5)](_0x154a03){const _0x4dc791=_0x31ba10;return _0x4dc791(0x1c9)==_0x154a03[_0x4dc791(0x1c1)]&&0x1==_0x154a03[_0x4dc791(0x1d2)][_0x4dc791(0x1c7)]&&_0x154a03[_0x4dc791(0x1d2)][0x0][_0x4dc791(0x1c4)]&&!_0x154a03[_0x4dc791(0x1d9)]&&0x1==Array[_0x4dc791(0x1bd)](_0x154a03[_0x4dc791(0x1d2)][0x0][_0x4dc791(0x1c4)])[_0x4dc791(0x1c7)];}[_0x31ba10(0x1cc)](_0x230d43,_0x15b54d){const _0x45fd7c=_0x31ba10,_0xcf8aa2=Object[_0x45fd7c(0x1d7)](_0x230d43[_0x45fd7c(0x1d8)]||{}),_0x4e30c0=Object[_0x45fd7c(0x1d7)](_0x15b54d[_0x45fd7c(0x1d8)]||{});return _0xcf8aa2[_0x45fd7c(0x1c7)]===_0x4e30c0[_0x45fd7c(0x1c7)]&&_0xcf8aa2[_0x45fd7c(0x1c3)](_0x2bcff0=>_0x15b54d[_0x45fd7c(0x1d8)][_0x2bcff0]&&_0x15b54d[_0x45fd7c(0x1d8)][_0x2bcff0]===_0x230d43[_0x45fd7c(0x1d8)][_0x2bcff0]);}}
23
+ function _0x127d(_0x5c122a,_0x13df73){const _0x4e9159=_0x4e91();return _0x127d=function(_0x127d6c,_0x1dc942){_0x127d6c=_0x127d6c-0xb0;let _0x975701=_0x4e9159[_0x127d6c];return _0x975701;},_0x127d(_0x5c122a,_0x13df73);}const _0x16decc=_0x127d;function _0x4e91(){const _0x362155=['compress','1402lNHwQA','substr','_compareOperations','5964nwgcik','29205GlCtpw','iterator','_combineNext','attributes','9Fzxycq','decompress','next','_getCompressorByName','17849XVbXja','length','buffers','_compareAttributes','from','InsertOperation','__className','_splitCurrent','value','data','position','1636261MpsriO','2921544oyNOnW','_compressSingleOperation','536natDKE','245owaqHw','wasUndone','every','_context','60204VypiEB','nodes','keys','351753OJJmOd','10sSHIKO','_decompressSingleOperation','_checkOperation','1030ZZKfKS'];_0x4e91=function(){return _0x362155;};return _0x4e91();}(function(_0x5ab156,_0x1ac5aa){const _0x2c5104=_0x127d,_0x39843f=_0x5ab156();while(!![]){try{const _0x3ef7c1=parseInt(_0x2c5104(0xba))/0x1*(parseInt(_0x2c5104(0xb8))/0x2)+-parseInt(_0x2c5104(0xb4))/0x3+-parseInt(_0x2c5104(0xd4))/0x4*(parseInt(_0x2c5104(0xbe))/0x5)+-parseInt(_0x2c5104(0xb1))/0x6*(-parseInt(_0x2c5104(0xd5))/0x7)+parseInt(_0x2c5104(0xd2))/0x8*(-parseInt(_0x2c5104(0xc2))/0x9)+parseInt(_0x2c5104(0xb5))/0xa*(parseInt(_0x2c5104(0xd1))/0xb)+parseInt(_0x2c5104(0xbd))/0xc*(parseInt(_0x2c5104(0xc6))/0xd);if(_0x3ef7c1===_0x1ac5aa)break;else _0x39843f['push'](_0x39843f['shift']());}catch(_0x42baab){_0x39843f['push'](_0x39843f['shift']());}}}(_0x4e91,0x9c0ee));import _0x52b8d9 from'./actioncompressor.js';import{arePositionsEqual as _0x26807d,getPositionShiftedBy as _0x25e9be}from'../utils.js';import{cloneDeep as _0x51ab69}from'lodash-es';export default class m extends _0x52b8d9{[_0x16decc(0xc0)](_0x4c842c,_0x91fd3b){const _0x373a28=_0x16decc;return _0x91fd3b[_0x373a28(0xb2)][0x0][_0x373a28(0xcf)]+=_0x4c842c[_0x373a28(0xb2)][0x0][_0x373a28(0xcf)],_0x91fd3b;}[_0x16decc(0xcd)](_0x461ad4){const _0x43a4eb=_0x16decc,_0x3ea1d1=_0x51ab69(_0x461ad4),_0x9964b3=_0x3ea1d1[_0x43a4eb(0xb2)][0x0],_0x791a6=_0x461ad4[_0x43a4eb(0xb2)][0x0],_0x5bf685=_0x791a6[_0x43a4eb(0xcf)][Symbol[_0x43a4eb(0xbf)]]()[_0x43a4eb(0xc4)]()[_0x43a4eb(0xce)],_0x8a9f5=_0x5bf685[_0x43a4eb(0xc7)];return _0x9964b3[_0x43a4eb(0xcf)]=_0x5bf685,_0x791a6[_0x43a4eb(0xcf)]=_0x791a6[_0x43a4eb(0xcf)][_0x43a4eb(0xbb)](_0x8a9f5),_0x461ad4[_0x43a4eb(0xd0)]=_0x25e9be(_0x461ad4[_0x43a4eb(0xd0)],_0x8a9f5),_0x3ea1d1;}[_0x16decc(0xbc)](_0x1601cf,_0x294925){const _0x2a4c84=_0x16decc;if(this[_0x2a4c84(0xb7)](_0x1601cf)&&this[_0x2a4c84(0xb7)](_0x294925)){const _0x23220c=_0x1601cf[_0x2a4c84(0xb2)][0x0][_0x2a4c84(0xcf)][_0x2a4c84(0xc7)],_0x46b0a5=_0x26807d(_0x25e9be(_0x1601cf[_0x2a4c84(0xd0)],_0x23220c),_0x294925[_0x2a4c84(0xd0)]),_0x194370=_0x1601cf[_0x2a4c84(0xb2)][0x0],_0x436e36=_0x294925[_0x2a4c84(0xb2)][0x0];return _0x46b0a5&&this[_0x2a4c84(0xc9)](_0x194370,_0x436e36);}return!0x1;}[_0x16decc(0xd3)](_0x8f7c1d){const _0x4ace1b=_0x16decc,_0x434ea0={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x4ace1b(0xb0)][_0x4ace1b(0xc5)](_0x4ace1b(0xcb))[_0x4ace1b(0xb9)](_0x434ea0,[_0x8f7c1d]),_0x434ea0[_0x4ace1b(0xc8)][0x0];}[_0x16decc(0xb6)](_0x488a68){const _0x5c7726=_0x16decc,_0x3e9b82=[];return this[_0x5c7726(0xb0)][_0x5c7726(0xc5)](_0x5c7726(0xcb))[_0x5c7726(0xc3)](_0x3e9b82,_0x488a68),_0x3e9b82[0x0];}[_0x16decc(0xb7)](_0x303b98){const _0x2cbe57=_0x16decc;return _0x2cbe57(0xcb)==_0x303b98[_0x2cbe57(0xcc)]&&0x1==_0x303b98[_0x2cbe57(0xb2)][_0x2cbe57(0xc7)]&&_0x303b98[_0x2cbe57(0xb2)][0x0][_0x2cbe57(0xcf)]&&!_0x303b98[_0x2cbe57(0xd6)]&&0x1==Array[_0x2cbe57(0xca)](_0x303b98[_0x2cbe57(0xb2)][0x0][_0x2cbe57(0xcf)])[_0x2cbe57(0xc7)];}[_0x16decc(0xc9)](_0xc85b02,_0x4dd00a){const _0x477c51=_0x16decc,_0x8ef78b=Object[_0x477c51(0xb3)](_0xc85b02[_0x477c51(0xc1)]||{}),_0x3725ea=Object[_0x477c51(0xb3)](_0x4dd00a[_0x477c51(0xc1)]||{});return _0x8ef78b[_0x477c51(0xc7)]===_0x3725ea[_0x477c51(0xc7)]&&_0x8ef78b[_0x477c51(0xd7)](_0x5adbb6=>_0x4dd00a[_0x477c51(0xc1)][_0x5adbb6]&&_0x4dd00a[_0x477c51(0xc1)][_0x5adbb6]===_0xc85b02[_0x477c51(0xc1)][_0x5adbb6]);}}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
5
  import ActionCompressor from './actioncompressor.js';
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * Copyright (c) 2003-2025, 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 _0x4e3723=_0x1876;function _0x1876(_0x1a4136,_0x4458af){const _0x1abd47=_0x1abd();return _0x1876=function(_0x187632,_0x57dfa4){_0x187632=_0x187632-0xc1;let _0x465786=_0x1abd47[_0x187632];return _0x465786;},_0x1876(_0x1a4136,_0x4458af);}function _0x1abd(){const _0x55dc5c=['_id','_decompressSingleOperation','startsWith','4GPsJZf','_compareOperations','2224719bfHxRG','55UhYmtw','1099647JEXGaH','toNone','13OgkNfE','user:','2601492MVtQVm','buffers','types','_context','shift','compress','push','4947747JbqxHv','decompress','__className','oldRange','_compressSingleOperation','487360otaPVg','16MBNNov','start','split','newRange','_getCompressorByName','stickiness','3240130TZWRbk','user:position:','1034pUxjNl','6muBteX','end','977eyBxfH','MarkerOperation','name'];_0x1abd=function(){return _0x55dc5c;};return _0x1abd();}(function(_0x5b023d,_0x2f4b62){const _0x42ceb9=_0x1876,_0x554f88=_0x5b023d();while(!![]){try{const _0x3cfa96=parseInt(_0x42ceb9(0xe1))/0x1*(-parseInt(_0x42ceb9(0xde))/0x2)+-parseInt(_0x42ceb9(0xc3))/0x3*(parseInt(_0x42ceb9(0xc1))/0x4)+parseInt(_0x42ceb9(0xdc))/0x5*(parseInt(_0x42ceb9(0xdf))/0x6)+parseInt(_0x42ceb9(0xd0))/0x7+-parseInt(_0x42ceb9(0xd6))/0x8*(-parseInt(_0x42ceb9(0xc5))/0x9)+-parseInt(_0x42ceb9(0xd5))/0xa*(-parseInt(_0x42ceb9(0xc4))/0xb)+parseInt(_0x42ceb9(0xc9))/0xc*(-parseInt(_0x42ceb9(0xc7))/0xd);if(_0x3cfa96===_0x2f4b62)break;else _0x554f88['push'](_0x554f88['shift']());}catch(_0x51d30c){_0x554f88['push'](_0x554f88['shift']());}}}(_0x1abd,0x5ca1c));import _0x526f4f from'./actioncompressor.js';import{arePositionsEqual as _0x50c17c}from'../utils.js';import{cloneDeep as _0x1e6c6f}from'lodash-es';export default class f extends _0x526f4f{[_0x4e3723(0xce)](_0x43db7,_0x94500){const _0x4661db=_0x4e3723;if(!this[_0x4661db(0xc2)](_0x94500[0x0],_0x94500[0x1]))return!0x1;const _0x6b6946=_0x94500[_0x4661db(0xcd)]();return _0x6b6946[_0x4661db(0xd3)]=null,_0x6b6946[_0x4661db(0xd9)]&&_0x50c17c(_0x6b6946[_0x4661db(0xd9)][_0x4661db(0xd7)],_0x6b6946[_0x4661db(0xd9)][_0x4661db(0xe0)])&&(_0x6b6946[_0x4661db(0xd9)][_0x4661db(0xe0)]=null),_0x94500[_0x4661db(0xcd)](),_0x43db7[_0x4661db(0xcb)][_0x4661db(0xcf)](this[_0x4661db(0xe4)]),_0x43db7[_0x4661db(0xcb)][_0x4661db(0xcf)](0x0),_0x43db7[_0x4661db(0xca)][_0x4661db(0xcf)](this[_0x4661db(0xd4)](_0x6b6946)),!0x0;}[_0x4e3723(0xd1)](_0x3aedba,_0x42004d){const _0x20b776=_0x4e3723,_0x595d4d=this[_0x20b776(0xe5)](_0x42004d);_0x595d4d[_0x20b776(0xd9)]&&!_0x595d4d[_0x20b776(0xd9)][_0x20b776(0xe0)]&&(_0x595d4d[_0x20b776(0xd9)][_0x20b776(0xe0)]=_0x1e6c6f(_0x595d4d[_0x20b776(0xd9)][_0x20b776(0xd7)]));const _0x259e40=_0x1e6c6f(_0x595d4d);_0x259e40[_0x20b776(0xd9)]&&(_0x259e40[_0x20b776(0xd9)][_0x20b776(0xd7)][_0x20b776(0xdb)]=_0x20b776(0xc6),_0x259e40[_0x20b776(0xd9)][_0x20b776(0xe0)]=_0x1e6c6f(_0x259e40[_0x20b776(0xd9)][_0x20b776(0xd7)])),_0x259e40[_0x20b776(0xe3)]=_0x20b776(0xdd)+_0x259e40[_0x20b776(0xe3)][_0x20b776(0xd8)](':')[0x2],_0x42004d[_0x20b776(0xcb)][_0x20b776(0xcd)](),_0x3aedba[_0x20b776(0xcf)](_0x595d4d),_0x3aedba[_0x20b776(0xcf)](_0x259e40);}[_0x4e3723(0xd4)](_0x2855bd){const _0x107a93=_0x4e3723,_0x42e701={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x107a93(0xcc)][_0x107a93(0xda)](_0x107a93(0xe2))[_0x107a93(0xce)](_0x42e701,[_0x2855bd]),_0x42e701[_0x107a93(0xca)][0x0];}[_0x4e3723(0xe5)](_0x1d788e){const _0x2662dd=_0x4e3723,_0x52fb65=[];return this[_0x2662dd(0xcc)][_0x2662dd(0xda)](_0x2662dd(0xe2))[_0x2662dd(0xd1)](_0x52fb65,_0x1d788e),_0x52fb65[0x0];}[_0x4e3723(0xc2)](_0x4d0503,_0x52b823){const _0x58d294=_0x4e3723;return!(!_0x4d0503||!_0x52b823)&&(_0x58d294(0xe2)==_0x4d0503[_0x58d294(0xd2)]&&_0x58d294(0xe2)==_0x52b823[_0x58d294(0xd2)]&&!(!_0x4d0503[_0x58d294(0xe3)][_0x58d294(0xe6)](_0x58d294(0xc8))||!_0x52b823[_0x58d294(0xe3)][_0x58d294(0xe6)](_0x58d294(0xc8))||_0x4d0503[_0x58d294(0xe3)]==_0x52b823[_0x58d294(0xe3)]));}}
23
+ const _0x22b694=_0x56d4;(function(_0x5ad5c7,_0x59d3b0){const _0x3a2d25=_0x56d4,_0x20be33=_0x5ad5c7();while(!![]){try{const _0x1b1727=parseInt(_0x3a2d25(0x10e))/0x1*(-parseInt(_0x3a2d25(0x117))/0x2)+-parseInt(_0x3a2d25(0x10f))/0x3*(parseInt(_0x3a2d25(0x10a))/0x4)+parseInt(_0x3a2d25(0x11a))/0x5+parseInt(_0x3a2d25(0x108))/0x6*(-parseInt(_0x3a2d25(0x100))/0x7)+parseInt(_0x3a2d25(0x101))/0x8*(parseInt(_0x3a2d25(0x102))/0x9)+-parseInt(_0x3a2d25(0xfe))/0xa*(parseInt(_0x3a2d25(0x104))/0xb)+-parseInt(_0x3a2d25(0x10b))/0xc*(-parseInt(_0x3a2d25(0x109))/0xd);if(_0x1b1727===_0x59d3b0)break;else _0x20be33['push'](_0x20be33['shift']());}catch(_0x483c5a){_0x20be33['push'](_0x20be33['shift']());}}}(_0x55be,0xbb357));function _0x56d4(_0x5c4dbf,_0x3306d3){const _0x55be16=_0x55be();return _0x56d4=function(_0x56d432,_0x551248){_0x56d432=_0x56d432-0xf7;let _0x4e7d36=_0x55be16[_0x56d432];return _0x4e7d36;},_0x56d4(_0x5c4dbf,_0x3306d3);}function _0x55be(){const _0x5e6271=['oldRange','30UfLpTk','push','21WnyiAc','6431704lQcoIA','9LFBRRf','name','2004915yFTlTC','start','stickiness','_compareOperations','2868942Gdngom','31473XlIgig','280uVRXGq','15684ZrHjXU','_getCompressorByName','compress','1BMqpnF','16143jCFHKf','startsWith','split','end','_decompressSingleOperation','_compressSingleOperation','buffers','MarkerOperation','2441156IAZmfD','__className','_context','1885555GXPzSF','toNone','_id','newRange','user:','decompress','types','shift','user:position:'];_0x55be=function(){return _0x5e6271;};return _0x55be();}import _0x1562e0 from'./actioncompressor.js';import{arePositionsEqual as _0x1e0c0b}from'../utils.js';import{cloneDeep as _0x399d3b}from'lodash-es';export default class f extends _0x1562e0{[_0x22b694(0x10d)](_0x3df3ad,_0x517af0){const _0x461244=_0x22b694;if(!this[_0x461244(0x107)](_0x517af0[0x0],_0x517af0[0x1]))return!0x1;const _0x37b4d1=_0x517af0[_0x461244(0xfb)]();return _0x37b4d1[_0x461244(0xfd)]=null,_0x37b4d1[_0x461244(0xf7)]&&_0x1e0c0b(_0x37b4d1[_0x461244(0xf7)][_0x461244(0x105)],_0x37b4d1[_0x461244(0xf7)][_0x461244(0x112)])&&(_0x37b4d1[_0x461244(0xf7)][_0x461244(0x112)]=null),_0x517af0[_0x461244(0xfb)](),_0x3df3ad[_0x461244(0xfa)][_0x461244(0xff)](this[_0x461244(0x11c)]),_0x3df3ad[_0x461244(0xfa)][_0x461244(0xff)](0x0),_0x3df3ad[_0x461244(0x115)][_0x461244(0xff)](this[_0x461244(0x114)](_0x37b4d1)),!0x0;}[_0x22b694(0xf9)](_0x2460a1,_0x2e30ac){const _0x2ff0ec=_0x22b694,_0x45434e=this[_0x2ff0ec(0x113)](_0x2e30ac);_0x45434e[_0x2ff0ec(0xf7)]&&!_0x45434e[_0x2ff0ec(0xf7)][_0x2ff0ec(0x112)]&&(_0x45434e[_0x2ff0ec(0xf7)][_0x2ff0ec(0x112)]=_0x399d3b(_0x45434e[_0x2ff0ec(0xf7)][_0x2ff0ec(0x105)]));const _0x5dad76=_0x399d3b(_0x45434e);_0x5dad76[_0x2ff0ec(0xf7)]&&(_0x5dad76[_0x2ff0ec(0xf7)][_0x2ff0ec(0x105)][_0x2ff0ec(0x106)]=_0x2ff0ec(0x11b),_0x5dad76[_0x2ff0ec(0xf7)][_0x2ff0ec(0x112)]=_0x399d3b(_0x5dad76[_0x2ff0ec(0xf7)][_0x2ff0ec(0x105)])),_0x5dad76[_0x2ff0ec(0x103)]=_0x2ff0ec(0xfc)+_0x5dad76[_0x2ff0ec(0x103)][_0x2ff0ec(0x111)](':')[0x2],_0x2e30ac[_0x2ff0ec(0xfa)][_0x2ff0ec(0xfb)](),_0x2460a1[_0x2ff0ec(0xff)](_0x45434e),_0x2460a1[_0x2ff0ec(0xff)](_0x5dad76);}[_0x22b694(0x114)](_0x7753cf){const _0x3af6b3=_0x22b694,_0x50383a={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x3af6b3(0x119)][_0x3af6b3(0x10c)](_0x3af6b3(0x116))[_0x3af6b3(0x10d)](_0x50383a,[_0x7753cf]),_0x50383a[_0x3af6b3(0x115)][0x0];}[_0x22b694(0x113)](_0x56c5e5){const _0x570531=_0x22b694,_0x526e14=[];return this[_0x570531(0x119)][_0x570531(0x10c)](_0x570531(0x116))[_0x570531(0xf9)](_0x526e14,_0x56c5e5),_0x526e14[0x0];}[_0x22b694(0x107)](_0x58e1b6,_0x2d2fba){const _0x257b95=_0x22b694;return!(!_0x58e1b6||!_0x2d2fba)&&(_0x257b95(0x116)==_0x58e1b6[_0x257b95(0x118)]&&_0x257b95(0x116)==_0x2d2fba[_0x257b95(0x118)]&&!(!_0x58e1b6[_0x257b95(0x103)][_0x257b95(0x110)](_0x257b95(0xf8))||!_0x2d2fba[_0x257b95(0x103)][_0x257b95(0x110)](_0x257b95(0xf8))||_0x58e1b6[_0x257b95(0x103)]==_0x2d2fba[_0x257b95(0x103)]));}}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
5
  /**
package/src/compressor.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * Copyright (c) 2003-2025, 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 _0x28af9d=_0x578b;(function(_0x531aa9,_0x390e44){const _0xef4948=_0x578b,_0x13adf6=_0x531aa9();while(!![]){try{const _0x53656f=-parseInt(_0xef4948(0x140))/0x1*(parseInt(_0xef4948(0x139))/0x2)+-parseInt(_0xef4948(0x155))/0x3+-parseInt(_0xef4948(0x145))/0x4*(parseInt(_0xef4948(0x135))/0x5)+-parseInt(_0xef4948(0x154))/0x6*(-parseInt(_0xef4948(0x147))/0x7)+-parseInt(_0xef4948(0x14c))/0x8*(parseInt(_0xef4948(0x129))/0x9)+-parseInt(_0xef4948(0x143))/0xa*(parseInt(_0xef4948(0x144))/0xb)+-parseInt(_0xef4948(0x13a))/0xc*(-parseInt(_0xef4948(0x12c))/0xd);if(_0x53656f===_0x390e44)break;else _0x13adf6['push'](_0x13adf6['shift']());}catch(_0x2972ea){_0x13adf6['push'](_0x13adf6['shift']());}}}(_0x1c41,0x20c55));function _0x1c41(){const _0x190603=['1440skuCbV','RootOperation','length','NoOperation','baseVersion','_compressorById','_registerActionCompressor','forEach','1242JckXTX','335931QyqdwG','decompress','getDescriptor','RenameOperation','AttributeOperation','3672wgWBSY','comment','UserSelectionAction','91KpKzaJ','no-operations-provided','set','SuggestionMarkerOperation','suggestion','_compressorByName','__className','InsertOperation','_registerCompressor','5RUNuEk','_getCompressorByName','MergeOperation','DeletingAction','37798gNYWxJ','1644168yJjENg','get','CommentMarkerOperation','_protobufFactory','TypingAction','types','12ClbBvU','MoveOperation','compress','351070CtBcjO','77nKwSJS','757084BvKvMl','SplitOperation','756LiNCdb','_registerOperationCompressor','RootAttributeOperation','MarkerOperation','ForwardDeletingAction'];_0x1c41=function(){return _0x190603;};return _0x1c41();}import{CKEditorError as _0x4b0473}from'ckeditor5/src/utils.js';import _0x44d828 from'./protobuffactory.js';import _0x38b88b from'./operationcompressor/operationcompressor.js';import _0x4d21cb from'./operationcompressor/attributeoperationcompressor.js';import _0x2f3671 from'./operationcompressor/insertoperationcompressor.js';import _0xba9c6a from'./operationcompressor/markeroperationcompressor.js';import _0x4ef2d5 from'./operationcompressor/nooperationcompressor.js';import _0x36ddd6 from'./operationcompressor/annotationmarkeroperationcompressor.js';function _0x578b(_0x4f977d,_0x5052e7){const _0x1c412c=_0x1c41();return _0x578b=function(_0x578b0d,_0x4b22f1){_0x578b0d=_0x578b0d-0x129;let _0x5e6cc1=_0x1c412c[_0x578b0d];return _0x5e6cc1;},_0x578b(_0x4f977d,_0x5052e7);}import _0x2049e5 from'./actioncompressor/typingactioncompressor.js';import _0x26824d from'./actioncompressor/deletingactioncompressor.js';import _0x4a8d0f from'./actioncompressor/forwarddeletingactioncompressor.js';import _0x4411fc from'./actioncompressor/userselectionactioncompressor.js';export default class g{constructor(){const _0x4ba44e=_0x578b;this[_0x4ba44e(0x151)]=new Map(),this[_0x4ba44e(0x131)]=new Map(),this[_0x4ba44e(0x13d)]=new _0x44d828();const _0x41f0e6=this[_0x4ba44e(0x13d)][_0x4ba44e(0x157)](_0x4ba44e(0x14a));this[_0x4ba44e(0x134)](0x1,_0x4ba44e(0x14f),new _0x4ef2d5(0x1,_0x4ba44e(0x14f),void 0x0)),this[_0x4ba44e(0x148)](0xa,_0x4ba44e(0x159),_0x4d21cb),this[_0x4ba44e(0x148)](0xb,_0x4ba44e(0x133),_0x2f3671),this[_0x4ba44e(0x148)](0xc,_0x4ba44e(0x14a),_0xba9c6a),this[_0x4ba44e(0x148)](0xd,_0x4ba44e(0x137),_0x38b88b),this[_0x4ba44e(0x148)](0xe,_0x4ba44e(0x141),_0x38b88b),this[_0x4ba44e(0x148)](0xf,_0x4ba44e(0x158),_0x38b88b),this[_0x4ba44e(0x148)](0x10,_0x4ba44e(0x149),_0x4d21cb),this[_0x4ba44e(0x148)](0x11,_0x4ba44e(0x146),_0x38b88b),this[_0x4ba44e(0x134)](0x12,_0x4ba44e(0x13c),new _0x36ddd6(0x12,_0x4ba44e(0x14a),_0x41f0e6,_0x4ba44e(0x12a))),this[_0x4ba44e(0x134)](0x13,_0x4ba44e(0x12f),new _0x36ddd6(0x13,_0x4ba44e(0x14a),_0x41f0e6,_0x4ba44e(0x130))),this[_0x4ba44e(0x148)](0x14,_0x4ba44e(0x14d),_0x38b88b),this[_0x4ba44e(0x152)](0x64,_0x4ba44e(0x13e),_0x2049e5),this[_0x4ba44e(0x152)](0x65,_0x4ba44e(0x138),_0x26824d),this[_0x4ba44e(0x152)](0x66,_0x4ba44e(0x14b),_0x4a8d0f),this[_0x4ba44e(0x152)](0x67,_0x4ba44e(0x12b),_0x4411fc);}[_0x28af9d(0x142)](_0x1e4eba){const _0x3f7760=_0x28af9d;if(!_0x1e4eba||!_0x1e4eba[0x0])throw new _0x4b0473(_0x3f7760(0x12d),this);const _0x5d1164={'types':[],'buffers':[],'baseVersion':_0x1e4eba[0x0][_0x3f7760(0x150)]};for(;_0x1e4eba[_0x3f7760(0x14e)];)this[_0x3f7760(0x136)](_0x3f7760(0x12b))[_0x3f7760(0x142)](_0x5d1164,_0x1e4eba)||this[_0x3f7760(0x136)](_0x3f7760(0x13e))[_0x3f7760(0x142)](_0x5d1164,_0x1e4eba)||this[_0x3f7760(0x136)](_0x3f7760(0x138))[_0x3f7760(0x142)](_0x5d1164,_0x1e4eba)||this[_0x3f7760(0x136)](_0x3f7760(0x14b))[_0x3f7760(0x142)](_0x5d1164,_0x1e4eba)||this[_0x3f7760(0x136)](_0x3f7760(0x13c))[_0x3f7760(0x142)](_0x5d1164,_0x1e4eba)||this[_0x3f7760(0x136)](_0x3f7760(0x12f))[_0x3f7760(0x142)](_0x5d1164,_0x1e4eba)||this[_0x3f7760(0x136)](_0x1e4eba[0x0][_0x3f7760(0x132)])[_0x3f7760(0x142)](_0x5d1164,_0x1e4eba);return _0x5d1164;}[_0x28af9d(0x156)](_0x430fdc){const _0xd61fde=_0x28af9d,_0x187f35=[];for(;_0x430fdc[_0xd61fde(0x13f)][_0xd61fde(0x14e)];){this[_0xd61fde(0x151)][_0xd61fde(0x13b)](_0x430fdc[_0xd61fde(0x13f)][0x0])[_0xd61fde(0x156)](_0x187f35,_0x430fdc);}return _0x187f35[_0xd61fde(0x153)]((_0x3f1cdf,_0x578bd5)=>_0x3f1cdf[_0xd61fde(0x150)]=_0x430fdc[_0xd61fde(0x150)]+_0x578bd5),_0x187f35;}[_0x28af9d(0x136)](_0x5866b7){const _0x3b9b3a=_0x28af9d;return this[_0x3b9b3a(0x131)][_0x3b9b3a(0x13b)](_0x5866b7);}[_0x28af9d(0x148)](_0x61ebcf,_0x550d4b,_0xacbc3a){const _0x42252a=_0x28af9d,_0x2176a2=new _0xacbc3a(_0x61ebcf,_0x550d4b,this[_0x42252a(0x13d)][_0x42252a(0x157)](_0x550d4b));this[_0x42252a(0x134)](_0x61ebcf,_0x550d4b,_0x2176a2);}[_0x28af9d(0x152)](_0x22a9cf,_0x46f033,_0x3a4c7b){const _0x53d78e=_0x28af9d,_0x4feee1=new _0x3a4c7b(_0x22a9cf,this);this[_0x53d78e(0x134)](_0x22a9cf,_0x46f033,_0x4feee1);}[_0x28af9d(0x134)](_0x88fccc,_0x42a54c,_0x3d5a15){const _0xa465b6=_0x28af9d;this[_0xa465b6(0x151)][_0xa465b6(0x12e)](_0x88fccc,_0x3d5a15),this[_0xa465b6(0x131)][_0xa465b6(0x12e)](_0x42a54c,_0x3d5a15);}}
23
+ const _0x512992=_0x16a7;(function(_0x54954b,_0x5e64a9){const _0x5a9965=_0x16a7,_0x3eedb3=_0x54954b();while(!![]){try{const _0x11b747=-parseInt(_0x5a9965(0xdd))/0x1*(-parseInt(_0x5a9965(0xff))/0x2)+-parseInt(_0x5a9965(0xda))/0x3*(-parseInt(_0x5a9965(0xf3))/0x4)+-parseInt(_0x5a9965(0xee))/0x5*(parseInt(_0x5a9965(0xea))/0x6)+-parseInt(_0x5a9965(0xfa))/0x7*(parseInt(_0x5a9965(0x105))/0x8)+-parseInt(_0x5a9965(0xe7))/0x9*(-parseInt(_0x5a9965(0x102))/0xa)+parseInt(_0x5a9965(0xe3))/0xb+-parseInt(_0x5a9965(0xf1))/0xc*(-parseInt(_0x5a9965(0xec))/0xd);if(_0x11b747===_0x5e64a9)break;else _0x3eedb3['push'](_0x3eedb3['shift']());}catch(_0x4717b1){_0x3eedb3['push'](_0x3eedb3['shift']());}}}(_0x19c5,0xa6eae));import{CKEditorError as _0x4c7aaf}from'ckeditor5/src/utils.js';import _0x39dc69 from'./protobuffactory.js';function _0x16a7(_0x1f43e1,_0x36995a){const _0x19c5e6=_0x19c5();return _0x16a7=function(_0x16a78e,_0x59e901){_0x16a78e=_0x16a78e-0xd6;let _0xc9abc2=_0x19c5e6[_0x16a78e];return _0xc9abc2;},_0x16a7(_0x1f43e1,_0x36995a);}import _0x1b00c4 from'./operationcompressor/operationcompressor.js';import _0x3c801a from'./operationcompressor/attributeoperationcompressor.js';import _0x5d2db7 from'./operationcompressor/insertoperationcompressor.js';function _0x19c5(){const _0x3d699a=['9gTVCZP','decompress','RootAttributeOperation','5iPFVno','_protobufFactory','AttributeOperation','MarkerOperation','getDescriptor','DeletingAction','4258980bowUVr','MoveOperation','_registerActionCompressor','__className','36jcXnoI','no-operations-provided','set','1896954zyrRMg','length','187707CMrwNg','SuggestionMarkerOperation','5mFJpUu','RootOperation','TypingAction','660YQcazQ','InsertOperation','755028rplwif','UserSelectionAction','baseVersion','_getCompressorByName','NoOperation','MergeOperation','_registerOperationCompressor','28nYyaAX','_compressorByName','_compressorById','forEach','types','156946CvYBUw','compress','ForwardDeletingAction','208930wIFWKZ','get','CommentMarkerOperation','2447360vBSeHV','RenameOperation','suggestion','_registerCompressor','comment','SplitOperation'];_0x19c5=function(){return _0x3d699a;};return _0x19c5();}import _0x463ec5 from'./operationcompressor/markeroperationcompressor.js';import _0x84d20e from'./operationcompressor/nooperationcompressor.js';import _0x57abf0 from'./operationcompressor/annotationmarkeroperationcompressor.js';import _0x8de843 from'./actioncompressor/typingactioncompressor.js';import _0xe2bf9a from'./actioncompressor/deletingactioncompressor.js';import _0x5dade2 from'./actioncompressor/forwarddeletingactioncompressor.js';import _0x34f0c7 from'./actioncompressor/userselectionactioncompressor.js';export default class g{constructor(){const _0x112207=_0x16a7;this[_0x112207(0xfc)]=new Map(),this[_0x112207(0xfb)]=new Map(),this[_0x112207(0xde)]=new _0x39dc69();const _0x19afcc=this[_0x112207(0xde)][_0x112207(0xe1)](_0x112207(0xe0));this[_0x112207(0xd7)](0x1,_0x112207(0xf7),new _0x84d20e(0x1,_0x112207(0xf7),void 0x0)),this[_0x112207(0xf9)](0xa,_0x112207(0xdf),_0x3c801a),this[_0x112207(0xf9)](0xb,_0x112207(0xf2),_0x5d2db7),this[_0x112207(0xf9)](0xc,_0x112207(0xe0),_0x463ec5),this[_0x112207(0xf9)](0xd,_0x112207(0xf8),_0x1b00c4),this[_0x112207(0xf9)](0xe,_0x112207(0xe4),_0x1b00c4),this[_0x112207(0xf9)](0xf,_0x112207(0x106),_0x1b00c4),this[_0x112207(0xf9)](0x10,_0x112207(0xdc),_0x3c801a),this[_0x112207(0xf9)](0x11,_0x112207(0xd9),_0x1b00c4),this[_0x112207(0xd7)](0x12,_0x112207(0x104),new _0x57abf0(0x12,_0x112207(0xe0),_0x19afcc,_0x112207(0xd8))),this[_0x112207(0xd7)](0x13,_0x112207(0xed),new _0x57abf0(0x13,_0x112207(0xe0),_0x19afcc,_0x112207(0xd6))),this[_0x112207(0xf9)](0x14,_0x112207(0xef),_0x1b00c4),this[_0x112207(0xe5)](0x64,_0x112207(0xf0),_0x8de843),this[_0x112207(0xe5)](0x65,_0x112207(0xe2),_0xe2bf9a),this[_0x112207(0xe5)](0x66,_0x112207(0x101),_0x5dade2),this[_0x112207(0xe5)](0x67,_0x112207(0xf4),_0x34f0c7);}[_0x512992(0x100)](_0x4bf0ed){const _0x199280=_0x512992;if(!_0x4bf0ed||!_0x4bf0ed[0x0])throw new _0x4c7aaf(_0x199280(0xe8),this);const _0x17459f={'types':[],'buffers':[],'baseVersion':_0x4bf0ed[0x0][_0x199280(0xf5)]};for(;_0x4bf0ed[_0x199280(0xeb)];)this[_0x199280(0xf6)](_0x199280(0xf4))[_0x199280(0x100)](_0x17459f,_0x4bf0ed)||this[_0x199280(0xf6)](_0x199280(0xf0))[_0x199280(0x100)](_0x17459f,_0x4bf0ed)||this[_0x199280(0xf6)](_0x199280(0xe2))[_0x199280(0x100)](_0x17459f,_0x4bf0ed)||this[_0x199280(0xf6)](_0x199280(0x101))[_0x199280(0x100)](_0x17459f,_0x4bf0ed)||this[_0x199280(0xf6)](_0x199280(0x104))[_0x199280(0x100)](_0x17459f,_0x4bf0ed)||this[_0x199280(0xf6)](_0x199280(0xed))[_0x199280(0x100)](_0x17459f,_0x4bf0ed)||this[_0x199280(0xf6)](_0x4bf0ed[0x0][_0x199280(0xe6)])[_0x199280(0x100)](_0x17459f,_0x4bf0ed);return _0x17459f;}[_0x512992(0xdb)](_0x4ff764){const _0x45c55d=_0x512992,_0x115a68=[];for(;_0x4ff764[_0x45c55d(0xfe)][_0x45c55d(0xeb)];){this[_0x45c55d(0xfc)][_0x45c55d(0x103)](_0x4ff764[_0x45c55d(0xfe)][0x0])[_0x45c55d(0xdb)](_0x115a68,_0x4ff764);}return _0x115a68[_0x45c55d(0xfd)]((_0x3857f6,_0x3a0dd1)=>_0x3857f6[_0x45c55d(0xf5)]=_0x4ff764[_0x45c55d(0xf5)]+_0x3a0dd1),_0x115a68;}[_0x512992(0xf6)](_0x544e34){const _0x28bcca=_0x512992;return this[_0x28bcca(0xfb)][_0x28bcca(0x103)](_0x544e34);}[_0x512992(0xf9)](_0x59b316,_0x4aff08,_0x43be82){const _0x34bd75=_0x512992,_0x2c827e=new _0x43be82(_0x59b316,_0x4aff08,this[_0x34bd75(0xde)][_0x34bd75(0xe1)](_0x4aff08));this[_0x34bd75(0xd7)](_0x59b316,_0x4aff08,_0x2c827e);}[_0x512992(0xe5)](_0x206d28,_0x158596,_0x54f2b3){const _0xa7478e=_0x512992,_0x53cfce=new _0x54f2b3(_0x206d28,this);this[_0xa7478e(0xd7)](_0x206d28,_0x158596,_0x53cfce);}[_0x512992(0xd7)](_0x3643cc,_0x79e69e,_0x57b404){const _0x44809e=_0x512992;this[_0x44809e(0xfc)][_0x44809e(0xe9)](_0x3643cc,_0x57b404),this[_0x44809e(0xfb)][_0x44809e(0xe9)](_0x79e69e,_0x57b404);}}
package/src/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
5
  export { default as Compressor, type CompressedOperationsData } from './compressor.js';
package/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*
2
- * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
2
+ * Copyright (c) 2003-2025, 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
- function _0x5b09(_0x88882f,_0x1b1e54){var _0x2670f3=_0x2670();return _0x5b09=function(_0x5b0936,_0x4584ca){_0x5b0936=_0x5b0936-0x16e;var _0x523e18=_0x2670f3[_0x5b0936];return _0x523e18;},_0x5b09(_0x88882f,_0x1b1e54);}(function(_0x3499eb,_0x28d921){var _0x2591b8=_0x5b09,_0x5248be=_0x3499eb();while(!![]){try{var _0x2ae5e2=-parseInt(_0x2591b8(0x172))/0x1+parseInt(_0x2591b8(0x16e))/0x2*(-parseInt(_0x2591b8(0x173))/0x3)+parseInt(_0x2591b8(0x16f))/0x4+-parseInt(_0x2591b8(0x171))/0x5+-parseInt(_0x2591b8(0x175))/0x6+-parseInt(_0x2591b8(0x174))/0x7*(parseInt(_0x2591b8(0x170))/0x8)+parseInt(_0x2591b8(0x176))/0x9;if(_0x2ae5e2===_0x28d921)break;else _0x5248be['push'](_0x5248be['shift']());}catch(_0xe14fcb){_0x5248be['push'](_0x5248be['shift']());}}}(_0x2670,0x83a89));export{default as Compressor}from'./compressor.js';function _0x2670(){var _0x3d3a1e=['4558140KiTgFO','23664924YFOBwc','141150rTqgwM','3836460qLpzjD','352KkRdHk','5379655uvwoCS','334589WjxSjn','24vMCTDs','50029jPcQtg'];_0x2670=function(){return _0x3d3a1e;};return _0x2670();}
23
+ (function(_0x8fdf4f,_0x3f2115){var _0x145ff4=_0x373f,_0x17a384=_0x8fdf4f();while(!![]){try{var _0x2a70b0=-parseInt(_0x145ff4(0x1f9))/0x1+parseInt(_0x145ff4(0x1f5))/0x2+parseInt(_0x145ff4(0x1f6))/0x3+-parseInt(_0x145ff4(0x1fb))/0x4*(parseInt(_0x145ff4(0x1fa))/0x5)+-parseInt(_0x145ff4(0x1f7))/0x6*(-parseInt(_0x145ff4(0x1fc))/0x7)+parseInt(_0x145ff4(0x1f3))/0x8+-parseInt(_0x145ff4(0x1f4))/0x9*(parseInt(_0x145ff4(0x1f8))/0xa);if(_0x2a70b0===_0x3f2115)break;else _0x17a384['push'](_0x17a384['shift']());}catch(_0x417e71){_0x17a384['push'](_0x17a384['shift']());}}}(_0x5212,0x4fbe1));function _0x373f(_0x481289,_0x3950d6){var _0x5212a0=_0x5212();return _0x373f=function(_0x373fd0,_0x4a0902){_0x373fd0=_0x373fd0-0x1f3;var _0x380802=_0x5212a0[_0x373fd0];return _0x380802;},_0x373f(_0x481289,_0x3950d6);}export{default as Compressor}from'./compressor.js';function _0x5212(){var _0x41d1e4=['7292KRJPVP','21833AtDvWN','4728024NsPkDm','63rcUyRd','348302lDBzAW','1515576HtmEFu','1236JcBWEK','1534340ijcUso','368180lcSlBZ','395eXqZyS'];_0x5212=function(){return _0x41d1e4;};return _0x5212();}