@ckeditor/ckeditor5-operations-compressor 44.1.0 → 44.2.0-alpha.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.
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.1",
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.1",
37
+ "ckeditor5": "44.2.0-alpha.1",
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 _0x41da6f=_0x5df5;(function(_0x51ffc1,_0x24de04){const _0xd3b2b5=_0x5df5,_0x5d91de=_0x51ffc1();while(!![]){try{const _0x51451d=-parseInt(_0xd3b2b5(0x1aa))/0x1*(-parseInt(_0xd3b2b5(0x1a9))/0x2)+-parseInt(_0xd3b2b5(0x1a6))/0x3+-parseInt(_0xd3b2b5(0x1b4))/0x4*(parseInt(_0xd3b2b5(0x1b0))/0x5)+parseInt(_0xd3b2b5(0x1b3))/0x6+parseInt(_0xd3b2b5(0x1ac))/0x7+parseInt(_0xd3b2b5(0x1bb))/0x8+parseInt(_0xd3b2b5(0x1ab))/0x9;if(_0x51451d===_0x24de04)break;else _0x5d91de['push'](_0x5d91de['shift']());}catch(_0x1ecac6){_0x5d91de['push'](_0x5d91de['shift']());}}}(_0x3c6c,0xa7571));function _0x5df5(_0x2dc185,_0x255efe){const _0x3c6ca3=_0x3c6c();return _0x5df5=function(_0x5df5c1,_0x2f667f){_0x5df5c1=_0x5df5c1-0x1a6;let _0x32e728=_0x3c6ca3[_0x5df5c1];return _0x32e728;},_0x5df5(_0x2dc185,_0x255efe);}import{cloneDeep as _0x3014f6}from'lodash-es';export default class b{constructor(_0x2cb09b,_0x288351){const _0x19125a=_0x5df5;this[_0x19125a(0x1ad)]=_0x2cb09b,this[_0x19125a(0x1ae)]=_0x288351;}[_0x41da6f(0x1b6)](_0x32d8f4,_0x30d433){const _0x28c380=_0x41da6f;let _0x3bf5c0;for(;_0x30d433[_0x28c380(0x1bc)]>0x1&&this[_0x28c380(0x1b1)](_0x30d433[0x0],_0x30d433[0x1]);)_0x3bf5c0?(_0x3bf5c0=this[_0x28c380(0x1b8)](_0x30d433[_0x28c380(0x1ba)](),_0x3bf5c0),_0x32d8f4[_0x28c380(0x1b7)][_0x28c380(0x1af)](0x0)):(_0x3bf5c0=_0x3014f6(_0x30d433[_0x28c380(0x1ba)]()),_0x32d8f4[_0x28c380(0x1b7)][_0x28c380(0x1af)](this[_0x28c380(0x1ad)]));return!!_0x3bf5c0&&(_0x3bf5c0=this[_0x28c380(0x1b8)](_0x30d433[_0x28c380(0x1ba)](),_0x3bf5c0),_0x32d8f4[_0x28c380(0x1b7)][_0x28c380(0x1af)](0x0),_0x32d8f4[_0x28c380(0x1b9)][_0x28c380(0x1af)](this[_0x28c380(0x1a7)](_0x3bf5c0)),!0x0);}[_0x41da6f(0x1a8)](_0x901ebd,_0x96924f){const _0x55fb99=_0x41da6f,_0x70579f=this[_0x55fb99(0x1b2)](_0x96924f);for(;0x0==_0x96924f[_0x55fb99(0x1b7)][0x0];)_0x96924f[_0x55fb99(0x1b7)][_0x55fb99(0x1ba)](),_0x901ebd[_0x55fb99(0x1af)](this[_0x55fb99(0x1b5)](_0x70579f));_0x901ebd[_0x55fb99(0x1af)](_0x70579f);}}function _0x3c6c(){const _0x17f2bb=['types','_combineNext','buffers','shift','3842128wJxyZK','length','676203bWesyK','_compressSingleOperation','decompress','2zxvKEN','351382OIFQSR','987732kPRckt','2968644kMRCsY','_id','_context','push','5wswwmS','_compareOperations','_decompressSingleOperation','63690JedxqA','1861108QJMygY','_splitCurrent','compress'];_0x3c6c=function(){return _0x17f2bb;};return _0x3c6c();}
@@ -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
+ const _0x5d7047=_0x181e;function _0x3f7c(){const _0x2fdf80=['_combineNext','buffers','compress','5VyNKJx','targetPosition','MoveOperation','16072836pozash','_splitCurrent','_compressSingleOperation','$graveyard','__className','140vFLzmQ','2751844bDbKKf','decompress','howMany','33187GIZrOi','_context','1696IvzWme','wasUndone','_checkOperation','_compareOperations','root','6KarpJc','_decompressSingleOperation','1913406MXemtE','1047266WwdpVk','_getCompressorByName','159aOaYcJ','1970qpyVyx','12144780cwBZVd','sourcePosition'];_0x3f7c=function(){return _0x2fdf80;};return _0x3f7c();}(function(_0x50e919,_0xb119b1){const _0xc80e58=_0x181e,_0x55aa96=_0x50e919();while(!![]){try{const _0x212618=parseInt(_0xc80e58(0x1c2))/0x1*(parseInt(_0xc80e58(0x1c3))/0x2)+parseInt(_0xc80e58(0x1bd))/0x3*(-parseInt(_0xc80e58(0x1b3))/0x4)+-parseInt(_0xc80e58(0x1aa))/0x5*(parseInt(_0xc80e58(0x1bf))/0x6)+parseInt(_0xc80e58(0x1b6))/0x7*(parseInt(_0xc80e58(0x1b8))/0x8)+parseInt(_0xc80e58(0x1c4))/0x9+parseInt(_0xc80e58(0x1b2))/0xa*(-parseInt(_0xc80e58(0x1c0))/0xb)+parseInt(_0xc80e58(0x1ad))/0xc;if(_0x212618===_0xb119b1)break;else _0x55aa96['push'](_0x55aa96['shift']());}catch(_0x140e9b){_0x55aa96['push'](_0x55aa96['shift']());}}}(_0x3f7c,0xc8e27));import _0xd1ecf7 from'./actioncompressor.js';import{arePositionsEqual as _0x560b0e,getPositionShiftedBy as _0x17d6e8}from'../utils.js';function _0x181e(_0x22f158,_0x448659){const _0x3f7c1f=_0x3f7c();return _0x181e=function(_0x181e40,_0x51927c){_0x181e40=_0x181e40-0x1aa;let _0x31ba2=_0x3f7c1f[_0x181e40];return _0x31ba2;},_0x181e(_0x22f158,_0x448659);}import{cloneDeep as _0x3f2ffb}from'lodash-es';export default class c extends _0xd1ecf7{[_0x5d7047(0x1c6)](_0x6e863e,_0x2e7a3f){const _0x55b4b1=_0x5d7047;return _0x2e7a3f[_0x55b4b1(0x1b5)]++,_0x2e7a3f[_0x55b4b1(0x1c5)]=_0x3f2ffb(_0x6e863e[_0x55b4b1(0x1c5)]),_0x2e7a3f;}[_0x5d7047(0x1ae)](_0x4e4028){const _0x109ecc=_0x5d7047,_0x2fb40f=_0x3f2ffb(_0x4e4028);return _0x4e4028[_0x109ecc(0x1b5)]--,_0x2fb40f[_0x109ecc(0x1b5)]=0x1,_0x2fb40f[_0x109ecc(0x1c5)]=_0x17d6e8(_0x2fb40f[_0x109ecc(0x1c5)],_0x4e4028[_0x109ecc(0x1b5)]),_0x2fb40f;}[_0x5d7047(0x1bb)](_0x544aca,_0x343122){const _0x565307=_0x5d7047;return!(!this[_0x565307(0x1ba)](_0x544aca)||!this[_0x565307(0x1ba)](_0x343122))&&(_0x560b0e(_0x17d6e8(_0x544aca[_0x565307(0x1c5)],-0x1),_0x343122[_0x565307(0x1c5)])&&_0x560b0e(_0x544aca[_0x565307(0x1ab)],_0x343122[_0x565307(0x1ab)]));}[_0x5d7047(0x1af)](_0x351c30){const _0x1928d9=_0x5d7047,_0x16d81a={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x1928d9(0x1b7)][_0x1928d9(0x1c1)](_0x1928d9(0x1ac))[_0x1928d9(0x1c8)](_0x16d81a,[_0x351c30]),_0x16d81a[_0x1928d9(0x1c7)][0x0];}[_0x5d7047(0x1be)](_0x565cfb){const _0x4a91d0=_0x5d7047,_0x331ad1=[];return this[_0x4a91d0(0x1b7)][_0x4a91d0(0x1c1)](_0x4a91d0(0x1ac))[_0x4a91d0(0x1b4)](_0x331ad1,_0x565cfb),_0x331ad1[0x0];}[_0x5d7047(0x1ba)](_0x48e084){const _0xb7e621=_0x5d7047;return _0xb7e621(0x1ac)==_0x48e084[_0xb7e621(0x1b1)]&&_0xb7e621(0x1b0)==_0x48e084[_0xb7e621(0x1ab)][_0xb7e621(0x1bc)]&&0x1==_0x48e084[_0xb7e621(0x1b5)]&&!_0x48e084[_0xb7e621(0x1b9)];}}
@@ -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 _0x47bda8=_0x7ed8;function _0x3445(){const _0xe9d230=['root','_splitCurrent','33uMkvRn','_compareOperations','_decompressSingleOperation','buffers','10674544fjisOS','_compressSingleOperation','7470120aBrWAG','MoveOperation','9MXsRzA','_context','_combineNext','2479910zVeHdq','_getCompressorByName','7GQbNcr','__className','27489982xnnhZh','723725OLxYiI','targetPosition','1287417eqRzra','decompress','12vhUEQd','compress','138536SIRxdB','66pSkkSz','12FUUUHQ','$graveyard','sourcePosition','_checkOperation','wasUndone','howMany'];_0x3445=function(){return _0xe9d230;};return _0x3445();}(function(_0x193eea,_0x5b24ba){const _0x588d07=_0x7ed8,_0x2cecc7=_0x193eea();while(!![]){try{const _0x8db864=-parseInt(_0x588d07(0xb4))/0x1*(parseInt(_0x588d07(0xbd))/0x2)+-parseInt(_0x588d07(0xb9))/0x3*(parseInt(_0x588d07(0xbf))/0x4)+parseInt(_0x588d07(0xb7))/0x5*(parseInt(_0x588d07(0xbe))/0x6)+parseInt(_0x588d07(0xcd))/0x7+parseInt(_0x588d07(0xcb))/0x8*(parseInt(_0x588d07(0xcf))/0x9)+-parseInt(_0x588d07(0xb2))/0xa*(-parseInt(_0x588d07(0xc7))/0xb)+-parseInt(_0x588d07(0xbb))/0xc*(parseInt(_0x588d07(0xb6))/0xd);if(_0x8db864===_0x5b24ba)break;else _0x2cecc7['push'](_0x2cecc7['shift']());}catch(_0x35ec2e){_0x2cecc7['push'](_0x2cecc7['shift']());}}}(_0x3445,0xcfb33));import _0x101b60 from'./actioncompressor.js';import{arePositionsEqual as _0x10624d}from'../utils.js';function _0x7ed8(_0x26cad9,_0x3b2921){const _0x34458c=_0x3445();return _0x7ed8=function(_0x7ed87b,_0x60f621){_0x7ed87b=_0x7ed87b-0xb2;let _0x43154c=_0x34458c[_0x7ed87b];return _0x43154c;},_0x7ed8(_0x26cad9,_0x3b2921);}import{cloneDeep as _0x49ba95}from'lodash-es';export default class h extends _0x101b60{[_0x47bda8(0xd1)](_0x307e39,_0x24bd7c){const _0x2240bb=_0x47bda8;return _0x24bd7c[_0x2240bb(0xc4)]++,_0x24bd7c;}[_0x47bda8(0xc6)](_0x24ada1){const _0x1160fb=_0x47bda8,_0x319b2d=_0x49ba95(_0x24ada1);return _0x319b2d[_0x1160fb(0xc4)]=0x1,_0x24ada1[_0x1160fb(0xc4)]--,_0x319b2d;}[_0x47bda8(0xc8)](_0x1621fc,_0x586c84){const _0x18f2ca=_0x47bda8;return!(!this[_0x18f2ca(0xc2)](_0x1621fc)||!this[_0x18f2ca(0xc2)](_0x586c84))&&(_0x10624d(_0x1621fc[_0x18f2ca(0xc1)],_0x586c84[_0x18f2ca(0xc1)])&&_0x10624d(_0x1621fc[_0x18f2ca(0xb8)],_0x586c84[_0x18f2ca(0xb8)]));}[_0x47bda8(0xcc)](_0x451d3e){const _0x3d4a29=_0x47bda8,_0x5e9569={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x3d4a29(0xd0)][_0x3d4a29(0xb3)](_0x3d4a29(0xce))[_0x3d4a29(0xbc)](_0x5e9569,[_0x451d3e]),_0x5e9569[_0x3d4a29(0xca)][0x0];}[_0x47bda8(0xc9)](_0x4952dd){const _0x18ecf3=_0x47bda8,_0x3b13d8=[];return this[_0x18ecf3(0xd0)][_0x18ecf3(0xb3)](_0x18ecf3(0xce))[_0x18ecf3(0xba)](_0x3b13d8,_0x4952dd),_0x3b13d8[0x0];}[_0x47bda8(0xc2)](_0x36bc58){const _0x39c9b4=_0x47bda8;return _0x39c9b4(0xce)==_0x36bc58[_0x39c9b4(0xb5)]&&_0x39c9b4(0xc0)==_0x36bc58[_0x39c9b4(0xb8)][_0x39c9b4(0xc5)]&&0x1==_0x36bc58[_0x39c9b4(0xc4)]&&!_0x36bc58[_0x39c9b4(0xc3)];}}
@@ -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
+ const _0x7e1101=_0xbaab;(function(_0x29cb57,_0x78b406){const _0x50daa5=_0xbaab,_0xcb6e57=_0x29cb57();while(!![]){try{const _0x39c106=parseInt(_0x50daa5(0xfb))/0x1+-parseInt(_0x50daa5(0xfc))/0x2+parseInt(_0x50daa5(0xff))/0x3*(-parseInt(_0x50daa5(0x11a))/0x4)+-parseInt(_0x50daa5(0x11b))/0x5*(parseInt(_0x50daa5(0x106))/0x6)+-parseInt(_0x50daa5(0x110))/0x7+-parseInt(_0x50daa5(0x11d))/0x8*(-parseInt(_0x50daa5(0xfd))/0x9)+parseInt(_0x50daa5(0x108))/0xa*(parseInt(_0x50daa5(0xfa))/0xb);if(_0x39c106===_0x78b406)break;else _0xcb6e57['push'](_0xcb6e57['shift']());}catch(_0x4af559){_0xcb6e57['push'](_0xcb6e57['shift']());}}}(_0x2521,0x7da92));import _0x408a3b from'./actioncompressor.js';function _0xbaab(_0x549d92,_0x5e9c44){const _0x252172=_0x2521();return _0xbaab=function(_0xbaab99,_0x1b450b){_0xbaab99=_0xbaab99-0xf8;let _0x4ec03d=_0x252172[_0xbaab99];return _0x4ec03d;},_0xbaab(_0x549d92,_0x5e9c44);}import{arePositionsEqual as _0xc8c0da,getPositionShiftedBy as _0x33c174}from'../utils.js';function _0x2521(){const _0x28d7e6=['1579204XHulwI','910003gHxnpG','877386pBBHXo','577089RLrmxk','attributes','1434039HwfTwr','_checkOperation','data','buffers','position','nodes','keys','18hhlrQh','next','70qrbqRj','wasUndone','from','_compareOperations','substr','_splitCurrent','decompress','iterator','4131981fiIPBr','length','_combineNext','value','every','_compareAttributes','InsertOperation','_context','_compressSingleOperation','__className','4QGwlRX','35830vlAWew','_decompressSingleOperation','16qUsPzX','compress','_getCompressorByName'];_0x2521=function(){return _0x28d7e6;};return _0x2521();}import{cloneDeep as _0x4ac612}from'lodash-es';export default class m extends _0x408a3b{[_0x7e1101(0x112)](_0x1042be,_0x554702){const _0x18802a=_0x7e1101;return _0x554702[_0x18802a(0x104)][0x0][_0x18802a(0x101)]+=_0x1042be[_0x18802a(0x104)][0x0][_0x18802a(0x101)],_0x554702;}[_0x7e1101(0x10d)](_0x2819b9){const _0x590aa4=_0x7e1101,_0x3d3b89=_0x4ac612(_0x2819b9),_0x408fed=_0x3d3b89[_0x590aa4(0x104)][0x0],_0x5147e6=_0x2819b9[_0x590aa4(0x104)][0x0],_0x56f437=_0x5147e6[_0x590aa4(0x101)][Symbol[_0x590aa4(0x10f)]]()[_0x590aa4(0x107)]()[_0x590aa4(0x113)],_0x974b25=_0x56f437[_0x590aa4(0x111)];return _0x408fed[_0x590aa4(0x101)]=_0x56f437,_0x5147e6[_0x590aa4(0x101)]=_0x5147e6[_0x590aa4(0x101)][_0x590aa4(0x10c)](_0x974b25),_0x2819b9[_0x590aa4(0x103)]=_0x33c174(_0x2819b9[_0x590aa4(0x103)],_0x974b25),_0x3d3b89;}[_0x7e1101(0x10b)](_0x1d69b1,_0x3d78b0){const _0xca47e3=_0x7e1101;if(this[_0xca47e3(0x100)](_0x1d69b1)&&this[_0xca47e3(0x100)](_0x3d78b0)){const _0x268343=_0x1d69b1[_0xca47e3(0x104)][0x0][_0xca47e3(0x101)][_0xca47e3(0x111)],_0x303dfc=_0xc8c0da(_0x33c174(_0x1d69b1[_0xca47e3(0x103)],_0x268343),_0x3d78b0[_0xca47e3(0x103)]),_0x5a3b81=_0x1d69b1[_0xca47e3(0x104)][0x0],_0x49ff3d=_0x3d78b0[_0xca47e3(0x104)][0x0];return _0x303dfc&&this[_0xca47e3(0x115)](_0x5a3b81,_0x49ff3d);}return!0x1;}[_0x7e1101(0x118)](_0x20176c){const _0x945d6c=_0x7e1101,_0x20d349={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x945d6c(0x117)][_0x945d6c(0xf9)](_0x945d6c(0x116))[_0x945d6c(0xf8)](_0x20d349,[_0x20176c]),_0x20d349[_0x945d6c(0x102)][0x0];}[_0x7e1101(0x11c)](_0x4184ad){const _0x1457a2=_0x7e1101,_0x4b9430=[];return this[_0x1457a2(0x117)][_0x1457a2(0xf9)](_0x1457a2(0x116))[_0x1457a2(0x10e)](_0x4b9430,_0x4184ad),_0x4b9430[0x0];}[_0x7e1101(0x100)](_0x4fb06e){const _0x5af32e=_0x7e1101;return _0x5af32e(0x116)==_0x4fb06e[_0x5af32e(0x119)]&&0x1==_0x4fb06e[_0x5af32e(0x104)][_0x5af32e(0x111)]&&_0x4fb06e[_0x5af32e(0x104)][0x0][_0x5af32e(0x101)]&&!_0x4fb06e[_0x5af32e(0x109)]&&0x1==Array[_0x5af32e(0x10a)](_0x4fb06e[_0x5af32e(0x104)][0x0][_0x5af32e(0x101)])[_0x5af32e(0x111)];}[_0x7e1101(0x115)](_0x3ad18b,_0x5861a1){const _0x302f72=_0x7e1101,_0x1fb009=Object[_0x302f72(0x105)](_0x3ad18b[_0x302f72(0xfe)]||{}),_0x3d5687=Object[_0x302f72(0x105)](_0x5861a1[_0x302f72(0xfe)]||{});return _0x1fb009[_0x302f72(0x111)]===_0x3d5687[_0x302f72(0x111)]&&_0x1fb009[_0x302f72(0x114)](_0x262ef9=>_0x5861a1[_0x302f72(0xfe)][_0x262ef9]&&_0x5861a1[_0x302f72(0xfe)][_0x262ef9]===_0x3ad18b[_0x302f72(0xfe)][_0x262ef9]);}}
@@ -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 _0x3908b8=_0x12d2;(function(_0xc66440,_0x246a89){const _0x140379=_0x12d2,_0x58fb5a=_0xc66440();while(!![]){try{const _0x59bc72=parseInt(_0x140379(0xf4))/0x1*(parseInt(_0x140379(0x103))/0x2)+-parseInt(_0x140379(0xf3))/0x3*(parseInt(_0x140379(0x102))/0x4)+parseInt(_0x140379(0xe4))/0x5*(-parseInt(_0x140379(0xed))/0x6)+parseInt(_0x140379(0xfe))/0x7+-parseInt(_0x140379(0xfc))/0x8+-parseInt(_0x140379(0xf9))/0x9+parseInt(_0x140379(0xe3))/0xa*(parseInt(_0x140379(0xe9))/0xb);if(_0x59bc72===_0x246a89)break;else _0x58fb5a['push'](_0x58fb5a['shift']());}catch(_0x4cfb9b){_0x58fb5a['push'](_0x58fb5a['shift']());}}}(_0x53c2,0x7c5c9));import _0x242e3a from'./actioncompressor.js';import{arePositionsEqual as _0x344ae8}from'../utils.js';function _0x12d2(_0x4748b1,_0x1a3f8e){const _0x53c22d=_0x53c2();return _0x12d2=function(_0x12d298,_0x4f6cec){_0x12d298=_0x12d298-0xe2;let _0x18a259=_0x53c22d[_0x12d298];return _0x18a259;},_0x12d2(_0x4748b1,_0x1a3f8e);}import{cloneDeep as _0x1e80da}from'lodash-es';export default class f extends _0x242e3a{[_0x3908b8(0xe6)](_0x5f9f2c,_0xb6eacf){const _0x5aac32=_0x3908b8;if(!this[_0x5aac32(0xf2)](_0xb6eacf[0x0],_0xb6eacf[0x1]))return!0x1;const _0x3bb2c1=_0xb6eacf[_0x5aac32(0xee)]();return _0x3bb2c1[_0x5aac32(0xe7)]=null,_0x3bb2c1[_0x5aac32(0xec)]&&_0x344ae8(_0x3bb2c1[_0x5aac32(0xec)][_0x5aac32(0xf5)],_0x3bb2c1[_0x5aac32(0xec)][_0x5aac32(0x104)])&&(_0x3bb2c1[_0x5aac32(0xec)][_0x5aac32(0x104)]=null),_0xb6eacf[_0x5aac32(0xee)](),_0x5f9f2c[_0x5aac32(0x105)][_0x5aac32(0xeb)](this[_0x5aac32(0xfb)]),_0x5f9f2c[_0x5aac32(0x105)][_0x5aac32(0xeb)](0x0),_0x5f9f2c[_0x5aac32(0xe5)][_0x5aac32(0xeb)](this[_0x5aac32(0xf7)](_0x3bb2c1)),!0x0;}[_0x3908b8(0xe8)](_0x2be055,_0xf42083){const _0x5eb8bc=_0x3908b8,_0x4de3c9=this[_0x5eb8bc(0x100)](_0xf42083);_0x4de3c9[_0x5eb8bc(0xec)]&&!_0x4de3c9[_0x5eb8bc(0xec)][_0x5eb8bc(0x104)]&&(_0x4de3c9[_0x5eb8bc(0xec)][_0x5eb8bc(0x104)]=_0x1e80da(_0x4de3c9[_0x5eb8bc(0xec)][_0x5eb8bc(0xf5)]));const _0x45dcf0=_0x1e80da(_0x4de3c9);_0x45dcf0[_0x5eb8bc(0xec)]&&(_0x45dcf0[_0x5eb8bc(0xec)][_0x5eb8bc(0xf5)][_0x5eb8bc(0xf6)]=_0x5eb8bc(0xe2),_0x45dcf0[_0x5eb8bc(0xec)][_0x5eb8bc(0x104)]=_0x1e80da(_0x45dcf0[_0x5eb8bc(0xec)][_0x5eb8bc(0xf5)])),_0x45dcf0[_0x5eb8bc(0xf8)]=_0x5eb8bc(0xf0)+_0x45dcf0[_0x5eb8bc(0xf8)][_0x5eb8bc(0xf1)](':')[0x2],_0xf42083[_0x5eb8bc(0x105)][_0x5eb8bc(0xee)](),_0x2be055[_0x5eb8bc(0xeb)](_0x4de3c9),_0x2be055[_0x5eb8bc(0xeb)](_0x45dcf0);}[_0x3908b8(0xf7)](_0x2f8653){const _0x427984=_0x3908b8,_0xdc7a88={'types':[],'buffers':[],'baseVersion':0x0};return this[_0x427984(0xfa)][_0x427984(0xea)](_0x427984(0xff))[_0x427984(0xe6)](_0xdc7a88,[_0x2f8653]),_0xdc7a88[_0x427984(0xe5)][0x0];}[_0x3908b8(0x100)](_0x19a63c){const _0x378a85=_0x3908b8,_0x1cb5fe=[];return this[_0x378a85(0xfa)][_0x378a85(0xea)](_0x378a85(0xff))[_0x378a85(0xe8)](_0x1cb5fe,_0x19a63c),_0x1cb5fe[0x0];}[_0x3908b8(0xf2)](_0x5e31b3,_0x40a729){const _0x5e8782=_0x3908b8;return!(!_0x5e31b3||!_0x40a729)&&(_0x5e8782(0xff)==_0x5e31b3[_0x5e8782(0x101)]&&_0x5e8782(0xff)==_0x40a729[_0x5e8782(0x101)]&&!(!_0x5e31b3[_0x5e8782(0xf8)][_0x5e8782(0xef)](_0x5e8782(0xfd))||!_0x40a729[_0x5e8782(0xf8)][_0x5e8782(0xef)](_0x5e8782(0xfd))||_0x5e31b3[_0x5e8782(0xf8)]==_0x40a729[_0x5e8782(0xf8)]));}}function _0x53c2(){const _0x44dcf6=['5128886McdXix','MarkerOperation','_decompressSingleOperation','__className','16EpIjfP','523652mTaQTp','end','types','toNone','12027220sJOpKJ','2815155zCUUsl','buffers','compress','oldRange','decompress','11dPgTqB','_getCompressorByName','push','newRange','6VJdAKo','shift','startsWith','user:position:','split','_compareOperations','131562GrJSdd','1URmofc','start','stickiness','_compressSingleOperation','name','4826349GNHPAF','_context','_id','3305224hfyGIp','user:'];_0x53c2=function(){return _0x44dcf6;};return _0x53c2();}
@@ -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 _0x529e1a=_0x4588;(function(_0x1763e0,_0x519fcd){const _0x42d0c0=_0x4588,_0x566703=_0x1763e0();while(!![]){try{const _0x461421=-parseInt(_0x42d0c0(0x1d5))/0x1+-parseInt(_0x42d0c0(0x1dc))/0x2+parseInt(_0x42d0c0(0x1f2))/0x3+-parseInt(_0x42d0c0(0x1e4))/0x4*(parseInt(_0x42d0c0(0x1e7))/0x5)+-parseInt(_0x42d0c0(0x1e5))/0x6+parseInt(_0x42d0c0(0x1d2))/0x7+parseInt(_0x42d0c0(0x1e2))/0x8;if(_0x461421===_0x519fcd)break;else _0x566703['push'](_0x566703['shift']());}catch(_0x251bde){_0x566703['push'](_0x566703['shift']());}}}(_0x2fe4,0x1f343));import{CKEditorError as _0x20bb78}from'ckeditor5/src/utils.js';function _0x4588(_0x5d3331,_0x5afa27){const _0x2fe46c=_0x2fe4();return _0x4588=function(_0x458832,_0x58e1c1){_0x458832=_0x458832-0x1d1;let _0xe8f815=_0x2fe46c[_0x458832];return _0xe8f815;},_0x4588(_0x5d3331,_0x5afa27);}import _0x580345 from'./protobuffactory.js';import _0x3368b7 from'./operationcompressor/operationcompressor.js';import _0xfd0db6 from'./operationcompressor/attributeoperationcompressor.js';import _0x2c70b4 from'./operationcompressor/insertoperationcompressor.js';import _0x288b01 from'./operationcompressor/markeroperationcompressor.js';function _0x2fe4(){const _0x8cbec3=['length','getDescriptor','238772iDMiju','compress','set','ForwardDeletingAction','_getCompressorByName','MoveOperation','SuggestionMarkerOperation','151084lJbGjG','RootOperation','_registerCompressor','CommentMarkerOperation','types','no-operations-provided','3300240IuiYEE','InsertOperation','4pPTSsi','1325418BRizLe','_registerActionCompressor','113210HFTOrK','UserSelectionAction','__className','SplitOperation','TypingAction','MarkerOperation','_protobufFactory','DeletingAction','get','AttributeOperation','decompress','346542YBmCTj','forEach','RenameOperation','suggestion','_compressorById','_compressorByName','baseVersion','_registerOperationCompressor','RootAttributeOperation','NoOperation','comment','MergeOperation','1103382HXzySE'];_0x2fe4=function(){return _0x8cbec3;};return _0x2fe4();}import _0x1a1926 from'./operationcompressor/nooperationcompressor.js';import _0x5256d8 from'./operationcompressor/annotationmarkeroperationcompressor.js';import _0x346472 from'./actioncompressor/typingactioncompressor.js';import _0x24487b from'./actioncompressor/deletingactioncompressor.js';import _0xbda47b from'./actioncompressor/forwarddeletingactioncompressor.js';import _0x34f4ad from'./actioncompressor/userselectionactioncompressor.js';export default class g{constructor(){const _0x2dada5=_0x4588;this[_0x2dada5(0x1f6)]=new Map(),this[_0x2dada5(0x1f7)]=new Map(),this[_0x2dada5(0x1ed)]=new _0x580345();const _0x5415c3=this[_0x2dada5(0x1ed)][_0x2dada5(0x1d4)](_0x2dada5(0x1ec));this[_0x2dada5(0x1de)](0x1,_0x2dada5(0x1fb),new _0x1a1926(0x1,_0x2dada5(0x1fb),void 0x0)),this[_0x2dada5(0x1f9)](0xa,_0x2dada5(0x1f0),_0xfd0db6),this[_0x2dada5(0x1f9)](0xb,_0x2dada5(0x1e3),_0x2c70b4),this[_0x2dada5(0x1f9)](0xc,_0x2dada5(0x1ec),_0x288b01),this[_0x2dada5(0x1f9)](0xd,_0x2dada5(0x1d1),_0x3368b7),this[_0x2dada5(0x1f9)](0xe,_0x2dada5(0x1da),_0x3368b7),this[_0x2dada5(0x1f9)](0xf,_0x2dada5(0x1f4),_0x3368b7),this[_0x2dada5(0x1f9)](0x10,_0x2dada5(0x1fa),_0xfd0db6),this[_0x2dada5(0x1f9)](0x11,_0x2dada5(0x1ea),_0x3368b7),this[_0x2dada5(0x1de)](0x12,_0x2dada5(0x1df),new _0x5256d8(0x12,_0x2dada5(0x1ec),_0x5415c3,_0x2dada5(0x1fc))),this[_0x2dada5(0x1de)](0x13,_0x2dada5(0x1db),new _0x5256d8(0x13,_0x2dada5(0x1ec),_0x5415c3,_0x2dada5(0x1f5))),this[_0x2dada5(0x1f9)](0x14,_0x2dada5(0x1dd),_0x3368b7),this[_0x2dada5(0x1e6)](0x64,_0x2dada5(0x1eb),_0x346472),this[_0x2dada5(0x1e6)](0x65,_0x2dada5(0x1ee),_0x24487b),this[_0x2dada5(0x1e6)](0x66,_0x2dada5(0x1d8),_0xbda47b),this[_0x2dada5(0x1e6)](0x67,_0x2dada5(0x1e8),_0x34f4ad);}[_0x529e1a(0x1d6)](_0x20dce7){const _0x829dae=_0x529e1a;if(!_0x20dce7||!_0x20dce7[0x0])throw new _0x20bb78(_0x829dae(0x1e1),this);const _0x41293b={'types':[],'buffers':[],'baseVersion':_0x20dce7[0x0][_0x829dae(0x1f8)]};for(;_0x20dce7[_0x829dae(0x1d3)];)this[_0x829dae(0x1d9)](_0x829dae(0x1e8))[_0x829dae(0x1d6)](_0x41293b,_0x20dce7)||this[_0x829dae(0x1d9)](_0x829dae(0x1eb))[_0x829dae(0x1d6)](_0x41293b,_0x20dce7)||this[_0x829dae(0x1d9)](_0x829dae(0x1ee))[_0x829dae(0x1d6)](_0x41293b,_0x20dce7)||this[_0x829dae(0x1d9)](_0x829dae(0x1d8))[_0x829dae(0x1d6)](_0x41293b,_0x20dce7)||this[_0x829dae(0x1d9)](_0x829dae(0x1df))[_0x829dae(0x1d6)](_0x41293b,_0x20dce7)||this[_0x829dae(0x1d9)](_0x829dae(0x1db))[_0x829dae(0x1d6)](_0x41293b,_0x20dce7)||this[_0x829dae(0x1d9)](_0x20dce7[0x0][_0x829dae(0x1e9)])[_0x829dae(0x1d6)](_0x41293b,_0x20dce7);return _0x41293b;}[_0x529e1a(0x1f1)](_0x2e0b7a){const _0x517dd2=_0x529e1a,_0x196afa=[];for(;_0x2e0b7a[_0x517dd2(0x1e0)][_0x517dd2(0x1d3)];){this[_0x517dd2(0x1f6)][_0x517dd2(0x1ef)](_0x2e0b7a[_0x517dd2(0x1e0)][0x0])[_0x517dd2(0x1f1)](_0x196afa,_0x2e0b7a);}return _0x196afa[_0x517dd2(0x1f3)]((_0x1a89b6,_0x44df9e)=>_0x1a89b6[_0x517dd2(0x1f8)]=_0x2e0b7a[_0x517dd2(0x1f8)]+_0x44df9e),_0x196afa;}[_0x529e1a(0x1d9)](_0x23063b){const _0x4c534d=_0x529e1a;return this[_0x4c534d(0x1f7)][_0x4c534d(0x1ef)](_0x23063b);}[_0x529e1a(0x1f9)](_0x48d16d,_0x51e8e1,_0x2455f7){const _0x5e160c=_0x529e1a,_0x4e3dbd=new _0x2455f7(_0x48d16d,_0x51e8e1,this[_0x5e160c(0x1ed)][_0x5e160c(0x1d4)](_0x51e8e1));this[_0x5e160c(0x1de)](_0x48d16d,_0x51e8e1,_0x4e3dbd);}[_0x529e1a(0x1e6)](_0x1330e2,_0x2db4f9,_0x33661f){const _0x185b40=_0x529e1a,_0x4e5c91=new _0x33661f(_0x1330e2,this);this[_0x185b40(0x1de)](_0x1330e2,_0x2db4f9,_0x4e5c91);}[_0x529e1a(0x1de)](_0x287e9e,_0x13ea29,_0x425237){const _0x23100c=_0x529e1a;this[_0x23100c(0x1f6)][_0x23100c(0x1d7)](_0x287e9e,_0x425237),this[_0x23100c(0x1f7)][_0x23100c(0x1d7)](_0x13ea29,_0x425237);}}
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(_0x39fd1f,_0x2535f3){var _0x5e1019=_0x5f31,_0x47531a=_0x39fd1f();while(!![]){try{var _0x3483ca=-parseInt(_0x5e1019(0x1dd))/0x1+parseInt(_0x5e1019(0x1d8))/0x2+-parseInt(_0x5e1019(0x1da))/0x3*(-parseInt(_0x5e1019(0x1d4))/0x4)+parseInt(_0x5e1019(0x1d5))/0x5*(-parseInt(_0x5e1019(0x1dc))/0x6)+-parseInt(_0x5e1019(0x1db))/0x7+parseInt(_0x5e1019(0x1d6))/0x8*(parseInt(_0x5e1019(0x1d7))/0x9)+-parseInt(_0x5e1019(0x1d9))/0xa*(-parseInt(_0x5e1019(0x1d3))/0xb);if(_0x3483ca===_0x2535f3)break;else _0x47531a['push'](_0x47531a['shift']());}catch(_0x2c29d5){_0x47531a['push'](_0x47531a['shift']());}}}(_0x8e70,0x69d67));export{default as Compressor}from'./compressor.js';function _0x5f31(_0x5e9874,_0x4a0712){var _0x8e7015=_0x8e70();return _0x5f31=function(_0x5f310c,_0x4f5e89){_0x5f310c=_0x5f310c-0x1d3;var _0x221b15=_0x8e7015[_0x5f310c];return _0x221b15;},_0x5f31(_0x5e9874,_0x4a0712);}function _0x8e70(){var _0x5b2e21=['5Crndtq','88kbACze','501507DgrpWR','589960ywbjjf','3210fLsWNl','297GWcZtL','5031488KOGUJt','3309714TjJSLA','375147qHyJjP','11869SIlHlP','33324jmnjzY'];_0x8e70=function(){return _0x5b2e21;};return _0x8e70();}