@ckeditor/ckeditor5-track-changes 36.0.0 → 37.0.0-rc.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 (127) hide show
  1. package/build/track-changes.js +1 -1
  2. package/ckeditor5-metadata.json +10 -0
  3. package/package.json +21 -6
  4. package/src/augmentation.d.ts +36 -0
  5. package/src/augmentation.js +23 -0
  6. package/src/commands/acceptsuggestioncommand.d.ts +20 -0
  7. package/src/commands/acceptsuggestioncommand.js +1 -1
  8. package/src/commands/discardsuggestioncommand.d.ts +20 -0
  9. package/src/commands/discardsuggestioncommand.js +1 -1
  10. package/src/commands/executeonallsuggestionscommand.d.ts +20 -0
  11. package/src/commands/executeonallsuggestionscommand.js +1 -1
  12. package/src/commands/executeonselectedsuggestionscommand.d.ts +20 -0
  13. package/src/commands/executeonselectedsuggestionscommand.js +1 -1
  14. package/src/commands/trackchangescommand.d.ts +22 -0
  15. package/src/commands/trackchangescommand.js +1 -1
  16. package/src/index.d.ts +12 -0
  17. package/src/index.js +1 -1
  18. package/src/integrations/alignment.d.ts +13 -0
  19. package/src/integrations/alignment.js +1 -1
  20. package/src/integrations/basicstyles.d.ts +13 -0
  21. package/src/integrations/basicstyles.js +1 -1
  22. package/src/integrations/blockquote.d.ts +13 -0
  23. package/src/integrations/blockquote.js +1 -1
  24. package/src/integrations/ckbox.d.ts +13 -0
  25. package/src/integrations/ckbox.js +1 -1
  26. package/src/integrations/codeblock.d.ts +13 -0
  27. package/src/integrations/codeblock.js +1 -1
  28. package/src/integrations/comments.d.ts +10 -0
  29. package/src/integrations/comments.js +1 -1
  30. package/src/integrations/deletecommand.d.ts +12 -0
  31. package/src/integrations/deletecommand.js +1 -1
  32. package/src/integrations/documentlist.d.ts +13 -0
  33. package/src/integrations/documentlist.js +1 -1
  34. package/src/integrations/documentlistproperties.d.ts +25 -0
  35. package/src/integrations/documentlistproperties.js +1 -1
  36. package/src/integrations/entercommand.d.ts +11 -0
  37. package/src/integrations/entercommand.js +1 -1
  38. package/src/integrations/findandreplace.d.ts +17 -0
  39. package/src/integrations/findandreplace.js +1 -1
  40. package/src/integrations/font.d.ts +13 -0
  41. package/src/integrations/font.js +1 -1
  42. package/src/integrations/heading.d.ts +13 -0
  43. package/src/integrations/heading.js +1 -1
  44. package/src/integrations/highlight.d.ts +13 -0
  45. package/src/integrations/highlight.js +1 -1
  46. package/src/integrations/horizontalline.d.ts +13 -0
  47. package/src/integrations/horizontalline.js +1 -1
  48. package/src/integrations/htmlembed.d.ts +13 -0
  49. package/src/integrations/htmlembed.js +1 -1
  50. package/src/integrations/image.d.ts +13 -0
  51. package/src/integrations/image.js +1 -1
  52. package/src/integrations/imagereplace.d.ts +19 -0
  53. package/src/integrations/imagereplace.js +1 -1
  54. package/src/integrations/importword.d.ts +14 -0
  55. package/src/integrations/importword.js +1 -1
  56. package/src/integrations/indent.d.ts +13 -0
  57. package/src/integrations/indent.js +1 -1
  58. package/src/integrations/inputcommand.d.ts +11 -0
  59. package/src/integrations/inputcommand.js +1 -1
  60. package/src/integrations/link.d.ts +13 -0
  61. package/src/integrations/link.js +1 -1
  62. package/src/integrations/list.d.ts +13 -0
  63. package/src/integrations/list.js +1 -1
  64. package/src/integrations/listproperties.d.ts +25 -0
  65. package/src/integrations/listproperties.js +1 -1
  66. package/src/integrations/mediaembed.d.ts +13 -0
  67. package/src/integrations/mediaembed.js +1 -1
  68. package/src/integrations/mention.d.ts +13 -0
  69. package/src/integrations/mention.js +1 -1
  70. package/src/integrations/pagebreak.d.ts +13 -0
  71. package/src/integrations/pagebreak.js +1 -1
  72. package/src/integrations/paragraph.d.ts +13 -0
  73. package/src/integrations/paragraph.js +1 -1
  74. package/src/integrations/removeformat.d.ts +13 -0
  75. package/src/integrations/removeformat.js +1 -1
  76. package/src/integrations/restrictededitingmode.d.ts +13 -0
  77. package/src/integrations/restrictededitingmode.js +1 -1
  78. package/src/integrations/shiftentercommand.d.ts +11 -0
  79. package/src/integrations/shiftentercommand.js +1 -1
  80. package/src/integrations/standardeditingmode.d.ts +13 -0
  81. package/src/integrations/standardeditingmode.js +1 -1
  82. package/src/integrations/style.d.ts +14 -0
  83. package/src/integrations/style.js +1 -1
  84. package/src/integrations/table.d.ts +38 -0
  85. package/src/integrations/table.js +1 -1
  86. package/src/integrations/tablecaption.d.ts +17 -0
  87. package/src/integrations/tablecaption.js +1 -1
  88. package/src/integrations/tableclipboard.d.ts +17 -0
  89. package/src/integrations/tableclipboard.js +1 -1
  90. package/src/integrations/tablecolumnresize.d.ts +22 -0
  91. package/src/integrations/tablecolumnresize.js +1 -1
  92. package/src/integrations/tableheadings.d.ts +17 -0
  93. package/src/integrations/tableheadings.js +1 -1
  94. package/src/integrations/tablemergesplit.d.ts +17 -0
  95. package/src/integrations/tablemergesplit.js +1 -1
  96. package/src/integrations/tableproperties.d.ts +23 -0
  97. package/src/integrations/tableproperties.js +1 -1
  98. package/src/integrations/title.d.ts +13 -0
  99. package/src/integrations/title.js +1 -1
  100. package/src/integrations/undo.d.ts +13 -0
  101. package/src/integrations/undo.js +1 -1
  102. package/src/integrations/utils.d.ts +17 -0
  103. package/src/integrations/utils.js +1 -1
  104. package/src/suggestion.d.ts +266 -0
  105. package/src/suggestion.js +1 -1
  106. package/src/suggestiondescriptionfactory.d.ts +151 -0
  107. package/src/suggestiondescriptionfactory.js +1 -1
  108. package/src/trackchanges.d.ts +222 -0
  109. package/src/trackchanges.js +1 -1
  110. package/src/trackchangesconfig.d.ts +53 -0
  111. package/src/trackchangesconfig.js +23 -0
  112. package/src/trackchangesdata.d.ts +38 -0
  113. package/src/trackchangesdata.js +1 -1
  114. package/src/trackchangesediting.d.ts +391 -0
  115. package/src/trackchangesediting.js +1 -1
  116. package/src/trackchangesui.d.ts +34 -0
  117. package/src/trackchangesui.js +1 -1
  118. package/src/ui/suggestioncontroller.d.ts +36 -0
  119. package/src/ui/suggestioncontroller.js +1 -1
  120. package/src/ui/view/basesuggestionthreadview.d.ts +166 -0
  121. package/src/ui/view/basesuggestionthreadview.js +1 -1
  122. package/src/ui/view/suggestionthreadview.d.ts +184 -0
  123. package/src/ui/view/suggestionthreadview.js +1 -1
  124. package/src/utils/common-translations.d.ts +5 -0
  125. package/src/utils/common-translations.js +1 -1
  126. package/src/utils/utils.d.ts +26 -0
  127. package/src/utils/utils.js +1 -1
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0xb71f=['data','model','root','options','editing','showSuggestionHighlights','mapper','deleteForward','selection','createSelection','requires','merge','editor','detach','fromRange','unit','start','writer','high','unlock','end','lock','modifySelection','document','buffer','downcastDispatcher','TrackChangesEditing','isCollapsed','getFirstRange','delete','markerName','init','createRange','$graveyard','forward','addMarker:suggestion:deletion','commands','markerNameToElements','enableCommand','uiElement','setSelection','batch','remove','get'];(function(_0x18c722,_0xb71fda){const _0x3bb836=function(_0x4ab56b){while(--_0x4ab56b){_0x18c722['push'](_0x18c722['shift']());}};_0x3bb836(++_0xb71fda);}(_0xb71f,0xcc));const _0x3bb8=function(_0x18c722,_0xb71fda){_0x18c722=_0x18c722-0x0;let _0x3bb836=_0xb71f[_0x18c722];return _0x3bb836;};import{Plugin as _0x45b42f}from'ckeditor5/src/core';import{Delete as _0x24c186}from'ckeditor5/src/typing';import{LiveRange as _0x24d483}from'ckeditor5/src/engine';import{downcastSplitMergeMarker as _0x11b2db}from'./utils';export default class q extends _0x45b42f{static get[_0x3bb8('0x1a')](){return[_0x24c186];}[_0x3bb8('0x3')](){const _0x5d04b7=this[_0x3bb8('0x1c')],_0xc4c474=_0x5d04b7['plugins']['get'](_0x3bb8('0x2a'));_0xc4c474[_0x3bb8('0xa')](_0x3bb8('0x1'));const _0x1d8b8f=_0x5d04b7[_0x3bb8('0x8')][_0x3bb8('0xf')](_0x3bb8('0x17'));_0xc4c474['enableCommand'](_0x3bb8('0x17'),(_0x32b126,_0x4d44e7={})=>{const _0x312bc0=_0x5d04b7[_0x3bb8('0x11')][_0x3bb8('0x19')](_0x5d04b7['model'][_0x3bb8('0x27')][_0x3bb8('0x18')]);_0x312bc0[_0x3bb8('0x2b')]&&_0x5d04b7[_0x3bb8('0x11')][_0x3bb8('0x26')](_0x312bc0,{'direction':_0x3bb8('0x6'),'unit':_0x4d44e7[_0x3bb8('0x1f')]});const _0x37b8df=_0x312bc0[_0x3bb8('0x0')](),_0x3cfcd4=_0x24d483[_0x3bb8('0x1e')](_0x37b8df);let _0x4c3ed4;_0x32b126(_0x4d44e7),_0x4c3ed4=_0x3bb8('0x5')==_0x3cfcd4[_0x3bb8('0x12')]['rootName']?_0x5d04b7[_0x3bb8('0x11')][_0x3bb8('0x4')](_0x37b8df['start']):_0x5d04b7[_0x3bb8('0x11')]['createRange'](_0x3cfcd4[_0x3bb8('0x20')],_0x3cfcd4[_0x3bb8('0x24')]),_0x3cfcd4[_0x3bb8('0x1d')](),_0x5d04b7[_0x3bb8('0x11')]['enqueueChange'](_0x1d8b8f[_0x3bb8('0x28')][_0x3bb8('0xd')],_0x3f8adc=>{_0x1d8b8f[_0x3bb8('0x28')][_0x3bb8('0x25')](),_0x3f8adc[_0x3bb8('0xc')](_0x3f8adc[_0x3bb8('0x4')](_0x4c3ed4[_0x3bb8('0x24')])),_0x1d8b8f[_0x3bb8('0x28')][_0x3bb8('0x23')]();});}),_0x5d04b7[_0x3bb8('0x14')]['downcastDispatcher']['on'](_0x3bb8('0x7'),_0x11b2db(_0x5d04b7,_0x3bb8('0x1b')),{'priority':_0x3bb8('0x22')}),_0x5d04b7[_0x3bb8('0x10')][_0x3bb8('0x29')]['on'](_0x3bb8('0x7'),(_0x50aab4,_0xf88695,_0x2706b5)=>{_0x2706b5[_0x3bb8('0x13')][_0x3bb8('0x15')]&&_0x11b2db(_0x5d04b7,_0x3bb8('0x1b'),{'showActiveMarker':!0x1})(_0x50aab4,_0xf88695,_0x2706b5);},{'priority':'high'}),_0x5d04b7['editing']['downcastDispatcher']['on']('removeMarker:suggestion:deletion',(_0x3a2015,_0x483647,_0x2191ed)=>{const _0x17b222=_0x2191ed[_0x3bb8('0x16')][_0x3bb8('0x9')](_0x483647[_0x3bb8('0x2')]);if(_0x17b222)for(const _0x27fabb of _0x17b222)_0x27fabb['is'](_0x3bb8('0xb'))&&(_0x2191ed[_0x3bb8('0x16')]['unbindElementFromMarkerName'](_0x27fabb,_0x483647[_0x3bb8('0x2')]),_0x2191ed[_0x3bb8('0x21')][_0x3bb8('0xe')](_0x27fabb));},{'priority':'high'});}}
23
+ const _0x5511=['requires','forward','downcastDispatcher','model','plugins','root','get','remove','isCollapsed','deleteForward','start','fromRange','createRange','buffer','unit','enqueueChange','markerName','setSelection','end','commands','uiElement','editor','TrackChangesEditing','editing','modifySelection','lock','markerNameToElements','enableCommand','getFirstRange','merge','writer','addMarker:suggestion:deletion','options','showSuggestionHighlights','$graveyard','removeMarker:suggestion:deletion','high','document','data','rootName','mapper','selection'];(function(_0x3cf715,_0x551151){const _0x4c7488=function(_0x12933b){while(--_0x12933b){_0x3cf715['push'](_0x3cf715['shift']());}};_0x4c7488(++_0x551151);}(_0x5511,0x164));const _0x4c74=function(_0x3cf715,_0x551151){_0x3cf715=_0x3cf715-0x0;let _0x4c7488=_0x5511[_0x3cf715];return _0x4c7488;};import{Plugin as _0xc91df6}from'ckeditor5/src/core';import{LiveRange as _0x133cfe}from'ckeditor5/src/engine';import{Delete as _0x38398d}from'ckeditor5/src/typing';import{downcastSplitMergeMarker as _0xe10ccc}from'./utils';export default class G extends _0xc91df6{static get[_0x4c74('0x16')](){return[_0x38398d];}['init'](){const _0x55c6c6=this[_0x4c74('0x1')],_0x5c9abe=_0x55c6c6[_0x4c74('0x1a')][_0x4c74('0x1c')](_0x4c74('0x2'));_0x5c9abe[_0x4c74('0x7')]('delete');const _0x2bfb2b=_0x55c6c6[_0x4c74('0x29')][_0x4c74('0x1c')](_0x4c74('0x1f'));_0x5c9abe[_0x4c74('0x7')](_0x4c74('0x1f'),(_0x579d1d,_0x427a7b={})=>{const _0x3dd562=_0x55c6c6[_0x4c74('0x19')]['createSelection'](_0x55c6c6[_0x4c74('0x19')][_0x4c74('0x11')][_0x4c74('0x15')]);_0x3dd562[_0x4c74('0x1e')]&&_0x55c6c6[_0x4c74('0x19')][_0x4c74('0x4')](_0x3dd562,{'direction':_0x4c74('0x17'),'unit':_0x427a7b[_0x4c74('0x24')]});const _0x411f57=_0x3dd562[_0x4c74('0x8')](),_0x48ffaa=_0x133cfe[_0x4c74('0x21')](_0x411f57);let _0x4e4af6;_0x579d1d(_0x427a7b),_0x4e4af6=_0x4c74('0xe')==_0x48ffaa[_0x4c74('0x1b')][_0x4c74('0x13')]?_0x55c6c6['model'][_0x4c74('0x22')](_0x411f57[_0x4c74('0x20')]):_0x55c6c6[_0x4c74('0x19')][_0x4c74('0x22')](_0x48ffaa[_0x4c74('0x20')],_0x48ffaa[_0x4c74('0x28')]),_0x48ffaa['detach'](),_0x55c6c6[_0x4c74('0x19')][_0x4c74('0x25')](_0x2bfb2b[_0x4c74('0x23')]['batch'],_0x3a2501=>{_0x2bfb2b[_0x4c74('0x23')][_0x4c74('0x5')](),_0x3a2501[_0x4c74('0x27')](_0x3a2501['createRange'](_0x4e4af6[_0x4c74('0x28')])),_0x2bfb2b[_0x4c74('0x23')]['unlock']();});}),_0x55c6c6[_0x4c74('0x3')][_0x4c74('0x18')]['on'](_0x4c74('0xb'),_0xe10ccc(_0x55c6c6,_0x4c74('0x9')),{'priority':_0x4c74('0x10')}),_0x55c6c6[_0x4c74('0x12')][_0x4c74('0x18')]['on']('addMarker:suggestion:deletion',(_0x43bb63,_0x2648f6,_0x4c684e)=>{_0x4c684e[_0x4c74('0xc')][_0x4c74('0xd')]&&_0xe10ccc(_0x55c6c6,_0x4c74('0x9'),{'showActiveMarker':!0x1})['bind'](this)(_0x43bb63,_0x2648f6,_0x4c684e);},{'priority':_0x4c74('0x10')}),_0x55c6c6['editing'][_0x4c74('0x18')]['on'](_0x4c74('0xf'),(_0x5e1f18,_0x3013e8,_0x6a5d3f)=>{const _0x100c60=_0x6a5d3f['mapper'][_0x4c74('0x6')](_0x3013e8[_0x4c74('0x26')]);if(_0x100c60)for(const _0x45ca08 of _0x100c60)_0x45ca08['is'](_0x4c74('0x0'))&&(_0x6a5d3f[_0x4c74('0x14')]['unbindElementFromMarkerName'](_0x45ca08,_0x3013e8[_0x4c74('0x26')]),_0x6a5d3f[_0x4c74('0xa')][_0x4c74('0x1d')](_0x45ca08));},{'priority':_0x4c74('0x10')});}}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @module track-changes/integrations/documentlist
3
+ */
4
+ import { Plugin } from 'ckeditor5/src/core';
5
+ /**
6
+ * Provides track changes plugin integration for document list feature.
7
+ */
8
+ export default class TrackChangesDocumentList extends Plugin {
9
+ /**
10
+ * @inheritDoc
11
+ */
12
+ afterInit(): void;
13
+ }
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x1976=['end','commandParams','before','_descriptionFactory','format','expandListBlocksToCompleteList','listType','documentList','ELEMENT_BULLETED_LIST','isObject','bulletedList','containsItem','has','DocumentListEditing','commands','createPositionAt','parent','nextSibling','*Merge:*\x20%0','isFirstBlockOfListItem','deletion','map','mergeListItemForward','getSelectedBlocks','setSelection','mergeListItemBackward','plugins','commandName','findIndex','enableCommand','indentList','TrackChangesEditing','change','length','toUpperCase','*Format:*\x20insert\x20into\x20%0','value','listItemId','listIndent','*Indent:*\x20%0','ELEMENT_LIST_ITEM','fromRange','previousSibling','selection','_suggestionFactory','markBlockFormat','*Outdent:*\x20%0','push','*Format:*\x20remove\x20from\x20%0','model','*Change\x20to:*\x20%0','after','schema','execute','getFirstRange','createRange','formatBlock','registerDescriptionCallback','accept','getRanges','DocumentListUtils','detach','_LIST','refresh','get','getAttribute','nodeAfter','numberedList','next','forceValue','from','multipleBlocks','start','hasAttribute','document','registerCustomCallback','add'];(function(_0x3f2b00,_0x197648){const _0x25a1f3=function(_0x2ea73c){while(--_0x2ea73c){_0x3f2b00['push'](_0x3f2b00['shift']());}};_0x25a1f3(++_0x197648);}(_0x1976,0x16d));const _0x25a1=function(_0x3f2b00,_0x197648){_0x3f2b00=_0x3f2b00-0x0;let _0x25a1f3=_0x1976[_0x3f2b00];return _0x25a1f3;};import{Plugin as _0x3c06f8}from'ckeditor5/src/core';import{getTranslation as _0x1cf6cc}from'../utils/common-translations';import{LiveRange as _0x42558f}from'ckeditor5/src/engine';export default class z extends _0x3c06f8{['afterInit'](){const _0x58b6ab=this['editor'];if(!_0x58b6ab[_0x25a1('0x2e')][_0x25a1('0x20')](_0x25a1('0x21')))return;const _0x17eebf=_0x58b6ab['locale'],_0x12d855=_0x58b6ab[_0x25a1('0x2e')]['get'](_0x25a1('0x33')),_0x583837=_0x58b6ab['plugins'][_0x25a1('0x7')](_0x25a1('0x3'));function _0x4cdea4(_0xbcd137){return()=>{const _0x3997aa=_0x58b6ab[_0x25a1('0x22')]['get'](_0xbcd137);let _0x525422=Array['from'](_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x11')][_0x25a1('0x3f')][_0x25a1('0x2b')]());if(_0x954690(_0xbcd137)){_0x525422=_0x583837[_0x25a1('0x19')](_0x525422);const _0x3cb8bc=[];for(const _0x2f1fa9 of _0x525422)_0x583837[_0x25a1('0x27')](_0x2f1fa9)&&_0x3cb8bc['push'](_0x2f1fa9);_0x525422=_0x3cb8bc;}_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x34')](()=>{_0x12d855['markMultiRangeBlockFormat'](_0x525422,{'commandName':_0xbcd137,'commandParams':[{'forceValue':!_0x3997aa[_0x25a1('0x38')]}],'formatGroupId':_0x25a1('0x1a')},[],_0x25a1('0x1b'));});};}function _0x341605(_0xbb3d7){return()=>{const _0x42ca17=function(_0xb500a0){const _0x140d1b=(_0xb500a0=Array[_0x25a1('0xd')](_0xb500a0))[_0x25a1('0x30')](_0x62fd72=>!_0x62fd72[_0x25a1('0x10')](_0x25a1('0x39')));return _0x140d1b>-0x1&&(_0xb500a0=_0xb500a0['slice'](0x0,_0x140d1b)),_0xb500a0;}(_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x11')][_0x25a1('0x3f')][_0x25a1('0x2b')]()),_0x3f44c5=_0x42ca17[_0x42ca17[_0x25a1('0x35')]-0x1],_0x4de6fe=_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x48')][_0x25a1('0x1d')](_0x3f44c5)?_0x25a1('0x47'):'end',_0x23af53=_0x58b6ab[_0x25a1('0x45')]['createRange'](_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x23')](_0x42ca17[0x0],_0x25a1('0x16')),_0x58b6ab[_0x25a1('0x45')]['createPositionAt'](_0x3f44c5,_0x4de6fe));_0x58b6ab['model'][_0x25a1('0x34')](()=>{_0x12d855[_0x25a1('0x41')](_0x23af53,{'commandName':_0xbb3d7,'commandParams':[],'formatGroupId':_0x25a1('0x1a')},function(_0x1b46bd){const _0x18d26d=new Set();for(const _0x2adb32 of _0x1b46bd){let _0x598db3=_0x2adb32[_0x25a1('0x25')];for(;_0x598db3&&_0x598db3[_0x25a1('0x8')](_0x25a1('0x3a'))>_0x2adb32[_0x25a1('0x8')](_0x25a1('0x3a'));)_0x18d26d[_0x25a1('0x13')](_0x598db3),_0x598db3=_0x598db3[_0x25a1('0x25')];}return Array[_0x25a1('0xd')](_0x18d26d);}(_0x42ca17));});};}function _0x1bec41(_0x56d0b4){return()=>{const _0x2214de=_0x58b6ab['model'][_0x25a1('0x11')][_0x25a1('0x3f')]['getSelectedBlocks']()[_0x25a1('0xb')]()['value'],_0x19ba18=_0x58b6ab[_0x25a1('0x45')]['createPositionAt'](_0x2214de,_0x25a1('0x16')),_0x3d0374=_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x23')](_0x2214de,0x0),_0x3032ad=_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x4b')](_0x19ba18,_0x3d0374);_0x58b6ab['model'][_0x25a1('0x34')](()=>{_0x12d855['markBlockFormat'](_0x3032ad,{'commandName':_0x56d0b4,'commandParams':[],'formatGroupId':_0x25a1('0x1a')});});};}function _0x954690(_0x84eb27){const _0x46b616=_0x58b6ab[_0x25a1('0x22')][_0x25a1('0x7')](_0x25a1('0x1e'))[_0x25a1('0x38')],_0x2f9c27=_0x58b6ab[_0x25a1('0x22')][_0x25a1('0x7')](_0x25a1('0xa'))[_0x25a1('0x38')];return _0x25a1('0xa')===_0x84eb27?_0x46b616:_0x2f9c27;}_0x12d855['enableCommand'](_0x25a1('0xa'),_0x4cdea4(_0x25a1('0xa'))),_0x12d855[_0x25a1('0x31')](_0x25a1('0x1e'),_0x4cdea4(_0x25a1('0x1e'))),_0x12d855[_0x25a1('0x31')](_0x25a1('0x32'),_0x341605(_0x25a1('0x32'))),_0x12d855['enableCommand']('outdentList',_0x341605('outdentList')),_0x12d855['enableCommand']('splitListItemAfter',_0x1bec41('splitListItemAfter')),_0x12d855[_0x25a1('0x31')]('splitListItemBefore',_0x1bec41('splitListItemBefore')),_0x12d855[_0x25a1('0x17')]['registerElementLabel'](function(_0x4cb2f0){const _0x1a84e7=!_0x58b6ab[_0x25a1('0x45')]['schema'][_0x25a1('0x1d')](_0x4cb2f0),_0x4cf7af=_0x4cb2f0[_0x25a1('0x3e')],_0x5c0ee1=_0x4cb2f0[_0x25a1('0x25')],_0x19acee=_0x4cb2f0['getAttribute'](_0x25a1('0x39')),_0x5b4299=!_0x4cf7af||_0x4cf7af[_0x25a1('0x8')](_0x25a1('0x39'))!==_0x19acee,_0x158866=!_0x5c0ee1||_0x5c0ee1[_0x25a1('0x8')](_0x25a1('0x39'))!==_0x19acee;return _0x1a84e7&&_0x19acee&&_0x5b4299&&_0x158866;},_0xac8659=>_0x1cf6cc(_0x17eebf,_0x25a1('0x3c'),_0xac8659)),_0x12d855[_0x25a1('0x17')][_0x25a1('0x0')](function(_0x139151){const {data:_0x4626fb}=_0x139151;if(!_0x4626fb)return;let _0x541306,_0x5a0e04,_0x3519d9,_0x430214;switch(_0x4626fb[_0x25a1('0x2f')]){case _0x25a1('0x1e'):_0x3519d9=_0x4626fb[_0x25a1('0x15')][0x0][_0x25a1('0xc')],_0x430214=_0x954690(_0x4626fb[_0x25a1('0x2f')]),_0x541306=_0x3519d9?_0x25a1('0x37'):_0x25a1('0x44'),_0x430214&&(_0x541306=_0x25a1('0x46')),_0x5a0e04={'type':_0x25a1('0x18'),'content':_0x1cf6cc(_0x17eebf,_0x541306,_0x1cf6cc(_0x17eebf,_0x25a1('0x1c')))};break;case _0x25a1('0xa'):_0x3519d9=_0x4626fb['commandParams'][0x0][_0x25a1('0xc')],_0x430214=_0x954690(_0x4626fb[_0x25a1('0x2f')]),_0x541306=_0x3519d9?_0x25a1('0x37'):_0x25a1('0x44'),_0x430214&&(_0x541306=_0x25a1('0x46')),_0x5a0e04={'type':_0x25a1('0x18'),'content':_0x1cf6cc(_0x17eebf,_0x541306,_0x1cf6cc(_0x17eebf,'ELEMENT_NUMBERED_LIST'))};break;case _0x25a1('0x32'):_0x541306=_0x25a1('0x3b'),_0x5a0e04={'type':_0x25a1('0x18'),'content':_0x1cf6cc(_0x17eebf,_0x541306,_0x1cf6cc(_0x17eebf,'ELEMENT_LIST_ITEM'))};break;case'outdentList':_0x541306=function(_0x53e615){const _0x49f3d1=_0x53e615['getFirstRange']();let _0x1223fa=_0x49f3d1[_0x25a1('0xf')][_0x25a1('0x9')];for(;_0x1223fa&&_0x49f3d1[_0x25a1('0x1f')](_0x1223fa);){if(_0x1223fa['getAttribute'](_0x25a1('0x3a'))>0x0)return!0x1;_0x1223fa=_0x1223fa[_0x25a1('0x25')];}return!0x0;}(_0x139151)?_0x1cf6cc(_0x17eebf,_0x25a1('0x44'),_0x1cf6cc(_0x17eebf,function(_0x368f0a){const _0x4543e6=_0x368f0a[_0x25a1('0x4a')]()[_0x25a1('0xf')][_0x25a1('0x9')];return'ELEMENT_'+_0x4543e6[_0x25a1('0x8')](_0x25a1('0x1a'))[_0x25a1('0x36')]()+_0x25a1('0x5');}(_0x139151))):_0x1cf6cc(_0x17eebf,_0x25a1('0x42'),_0x1cf6cc(_0x17eebf,'ELEMENT_LIST_ITEM')),_0x5a0e04={'type':_0x25a1('0x18'),'content':_0x541306};break;case _0x25a1('0x2d'):case _0x25a1('0x2a'):!0x1===_0x4626fb[_0x25a1('0xe')]&&(_0x541306=_0x25a1('0x26'),_0x5a0e04={'type':_0x25a1('0x28'),'content':_0x1cf6cc(_0x17eebf,_0x541306,_0x1cf6cc(_0x17eebf,'ELEMENT_LIST_ITEM'))});}return _0x5a0e04;}),_0x12d855[_0x25a1('0x40')][_0x25a1('0x12')](_0x25a1('0x4c'),'documentList',_0x25a1('0x1'),function(_0x1f2d54,_0x532fc5){const _0x433c5c=[];for(let _0xf19ed6 of _0x1f2d54)_0xf19ed6[_0x25a1('0xf')][_0x25a1('0x9')]===_0xf19ed6[_0x25a1('0x14')][_0x25a1('0x24')]&&(_0xf19ed6=_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x4b')](_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x23')](_0xf19ed6['start'][_0x25a1('0x9')],0x0))),_0x433c5c[_0x25a1('0x43')](_0xf19ed6);_0x58b6ab[_0x25a1('0x45')]['change'](_0xa72405=>{const _0x49e89f=_0x58b6ab[_0x25a1('0x45')][_0x25a1('0x11')][_0x25a1('0x3f')],_0xc5a90d=Array['from'](_0x49e89f[_0x25a1('0x2')]())[_0x25a1('0x29')](_0x11b12c=>_0x42558f[_0x25a1('0x3d')](_0x11b12c));_0xa72405['setSelection'](_0x433c5c),_0x58b6ab['commands'][_0x25a1('0x7')](_0x532fc5[_0x25a1('0x2f')])[_0x25a1('0x6')](),_0x532fc5[_0x25a1('0x15')][_0x25a1('0x43')]({'forceDefaultExecution':!0x0}),_0x58b6ab[_0x25a1('0x49')](_0x532fc5['commandName'],..._0x532fc5[_0x25a1('0x15')]),_0xa72405[_0x25a1('0x2c')](_0xc5a90d);for(const _0x18b4b5 of _0xc5a90d)_0x18b4b5[_0x25a1('0x4')]();});});}}
23
+ const _0x2bd0=['enableCommand','_descriptionFactory','multipleBlocks','schema','getAttribute','format','next','*Outdent:*\x20%0','toUpperCase','after','model','_LIST','bulletedList','listIndent','push','parent','DocumentListEditing','DocumentListUtils','get','add','nextSibling','createPositionAt','has','splitListItemAfter','containsItem','plugins','commandName','refresh','*Format:*\x20remove\x20from\x20%0','ELEMENT_BULLETED_LIST','locale','mergeListItemBackward','mergeListItemForward','hasAttribute','documentList','*Change\x20to:*\x20%0','document','TrackChangesEditing','map','_suggestionFactory','end','listItemId','registerCustomCallback','getRanges','isFirstBlockOfListItem','markBlockFormat','numberedList','ELEMENT_LIST_ITEM','slice','setSelection','*Merge:*\x20%0','*Format:*\x20insert\x20into\x20%0','*Indent:*\x20%0','listType','deletion','indentList','getFirstRange','registerElementLabel','value','markMultiRangeBlockFormat','previousSibling','length','outdentList','change','commandParams','ELEMENT_NUMBERED_LIST','expandListBlocksToCompleteList','commands','accept','nodeAfter','selection','start','forceValue','from','getSelectedBlocks'];(function(_0x2e87cb,_0x2bd039){const _0x57fd8b=function(_0x542efb){while(--_0x542efb){_0x2e87cb['push'](_0x2e87cb['shift']());}};_0x57fd8b(++_0x2bd039);}(_0x2bd0,0x127));const _0x57fd=function(_0x2e87cb,_0x2bd039){_0x2e87cb=_0x2e87cb-0x0;let _0x57fd8b=_0x2bd0[_0x2e87cb];return _0x57fd8b;};import{Plugin as _0x208456}from'ckeditor5/src/core';import{getTranslation as _0x302904}from'../utils/common-translations';import{LiveRange as _0xb38ab6}from'ckeditor5/src/engine';export default class L extends _0x208456{['afterInit'](){const _0x574805=this['editor'];if(!_0x574805[_0x57fd('0x1e')][_0x57fd('0x1b')](_0x57fd('0x15')))return;const _0x1d8e47=_0x574805[_0x57fd('0x23')],_0x4dff1c=_0x574805[_0x57fd('0x1e')][_0x57fd('0x17')](_0x57fd('0x2a')),_0x1c19aa=_0x574805[_0x57fd('0x1e')][_0x57fd('0x17')](_0x57fd('0x16'));function _0x4f579d(_0x4e63a7){return()=>{const _0x47053c=_0x574805[_0x57fd('0x48')][_0x57fd('0x17')](_0x4e63a7);let _0x5285ff=Array[_0x57fd('0x3')](_0x574805['model'][_0x57fd('0x29')][_0x57fd('0x0')][_0x57fd('0x4')]());if(_0x4c1b57(_0x4e63a7)){_0x5285ff=_0x1c19aa[_0x57fd('0x47')](_0x5285ff);const _0x58ab06=[];for(const _0x2bfb61 of _0x5285ff)_0x1c19aa[_0x57fd('0x31')](_0x2bfb61)&&_0x58ab06[_0x57fd('0x13')](_0x2bfb61);_0x5285ff=_0x58ab06;}_0x574805[_0x57fd('0xf')][_0x57fd('0x44')](()=>{_0x4dff1c[_0x57fd('0x40')](_0x5285ff,{'commandName':_0x4e63a7,'commandParams':[{'forceValue':!_0x47053c[_0x57fd('0x3f')]}],'formatGroupId':_0x57fd('0x3a')},[],_0x57fd('0x27'));});};}function _0x4f6951(_0x403195){return()=>{const _0x260bc6=function(_0x4cfe90){let _0x3f4027=Array[_0x57fd('0x3')](_0x4cfe90);const _0xa014f9=_0x3f4027['findIndex'](_0x8e5885=>!_0x8e5885[_0x57fd('0x26')](_0x57fd('0x2e')));return _0xa014f9>-0x1&&(_0x3f4027=_0x3f4027[_0x57fd('0x35')](0x0,_0xa014f9)),_0x3f4027;}(_0x574805[_0x57fd('0xf')][_0x57fd('0x29')]['selection'][_0x57fd('0x4')]()),_0xed52a1=_0x260bc6[_0x260bc6[_0x57fd('0x42')]-0x1],_0x3f7d24=_0x574805['model']['schema']['isObject'](_0xed52a1)?_0x57fd('0xe'):'end',_0x39cbec=_0x574805[_0x57fd('0xf')]['createRange'](_0x574805[_0x57fd('0xf')]['createPositionAt'](_0x260bc6[0x0],'before'),_0x574805['model'][_0x57fd('0x1a')](_0xed52a1,_0x3f7d24));_0x574805['model'][_0x57fd('0x44')](()=>{_0x4dff1c['markBlockFormat'](_0x39cbec,{'commandName':_0x403195,'commandParams':[],'formatGroupId':'listType'},function(_0x44ff93){const _0x148d93=new Set();for(const _0x845e9e of _0x44ff93){let _0x5d9208=_0x845e9e[_0x57fd('0x19')];for(;_0x5d9208&&_0x5d9208[_0x57fd('0x9')]('listIndent')>_0x845e9e[_0x57fd('0x9')](_0x57fd('0x12'));)_0x148d93[_0x57fd('0x18')](_0x5d9208),_0x5d9208=_0x5d9208[_0x57fd('0x19')];}return Array[_0x57fd('0x3')](_0x148d93);}(_0x260bc6));});};}function _0x3bd0bf(_0x37bb62){return()=>{const _0x536991=_0x574805['model'][_0x57fd('0x29')][_0x57fd('0x0')][_0x57fd('0x4')]()[_0x57fd('0xb')]()[_0x57fd('0x3f')],_0x206a56=_0x574805[_0x57fd('0xf')]['createPositionAt'](_0x536991,'before'),_0x474b09=_0x574805[_0x57fd('0xf')][_0x57fd('0x1a')](_0x536991,0x0),_0xd65343=_0x574805[_0x57fd('0xf')]['createRange'](_0x206a56,_0x474b09);_0x574805[_0x57fd('0xf')][_0x57fd('0x44')](()=>{_0x4dff1c[_0x57fd('0x32')](_0xd65343,{'commandName':_0x37bb62,'commandParams':[],'formatGroupId':_0x57fd('0x3a')});});};}function _0x4c1b57(_0x66ce2c){const _0xab7a95=_0x574805[_0x57fd('0x48')][_0x57fd('0x17')](_0x57fd('0x11'))['value'],_0x2befd6=_0x574805['commands'][_0x57fd('0x17')](_0x57fd('0x33'))[_0x57fd('0x3f')];return _0x57fd('0x33')===_0x66ce2c?_0xab7a95:_0x2befd6;}_0x4dff1c['enableCommand'](_0x57fd('0x33'),_0x4f579d('numberedList')),_0x4dff1c[_0x57fd('0x5')](_0x57fd('0x11'),_0x4f579d('bulletedList')),_0x4dff1c[_0x57fd('0x5')](_0x57fd('0x3c'),_0x4f6951(_0x57fd('0x3c'))),_0x4dff1c['enableCommand'](_0x57fd('0x43'),_0x4f6951(_0x57fd('0x43'))),_0x4dff1c[_0x57fd('0x5')](_0x57fd('0x1c'),_0x3bd0bf(_0x57fd('0x1c'))),_0x4dff1c[_0x57fd('0x5')]('splitListItemBefore',_0x3bd0bf('splitListItemBefore')),_0x4dff1c[_0x57fd('0x6')][_0x57fd('0x3e')](function(_0x1b5920){const _0x1d4767=!_0x574805[_0x57fd('0xf')][_0x57fd('0x8')]['isObject'](_0x1b5920),_0x3e4da1=_0x1b5920[_0x57fd('0x41')],_0x2cd388=_0x1b5920[_0x57fd('0x19')],_0x539677=_0x1b5920[_0x57fd('0x9')](_0x57fd('0x2e')),_0x459ac8=!_0x3e4da1||_0x3e4da1[_0x57fd('0x9')](_0x57fd('0x2e'))!==_0x539677,_0x4b809c=!_0x2cd388||_0x2cd388['getAttribute'](_0x57fd('0x2e'))!==_0x539677;return _0x1d4767&&Boolean(_0x539677)&&_0x459ac8&&_0x4b809c;},_0x2a4f98=>_0x302904(_0x1d8e47,_0x57fd('0x34'),_0x2a4f98)),_0x4dff1c[_0x57fd('0x6')]['registerDescriptionCallback'](function(_0x1c76f8){const {data:_0x2609ad}=_0x1c76f8;if(!_0x2609ad)return;let _0x14620d,_0x10b293,_0x2e020a,_0x467981;switch(_0x2609ad[_0x57fd('0x1f')]){case _0x57fd('0x11'):_0x2e020a=_0x2609ad['commandParams'][0x0][_0x57fd('0x2')],_0x467981=_0x4c1b57(_0x2609ad[_0x57fd('0x1f')]),_0x14620d=_0x2e020a?'*Format:*\x20insert\x20into\x20%0':_0x57fd('0x21'),_0x467981&&(_0x14620d=_0x57fd('0x28')),_0x10b293={'type':'format','content':_0x302904(_0x1d8e47,_0x14620d,_0x302904(_0x1d8e47,_0x57fd('0x22')))};break;case _0x57fd('0x33'):_0x2e020a=_0x2609ad['commandParams'][0x0][_0x57fd('0x2')],_0x467981=_0x4c1b57(_0x2609ad[_0x57fd('0x1f')]),_0x14620d=_0x2e020a?_0x57fd('0x38'):'*Format:*\x20remove\x20from\x20%0',_0x467981&&(_0x14620d=_0x57fd('0x28')),_0x10b293={'type':_0x57fd('0xa'),'content':_0x302904(_0x1d8e47,_0x14620d,_0x302904(_0x1d8e47,_0x57fd('0x46')))};break;case _0x57fd('0x3c'):_0x14620d=_0x57fd('0x39'),_0x10b293={'type':_0x57fd('0xa'),'content':_0x302904(_0x1d8e47,_0x14620d,_0x302904(_0x1d8e47,'ELEMENT_LIST_ITEM'))};break;case _0x57fd('0x43'):_0x14620d=function(_0x5c9d71){const _0x3bf4ea=_0x5c9d71[_0x57fd('0x3d')]();let _0x48a95d=_0x3bf4ea[_0x57fd('0x1')][_0x57fd('0x4a')];for(;_0x48a95d&&_0x3bf4ea[_0x57fd('0x1d')](_0x48a95d);){if(_0x48a95d[_0x57fd('0x9')](_0x57fd('0x12'))>0x0)return!0x1;_0x48a95d=_0x48a95d['nextSibling'];}return!0x0;}(_0x1c76f8)?_0x302904(_0x1d8e47,_0x57fd('0x21'),_0x302904(_0x1d8e47,function(_0x47bb2a){const _0x5de653=_0x47bb2a[_0x57fd('0x3d')]()['start']['nodeAfter'];return'ELEMENT_'+_0x5de653[_0x57fd('0x9')]('listType')[_0x57fd('0xd')]()+_0x57fd('0x10');}(_0x1c76f8))):_0x302904(_0x1d8e47,_0x57fd('0xc'),_0x302904(_0x1d8e47,_0x57fd('0x34'))),_0x10b293={'type':_0x57fd('0xa'),'content':_0x14620d};break;case _0x57fd('0x24'):case _0x57fd('0x25'):!0x1===_0x2609ad[_0x57fd('0x7')]&&(_0x14620d=_0x57fd('0x37'),_0x10b293={'type':_0x57fd('0x3b'),'content':_0x302904(_0x1d8e47,_0x14620d,_0x302904(_0x1d8e47,_0x57fd('0x34')))});}return _0x10b293;}),_0x4dff1c[_0x57fd('0x2c')][_0x57fd('0x2f')]('formatBlock',_0x57fd('0x27'),_0x57fd('0x49'),function(_0x1bf438,_0x54753b){const _0x5aa8e3=[];for(let _0x408610 of _0x1bf438)_0x408610[_0x57fd('0x1')][_0x57fd('0x4a')]===_0x408610[_0x57fd('0x2d')][_0x57fd('0x14')]&&(_0x408610=_0x574805[_0x57fd('0xf')]['createRange'](_0x574805['model']['createPositionAt'](_0x408610[_0x57fd('0x1')][_0x57fd('0x4a')],0x0))),_0x5aa8e3[_0x57fd('0x13')](_0x408610);_0x574805[_0x57fd('0xf')][_0x57fd('0x44')](_0x164d70=>{const _0x28ed72=_0x574805[_0x57fd('0xf')][_0x57fd('0x29')]['selection'],_0x31aa7b=Array[_0x57fd('0x3')](_0x28ed72[_0x57fd('0x30')]())[_0x57fd('0x2b')](_0xf34c16=>_0xb38ab6['fromRange'](_0xf34c16));_0x164d70[_0x57fd('0x36')](_0x5aa8e3),_0x574805[_0x57fd('0x48')][_0x57fd('0x17')](_0x54753b[_0x57fd('0x1f')])[_0x57fd('0x20')](),_0x54753b[_0x57fd('0x45')][_0x57fd('0x13')]({'forceDefaultExecution':!0x0}),_0x574805['execute'](_0x54753b[_0x57fd('0x1f')],..._0x54753b['commandParams']),_0x164d70['setSelection'](_0x31aa7b);for(const _0x3abc1f of _0x31aa7b)_0x3abc1f['detach']();});});}}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @module track-changes/integrations/documentlistproperties
3
+ */
4
+ import { Plugin } from 'ckeditor5/src/core';
5
+ import type { Description } from '../suggestiondescriptionfactory';
6
+ import type Suggestion from '../suggestion';
7
+ /**
8
+ * Provides track changes plugin integration for document list properties feature.
9
+ */
10
+ export default class TrackChangesDocumentListProperties extends Plugin {
11
+ /**
12
+ * @inheritDoc
13
+ */
14
+ afterInit(): void;
15
+ handleListStyleCommand(executeCommand: Function, options?: {
16
+ type?: string | null;
17
+ }): void;
18
+ handleListReversedCommand(executeCommand: Function, options?: {
19
+ reversed?: boolean;
20
+ }): void;
21
+ handleListStartCommand(executeCommand: Function, options?: {
22
+ startIndex?: number;
23
+ }): void;
24
+ handleDescriptions(suggestion: Suggestion): Description | undefined;
25
+ }
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x2f98=['listStart','handleListStyleCommand','handleListReversedCommand','DocumentListUtils','startIndex','get','config','getListTypeFromListStyleType','change','DocumentListPropertiesEditing','bind','commandParams','_getSuggestionBlocks','plugins','handleDescriptions','editor','_getTranslationKeyForListStyle','*Change\x20to:*\x20%0','locale','hasAttribute','registerDescriptionCallback','TrackChangesEditing','afterInit','listReversed','expandListBlocksToCompleteList','listStyle','has','ELEMENT_','_LIST_','enableCommand','handleListStartCommand','toUpperCase','numbered','*Format:*\x20set\x20order\x20to\x20regular','markMultiRangeBlockFormat','replaceAll','reversed','isListItemBlock','push','listType','filter','format','*Format:*\x20set\x20start\x20index\x20to\x20%0','type','list.properties','from','commandName','getAttribute','model','isFirstBlockOfListItem'];(function(_0x422180,_0x2f98a0){const _0x326650=function(_0xe10119){while(--_0xe10119){_0x422180['push'](_0x422180['shift']());}};_0x326650(++_0x2f98a0);}(_0x2f98,0x17a));const _0x3266=function(_0x422180,_0x2f98a0){_0x422180=_0x422180-0x0;let _0x326650=_0x2f98[_0x422180];return _0x326650;};import{Plugin as _0x2ed9bb}from'ckeditor5/src/core';import{getTranslation as _0x281768}from'../utils/common-translations';export default class vt extends _0x2ed9bb{[_0x3266('0x2c')](){if(!this[_0x3266('0x25')][_0x3266('0x23')][_0x3266('0x30')](_0x3266('0x1f')))return;const _0x110990=this[_0x3266('0x25')][_0x3266('0x1c')][_0x3266('0x1b')](_0x3266('0x10')),_0x44d893=this[_0x3266('0x25')][_0x3266('0x23')][_0x3266('0x1b')](_0x3266('0x2b'));_0x110990['styles']&&_0x44d893[_0x3266('0x1')]('listStyle',this[_0x3266('0x17')][_0x3266('0x20')](this)),_0x110990[_0x3266('0x8')]&&_0x44d893[_0x3266('0x1')](_0x3266('0x2d'),this[_0x3266('0x18')]['bind'](this)),_0x110990[_0x3266('0x1a')]&&_0x44d893[_0x3266('0x1')](_0x3266('0x16'),this[_0x3266('0x2')][_0x3266('0x20')](this)),_0x44d893['_descriptionFactory'][_0x3266('0x2a')](this['handleDescriptions']['bind'](this));}[_0x3266('0x17')](_0x2bd987,_0x811887){const _0x4b0e90=this[_0x3266('0x25')][_0x3266('0x23')][_0x3266('0x1b')](_0x3266('0x2b')),_0x4c3c26=this[_0x3266('0x22')](_0x194303=>_0x194303[_0x3266('0x29')](_0x3266('0xb')));null!==_0x4c3c26&&this[_0x3266('0x25')][_0x3266('0x14')]['change'](()=>{_0x4b0e90[_0x3266('0x6')](_0x4c3c26,{'commandName':_0x3266('0x2f'),'commandParams':[{'type':_0x811887[_0x3266('0xf')]}],'formatGroupId':_0x3266('0x2f')});});}[_0x3266('0x18')](_0x2309ef,_0x38332c){const _0x347583=this[_0x3266('0x25')][_0x3266('0x23')][_0x3266('0x1b')](_0x3266('0x2b')),_0x1b8f6c=this[_0x3266('0x25')]['plugins'][_0x3266('0x1b')](_0x3266('0x19')),_0x3c6f63=this[_0x3266('0x22')](_0x34492e=>_0x1b8f6c[_0x3266('0x9')](_0x34492e)&&_0x3266('0x4')===_0x34492e['getAttribute'](_0x3266('0xb')));null!==_0x3c6f63&&this[_0x3266('0x25')]['model'][_0x3266('0x1e')](()=>{_0x347583[_0x3266('0x6')](_0x3c6f63,{'commandName':_0x3266('0x2d'),'commandParams':[{'reversed':_0x38332c[_0x3266('0x8')]}],'formatGroupId':_0x3266('0x2d')});});}['handleListStartCommand'](_0x46e5d1,_0x3709a2){const _0x2775ac=this[_0x3266('0x25')][_0x3266('0x23')][_0x3266('0x1b')]('TrackChangesEditing'),_0xf80cd6=this[_0x3266('0x25')][_0x3266('0x23')][_0x3266('0x1b')](_0x3266('0x19')),_0x15a1d6=this[_0x3266('0x22')](_0x47e5df=>_0xf80cd6[_0x3266('0x9')](_0x47e5df)&&_0x3266('0x4')===_0x47e5df[_0x3266('0x13')](_0x3266('0xb')));null!==_0x15a1d6&&this['editor'][_0x3266('0x14')][_0x3266('0x1e')](()=>{_0x2775ac['markMultiRangeBlockFormat'](_0x15a1d6,{'commandName':_0x3266('0x16'),'commandParams':[{'startIndex':_0x3709a2[_0x3266('0x1a')]}],'formatGroupId':_0x3266('0x16')});});}[_0x3266('0x24')](_0x57c743){const _0xb87302=this[_0x3266('0x25')][_0x3266('0x28')],{data:_0x34af36}=_0x57c743;if(!_0x34af36)return;let _0x31122e,_0x1cd23e;switch(_0x34af36[_0x3266('0x12')]){case _0x3266('0x2f'):_0x31122e=_0x3266('0x27'),_0x1cd23e={'type':'format','content':_0x281768(_0xb87302,_0x31122e,_0x281768(_0xb87302,this[_0x3266('0x26')](_0x34af36[_0x3266('0x21')][0x0]['type'])))};break;case _0x3266('0x2d'):_0x31122e=_0x34af36[_0x3266('0x21')][0x0]['reversed']?'*Format:*\x20set\x20order\x20to\x20reversed':_0x3266('0x5'),_0x1cd23e={'type':_0x3266('0xd'),'content':_0x281768(_0xb87302,_0x31122e)};break;case _0x3266('0x16'):_0x31122e=_0x3266('0xe'),_0x1cd23e={'type':_0x3266('0xd'),'content':_0x281768(_0xb87302,_0x31122e,_0x34af36['commandParams'][0x0][_0x3266('0x1a')])};}return _0x1cd23e;}['_getSuggestionBlocks'](_0xff2860){const _0x5c220f=this[_0x3266('0x25')][_0x3266('0x23')]['get']('DocumentListUtils');let _0x410a6f=Array[_0x3266('0x11')](this[_0x3266('0x25')][_0x3266('0x14')]['document']['selection']['getSelectedBlocks']())[_0x3266('0xc')](_0xff2860);if(!_0x410a6f['length'])return null;_0x410a6f=_0x5c220f[_0x3266('0x2e')](_0x410a6f);const _0x15533d=[];for(const _0x3c7de8 of _0x410a6f)_0x5c220f[_0x3266('0x15')](_0x3c7de8)&&_0x15533d[_0x3266('0xa')](_0x3c7de8);return _0x15533d;}[_0x3266('0x26')](_0x4f7592){return _0x3266('0x31')+this[_0x3266('0x25')][_0x3266('0x23')][_0x3266('0x1b')]('DocumentListPropertiesUtils')[_0x3266('0x1d')](_0x4f7592)[_0x3266('0x3')]()+_0x3266('0x0')+_0x4f7592[_0x3266('0x3')]()[_0x3266('0x7')]('-','_');}}
23
+ const _0x2a54=['afterInit','getListTypeFromListStyleType','list.properties','ELEMENT_','filter','reversed','TrackChangesEditing','startIndex','document','*Format:*\x20set\x20start\x20index\x20to\x20%0','*Format:*\x20set\x20order\x20to\x20regular','bind','listStyle','commandParams','expandListBlocksToCompleteList','isListItemBlock','model','listType','editor','enableCommand','_descriptionFactory','format','has','DocumentListPropertiesEditing','from','isFirstBlockOfListItem','listReversed','_getSuggestionBlocksForListStyle','_LIST_','_getTranslationKeyForListStyle','handleListStyleCommand','_getSuggestionBlocks','config','toUpperCase','*Format:*\x20set\x20order\x20to\x20reversed','push','change','getSelectedBlocks','handleListStartCommand','listStart','selection','length','getAttribute','handleDescriptions','plugins','markMultiRangeBlockFormat','styles','handleListReversedCommand','numbered','DocumentListUtils','locale','get','replace','registerDescriptionCallback'];(function(_0x2e68e7,_0x2a5458){const _0x20e68f=function(_0x150b0f){while(--_0x150b0f){_0x2e68e7['push'](_0x2e68e7['shift']());}};_0x20e68f(++_0x2a5458);}(_0x2a54,0x127));const _0x20e6=function(_0x2e68e7,_0x2a5458){_0x2e68e7=_0x2e68e7-0x0;let _0x20e68f=_0x2a54[_0x2e68e7];return _0x20e68f;};import{Plugin as _0x5d76cc}from'ckeditor5/src/core';import{getTranslation as _0x3fb280}from'../utils/common-translations';export default class St extends _0x5d76cc{[_0x20e6('0x1d')](){if(!this['editor']['plugins'][_0x20e6('0x33')](_0x20e6('0x34')))return;const _0x3e0e79=this['editor'][_0x20e6('0x7')][_0x20e6('0x1a')](_0x20e6('0x1f')),_0x43ab75=this[_0x20e6('0x2f')][_0x20e6('0x13')]['get'](_0x20e6('0x23'));_0x3e0e79[_0x20e6('0x15')]&&_0x43ab75[_0x20e6('0x30')](_0x20e6('0x29'),this[_0x20e6('0x5')][_0x20e6('0x28')](this)),_0x3e0e79[_0x20e6('0x22')]&&_0x43ab75[_0x20e6('0x30')](_0x20e6('0x1'),this[_0x20e6('0x16')][_0x20e6('0x28')](this)),_0x3e0e79['startIndex']&&_0x43ab75['enableCommand'](_0x20e6('0xe'),this[_0x20e6('0xd')]['bind'](this)),_0x43ab75[_0x20e6('0x31')][_0x20e6('0x1c')](this[_0x20e6('0x12')][_0x20e6('0x28')](this));}[_0x20e6('0x5')](_0x1ce8fe,_0x58bb4e={}){const _0x17da87=this[_0x20e6('0x2f')][_0x20e6('0x13')][_0x20e6('0x1a')](_0x20e6('0x23')),_0x51933b=this[_0x20e6('0x2')]();this[_0x20e6('0x2f')][_0x20e6('0x2d')][_0x20e6('0xb')](()=>{_0x17da87[_0x20e6('0x14')](_0x51933b,{'commandName':'listStyle','commandParams':[{'type':_0x58bb4e['type']}],'formatGroupId':_0x20e6('0x29')});});}[_0x20e6('0x16')](_0x3a7226,_0x525559={}){const _0x59a328=this['editor']['plugins'][_0x20e6('0x1a')](_0x20e6('0x23')),_0x5e7782=this[_0x20e6('0x2f')][_0x20e6('0x13')]['get'](_0x20e6('0x18')),_0x45ecea=this[_0x20e6('0x6')](_0x428d14=>_0x5e7782[_0x20e6('0x2c')](_0x428d14)&&_0x20e6('0x17')===_0x428d14['getAttribute']('listType'));null!==_0x45ecea&&this[_0x20e6('0x2f')][_0x20e6('0x2d')][_0x20e6('0xb')](()=>{_0x59a328['markMultiRangeBlockFormat'](_0x45ecea,{'commandName':_0x20e6('0x1'),'commandParams':[{'reversed':_0x525559[_0x20e6('0x22')]}],'formatGroupId':_0x20e6('0x1')});});}[_0x20e6('0xd')](_0x39b275,_0x5c1296={}){const _0x1f9060=this['editor']['plugins'][_0x20e6('0x1a')](_0x20e6('0x23')),_0x4787a1=this[_0x20e6('0x2f')][_0x20e6('0x13')][_0x20e6('0x1a')]('DocumentListUtils'),_0x8f66cb=this[_0x20e6('0x6')](_0x235438=>_0x4787a1[_0x20e6('0x2c')](_0x235438)&&'numbered'===_0x235438[_0x20e6('0x11')](_0x20e6('0x2e')));null!==_0x8f66cb&&this[_0x20e6('0x2f')][_0x20e6('0x2d')][_0x20e6('0xb')](()=>{_0x1f9060[_0x20e6('0x14')](_0x8f66cb,{'commandName':'listStart','commandParams':[{'startIndex':_0x5c1296[_0x20e6('0x24')]}],'formatGroupId':'listStart'});});}[_0x20e6('0x12')](_0x59c086){const _0x4c3fe5=this[_0x20e6('0x2f')][_0x20e6('0x19')],{data:_0x39428f}=_0x59c086;if(!_0x39428f)return;let _0x281a81,_0x28a097;switch(_0x39428f['commandName']){case _0x20e6('0x29'):_0x281a81='*Change\x20to:*\x20%0',_0x28a097={'type':_0x20e6('0x32'),'content':_0x3fb280(_0x4c3fe5,_0x281a81,_0x3fb280(_0x4c3fe5,this[_0x20e6('0x4')](_0x39428f[_0x20e6('0x2a')][0x0]['type'])))};break;case _0x20e6('0x1'):_0x281a81=_0x39428f[_0x20e6('0x2a')][0x0][_0x20e6('0x22')]?_0x20e6('0x9'):_0x20e6('0x27'),_0x28a097={'type':_0x20e6('0x32'),'content':_0x3fb280(_0x4c3fe5,_0x281a81)};break;case _0x20e6('0xe'):_0x281a81=_0x20e6('0x26'),_0x28a097={'type':'format','content':_0x3fb280(_0x4c3fe5,_0x281a81,_0x39428f['commandParams'][0x0]['startIndex'])};}return _0x28a097;}['_getSuggestionBlocksForListStyle'](){const _0x4a97aa=this[_0x20e6('0x2f')][_0x20e6('0x13')][_0x20e6('0x1a')](_0x20e6('0x18'));let _0x38527b=Array[_0x20e6('0x35')](this[_0x20e6('0x2f')][_0x20e6('0x2d')][_0x20e6('0x25')][_0x20e6('0xf')][_0x20e6('0xc')]());return _0x38527b[_0x20e6('0xa')](..._0x4a97aa[_0x20e6('0x2b')](_0x38527b)),_0x38527b=[...new Set(_0x38527b)],_0x38527b;}['_getSuggestionBlocks'](_0x2b3b95){const _0x37b79a=this[_0x20e6('0x2f')]['plugins'][_0x20e6('0x1a')](_0x20e6('0x18'));let _0x5d7738=Array['from'](this[_0x20e6('0x2f')][_0x20e6('0x2d')][_0x20e6('0x25')][_0x20e6('0xf')][_0x20e6('0xc')]())[_0x20e6('0x21')](_0x2b3b95);if(!_0x5d7738[_0x20e6('0x10')])return null;_0x5d7738=_0x37b79a[_0x20e6('0x2b')](_0x5d7738);const _0x7dbf76=[];for(const _0x40390e of _0x5d7738)_0x37b79a[_0x20e6('0x0')](_0x40390e)&&_0x7dbf76['push'](_0x40390e);return _0x7dbf76;}[_0x20e6('0x4')](_0x244e82){return _0x20e6('0x20')+this['editor'][_0x20e6('0x13')][_0x20e6('0x1a')]('DocumentListPropertiesUtils')[_0x20e6('0x1e')](_0x244e82)[_0x20e6('0x8')]()+_0x20e6('0x3')+_0x244e82[_0x20e6('0x8')]()[_0x20e6('0x1b')](/-/g,'_');}}
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @module track-changes/integrations/entercommand
3
+ */
4
+ import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
5
+ /**
6
+ * Provides track changes plugin integration for {@link module:enter/entercommand~EnterCommand enter command}.
7
+ */
8
+ export default class TrackChangesEnterCommand extends Plugin {
9
+ static get requires(): PluginDependencies;
10
+ init(): void;
11
+ }
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x2a1d=['markerNameToElements','requires','showSuggestionHighlights','model','document','writer','addMarker:suggestion:insertion','createRange','markerName','createPositionAt','markInsertion','parent','high','hasClass','commands','enableCommand','ck-suggestion-marker-split','end','afterExecute','options','editing','selection','split','downcastDispatcher','editor','TrackChangesEditing','removeMarker:suggestion:insertion','init','nextSibling','setSelection','get','remove'];(function(_0xf13762,_0x2a1de6){const _0x5394f4=function(_0x266128){while(--_0x266128){_0xf13762['push'](_0xf13762['shift']());}};_0x5394f4(++_0x2a1de6);}(_0x2a1d,0xa3));const _0x5394=function(_0xf13762,_0x2a1de6){_0xf13762=_0xf13762-0x0;let _0x5394f4=_0x2a1d[_0xf13762];return _0x5394f4;};import{Plugin as _0xbe6701}from'ckeditor5/src/core';import{Enter as _0x4f5270}from'ckeditor5/src/enter';import{LiveRange as _0xc539b4}from'ckeditor5/src/engine';import{downcastSplitMergeMarker as _0x44f27c}from'./utils';export default class H extends _0xbe6701{static get[_0x5394('0x1e')](){return[_0x4f5270];}[_0x5394('0x18')](){const _0x25853b=this[_0x5394('0x15')],_0x5eb8e2=_0x25853b['plugins'][_0x5394('0x1b')](_0x5394('0x16')),_0x2b882f=_0x25853b[_0x5394('0xb')][_0x5394('0x1b')]('enter');_0x5eb8e2[_0x5394('0xc')]('enter',()=>{_0x25853b[_0x5394('0x0')]['change'](_0x141039=>{const _0x52d239=_0x25853b[_0x5394('0x0')][_0x5394('0x1')][_0x5394('0x12')],_0x58d808=_0x52d239['getFirstPosition'](),_0x2cadc8=_0xc539b4['fromRange'](_0x52d239['getFirstRange']());if(_0x2b882f['enterBlock'](_0x141039)){const _0x4ad369=_0x25853b[_0x5394('0x0')][_0x5394('0x6')](_0x58d808[_0x5394('0x8')][_0x5394('0x19')],0x0),_0x481065=_0x141039[_0x5394('0x4')](_0x58d808,_0x4ad369);_0x5eb8e2[_0x5394('0x7')](_0x481065);}else _0x141039[_0x5394('0x1a')](_0x141039['createRange'](_0x2cadc8[_0x5394('0xe')]));_0x2cadc8['detach'](),_0x2b882f['fire'](_0x5394('0xf'),{'writer':_0x141039});});}),_0x25853b[_0x5394('0x11')][_0x5394('0x14')]['on'](_0x5394('0x3'),_0x44f27c(_0x25853b,_0x5394('0x13')),{'priority':_0x5394('0x9')}),_0x25853b['editing'][_0x5394('0x14')]['on'](_0x5394('0x17'),(_0x35ce67,_0x242096,_0x15108a)=>{const _0x5024e6=_0x15108a['mapper'][_0x5394('0x1d')](_0x242096['markerName']);if(_0x5024e6)for(const _0x3a35d4 of _0x5024e6)_0x3a35d4[_0x5394('0xa')](_0x5394('0xd'))&&(_0x15108a['mapper']['unbindElementFromMarkerName'](_0x3a35d4,_0x242096[_0x5394('0x5')]),_0x15108a[_0x5394('0x2')][_0x5394('0x1c')](_0x3a35d4));},{'priority':'high'}),_0x25853b['data'][_0x5394('0x14')]['on']('addMarker:suggestion:insertion',(_0x3e623c,_0x4ce530,_0x1f3ee7)=>{_0x1f3ee7[_0x5394('0x10')][_0x5394('0x1f')]&&_0x44f27c(_0x25853b,_0x5394('0x13'),{'showActiveMarker':!0x1})(_0x3e623c,_0x4ce530,_0x1f3ee7);},{'priority':_0x5394('0x9')});}}
23
+ const _0x1e02=['hasClass','enter','TrackChangesEditing','document','ck-suggestion-marker-split','markInsertion','fromRange','detach','removeMarker:suggestion:insertion','get','init','parent','setSelection','bind','high','writer','createRange','addMarker:suggestion:insertion','getFirstRange','unbindElementFromMarkerName','remove','editing','nextSibling','end','data','downcastDispatcher','fire','mapper','markerName','markerNameToElements','commands','enterBlock','createPositionAt','getFirstPosition','model','split'];(function(_0x328e52,_0x1e0281){const _0x110167=function(_0x5251e1){while(--_0x5251e1){_0x328e52['push'](_0x328e52['shift']());}};_0x110167(++_0x1e0281);}(_0x1e02,0x138));const _0x1101=function(_0x328e52,_0x1e0281){_0x328e52=_0x328e52-0x0;let _0x110167=_0x1e02[_0x328e52];return _0x110167;};import{Plugin as _0x5de964}from'ckeditor5/src/core';import{Enter as _0x5a78c1}from'ckeditor5/src/enter';import{LiveRange as _0x3331ca}from'ckeditor5/src/engine';import{downcastSplitMergeMarker as _0x3cdf34}from'./utils';export default class q extends _0x5de964{static get['requires'](){return[_0x5a78c1];}[_0x1101('0x16')](){const _0x546626=this['editor'],_0x12c49b=_0x546626['plugins'][_0x1101('0x15')](_0x1101('0xe')),_0x229f32=_0x546626[_0x1101('0x6')][_0x1101('0x15')]('enter');_0x12c49b['enableCommand'](_0x1101('0xd'),()=>{_0x546626['model']['change'](_0x27085d=>{const _0x1bf17b=_0x546626[_0x1101('0xa')][_0x1101('0xf')]['selection'],_0x55d885=_0x1bf17b[_0x1101('0x9')](),_0x4de46d=_0x3331ca[_0x1101('0x12')](_0x1bf17b[_0x1101('0x1e')]());if(_0x229f32[_0x1101('0x7')](_0x27085d)){const _0x21112b=_0x546626['model'][_0x1101('0x8')](_0x55d885[_0x1101('0x17')][_0x1101('0x22')],0x0),_0x1b6264=_0x27085d[_0x1101('0x1c')](_0x55d885,_0x21112b);_0x12c49b[_0x1101('0x11')](_0x1b6264);}else _0x27085d[_0x1101('0x18')](_0x27085d['createRange'](_0x4de46d[_0x1101('0x23')]));_0x4de46d[_0x1101('0x13')](),_0x229f32[_0x1101('0x2')]('afterExecute',{'writer':_0x27085d});});}),_0x546626['editing'][_0x1101('0x1')]['on'](_0x1101('0x1d'),_0x3cdf34(_0x546626,_0x1101('0xb')),{'priority':'high'}),_0x546626[_0x1101('0x21')][_0x1101('0x1')]['on'](_0x1101('0x14'),(_0x5de552,_0x41023a,_0x1abd09)=>{const _0x4db888=_0x1abd09['mapper'][_0x1101('0x5')](_0x41023a[_0x1101('0x4')]);if(_0x4db888)for(const _0x15516d of _0x4db888)_0x15516d[_0x1101('0xc')](_0x1101('0x10'))&&(_0x1abd09[_0x1101('0x3')][_0x1101('0x1f')](_0x15516d,_0x41023a[_0x1101('0x4')]),_0x1abd09[_0x1101('0x1b')][_0x1101('0x20')](_0x15516d));},{'priority':_0x1101('0x1a')}),_0x546626[_0x1101('0x0')][_0x1101('0x1')]['on'](_0x1101('0x1d'),(_0x3b92b6,_0x538826,_0x43ec36)=>{_0x43ec36['options']['showSuggestionHighlights']&&_0x3cdf34(_0x546626,_0x1101('0xb'),{'showActiveMarker':!0x1})[_0x1101('0x19')](this)(_0x3b92b6,_0x538826,_0x43ec36);},{'priority':'high'});}}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @module track-changes/integrations/findandreplace
3
+ */
4
+ import { Plugin } from 'ckeditor5/src/core';
5
+ /**
6
+ * Provides track changes plugin integration for find and replace feature.
7
+ */
8
+ export default class TrackChangesFindAndReplace extends Plugin {
9
+ /**
10
+ * @inheritDoc
11
+ */
12
+ afterInit(): void;
13
+ handleFindCommand(executeCommand: Function, callbackOrText: Function | string, options?: {
14
+ matchCase?: boolean;
15
+ wholeWords?: boolean;
16
+ }): void;
17
+ }
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x7147=['FindAndReplaceUtils','replace','getIntersection','get','findPrevious','end','start','createRange','TrackChangesEditing','suggestion:deletion','findByTextCallback','enableCommand','model','getRange','item','_isInDeletionRange','string','afterInit','markers','has','FindAndReplaceEditing','bind','editor','filter','plugins','createPositionAt','handleFindCommand'];(function(_0x3ce4b6,_0x714772){const _0x187ae3=function(_0x591ee6){while(--_0x591ee6){_0x3ce4b6['push'](_0x3ce4b6['shift']());}};_0x187ae3(++_0x714772);}(_0x7147,0x73));const _0x187a=function(_0x3ce4b6,_0x714772){_0x3ce4b6=_0x3ce4b6-0x0;let _0x187ae3=_0x7147[_0x3ce4b6];return _0x187ae3;};import{Plugin as _0x1cf471}from'ckeditor5/src/core';export default class W extends _0x1cf471{[_0x187a('0xa')](){if(!this[_0x187a('0xf')][_0x187a('0x11')][_0x187a('0xc')](_0x187a('0xd')))return;const _0x3220b6=this[_0x187a('0xf')][_0x187a('0x11')][_0x187a('0x17')](_0x187a('0x1'));_0x3220b6['enableCommand']('find',this[_0x187a('0x13')][_0x187a('0xe')](this)),_0x3220b6[_0x187a('0x4')]('findNext'),_0x3220b6[_0x187a('0x4')](_0x187a('0x18')),_0x3220b6[_0x187a('0x4')](_0x187a('0x15')),_0x3220b6[_0x187a('0x4')]('replaceAll');}[_0x187a('0x13')](_0xa32367,_0x5db8ee,_0x5c1eec){const _0x444aa0=this[_0x187a('0xf')][_0x187a('0x11')][_0x187a('0x17')](_0x187a('0x14'));void 0x0!==_0x5c1eec&&_0xa32367(_0x4c4027=>(_0x187a('0x9')==typeof _0x5db8ee?_0x444aa0[_0x187a('0x3')](_0x5db8ee,_0x5c1eec):_0x5db8ee)(_0x4c4027)[_0x187a('0x10')](_0x5c561f=>!0x1===this[_0x187a('0x8')](_0x5c561f,_0x4c4027[_0x187a('0x7')])),_0x5c1eec);}['_isInDeletionRange'](_0x35a6fe,_0x2881de){const _0x17d15f=this[_0x187a('0xf')][_0x187a('0x5')][_0x187a('0x0')](this[_0x187a('0xf')][_0x187a('0x5')][_0x187a('0x12')](_0x2881de,_0x35a6fe[_0x187a('0x1a')]),this[_0x187a('0xf')][_0x187a('0x5')]['createPositionAt'](_0x2881de,_0x35a6fe[_0x187a('0x19')]));for(const _0x9ed26d of this[_0x187a('0xf')][_0x187a('0x5')][_0x187a('0xb')]['getMarkersGroup'](_0x187a('0x2')))if(null!==_0x17d15f[_0x187a('0x16')](_0x9ed26d[_0x187a('0x6')]()))return!0x0;return!0x1;}}
23
+ const _0x5a29=['bind','replace','findNext','replaceAll','findPrevious','find','start','_isInDeletionRange','getIntersection','model','getMarkersGroup','afterInit','markers','createRange','end','handleFindCommand','createPositionAt','suggestion:deletion','string','enableCommand','item','FindAndReplaceUtils','TrackChangesEditing','plugins','editor','get'];(function(_0x310660,_0x5a29ef){const _0x5e208a=function(_0xb67497){while(--_0xb67497){_0x310660['push'](_0x310660['shift']());}};_0x5e208a(++_0x5a29ef);}(_0x5a29,0x132));const _0x5e20=function(_0x310660,_0x5a29ef){_0x310660=_0x310660-0x0;let _0x5e208a=_0x5a29[_0x310660];return _0x5e208a;};import{Plugin as _0x4b7171}from'ckeditor5/src/core';export default class z extends _0x4b7171{[_0x5e20('0x11')](){if(!this[_0x5e20('0x4')][_0x5e20('0x3')]['has']('FindAndReplaceEditing'))return;const _0x17252e=this[_0x5e20('0x4')][_0x5e20('0x3')]['get'](_0x5e20('0x2'));_0x17252e[_0x5e20('0x19')](_0x5e20('0xb'),this['handleFindCommand'][_0x5e20('0x6')](this)),_0x17252e['enableCommand'](_0x5e20('0x8')),_0x17252e[_0x5e20('0x19')](_0x5e20('0xa')),_0x17252e[_0x5e20('0x19')](_0x5e20('0x7')),_0x17252e[_0x5e20('0x19')](_0x5e20('0x9'));}[_0x5e20('0x15')](_0x32a5ea,_0x4fbabb,_0x44c29c={}){const _0x37c817=this[_0x5e20('0x4')][_0x5e20('0x3')][_0x5e20('0x5')](_0x5e20('0x1'));void 0x0!==_0x44c29c&&_0x32a5ea(_0x28675f=>(_0x5e20('0x18')==typeof _0x4fbabb?_0x37c817['findByTextCallback'](_0x4fbabb,_0x44c29c):_0x4fbabb)(_0x28675f)['filter'](_0x55d031=>!0x1===this[_0x5e20('0xd')](_0x55d031,_0x28675f[_0x5e20('0x0')])),_0x44c29c);}[_0x5e20('0xd')](_0x1c4127,_0x541a54){const _0x29a047=this[_0x5e20('0x4')]['model'][_0x5e20('0x13')](this[_0x5e20('0x4')][_0x5e20('0xf')][_0x5e20('0x16')](_0x541a54,_0x1c4127[_0x5e20('0xc')]),this['editor'][_0x5e20('0xf')]['createPositionAt'](_0x541a54,_0x1c4127[_0x5e20('0x14')]));for(const _0xbbbd3d of this[_0x5e20('0x4')][_0x5e20('0xf')][_0x5e20('0x12')][_0x5e20('0x10')](_0x5e20('0x17')))if(null!==_0x29a047[_0x5e20('0xe')](_0xbbbd3d['getRange']()))return!0x0;return!0x1;}}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @module track-changes/integrations/font
3
+ */
4
+ import { Plugin } from 'ckeditor5/src/core';
5
+ /**
6
+ * Provides track changes plugin integration for font features.
7
+ */
8
+ export default class TrackChangesFont extends Plugin {
9
+ /**
10
+ * @inheritDoc
11
+ */
12
+ afterInit(): void;
13
+ }
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x1843=['fontSize','config','toLowerCase','FontSizeEditing','document','isCollapsed','FontBackgroundColorEditing','*Reset\x20font\x20background\x20color*','fontBackgroundColor','*Set\x20font\x20size:*\x20%0','selection','enableCommand','plugins','find','editor','format','label','*Reset\x20font\x20color*','title','*Set\x20font\x20family:*\x20%0','fontFamily','get','value','model','FontSize','afterInit','TrackChangesEditing','commandName','change','fontColor.colors','_descriptionFactory','trim','getRanges','locale','commandParams','fontSize.options','fontColor','*Reset\x20font\x20size*','has','*Reset\x20font\x20family*'];(function(_0x22166c,_0x1843d9){const _0x51e6d0=function(_0x2a63e5){while(--_0x2a63e5){_0x22166c['push'](_0x22166c['shift']());}};_0x51e6d0(++_0x1843d9);}(_0x1843,0xf3));const _0x51e6=function(_0x22166c,_0x1843d9){_0x22166c=_0x22166c-0x0;let _0x51e6d0=_0x1843[_0x22166c];return _0x51e6d0;};import{Plugin as _0x5f555e}from'ckeditor5/src/core';import{normalizeColorOptions as _0x5a8cc4}from'ckeditor5/src/ui';import{getRangesWithAttribute as _0x58c4b3}from'./utils';import{getTranslation as _0xf6b668}from'../utils/common-translations';const Yt=[{'pluginName':_0x51e6('0x0'),'commandName':_0x51e6('0x25')},{'pluginName':'FontFamilyEditing','commandName':_0x51e6('0x11')},{'pluginName':'FontColorEditing','commandName':_0x51e6('0x21')},{'pluginName':_0x51e6('0x3'),'commandName':_0x51e6('0x5')}];export default class J extends _0x5f555e{[_0x51e6('0x16')](){const _0x9cf61e=this[_0x51e6('0xb')][_0x51e6('0x1e')];for(const {pluginName:_0x2da6d9,commandName:_0x1b1f6f}of Yt)this[_0x51e6('0xb')][_0x51e6('0x9')][_0x51e6('0x23')](_0x2da6d9)&&this['_enableCommand'](_0x1b1f6f);this[_0x51e6('0xb')][_0x51e6('0x9')][_0x51e6('0x12')]('TrackChangesEditing')[_0x51e6('0x1b')]['registerDescriptionCallback'](_0x4a8081=>{const {data:_0x1b441b}=_0x4a8081;if(null!=_0x1b441b){if(_0x51e6('0x25')==_0x1b441b[_0x51e6('0x18')]){const _0x230a30=_0x1b441b['commandParams'][0x0][_0x51e6('0x13')];if(_0x230a30){const _0x20191d=this['editor']['plugins'][_0x51e6('0x12')](_0x51e6('0x15'))['normalizeSizeOptions'](this['editor']['config'][_0x51e6('0x12')](_0x51e6('0x20')))[_0x51e6('0xa')](_0x3bd907=>_0x3bd907[_0x51e6('0x14')]==_0x230a30)[_0x51e6('0xf')],_0x346ac3=this[_0x51e6('0xb')][_0x51e6('0x1e')]['_t'](_0x20191d)['toLowerCase']();return{'type':_0x51e6('0xc'),'content':_0xf6b668(_0x9cf61e,_0x51e6('0x6'),_0x346ac3)};}return{'type':_0x51e6('0xc'),'content':_0xf6b668(_0x9cf61e,_0x51e6('0x22'))};}if('fontFamily'==_0x1b441b['commandName']){const _0x5856aa=_0x1b441b[_0x51e6('0x1f')][0x0][_0x51e6('0x13')];return _0x5856aa?{'type':_0x51e6('0xc'),'content':_0xf6b668(_0x9cf61e,_0x51e6('0x10'),_0x5856aa)}:{'type':'format','content':_0xf6b668(_0x9cf61e,_0x51e6('0x24'))};}if(_0x51e6('0x21')==_0x1b441b[_0x51e6('0x18')]){const _0x21fa13=_0x1b441b[_0x51e6('0x1f')][0x0]['value'];if(_0x21fa13){const _0x96eb6e=_0x5a8cc4(this['editor'][_0x51e6('0x26')][_0x51e6('0x12')](_0x51e6('0x1a')))[_0x51e6('0xa')](_0xfb5ee3=>_0xfb5ee3[_0x51e6('0x14')]==_0x21fa13);let _0x4d2fe6=_0x21fa13,_0x36fae5='';return _0x96eb6e&&(_0x4d2fe6=_0x96eb6e[_0x51e6('0xd')],_0x36fae5=_0x9cf61e['_t'](_0x4d2fe6)['toLowerCase']()),{'type':'format','content':_0xf6b668(_0x9cf61e,'*Set\x20font\x20color:*\x20%0',_0x36fae5)['trim'](),'color':{'value':_0x21fa13,'title':_0x36fae5||_0x4d2fe6}};}return{'type':_0x51e6('0xc'),'content':_0xf6b668(_0x9cf61e,_0x51e6('0xe'))};}if(_0x51e6('0x5')==_0x1b441b[_0x51e6('0x18')]){const _0x28d967=_0x1b441b[_0x51e6('0x1f')][0x0]['value'];if(_0x28d967){const _0x4e58a9=_0x5a8cc4(this[_0x51e6('0xb')][_0x51e6('0x26')][_0x51e6('0x12')]('fontBackgroundColor.colors'))[_0x51e6('0xa')](_0x166c35=>_0x166c35[_0x51e6('0x14')]==_0x28d967);let _0x10340b=_0x28d967,_0x508af9='';return _0x4e58a9&&(_0x10340b=_0x4e58a9[_0x51e6('0xd')],_0x508af9=_0x9cf61e['_t'](_0x10340b)[_0x51e6('0x27')]()),{'type':_0x51e6('0xc'),'content':_0xf6b668(_0x9cf61e,'*Set\x20font\x20background\x20color:*\x20%0',_0x508af9)[_0x51e6('0x1c')](),'color':{'value':_0x28d967,'title':_0x508af9||_0x10340b}};}return{'type':'format','content':_0xf6b668(_0x9cf61e,_0x51e6('0x4'))};}}});}['_enableCommand'](_0x45b210){const _0x5c9a26=this[_0x51e6('0xb')];_0x5c9a26[_0x51e6('0x9')]['get'](_0x51e6('0x17'))[_0x51e6('0x8')](_0x45b210,(_0xee7f16,_0x588b23={})=>{const _0x1d1d6b=_0x5c9a26[_0x51e6('0x14')][_0x51e6('0x1')][_0x51e6('0x7')],_0x10fc37=_0x588b23[_0x51e6('0x13')];_0x1d1d6b[_0x51e6('0x2')]?_0xee7f16(_0x588b23):_0x5c9a26[_0x51e6('0x14')][_0x51e6('0x19')](()=>{const _0x26c673=Array['from'](_0x1d1d6b[_0x51e6('0x1d')]());for(const _0x2287f8 of _0x26c673){const _0x360bcc=_0x10fc37?[_0x2287f8]:_0x58c4b3(_0x45b210,_0x2287f8,_0x5c9a26[_0x51e6('0x14')]);for(const _0x1d573f of _0x360bcc)_0x5c9a26['plugins']['get']('TrackChangesEditing')['markInlineFormat'](_0x1d573f,{'commandName':_0x45b210,'commandParams':[{'value':_0x10fc37}]});}});});}}
23
+ const _0x5b37=['FontFamilyEditing','isCollapsed','*Set\x20font\x20family:*\x20%0','model','*Reset\x20font\x20size*','selection','get','fontColor','config','_enableCommand','fontColor.colors','commandParams','*Reset\x20font\x20background\x20color*','TrackChangesEditing','enableCommand','getRanges','value','registerDescriptionCallback','FontColorEditing','*Set\x20font\x20color:*\x20%0','normalizeSizeOptions','trim','has','from','change','fontBackgroundColor.colors','fontFamily','afterInit','editor','format','fontBackgroundColor','markInlineFormat','FontSizeEditing','*Reset\x20font\x20color*','toLowerCase','fontSize.options','_descriptionFactory','find','commandName','fontSize','plugins','FontSize','document','title','locale','FontBackgroundColorEditing','*Set\x20font\x20size:*\x20%0'];(function(_0x301801,_0x5b37ab){const _0x3293dd=function(_0x255c34){while(--_0x255c34){_0x301801['push'](_0x301801['shift']());}};_0x3293dd(++_0x5b37ab);}(_0x5b37,0x12e));const _0x3293=function(_0x301801,_0x5b37ab){_0x301801=_0x301801-0x0;let _0x3293dd=_0x5b37[_0x301801];return _0x3293dd;};import{Plugin as _0x5e292e}from'ckeditor5/src/core';import{normalizeColorOptions as _0x4eddda}from'ckeditor5/src/ui';import{getRangesWithAttribute as _0xc50b58}from'./utils';import{getTranslation as _0x418c27}from'../utils/common-translations';const Jt=[{'pluginName':_0x3293('0xc'),'commandName':_0x3293('0x13')},{'pluginName':_0x3293('0x1b'),'commandName':_0x3293('0x6')},{'pluginName':_0x3293('0x2d'),'commandName':'fontColor'},{'pluginName':_0x3293('0x19'),'commandName':'fontBackgroundColor'}];export default class H extends _0x5e292e{[_0x3293('0x7')](){const _0x30c059=this[_0x3293('0x8')][_0x3293('0x18')];for(const {pluginName:_0x5a9840,commandName:_0x5301e4}of Jt)this[_0x3293('0x8')]['plugins'][_0x3293('0x2')](_0x5a9840)&&this['_enableCommand'](_0x5301e4);this['editor'][_0x3293('0x14')][_0x3293('0x21')](_0x3293('0x28'))[_0x3293('0x10')][_0x3293('0x2c')](_0x47c23e=>{const _0x5a0cc5=_0x30c059['t'],{data:_0x8db5bd}=_0x47c23e;if(null!=_0x8db5bd){if(_0x3293('0x13')==_0x8db5bd[_0x3293('0x12')]){const _0x60b6a6=_0x8db5bd[_0x3293('0x26')][0x0][_0x3293('0x2b')];if(_0x60b6a6){const _0x4157d3=_0x5a0cc5(this[_0x3293('0x8')][_0x3293('0x14')][_0x3293('0x21')](_0x3293('0x15'))[_0x3293('0x0')](this[_0x3293('0x8')][_0x3293('0x23')]['get'](_0x3293('0xf')))[_0x3293('0x11')](_0x232f33=>_0x232f33[_0x3293('0x1e')]==_0x60b6a6)[_0x3293('0x17')])['toLowerCase']();return{'type':_0x3293('0x9'),'content':_0x418c27(_0x30c059,_0x3293('0x1a'),_0x4157d3)};}return{'type':_0x3293('0x9'),'content':_0x418c27(_0x30c059,_0x3293('0x1f'))};}if(_0x3293('0x6')==_0x8db5bd[_0x3293('0x12')]){const _0x8540cc=_0x8db5bd[_0x3293('0x26')][0x0][_0x3293('0x2b')];return _0x8540cc?{'type':'format','content':_0x418c27(_0x30c059,_0x3293('0x1d'),_0x8540cc)}:{'type':'format','content':_0x418c27(_0x30c059,'*Reset\x20font\x20family*')};}if(_0x3293('0x22')==_0x8db5bd['commandName']){const _0x3a1b54=_0x8db5bd['commandParams'][0x0]['value'];if(_0x3a1b54){const _0x1f6c0e=_0x4eddda(this[_0x3293('0x8')][_0x3293('0x23')]['get'](_0x3293('0x25')))[_0x3293('0x11')](_0x2607a5=>_0x2607a5['model']==_0x3a1b54);let _0x28e394=_0x3a1b54,_0x4f5d7e='';return _0x1f6c0e&&(_0x28e394=_0x1f6c0e['label'],_0x4f5d7e=_0x5a0cc5(_0x28e394)[_0x3293('0xe')]()),{'type':_0x3293('0x9'),'content':_0x418c27(_0x30c059,_0x3293('0x2e'),_0x4f5d7e)[_0x3293('0x1')](),'color':{'value':_0x3a1b54,'title':_0x4f5d7e||_0x28e394}};}return{'type':_0x3293('0x9'),'content':_0x418c27(_0x30c059,_0x3293('0xd'))};}if(_0x3293('0xa')==_0x8db5bd['commandName']){const _0x555384=_0x8db5bd[_0x3293('0x26')][0x0][_0x3293('0x2b')];if(_0x555384){const _0x77f2b4=_0x4eddda(this[_0x3293('0x8')][_0x3293('0x23')][_0x3293('0x21')](_0x3293('0x5')))[_0x3293('0x11')](_0x1d847e=>_0x1d847e['model']==_0x555384);let _0x3e097b=_0x555384,_0x2eeef7='';return _0x77f2b4&&(_0x3e097b=_0x77f2b4['label'],_0x2eeef7=_0x5a0cc5(_0x3e097b)[_0x3293('0xe')]()),{'type':'format','content':_0x418c27(_0x30c059,'*Set\x20font\x20background\x20color:*\x20%0',_0x2eeef7)[_0x3293('0x1')](),'color':{'value':_0x555384,'title':_0x2eeef7||_0x3e097b}};}return{'type':_0x3293('0x9'),'content':_0x418c27(_0x30c059,_0x3293('0x27'))};}}});}[_0x3293('0x24')](_0x295782){const _0x27097f=this[_0x3293('0x8')];_0x27097f[_0x3293('0x14')][_0x3293('0x21')](_0x3293('0x28'))[_0x3293('0x29')](_0x295782,(_0x10bc4d,_0x3e9a91={})=>{const _0x5b69f0=_0x27097f[_0x3293('0x1e')][_0x3293('0x16')][_0x3293('0x20')],_0xedd19c=_0x3e9a91['value'];_0x5b69f0[_0x3293('0x1c')]?_0x10bc4d(_0x3e9a91):_0x27097f['model'][_0x3293('0x4')](()=>{const _0x3dfc23=Array[_0x3293('0x3')](_0x5b69f0[_0x3293('0x2a')]());for(const _0x4190e3 of _0x3dfc23){const _0x255df8=_0xedd19c?[_0x4190e3]:_0xc50b58(_0x295782,_0x4190e3,_0x27097f[_0x3293('0x1e')]);for(const _0x4a10c7 of _0x255df8)_0x27097f[_0x3293('0x14')][_0x3293('0x21')](_0x3293('0x28'))[_0x3293('0xb')](_0x4a10c7,{'commandName':_0x295782,'commandParams':[{'value':_0xedd19c}]});}});});}}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @module track-changes/integrations/heading
3
+ */
4
+ import { Plugin } from 'ckeditor5/src/core';
5
+ /**
6
+ * Provides track changes plugin integration for heading feature.
7
+ */
8
+ export default class TrackChangesHeading extends Plugin {
9
+ /**
10
+ * @inheritDoc
11
+ */
12
+ afterInit(): void;
13
+ }
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x377b=['format','match','checkChild','registerElementLabel','schema','ELEMENT_HEADING_CUSTOM','locale','HeadingEditing','find','paragraph','document','ELEMENT_HEADING','registerDescriptionCallback','commandName','filter','model','get','afterInit','value','TrackChangesEditing','change','config','from','*Change\x20to:*\x20%0','heading','editor','plugins','title','parent','markBlockFormat','formatBlock','_descriptionFactory','name'];(function(_0x17fb52,_0x377b0b){const _0x5006a5=function(_0x2fea2b){while(--_0x2fea2b){_0x17fb52['push'](_0x17fb52['shift']());}};_0x5006a5(++_0x377b0b);}(_0x377b,0xc8));const _0x5006=function(_0x17fb52,_0x377b0b){_0x17fb52=_0x17fb52-0x0;let _0x5006a5=_0x377b[_0x17fb52];return _0x5006a5;};import{Plugin as _0x355c66}from'ckeditor5/src/core';import{getElementsAffectedByListItemRename as _0xe53a5f}from'./utils';import{getTranslation as _0xf4cbdb}from'../utils/common-translations';export default class K extends _0x355c66{[_0x5006('0xf')](){const _0x3c9a06=this['editor'],_0x539926=_0x3c9a06[_0x5006('0x4')],_0xa454aa=_0x3c9a06[_0x5006('0x13')]['get']('heading.options');if(!_0x3c9a06[_0x5006('0x18')]['has'](_0x5006('0x5')))return;const _0x1b2375=_0x3c9a06[_0x5006('0x18')][_0x5006('0xe')](_0x5006('0x11'));_0x1b2375['enableCommand'](_0x5006('0x16'),(_0x437f09,_0x1e89c7)=>{const _0x525ca9=_0x1e89c7['value'],_0xd4dcf9=Array[_0x5006('0x14')](this[_0x5006('0x17')]['model'][_0x5006('0x8')]['selection']['getSelectedBlocks']())[_0x5006('0xc')](_0x1f7b4b=>function(_0x507424,_0x522378,_0x1e7de7){return _0x1e7de7[_0x5006('0x0')](_0x507424[_0x5006('0x1a')],_0x522378)&&!_0x1e7de7['isObject'](_0x507424)&&_0x507424[_0x5006('0x1e')]!=_0x522378;}(_0x1f7b4b,_0x525ca9,this[_0x5006('0x17')]['model'][_0x5006('0x2')]));_0x3c9a06[_0x5006('0xd')][_0x5006('0x12')](()=>{for(const _0x46e79a of _0xd4dcf9)_0x1b2375[_0x5006('0x1b')](_0x46e79a,{'commandName':'heading','commandParams':[_0x1e89c7],'formatGroupId':'blockName'},_0xe53a5f(_0x46e79a));});});for(const _0x195dd7 of _0xa454aa)_0x5006('0x7')!=_0x195dd7[_0x5006('0xd')]&&_0x1b2375[_0x5006('0x1d')][_0x5006('0x1')](_0x195dd7[_0x5006('0xd')],_0x389cd3=>{const _0x21754a=tn(_0x195dd7['model']);return null!==_0x21754a?_0xad9dd7(_0x389cd3,_0x21754a):_0x468d5a(_0x389cd3,_0x195dd7[_0x5006('0x19')]);});function _0xad9dd7(_0x3c45aa,_0x3b14fa){return _0xf4cbdb(_0x539926,_0x5006('0x9'),[_0x3c45aa,_0x3b14fa]);}function _0x468d5a(_0x29ebb4,_0x1a3c74){return _0xf4cbdb(_0x539926,_0x5006('0x3'),[_0x29ebb4,_0x1a3c74]);}_0x1b2375[_0x5006('0x1d')][_0x5006('0xa')](_0x15745a=>{const {type:_0x43953a,data:_0x2578a7}=_0x15745a;if(_0x5006('0x1c')==_0x43953a&&_0x2578a7&&_0x5006('0x16')==_0x2578a7[_0x5006('0xb')]){const _0x1fc6fe=_0x2578a7['commandParams'][0x0][_0x5006('0x10')],_0x24e9f2=tn(_0x1fc6fe);if(null!==_0x24e9f2)return{'type':_0x5006('0x1f'),'content':_0xf4cbdb(_0x539926,_0x5006('0x15'),_0xad9dd7(0x1,_0x24e9f2))};const _0x487cf1=_0xa454aa[_0x5006('0x6')](_0xf5536b=>_0xf5536b[_0x5006('0xd')]===_0x1fc6fe)[_0x5006('0x19')];return{'type':_0x5006('0x1f'),'content':_0xf4cbdb(_0x539926,_0x5006('0x15'),_0x468d5a(0x1,_0x487cf1))};}});}}function tn(_0x15e9c5){const _0x56b7d0=_0x15e9c5[_0x5006('0x20')](/^heading(\d+)$/);return _0x56b7d0?_0x56b7d0[0x1]:null;}
23
+ const _0xc426=['get','value','document','commandParams','heading.options','registerDescriptionCallback','filter','afterInit','heading','has','markBlockFormat','title','plugins','from','*Change\x20to:*\x20%0','name','ELEMENT_HEADING_CUSTOM','HeadingEditing','selection','ELEMENT_HEADING','change','enableCommand','config','checkChild','format','getSelectedBlocks','find','blockName','_descriptionFactory','editor','model','parent'];(function(_0x294a70,_0xc4264f){const _0x202e5d=function(_0x59ad7f){while(--_0x59ad7f){_0x294a70['push'](_0x294a70['shift']());}};_0x202e5d(++_0xc4264f);}(_0xc426,0x111));const _0x202e=function(_0x294a70,_0xc4264f){_0x294a70=_0x294a70-0x0;let _0x202e5d=_0xc426[_0x294a70];return _0x202e5d;};import{Plugin as _0x2b3512}from'ckeditor5/src/core';import{getElementsAffectedByListItemRename as _0x46483d}from'./utils';import{getTranslation as _0x29d7c2}from'../utils/common-translations';export default class W extends _0x2b3512{[_0x202e('0x16')](){const _0x4d84d1=this['editor'],_0x542b96=_0x4d84d1['locale'],_0x227b52=_0x4d84d1[_0x202e('0x5')]['get'](_0x202e('0x13'));if(!_0x4d84d1[_0x202e('0x1b')][_0x202e('0x18')](_0x202e('0x0')))return;const _0x21a22b=_0x4d84d1[_0x202e('0x1b')][_0x202e('0xf')]('TrackChangesEditing');_0x21a22b[_0x202e('0x4')](_0x202e('0x17'),(_0xe50ecb,_0x3145bc)=>{const _0x3d4573=_0x3145bc[_0x202e('0x10')],_0x28db5f=Array[_0x202e('0x1c')](this[_0x202e('0xc')]['model'][_0x202e('0x11')][_0x202e('0x1')][_0x202e('0x8')]())[_0x202e('0x15')](_0x2b646e=>function(_0x213147,_0x9a5ec9,_0x4dcfb1){return _0x4dcfb1[_0x202e('0x6')](_0x213147[_0x202e('0xe')],_0x9a5ec9)&&!_0x4dcfb1['isObject'](_0x213147)&&_0x213147[_0x202e('0x1e')]!=_0x9a5ec9;}(_0x2b646e,_0x3d4573,this['editor']['model']['schema']));_0x4d84d1[_0x202e('0xd')][_0x202e('0x3')](()=>{for(const _0xf31c16 of _0x28db5f)_0x21a22b[_0x202e('0x19')](_0xf31c16,{'commandName':_0x202e('0x17'),'commandParams':[_0x3145bc],'formatGroupId':_0x202e('0xa')},_0x46483d(_0xf31c16));});});for(const _0x24db90 of _0x227b52)'paragraph'!=_0x24db90[_0x202e('0xd')]&&_0x21a22b[_0x202e('0xb')]['registerElementLabel'](_0x24db90[_0x202e('0xd')],_0x44ba0a=>{const _0x245f1a=Yt(_0x24db90[_0x202e('0xd')]);return null!==_0x245f1a?_0x502790(_0x44ba0a,_0x245f1a):_0x55f248(_0x44ba0a,_0x24db90[_0x202e('0x1a')]);});function _0x502790(_0x149ca1,_0x1714a9){return _0x29d7c2(_0x542b96,_0x202e('0x2'),[_0x149ca1,_0x1714a9]);}function _0x55f248(_0x599dea,_0x5c99f1){return _0x29d7c2(_0x542b96,_0x202e('0x1f'),[_0x599dea,_0x5c99f1]);}_0x21a22b[_0x202e('0xb')][_0x202e('0x14')](_0x285600=>{const {type:_0x20a3dc,data:_0x40bd15}=_0x285600;if('formatBlock'==_0x20a3dc&&_0x40bd15&&'heading'==_0x40bd15['commandName']){const _0x1c82dd=_0x40bd15[_0x202e('0x12')][0x0][_0x202e('0x10')],_0x4e9903=Yt(_0x1c82dd);if(null!==_0x4e9903)return{'type':'format','content':_0x29d7c2(_0x542b96,'*Change\x20to:*\x20%0',_0x502790(0x1,_0x4e9903))};const _0x4b7a63=_0x227b52[_0x202e('0x9')](_0x5b6d0c=>_0x5b6d0c[_0x202e('0xd')]===_0x1c82dd)[_0x202e('0x1a')];return{'type':_0x202e('0x7'),'content':_0x29d7c2(_0x542b96,_0x202e('0x1d'),_0x55f248(0x1,_0x4b7a63))};}});}}function Yt(_0x26f522){const _0x1436cd=_0x26f522['match'](/^heading(\d+)$/);return _0x1436cd?_0x1436cd[0x1]:null;}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @module track-changes/integrations/highlight
3
+ */
4
+ import { Plugin } from 'ckeditor5/src/core';
5
+ /**
6
+ * Provides track changes plugin integration for highlight feature.
7
+ */
8
+ export default class TrackChangesHighlight extends Plugin {
9
+ /**
10
+ * @inheritDoc
11
+ */
12
+ afterInit(): void;
13
+ }
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x30ec=['editor','FORMAT_HIGHLIGHT','push','plugins','color','config','selection','model','format','commandName','get','formatInline','item','backward','_descriptionFactory','toLowerCase','title','*Set\x20highlight:*\x20%0','markInlineFormat','getAttribute','TrackChangesEditing','has','afterInit','document','locale','hasAttribute','value','highlight'];(function(_0x464f6f,_0x30ec5e){const _0x448d86=function(_0x56e61c){while(--_0x56e61c){_0x464f6f['push'](_0x464f6f['shift']());}};_0x448d86(++_0x30ec5e);}(_0x30ec,0x18b));const _0x448d=function(_0x464f6f,_0x30ec5e){_0x464f6f=_0x464f6f-0x0;let _0x448d86=_0x30ec[_0x464f6f];return _0x448d86;};import{Plugin as _0x306e2c}from'ckeditor5/src/core';import{getTranslation as _0x21bd97}from'../utils/common-translations';import{getRangesWithAttribute as _0x5a69c7}from'./utils';export default class Q extends _0x306e2c{[_0x448d('0x13')](){const _0x463d15=this[_0x448d('0x19')];if(!_0x463d15[_0x448d('0x0')][_0x448d('0x12')]('HighlightEditing'))return;const _0x486bf2=_0x463d15['plugins'][_0x448d('0x7')](_0x448d('0x11'));_0x486bf2['enableCommand'](_0x448d('0x18'),(_0xa9604a,_0x486d4f={})=>{const _0x22d707=_0x463d15[_0x448d('0x4')][_0x448d('0x14')][_0x448d('0x3')],_0x10e923=_0x22d707[_0x448d('0x10')](_0x448d('0x18'));let _0x45d1a0=_0x486d4f[_0x448d('0x17')],_0x50007c=[];if(_0x22d707['isCollapsed']){const _0x424d18=_0x22d707['getFirstPosition']();if(!_0x22d707[_0x448d('0x16')]('highlight'))return void _0xa9604a(_0x486d4f);{const _0x396240=_0x2631ae=>_0x2631ae[_0x448d('0x9')][_0x448d('0x10')](_0x448d('0x18'))===_0x10e923,_0x4cbfb9=_0x424d18['getLastMatchingPosition'](_0x396240,{'direction':_0x448d('0xa')}),_0x442ee5=_0x424d18['getLastMatchingPosition'](_0x396240);_0x50007c=[_0x463d15[_0x448d('0x4')]['createRange'](_0x4cbfb9,_0x442ee5)],_0x45d1a0==_0x10e923&&(_0x45d1a0=null);}}else for(const _0x1b1314 of _0x22d707['getRanges']())_0x45d1a0?_0x50007c[_0x448d('0x1b')](_0x1b1314):_0x50007c[_0x448d('0x1b')](..._0x5a69c7(_0x448d('0x18'),_0x1b1314,_0x463d15[_0x448d('0x4')]));_0x463d15['model']['change'](()=>{for(const _0x3a0097 of _0x50007c)_0x486bf2[_0x448d('0xf')](_0x3a0097,{'commandName':_0x448d('0x18'),'commandParams':[{'value':_0x45d1a0}]});});});const _0x44c896=_0x463d15[_0x448d('0x15')];_0x486bf2[_0x448d('0xb')]['registerDescriptionCallback'](_0x2ae12c=>{const {type:_0xdf9f14,data:_0x2a86e3}=_0x2ae12c;if(_0x448d('0x8')==_0xdf9f14&&_0x2a86e3&&_0x448d('0x18')==_0x2a86e3[_0x448d('0x6')]){const _0x51b589=_0x2a86e3['commandParams'][0x0][_0x448d('0x17')];if(_0x51b589){const _0x552f30=_0x463d15[_0x448d('0x2')]['get']('highlight.options')['find'](_0x4beae6=>_0x4beae6[_0x448d('0x4')]==_0x51b589),_0x190a02=_0x44c896['_t'](_0x552f30[_0x448d('0xd')])[_0x448d('0xc')]();return{'type':_0x448d('0x5'),'content':_0x21bd97(_0x44c896,_0x448d('0xe'),_0x190a02),'color':{'value':_0x552f30[_0x448d('0x1')],'title':_0x552f30['title']}};}return{'type':'format','content':_0x21bd97(_0x44c896,'*Remove\x20highlight*',_0x21bd97(_0x44c896,_0x448d('0x1a')))};}});}}
23
+ const _0x29fa=['getLastMatchingPosition','commandName','plugins','HighlightEditing','*Set\x20highlight:*\x20%0','config','formatInline','getFirstPosition','_descriptionFactory','afterInit','markInlineFormat','push','model','getRanges','locale','hasAttribute','change','format','registerDescriptionCallback','getAttribute','highlight.options','value','backward','commandParams','editor','highlight','get','find','has','createRange','toLowerCase','FORMAT_HIGHLIGHT','selection','title'];(function(_0x37f4b2,_0x29faf2){const _0xdd3d70=function(_0x49fc67){while(--_0x49fc67){_0x37f4b2['push'](_0x37f4b2['shift']());}};_0xdd3d70(++_0x29faf2);}(_0x29fa,0x14f));const _0xdd3d=function(_0x37f4b2,_0x29faf2){_0x37f4b2=_0x37f4b2-0x0;let _0xdd3d70=_0x29fa[_0x37f4b2];return _0xdd3d70;};import{Plugin as _0x45b51d}from'ckeditor5/src/core';import{getTranslation as _0x1f1fee}from'../utils/common-translations';import{getRangesWithAttribute as _0x52ab2c}from'./utils';export default class J extends _0x45b51d{[_0xdd3d('0xe')](){const _0xe32e15=this[_0xdd3d('0x1d')];if(!_0xe32e15['plugins'][_0xdd3d('0x21')](_0xdd3d('0x8')))return;const _0xff0eda=_0xe32e15[_0xdd3d('0x7')][_0xdd3d('0x1f')]('TrackChangesEditing');_0xff0eda['enableCommand'](_0xdd3d('0x1e'),(_0xf5bb42,_0x422957={})=>{const _0x1f461a=_0xe32e15[_0xdd3d('0x11')]['document'][_0xdd3d('0x3')],_0x4e6df4=_0x1f461a[_0xdd3d('0x18')]('highlight');let _0x44aee0=_0x422957[_0xdd3d('0x1a')],_0x204f1b=[];if(_0x1f461a['isCollapsed']){const _0x27c0a4=_0x1f461a[_0xdd3d('0xc')]();if(!_0x1f461a[_0xdd3d('0x14')]('highlight'))return void _0xf5bb42(_0x422957);{const _0x27c905=_0x18771c=>_0x18771c['item'][_0xdd3d('0x18')](_0xdd3d('0x1e'))===_0x4e6df4,_0x4ea07d=_0x27c0a4[_0xdd3d('0x5')](_0x27c905,{'direction':_0xdd3d('0x1b')}),_0x51846c=_0x27c0a4['getLastMatchingPosition'](_0x27c905);_0x204f1b=[_0xe32e15[_0xdd3d('0x11')][_0xdd3d('0x0')](_0x4ea07d,_0x51846c)],_0x44aee0==_0x4e6df4&&(_0x44aee0=null);}}else for(const _0x3aba5c of _0x1f461a[_0xdd3d('0x12')]())_0x44aee0?_0x204f1b['push'](_0x3aba5c):_0x204f1b[_0xdd3d('0x10')](..._0x52ab2c(_0xdd3d('0x1e'),_0x3aba5c,_0xe32e15[_0xdd3d('0x11')]));_0xe32e15[_0xdd3d('0x11')][_0xdd3d('0x15')](()=>{for(const _0x3cb73a of _0x204f1b)_0xff0eda[_0xdd3d('0xf')](_0x3cb73a,{'commandName':_0xdd3d('0x1e'),'commandParams':[{'value':_0x44aee0}]});});});const _0x3df193=_0xe32e15[_0xdd3d('0x13')];_0xff0eda[_0xdd3d('0xd')][_0xdd3d('0x17')](_0x206409=>{const {type:_0x52b4b3,data:_0x3b808e}=_0x206409;if(_0xdd3d('0xb')==_0x52b4b3&&_0x3b808e&&_0xdd3d('0x1e')==_0x3b808e[_0xdd3d('0x6')]){const _0x3deb2f=_0x3df193['t'],_0x5becd5=_0x3b808e[_0xdd3d('0x1c')][0x0]['value'];if(_0x5becd5){const _0x44d27d=_0xe32e15[_0xdd3d('0xa')][_0xdd3d('0x1f')](_0xdd3d('0x19'))[_0xdd3d('0x20')](_0x406998=>_0x406998[_0xdd3d('0x11')]==_0x5becd5),_0x5bbc34=_0x3deb2f(_0x44d27d[_0xdd3d('0x4')])[_0xdd3d('0x1')]();return{'type':_0xdd3d('0x16'),'content':_0x1f1fee(_0x3df193,_0xdd3d('0x9'),_0x5bbc34),'color':{'value':_0x44d27d['color'],'title':_0x44d27d['title']}};}return{'type':_0xdd3d('0x16'),'content':_0x1f1fee(_0x3df193,'*Remove\x20highlight*',_0x1f1fee(_0x3df193,_0xdd3d('0x2')))};}});}}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @module track-changes/integrations/horizontalline
3
+ */
4
+ import { Plugin } from 'ckeditor5/src/core';
5
+ /**
6
+ * Provides track changes plugin integration for {@link module:horizontal-line/horizontalline~HorizontalLine horizontal line feature}.
7
+ */
8
+ export default class TrackChangesHorizontalLine extends Plugin {
9
+ /**
10
+ * @inheritDoc
11
+ */
12
+ afterInit(): void;
13
+ }
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x3024=['HorizontalLineEditing','createEmptyElement','dataDowncast','registerElementLabel','ELEMENT_HORIZONTAL_LINE','horizontalLine','div','ck-horizontal-line','TrackChangesEditing','editor','get','createContainerElement','enableCommand','plugins','has','conversion'];(function(_0x50b0ca,_0x30242e){const _0x25a67e=function(_0x5f4624){while(--_0x5f4624){_0x50b0ca['push'](_0x50b0ca['shift']());}};_0x25a67e(++_0x30242e);}(_0x3024,0x1b7));const _0x25a6=function(_0x50b0ca,_0x30242e){_0x50b0ca=_0x50b0ca-0x0;let _0x25a67e=_0x3024[_0x50b0ca];return _0x25a67e;};import{Plugin as _0x115e7c}from'ckeditor5/src/core';import{getTranslation as _0x39dd75}from'../utils/common-translations';export default class V extends _0x115e7c{['afterInit'](){const _0x418aae=this[_0x25a6('0x2')];if(!_0x418aae[_0x25a6('0x6')][_0x25a6('0x7')](_0x25a6('0x9')))return;_0x418aae[_0x25a6('0x6')][_0x25a6('0x3')](_0x25a6('0x1'))[_0x25a6('0x5')](_0x25a6('0xe'));const _0x1e3a9e=_0x418aae['plugins'][_0x25a6('0x3')]('TrackChangesEditing'),_0x2bd1db=_0x418aae['locale'];_0x1e3a9e['_descriptionFactory'][_0x25a6('0xc')](_0x25a6('0xe'),_0x47f718=>_0x39dd75(_0x2bd1db,_0x25a6('0xd'),_0x47f718)),_0x418aae[_0x25a6('0x8')]['for'](_0x25a6('0xb'))['elementToStructure']({'model':_0x25a6('0xe'),'view':(_0x3d2a8d,{writer:_0x126d38,options:_0x282faa})=>{if(!_0x282faa['showSuggestionHighlights'])return;const _0x4f5e98=_0x126d38[_0x25a6('0x4')](_0x25a6('0xf')),_0x5fae01=_0x126d38[_0x25a6('0xa')]('hr');return _0x126d38['addClass'](_0x25a6('0x0'),_0x4f5e98),_0x126d38['insert'](_0x126d38['createPositionAt'](_0x4f5e98,0x0),_0x5fae01),_0x4f5e98;},'converterPriority':'high'});}}
23
+ const _0x3eaf=['has','dataDowncast','createPositionAt','showSuggestionHighlights','insert','enableCommand','editor','conversion','afterInit','createEmptyElement','elementToStructure','ELEMENT_HORIZONTAL_LINE','plugins','get','horizontalLine','TrackChangesEditing','div','createContainerElement'];(function(_0x190566,_0x3eafa6){const _0x385a4c=function(_0x121d43){while(--_0x121d43){_0x190566['push'](_0x190566['shift']());}};_0x385a4c(++_0x3eafa6);}(_0x3eaf,0xcd));const _0x385a=function(_0x190566,_0x3eafa6){_0x190566=_0x190566-0x0;let _0x385a4c=_0x3eaf[_0x190566];return _0x385a4c;};import{Plugin as _0x1cb199}from'ckeditor5/src/core';import{getTranslation as _0x263026}from'../utils/common-translations';export default class K extends _0x1cb199{[_0x385a('0x1')](){const _0x3fe6f0=this[_0x385a('0x11')];if(!_0x3fe6f0[_0x385a('0x5')][_0x385a('0xb')]('HorizontalLineEditing'))return;_0x3fe6f0[_0x385a('0x5')][_0x385a('0x6')](_0x385a('0x8'))[_0x385a('0x10')](_0x385a('0x7'));const _0x55d00d=_0x3fe6f0[_0x385a('0x5')][_0x385a('0x6')](_0x385a('0x8')),_0x111526=_0x3fe6f0['locale'];_0x55d00d['_descriptionFactory']['registerElementLabel'](_0x385a('0x7'),_0x2aa941=>_0x263026(_0x111526,_0x385a('0x4'),_0x2aa941)),_0x3fe6f0[_0x385a('0x0')]['for'](_0x385a('0xc'))[_0x385a('0x3')]({'model':_0x385a('0x7'),'view':(_0x42593b,{writer:_0x2a7023,options:_0x376a64})=>{if(!_0x376a64[_0x385a('0xe')])return null;const _0x42c4e3=_0x2a7023[_0x385a('0xa')](_0x385a('0x9')),_0x731565=_0x2a7023[_0x385a('0x2')]('hr');return _0x2a7023['addClass']('ck-horizontal-line',_0x42c4e3),_0x2a7023[_0x385a('0xf')](_0x2a7023[_0x385a('0xd')](_0x42c4e3,0x0),_0x731565),_0x42c4e3;},'converterPriority':'high'});}}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @module track-changes/integrations/htmlembed
3
+ */
4
+ import { Plugin } from 'ckeditor5/src/core';
5
+ /**
6
+ * Provides track changes plugin integration for {@link module:html-embed/htmlembed~HtmlEmbed HTML Embed feature}.
7
+ */
8
+ export default class TrackChangesHtmlEmbed extends Plugin {
9
+ /**
10
+ * @inheritDoc
11
+ */
12
+ afterInit(): void;
13
+ }
@@ -20,4 +20,4 @@
20
20
  *
21
21
  *
22
22
  */
23
- const _0x3b8a=['enableCommand','rawHtml','selection','getAttribute','*Change\x20%0\x20content*','has','change','ELEMENT_HTML_EMBED','markBlockFormat','registerElementLabel','plugins','getSelectedElement','element','commandName','cancel','_descriptionFactory','model','document','afterInit','editor','get','htmlEmbed','HtmlEmbed','rawHtmlApi','getCustomProperty','value','TrackChangesEditing','format'];(function(_0x470ec5,_0x3b8a59){const _0x39e498=function(_0x368f2f){while(--_0x368f2f){_0x470ec5['push'](_0x470ec5['shift']());}};_0x39e498(++_0x3b8a59);}(_0x3b8a,0x18e));const _0x39e4=function(_0x470ec5,_0x3b8a59){_0x470ec5=_0x470ec5-0x0;let _0x39e498=_0x3b8a[_0x470ec5];return _0x39e498;};import{Plugin as _0x31972e}from'ckeditor5/src/core';import{getTranslation as _0x5e79d0}from'../utils/common-translations';export default class X extends _0x31972e{[_0x39e4('0xc')](){const _0x1aba21=this[_0x39e4('0xd')];if(!_0x1aba21[_0x39e4('0x4')][_0x39e4('0x1b')](_0x39e4('0x10')))return;const _0x521883=_0x1aba21[_0x39e4('0x4')]['get'](_0x39e4('0x14')),_0x438260=_0x1aba21['locale'],_0x13991f=_0x1aba21['editing']['view']['document'][_0x39e4('0x18')];_0x521883[_0x39e4('0x9')][_0x39e4('0x3')]('rawHtml',_0x255d17=>_0x5e79d0(_0x438260,_0x39e4('0x1'),_0x255d17)),_0x1aba21['plugins'][_0x39e4('0xe')](_0x39e4('0x14'))[_0x39e4('0x16')](_0x39e4('0xf'),(_0x193f21,_0x4b9622)=>{const _0x1fe490=_0x1aba21[_0x39e4('0xa')],_0x47b068=_0x1fe490[_0x39e4('0xb')]['selection'];_0x1fe490[_0x39e4('0x0')](()=>{const _0x2dccfc=function(_0x1e0c69){const _0xf5c8fe=_0x1e0c69[_0x39e4('0x5')]();if(_0xf5c8fe&&_0xf5c8fe['is'](_0x39e4('0x6'),_0x39e4('0x17')))return _0x1e0c69[_0x39e4('0x5')]();return null;}(_0x47b068);if(!_0x2dccfc)return void _0x193f21(null);const _0x5109a1=_0x2dccfc[_0x39e4('0x19')](_0x39e4('0x13'))||'';if(void 0x0===_0x4b9622)return;if(_0x4b9622===_0x5109a1)return;_0x521883[_0x39e4('0x2')](_0x2dccfc,{'commandName':_0x39e4('0xf'),'commandParams':[_0x4b9622]}),_0x13991f[_0x39e4('0x5')]()[_0x39e4('0x12')](_0x39e4('0x11'))[_0x39e4('0x8')]();});}),_0x521883[_0x39e4('0x9')]['registerDescriptionCallback'](_0xc496fe=>{const {data:_0x24be97}=_0xc496fe;if(_0x24be97&&_0x39e4('0xf')==_0x24be97[_0x39e4('0x7')]){const _0x350b53=_0x5e79d0(_0x438260,_0x39e4('0x1'));return{'type':_0x39e4('0x15'),'content':_0x5e79d0(_0x438260,_0x39e4('0x1a'),_0x350b53)};}});}}
23
+ const _0x339b=['getSelectedElement','value','_descriptionFactory','enableCommand','format','TrackChangesEditing','getCustomProperty','has','document','commandName','registerElementLabel','model','getAttribute','rawHtml','plugins','afterInit','ELEMENT_HTML_EMBED','markBlockFormat','HtmlEmbed','locale','rawHtmlApi','change','registerDescriptionCallback','selection','get'];(function(_0x1adcd9,_0x339b9d){const _0x353416=function(_0x28cd58){while(--_0x28cd58){_0x1adcd9['push'](_0x1adcd9['shift']());}};_0x353416(++_0x339b9d);}(_0x339b,0xd4));const _0x3534=function(_0x1adcd9,_0x339b9d){_0x1adcd9=_0x1adcd9-0x0;let _0x353416=_0x339b[_0x1adcd9];return _0x353416;};import{Plugin as _0x29d963}from'ckeditor5/src/core';import{getTranslation as _0x10607f}from'../utils/common-translations';export default class Q extends _0x29d963{[_0x3534('0x3')](){const _0xbc1353=this['editor'];if(!_0xbc1353[_0x3534('0x2')][_0x3534('0x14')](_0x3534('0x6')))return;const _0x2eb081=_0xbc1353[_0x3534('0x2')][_0x3534('0xc')](_0x3534('0x12')),_0x3cd942=_0xbc1353[_0x3534('0x7')],_0x185b71=_0xbc1353['editing']['view'][_0x3534('0x15')]['selection'];_0x2eb081[_0x3534('0xf')][_0x3534('0x17')](_0x3534('0x1'),_0x2d3811=>_0x10607f(_0x3cd942,_0x3534('0x4'),_0x2d3811)),_0xbc1353[_0x3534('0x2')][_0x3534('0xc')](_0x3534('0x12'))[_0x3534('0x10')]('htmlEmbed',(_0x16cec8,_0x33def8)=>{const _0x123a2e=_0xbc1353[_0x3534('0x18')],_0x365c1d=_0x123a2e['document'][_0x3534('0xb')];_0x123a2e[_0x3534('0x9')](()=>{const _0x49549c=function(_0x5d1e9a){const _0x282357=_0x5d1e9a['getSelectedElement']();if(_0x282357&&_0x282357['is']('element',_0x3534('0x1')))return _0x5d1e9a[_0x3534('0xd')]();return null;}(_0x365c1d);if(!_0x49549c)return void _0x16cec8(null);const _0x506973=_0x49549c[_0x3534('0x0')](_0x3534('0xe'))||'';if(void 0x0===_0x33def8)return;if(_0x33def8===_0x506973)return;_0x2eb081[_0x3534('0x5')](_0x49549c,{'commandName':'htmlEmbed','commandParams':[_0x33def8]}),_0x185b71[_0x3534('0xd')]()[_0x3534('0x13')](_0x3534('0x8'))['cancel']();});}),_0x2eb081[_0x3534('0xf')][_0x3534('0xa')](_0x4d8cdb=>{const {data:_0x1b9e55}=_0x4d8cdb;if(_0x1b9e55&&'htmlEmbed'==_0x1b9e55[_0x3534('0x16')]){const _0x5091e9=_0x10607f(_0x3cd942,_0x3534('0x4'));return{'type':_0x3534('0x11'),'content':_0x10607f(_0x3cd942,'*Change\x20%0\x20content*',_0x5091e9)};}});}}