@ckeditor/ckeditor5-track-changes 0.0.0-internal-20241017.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 (466) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/LICENSE.md +22 -0
  3. package/README.md +68 -0
  4. package/build/track-changes.js +5 -0
  5. package/build/translations/ar.js +1 -0
  6. package/build/translations/az.js +1 -0
  7. package/build/translations/bg.js +1 -0
  8. package/build/translations/bn.js +1 -0
  9. package/build/translations/ca.js +1 -0
  10. package/build/translations/cs.js +1 -0
  11. package/build/translations/da.js +1 -0
  12. package/build/translations/de.js +1 -0
  13. package/build/translations/el.js +1 -0
  14. package/build/translations/en-au.js +1 -0
  15. package/build/translations/es.js +1 -0
  16. package/build/translations/et.js +1 -0
  17. package/build/translations/fi.js +1 -0
  18. package/build/translations/fr.js +1 -0
  19. package/build/translations/gl.js +1 -0
  20. package/build/translations/he.js +1 -0
  21. package/build/translations/hi.js +1 -0
  22. package/build/translations/hr.js +1 -0
  23. package/build/translations/hu.js +1 -0
  24. package/build/translations/id.js +1 -0
  25. package/build/translations/it.js +1 -0
  26. package/build/translations/ja.js +1 -0
  27. package/build/translations/ko.js +1 -0
  28. package/build/translations/lt.js +1 -0
  29. package/build/translations/lv.js +1 -0
  30. package/build/translations/ms.js +1 -0
  31. package/build/translations/nl.js +1 -0
  32. package/build/translations/no.js +1 -0
  33. package/build/translations/pl.js +1 -0
  34. package/build/translations/pt-br.js +1 -0
  35. package/build/translations/pt.js +1 -0
  36. package/build/translations/ro.js +1 -0
  37. package/build/translations/ru.js +1 -0
  38. package/build/translations/sk.js +1 -0
  39. package/build/translations/sq.js +1 -0
  40. package/build/translations/sr-latn.js +1 -0
  41. package/build/translations/sr.js +1 -0
  42. package/build/translations/sv.js +1 -0
  43. package/build/translations/th.js +1 -0
  44. package/build/translations/tk.js +1 -0
  45. package/build/translations/tr.js +1 -0
  46. package/build/translations/tt.js +1 -0
  47. package/build/translations/uk.js +1 -0
  48. package/build/translations/ur.js +1 -0
  49. package/build/translations/vi.js +1 -0
  50. package/build/translations/zh-cn.js +1 -0
  51. package/build/translations/zh.js +1 -0
  52. package/ckeditor5-metadata.json +31 -0
  53. package/dist/augmentation.d.ts +44 -0
  54. package/dist/commands/acceptsuggestioncommand.d.ts +28 -0
  55. package/dist/commands/discardsuggestioncommand.d.ts +28 -0
  56. package/dist/commands/executeonallsuggestionscommand.d.ts +28 -0
  57. package/dist/commands/executeonselectedsuggestionscommand.d.ts +28 -0
  58. package/dist/commands/trackchangescommand.d.ts +30 -0
  59. package/dist/index-content.css +4 -0
  60. package/dist/index-editor.css +4 -0
  61. package/dist/index.css +4 -0
  62. package/dist/index.d.ts +22 -0
  63. package/dist/index.js +25 -0
  64. package/dist/integrations/aiassistant.d.ts +21 -0
  65. package/dist/integrations/alignment.d.ts +21 -0
  66. package/dist/integrations/basicstyles.d.ts +21 -0
  67. package/dist/integrations/blockquote.d.ts +21 -0
  68. package/dist/integrations/casechange.d.ts +21 -0
  69. package/dist/integrations/ckbox.d.ts +21 -0
  70. package/dist/integrations/codeblock.d.ts +21 -0
  71. package/dist/integrations/comments.d.ts +18 -0
  72. package/dist/integrations/deletecommand.d.ts +21 -0
  73. package/dist/integrations/entercommand.d.ts +20 -0
  74. package/dist/integrations/findandreplace.d.ts +25 -0
  75. package/dist/integrations/font.d.ts +21 -0
  76. package/dist/integrations/formatpainter.d.ts +21 -0
  77. package/dist/integrations/heading.d.ts +21 -0
  78. package/dist/integrations/highlight.d.ts +21 -0
  79. package/dist/integrations/horizontalline.d.ts +21 -0
  80. package/dist/integrations/htmlembed.d.ts +21 -0
  81. package/dist/integrations/image.d.ts +21 -0
  82. package/dist/integrations/imagereplace.d.ts +21 -0
  83. package/dist/integrations/imagestyle.d.ts +21 -0
  84. package/dist/integrations/importword.d.ts +22 -0
  85. package/dist/integrations/indent.d.ts +21 -0
  86. package/dist/integrations/inputcommand.d.ts +20 -0
  87. package/dist/integrations/legacylist.d.ts +21 -0
  88. package/dist/integrations/legacylistproperties.d.ts +33 -0
  89. package/dist/integrations/link.d.ts +21 -0
  90. package/dist/integrations/list.d.ts +21 -0
  91. package/dist/integrations/listproperties.d.ts +24 -0
  92. package/dist/integrations/mediaembed.d.ts +21 -0
  93. package/dist/integrations/mention.d.ts +21 -0
  94. package/dist/integrations/mergefields.d.ts +21 -0
  95. package/dist/integrations/multilevellist.d.ts +28 -0
  96. package/dist/integrations/pagebreak.d.ts +21 -0
  97. package/dist/integrations/paragraph.d.ts +21 -0
  98. package/dist/integrations/removeformat.d.ts +21 -0
  99. package/dist/integrations/restrictededitingmode.d.ts +21 -0
  100. package/dist/integrations/shiftentercommand.d.ts +20 -0
  101. package/dist/integrations/standardeditingmode.d.ts +21 -0
  102. package/dist/integrations/style.d.ts +21 -0
  103. package/dist/integrations/table.d.ts +46 -0
  104. package/dist/integrations/tablecaption.d.ts +26 -0
  105. package/dist/integrations/tableclipboard.d.ts +23 -0
  106. package/dist/integrations/tablecolumnresize.d.ts +30 -0
  107. package/dist/integrations/tableheadings.d.ts +26 -0
  108. package/dist/integrations/tablemergesplit.d.ts +26 -0
  109. package/dist/integrations/tableofcontents.d.ts +21 -0
  110. package/dist/integrations/tableproperties.d.ts +39 -0
  111. package/dist/integrations/template.d.ts +21 -0
  112. package/dist/integrations/title.d.ts +21 -0
  113. package/dist/integrations/undo.d.ts +21 -0
  114. package/dist/integrations/utils.d.ts +21 -0
  115. package/dist/suggestion.d.ts +295 -0
  116. package/dist/suggestiondescriptionfactory.d.ts +187 -0
  117. package/dist/trackchanges.d.ts +192 -0
  118. package/dist/trackchangesconfig.d.ts +89 -0
  119. package/dist/trackchangesdata.d.ts +53 -0
  120. package/dist/trackchangesediting.d.ts +557 -0
  121. package/dist/trackchangesui.d.ts +50 -0
  122. package/dist/translations/ar.d.ts +8 -0
  123. package/dist/translations/ar.js +23 -0
  124. package/dist/translations/ar.umd.js +23 -0
  125. package/dist/translations/az.d.ts +8 -0
  126. package/dist/translations/az.js +23 -0
  127. package/dist/translations/az.umd.js +23 -0
  128. package/dist/translations/bg.d.ts +8 -0
  129. package/dist/translations/bg.js +23 -0
  130. package/dist/translations/bg.umd.js +23 -0
  131. package/dist/translations/bn.d.ts +8 -0
  132. package/dist/translations/bn.js +23 -0
  133. package/dist/translations/bn.umd.js +23 -0
  134. package/dist/translations/ca.d.ts +8 -0
  135. package/dist/translations/ca.js +23 -0
  136. package/dist/translations/ca.umd.js +23 -0
  137. package/dist/translations/cs.d.ts +8 -0
  138. package/dist/translations/cs.js +23 -0
  139. package/dist/translations/cs.umd.js +23 -0
  140. package/dist/translations/da.d.ts +8 -0
  141. package/dist/translations/da.js +23 -0
  142. package/dist/translations/da.umd.js +23 -0
  143. package/dist/translations/de.d.ts +8 -0
  144. package/dist/translations/de.js +23 -0
  145. package/dist/translations/de.umd.js +23 -0
  146. package/dist/translations/el.d.ts +8 -0
  147. package/dist/translations/el.js +23 -0
  148. package/dist/translations/el.umd.js +23 -0
  149. package/dist/translations/en-au.d.ts +8 -0
  150. package/dist/translations/en-au.js +23 -0
  151. package/dist/translations/en-au.umd.js +23 -0
  152. package/dist/translations/en.d.ts +8 -0
  153. package/dist/translations/en.js +23 -0
  154. package/dist/translations/en.umd.js +23 -0
  155. package/dist/translations/es.d.ts +8 -0
  156. package/dist/translations/es.js +23 -0
  157. package/dist/translations/es.umd.js +23 -0
  158. package/dist/translations/et.d.ts +8 -0
  159. package/dist/translations/et.js +23 -0
  160. package/dist/translations/et.umd.js +23 -0
  161. package/dist/translations/fi.d.ts +8 -0
  162. package/dist/translations/fi.js +23 -0
  163. package/dist/translations/fi.umd.js +23 -0
  164. package/dist/translations/fr.d.ts +8 -0
  165. package/dist/translations/fr.js +23 -0
  166. package/dist/translations/fr.umd.js +23 -0
  167. package/dist/translations/gl.d.ts +8 -0
  168. package/dist/translations/gl.js +23 -0
  169. package/dist/translations/gl.umd.js +23 -0
  170. package/dist/translations/he.d.ts +8 -0
  171. package/dist/translations/he.js +23 -0
  172. package/dist/translations/he.umd.js +23 -0
  173. package/dist/translations/hi.d.ts +8 -0
  174. package/dist/translations/hi.js +23 -0
  175. package/dist/translations/hi.umd.js +23 -0
  176. package/dist/translations/hr.d.ts +8 -0
  177. package/dist/translations/hr.js +23 -0
  178. package/dist/translations/hr.umd.js +23 -0
  179. package/dist/translations/hu.d.ts +8 -0
  180. package/dist/translations/hu.js +23 -0
  181. package/dist/translations/hu.umd.js +23 -0
  182. package/dist/translations/id.d.ts +8 -0
  183. package/dist/translations/id.js +23 -0
  184. package/dist/translations/id.umd.js +23 -0
  185. package/dist/translations/it.d.ts +8 -0
  186. package/dist/translations/it.js +23 -0
  187. package/dist/translations/it.umd.js +23 -0
  188. package/dist/translations/ja.d.ts +8 -0
  189. package/dist/translations/ja.js +23 -0
  190. package/dist/translations/ja.umd.js +23 -0
  191. package/dist/translations/ko.d.ts +8 -0
  192. package/dist/translations/ko.js +23 -0
  193. package/dist/translations/ko.umd.js +23 -0
  194. package/dist/translations/lt.d.ts +8 -0
  195. package/dist/translations/lt.js +23 -0
  196. package/dist/translations/lt.umd.js +23 -0
  197. package/dist/translations/lv.d.ts +8 -0
  198. package/dist/translations/lv.js +23 -0
  199. package/dist/translations/lv.umd.js +23 -0
  200. package/dist/translations/ms.d.ts +8 -0
  201. package/dist/translations/ms.js +23 -0
  202. package/dist/translations/ms.umd.js +23 -0
  203. package/dist/translations/nl.d.ts +8 -0
  204. package/dist/translations/nl.js +23 -0
  205. package/dist/translations/nl.umd.js +23 -0
  206. package/dist/translations/no.d.ts +8 -0
  207. package/dist/translations/no.js +23 -0
  208. package/dist/translations/no.umd.js +23 -0
  209. package/dist/translations/pl.d.ts +8 -0
  210. package/dist/translations/pl.js +23 -0
  211. package/dist/translations/pl.umd.js +23 -0
  212. package/dist/translations/pt-br.d.ts +8 -0
  213. package/dist/translations/pt-br.js +23 -0
  214. package/dist/translations/pt-br.umd.js +23 -0
  215. package/dist/translations/pt.d.ts +8 -0
  216. package/dist/translations/pt.js +23 -0
  217. package/dist/translations/pt.umd.js +23 -0
  218. package/dist/translations/ro.d.ts +8 -0
  219. package/dist/translations/ro.js +23 -0
  220. package/dist/translations/ro.umd.js +23 -0
  221. package/dist/translations/ru.d.ts +8 -0
  222. package/dist/translations/ru.js +23 -0
  223. package/dist/translations/ru.umd.js +23 -0
  224. package/dist/translations/sk.d.ts +8 -0
  225. package/dist/translations/sk.js +23 -0
  226. package/dist/translations/sk.umd.js +23 -0
  227. package/dist/translations/sq.d.ts +8 -0
  228. package/dist/translations/sq.js +23 -0
  229. package/dist/translations/sq.umd.js +23 -0
  230. package/dist/translations/sr-latn.d.ts +8 -0
  231. package/dist/translations/sr-latn.js +23 -0
  232. package/dist/translations/sr-latn.umd.js +23 -0
  233. package/dist/translations/sr.d.ts +8 -0
  234. package/dist/translations/sr.js +23 -0
  235. package/dist/translations/sr.umd.js +23 -0
  236. package/dist/translations/sv.d.ts +8 -0
  237. package/dist/translations/sv.js +23 -0
  238. package/dist/translations/sv.umd.js +23 -0
  239. package/dist/translations/th.d.ts +8 -0
  240. package/dist/translations/th.js +23 -0
  241. package/dist/translations/th.umd.js +23 -0
  242. package/dist/translations/tk.d.ts +8 -0
  243. package/dist/translations/tk.js +23 -0
  244. package/dist/translations/tk.umd.js +23 -0
  245. package/dist/translations/tr.d.ts +8 -0
  246. package/dist/translations/tr.js +23 -0
  247. package/dist/translations/tr.umd.js +23 -0
  248. package/dist/translations/tt.d.ts +8 -0
  249. package/dist/translations/tt.js +23 -0
  250. package/dist/translations/tt.umd.js +23 -0
  251. package/dist/translations/uk.d.ts +8 -0
  252. package/dist/translations/uk.js +23 -0
  253. package/dist/translations/uk.umd.js +23 -0
  254. package/dist/translations/ur.d.ts +8 -0
  255. package/dist/translations/ur.js +23 -0
  256. package/dist/translations/ur.umd.js +23 -0
  257. package/dist/translations/vi.d.ts +8 -0
  258. package/dist/translations/vi.js +23 -0
  259. package/dist/translations/vi.umd.js +23 -0
  260. package/dist/translations/zh-cn.d.ts +8 -0
  261. package/dist/translations/zh-cn.js +23 -0
  262. package/dist/translations/zh-cn.umd.js +23 -0
  263. package/dist/translations/zh.d.ts +8 -0
  264. package/dist/translations/zh.js +23 -0
  265. package/dist/translations/zh.umd.js +23 -0
  266. package/dist/ui/suggestioncontroller.d.ts +41 -0
  267. package/dist/ui/view/basesuggestionthreadview.d.ts +209 -0
  268. package/dist/ui/view/suggestionthreadview.d.ts +98 -0
  269. package/dist/ui/view/suggestionview.d.ts +194 -0
  270. package/dist/utils/common-translations.d.ts +13 -0
  271. package/dist/utils/utils.d.ts +41 -0
  272. package/lang/contexts.json +134 -0
  273. package/lang/translations/ar.po +672 -0
  274. package/lang/translations/az.po +588 -0
  275. package/lang/translations/bg.po +588 -0
  276. package/lang/translations/bn.po +614 -0
  277. package/lang/translations/ca.po +588 -0
  278. package/lang/translations/cs.po +630 -0
  279. package/lang/translations/da.po +588 -0
  280. package/lang/translations/de.po +588 -0
  281. package/lang/translations/el.po +588 -0
  282. package/lang/translations/en-au.po +588 -0
  283. package/lang/translations/en.po +588 -0
  284. package/lang/translations/es.po +609 -0
  285. package/lang/translations/et.po +588 -0
  286. package/lang/translations/fi.po +588 -0
  287. package/lang/translations/fr.po +609 -0
  288. package/lang/translations/gl.po +588 -0
  289. package/lang/translations/he.po +625 -0
  290. package/lang/translations/hi.po +588 -0
  291. package/lang/translations/hr.po +609 -0
  292. package/lang/translations/hu.po +588 -0
  293. package/lang/translations/id.po +567 -0
  294. package/lang/translations/it.po +609 -0
  295. package/lang/translations/ja.po +567 -0
  296. package/lang/translations/ko.po +567 -0
  297. package/lang/translations/lt.po +630 -0
  298. package/lang/translations/lv.po +609 -0
  299. package/lang/translations/ms.po +567 -0
  300. package/lang/translations/nl.po +588 -0
  301. package/lang/translations/no.po +588 -0
  302. package/lang/translations/pl.po +630 -0
  303. package/lang/translations/pt-br.po +609 -0
  304. package/lang/translations/pt.po +609 -0
  305. package/lang/translations/ro.po +609 -0
  306. package/lang/translations/ru.po +632 -0
  307. package/lang/translations/sk.po +630 -0
  308. package/lang/translations/sq.po +588 -0
  309. package/lang/translations/sr-latn.po +609 -0
  310. package/lang/translations/sr.po +609 -0
  311. package/lang/translations/sv.po +588 -0
  312. package/lang/translations/th.po +567 -0
  313. package/lang/translations/tk.po +588 -0
  314. package/lang/translations/tr.po +588 -0
  315. package/lang/translations/tt.po +567 -0
  316. package/lang/translations/uk.po +630 -0
  317. package/lang/translations/ur.po +588 -0
  318. package/lang/translations/vi.po +567 -0
  319. package/lang/translations/zh-cn.po +567 -0
  320. package/lang/translations/zh.po +567 -0
  321. package/package.json +57 -0
  322. package/src/augmentation.d.ts +40 -0
  323. package/src/augmentation.js +23 -0
  324. package/src/commands/acceptsuggestioncommand.d.ts +24 -0
  325. package/src/commands/acceptsuggestioncommand.js +23 -0
  326. package/src/commands/discardsuggestioncommand.d.ts +24 -0
  327. package/src/commands/discardsuggestioncommand.js +23 -0
  328. package/src/commands/executeonallsuggestionscommand.d.ts +24 -0
  329. package/src/commands/executeonallsuggestionscommand.js +23 -0
  330. package/src/commands/executeonselectedsuggestionscommand.d.ts +24 -0
  331. package/src/commands/executeonselectedsuggestionscommand.js +23 -0
  332. package/src/commands/trackchangescommand.d.ts +26 -0
  333. package/src/commands/trackchangescommand.js +23 -0
  334. package/src/index.d.ts +18 -0
  335. package/src/index.js +23 -0
  336. package/src/integrations/aiassistant.d.ts +17 -0
  337. package/src/integrations/aiassistant.js +23 -0
  338. package/src/integrations/alignment.d.ts +17 -0
  339. package/src/integrations/alignment.js +23 -0
  340. package/src/integrations/basicstyles.d.ts +17 -0
  341. package/src/integrations/basicstyles.js +23 -0
  342. package/src/integrations/blockquote.d.ts +17 -0
  343. package/src/integrations/blockquote.js +23 -0
  344. package/src/integrations/casechange.d.ts +17 -0
  345. package/src/integrations/casechange.js +23 -0
  346. package/src/integrations/ckbox.d.ts +17 -0
  347. package/src/integrations/ckbox.js +23 -0
  348. package/src/integrations/codeblock.d.ts +17 -0
  349. package/src/integrations/codeblock.js +23 -0
  350. package/src/integrations/comments.d.ts +14 -0
  351. package/src/integrations/comments.js +23 -0
  352. package/src/integrations/deletecommand.d.ts +17 -0
  353. package/src/integrations/deletecommand.js +23 -0
  354. package/src/integrations/entercommand.d.ts +16 -0
  355. package/src/integrations/entercommand.js +23 -0
  356. package/src/integrations/findandreplace.d.ts +21 -0
  357. package/src/integrations/findandreplace.js +23 -0
  358. package/src/integrations/font.d.ts +17 -0
  359. package/src/integrations/font.js +23 -0
  360. package/src/integrations/formatpainter.d.ts +17 -0
  361. package/src/integrations/formatpainter.js +23 -0
  362. package/src/integrations/heading.d.ts +17 -0
  363. package/src/integrations/heading.js +23 -0
  364. package/src/integrations/highlight.d.ts +17 -0
  365. package/src/integrations/highlight.js +23 -0
  366. package/src/integrations/horizontalline.d.ts +17 -0
  367. package/src/integrations/horizontalline.js +23 -0
  368. package/src/integrations/htmlembed.d.ts +17 -0
  369. package/src/integrations/htmlembed.js +23 -0
  370. package/src/integrations/image.d.ts +17 -0
  371. package/src/integrations/image.js +23 -0
  372. package/src/integrations/imagereplace.d.ts +17 -0
  373. package/src/integrations/imagereplace.js +23 -0
  374. package/src/integrations/imagestyle.d.ts +17 -0
  375. package/src/integrations/imagestyle.js +23 -0
  376. package/src/integrations/importword.d.ts +18 -0
  377. package/src/integrations/importword.js +23 -0
  378. package/src/integrations/indent.d.ts +17 -0
  379. package/src/integrations/indent.js +23 -0
  380. package/src/integrations/inputcommand.d.ts +16 -0
  381. package/src/integrations/inputcommand.js +23 -0
  382. package/src/integrations/legacylist.d.ts +17 -0
  383. package/src/integrations/legacylist.js +23 -0
  384. package/src/integrations/legacylistproperties.d.ts +29 -0
  385. package/src/integrations/legacylistproperties.js +23 -0
  386. package/src/integrations/link.d.ts +17 -0
  387. package/src/integrations/link.js +23 -0
  388. package/src/integrations/list.d.ts +17 -0
  389. package/src/integrations/list.js +23 -0
  390. package/src/integrations/listproperties.d.ts +20 -0
  391. package/src/integrations/listproperties.js +23 -0
  392. package/src/integrations/mediaembed.d.ts +17 -0
  393. package/src/integrations/mediaembed.js +23 -0
  394. package/src/integrations/mention.d.ts +17 -0
  395. package/src/integrations/mention.js +23 -0
  396. package/src/integrations/mergefields.d.ts +17 -0
  397. package/src/integrations/mergefields.js +23 -0
  398. package/src/integrations/multilevellist.d.ts +24 -0
  399. package/src/integrations/multilevellist.js +23 -0
  400. package/src/integrations/pagebreak.d.ts +17 -0
  401. package/src/integrations/pagebreak.js +23 -0
  402. package/src/integrations/paragraph.d.ts +17 -0
  403. package/src/integrations/paragraph.js +23 -0
  404. package/src/integrations/removeformat.d.ts +17 -0
  405. package/src/integrations/removeformat.js +23 -0
  406. package/src/integrations/restrictededitingmode.d.ts +17 -0
  407. package/src/integrations/restrictededitingmode.js +23 -0
  408. package/src/integrations/shiftentercommand.d.ts +16 -0
  409. package/src/integrations/shiftentercommand.js +23 -0
  410. package/src/integrations/standardeditingmode.d.ts +17 -0
  411. package/src/integrations/standardeditingmode.js +23 -0
  412. package/src/integrations/style.d.ts +17 -0
  413. package/src/integrations/style.js +23 -0
  414. package/src/integrations/table.d.ts +42 -0
  415. package/src/integrations/table.js +23 -0
  416. package/src/integrations/tablecaption.d.ts +22 -0
  417. package/src/integrations/tablecaption.js +23 -0
  418. package/src/integrations/tableclipboard.d.ts +19 -0
  419. package/src/integrations/tableclipboard.js +23 -0
  420. package/src/integrations/tablecolumnresize.d.ts +26 -0
  421. package/src/integrations/tablecolumnresize.js +23 -0
  422. package/src/integrations/tableheadings.d.ts +22 -0
  423. package/src/integrations/tableheadings.js +23 -0
  424. package/src/integrations/tablemergesplit.d.ts +22 -0
  425. package/src/integrations/tablemergesplit.js +23 -0
  426. package/src/integrations/tableofcontents.d.ts +17 -0
  427. package/src/integrations/tableofcontents.js +23 -0
  428. package/src/integrations/tableproperties.d.ts +35 -0
  429. package/src/integrations/tableproperties.js +23 -0
  430. package/src/integrations/template.d.ts +17 -0
  431. package/src/integrations/template.js +23 -0
  432. package/src/integrations/title.d.ts +17 -0
  433. package/src/integrations/title.js +23 -0
  434. package/src/integrations/undo.d.ts +17 -0
  435. package/src/integrations/undo.js +23 -0
  436. package/src/integrations/utils.d.ts +17 -0
  437. package/src/integrations/utils.js +23 -0
  438. package/src/suggestion.d.ts +291 -0
  439. package/src/suggestion.js +24 -0
  440. package/src/suggestiondescriptionfactory.d.ts +183 -0
  441. package/src/suggestiondescriptionfactory.js +23 -0
  442. package/src/trackchanges.d.ts +188 -0
  443. package/src/trackchanges.js +23 -0
  444. package/src/trackchangesconfig.d.ts +85 -0
  445. package/src/trackchangesconfig.js +23 -0
  446. package/src/trackchangesdata.d.ts +49 -0
  447. package/src/trackchangesdata.js +23 -0
  448. package/src/trackchangesediting.d.ts +553 -0
  449. package/src/trackchangesediting.js +23 -0
  450. package/src/trackchangesui.d.ts +46 -0
  451. package/src/trackchangesui.js +23 -0
  452. package/src/ui/suggestioncontroller.d.ts +37 -0
  453. package/src/ui/suggestioncontroller.js +24 -0
  454. package/src/ui/view/basesuggestionthreadview.d.ts +205 -0
  455. package/src/ui/view/basesuggestionthreadview.js +23 -0
  456. package/src/ui/view/suggestionthreadview.d.ts +94 -0
  457. package/src/ui/view/suggestionthreadview.js +23 -0
  458. package/src/ui/view/suggestionview.d.ts +190 -0
  459. package/src/ui/view/suggestionview.js +23 -0
  460. package/src/utils/common-translations.d.ts +9 -0
  461. package/src/utils/common-translations.js +23 -0
  462. package/src/utils/utils.d.ts +37 -0
  463. package/src/utils/utils.js +23 -0
  464. package/theme/icons/track-changes-accept.svg +11 -0
  465. package/theme/icons/track-changes-discard.svg +11 -0
  466. package/theme/icons/track-changes.svg +11 -0
@@ -0,0 +1,20 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/listproperties
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import type { Description } from '../suggestiondescriptionfactory.js';
10
+ import type Suggestion from '../suggestion.js';
11
+ /**
12
+ * Provides track changes plugin integration for document list properties feature.
13
+ */
14
+ export default class TrackChangesDocumentListProperties extends Plugin {
15
+ /**
16
+ * @inheritDoc
17
+ */
18
+ afterInit(): void;
19
+ handleDescriptions(suggestion: Suggestion): Description | undefined;
20
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x24af52=_0x2f07;(function(_0x200f87,_0x3391b8){const _0x3c7e18=_0x2f07,_0x5cff15=_0x200f87();while(!![]){try{const _0x2c5188=parseInt(_0x3c7e18(0xc9))/0x1*(parseInt(_0x3c7e18(0xbd))/0x2)+parseInt(_0x3c7e18(0xa0))/0x3+-parseInt(_0x3c7e18(0xae))/0x4+parseInt(_0x3c7e18(0xa3))/0x5+-parseInt(_0x3c7e18(0xad))/0x6*(-parseInt(_0x3c7e18(0xe8))/0x7)+parseInt(_0x3c7e18(0xda))/0x8*(parseInt(_0x3c7e18(0xc7))/0x9)+-parseInt(_0x3c7e18(0xf8))/0xa;if(_0x2c5188===_0x3391b8)break;else _0x5cff15['push'](_0x5cff15['shift']());}catch(_0x42d444){_0x5cff15['push'](_0x5cff15['shift']());}}}(_0x75fc,0xd7283));import{Plugin as _0x41ea25}from'ckeditor5/src/core.js';function _0x2f07(_0xf718fa,_0x13ff3c){const _0x75fccf=_0x75fc();return _0x2f07=function(_0x2f070e,_0x5d1e1c){_0x2f070e=_0x2f070e-0x9e;let _0x57a809=_0x75fccf[_0x2f070e];return _0x57a809;},_0x2f07(_0xf718fa,_0x13ff3c);}import{getTranslation as _0x2ef11b}from'../utils/common-translations.js';export default class ye extends _0x41ea25{[_0x24af52(0xce)](){const _0x415a2b=_0x24af52;if(!this[_0x415a2b(0xd1)][_0x415a2b(0xcf)][_0x415a2b(0xd0)](_0x415a2b(0xb2)))return;const _0x392569=this[_0x415a2b(0xd1)][_0x415a2b(0xb5)][_0x415a2b(0xe6)](_0x415a2b(0xe2)),_0x1be927=this[_0x415a2b(0xd1)][_0x415a2b(0xcf)][_0x415a2b(0xe6)](_0x415a2b(0xb6));_0x392569[_0x415a2b(0xbf)]&&(_0x1be927[_0x415a2b(0xf6)](_0x415a2b(0xaa)),_0x1be927[_0x415a2b(0xe3)](_0x415a2b(0xaa))),_0x392569[_0x415a2b(0xe5)]&&(_0x1be927[_0x415a2b(0xf6)](_0x415a2b(0xf7)),_0x1be927[_0x415a2b(0xe3)](_0x415a2b(0xf7))),_0x392569[_0x415a2b(0xaf)]&&(_0x1be927[_0x415a2b(0xf6)](_0x415a2b(0xf0)),_0x1be927[_0x415a2b(0xe3)](_0x415a2b(0xf0)));const _0x5a2972={'type':_0x415a2b(0xb3),'content':''};_0x1be927[_0x415a2b(0xc6)][_0x415a2b(0xc5)](this[_0x415a2b(0xb7)][_0x415a2b(0xa8)](this));const _0x5f3da7=this[_0x415a2b(0xd1)][_0x415a2b(0xc8)];_0x1be927[_0x415a2b(0xc6)][_0x415a2b(0xdd)](_0x415a2b(0xf7),_0x2ef11b(_0x5f3da7,_0x415a2b(0xe7))),_0x1be927[_0x415a2b(0xc6)][_0x415a2b(0xc5)](_0x44a830=>{const _0x2514c9=_0x415a2b,{data:_0x3ed569}=_0x44a830;if(_0x3ed569&&_0x2514c9(0xf7)==_0x3ed569[_0x2514c9(0xd5)])return null==_0x3ed569[_0x2514c9(0xb9)]||0x0==_0x3ed569[_0x2514c9(0xb9)]&&null==_0x3ed569[_0x2514c9(0xa6)]?_0x5a2972:void 0x0;}),_0x1be927[_0x415a2b(0xc6)][_0x415a2b(0xdd)](_0x415a2b(0xf0),_0x2ef11b(_0x5f3da7,_0x415a2b(0xa1))),_0x1be927[_0x415a2b(0xc6)][_0x415a2b(0xc5)](_0xd6e1a4=>{const _0x1b998b=_0x415a2b,{data:_0x53f169}=_0xd6e1a4;if(_0x53f169&&_0x1b998b(0xf0)==_0x53f169[_0x1b998b(0xd5)])return null==_0x53f169[_0x1b998b(0xb9)]||0x1==_0x53f169[_0x1b998b(0xb9)]&&null==_0x53f169[_0x1b998b(0xa6)]?_0x5a2972:void 0x0;}),this[_0x415a2b(0xd1)][_0x415a2b(0xca)][_0x415a2b(0xe4)][_0x415a2b(0xeb)](_0x4a6fc7=>{const _0x346130=_0x415a2b;if(_0x4a6fc7[_0x346130(0xbe)][_0x346130(0x9f)])return!0x1;let _0x3c762b=!0x1;const _0x4c6354=_0x1be927[_0x346130(0xb1)]({'skipNotAttached':!0x0})[_0x346130(0xdb)](_0x9c991b=>{const _0x41444a=_0x346130,_0x356f78=_0x1be927[_0x41444a(0xef)](_0x9c991b);return _0x41444a(0xf0)==_0x356f78||_0x41444a(0xf7)==_0x356f78;});for(const _0x1a1a49 of _0x4c6354){const _0x5696af=_0x1a1a49[_0x346130(0xec)]()[_0x346130(0xb8)][_0x346130(0xab)][_0x346130(0xd4)](_0x346130(0xd6));if(_0x346130(0xf4)==_0x5696af||_0x346130(0xac)==_0x5696af)continue;_0x1be927[_0x346130(0xd8)](_0x1a1a49[_0x346130(0xec)](),_0x346130(0xed))[_0x346130(0xb0)](_0x4fa67b=>_0x346130(0xd6)==_0x1be927[_0x346130(0xef)](_0x4fa67b[_0x346130(0xdf)]))||(_0x4a6fc7[_0x346130(0xf9)](_0x1a1a49[_0x346130(0xcc)]()),_0x3c762b=!0x0);}return _0x3c762b;}),this[_0x415a2b(0xd7)]();}[_0x24af52(0xb7)](_0x1da4ea){const _0xf7bd44=_0x24af52,_0x4deb0d=this[_0xf7bd44(0xd1)][_0xf7bd44(0xc8)],{data:_0x13cd03}=_0x1da4ea,_0x210ca0={'type':_0xf7bd44(0xb3),'content':''};if(!_0x13cd03||_0xf7bd44(0xaa)!=_0x13cd03[_0xf7bd44(0xd5)])return;if(!_0x13cd03[_0xf7bd44(0xa6)])return _0xf7bd44(0xf2)==_0x13cd03[_0xf7bd44(0xb9)]?_0x210ca0:{'type':_0xf7bd44(0xb3),'content':''+_0x2ef11b(_0x4deb0d,_0xf7bd44(0xcd),_0x2ef11b(_0x4deb0d,this[_0xf7bd44(0xf5)](_0x13cd03[_0xf7bd44(0xb9)])))};if(!_0x13cd03[_0xf7bd44(0xb9)]){if(_0xf7bd44(0xf2)==_0x13cd03[_0xf7bd44(0xa6)])return _0x210ca0;let _0x1bb062=_0x1da4ea[_0xf7bd44(0xee)];for(;_0x1bb062;){if(_0x1bb062[_0xf7bd44(0xc3)]&&_0xf7bd44(0xd6)==_0x1bb062[_0xf7bd44(0xc3)][_0xf7bd44(0xd5)]&&_0x1bb062[_0xf7bd44(0xc3)][_0xf7bd44(0xb9)])return _0x210ca0;_0x1bb062=_0x1bb062[_0xf7bd44(0xa7)];}return{'type':_0xf7bd44(0xb3),'content':''+_0x2ef11b(_0x4deb0d,_0xf7bd44(0xa9),_0x2ef11b(_0x4deb0d,this[_0xf7bd44(0xf5)](_0x13cd03[_0xf7bd44(0xa6)])))};}if(_0xf7bd44(0xf2)!=_0x13cd03[_0xf7bd44(0xb9)])return{'type':_0xf7bd44(0xb3),'content':''+_0x2ef11b(_0x4deb0d,_0xf7bd44(0xcd),_0x2ef11b(_0x4deb0d,this[_0xf7bd44(0xf5)](_0x13cd03[_0xf7bd44(0xb9)])))};let _0x152574=_0x1da4ea[_0xf7bd44(0xee)];for(;_0x152574;){if(_0x152574[_0xf7bd44(0xc3)]&&_0xf7bd44(0xd6)==_0x152574[_0xf7bd44(0xc3)][_0xf7bd44(0xd5)]&&_0x152574[_0xf7bd44(0xc3)][_0xf7bd44(0xb9)]&&_0x152574[_0xf7bd44(0xc3)][_0xf7bd44(0xa6)])return _0x210ca0;_0x152574=_0x152574[_0xf7bd44(0xa7)];}const _0x42e639=_0x1da4ea[_0xf7bd44(0xec)]()[_0xf7bd44(0xb8)][_0xf7bd44(0xab)][_0xf7bd44(0xd4)](_0xf7bd44(0xd6));return{'type':_0xf7bd44(0xb3),'content':_0x2ef11b(_0x4deb0d,_0xf7bd44(0xcd),_0x2ef11b(_0x4deb0d,_0xf7bd44(0xa5)+_0x42e639[_0xf7bd44(0xea)]()+_0xf7bd44(0xc4)))};}[_0x24af52(0xd7)](){const _0x1755b4=_0x24af52,_0x3021e7=this[_0x1755b4(0xd1)],_0x30aa19=_0x3021e7[_0x1755b4(0xc8)];_0x3021e7[_0x1755b4(0xcf)][_0x1755b4(0xe6)](_0x1755b4(0xb6))[_0x1755b4(0xc6)][_0x1755b4(0xc5)](_0x4a49c6=>{const _0x53d2b2=_0x1755b4;if(_0x53d2b2(0xc2)!=_0x4a49c6[_0x53d2b2(0x9e)])return;const {data:_0x3413f3}=_0x4a49c6;if(!_0x3413f3)return;let _0x50cec8,_0x1b3d39;switch(_0x3413f3[_0x53d2b2(0xf1)]){case _0x53d2b2(0xaa):_0x50cec8=_0x53d2b2(0xba),_0x1b3d39={'type':_0x53d2b2(0xb3),'content':_0x2ef11b(_0x30aa19,_0x50cec8,_0x2ef11b(_0x30aa19,this[_0x53d2b2(0xf5)](_0x3413f3[_0x53d2b2(0xbb)][0x0][_0x53d2b2(0x9e)])))};break;case _0x53d2b2(0xf7):_0x50cec8=_0x3413f3[_0x53d2b2(0xbb)][0x0][_0x53d2b2(0xe5)]?_0x53d2b2(0xde):_0x53d2b2(0xb4),_0x1b3d39={'type':_0x53d2b2(0xb3),'content':_0x2ef11b(_0x30aa19,_0x50cec8)};break;case _0x53d2b2(0xf0):_0x50cec8=_0x53d2b2(0xbc),_0x1b3d39={'type':_0x53d2b2(0xb3),'content':_0x2ef11b(_0x30aa19,_0x50cec8,_0x3413f3[_0x53d2b2(0xbb)][0x0][_0x53d2b2(0xaf)])};}return _0x1b3d39;});}[_0x24af52(0xf5)](_0x47a680){const _0x27d309=_0x24af52;return _0x27d309(0xa5)+function(_0x3bd660){const _0x4a42c0=_0x27d309;if(Se[_0x4a42c0(0xdc)](_0x3bd660))return _0x4a42c0(0xa4);if(_e[_0x4a42c0(0xdc)](_0x3bd660))return _0x4a42c0(0xf4);return null;}(_0x47a680)[_0x27d309(0xea)]()+_0x27d309(0xa2)+_0x47a680[_0x27d309(0xea)]()[_0x27d309(0xe0)](/-/g,'_');}}function _0x75fc(){const _0x40065a=['listReversed','1306930hygTDQ','removeMarker','type','isUndo','230448AkLarN','FORMAT_LIST_START','_LIST_','1974765azdmpZ','bulleted','ELEMENT_','oldValue','next','bind','*Remove\x20format:*\x20%0','listStyle','nodeAfter','customNumbered','40764mMVxAR','197388fSNQiL','startIndex','find','getSuggestions','ListPropertiesEditing','format','*Format:*\x20set\x20order\x20to\x20regular','config','TrackChangesEditing','handleDescriptions','start','newValue','*Change\x20to:*\x20%0','commandParams','*Format:*\x20set\x20start\x20index\x20to\x20%0','1354DzPpvc','batch','styles','decimal','lower-latin','formatBlock','data','_LIST_DEFAULT','registerDescriptionCallback','descriptionFactory','5202189Tgdtxz','locale','7qMRNeX','model','circle','getFirstMarker','*Set\x20format:*\x20%0','afterInit','plugins','has','editor','disc','lower-roman','getAttribute','key','listType','_registerLegacyDescription','_findSuggestions','upper-roman','8sPeAgF','filter','includes','registerAttributeLabel','*Format:*\x20set\x20order\x20to\x20reversed','suggestion','replace','upper-latin','list.properties','registerBlockAttribute','document','reversed','get','FORMAT_LIST_REVERSED','7PPFXFC','decimal-leading-zero','toUpperCase','registerPostFixer','getFirstRange','attribute','head','_getAttributeKey','listStart','commandName','default','square','numbered','_getTranslationKeyForListStyle','enableDefaultAttributesIntegration'];_0x75fc=function(){return _0x40065a;};return _0x75fc();}const Se=[_0x24af52(0xd2),_0x24af52(0xcb),_0x24af52(0xf3)],_e=[_0x24af52(0xc0),_0x24af52(0xe9),_0x24af52(0xd3),_0x24af52(0xd9),_0x24af52(0xc1),_0x24af52(0xe1)];
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/mediaembed
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for {@link module:media-embed/mediaembed~MediaEmbed media embed feature}.
11
+ */
12
+ export default class TrackChangesMediaEmbed extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x1d62c3=_0x347b;function _0x4571(){const _0x14e8d2=['11305OCnTnJ','ELEMENT_MEDIA','afterInit','options','descriptionFactory','editor','dataDowncast','455934jNzitK','div','createEmptyElement','data','for','172096SNaBLB','get','523839rxTefj','showSuggestionHighlights','elementToElement','conversion','media','16107363CcxPsH','730254MytKIK','locale','MediaEmbedEditing','TrackChangesEditing','plugins','1068138eatxIt','has','high','12ZgwnnM','stop','registerElementLabel','downcastDispatcher','attribute:url:media','mediaEmbed','1542xFBSDY','enableCommand'];_0x4571=function(){return _0x14e8d2;};return _0x4571();}function _0x347b(_0x2e5fcc,_0x24f2d8){const _0x457157=_0x4571();return _0x347b=function(_0x347b80,_0x49b68d){_0x347b80=_0x347b80-0x13d;let _0x2c0a6c=_0x457157[_0x347b80];return _0x2c0a6c;},_0x347b(_0x2e5fcc,_0x24f2d8);}(function(_0x32a11b,_0x1603be){const _0x2b538c=_0x347b,_0x184df4=_0x32a11b();while(!![]){try{const _0x110720=-parseInt(_0x2b538c(0x155))/0x1+-parseInt(_0x2b538c(0x160))/0x2+-parseInt(_0x2b538c(0x14e))/0x3*(-parseInt(_0x2b538c(0x13f))/0x4)+-parseInt(_0x2b538c(0x147))/0x5*(parseInt(_0x2b538c(0x145))/0x6)+-parseInt(_0x2b538c(0x15b))/0x7+-parseInt(_0x2b538c(0x153))/0x8+parseInt(_0x2b538c(0x15a))/0x9;if(_0x110720===_0x1603be)break;else _0x184df4['push'](_0x184df4['shift']());}catch(_0xd97a13){_0x184df4['push'](_0x184df4['shift']());}}}(_0x4571,0x75636));import{Plugin as _0x38842d}from'ckeditor5/src/core.js';import{getTranslation as _0x42e94d}from'../utils/common-translations.js';export default class gt extends _0x38842d{[_0x1d62c3(0x149)](){const _0xcf539c=_0x1d62c3,_0x3da44e=this[_0xcf539c(0x14c)];if(!_0x3da44e[_0xcf539c(0x15f)][_0xcf539c(0x13d)](_0xcf539c(0x15d)))return;const _0x196e3a=_0x3da44e[_0xcf539c(0x15f)][_0xcf539c(0x154)](_0xcf539c(0x15e)),_0x212812=_0x3da44e[_0xcf539c(0x15c)];_0x196e3a[_0xcf539c(0x146)](_0xcf539c(0x144)),_0x196e3a[_0xcf539c(0x14b)][_0xcf539c(0x141)](_0xcf539c(0x159),_0x59c596=>_0x42e94d(_0x212812,_0xcf539c(0x148),_0x59c596)),_0x3da44e[_0xcf539c(0x158)][_0xcf539c(0x152)](_0xcf539c(0x14d))[_0xcf539c(0x157)]({'model':_0xcf539c(0x159),'view':(_0x200277,{writer:_0x14624c,options:_0x256224})=>{const _0xf77e9d=_0xcf539c;if(_0x256224[_0xf77e9d(0x156)])return _0x14624c[_0xf77e9d(0x150)](_0xf77e9d(0x14f));},'converterPriority':_0xcf539c(0x13e)}),_0x3da44e[_0xcf539c(0x151)][_0xcf539c(0x142)]['on'](_0xcf539c(0x143),(_0x534c8b,_0x251f2c,_0x3dbfa3)=>{const _0x4df0fc=_0xcf539c;_0x3dbfa3[_0x4df0fc(0x14a)][_0x4df0fc(0x156)]&&_0x534c8b[_0x4df0fc(0x140)]();},{'priority':_0xcf539c(0x13e)});}}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/mention
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for mention feature.
11
+ */
12
+ export default class TrackChangesMention extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x15f0eb=_0xd61e;function _0xd61e(_0x1c9ea4,_0x11b3b1){const _0x2c56f2=_0x2c56();return _0xd61e=function(_0xd61eda,_0x176cb9){_0xd61eda=_0xd61eda-0xac;let _0x4e7367=_0x2c56f2[_0xd61eda];return _0x4e7367;},_0xd61e(_0x1c9ea4,_0x11b3b1);}(function(_0x71811a,_0x1d5abd){const _0x4c9b92=_0xd61e,_0x23d1a5=_0x71811a();while(!![]){try{const _0x432a2a=parseInt(_0x4c9b92(0xb8))/0x1+-parseInt(_0x4c9b92(0xb3))/0x2+parseInt(_0x4c9b92(0xb9))/0x3+-parseInt(_0x4c9b92(0xb1))/0x4+parseInt(_0x4c9b92(0xb5))/0x5*(-parseInt(_0x4c9b92(0xba))/0x6)+-parseInt(_0x4c9b92(0xbc))/0x7*(-parseInt(_0x4c9b92(0xaf))/0x8)+-parseInt(_0x4c9b92(0xb4))/0x9;if(_0x432a2a===_0x1d5abd)break;else _0x23d1a5['push'](_0x23d1a5['shift']());}catch(_0x53ed20){_0x23d1a5['push'](_0x23d1a5['shift']());}}}(_0x2c56,0x7752f));function _0x2c56(){const _0x6fa1aa=['MentionEditing','get','398098cizWOs','2037912qxoOeB','4482162ebqBxZ','editor','63RLYDpp','afterInit','TrackChangesEditing','enableCommand','has','770776VKDfHH','plugins','1781080zuxRZI','mention','433580UQmlga','420183zplMUc','5YVtrSr'];_0x2c56=function(){return _0x6fa1aa;};return _0x2c56();}import{Plugin as _0xbf0161}from'ckeditor5/src/core.js';export default class dt extends _0xbf0161{[_0x15f0eb(0xbd)](){const _0x20294d=_0x15f0eb,_0x5ebd65=this[_0x20294d(0xbb)];_0x5ebd65[_0x20294d(0xb0)][_0x20294d(0xae)](_0x20294d(0xb6))&&_0x5ebd65[_0x20294d(0xb0)][_0x20294d(0xb7)](_0x20294d(0xac))[_0x20294d(0xad)](_0x20294d(0xb2));}}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/mergefields
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for the merge fields feature.
11
+ */
12
+ export default class TrackChangesMergeFields extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x484b2a=_0xc966;(function(_0x5635cd,_0x35564a){const _0x1f0697=_0xc966,_0x1c6331=_0x5635cd();while(!![]){try{const _0x14087e=-parseInt(_0x1f0697(0xfc))/0x1*(parseInt(_0x1f0697(0xf7))/0x2)+-parseInt(_0x1f0697(0xf3))/0x3+parseInt(_0x1f0697(0xf4))/0x4*(-parseInt(_0x1f0697(0xdc))/0x5)+parseInt(_0x1f0697(0xd9))/0x6+-parseInt(_0x1f0697(0xea))/0x7*(parseInt(_0x1f0697(0xe9))/0x8)+parseInt(_0x1f0697(0xf9))/0x9*(parseInt(_0x1f0697(0xde))/0xa)+parseInt(_0x1f0697(0xf5))/0xb;if(_0x14087e===_0x35564a)break;else _0x1c6331['push'](_0x1c6331['shift']());}catch(_0x1fb1ca){_0x1c6331['push'](_0x1c6331['shift']());}}}(_0x2c72,0xc0d50));import{Plugin as _0x47b511}from'ckeditor5/src/core.js';import{getTranslation as _0x48d497}from'../utils/common-translations.js';function _0x2c72(){const _0x39b51d=['descriptionFactory','afterInit','*Insert:*\x20%0','*Remove:*\x20%0','element','insertMergeFieldBlock','getLabel','insertMergeField','1604751kRgwMs','18596XgdVpx','25072982bHvRHg','TrackChangesEditing','12204RVaGvP','enableCommand','738189ZWKALl','type','mergeField','116LkhYdh','get','767706coNPeg','locale','ELEMENT_MERGE_FIELD','1410JQoHuD','editor','190EHbthX','registerElementLabel','deletion','has','getContainedElement','insertion','registerDescriptionCallback','plugins','getAttribute','mergeFieldBlock','MergeFieldsEditing','4976840ooGIVQ','7JSwWQt'];_0x2c72=function(){return _0x39b51d;};return _0x2c72();}function _0xc966(_0x5d97bb,_0x13150c){const _0x2c7204=_0x2c72();return _0xc966=function(_0xc96643,_0x416e66){_0xc96643=_0xc96643-0xd9;let _0x1e529b=_0x2c7204[_0xc96643];return _0x1e529b;},_0xc966(_0x5d97bb,_0x13150c);}export default class mt extends _0x47b511{[_0x484b2a(0xec)](){const _0x207946=_0x484b2a,_0x5bee48=this[_0x207946(0xdd)];if(!_0x5bee48[_0x207946(0xe5)][_0x207946(0xe1)](_0x207946(0xe8)))return;_0x5bee48[_0x207946(0xe5)][_0x207946(0xfd)](_0x207946(0xf6))[_0x207946(0xf8)](_0x207946(0xf2)),_0x5bee48[_0x207946(0xe5)][_0x207946(0xfd)](_0x207946(0xf6))[_0x207946(0xf8)](_0x207946(0xf0));const _0x263584=_0x5bee48[_0x207946(0xe5)][_0x207946(0xfd)](_0x207946(0xf6)),_0x18d3dd=_0x5bee48[_0x207946(0xda)];_0x263584[_0x207946(0xeb)][_0x207946(0xdf)](_0x207946(0xfb),_0x1cbbb7=>_0x48d497(_0x18d3dd,_0x207946(0xdb),_0x1cbbb7)),_0x263584[_0x207946(0xeb)][_0x207946(0xdf)](_0x207946(0xe7),_0x3aa6fe=>_0x48d497(_0x18d3dd,_0x207946(0xdb),_0x3aa6fe)),_0x263584[_0x207946(0xeb)][_0x207946(0xe4)](_0x1fe723=>{const _0x22e9a7=_0x207946;if(_0x22e9a7(0xe3)!=_0x1fe723[_0x22e9a7(0xfa)]&&_0x22e9a7(0xe0)!=_0x1fe723[_0x22e9a7(0xfa)])return;const _0x600330=_0x1fe723[_0x22e9a7(0xe2)]();if(null==_0x600330)return;if(!_0x600330['is'](_0x22e9a7(0xef),_0x22e9a7(0xfb))&&!_0x600330['is'](_0x22e9a7(0xef),_0x22e9a7(0xe7)))return;const _0x57bd6f=_0x5bee48[_0x22e9a7(0xe5)][_0x22e9a7(0xfd)](_0x22e9a7(0xe8))[_0x22e9a7(0xf1)](_0x600330[_0x22e9a7(0xe6)]('id'));return _0x22e9a7(0xe3)==_0x1fe723[_0x22e9a7(0xfa)]?{'type':_0x22e9a7(0xe3),'content':_0x48d497(_0x18d3dd,_0x22e9a7(0xed),'\x22'+_0x57bd6f+'\x22\x20'+_0x48d497(_0x18d3dd,_0x22e9a7(0xdb)))}:{'type':_0x22e9a7(0xe0),'content':_0x48d497(_0x18d3dd,_0x22e9a7(0xee),'\x22'+_0x57bd6f+'\x22\x20'+_0x48d497(_0x18d3dd,_0x22e9a7(0xdb)))};});}}
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/multilevellist
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import type Suggestion from '../suggestion.js';
10
+ import type { Description } from '../suggestiondescriptionfactory.js';
11
+ /**
12
+ * Provides track changes plugin integration for multi-level list feature.
13
+ */
14
+ export default class TrackChangesMultiLevelList extends Plugin {
15
+ /**
16
+ * @inheritDoc
17
+ */
18
+ afterInit(): void;
19
+ /**
20
+ * Returns a custom description for a suggestion in case of adding or removing `listMarkerStyle` attribute.
21
+ * Returns an empty description if the change is already covered by a `listType` attribute suggestion.
22
+ */
23
+ handleDescriptions(suggestion: Suggestion): Description | undefined;
24
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ function _0x22b2(){const _0xf43f4e=['registerBlockAttribute','listType','2107496DsOtYi','MultiLevelList','9594BzhCJb','oldValue','*Set\x20format:*\x20%0','25240SfDZtu','multiLevelList','next','1327374jLhAgF','data','377890GOUrsT','ELEMENT_MULTI_LEVEL_LIST','1017dviMTw','has','descriptionFactory','plugins','afterInit','key','50piBmnb','locale','*Remove\x20format:*\x20%0','enableDefaultAttributesIntegration','newValue','handleDescriptions','558411NcepEt','editor','format','TrackChangesEditing','1211850BPvhcL','10VJRjSs','registerDescriptionCallback','get','listMarkerStyle','head'];_0x22b2=function(){return _0xf43f4e;};return _0x22b2();}const _0x3b1a47=_0x347d;(function(_0x223ed7,_0x2ba8cc){const _0x5e50e2=_0x347d,_0x460206=_0x223ed7();while(!![]){try{const _0x5a73bd=-parseInt(_0x5e50e2(0x129))/0x1+-parseInt(_0x5e50e2(0x131))/0x2*(-parseInt(_0x5e50e2(0x121))/0x3)+parseInt(_0x5e50e2(0x143))/0x4+parseInt(_0x5e50e2(0x13c))/0x5*(parseInt(_0x5e50e2(0x127))/0x6)+parseInt(_0x5e50e2(0x137))/0x7+-parseInt(_0x5e50e2(0x124))/0x8*(parseInt(_0x5e50e2(0x12b))/0x9)+-parseInt(_0x5e50e2(0x13b))/0xa;if(_0x5a73bd===_0x2ba8cc)break;else _0x460206['push'](_0x460206['shift']());}catch(_0x44de46){_0x460206['push'](_0x460206['shift']());}}}(_0x22b2,0x42c39));import{Plugin as _0x49b674}from'ckeditor5/src/core.js';function _0x347d(_0x57e67d,_0x3cb90a){const _0x22b240=_0x22b2();return _0x347d=function(_0x347ddc,_0x805175){_0x347ddc=_0x347ddc-0x121;let _0x2b1ecc=_0x22b240[_0x347ddc];return _0x2b1ecc;},_0x347d(_0x57e67d,_0x3cb90a);}import{getTranslation as _0x5cb674}from'../utils/common-translations.js';export default class pt extends _0x49b674{[_0x3b1a47(0x12f)](){const _0x1ac5b5=_0x3b1a47,_0x1a67f8=this[_0x1ac5b5(0x138)],_0x2ab4be=_0x1a67f8[_0x1ac5b5(0x12e)][_0x1ac5b5(0x13e)](_0x1ac5b5(0x13a));_0x1a67f8[_0x1ac5b5(0x12e)][_0x1ac5b5(0x12c)](_0x1ac5b5(0x144))&&(_0x2ab4be[_0x1ac5b5(0x134)](_0x1ac5b5(0x125)),_0x2ab4be[_0x1ac5b5(0x141)](_0x1ac5b5(0x13f)),_0x2ab4be[_0x1ac5b5(0x12d)][_0x1ac5b5(0x13d)](_0x5b40ff=>this[_0x1ac5b5(0x136)](_0x5b40ff)));}[_0x3b1a47(0x136)](_0x24830a){const _0x22d125=_0x3b1a47,_0x1b82b0=this[_0x22d125(0x138)][_0x22d125(0x132)],{data:_0xd0d839}=_0x24830a,_0x4ee4bd={'type':_0x22d125(0x139),'content':''};if(_0xd0d839&&_0x22d125(0x13f)==_0xd0d839[_0x22d125(0x130)]){if(!_0xd0d839[_0x22d125(0x122)])return{'type':_0x22d125(0x139),'content':_0x5cb674(_0x1b82b0,_0x22d125(0x123),_0x5cb674(_0x1b82b0,_0x22d125(0x12a)))+'\x20('+_0xd0d839[_0x22d125(0x135)]+')'};if(!_0xd0d839[_0x22d125(0x135)]){let _0x406ba8=_0x24830a[_0x22d125(0x140)];for(;_0x406ba8;){if(_0x406ba8[_0x22d125(0x128)]&&_0x22d125(0x142)==_0x406ba8[_0x22d125(0x128)][_0x22d125(0x130)]&&_0x406ba8[_0x22d125(0x128)][_0x22d125(0x135)])return _0x4ee4bd;_0x406ba8=_0x406ba8[_0x22d125(0x126)];}return{'type':_0x22d125(0x139),'content':_0x5cb674(_0x1b82b0,_0x22d125(0x133),_0x5cb674(_0x1b82b0,_0x22d125(0x12a)))+'\x20('+_0xd0d839[_0x22d125(0x122)]+')'};}}}}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/pagebreak
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for {@link module:page-break/pagebreak~PageBreak page break feature}.
11
+ */
12
+ export default class TrackChangesPageBreak extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ function _0x5492(_0x592ef8,_0x4ac9bc){const _0xd6abd8=_0xd6ab();return _0x5492=function(_0x54926b,_0x285b90){_0x54926b=_0x54926b-0x176;let _0x5ccfce=_0xd6abd8[_0x54926b];return _0x5ccfce;},_0x5492(_0x592ef8,_0x4ac9bc);}const _0x1c399a=_0x5492;(function(_0x359de6,_0x1cd6fe){const _0x1980af=_0x5492,_0x3bf95f=_0x359de6();while(!![]){try{const _0x5964cb=-parseInt(_0x1980af(0x183))/0x1+-parseInt(_0x1980af(0x185))/0x2*(-parseInt(_0x1980af(0x18d))/0x3)+-parseInt(_0x1980af(0x186))/0x4*(parseInt(_0x1980af(0x184))/0x5)+parseInt(_0x1980af(0x17d))/0x6+-parseInt(_0x1980af(0x18c))/0x7+parseInt(_0x1980af(0x188))/0x8*(parseInt(_0x1980af(0x17c))/0x9)+parseInt(_0x1980af(0x181))/0xa*(parseInt(_0x1980af(0x180))/0xb);if(_0x5964cb===_0x1cd6fe)break;else _0x3bf95f['push'](_0x3bf95f['shift']());}catch(_0x533e67){_0x3bf95f['push'](_0x3bf95f['shift']());}}}(_0xd6ab,0x9ccf4));import{Plugin as _0xeb7fd7}from'ckeditor5/src/core.js';import{getTranslation as _0x4e4765}from'../utils/common-translations.js';function _0xd6ab(){const _0x329b4e=['plugins','get','6324769gzAMuM','40aUxWFY','enableCommand','1173287beIxFD','5EbaTIB','106SBquhz','4680548ALjmgp','registerElementLabel','10352gSAjEZ','afterInit','has','locale','8754585oRjgIh','27777QFngjx','pageBreak','editor','descriptionFactory','PageBreakEditing','TrackChangesEditing','ELEMENT_PAGE_BREAK','6507LsgrIG','3060996NnWxKz'];_0xd6ab=function(){return _0x329b4e;};return _0xd6ab();}export default class wt extends _0xeb7fd7{[_0x1c399a(0x189)](){const _0x2d5e1d=_0x1c399a,_0x66c807=this[_0x2d5e1d(0x177)];if(!_0x66c807[_0x2d5e1d(0x17e)][_0x2d5e1d(0x18a)](_0x2d5e1d(0x179)))return;_0x66c807[_0x2d5e1d(0x17e)][_0x2d5e1d(0x17f)](_0x2d5e1d(0x17a))[_0x2d5e1d(0x182)](_0x2d5e1d(0x176));const _0x39fa89=_0x66c807[_0x2d5e1d(0x17e)][_0x2d5e1d(0x17f)](_0x2d5e1d(0x17a)),_0x4af6d8=_0x66c807[_0x2d5e1d(0x18b)];_0x39fa89[_0x2d5e1d(0x178)][_0x2d5e1d(0x187)](_0x2d5e1d(0x176),_0x47b941=>_0x4e4765(_0x4af6d8,_0x2d5e1d(0x17b),_0x47b941));}}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/paragraph
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for paragraph feature.
11
+ */
12
+ export default class TrackChangesParagraph extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x396ff5=_0x4e54;function _0x2f1f(){const _0x111596=['$text','nodeAfter','has','editing','*Insert:*\x20%0','showSuggestionHighlights','*Change\x20to:*\x20%0','markerRange','data','addClass','format','model','formatBlock','plugins','104Nwddso','1192575HlQGib','448984utwCYk','toViewPosition','registerDescriptionCallback','createUIElement','get','335704UkURyb','isLimit','options','insertion','enableDefaultAttributesIntegration','span','editor','activeMarkers','mapper','isBlock','58700qRsQHB','_registerLegacyDescription','insert','start','downcastDispatcher','ck-suggestion-marker-split','15LIdUfE','end','highest','consumable','1722322MerMeh','_splitMarkerName','afterInit','type','includes','ELEMENT_PARAGRAPH','schema','276870SXRKNE','Paragraph','markerName','registerElementLabel','ck-suggestion-marker--active','enableCommand','commandName','getItemLabel','TrackChangesEditing','checkChild','consume','getFirstRange','locale','paragraph','bindElementToMarker','name','isTouching','writer','694017lRvahy','insertParagraph','addMarker:suggestion:insertion','descriptionFactory'];_0x2f1f=function(){return _0x111596;};return _0x2f1f();}(function(_0x417802,_0x25bb17){const _0x1421ca=_0x4e54,_0x3b441e=_0x417802();while(!![]){try{const _0x55494f=parseInt(_0x1421ca(0x190))/0x1+parseInt(_0x1421ca(0x186))/0x2+parseInt(_0x1421ca(0x180))/0x3+-parseInt(_0x1421ca(0x181))/0x4*(-parseInt(_0x1421ca(0x196))/0x5)+parseInt(_0x1421ca(0x1a1))/0x6+parseInt(_0x1421ca(0x19a))/0x7+-parseInt(_0x1421ca(0x17f))/0x8*(parseInt(_0x1421ca(0x1b3))/0x9);if(_0x55494f===_0x25bb17)break;else _0x3b441e['push'](_0x3b441e['shift']());}catch(_0x2e646d){_0x3b441e['push'](_0x3b441e['shift']());}}}(_0x2f1f,0x3d2a9));import{Plugin as _0x254d81}from'ckeditor5/src/core.js';import{getTranslation as _0x23346b}from'../utils/common-translations.js';function _0x4e54(_0x5defc5,_0x53bdfe){const _0x2f1ff0=_0x2f1f();return _0x4e54=function(_0x4e5486,_0x296c76){_0x4e5486=_0x4e5486-0x17e;let _0x3506cc=_0x2f1ff0[_0x4e5486];return _0x3506cc;},_0x4e54(_0x5defc5,_0x53bdfe);}export default class kt extends _0x254d81{[_0x396ff5(0x19c)](){const _0x64d1b4=_0x396ff5,_0x4d319c=this[_0x64d1b4(0x18c)];if(!_0x4d319c[_0x64d1b4(0x17e)][_0x64d1b4(0x1b9)](_0x64d1b4(0x1a2)))return;const _0x1962de=_0x4d319c[_0x64d1b4(0x1ad)],_0x49eae3=_0x4d319c[_0x64d1b4(0x17e)][_0x64d1b4(0x185)](_0x64d1b4(0x1a9));_0x49eae3[_0x64d1b4(0x1b6)][_0x64d1b4(0x1a4)](_0x64d1b4(0x1ae),_0x27cae5=>_0x23346b(_0x1962de,_0x64d1b4(0x19f),_0x27cae5)),_0x49eae3[_0x64d1b4(0x18a)](_0x64d1b4(0x1ae)),_0x49eae3[_0x64d1b4(0x1a6)](_0x64d1b4(0x1b4)),_0x4d319c[_0x64d1b4(0x1ba)][_0x64d1b4(0x194)]['on'](_0x64d1b4(0x1b5),nr(_0x4d319c),{'priority':_0x64d1b4(0x198)}),_0x4d319c[_0x64d1b4(0x1bf)][_0x64d1b4(0x194)]['on'](_0x64d1b4(0x1b5),(_0x15df74,_0x54b89d,_0x1d4f0a)=>{const _0x2020d0=_0x64d1b4;_0x1d4f0a[_0x2020d0(0x188)][_0x2020d0(0x1bc)]&&nr(_0x4d319c,{'showActiveMarker':!0x1})(_0x15df74,_0x54b89d,_0x1d4f0a);},{'priority':_0x64d1b4(0x198)});const _0x430538=_0x49eae3[_0x64d1b4(0x1b6)];_0x430538[_0x64d1b4(0x183)](_0x44ae4f=>{const _0x34fdf1=_0x64d1b4;if(_0x34fdf1(0x189)!==_0x44ae4f[_0x34fdf1(0x19d)])return;const {start:_0x1e80a4,end:_0x27c68e}=_0x44ae4f[_0x34fdf1(0x1ac)]();if(!_0x1e80a4[_0x34fdf1(0x1b1)](_0x27c68e)||!_0x1e80a4[_0x34fdf1(0x1b8)])return;const _0x479401=_0x4d319c[_0x34fdf1(0x1c2)][_0x34fdf1(0x1a0)],_0x5d923b=_0x1e80a4[_0x34fdf1(0x1b8)];return _0x479401[_0x34fdf1(0x18f)](_0x5d923b)&&!_0x479401[_0x34fdf1(0x187)](_0x5d923b)&&_0x479401[_0x34fdf1(0x1aa)](_0x5d923b,_0x34fdf1(0x1b7))?{'type':_0x34fdf1(0x189),'content':_0x23346b(_0x1962de,_0x34fdf1(0x1bb),_0x430538[_0x34fdf1(0x1a8)](_0x5d923b,0x1))}:void 0x0;}),this[_0x64d1b4(0x191)]();}[_0x396ff5(0x191)](){const _0x3dc7d9=_0x396ff5,_0x146377=this[_0x3dc7d9(0x18c)],_0x4ae029=_0x146377[_0x3dc7d9(0x1ad)];_0x146377[_0x3dc7d9(0x17e)][_0x3dc7d9(0x185)](_0x3dc7d9(0x1a9))[_0x3dc7d9(0x1b6)][_0x3dc7d9(0x183)](_0x3e9407=>{const _0x3048a7=_0x3dc7d9;if(_0x3048a7(0x1c3)!=_0x3e9407[_0x3048a7(0x19d)])return;const {data:_0x3c79c7}=_0x3e9407;return _0x3c79c7&&_0x3048a7(0x1ae)==_0x3c79c7[_0x3048a7(0x1a7)]?{'type':_0x3048a7(0x1c1),'content':_0x23346b(_0x4ae029,_0x3048a7(0x1bd),_0x23346b(_0x4ae029,_0x3048a7(0x19f)))}:void 0x0;});}}function nr(_0x5cde4c,{showActiveMarker:_0x348a76=!0x0}={}){return(_0x11f503,_0x391949,_0x377e16)=>{const _0x1e96bd=_0x4e54,_0xc4318e=_0x5cde4c[_0x1e96bd(0x17e)][_0x1e96bd(0x185)](_0x1e96bd(0x1a9)),_0x19639d=_0x391949[_0x1e96bd(0x1be)][_0x1e96bd(0x193)],_0x7b4b49=_0x391949[_0x1e96bd(0x1be)][_0x1e96bd(0x197)],_0x1ec409=_0x5cde4c[_0x1e96bd(0x1c2)][_0x1e96bd(0x1a0)];if(!_0x19639d[_0x1e96bd(0x1b1)](_0x7b4b49)||!_0x19639d[_0x1e96bd(0x1b8)])return;const _0xcc01b2=_0x19639d[_0x1e96bd(0x1b8)];if(_0x1ec409[_0x1e96bd(0x18f)](_0xcc01b2)&&!_0x1ec409[_0x1e96bd(0x187)](_0xcc01b2)&&_0x1ec409[_0x1e96bd(0x1aa)](_0xcc01b2,_0x1e96bd(0x1b7))){if(!_0x377e16[_0x1e96bd(0x199)][_0x1e96bd(0x1ab)](_0x391949[_0x1e96bd(0x1be)],_0x11f503[_0x1e96bd(0x1b0)]))return;const {authorId:_0x50173d}=_0xc4318e[_0x1e96bd(0x19b)](_0x391949[_0x1e96bd(0x1a3)]),_0x5cacf1=_0x377e16[_0x1e96bd(0x1b2)][_0x1e96bd(0x184)](_0x1e96bd(0x18b),{'class':_0x1e96bd(0x195),'data-author-id':_0x50173d}),_0x212390=_0x377e16[_0x1e96bd(0x18e)][_0x1e96bd(0x182)](_0x7b4b49);_0x348a76&&_0xc4318e[_0x1e96bd(0x18d)][_0x1e96bd(0x19e)](_0x391949[_0x1e96bd(0x1a3)])&&_0x377e16[_0x1e96bd(0x1b2)][_0x1e96bd(0x1c0)](_0x1e96bd(0x1a5),_0x5cacf1),_0x377e16[_0x1e96bd(0x1b2)][_0x1e96bd(0x192)](_0x212390,_0x5cacf1),_0x377e16[_0x1e96bd(0x18e)][_0x1e96bd(0x1af)](_0x5cacf1,_0x391949[_0x1e96bd(0x1a3)]);}};}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/removeformat
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for remove format feature.
11
+ */
12
+ export default class TrackChangesRemoveFormat extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ function _0x1e99(_0x21eaf0,_0x49b12f){const _0x8afb03=_0x8afb();return _0x1e99=function(_0x1e99f4,_0x3ba1d3){_0x1e99f4=_0x1e99f4-0x193;let _0x3fe514=_0x8afb03[_0x1e99f4];return _0x3fe514;},_0x1e99(_0x21eaf0,_0x49b12f);}const _0x51e2a4=_0x1e99;(function(_0x445616,_0x42af22){const _0x1bb6d5=_0x1e99,_0x10965c=_0x445616();while(!![]){try{const _0x3812f8=parseInt(_0x1bb6d5(0x1a0))/0x1+parseInt(_0x1bb6d5(0x1ac))/0x2+-parseInt(_0x1bb6d5(0x199))/0x3+parseInt(_0x1bb6d5(0x194))/0x4+-parseInt(_0x1bb6d5(0x19b))/0x5*(parseInt(_0x1bb6d5(0x1a4))/0x6)+-parseInt(_0x1bb6d5(0x1ad))/0x7+parseInt(_0x1bb6d5(0x196))/0x8*(parseInt(_0x1bb6d5(0x1a3))/0x9);if(_0x3812f8===_0x42af22)break;else _0x10965c['push'](_0x10965c['shift']());}catch(_0x1d3f31){_0x10965c['push'](_0x10965c['shift']());}}}(_0x8afb,0x83687));function _0x8afb(){const _0x402168=['descriptionFactory','901395DGZXEA','editor','3370MtNrRP','formatBlock','formatInline','locale','format','61141aTHRAQ','registerDescriptionCallback','commandName','90NMvdDz','534NtZWLk','get','removeFormat','_registerLegacyDescription','afterInit','has','*Remove\x20all\x20formatting*','type','578226BCmZId','4072866ZCxHff','TrackChangesEditing','RemoveFormatEditing','2223968xmxchr','plugins','459432fHSRSL','enableDefaultAttributesIntegration'];_0x8afb=function(){return _0x402168;};return _0x8afb();}import{Plugin as _0x14562a}from'ckeditor5/src/core.js';import{getTranslation as _0x22ac24}from'../utils/common-translations.js';export default class bt extends _0x14562a{[_0x51e2a4(0x1a8)](){const _0xd1367f=_0x51e2a4,_0x2715d0=this[_0xd1367f(0x19a)];if(!_0x2715d0[_0xd1367f(0x195)][_0xd1367f(0x1a9)](_0xd1367f(0x193)))return;_0x2715d0[_0xd1367f(0x195)][_0xd1367f(0x1a5)](_0xd1367f(0x1ae))[_0xd1367f(0x197)](_0xd1367f(0x1a6)),this[_0xd1367f(0x1a7)]();}[_0x51e2a4(0x1a7)](){const _0x50bbda=_0x51e2a4,_0x1cb8f2=this[_0x50bbda(0x19a)];_0x1cb8f2[_0x50bbda(0x195)][_0x50bbda(0x1a5)](_0x50bbda(0x1ae))[_0x50bbda(0x198)][_0x50bbda(0x1a1)](_0x39676b=>{const _0x5df903=_0x50bbda;if(_0x5df903(0x19c)!=_0x39676b[_0x5df903(0x1ab)]&&_0x5df903(0x19d)!=_0x39676b[_0x5df903(0x1ab)])return;const {data:_0xac9356}=_0x39676b;return _0xac9356&&_0x5df903(0x1a6)==_0xac9356[_0x5df903(0x1a2)]?{'type':_0x5df903(0x19f),'content':_0x22ac24(_0x1cb8f2[_0x5df903(0x19e)],_0x5df903(0x1aa))}:void 0x0;});}}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/mention
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for restricted editing mode feature from restricted editing package.
11
+ */
12
+ export default class TrackChangesRestrictedEditingMode extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x3d2baa=_0xf4af;(function(_0x12dd1a,_0x48d5d5){const _0x19f892=_0xf4af,_0x51203f=_0x12dd1a();while(!![]){try{const _0x242f4e=-parseInt(_0x19f892(0x19a))/0x1+-parseInt(_0x19f892(0x18d))/0x2+parseInt(_0x19f892(0x18e))/0x3*(-parseInt(_0x19f892(0x189))/0x4)+parseInt(_0x19f892(0x19f))/0x5*(parseInt(_0x19f892(0x187))/0x6)+-parseInt(_0x19f892(0x194))/0x7*(parseInt(_0x19f892(0x19e))/0x8)+parseInt(_0x19f892(0x198))/0x9*(-parseInt(_0x19f892(0x184))/0xa)+parseInt(_0x19f892(0x193))/0xb;if(_0x242f4e===_0x48d5d5)break;else _0x51203f['push'](_0x51203f['shift']());}catch(_0x24c92a){_0x51203f['push'](_0x51203f['shift']());}}}(_0x5b73,0x7d47f));function _0x5b73(){const _0x664cc3=['375wPMOBv','editor','goToPreviousRestrictedEditingException','discardAllSuggestions','RestrictedEditingModeEditing','25384667IVxHvG','7QzXDiT','plugins','enableCommand','discardSuggestion','9bYCLcA','acceptSelectedSuggestions','204650iuaEtR','acceptSuggestion','trackChanges','has','2555360vBNOns','5KRZSBC','10225130JeZudp','discardSelectedSuggestions','goToNextRestrictedEditingException','2673156rzSPAg','acceptAllSuggestions','18116LmZAHd','get','TrackChangesEditing','afterInit','254728rkLXmX'];_0x5b73=function(){return _0x664cc3;};return _0x5b73();}function _0xf4af(_0x4021e6,_0x336492){const _0x5b7374=_0x5b73();return _0xf4af=function(_0xf4af44,_0x3477d3){_0xf4af44=_0xf4af44-0x184;let _0x19bb69=_0x5b7374[_0xf4af44];return _0x19bb69;},_0xf4af(_0x4021e6,_0x336492);}import{Plugin as _0x212a92}from'ckeditor5/src/core.js';export default class yt extends _0x212a92{[_0x3d2baa(0x18c)](){const _0x1d7718=_0x3d2baa,_0x33f828=this[_0x1d7718(0x18f)];if(!_0x33f828[_0x1d7718(0x195)][_0x1d7718(0x19d)](_0x1d7718(0x192)))return;const _0x4ec7de=_0x33f828[_0x1d7718(0x195)][_0x1d7718(0x18a)](_0x1d7718(0x18b));_0x4ec7de[_0x1d7718(0x196)](_0x1d7718(0x190)),_0x4ec7de[_0x1d7718(0x196)](_0x1d7718(0x186));const _0x51e955=_0x33f828[_0x1d7718(0x195)][_0x1d7718(0x18a)](_0x1d7718(0x192));_0x51e955[_0x1d7718(0x196)](_0x1d7718(0x19c)),_0x51e955[_0x1d7718(0x196)](_0x1d7718(0x19b)),_0x51e955[_0x1d7718(0x196)](_0x1d7718(0x197)),_0x51e955[_0x1d7718(0x196)](_0x1d7718(0x188)),_0x51e955[_0x1d7718(0x196)](_0x1d7718(0x191)),_0x51e955[_0x1d7718(0x196)](_0x1d7718(0x199)),_0x51e955[_0x1d7718(0x196)](_0x1d7718(0x185));}}
@@ -0,0 +1,16 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/shiftentercommand
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import { ShiftEnter } from 'ckeditor5/src/enter.js';
10
+ /**
11
+ * Provides track changes plugin integration for {@link module:enter/shiftentercommand~ShiftEnterCommand enter command}.
12
+ */
13
+ export default class TrackChangesShiftEnterCommand extends Plugin {
14
+ static get requires(): readonly [typeof ShiftEnter];
15
+ init(): void;
16
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x36047d=_0x36f6;(function(_0x248672,_0x361ac3){const _0x40efdc=_0x36f6,_0x41d896=_0x248672();while(!![]){try{const _0x563ba7=-parseInt(_0x40efdc(0x151))/0x1+-parseInt(_0x40efdc(0x16e))/0x2+-parseInt(_0x40efdc(0x15f))/0x3*(parseInt(_0x40efdc(0x159))/0x4)+parseInt(_0x40efdc(0x180))/0x5+-parseInt(_0x40efdc(0x165))/0x6+parseInt(_0x40efdc(0x162))/0x7*(parseInt(_0x40efdc(0x166))/0x8)+parseInt(_0x40efdc(0x14e))/0x9*(parseInt(_0x40efdc(0x16f))/0xa);if(_0x563ba7===_0x361ac3)break;else _0x41d896['push'](_0x41d896['shift']());}catch(_0xd1e605){_0x41d896['push'](_0x41d896['shift']());}}}(_0x5655,0xd22af));import{Plugin as _0x3a8ba3}from'ckeditor5/src/core.js';function _0x5655(){const _0x406d3a=['ELEMENT_LINE_BREAK','init','addMarker:suggestion','element','registerElementLabel','split','1679285ZITQaf','addMarker:suggestion:insertion','editing','createPositionBefore','activeMarkers','showSuggestionHighlights','markerName','15225363kLnYzO','mapper','bindElementToMarker','1128259TbptCr','data','locale','options','addClass','TrackChangesEditing','requires','markerRange','1276XJszXG','_splitMarkerName','plugins','consumable','high','ck-suggestion-marker--active','9777ZFuxAI','descriptionFactory','toViewPosition','203XwqIem','shiftEnter','editor','10324194nTJtqH','140408rjTMoo','includes','insert','softBreak','enableCommand','writer','createUIElement','span','2341062mPwlZL','30bBhtZV','deletion','downcastDispatcher','model','ck-suggestion-marker-','getItems','merge','addMarker:suggestion:deletion','name','test','get'];_0x5655=function(){return _0x406d3a;};return _0x5655();}import{ShiftEnter as _0x232ae3}from'ckeditor5/src/enter.js';import{getTranslation as _0x2e4c01}from'../utils/common-translations.js';function _0x36f6(_0x355854,_0x23b8c6){const _0x565557=_0x5655();return _0x36f6=function(_0x36f66b,_0x15c931){_0x36f66b=_0x36f66b-0x14e;let _0x49e421=_0x565557[_0x36f66b];return _0x49e421;},_0x36f6(_0x355854,_0x23b8c6);}export default class jt extends _0x3a8ba3{static get[_0x36047d(0x157)](){return[_0x232ae3];}[_0x36047d(0x17b)](){const _0x51769d=_0x36047d,_0x5c8155=this[_0x51769d(0x164)],_0x336303=_0x5c8155[_0x51769d(0x15b)][_0x51769d(0x179)](_0x51769d(0x156));_0x336303[_0x51769d(0x16a)](_0x51769d(0x163)),_0x5c8155[_0x51769d(0x182)][_0x51769d(0x171)]['on'](_0x51769d(0x181),ke(_0x5c8155),{'priority':_0x51769d(0x15d)}),_0x5c8155[_0x51769d(0x182)][_0x51769d(0x171)]['on'](_0x51769d(0x176),ke(_0x5c8155),{'priority':_0x51769d(0x15d)}),_0x5c8155[_0x51769d(0x152)][_0x51769d(0x171)]['on'](_0x51769d(0x17c),(_0x56dd5b,_0x2fd453,_0x1fa319)=>{const _0x33b639=_0x51769d;_0x1fa319[_0x33b639(0x154)][_0x33b639(0x185)]&&ke(_0x5c8155,{'showActiveMarker':!0x1})(_0x56dd5b,_0x2fd453,_0x1fa319);}),_0x336303[_0x51769d(0x160)][_0x51769d(0x17e)](_0x51769d(0x169),_0x1b1a95=>_0x2e4c01(_0x5c8155[_0x51769d(0x153)],_0x51769d(0x17a),_0x1b1a95));}}function ke(_0x2b5c40,{showActiveMarker:_0x229448=!0x0}={}){return(_0x45fd84,_0x5eb42d,_0x34eb9b)=>{const _0xc6bad0=_0x36f6,_0x6e1294=_0x2b5c40[_0xc6bad0(0x15b)][_0xc6bad0(0x179)](_0xc6bad0(0x156));if(!_0x34eb9b[_0xc6bad0(0x15c)][_0xc6bad0(0x178)](_0x5eb42d[_0xc6bad0(0x158)],_0x45fd84[_0xc6bad0(0x177)]))return;const _0x5e5e1a=_0x2b5c40[_0xc6bad0(0x172)];for(const _0x1e917f of _0x5eb42d[_0xc6bad0(0x158)][_0xc6bad0(0x174)]()){if(!_0x1e917f['is'](_0xc6bad0(0x17d),_0xc6bad0(0x169)))continue;const _0x3239b4=_0xc6bad0(0x170)==_0x5eb42d[_0xc6bad0(0x186)][_0xc6bad0(0x17f)](':')[0x1]?_0xc6bad0(0x175):_0xc6bad0(0x17f),{authorId:_0x6df90b}=_0x6e1294[_0xc6bad0(0x15a)](_0x5eb42d[_0xc6bad0(0x186)]),_0x2a5a8d=_0x34eb9b[_0xc6bad0(0x16b)][_0xc6bad0(0x16c)](_0xc6bad0(0x16d),{'class':_0xc6bad0(0x173)+_0x3239b4,'data-author-id':_0x6df90b}),_0x185c7a=_0x34eb9b[_0xc6bad0(0x14f)][_0xc6bad0(0x161)](_0x5e5e1a[_0xc6bad0(0x183)](_0x1e917f));_0x229448&&_0x6e1294[_0xc6bad0(0x184)][_0xc6bad0(0x167)](_0x5eb42d[_0xc6bad0(0x186)])&&_0x34eb9b[_0xc6bad0(0x16b)][_0xc6bad0(0x155)](_0xc6bad0(0x15e),_0x2a5a8d),_0x34eb9b[_0xc6bad0(0x16b)][_0xc6bad0(0x168)](_0x185c7a,_0x2a5a8d),_0x34eb9b[_0xc6bad0(0x14f)][_0xc6bad0(0x150)](_0x2a5a8d,_0x5eb42d[_0xc6bad0(0x186)]);}};}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/mention
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for standard editing mode feature from restricted editing package.
11
+ */
12
+ export default class TrackChangesStandardEditingMode extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ const _0x29bfd2=_0x5630;function _0x5630(_0x78edc3,_0x8adbe7){const _0x571cee=_0x571c();return _0x5630=function(_0x563015,_0x2b6d51){_0x563015=_0x563015-0x1ed;let _0x1d7272=_0x571cee[_0x563015];return _0x1d7272;},_0x5630(_0x78edc3,_0x8adbe7);}(function(_0x3b3344,_0x57aabe){const _0x5b5cb2=_0x5630,_0x454e54=_0x3b3344();while(!![]){try{const _0x2578bc=-parseInt(_0x5b5cb2(0x1f7))/0x1+-parseInt(_0x5b5cb2(0x209))/0x2+-parseInt(_0x5b5cb2(0x1f9))/0x3*(-parseInt(_0x5b5cb2(0x20f))/0x4)+parseInt(_0x5b5cb2(0x205))/0x5*(parseInt(_0x5b5cb2(0x213))/0x6)+-parseInt(_0x5b5cb2(0x1ee))/0x7+-parseInt(_0x5b5cb2(0x1f0))/0x8+parseInt(_0x5b5cb2(0x1fb))/0x9*(parseInt(_0x5b5cb2(0x1ff))/0xa);if(_0x2578bc===_0x57aabe)break;else _0x454e54['push'](_0x454e54['shift']());}catch(_0x189cee){_0x454e54['push'](_0x454e54['shift']());}}}(_0x571c,0x36b45));import{Plugin as _0x440962}from'ckeditor5/src/core.js';import{getRangesWithAttribute as _0x34e868}from'./utils.js';import{getTranslation as _0xbd801d}from'../utils/common-translations.js';export default class St extends _0x440962{[_0x29bfd2(0x20a)](){const _0xe1efd0=_0x29bfd2,_0x2142b3=this[_0xe1efd0(0x210)],_0xffb4ea=_0x2142b3[_0xe1efd0(0x1f6)],_0x464855=_0x2142b3[_0xe1efd0(0x20e)];if(!_0x2142b3[_0xe1efd0(0x211)][_0xe1efd0(0x212)](_0xe1efd0(0x201)))return;const _0x4e3fab=_0x2142b3[_0xe1efd0(0x211)][_0xe1efd0(0x200)](_0xe1efd0(0x1ed)),_0x32b0af=_0xe1efd0(0x1f3),_0x32706c=_0x2142b3[_0xe1efd0(0x202)][_0xe1efd0(0x200)](_0x32b0af);_0x4e3fab[_0xe1efd0(0x1f8)](_0x32b0af,(_0x57d58d,_0x3ba688={})=>{const _0x6468e3=_0xe1efd0,_0x3363a5=_0xffb4ea[_0x6468e3(0x204)][_0x6468e3(0x20b)];if(_0x3363a5[_0x6468e3(0x1f2)])return void _0x57d58d(_0x3ba688);const _0x1246fb=void 0x0!==_0x3ba688[_0x6468e3(0x1f1)]?_0x3ba688[_0x6468e3(0x1f1)]:!_0x32706c[_0x6468e3(0x1fa)];_0xffb4ea[_0x6468e3(0x214)](()=>{const _0x5c1acb=_0x6468e3,_0x8e4b6=Array[_0x5c1acb(0x203)](_0x3363a5[_0x5c1acb(0x1ef)]());for(const _0x2cabf2 of _0x8e4b6){const _0x35b08e=_0x1246fb?[_0x2cabf2]:_0x34e868(_0x32b0af,_0x2cabf2,_0xffb4ea);for(const _0x51c284 of _0x35b08e)_0x4e3fab[_0x5c1acb(0x20c)](_0x51c284,{'commandName':_0x32b0af,'commandParams':[{'forceValue':_0x1246fb}]});}});}),_0x4e3fab[_0xe1efd0(0x1f4)][_0xe1efd0(0x208)](_0xf45bed=>{const _0x1da0e9=_0xe1efd0;if(_0x1da0e9(0x207)!=_0xf45bed[_0x1da0e9(0x215)]&&_0x1da0e9(0x1fc)!=_0xf45bed[_0x1da0e9(0x215)])return;const {data:_0x4bbfc8}=_0xf45bed;return _0x4bbfc8&&_0x4bbfc8[_0x1da0e9(0x1fd)]==_0x32b0af?_0x4bbfc8[_0x1da0e9(0x20d)][0x0][_0x1da0e9(0x1f1)]?{'type':_0x1da0e9(0x206),'content':_0xbd801d(_0x464855,_0x1da0e9(0x1f5))}:{'type':_0x1da0e9(0x206),'content':_0xbd801d(_0x464855,_0x1da0e9(0x1fe))}:void 0x0;});}}function _0x571c(){const _0x328d2a=['change','type','TrackChangesEditing','2086399Isgjzl','getRanges','3245408MmryxU','forceValue','isCollapsed','restrictedEditingException','descriptionFactory','FORMAT_RESTRICTED_ENABLED','model','140913daPioq','enableCommand','3lNzfrA','value','282402OSBHAd','formatInline','commandName','FORMAT_RESTRICTED_DISABLED','290DyzwOK','get','StandardEditingModeEditing','commands','from','document','895aMmSIU','format','formatBlock','registerDescriptionCallback','710110gkKhUF','afterInit','selection','markInlineFormat','commandParams','locale','828724KLbgLI','editor','plugins','has','10278hfHzKq'];_0x571c=function(){return _0x328d2a;};return _0x571c();}
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ /**
6
+ * @module track-changes/integrations/style
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for styles dropdown feature.
11
+ */
12
+ export default class TrackChangesStylesDropdown extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }
@@ -0,0 +1,23 @@
1
+ /*
2
+ * Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
+ *
4
+ *
5
+ *
6
+ *
7
+ * +---------------------------------------------------------------------------------+
8
+ * | |
9
+ * | Hello stranger! |
10
+ * | |
11
+ * | |
12
+ * | What you're currently looking at is the source code of a legally protected, |
13
+ * | proprietary software. Any attempts to deobfuscate / disassemble this code |
14
+ * | are forbidden and will result in legal consequences. |
15
+ * | |
16
+ * | |
17
+ * +---------------------------------------------------------------------------------+
18
+ *
19
+ *
20
+ *
21
+ *
22
+ */
23
+ function _0x19ca(_0x93d4cd,_0x2fde0a){const _0x321e67=_0x321e();return _0x19ca=function(_0x19caf6,_0x3e5241){_0x19caf6=_0x19caf6-0x1d9;let _0x19ccbb=_0x321e67[_0x19caf6];return _0x19ccbb;},_0x19ca(_0x93d4cd,_0x2fde0a);}function _0x321e(){const _0x207e5f=['editor','commandParams','formatBlock','DataSchema','block','inline','getGhsAttributeNameForElement','ghsAttributes','FORMAT_STYLE','*Remove\x20format:*\x20%0','GeneralHtmlSupport','plugins','commandName','locale','33UlvMzh','532eYCPQQ','get','registerAttributeLabel','add','202392unEJcJ','registerBlockAttribute','registerInlineAttribute','registerDescriptionCallback','2454768RYvCXT','3033610nsRvqo','element','styleName','afterInit','descriptionFactory','Style','type','definitions','2eFJGJg','config','TrackChangesEditing','841890NMWDwQ','enableDefaultAttributesIntegration','formatInline','10645saxZsh','format','normalizeConfig','forceValue','5983352xpCWDe','has','toLowerCase','style','_registerLegacyDescription','244209ktEMtZ','StyleUtils','70JcsOgj','*Set\x20format:*\x20%0'];_0x321e=function(){return _0x207e5f;};return _0x321e();}const _0x402574=_0x19ca;(function(_0x114627,_0x1bbe57){const _0x3d68e3=_0x19ca,_0x4ab289=_0x114627();while(!![]){try{const _0x2ce7d7=-parseInt(_0x3d68e3(0x1f8))/0x1+parseInt(_0x3d68e3(0x1f5))/0x2*(-parseInt(_0x3d68e3(0x204))/0x3)+-parseInt(_0x3d68e3(0x1e4))/0x4*(parseInt(_0x3d68e3(0x1fb))/0x5)+-parseInt(_0x3d68e3(0x1e8))/0x6*(-parseInt(_0x3d68e3(0x206))/0x7)+parseInt(_0x3d68e3(0x1ff))/0x8+-parseInt(_0x3d68e3(0x1ec))/0x9+-parseInt(_0x3d68e3(0x1ed))/0xa*(-parseInt(_0x3d68e3(0x1e3))/0xb);if(_0x2ce7d7===_0x1bbe57)break;else _0x4ab289['push'](_0x4ab289['shift']());}catch(_0x89034b){_0x4ab289['push'](_0x4ab289['shift']());}}}(_0x321e,0x7e018));import{Plugin as _0x3a6c19}from'ckeditor5/src/core.js';import{getTranslation as _0x3c73cc}from'../utils/common-translations.js';export default class At extends _0x3a6c19{[_0x402574(0x1f0)](){const _0x493c52=_0x402574,_0x37878f=this[_0x493c52(0x208)];if(!_0x37878f[_0x493c52(0x1e0)][_0x493c52(0x200)](_0x493c52(0x1f2))||!_0x37878f[_0x493c52(0x1e0)][_0x493c52(0x200)](_0x493c52(0x20b)))return;const _0x58c31a=_0x37878f[_0x493c52(0x1e0)][_0x493c52(0x1e5)](_0x493c52(0x1f7)),_0x20d692=_0x37878f[_0x493c52(0x1e2)],_0x363cc1=_0x37878f[_0x493c52(0x1f6)][_0x493c52(0x1e5)](_0x493c52(0x202))||{},_0x4a619f=_0x37878f[_0x493c52(0x1e0)][_0x493c52(0x1e5)](_0x493c52(0x1df)),_0x1d03c4=_0x37878f[_0x493c52(0x1e0)][_0x493c52(0x1e5)](_0x493c52(0x205))[_0x493c52(0x1fd)](_0x37878f[_0x493c52(0x1e0)][_0x493c52(0x1e5)](_0x493c52(0x20b)),_0x363cc1[_0x493c52(0x1f4)]);_0x58c31a[_0x493c52(0x1f9)](_0x493c52(0x202));const _0x284553=new Set();for(const _0x2f8791 of _0x1d03c4[_0x493c52(0x1d9)]){const _0x48292c=_0x4a619f[_0x493c52(0x1db)](_0x2f8791[_0x493c52(0x1ee)]);_0x284553[_0x493c52(0x1e7)](_0x48292c);}const _0x40bb60=new Set();for(const _0x5e437c of _0x1d03c4[_0x493c52(0x1da)]){const _0x703795=_0x4a619f[_0x493c52(0x1db)](_0x5e437c[_0x493c52(0x1ee)]);_0x40bb60[_0x493c52(0x1e7)](_0x703795);for(const _0x153af1 of _0x5e437c[_0x493c52(0x1dc)])_0x40bb60[_0x493c52(0x1e7)](_0x153af1);}for(const _0xe47794 of _0x284553)_0x58c31a[_0x493c52(0x1e9)](_0xe47794),_0x58c31a[_0x493c52(0x1f1)][_0x493c52(0x1e6)](_0xe47794,_0x3c73cc(_0x20d692,_0x493c52(0x1dd)));for(const _0x5c22cb of _0x40bb60)_0x58c31a[_0x493c52(0x1ea)](_0x5c22cb),_0x58c31a[_0x493c52(0x1f1)][_0x493c52(0x1e6)](_0x5c22cb,_0x3c73cc(_0x20d692,_0x493c52(0x1dd)));this[_0x493c52(0x203)]();}[_0x402574(0x203)](){const _0x16ee95=_0x402574,_0x1c4afa=this[_0x16ee95(0x208)],_0x901e8a=_0x1c4afa[_0x16ee95(0x1e2)];_0x1c4afa[_0x16ee95(0x1e0)][_0x16ee95(0x1e5)](_0x16ee95(0x1f7))[_0x16ee95(0x1f1)][_0x16ee95(0x1eb)](_0x1c2ff7=>{const _0x5bd81e=_0x16ee95;if(_0x5bd81e(0x20a)!=_0x1c2ff7[_0x5bd81e(0x1f3)]&&_0x5bd81e(0x1fa)!=_0x1c2ff7[_0x5bd81e(0x1f3)])return;const {data:_0x2a0bcd}=_0x1c2ff7;return _0x2a0bcd&&_0x5bd81e(0x202)===_0x2a0bcd[_0x5bd81e(0x1e1)]?_0x2a0bcd[_0x5bd81e(0x209)][0x0][_0x5bd81e(0x1fe)]?{'type':_0x5bd81e(0x1fc),'content':_0x3c73cc(_0x901e8a,_0x5bd81e(0x207),_0x2a0bcd[_0x5bd81e(0x209)][0x0][_0x5bd81e(0x1ef)][_0x5bd81e(0x201)]())}:{'type':_0x5bd81e(0x1fc),'content':_0x3c73cc(_0x901e8a,_0x5bd81e(0x1de),_0x2a0bcd[_0x5bd81e(0x209)][0x0][_0x5bd81e(0x1ef)][_0x5bd81e(0x201)]())}:void 0x0;});}}