@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,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/commands/acceptsuggestioncommand
7
+ * @publicApi
8
+ */
9
+ import { Command, type Editor } from 'ckeditor5/src/core.js';
10
+ import type Suggestion from '../suggestion.js';
11
+ /**
12
+ * A command that accepts the suggestion chain.
13
+ */
14
+ export default class AcceptSuggestionCommand extends Command {
15
+ constructor(editor: Editor, suggestions: Map<string, Suggestion>);
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ refresh(): void;
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ execute(suggestionId: string): void;
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
+ const _0x569169=_0x24d4;function _0x24d4(_0x5ec837,_0x5420ca){const _0x50938a=_0x5093();return _0x24d4=function(_0x24d49f,_0x56543f){_0x24d49f=_0x24d49f-0xcb;let _0x490a41=_0x50938a[_0x24d49f];return _0x490a41;},_0x24d4(_0x5ec837,_0x5420ca);}function _0x5093(){const _0x2e3012=['isEnabled','12167958qOIYVa','464360xmXqAv','plugins','editor','2933bcZlRz','10uzHfFW','acceptSuggestion','getRanges','TrackChangesEditing','refresh','7206021dYKARX','track-changes-accept-suggestion-not-found','canEditAt','_suggestions','9474ftEhcU','get','15EatUIQ','934555oSFnvT','model','3UykWSd','execute','419840EXLMSx','2673080mzJOGC','_isEnabledBasedOnSelection'];_0x5093=function(){return _0x2e3012;};return _0x5093();}(function(_0x5c7a6b,_0x13569d){const _0x1c196b=_0x24d4,_0x5f19c7=_0x5c7a6b();while(!![]){try{const _0x14667f=-parseInt(_0x1c196b(0xd7))/0x1*(-parseInt(_0x1c196b(0xd9))/0x2)+-parseInt(_0x1c196b(0xd4))/0x3*(parseInt(_0x1c196b(0xde))/0x4)+-parseInt(_0x1c196b(0xd5))/0x5+-parseInt(_0x1c196b(0xd2))/0x6*(-parseInt(_0x1c196b(0xe1))/0x7)+-parseInt(_0x1c196b(0xda))/0x8+parseInt(_0x1c196b(0xce))/0x9*(-parseInt(_0x1c196b(0xe2))/0xa)+parseInt(_0x1c196b(0xdd))/0xb;if(_0x14667f===_0x13569d)break;else _0x5f19c7['push'](_0x5f19c7['shift']());}catch(_0x2d7b25){_0x5f19c7['push'](_0x5f19c7['shift']());}}}(_0x5093,0x78f0e));import{Command as _0x4fa0c8}from'ckeditor5/src/core.js';import{CKEditorError as _0x29008b}from'ckeditor5/src/utils.js';export default class O extends _0x4fa0c8{constructor(_0x3ae3eb,_0x5c813a){const _0x1fd949=_0x24d4;super(_0x3ae3eb),this[_0x1fd949(0xd1)]=_0x5c813a,this[_0x1fd949(0xcd)](),this[_0x1fd949(0xdb)]=!0x1;}[_0x569169(0xcd)](){const _0xda31f5=_0x569169;this[_0xda31f5(0xdc)]=!0x0;}[_0x569169(0xd8)](_0x26f5c1){const _0x52139a=_0x569169,_0x25fa59=this[_0x52139a(0xd1)][_0x52139a(0xd3)](_0x26f5c1);if(!_0x25fa59)throw new _0x29008b(_0x52139a(0xcf),this);const _0x45d702=_0x25fa59[_0x52139a(0xcb)]();this[_0x52139a(0xe0)][_0x52139a(0xd6)][_0x52139a(0xd0)](_0x45d702)&&this[_0x52139a(0xe0)][_0x52139a(0xdf)][_0x52139a(0xd3)](_0x52139a(0xcc))[_0x52139a(0xe3)](_0x25fa59);}}
@@ -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/commands/discardsuggestioncommand
7
+ * @publicApi
8
+ */
9
+ import { Command, type Editor } from 'ckeditor5/src/core.js';
10
+ import type Suggestion from '../suggestion.js';
11
+ /**
12
+ * A command that discards the suggestion chain.
13
+ */
14
+ export default class DiscardSuggestionCommand extends Command {
15
+ constructor(editor: Editor, suggestions: Map<string, Suggestion>);
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ refresh(): void;
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ execute(suggestionId: string): void;
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
+ const _0x8a16d9=_0x2b84;function _0x2b84(_0x3fb0ca,_0x57776f){const _0x26e155=_0x26e1();return _0x2b84=function(_0x2b8448,_0x1ff3a5){_0x2b8448=_0x2b8448-0x116;let _0x1900c0=_0x26e155[_0x2b8448];return _0x1900c0;},_0x2b84(_0x3fb0ca,_0x57776f);}(function(_0x27db14,_0x4ba31d){const _0x4c6444=_0x2b84,_0xff33cf=_0x27db14();while(!![]){try{const _0x1a66cb=-parseInt(_0x4c6444(0x128))/0x1*(-parseInt(_0x4c6444(0x11a))/0x2)+-parseInt(_0x4c6444(0x129))/0x3+parseInt(_0x4c6444(0x123))/0x4+parseInt(_0x4c6444(0x11b))/0x5+-parseInt(_0x4c6444(0x127))/0x6+-parseInt(_0x4c6444(0x126))/0x7+parseInt(_0x4c6444(0x11c))/0x8;if(_0x1a66cb===_0x4ba31d)break;else _0xff33cf['push'](_0xff33cf['shift']());}catch(_0x1cc8a5){_0xff33cf['push'](_0xff33cf['shift']());}}}(_0x26e1,0x4c745));import{Command as _0x185338}from'ckeditor5/src/core.js';import{CKEditorError as _0x5a6f72}from'ckeditor5/src/utils.js';function _0x26e1(){const _0x5e7ed9=['editor','getRanges','2182194AVpOOz','2819724sxkNHn','1UPRVJp','1505814OMklWC','canEditAt','execute','refresh','_isEnabledBasedOnSelection','isEnabled','track-changes-discard-suggestion-not-found','31102rJtnNz','41235JiKQhv','10356360QYKgOY','discardSuggestion','get','plugins','model','TrackChangesEditing','_suggestions','1113792WKoFdJ'];_0x26e1=function(){return _0x5e7ed9;};return _0x26e1();}export default class R extends _0x185338{constructor(_0xab33a6,_0x5d8b92){const _0x1d4aa3=_0x2b84;super(_0xab33a6),this[_0x1d4aa3(0x122)]=_0x5d8b92,this[_0x1d4aa3(0x116)](),this[_0x1d4aa3(0x117)]=!0x1;}[_0x8a16d9(0x116)](){const _0x382259=_0x8a16d9;this[_0x382259(0x118)]=!0x0;}[_0x8a16d9(0x12b)](_0xa6ddcd){const _0x3c9950=_0x8a16d9,_0x42cbec=this[_0x3c9950(0x122)][_0x3c9950(0x11e)](_0xa6ddcd);if(!_0x42cbec)throw new _0x5a6f72(_0x3c9950(0x119),this);const _0x3f3c66=_0x42cbec[_0x3c9950(0x125)]();this[_0x3c9950(0x124)][_0x3c9950(0x120)][_0x3c9950(0x12a)](_0x3f3c66)&&this[_0x3c9950(0x124)][_0x3c9950(0x11f)][_0x3c9950(0x11e)](_0x3c9950(0x121))[_0x3c9950(0x11d)](_0x42cbec);}}
@@ -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/commands/executeonallsuggestionscommand
7
+ * @publicApi
8
+ */
9
+ import { Command, type Editor } from 'ckeditor5/src/core.js';
10
+ import type Suggestion from '../suggestion.js';
11
+ /**
12
+ * A command that executes passed command (accept or discard suggestion command) at once for all suggestions in the document.
13
+ */
14
+ export default class ExecuteOnAllSuggestionsCommand<T extends Command> extends Command {
15
+ constructor(editor: Editor, command: T, suggestions: Map<string, Suggestion>);
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ refresh(): void;
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ execute(): void;
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
+ const _0xa28388=_0x4088;(function(_0x5c9cf1,_0x37f8b1){const _0x4f3b6c=_0x4088,_0x386894=_0x5c9cf1();while(!![]){try{const _0x595755=parseInt(_0x4f3b6c(0xc0))/0x1*(parseInt(_0x4f3b6c(0xc8))/0x2)+parseInt(_0x4f3b6c(0xc4))/0x3*(-parseInt(_0x4f3b6c(0xcc))/0x4)+parseInt(_0x4f3b6c(0xc2))/0x5*(parseInt(_0x4f3b6c(0xcf))/0x6)+-parseInt(_0x4f3b6c(0xc5))/0x7*(parseInt(_0x4f3b6c(0xd0))/0x8)+parseInt(_0x4f3b6c(0xb9))/0x9+-parseInt(_0x4f3b6c(0xc3))/0xa+parseInt(_0x4f3b6c(0xcb))/0xb*(parseInt(_0x4f3b6c(0xbe))/0xc);if(_0x595755===_0x37f8b1)break;else _0x386894['push'](_0x386894['shift']());}catch(_0x5eda0a){_0x386894['push'](_0x386894['shift']());}}}(_0x2b71,0x2e23f));function _0x4088(_0x425bc1,_0x3fc279){const _0x2b719a=_0x2b71();return _0x4088=function(_0x4088d4,_0x1abf77){_0x4088d4=_0x4088d4-0xb8;let _0x27e085=_0x2b719a[_0x4088d4];return _0x27e085;},_0x4088(_0x425bc1,_0x3fc279);}import{Command as _0xa917de}from'ckeditor5/src/core.js';import{sortSuggestions as _0x1ee67c,executeCommandForSuggestions as _0x16e510}from'../utils/utils.js';function _0x2b71(){const _0x447a51=['isInContent','57047PafKCa','values','48370HStnXN','1546400lcgooZ','30075sthJKq','336GRcZXj','canEditAt','_isEnabledBasedOnSelection','12dhDaVN','some','execute','22GbPNvd','140ApFCbm','_command','model','6XYQjLj','6416kDuSFg','refresh','isEnabled','98766CyyEqI','getRanges','from','_suggestions','editor','2220432PnwvDg'];_0x2b71=function(){return _0x447a51;};return _0x2b71();}export default class x extends _0xa917de{constructor(_0x229fc2,_0x560616,_0xc3bc3c){const _0x3ffac0=_0x4088;super(_0x229fc2),this[_0x3ffac0(0xcd)]=_0x560616,this[_0x3ffac0(0xbc)]=_0xc3bc3c,this[_0x3ffac0(0xd1)](),this[_0x3ffac0(0xc7)]=!0x1;}[_0xa28388(0xd1)](){const _0xff8300=_0xa28388,_0x4c2aea=Array[_0xff8300(0xbb)](this[_0xff8300(0xbc)][_0xff8300(0xc1)]())[_0xff8300(0xc9)](_0x265ba0=>_0x265ba0[_0xff8300(0xbf)]);this[_0xff8300(0xb8)]=this[_0xff8300(0xcd)][_0xff8300(0xb8)]&&_0x4c2aea;}[_0xa28388(0xca)](){const _0x459e06=_0xa28388,_0x363a1f=_0x1ee67c(Array[_0x459e06(0xbb)](this[_0x459e06(0xbc)][_0x459e06(0xc1)]()));for(const _0x503792 of _0x363a1f){const _0x385975=_0x503792[_0x459e06(0xba)]();if(!this[_0x459e06(0xbd)][_0x459e06(0xce)][_0x459e06(0xc6)](_0x385975))return;}_0x16e510(this[_0x459e06(0xbd)][_0x459e06(0xce)],this[_0x459e06(0xcd)],_0x363a1f);}}
@@ -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/commands/executeonselectedsuggestionscommand
7
+ * @publicApi
8
+ */
9
+ import { Command, type Editor } from 'ckeditor5/src/core.js';
10
+ import type Suggestion from '../suggestion.js';
11
+ /**
12
+ * A command that executes passed command (accept or discard suggestion command) at once for all suggestions selected in the document.
13
+ */
14
+ export default class ExecuteOnSelectedSuggestionsCommand<T extends Command> extends Command {
15
+ constructor(editor: Editor, command: T, suggestions: Map<string, Suggestion>);
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ refresh(): void;
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ execute(): void;
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 _0x4fe1(){const _0x31b4cb=['document','getRanges','values','56OoQIRe','654481ggJnxH','execute','_suggestions','model','9HNKdsy','editor','6612850woPlLf','92GZBFwl','7938007qfedXf','2638866aVNfMZ','size','refresh','canEditAt','1332uhDxBL','306232VatZYf','_selectedSuggestions','_command','selection','from','1641PTvHKr','_isEnabledBasedOnSelection','91265UPUnDm','isEnabled'];_0x4fe1=function(){return _0x31b4cb;};return _0x4fe1();}function _0x5e3e(_0x15a1b1,_0x14ee07){const _0x4fe155=_0x4fe1();return _0x5e3e=function(_0x5e3e16,_0x1d37c0){_0x5e3e16=_0x5e3e16-0x82;let _0xc1335e=_0x4fe155[_0x5e3e16];return _0xc1335e;},_0x5e3e(_0x15a1b1,_0x14ee07);}const _0x259501=_0x5e3e;(function(_0x3bdcee,_0x33f940){const _0x111572=_0x5e3e,_0x308b07=_0x3bdcee();while(!![]){try{const _0x3974bd=-parseInt(_0x111572(0x85))/0x1+-parseInt(_0x111572(0x92))/0x2*(parseInt(_0x111572(0x98))/0x3)+-parseInt(_0x111572(0x8c))/0x4*(-parseInt(_0x111572(0x9a))/0x5)+-parseInt(_0x111572(0x8e))/0x6+-parseInt(_0x111572(0x84))/0x7*(-parseInt(_0x111572(0x93))/0x8)+-parseInt(_0x111572(0x89))/0x9*(-parseInt(_0x111572(0x8b))/0xa)+parseInt(_0x111572(0x8d))/0xb;if(_0x3974bd===_0x33f940)break;else _0x308b07['push'](_0x308b07['shift']());}catch(_0x3d7acc){_0x308b07['push'](_0x308b07['shift']());}}}(_0x4fe1,0x9ec8b));import{Command as _0x19c5d4}from'ckeditor5/src/core.js';import{sortSuggestions as _0x52698c,getSelectedSuggestions as _0xec5094,executeCommandForSuggestions as _0x5aca6d}from'../utils/utils.js';export default class E extends _0x19c5d4{constructor(_0x403047,_0xfe9a5c,_0x4c0ac8){const _0x2cd4f9=_0x5e3e;super(_0x403047),this[_0x2cd4f9(0x95)]=_0xfe9a5c,this[_0x2cd4f9(0x87)]=_0x4c0ac8,this[_0x2cd4f9(0x94)]=new Set(),this[_0x2cd4f9(0x90)](),this[_0x2cd4f9(0x99)]=!0x1;}[_0x259501(0x90)](){const _0x22ec8e=_0x259501,_0x194a24=this[_0x22ec8e(0x8a)][_0x22ec8e(0x88)][_0x22ec8e(0x9c)][_0x22ec8e(0x96)],_0x1efe9b=Array[_0x22ec8e(0x97)](this[_0x22ec8e(0x87)][_0x22ec8e(0x83)]());this[_0x22ec8e(0x94)]=_0xec5094(_0x194a24,_0x1efe9b),this[_0x22ec8e(0x9b)]=this[_0x22ec8e(0x95)][_0x22ec8e(0x9b)]&&!!this[_0x22ec8e(0x94)][_0x22ec8e(0x8f)];}[_0x259501(0x86)](){const _0x240da0=_0x259501,_0x226470=_0x52698c(Array[_0x240da0(0x97)](this[_0x240da0(0x94)]));for(const _0x21e177 of _0x226470){const _0x3be0e0=_0x21e177[_0x240da0(0x82)]();if(!this[_0x240da0(0x8a)][_0x240da0(0x88)][_0x240da0(0x91)](_0x3be0e0))return;}_0x5aca6d(this[_0x240da0(0x8a)][_0x240da0(0x88)],this[_0x240da0(0x95)],_0x226470);}}
@@ -0,0 +1,26 @@
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/commands/trackchangescommand
7
+ * @publicApi
8
+ */
9
+ import { Command, type Editor } from 'ckeditor5/src/core.js';
10
+ /**
11
+ * Turns the track changes mode on and off.
12
+ *
13
+ * When the track changes mode is on, this command disables all the unsupported commands.
14
+ */
15
+ export default class TrackChangesCommand extends Command {
16
+ value: boolean;
17
+ constructor(editor: Editor, enabledCommands: Set<Command>);
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ refresh(): void;
22
+ /**
23
+ * @inheritDoc
24
+ */
25
+ execute(): void;
26
+ }
@@ -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 _0x387138=_0x1410;function _0x1410(_0x42c81a,_0x2ca07d){const _0x384ab1=_0x384a();return _0x1410=function(_0x1410fd,_0x5ad04d){_0x1410fd=_0x1410fd-0x1c4;let _0x1f1eac=_0x384ab1[_0x1410fd];return _0x1f1eac;},_0x1410(_0x42c81a,_0x2ca07d);}(function(_0xa95dd9,_0x24f1cd){const _0x2e8945=_0x1410,_0x4eb760=_0xa95dd9();while(!![]){try{const _0x126c83=parseInt(_0x2e8945(0x1cd))/0x1*(-parseInt(_0x2e8945(0x1c4))/0x2)+parseInt(_0x2e8945(0x1d7))/0x3*(-parseInt(_0x2e8945(0x1d3))/0x4)+parseInt(_0x2e8945(0x1c8))/0x5+-parseInt(_0x2e8945(0x1c5))/0x6+parseInt(_0x2e8945(0x1d2))/0x7+parseInt(_0x2e8945(0x1dc))/0x8*(parseInt(_0x2e8945(0x1cb))/0x9)+parseInt(_0x2e8945(0x1c9))/0xa;if(_0x126c83===_0x24f1cd)break;else _0x4eb760['push'](_0x4eb760['shift']());}catch(_0x1e6cbd){_0x4eb760['push'](_0x4eb760['shift']());}}}(_0x384a,0x9fec8));import{Command as _0x436021}from'ckeditor5/src/core.js';function _0x384a(){const _0x4c57dd=['clearForceDisabled','affectsData','forceDisabled','7139314Bpsjfw','106984ZJBOYZ','_disableUnsupportedCommands','commands','_isEnabledBasedOnSelection','84goGTnN','editor','value','isEnabled','has','2349448BZdYwc','14FWqQyq','5926224imFkHM','execute','refresh','6028035mkVyOf','3818610dhIwOX','_enabledCommands','9NRoTqb','TrackChangesCommand','72773ookvap','_enableCommands'];_0x384a=function(){return _0x4c57dd;};return _0x384a();}export default class B extends _0x436021{constructor(_0x359cbd,_0x167c67){const _0x30bd12=_0x1410;super(_0x359cbd),this[_0x30bd12(0x1ca)]=_0x167c67,this[_0x30bd12(0x1d9)]=!0x1,this[_0x30bd12(0x1c7)](),this[_0x30bd12(0x1d6)]=!0x1;}[_0x387138(0x1c7)](){const _0x56d51a=_0x387138;this[_0x56d51a(0x1da)]=!0x0;}[_0x387138(0x1c6)](){const _0x36c48c=_0x387138;this[_0x36c48c(0x1d9)]=!this[_0x36c48c(0x1d9)],this[_0x36c48c(0x1d9)]?this[_0x36c48c(0x1d4)]():this[_0x36c48c(0x1ce)]();}[_0x387138(0x1d4)](){const _0x1cf2ab=_0x387138;for(const _0x344121 of this[_0x1cf2ab(0x1d8)][_0x1cf2ab(0x1d5)][_0x1cf2ab(0x1d5)]())_0x344121[_0x1cf2ab(0x1d0)]&&!this[_0x1cf2ab(0x1ca)][_0x1cf2ab(0x1db)](_0x344121)&&_0x344121[_0x1cf2ab(0x1d1)](_0x1cf2ab(0x1cc));}[_0x387138(0x1ce)](){const _0x3a1773=_0x387138;for(const _0x263178 of this[_0x3a1773(0x1d8)][_0x3a1773(0x1d5)][_0x3a1773(0x1d5)]())_0x263178[_0x3a1773(0x1d0)]&&!this[_0x3a1773(0x1ca)][_0x3a1773(0x1db)](_0x263178)&&_0x263178[_0x3a1773(0x1cf)](_0x3a1773(0x1cc));}}
package/src/index.d.ts ADDED
@@ -0,0 +1,18 @@
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
+ export { default as TrackChanges, type SuggestionData, type TrackChangesAdapter } from './trackchanges.js';
6
+ export { default as TrackChangesData } from './trackchangesdata.js';
7
+ export { default as TrackChangesEditing } from './trackchangesediting.js';
8
+ export { default as Suggestion, type SuggestionJSON } from './suggestion.js';
9
+ export { default as BaseSuggestionThreadView } from './ui/view/basesuggestionthreadview.js';
10
+ export { default as SuggestionThreadView } from './ui/view/suggestionthreadview.js';
11
+ export { default as SuggestionView } from './ui/view/suggestionview.js';
12
+ export type { TrackChangesConfig } from './trackchangesconfig.js';
13
+ export type { default as AcceptSuggestionCommand } from './commands/acceptsuggestioncommand.js';
14
+ export type { default as DiscardSuggestionCommand } from './commands/discardsuggestioncommand.js';
15
+ export type { default as ExecuteOnAllSuggestionsCommand } from './commands/executeonallsuggestionscommand.js';
16
+ export type { default as ExecuteOnSelectedSuggestionsCommand } from './commands/executeonselectedsuggestionscommand.js';
17
+ export type { default as TrackChangesCommand } from './commands/trackchangescommand.js';
18
+ import './augmentation.js';
package/src/index.js ADDED
@@ -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(_0x374802,_0xece124){var _0x4c6bd7=_0x45ba,_0x3ce92a=_0x374802();while(!![]){try{var _0xbff89=parseInt(_0x4c6bd7(0xbc))/0x1+-parseInt(_0x4c6bd7(0xb8))/0x2*(parseInt(_0x4c6bd7(0xb9))/0x3)+parseInt(_0x4c6bd7(0xb3))/0x4*(-parseInt(_0x4c6bd7(0xbe))/0x5)+-parseInt(_0x4c6bd7(0xbb))/0x6*(-parseInt(_0x4c6bd7(0xb6))/0x7)+parseInt(_0x4c6bd7(0xba))/0x8*(-parseInt(_0x4c6bd7(0xb4))/0x9)+-parseInt(_0x4c6bd7(0xbd))/0xa*(-parseInt(_0x4c6bd7(0xb2))/0xb)+-parseInt(_0x4c6bd7(0xb5))/0xc*(-parseInt(_0x4c6bd7(0xb7))/0xd);if(_0xbff89===_0xece124)break;else _0x3ce92a['push'](_0x3ce92a['shift']());}catch(_0x300c3a){_0x3ce92a['push'](_0x3ce92a['shift']());}}}(_0xfa45,0x613a7));function _0xfa45(){var _0x3b1824=['16HcANIR','96222BEMoHL','167278MWlHOn','18550hOreXM','25EvNLOL','1397ZXUpZs','555748pgGJUC','1741995enJfxj','88764nNCCxG','119igRhSE','1651UzOgCU','14MJpFIp','57801MeblUk'];_0xfa45=function(){return _0x3b1824;};return _0xfa45();}export{default as TrackChanges}from'./trackchanges.js';export{default as TrackChangesData}from'./trackchangesdata.js';export{default as TrackChangesEditing}from'./trackchangesediting.js';export{default as Suggestion}from'./suggestion.js';function _0x45ba(_0x40d2a3,_0x510be2){var _0xfa450d=_0xfa45();return _0x45ba=function(_0x45badf,_0x411eea){_0x45badf=_0x45badf-0xb2;var _0x2550cb=_0xfa450d[_0x45badf];return _0x2550cb;},_0x45ba(_0x40d2a3,_0x510be2);}export{default as BaseSuggestionThreadView}from'./ui/view/basesuggestionthreadview.js';export{default as SuggestionThreadView}from'./ui/view/suggestionthreadview.js';export{default as SuggestionView}from'./ui/view/suggestionview.js';import'./augmentation.js';
@@ -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/aiassistant
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for the AI Assistant feature.
11
+ */
12
+ export default class TrackChangesAIAssistant 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 _0x2110df=_0x5b28;function _0x5b28(_0x2de08e,_0x442973){const _0x49800b=_0x4980();return _0x5b28=function(_0x5b28c8,_0x4b9f4f){_0x5b28c8=_0x5b28c8-0x1f3;let _0xe649f6=_0x49800b[_0x5b28c8];return _0xe649f6;},_0x5b28(_0x2de08e,_0x442973);}(function(_0x5923ce,_0x768fd8){const _0x1e089a=_0x5b28,_0x2175fa=_0x5923ce();while(!![]){try{const _0x3d9893=parseInt(_0x1e089a(0x201))/0x1+parseInt(_0x1e089a(0x1f7))/0x2+parseInt(_0x1e089a(0x1fc))/0x3*(parseInt(_0x1e089a(0x1f8))/0x4)+parseInt(_0x1e089a(0x202))/0x5*(-parseInt(_0x1e089a(0x200))/0x6)+parseInt(_0x1e089a(0x1f3))/0x7+-parseInt(_0x1e089a(0x1f5))/0x8+-parseInt(_0x1e089a(0x1fa))/0x9;if(_0x3d9893===_0x768fd8)break;else _0x2175fa['push'](_0x2175fa['shift']());}catch(_0x3ed7cb){_0x2175fa['push'](_0x2175fa['shift']());}}}(_0x4980,0x6764e));import{Plugin as _0xe2d528}from'ckeditor5/src/core.js';function _0x4980(){const _0x12e009=['commands','9908055XBkhsd','enableCommand','3hQrkPl','editor','get','showAIAssistant','140730NZHcmY','450107jcYtWX','15GCuFUr','afterInit','3630431SQSUHN','TrackChangesEditing','2940728aSTZJa','plugins','560116CjsrcC','2854220IoNkCV'];_0x4980=function(){return _0x12e009;};return _0x4980();}export default class U extends _0xe2d528{[_0x2110df(0x203)](){const _0x49314b=_0x2110df,_0x7631fd=this[_0x49314b(0x1fd)],_0x1916cb=_0x7631fd[_0x49314b(0x1f6)][_0x49314b(0x1fe)](_0x49314b(0x1f4));_0x7631fd[_0x49314b(0x1f9)][_0x49314b(0x1fe)](_0x49314b(0x1ff))&&_0x1916cb[_0x49314b(0x1fb)](_0x49314b(0x1ff));}}
@@ -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/alignment
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for alignment feature.
11
+ */
12
+ export default class TrackChangesAlignment 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 _0x3a5bdf=_0x1f74;function _0x1f74(_0x3fd265,_0x539a78){const _0x3133dc=_0x3133();return _0x1f74=function(_0x1f74fb,_0x399616){_0x1f74fb=_0x1f74fb-0x11e;let _0x790460=_0x3133dc[_0x1f74fb];return _0x790460;},_0x1f74(_0x3fd265,_0x539a78);}(function(_0x31f2f9,_0x2665c7){const _0x5b74c7=_0x1f74,_0x2da0b4=_0x31f2f9();while(!![]){try{const _0x5a45d8=parseInt(_0x5b74c7(0x12c))/0x1+-parseInt(_0x5b74c7(0x137))/0x2*(-parseInt(_0x5b74c7(0x13b))/0x3)+-parseInt(_0x5b74c7(0x143))/0x4*(parseInt(_0x5b74c7(0x140))/0x5)+-parseInt(_0x5b74c7(0x132))/0x6*(-parseInt(_0x5b74c7(0x129))/0x7)+-parseInt(_0x5b74c7(0x11f))/0x8+parseInt(_0x5b74c7(0x128))/0x9+parseInt(_0x5b74c7(0x134))/0xa;if(_0x5a45d8===_0x2665c7)break;else _0x2da0b4['push'](_0x2da0b4['shift']());}catch(_0x152f5e){_0x2da0b4['push'](_0x2da0b4['shift']());}}}(_0x3133,0xf420c));import{Plugin as _0x2741a2}from'ckeditor5/src/core.js';import{getTranslation as _0x2d0794}from'../utils/common-translations.js';function _0x3133(){const _0x3933d7=['center','alignment','get','487374uTfiSK','plugins','11291650QSfoMn','format','FORMAT_ALIGN_TO_CENTER','620318pDVdUu','FORMAT_ALIGNMENT','FORMAT_ALIGN_TO_RIGHT','AlignmentEditing','15GwYCkf','_registerLegacyDescription','registerBlockAttribute','justify','FORMAT_JUSTIFY_TEXT','3889010GGHneq','right','FORMAT_ALIGN_TO_LEFT','8HaHKJa','type','registerAttributeLabel','commandName','has','10043688CzmljE','TrackChangesEditing','afterInit','*Format:*\x20%0','descriptionFactory','left','editor','formatBlock','locale','8368038aZxrnB','14dJGLMv','value','commandParams','38813qNgTzI','registerDescriptionCallback','enableDefaultAttributesIntegration'];_0x3133=function(){return _0x3933d7;};return _0x3133();}export default class V extends _0x2741a2{[_0x3a5bdf(0x121)](){const _0x30ef13=_0x3a5bdf,_0x5e27f3=this[_0x30ef13(0x125)],_0x2b4a58=_0x5e27f3[_0x30ef13(0x127)];if(!_0x5e27f3[_0x30ef13(0x133)][_0x30ef13(0x11e)](_0x30ef13(0x13a)))return;const _0x405d4c=_0x5e27f3[_0x30ef13(0x133)][_0x30ef13(0x131)](_0x30ef13(0x120));_0x405d4c[_0x30ef13(0x12e)](_0x30ef13(0x130)),_0x405d4c[_0x30ef13(0x13d)](_0x30ef13(0x130)),_0x405d4c[_0x30ef13(0x123)][_0x30ef13(0x145)](_0x30ef13(0x130),_0x2d0794(_0x2b4a58,_0x30ef13(0x138))),this[_0x30ef13(0x13c)]();}[_0x3a5bdf(0x13c)](){const _0x27d6cc=_0x3a5bdf,_0x56cbe0=this[_0x27d6cc(0x125)],_0x1ebdd1=_0x56cbe0[_0x27d6cc(0x127)];_0x56cbe0[_0x27d6cc(0x133)][_0x27d6cc(0x131)](_0x27d6cc(0x120))[_0x27d6cc(0x123)][_0x27d6cc(0x12d)](_0x218655=>{const _0x3d5941=_0x27d6cc;if(_0x3d5941(0x126)!=_0x218655[_0x3d5941(0x144)])return;const {data:_0x4b293b}=_0x218655;if(_0x4b293b&&_0x3d5941(0x130)==_0x4b293b[_0x3d5941(0x146)]){const _0x3f751d=_0x4b293b[_0x3d5941(0x12b)][0x0][_0x3d5941(0x12a)];return{'type':_0x3d5941(0x135),'content':_0x2d0794(_0x1ebdd1,_0x3d5941(0x122),function(_0x28993a){const _0x3c808f=_0x3d5941;switch(_0x28993a){case _0x3c808f(0x124):return _0x2d0794(_0x1ebdd1,_0x3c808f(0x142));case _0x3c808f(0x141):return _0x2d0794(_0x1ebdd1,_0x3c808f(0x139));case _0x3c808f(0x12f):return _0x2d0794(_0x1ebdd1,_0x3c808f(0x136));case _0x3c808f(0x13e):return _0x2d0794(_0x1ebdd1,_0x3c808f(0x13f));}}(_0x3f751d))};}});}}
@@ -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/basicstyles
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for basic styles features.
11
+ */
12
+ export default class TrackChangesBasicStyles 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 _0x3e3605=_0x4a60;(function(_0x37407b,_0x87f2ca){const _0x908f3c=_0x4a60,_0x2980b3=_0x37407b();while(!![]){try{const _0x5d5a10=parseInt(_0x908f3c(0x165))/0x1+parseInt(_0x908f3c(0x14e))/0x2*(parseInt(_0x908f3c(0x172))/0x3)+-parseInt(_0x908f3c(0x169))/0x4*(parseInt(_0x908f3c(0x161))/0x5)+parseInt(_0x908f3c(0x147))/0x6*(-parseInt(_0x908f3c(0x15f))/0x7)+-parseInt(_0x908f3c(0x15e))/0x8+-parseInt(_0x908f3c(0x163))/0x9+parseInt(_0x908f3c(0x156))/0xa;if(_0x5d5a10===_0x87f2ca)break;else _0x2980b3['push'](_0x2980b3['shift']());}catch(_0x12b3c5){_0x2980b3['push'](_0x2980b3['shift']());}}}(_0x1fdb,0xcfb6e));function _0x4a60(_0x515d1b,_0x47e247){const _0x1fdbfd=_0x1fdb();return _0x4a60=function(_0x4a605d,_0x568b51){_0x4a605d=_0x4a605d-0x141;let _0x598203=_0x1fdbfd[_0x4a605d];return _0x598203;},_0x4a60(_0x515d1b,_0x47e247);}import{Plugin as _0x38c439}from'ckeditor5/src/core.js';import{getTranslation as _0x3eb29d}from'../utils/common-translations.js';const Yt=[_0x3e3605(0x148),_0x3e3605(0x14b),_0x3e3605(0x15d),_0x3e3605(0x145),_0x3e3605(0x14d),_0x3e3605(0x15a),_0x3e3605(0x178)];function _0x1fdb(){const _0x4428ac=['*Format:*\x20%0','registerAttributeLabel','strikethrough','FORMAT_SUBSCRIPT','SuperscriptEditing','bold','descriptionFactory','type','FORMAT_BOLD','CodeEditing','subscript','6cMMbQL','BoldEditing','code','FORMAT_ITALIC','ItalicEditing','*Remove\x20format:*\x20%0','StrikethroughEditing','8IJUQRL','TrackChangesEditing','format','afterInit','underline','locale','enableDefaultAttributesIntegration','FORMAT_CODE','26721520EYIOao','superscript','FORMAT_','italic','SubscriptEditing','toLowerCase','slice','UnderlineEditing','9961608DdaBzP','8335145KSRcVl','FORMAT_SUPERSCRIPT','25ezBNTH','forceValue','14745402bIhZqC','plugins','1676976GUJXCs','get','has','editor','899616ImqtQt','FORMAT_UNDERLINE','registerInlineAttribute','toUpperCase','commandParams','_registerLegacyDescription','commandName','FORMAT_STRIKETHROUGH','registerDescriptionCallback','1275378SwSebG','formatInline'];_0x1fdb=function(){return _0x4428ac;};return _0x1fdb();}export default class G extends _0x38c439{[_0x3e3605(0x151)](){const _0x1d4af2=_0x3e3605,_0x491c09=this[_0x1d4af2(0x168)],_0x5a156b=_0x491c09[_0x1d4af2(0x164)][_0x1d4af2(0x166)](_0x1d4af2(0x14f)),_0x542dcd=_0x491c09[_0x1d4af2(0x153)];for(const _0x3be07f of Yt){if(!_0x491c09[_0x1d4af2(0x164)][_0x1d4af2(0x167)](_0x3be07f))continue;const _0x285a58=_0x3be07f[_0x1d4af2(0x15c)](0x0,-0x7)[_0x1d4af2(0x15b)](),_0x5a2be5=_0x1d4af2(0x158)+_0x285a58[_0x1d4af2(0x16c)]();_0x5a156b[_0x1d4af2(0x154)](_0x285a58),_0x5a156b[_0x1d4af2(0x16b)](_0x285a58),_0x5a156b[_0x1d4af2(0x142)][_0x1d4af2(0x175)](_0x285a58,_0x3eb29d(_0x542dcd,_0x5a2be5));}this[_0x1d4af2(0x16e)]();}[_0x3e3605(0x16e)](){const _0x5e4a5a=_0x3e3605,_0x14f3a9=this[_0x5e4a5a(0x168)],_0x420e6f=_0x14f3a9[_0x5e4a5a(0x153)],_0x2afa1e=_0x14f3a9[_0x5e4a5a(0x164)][_0x5e4a5a(0x166)](_0x5e4a5a(0x14f));function _0x2f1604(_0x56a6dd,_0xb7bd01){const _0x2df291=_0x5e4a5a;_0x2afa1e[_0x2df291(0x142)][_0x2df291(0x171)](_0x336051=>{const _0x426988=_0x2df291;if(_0x426988(0x173)!=_0x336051[_0x426988(0x143)])return;const {data:_0x22e628}=_0x336051;return _0x22e628&&_0x22e628[_0x426988(0x16f)]===_0x56a6dd?_0x22e628[_0x426988(0x16d)][0x0][_0x426988(0x162)]?{'type':_0x426988(0x150),'content':_0x3eb29d(_0x420e6f,_0x426988(0x174),_0xb7bd01)}:{'type':_0x426988(0x150),'content':_0x3eb29d(_0x420e6f,_0x426988(0x14c),_0xb7bd01)}:void 0x0;});}_0x2f1604(_0x5e4a5a(0x141),_0x3eb29d(_0x420e6f,_0x5e4a5a(0x144))),_0x2f1604(_0x5e4a5a(0x159),_0x3eb29d(_0x420e6f,_0x5e4a5a(0x14a))),_0x2f1604(_0x5e4a5a(0x152),_0x3eb29d(_0x420e6f,_0x5e4a5a(0x16a))),_0x2f1604(_0x5e4a5a(0x149),_0x3eb29d(_0x420e6f,_0x5e4a5a(0x155))),_0x2f1604(_0x5e4a5a(0x176),_0x3eb29d(_0x420e6f,_0x5e4a5a(0x170))),_0x2f1604(_0x5e4a5a(0x146),_0x3eb29d(_0x420e6f,_0x5e4a5a(0x177))),_0x2f1604(_0x5e4a5a(0x157),_0x3eb29d(_0x420e6f,_0x5e4a5a(0x160)));}}
@@ -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/blockquote
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for block quote feature.
11
+ */
12
+ export default class TrackChangesBlockQuote 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 _0x29bd4c=_0x5e66;(function(_0x5993dc,_0x1b536e){const _0x2a3478=_0x5e66,_0x531494=_0x5993dc();while(!![]){try{const _0xebae35=parseInt(_0x2a3478(0x134))/0x1+parseInt(_0x2a3478(0x14a))/0x2+-parseInt(_0x2a3478(0x139))/0x3*(-parseInt(_0x2a3478(0x126))/0x4)+-parseInt(_0x2a3478(0x13a))/0x5*(-parseInt(_0x2a3478(0x125))/0x6)+parseInt(_0x2a3478(0x127))/0x7+parseInt(_0x2a3478(0x147))/0x8+parseInt(_0x2a3478(0x131))/0x9*(-parseInt(_0x2a3478(0x140))/0xa);if(_0xebae35===_0x1b536e)break;else _0x531494['push'](_0x531494['shift']());}catch(_0x425e59){_0x531494['push'](_0x531494['shift']());}}}(_0x1b01,0xd3e17));import{Plugin as _0x556be1}from'ckeditor5/src/core.js';function _0x1b01(){const _0x3ea91f=['123UynsVo','15Ghvakq','checkChild','ELEMENT_BLOCK_QUOTE','*Remove\x20format:*\x20%0','format','document','33808360VyaOmG','*Set\x20format:*\x20%0','editor','commands','has','schema','commandName','5628216FOIrmm','locale','markBlockFormat','674368FUmAqL','enableCommand','filter','model','$root','commandParams','parent','870702wjDyLK','164420uQbwBB','2048641SheBeR','from','blockQuote','afterInit','getSelectedBlocks','descriptionFactory','plugins','BlockQuoteEditing','selection','value','9UtxGHt','TrackChangesEditing','forceValue','794669ULNOQY','change','registerDescriptionCallback','name','get'];_0x1b01=function(){return _0x3ea91f;};return _0x1b01();}function _0x5e66(_0x20f7ea,_0x5bf814){const _0x1b01b8=_0x1b01();return _0x5e66=function(_0x5e6634,_0x493477){_0x5e6634=_0x5e6634-0x123;let _0x478c04=_0x1b01b8[_0x5e6634];return _0x478c04;},_0x5e66(_0x20f7ea,_0x5bf814);}import{getTranslation as _0x4d6877}from'../utils/common-translations.js';import{getRangesOfBlockGroups as _0x1906ab}from'../utils/utils.js';export default class F extends _0x556be1{[_0x29bd4c(0x12a)](){const _0x2220d6=_0x29bd4c,_0x3d4247=this[_0x2220d6(0x142)],_0x5dd42c=_0x3d4247[_0x2220d6(0x148)];if(!_0x3d4247[_0x2220d6(0x12d)][_0x2220d6(0x144)](_0x2220d6(0x12e)))return;const _0xc3f4a0=_0x3d4247[_0x2220d6(0x12d)][_0x2220d6(0x138)](_0x2220d6(0x132)),_0x40969f=this[_0x2220d6(0x142)][_0x2220d6(0x143)][_0x2220d6(0x138)](_0x2220d6(0x129));_0xc3f4a0[_0x2220d6(0x14b)](_0x2220d6(0x129),(_0x79084a,_0x3c9b74={})=>{const _0x4dfee3=_0x2220d6,_0x1a6880=this[_0x4dfee3(0x142)][_0x4dfee3(0x14d)][_0x4dfee3(0x13f)][_0x4dfee3(0x12f)],_0x133bed=_0x3c9b74&&void 0x0!==_0x3c9b74[_0x4dfee3(0x133)]?_0x3c9b74[_0x4dfee3(0x133)]:!_0x40969f[_0x4dfee3(0x130)];let _0x1f2b55=[];if(_0x133bed){const _0x4b3a01=Array[_0x4dfee3(0x128)](_0x1a6880[_0x4dfee3(0x12b)]())[_0x4dfee3(0x14c)](_0x54bf2a=>to(_0x54bf2a)||function(_0x4e04f3,_0x7c9d40){const _0x5401d2=_0x4dfee3,_0x51d9d4=_0x7c9d40[_0x5401d2(0x13b)](_0x4e04f3[_0x5401d2(0x124)],_0x5401d2(0x129)),_0x2ab1c1=_0x7c9d40[_0x5401d2(0x13b)]([_0x5401d2(0x14e),_0x5401d2(0x129)],_0x4e04f3);return _0x51d9d4&&_0x2ab1c1;}(_0x54bf2a,this[_0x4dfee3(0x142)][_0x4dfee3(0x14d)][_0x4dfee3(0x145)]));_0x1f2b55=_0x1906ab(_0x4b3a01,_0x3d4247[_0x4dfee3(0x14d)]);}else{const _0x857160=Array[_0x4dfee3(0x128)](_0x1a6880[_0x4dfee3(0x12b)]())[_0x4dfee3(0x14c)](_0x1103d0=>to(_0x1103d0));_0x1f2b55=_0x1906ab(_0x857160,_0x3d4247[_0x4dfee3(0x14d)]);}_0x3d4247[_0x4dfee3(0x14d)][_0x4dfee3(0x135)](()=>{const _0x31914a=_0x4dfee3;for(const _0x2acf7b of _0x1f2b55)_0xc3f4a0[_0x31914a(0x149)](_0x2acf7b,{'commandName':_0x31914a(0x129),'commandParams':[{'forceValue':_0x133bed}]});});}),_0xc3f4a0[_0x2220d6(0x12c)][_0x2220d6(0x136)](_0x44ca42=>{const _0xdd9372=_0x2220d6,{data:_0x143c0f}=_0x44ca42;if(_0x143c0f&&_0xdd9372(0x129)==_0x143c0f[_0xdd9372(0x146)]){const _0x590409=_0x4d6877(_0x5dd42c,_0xdd9372(0x13c));return _0x143c0f[_0xdd9372(0x123)][0x0][_0xdd9372(0x133)]?{'type':_0xdd9372(0x13e),'content':_0x4d6877(_0x5dd42c,_0xdd9372(0x141),_0x590409)}:{'type':_0xdd9372(0x13e),'content':_0x4d6877(_0x5dd42c,_0xdd9372(0x13d),_0x590409)};}});}}function to(_0x16d4f7){const _0x10867a=_0x29bd4c;return _0x10867a(0x129)==_0x16d4f7[_0x10867a(0x124)][_0x10867a(0x137)];}
@@ -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/casechange
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for case change feature.
11
+ */
12
+ export default class TrackChangesCaseChange 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 _0x806d12=_0xd20c;(function(_0x257a9e,_0x575094){const _0x363e34=_0xd20c,_0x59d814=_0x257a9e();while(!![]){try{const _0x5e3fc2=-parseInt(_0x363e34(0x136))/0x1+-parseInt(_0x363e34(0x140))/0x2*(-parseInt(_0x363e34(0x130))/0x3)+-parseInt(_0x363e34(0x138))/0x4+parseInt(_0x363e34(0x13f))/0x5+-parseInt(_0x363e34(0x13d))/0x6+parseInt(_0x363e34(0x142))/0x7+parseInt(_0x363e34(0x133))/0x8*(parseInt(_0x363e34(0x141))/0x9);if(_0x5e3fc2===_0x575094)break;else _0x59d814['push'](_0x59d814['shift']());}catch(_0x1354cd){_0x59d814['push'](_0x59d814['shift']());}}}(_0x379a,0xa463b));import{Plugin as _0x4dd623}from'ckeditor5/src/core.js';function _0xd20c(_0x111f71,_0x3c4d89){const _0x379ae5=_0x379a();return _0xd20c=function(_0xd20c6b,_0x1a4f3e){_0xd20c6b=_0xd20c6b-0x12f;let _0x2faa3a=_0x379ae5[_0xd20c6b];return _0x2faa3a;},_0xd20c(_0x111f71,_0x3c4d89);}export default class L extends _0x4dd623{[_0x806d12(0x13a)](){const _0x111a34=_0x806d12,_0x4dadbf=this[_0x111a34(0x12f)];_0x4dadbf[_0x111a34(0x131)][_0x111a34(0x135)](_0x111a34(0x13e))&&(_0x4dadbf[_0x111a34(0x131)][_0x111a34(0x137)](_0x111a34(0x139))[_0x111a34(0x13b)](_0x111a34(0x132)),_0x4dadbf[_0x111a34(0x131)][_0x111a34(0x137)](_0x111a34(0x139))[_0x111a34(0x13b)](_0x111a34(0x134)),_0x4dadbf[_0x111a34(0x131)][_0x111a34(0x137)](_0x111a34(0x139))[_0x111a34(0x13b)](_0x111a34(0x13c)));}}function _0x379a(){const _0x5f0413=['changeCaseUpper','136PkZzed','changeCaseLower','has','314296hYKeLW','get','1305108giJlFl','TrackChangesEditing','afterInit','enableCommand','changeCaseTitle','2714712fVfjfv','CaseChange','3222400LgELAF','4fYNTrF','136809nWUNts','1326311WolyfX','editor','1010991eJnoYp','plugins'];_0x379a=function(){return _0x5f0413;};return _0x379a();}
@@ -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/ckbox
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for the CKBox feature.
11
+ */
12
+ export default class TrackChangesCKBox 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 _0xd44bcb=_0x4757;(function(_0x4bc1e4,_0x594b32){const _0x34c706=_0x4757,_0x475237=_0x4bc1e4();while(!![]){try{const _0x2fed05=parseInt(_0x34c706(0x1f6))/0x1*(-parseInt(_0x34c706(0x1f5))/0x2)+-parseInt(_0x34c706(0x1fb))/0x3+-parseInt(_0x34c706(0x1f1))/0x4*(-parseInt(_0x34c706(0x1f9))/0x5)+-parseInt(_0x34c706(0x1fd))/0x6+parseInt(_0x34c706(0x1f4))/0x7+parseInt(_0x34c706(0x201))/0x8*(-parseInt(_0x34c706(0x1fe))/0x9)+parseInt(_0x34c706(0x1ff))/0xa;if(_0x2fed05===_0x594b32)break;else _0x475237['push'](_0x475237['shift']());}catch(_0x528323){_0x475237['push'](_0x475237['shift']());}}}(_0x36b5,0xcd260));import{Plugin as _0x3e583e}from'ckeditor5/src/core.js';export default class J extends _0x3e583e{[_0xd44bcb(0x1f8)](){const _0x207c2e=_0xd44bcb,_0x921485=this[_0x207c2e(0x1fa)];_0x921485[_0x207c2e(0x1fc)][_0x207c2e(0x1f2)](_0x207c2e(0x1f3))&&_0x921485[_0x207c2e(0x1f0)][_0x207c2e(0x1f2)](_0x207c2e(0x200))[_0x207c2e(0x1f7)](_0x207c2e(0x1f3));}}function _0x4757(_0x4bc887,_0x1344d5){const _0x36b5f6=_0x36b5();return _0x4757=function(_0x475722,_0x313361){_0x475722=_0x475722-0x1f0;let _0x36f02f=_0x36b5f6[_0x475722];return _0x36f02f;},_0x4757(_0x4bc887,_0x1344d5);}function _0x36b5(){const _0x232d6d=['3185958ECKPXD','commands','7515072VxobIE','355518hlCCVm','16520310zoISLb','TrackChangesEditing','112SwFjCJ','plugins','12ckpWBl','get','ckbox','8617175mrupfA','2ttIxTn','650483TxpMdf','enableCommand','afterInit','2458735PTpoTo','editor'];_0x36b5=function(){return _0x232d6d;};return _0x36b5();}
@@ -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/codeblock
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for code block feature.
11
+ */
12
+ export default class TrackChangesCodeBlock extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }