@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,42 @@
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/table
7
+ */
8
+ import { Plugin, type Editor } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for {@link module:table/table~Table table feature}.
11
+ */
12
+ export default class TrackChangesTable extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ constructor(editor: Editor);
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ afterInit(): void;
21
+ }
22
+ /**
23
+ * Coordinates for suggestion.
24
+ */
25
+ export interface SuggestionCoordinates {
26
+ /**
27
+ * Index of the row at which the suggestion starts.
28
+ */
29
+ minRow: number;
30
+ /**
31
+ * Index of the row at which the suggestion ends.
32
+ */
33
+ maxRow: number;
34
+ /**
35
+ * Index of the column at which the suggestion starts.
36
+ */
37
+ minColumn: number;
38
+ /**
39
+ * Index of the column at which the suggestion ends.
40
+ */
41
+ maxColumn: number;
42
+ }
@@ -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 _0x387367=_0x3c29;(function(_0x99ec9d,_0x2a18f4){const _0x54427c=_0x3c29,_0x1ed538=_0x99ec9d();while(!![]){try{const _0x382442=parseInt(_0x54427c(0x8b))/0x1*(-parseInt(_0x54427c(0x94))/0x2)+parseInt(_0x54427c(0xde))/0x3*(parseInt(_0x54427c(0x113))/0x4)+parseInt(_0x54427c(0x111))/0x5+-parseInt(_0x54427c(0x87))/0x6*(-parseInt(_0x54427c(0xd1))/0x7)+parseInt(_0x54427c(0x83))/0x8*(parseInt(_0x54427c(0xcb))/0x9)+-parseInt(_0x54427c(0xee))/0xa*(-parseInt(_0x54427c(0xcf))/0xb)+-parseInt(_0x54427c(0x10f))/0xc*(parseInt(_0x54427c(0xfe))/0xd);if(_0x382442===_0x2a18f4)break;else _0x1ed538['push'](_0x1ed538['shift']());}catch(_0x564941){_0x1ed538['push'](_0x1ed538['shift']());}}}(_0x2e27,0x4f07a));import{Plugin as _0x67aa54}from'ckeditor5/src/core.js';function _0x3c29(_0x170404,_0x4e25f5){const _0x2e27da=_0x2e27();return _0x3c29=function(_0x3c29de,_0x5a7261){_0x3c29de=_0x3c29de-0x74;let _0x5ccbbf=_0x2e27da[_0x3c29de];return _0x5ccbbf;},_0x3c29(_0x170404,_0x4e25f5);}import{LiveRange as _0x57096f}from'ckeditor5/src/engine.js';import{setHighlightHandling as _0x201e86}from'ckeditor5/src/widget.js';import{getTranslation as _0x58dd02}from'../utils/common-translations.js';function _0x2e27(){const _0x4658a5=['map','editor','isIntersecting','isInContent','model','insertTable','options','removeTableRow','TableUtils','insertTableRowAbove','get','data','maxRow','accept','subType','discard','span','getColumnIndexes','writer','rootName','type','root','insert','setSelection','batch','differ','position','hasAttribute','every','has','markMultiRangeInsertion','getFirstRange','tablePaste','descriptionFactory','item','ELEMENT_TABLE_ROW','nodeAfter','ELEMENT_TABLE_ROW_WITH_TEXT','getChildren','length','add','*Insert:*\x20%0','_getSuggestionCoords','addMarker:suggestion','ELEMENT_TABLE_WITH_TEXT','insertion','createRangeOn','selectTableColumn','from','getChanges','filter','801bpwkti','ELEMENT_TABLE','_acceptFormatSuggestionCallbackFactory','cell','11yNaIwD','selection','21OCgCFX','document','downcastDispatcher','toLowerCase','insertTableColumnRight','left','getAttribute','toViewElement','max','enqueueChange','getSelectionAffectedTableCells','registerPostFixer','removeTableColumn','3aIqlMa','isArray','addClass','getRanges','name','getContainedElement','isEqual','isTouching','order','showSuggestionHighlights','ELEMENT_TABLE_COLUMN_WITH_TEXT','_tablePostFixingSubtypes','colspan','first','$graveyard','registerCustomCallback','1606590qTjdVa','afterInit','MAX_SAFE_INTEGER','ELEMENT_TABLE_COLUMN','push','nodeBefore','TrackChangesEditing','_setupColumnsRowsFixing','MIN_SAFE_INTEGER','getRowIndexes','refresh','markMultiRangeDeletion','locale','selectTableRow','insertTableRowBelow','insertTableColumnLeft','26EzACqU','startsWith','change:data','$textProxy','min','registerElementLabel','substr','fromRange','maxColumn','getChangedMarkers','_getCoordsForCells','some','mapper','enableCommand','createPositionAt','*Remove:*\x20%0','createRangeIn','7964508ONLlbF','join','2395460trbFmI','findAncestor','1644956vcyQBt','forceValue','end','tableRow','table','includes','_tableSuggestions','change','highest','_suggestionFactory','addRange','start','removeClass','deletion','rowspan','createTableWalker','tableCell','values','above','oldRange','last','isIntersectingWithRange','45328teTuXH','minColumn','execute','detach','1022190JAveyT','suggestion','tableColumn','element','415235fCsGcx','_splitMarkerName','getItems','minRow','commands','low','registerDescriptionCallback','plugins','getSuggestion','2FnVIgM','getCellLocation','TableEditing','classes'];_0x2e27=function(){return _0x4658a5;};return _0x2e27();}export default class It extends _0x67aa54{constructor(_0x56437b){const _0x1ff752=_0x3c29;super(_0x56437b),this[_0x1ff752(0xe9)]=[_0x1ff752(0x116),_0x1ff752(0x89)],this[_0x1ff752(0x119)]=new Set();}[_0x387367(0xef)](){const _0x48d6c7=_0x387367,_0xfbcb3a=this[_0x48d6c7(0x99)],_0x5ac324=_0xfbcb3a[_0x48d6c7(0x9c)][_0x48d6c7(0xd2)][_0x48d6c7(0xd0)];if(!_0xfbcb3a[_0x48d6c7(0x92)][_0x48d6c7(0xb5)](_0x48d6c7(0x96)))return;const _0x1eea19=_0xfbcb3a[_0x48d6c7(0xfa)],_0x59d6ce=_0xfbcb3a[_0x48d6c7(0x92)][_0x48d6c7(0xa2)](_0x48d6c7(0xf4)),_0x27a6c=_0xfbcb3a[_0x48d6c7(0x92)][_0x48d6c7(0xa2)](_0x48d6c7(0xa0));_0x59d6ce[_0x48d6c7(0xb9)][_0x48d6c7(0x103)](_0x48d6c7(0x117),_0x11e3f9=>_0x58dd02(_0x1eea19,_0x48d6c7(0xcc),_0x11e3f9)),this[_0x48d6c7(0xf5)](),_0x59d6ce[_0x48d6c7(0x10b)](_0x48d6c7(0x9d)),_0x59d6ce[_0x48d6c7(0x10b)](_0x48d6c7(0xfb)),_0x59d6ce[_0x48d6c7(0x10b)](_0x48d6c7(0xc7));for(const _0xd25136 of[_0x48d6c7(0xa1),_0x48d6c7(0xfc)]){const _0x250228=_0xfbcb3a[_0x48d6c7(0x8f)][_0x48d6c7(0xa2)](_0xd25136);_0x59d6ce[_0x48d6c7(0x10b)](_0xd25136,_0x235407=>{const _0x38a14d=_0x48d6c7;_0xfbcb3a[_0x38a14d(0x9c)][_0x38a14d(0x74)](_0x551e86=>{const _0x187a83=_0x38a14d;_0x235407();const _0x363a8d=_0x187a83(0x7f)===_0x250228[_0x187a83(0xe6)],_0x1a2dff=_0x27a6c[_0x187a83(0xdb)](_0x5ac324),_0x173732=_0x27a6c[_0x187a83(0xf7)](_0x1a2dff),_0x3dcd09=_0x363a8d?_0x173732[_0x187a83(0xeb)]-0x1:_0x173732[_0x187a83(0x81)]+0x1,_0x151dfc=_0x1a2dff[0x0][_0x187a83(0x112)](_0x187a83(0x117)),_0x56e8d0=_0x27a6c[_0x187a83(0x7c)](_0x151dfc,{'startRow':_0x3dcd09,'endRow':_0x3dcd09}),_0x1ba361=Array[_0x187a83(0xc8)](_0x56e8d0)[_0x187a83(0x98)](_0x1f63e9=>_0x551e86[_0x187a83(0xc6)](_0x1f63e9[_0x187a83(0xce)]));_0x59d6ce[_0x187a83(0xb6)](_0x1ba361,_0x187a83(0x116));});});}for(const _0x539dc6 of[_0x48d6c7(0xfd),_0x48d6c7(0xd5)]){const _0x3c5148=_0xfbcb3a[_0x48d6c7(0x8f)][_0x48d6c7(0xa2)](_0x539dc6);_0x59d6ce[_0x48d6c7(0x10b)](_0x539dc6,_0x20483f=>{const _0x8a9c07=_0x48d6c7;_0xfbcb3a[_0x8a9c07(0x9c)][_0x8a9c07(0x74)](_0x52202f=>{const _0x33337b=_0x8a9c07;_0x20483f();const _0x42dc3a=_0x33337b(0xd6)===_0x3c5148[_0x33337b(0xe6)],_0x382802=_0x27a6c[_0x33337b(0xdb)](_0x5ac324),_0x2bbfc4=_0x27a6c[_0x33337b(0xa9)](_0x382802),_0x23dc23=_0x42dc3a?_0x2bbfc4[_0x33337b(0xeb)]-0x1:_0x2bbfc4[_0x33337b(0x81)]+0x1,_0x5f42f1=_0x382802[0x0][_0x33337b(0x112)](_0x33337b(0x117)),_0x2db155=_0x27a6c[_0x33337b(0x7c)](_0x5f42f1,{'startRow':0x0,'column':_0x23dc23,'includeAllSlots':!0x1}),_0x8ce2ae=Array[_0x33337b(0xc8)](_0x2db155)[_0x33337b(0x98)](_0x56a867=>_0x52202f[_0x33337b(0xc6)](_0x56a867[_0x33337b(0xce)]));_0x59d6ce[_0x33337b(0xb6)](_0x8ce2ae,_0x33337b(0x89));});});}for(const _0x30a6ea of[_0x48d6c7(0x9f),_0x48d6c7(0xdd)]){const _0x1600b7=_0x30a6ea[_0x48d6c7(0x104)](0xb),_0x1e02e9=_0x1600b7[_0x48d6c7(0xd4)](),_0x632e25=_0x1e02e9[_0x48d6c7(0x104)](0x0,0x3)+_0x48d6c7(0xa8),_0x6d56d6=_0x48d6c7(0x117)+_0x1600b7,_0x47daec=_0x48d6c7(0x102)+_0x1600b7,_0x5ec8d9=_0x48d6c7(0xd9)+_0x1600b7;_0x59d6ce[_0x48d6c7(0x10b)](_0x30a6ea,()=>{const _0x31944e=_0x48d6c7;_0xfbcb3a[_0x31944e(0x9c)][_0x31944e(0x74)](_0x47a247=>{const _0x1a5534=_0x31944e,_0x5e729d=_0x27a6c[_0x1a5534(0xdb)](_0x5ac324),_0x117623=_0x5e729d[0x0][_0x1a5534(0x112)](_0x1a5534(0x117));let _0xb1ebd0;if(_0x1a5534(0x9f)==_0x30a6ea){const _0x2645fd=_0x27a6c[_0x1a5534(0xf7)](_0x5e729d);_0xb1ebd0={'startRow':_0x2645fd[_0x1a5534(0xeb)],'endRow':_0x2645fd[_0x1a5534(0x81)],'includeAllSlots':!0x0};}else{const _0x259f99=_0x27a6c[_0x1a5534(0xa9)](_0x5e729d);_0xb1ebd0={'startColumn':_0x259f99[_0x1a5534(0xeb)],'endColumn':_0x259f99[_0x1a5534(0x81)],'includeAllSlots':!0x0};}const _0x5e98c4=_0x27a6c[_0x1a5534(0x7c)](_0x117623,_0xb1ebd0),_0xe4886a=Array[_0x1a5534(0xc8)](_0x5e98c4)[_0x1a5534(0x98)](({cell:_0x59e2ea})=>_0x59e2ea),_0x20f80f=Re(_0xe4886a[_0x1a5534(0xca)](_0x3d4f79=>_0x3d4f79[_0x1a5534(0xb3)](_0x632e25))),_0x4cf755=Re(_0xe4886a[_0x1a5534(0xca)](_0x250534=>!_0x250534[_0x1a5534(0xb3)](_0x632e25)))[_0x1a5534(0x98)](_0x2ba040=>_0x47a247[_0x1a5534(0xc6)](_0x2ba040)),_0xfd77fc=_0x59d6ce[_0x1a5534(0xf9)](_0x4cf755,_0x6d56d6);if(_0xfd77fc&&(_0x1a5534(0x116)==_0xfd77fc[_0x1a5534(0xa6)]||_0x1a5534(0x89)==_0xfd77fc[_0x1a5534(0xa6)])){const _0x26c168=this[_0x1a5534(0xc2)](_0xfd77fc);for(const _0x2b5ec4 of _0x20f80f){const _0x46a2c7=_0x47a247[_0x1a5534(0xc6)](_0x2b5ec4),_0x4ebb2f=_0x27a6c[_0x1a5534(0x95)](_0x2b5ec4),_0x5ebd7b=_0x2b5ec4[_0x1a5534(0xd7)](_0x632e25)-0x1,_0x341f6a=_0x26c168[_0x47daec],_0x463de4=_0x26c168[_0x5ec8d9];_0x341f6a<=_0x4ebb2f[_0x1e02e9]&&_0x4ebb2f[_0x1e02e9]+_0x5ebd7b<=_0x463de4&&_0xfd77fc[_0x1a5534(0x77)](_0x46a2c7);}}});});}function _0x4a49db(_0x3a272e){const _0x25c533=_0x48d6c7,_0x5a4fbd=Array[_0x25c533(0xc8)](_0x5ac324[_0x25c533(0xe1)]())[_0x25c533(0x98)](_0x31b2e7=>_0x57096f[_0x25c533(0x105)](_0x31b2e7));_0xfbcb3a[_0x25c533(0x9c)][_0x25c533(0x74)](_0x585b00=>{const _0x215c2e=_0x25c533,_0x34f04c=_0x585b00[_0x215c2e(0xb0)];_0x3a272e=_0x3a272e[_0x215c2e(0xca)](_0x2c12e5=>_0x215c2e(0xec)!=_0x2c12e5[_0x215c2e(0xad)][_0x215c2e(0xab)]),_0x585b00[_0x215c2e(0xaf)](_0x3a272e),_0xfbcb3a[_0x215c2e(0x8f)][_0x215c2e(0xa2)](_0x215c2e(0x9f))[_0x215c2e(0xf8)](),_0xfbcb3a[_0x215c2e(0x85)](_0x215c2e(0x9f),{'forceDefaultExecution':!0x0}),_0xfbcb3a[_0x215c2e(0x9c)][_0x215c2e(0xda)](()=>{const _0x128265=_0x215c2e;_0xfbcb3a[_0x128265(0x9c)][_0x128265(0xda)](_0x34f04c,_0x498f83=>{const _0x521ad6=_0x128265,_0x4c4d33=_0x5a4fbd[_0x521ad6(0xca)](_0x3540d1=>_0x521ad6(0xec)!=_0x3540d1[_0x521ad6(0xad)][_0x521ad6(0xab)]);_0x4c4d33[_0x521ad6(0xbf)]>0x0&&_0x498f83[_0x521ad6(0xaf)](_0x4c4d33);for(const _0x890514 of _0x5a4fbd)_0x890514[_0x521ad6(0x86)]();});});});}function _0x58e216(_0x704acd){const _0x3eb1c6=_0x48d6c7;_0xfbcb3a[_0x3eb1c6(0x9c)][_0x3eb1c6(0x74)](_0x3510d8=>{const _0x1ca41e=_0x3eb1c6,_0x411737=Array[_0x1ca41e(0xc8)](_0x5ac324[_0x1ca41e(0xe1)]())[_0x1ca41e(0x98)](_0x2c0650=>_0x57096f[_0x1ca41e(0x105)](_0x2c0650)),_0x18b757=[];for(const _0x5349c4 of _0x704acd)for(const _0x7ff58b of _0x5349c4[_0x1ca41e(0x8d)]({'shallow':!0x0}))_0x18b757[_0x1ca41e(0xf2)](_0x7ff58b);for(const _0x58810e of _0x18b757)_0x1ca41e(0xec)!=_0x58810e[_0x1ca41e(0xad)][_0x1ca41e(0xab)]&&(_0x3510d8[_0x1ca41e(0xaf)](_0x3510d8[_0x1ca41e(0x10c)](_0x58810e,0x0)),_0xfbcb3a[_0x1ca41e(0x8f)][_0x1ca41e(0xa2)](_0x1ca41e(0xdd))[_0x1ca41e(0xf8)](),_0xfbcb3a[_0x1ca41e(0x85)](_0x1ca41e(0xdd),{'forceDefaultExecution':!0x0}));const _0x47bc54=_0x411737[_0x1ca41e(0xca)](_0x4e6482=>_0x1ca41e(0xec)!=_0x4e6482[_0x1ca41e(0xad)][_0x1ca41e(0xab)]);_0x47bc54[_0x1ca41e(0xbf)]>0x0&&_0x3510d8[_0x1ca41e(0xaf)](_0x47bc54);for(const _0x5c73a2 of _0x411737)_0x5c73a2[_0x1ca41e(0x86)]();});}function _0x443e9d(_0x539b27,_0x5b1671){const _0x2ac62e=_0x48d6c7;return _0x5b1671[_0x2ac62e(0xb4)](_0x37dc47=>_0x539b27[_0x2ac62e(0x109)](_0x12f7df=>_0x12f7df[_0x2ac62e(0x115)][_0x2ac62e(0xe4)](_0x37dc47[_0x2ac62e(0x78)])||_0x37dc47[_0x2ac62e(0x115)][_0x2ac62e(0xe4)](_0x12f7df[_0x2ac62e(0x78)])));}function _0x3a2811(_0x473e76,_0x237636){const _0x5d26e2=_0x48d6c7;return!_0x473e76[_0x5d26e2(0x109)](_0x5c6148=>_0x237636[_0x5d26e2(0x109)](_0x3d4513=>_0x5c6148[_0x5d26e2(0x9a)](_0x3d4513)))&&_0x473e76[_0x5d26e2(0x109)](_0x58d680=>_0x237636[_0x5d26e2(0x109)](_0x5907b7=>_0x58d680[_0x5d26e2(0x115)][_0x5d26e2(0xe5)](_0x5907b7[_0x5d26e2(0x78)])));}_0xfbcb3a[_0x48d6c7(0xa3)][_0x48d6c7(0xd3)]['on'](_0x48d6c7(0xc3),(_0x4ce3af,_0x1e4b8b,_0x32ee38)=>{const _0x55f18f=_0x48d6c7;if(!_0x32ee38[_0x55f18f(0x9e)][_0x55f18f(0xe7)])return;const _0x1e0f0e=_0x1e4b8b[_0x55f18f(0xba)];if(!_0x1e0f0e)return;const _0x413bfc=_0x32ee38[_0x55f18f(0x10a)][_0x55f18f(0xd8)](_0x1e0f0e);function _0x5e144c(_0x59fc43){const _0x10d965=_0x55f18f;return Array[_0x10d965(0xdf)](_0x59fc43)?_0x59fc43:[_0x59fc43];}_0x413bfc&&_0x55f18f(0x7d)===_0x1e0f0e[_0x55f18f(0xe2)]&&_0x201e86(_0x413bfc,_0x32ee38[_0x55f18f(0xaa)],(_0x5a00dc,_0x3e8b15,_0xf503b6)=>_0xf503b6[_0x55f18f(0xe0)](_0x5e144c(_0x3e8b15[_0x55f18f(0x97)]),_0x5a00dc),(_0x338506,_0x30e93b,_0x2863a0)=>_0x2863a0[_0x55f18f(0x79)](_0x5e144c(_0x30e93b[_0x55f18f(0x97)]),_0x338506));},{'priority':_0x48d6c7(0x75)}),_0x59d6ce[_0x48d6c7(0xb9)][_0x48d6c7(0x91)](_0x64c3=>{const _0x11a806=_0x48d6c7;if(_0x11a806(0xc5)!=_0x64c3[_0x11a806(0xac)]&&_0x11a806(0x7a)!=_0x64c3[_0x11a806(0xac)])return;const _0x294eaf=_0x64c3[_0x11a806(0xe3)]();if(null!=_0x294eaf&&_0x294eaf['is'](_0x11a806(0x8a),_0x11a806(0x117))){if(_0x11a806(0xc5)==_0x64c3[_0x11a806(0xac)]){const _0x23d783=_0x64c3[_0x11a806(0x8d)]()[_0x11a806(0xca)](_0x1c03d8=>_0x1c03d8['is'](_0x11a806(0x101)))[_0x11a806(0x98)](_0x1f2d75=>_0x1f2d75[_0x11a806(0xa3)]);if(_0x23d783[_0x11a806(0xbf)])return{'type':_0x11a806(0xc5),'content':_0x58dd02(_0x1eea19,_0x11a806(0xc1),_0x58dd02(_0x1eea19,_0x11a806(0xc4),'\x22'+_0x23d783[_0x11a806(0x110)]('\x20')+'\x22'))};}if(_0x11a806(0x7a)==_0x64c3[_0x11a806(0xac)]){const _0x30081a=_0x64c3[_0x11a806(0x8d)]()[_0x11a806(0xca)](_0x32ac40=>_0x32ac40['is'](_0x11a806(0x101)))[_0x11a806(0x98)](_0x22be15=>_0x22be15[_0x11a806(0xa3)]);if(_0x30081a[_0x11a806(0xbf)])return{'type':_0x11a806(0x7a),'content':_0x58dd02(_0x1eea19,_0x11a806(0x10d),_0x58dd02(_0x1eea19,_0x11a806(0xc4),'\x22'+_0x30081a[_0x11a806(0x110)]('\x20')+'\x22'))};}}}),_0x59d6ce[_0x48d6c7(0xb9)][_0x48d6c7(0x91)](_0x4c9f31=>{const _0x249a75=_0x48d6c7;if(_0x249a75(0x116)==_0x4c9f31[_0x249a75(0xa6)]){const _0x157c24=_0x4c9f31[_0x249a75(0x8d)]()[_0x249a75(0xca)](_0x25aad6=>_0x25aad6['is'](_0x249a75(0x101)))[_0x249a75(0x98)](_0x5e7152=>_0x5e7152[_0x249a75(0xa3)]),_0x4c8808=this[_0x249a75(0xc2)](_0x4c9f31),_0x1596c4=_0x4c8808[_0x249a75(0xa4)]-_0x4c8808[_0x249a75(0x8e)]+0x1;if(_0x249a75(0xc5)==_0x4c9f31[_0x249a75(0xac)])return _0x157c24[_0x249a75(0xbf)]?{'type':_0x249a75(0xc5),'content':_0x58dd02(_0x1eea19,_0x249a75(0xc1),_0x58dd02(_0x1eea19,_0x249a75(0xbd),[_0x1596c4,'\x22'+_0x157c24[_0x249a75(0x110)]('\x20')+'\x22']))}:{'type':_0x249a75(0xc5),'content':_0x58dd02(_0x1eea19,_0x249a75(0xc1),_0x58dd02(_0x1eea19,_0x249a75(0xbb),_0x1596c4))};if(_0x249a75(0x7a)==_0x4c9f31[_0x249a75(0xac)])return _0x157c24[_0x249a75(0xbf)]?{'type':_0x249a75(0x7a),'content':_0x58dd02(_0x1eea19,_0x249a75(0x10d),_0x58dd02(_0x1eea19,_0x249a75(0xbd),[_0x1596c4,'\x22'+_0x157c24[_0x249a75(0x110)]('\x20')+'\x22']))}:{'type':_0x249a75(0x7a),'content':_0x58dd02(_0x1eea19,_0x249a75(0x10d),_0x58dd02(_0x1eea19,_0x249a75(0xbb),_0x1596c4))};}if(_0x249a75(0x89)==_0x4c9f31[_0x249a75(0xa6)]){const _0xd1177d=_0x4c9f31[_0x249a75(0x8d)]()[_0x249a75(0xca)](_0x56d302=>_0x56d302['is'](_0x249a75(0x101)))[_0x249a75(0x98)](_0x1fb6bf=>_0x1fb6bf[_0x249a75(0xa3)]),_0x2c4dea=this[_0x249a75(0xc2)](_0x4c9f31),_0x2453d9=_0x2c4dea[_0x249a75(0x106)]-_0x2c4dea[_0x249a75(0x84)]+0x1;if(_0x249a75(0xc5)==_0x4c9f31[_0x249a75(0xac)])return _0xd1177d[_0x249a75(0xbf)]?{'type':_0x249a75(0xc5),'content':_0x58dd02(_0x1eea19,_0x249a75(0xc1),_0x58dd02(_0x1eea19,_0x249a75(0xe8),[_0x2453d9,'\x22'+_0xd1177d[_0x249a75(0x110)]('\x20')+'\x22']))}:{'type':_0x249a75(0xc5),'content':_0x58dd02(_0x1eea19,_0x249a75(0xc1),_0x58dd02(_0x1eea19,_0x249a75(0xf1),_0x2453d9))};if(_0x249a75(0x7a)==_0x4c9f31[_0x249a75(0xac)])return _0xd1177d[_0x249a75(0xbf)]?{'type':_0x249a75(0x7a),'content':_0x58dd02(_0x1eea19,_0x249a75(0x10d),_0x58dd02(_0x1eea19,_0x249a75(0xe8),[_0x2453d9,'\x22'+_0xd1177d[_0x249a75(0x110)]('\x20')+'\x22']))}:{'type':_0x249a75(0x7a),'content':_0x58dd02(_0x1eea19,_0x249a75(0x10d),_0x58dd02(_0x1eea19,_0x249a75(0xf1),_0x2453d9))};}}),_0x59d6ce[_0x48d6c7(0x76)][_0x48d6c7(0xed)](_0x48d6c7(0xc5),_0x48d6c7(0x116),_0x48d6c7(0xa7),_0x4a49db),_0x59d6ce[_0x48d6c7(0x76)][_0x48d6c7(0xed)](_0x48d6c7(0x7a),_0x48d6c7(0x116),_0x48d6c7(0xa5),_0x4a49db),_0x59d6ce[_0x48d6c7(0x76)][_0x48d6c7(0xed)](_0x48d6c7(0xc5),_0x48d6c7(0x89),_0x48d6c7(0xa7),_0x58e216),_0x59d6ce[_0x48d6c7(0x76)][_0x48d6c7(0xed)](_0x48d6c7(0x7a),_0x48d6c7(0x89),_0x48d6c7(0xa5),_0x58e216),_0x59d6ce[_0x48d6c7(0x76)][_0x48d6c7(0xed)](_0x48d6c7(0xc5),_0x48d6c7(0x89),_0x48d6c7(0x110),_0x443e9d),_0x59d6ce[_0x48d6c7(0x76)][_0x48d6c7(0xed)](_0x48d6c7(0x7a),_0x48d6c7(0x89),_0x48d6c7(0x110),_0x443e9d),_0x59d6ce[_0x48d6c7(0x76)][_0x48d6c7(0xed)](_0x48d6c7(0xc5),_0x48d6c7(0x116),_0x48d6c7(0x110),_0x3a2811),_0x59d6ce[_0x48d6c7(0x76)][_0x48d6c7(0xed)](_0x48d6c7(0x7a),_0x48d6c7(0x116),_0x48d6c7(0x110),_0x3a2811);}[_0x387367(0xcd)](){const _0x32f4ef=_0x387367,_0x464139=this[_0x32f4ef(0x99)],_0x1417a3=_0x464139[_0x32f4ef(0x9c)][_0x32f4ef(0xd2)][_0x32f4ef(0xd0)];return(_0x11aff6,_0x47f88b)=>{const _0x152642=_0x32f4ef;_0x464139[_0x152642(0x9c)][_0x152642(0x74)](_0x4410b3=>{const _0x3ff9a6=_0x152642,{commandName:_0x264478,commandParams:_0x583468}=_0x47f88b;let _0x2aa799=_0x11aff6[0x0][_0x3ff9a6(0x115)][_0x3ff9a6(0xf3)];_0x583468&&_0x583468[0x0]&&!0x1===_0x583468[0x0][_0x3ff9a6(0x114)]&&(_0x2aa799=_0x11aff6[0x0][_0x3ff9a6(0x78)][_0x3ff9a6(0xbc)]);const _0x4fabc3=_0x4410b3[_0x3ff9a6(0x10e)](_0x2aa799);if(_0x3ff9a6(0xec)==_0x4fabc3[_0x3ff9a6(0xad)][_0x3ff9a6(0xab)])return;const _0x364895=Array[_0x3ff9a6(0xc8)](_0x1417a3[_0x3ff9a6(0xe1)]())[_0x3ff9a6(0x98)](_0xd52387=>_0x57096f[_0x3ff9a6(0x105)](_0xd52387));_0x4410b3[_0x3ff9a6(0xaf)](_0x4fabc3),_0x464139[_0x3ff9a6(0x8f)][_0x3ff9a6(0xa2)](_0x264478)[_0x3ff9a6(0xf8)](),_0x583468[_0x3ff9a6(0xf2)]({'forceDefaultExecution':!0x0}),_0x464139[_0x3ff9a6(0x85)](_0x264478,..._0x583468);const _0x2342d6=_0x364895[_0x3ff9a6(0xca)](_0x2dab4a=>_0x3ff9a6(0xec)!=_0x2dab4a[_0x3ff9a6(0xad)][_0x3ff9a6(0xab)]);_0x2342d6[_0x3ff9a6(0xbf)]>0x0&&_0x4410b3[_0x3ff9a6(0xaf)](_0x2342d6);for(const _0x13a7cf of _0x364895)_0x13a7cf[_0x3ff9a6(0x86)]();});};}[_0x387367(0x108)](_0x59cc4d){const _0x97a0c3=_0x387367,_0x1f22d1=this[_0x97a0c3(0x99)][_0x97a0c3(0x92)][_0x97a0c3(0xa2)](_0x97a0c3(0xa0));let _0x4c408c=Number[_0x97a0c3(0xf0)],_0x6cf584=Number[_0x97a0c3(0xf6)],_0x1f3c4a=Number[_0x97a0c3(0xf0)],_0x1f765d=Number[_0x97a0c3(0xf6)];for(const _0x5575e9 of _0x59cc4d){if(_0x97a0c3(0xec)==_0x5575e9[_0x97a0c3(0xad)][_0x97a0c3(0xab)])continue;const {row:_0x4ae8ec,column:_0x2964e3}=_0x1f22d1[_0x97a0c3(0x95)](_0x5575e9),_0x2369bf=_0x5575e9[_0x97a0c3(0xb3)](_0x97a0c3(0x7b))?_0x5575e9[_0x97a0c3(0xd7)](_0x97a0c3(0x7b))-0x1:0x0,_0x29f6fc=_0x5575e9[_0x97a0c3(0xb3)](_0x97a0c3(0xea))?_0x5575e9[_0x97a0c3(0xd7)](_0x97a0c3(0xea))-0x1:0x0;_0x4c408c=_0x4ae8ec<_0x4c408c?_0x4ae8ec:_0x4c408c,_0x6cf584=_0x4ae8ec+_0x2369bf>_0x6cf584?_0x4ae8ec+_0x2369bf:_0x6cf584,_0x1f3c4a=_0x2964e3<_0x1f3c4a?_0x2964e3:_0x1f3c4a,_0x1f765d=_0x2964e3+_0x29f6fc>_0x1f765d?_0x2964e3+_0x29f6fc:_0x1f765d;}return{'minRow':_0x4c408c,'maxRow':_0x6cf584,'minColumn':_0x1f3c4a,'maxColumn':_0x1f765d};}[_0x387367(0xf5)](){const _0xf55a7c=_0x387367,_0x2ce9d8=this[_0xf55a7c(0x99)],_0x30e525=_0x2ce9d8[_0xf55a7c(0x92)][_0xf55a7c(0xa2)](_0xf55a7c(0xf4)),_0x30223d=_0x2ce9d8[_0xf55a7c(0x92)][_0xf55a7c(0xa2)](_0xf55a7c(0xa0));_0x2ce9d8[_0xf55a7c(0x9c)][_0xf55a7c(0xd2)]['on'](_0xf55a7c(0x100),()=>{const _0x529a79=_0xf55a7c,_0x3b384e=Array[_0x529a79(0xc8)](_0x2ce9d8[_0x529a79(0x9c)][_0x529a79(0xd2)][_0x529a79(0xb1)][_0x529a79(0x107)]());for(const {name:_0x1fa10a,data:_0x301fc7}of _0x3b384e){const {group:_0x3b1a7e,id:_0x1025a0,subType:_0x23622a}=_0x30e525[_0x529a79(0x8c)](_0x1fa10a);if(_0x529a79(0x88)!=_0x3b1a7e)continue;if(null!=_0x301fc7[_0x529a79(0x80)])continue;const _0x44bc2d=_0x30e525[_0x529a79(0x93)](_0x1025a0);this[_0x529a79(0xe9)][_0x529a79(0x118)](_0x23622a)&&this[_0x529a79(0x119)][_0x529a79(0xc0)](_0x44bc2d);}},{'priority':_0xf55a7c(0x90)});const _0x24df2e=(_0x5e672d,_0x2a1829)=>{const _0x1e14f6=_0xf55a7c;let _0x39976d=!0x1;const _0x2e26bb=_0x2a1829[_0x1e14f6(0xc6)](_0x5e672d),_0x464932=_0x5e672d[_0x1e14f6(0x112)](_0x1e14f6(0x117)),_0x3a5fa1=_0x30223d[_0x1e14f6(0x95)](_0x5e672d);for(const _0x18b4b7 of this[_0x1e14f6(0x119)]){const _0x25fe98=_0x18b4b7[_0x1e14f6(0xa6)],_0xfb8890=_0x25fe98[_0x1e14f6(0xff)](_0x1e14f6(0xb8)),_0x3b18f4=_0x25fe98[_0x1e14f6(0x104)](_0xfb8890?0xa:0x5),_0x56d7f0=_0x3b18f4[_0x1e14f6(0xd4)](),_0x76318=_0x56d7f0[_0x1e14f6(0x104)](0x0,0x3)+_0x1e14f6(0xa8),_0x588d34=_0x1e14f6(0x102)+_0x3b18f4,_0x243c8d=_0x1e14f6(0xd9)+_0x3b18f4;if(!_0x18b4b7[_0x1e14f6(0x9b)])continue;if(_0x464932!=_0x18b4b7[_0x1e14f6(0xb7)]()[_0x1e14f6(0x78)][_0x1e14f6(0x112)](_0x1e14f6(0x117)))continue;if(_0x18b4b7[_0x1e14f6(0x82)](_0x2e26bb))continue;const _0x28c93d=_0x5e672d[_0x1e14f6(0xb3)](_0x76318)?_0x5e672d[_0x1e14f6(0xd7)](_0x76318)-0x1:0x0,_0x238193=this[_0x1e14f6(0xc2)](_0x18b4b7),_0x3c8775=_0x238193[_0x588d34],_0xfdbe59=_0x238193[_0x243c8d];_0x3c8775<=_0x3a5fa1[_0x56d7f0]&&_0x3a5fa1[_0x56d7f0]+_0x28c93d<=_0xfdbe59&&(_0x18b4b7[_0x1e14f6(0x77)](_0x2e26bb),_0x39976d=!0x0);}return _0x39976d;};_0x2ce9d8[_0xf55a7c(0x9c)][_0xf55a7c(0xd2)][_0xf55a7c(0xdc)](_0x5ec28e=>{const _0x974d1a=_0xf55a7c;let _0x11d572=!0x1;for(const _0x35e682 of _0x2ce9d8[_0x974d1a(0x9c)][_0x974d1a(0xd2)][_0x974d1a(0xb1)][_0x974d1a(0xc9)]())if(_0x974d1a(0xae)==_0x35e682[_0x974d1a(0xac)]){if(_0x974d1a(0x116)==_0x35e682[_0x974d1a(0xe2)]){for(const _0xc62246 of _0x35e682[_0x974d1a(0xb2)][_0x974d1a(0xbc)][_0x974d1a(0xbe)]())_0x11d572=_0x11d572||_0x24df2e(_0xc62246,_0x5ec28e);}else _0x974d1a(0x7d)==_0x35e682[_0x974d1a(0xe2)]&&(_0x11d572=_0x11d572||_0x24df2e(_0x35e682[_0x974d1a(0xb2)][_0x974d1a(0xbc)],_0x5ec28e));}return _0x11d572;});}[_0x387367(0xc2)](_0xf328f){const _0x5dc8ea=_0x387367;return this[_0x5dc8ea(0x108)](_0xf328f[_0x5dc8ea(0xe1)]()[_0x5dc8ea(0x98)](_0x5bd407=>_0x5bd407[_0x5dc8ea(0x78)][_0x5dc8ea(0xbc)]));}}function Re(_0x137abb){const _0x3151a8=_0x387367;return Array[_0x3151a8(0xc8)](new Set(_0x137abb)[_0x3151a8(0x7e)]());}
@@ -0,0 +1,22 @@
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/tablecaption
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import TrackChangesTable from './table.js';
10
+ /**
11
+ * Provides track changes plugin integration for {@link module:table/table~Table table feature} caption.
12
+ */
13
+ export default class TrackChangesTableCaption extends Plugin {
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get requires(): readonly [typeof TrackChangesTable];
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ afterInit(): void;
22
+ }
@@ -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 _0x372e8e=_0x13ff;(function(_0x507648,_0x152634){const _0x2567dd=_0x13ff,_0x2a9920=_0x507648();while(!![]){try{const _0x41c702=parseInt(_0x2567dd(0x1ff))/0x1*(-parseInt(_0x2567dd(0x1fe))/0x2)+-parseInt(_0x2567dd(0x206))/0x3*(-parseInt(_0x2567dd(0x205))/0x4)+-parseInt(_0x2567dd(0x1f7))/0x5+-parseInt(_0x2567dd(0x1f9))/0x6*(-parseInt(_0x2567dd(0x1fb))/0x7)+-parseInt(_0x2567dd(0x204))/0x8*(parseInt(_0x2567dd(0x1fd))/0x9)+-parseInt(_0x2567dd(0x1f5))/0xa*(-parseInt(_0x2567dd(0x1f3))/0xb)+parseInt(_0x2567dd(0x200))/0xc;if(_0x41c702===_0x152634)break;else _0x2a9920['push'](_0x2a9920['shift']());}catch(_0x2295b1){_0x2a9920['push'](_0x2a9920['shift']());}}}(_0x1b54,0xaec68));function _0x13ff(_0x305b59,_0xe2075b){const _0x1b54f5=_0x1b54();return _0x13ff=function(_0x13ff28,_0x39c831){_0x13ff28=_0x13ff28-0x1f3;let _0x1821d9=_0x1b54f5[_0x13ff28];return _0x1821d9;},_0x13ff(_0x305b59,_0xe2075b);}import{Plugin as _0x4852fc}from'ckeditor5/src/core.js';import _0x53f5f3 from'./table.js';function _0x1b54(){const _0x4bcede=['9901608pOIsMP','1988rZvjVf','6663rfDCtF','enableCommand','afterInit','308ftwNRS','TableCaptionEditing','203990ndpShW','toggleTableCaption','2189015ZNrZQm','requires','5103822hAbUMm','plugins','7oExSAH','has','9Qxnexg','6922HEYuNh','287srGGBT','10308540rqollB','get','TrackChangesEditing','editor'];_0x1b54=function(){return _0x4bcede;};return _0x1b54();}export default class Ot extends _0x4852fc{static get[_0x372e8e(0x1f8)](){return[_0x53f5f3];}[_0x372e8e(0x208)](){const _0x679b50=_0x372e8e,_0x11074e=this[_0x679b50(0x203)];if(!_0x11074e[_0x679b50(0x1fa)][_0x679b50(0x1fc)](_0x679b50(0x1f4)))return;_0x11074e[_0x679b50(0x1fa)][_0x679b50(0x201)](_0x679b50(0x202))[_0x679b50(0x207)](_0x679b50(0x1f6));}}
@@ -0,0 +1,19 @@
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
+ import { Plugin } from 'ckeditor5/src/core.js';
6
+ import TrackChangesTable from './table.js';
7
+ /**
8
+ * Provides track changes plugin integration for {@link module:table/tableclipboard~TableClipboard table clipboard feature}.
9
+ */
10
+ export default class TrackChangesTableClipboard extends Plugin {
11
+ /**
12
+ * @inheritDoc
13
+ */
14
+ static get requires(): readonly [typeof TrackChangesTable];
15
+ /**
16
+ * @inheritDoc
17
+ */
18
+ afterInit(): void;
19
+ }
@@ -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 _0x17042a=_0x1e7b;(function(_0x24e647,_0x38d6e0){const _0x16f762=_0x1e7b,_0x2632c8=_0x24e647();while(!![]){try{const _0x396ebd=parseInt(_0x16f762(0x197))/0x1*(parseInt(_0x16f762(0x128))/0x2)+-parseInt(_0x16f762(0x146))/0x3+-parseInt(_0x16f762(0x141))/0x4+-parseInt(_0x16f762(0x15c))/0x5*(parseInt(_0x16f762(0x133))/0x6)+-parseInt(_0x16f762(0x1b3))/0x7+-parseInt(_0x16f762(0x1cd))/0x8*(-parseInt(_0x16f762(0x173))/0x9)+parseInt(_0x16f762(0x18a))/0xa*(parseInt(_0x16f762(0x18e))/0xb);if(_0x396ebd===_0x38d6e0)break;else _0x2632c8['push'](_0x2632c8['shift']());}catch(_0x3a31b0){_0x2632c8['push'](_0x2632c8['shift']());}}}(_0x3932,0x7b527));function _0x1e7b(_0x1af728,_0x21dcb3){const _0x3932f5=_0x3932();return _0x1e7b=function(_0x1e7be8,_0x35c325){_0x1e7be8=_0x1e7be8-0x10a;let _0x5901da=_0x3932f5[_0x1e7be8];return _0x5901da;},_0x1e7b(_0x1af728,_0x21dcb3);}import{getTranslation as _0x12703c}from'../utils/common-translations.js';import{Plugin as _0x158968}from'ckeditor5/src/core.js';function _0x3932(){const _0x455ab2=['high','TrackChangesEditing','endRow','register','isInContent','every','getSelectionAffectedTableCells','ck-suggestion-marker-insertion','subType','insertContent','2eFJurt','nextSibling','getRanges','getAllAdjacentSuggestions','has','_suggestionFactory','hasSuggestion','cell','tablePasteCell','setAttribute','findAncestor','642glmDZd','suggestion:formatBlock:tablePasteCell','conversion','end','author','row','getColumns','TableClipboard','markerToHighlight','isEmpty','includes','options','commands','rowInsertionRanges','1930892kFtovu','removeRows','type','setAttributes','getSuggestions','2455749AYygEN','insertionRanges','getShiftedBy','keys','markers','elementToElement','entries','stop','call','removeColumns','move','unwrap','newRange','removeMarker','some','endColumn','getRows','element','insertRows','position','cells','forceDefaultExecution','23855LTVceR','locale','markMultiRangeDeletion','getRange','tableCellHorizontalAlignment','createElement','tableCellVerticalAlignment','dataDowncast','documentSelection','remove','registerDescriptionCallback','root','insert','schema','set','rootName','previousSibling','redo','getSuggestionCallback','createTableWalker','createRange','getItems','containsRange','9GXXdqI','selection','formatBlock','attributes','_isForcedDefaultExecutionBlock','plugins','wrap','next','start','afterInit','deletion','markMultiRangeBlockFormat','suggestion-td','tableCellBackgroundColor','showSuggestionHighlights','getChildren','tableCellPadding','markMultiRangeInsertion','insertColumns','isEqual','model','columnInsertionRanges','markerName','180AawCPs','_splitMarkerName','differ','TableUtils','1096678dvAtMC','find','_createdBatches','paragraph','tableCellBorderWidth','for','_tablePostFixingSubtypes','activeMarkers','tableCellBorderStyle','698707jCCrSe','getChanges','rows','_getCoordsForCells','requires','map','createPositionBefore','getAttributes','oldRange','rowInsertionIndexes','suggestionLoaded','columnInsertionIndexes','startsWith','discard','clipboardOutput','last','getRowIndexes','registerCustomCallback','batch','fromRange','editingDowncast','markerAttributes','trackChanges','low','createRangeIn','first','push','ck-suggestion-marker','2610580KUpgsX','tableCell','content','reduce','getChangedMarkers','suggestionUnloaded','tablePaste','getContainedElement','getColumnIndexes','table','getTableIfOnlyTableInContent','value','tableCellBorderColor','tablePasteChainId','view','change','getSuggestion','deletionRanges','editing','get','forEach','tableCellSuggestion','$graveyard','listenTo','filter','length','1572792PDENRa','name','ck-suggestion-marker--active','Users','updateMarker','from','add','join','detach','nodeAfter','_replaceTableSlotCell','getMarkers','tablePasteColumn','document','fill','accept','return','fromEntries','column','editor','registerPostFixer','columns','insertion','descriptionFactory','getChild','*Replace\x20table\x20cells*','suggestion','removeMarkers','previous','tablePasteRow','createRangeOn'];_0x3932=function(){return _0x455ab2;};return _0x3932();}import{LiveRange as _0x3fdc96}from'ckeditor5/src/engine.js';import{uid as _0x135906,priorities as _0x3be91c}from'ckeditor5/src/utils.js';import _0x184575 from'./table.js';const we=[_0x17042a(0x192),_0x17042a(0x1bf),_0x17042a(0x196),_0x17042a(0x160),_0x17042a(0x162),_0x17042a(0x180),_0x17042a(0x183)],ve=Object[_0x17042a(0x110)](we[_0x17042a(0x19c)](_0x5c5cbb=>[_0x5c5cbb,null]));export default class Ct extends _0x158968{static get[_0x17042a(0x19b)](){return[_0x184575];}[_0x17042a(0x17c)](){const _0x22ab2f=_0x17042a,_0x59d02a=this[_0x22ab2f(0x112)];if(!_0x59d02a[_0x22ab2f(0x178)][_0x22ab2f(0x12c)](_0x22ab2f(0x13a)))return;const _0x2dec20=_0x59d02a[_0x22ab2f(0x178)][_0x22ab2f(0x1c6)](_0x22ab2f(0x11f)),_0xfeaf69=_0x59d02a[_0x22ab2f(0x178)][_0x22ab2f(0x1c6)](_0x22ab2f(0x18d)),_0x42b53e=_0x59d02a[_0x22ab2f(0x178)][_0x22ab2f(0x1c6)](_0x184575),_0x338b40=_0x59d02a[_0x22ab2f(0x178)][_0x22ab2f(0x1c6)](_0x22ab2f(0x13a));_0x42b53e[_0x22ab2f(0x194)][_0x22ab2f(0x1b1)](_0x22ab2f(0x11c),_0x22ab2f(0x10b)),_0x59d02a[_0x22ab2f(0x187)][_0x22ab2f(0x169)][_0x22ab2f(0x121)](_0x22ab2f(0x1c8),{'allowIn':_0x22ab2f(0x1b4),'allowContentOf':_0x22ab2f(0x1b4),'isLimit':!0x0}),_0x59d02a[_0x22ab2f(0x135)][_0x22ab2f(0x14b)]({'model':_0x22ab2f(0x1c8),'view':_0x22ab2f(0x17f)});let _0xdc41f3=null;_0x59d02a[_0x22ab2f(0x187)]['on'](_0x22ab2f(0x127),(_0x597f03,_0x1039ef)=>{const _0x3cb11d=_0x22ab2f,[_0x333d89,_0x13ba82]=_0x1039ef,_0x5509d3=_0x1039ef[_0x1039ef[_0x3cb11d(0x1cc)]-0x1];_0x5509d3&&_0x5509d3[_0x3cb11d(0x15b)]||_0x2dec20[_0x3cb11d(0x177)]||this[_0x3cb11d(0x112)][_0x3cb11d(0x13f)][_0x3cb11d(0x1c6)](_0x3cb11d(0x1ad))[_0x3cb11d(0x1be)]&&function(_0x4cd658,_0x428d62,_0x5c3baa,_0xaeca87,_0x46efae){const _0x176da9=_0x3cb11d;if(_0x428d62&&!_0x428d62['is'](_0x176da9(0x164)))return!0x1;const _0x4d5b7e=_0x46efae[_0x176da9(0x1bd)](_0x4cd658,_0x5c3baa);if(!_0x4d5b7e||!Ae(_0x4d5b7e,void 0x0,_0xaeca87))return!0x1;const _0x46de3a=_0xaeca87[_0x176da9(0x124)](_0x5c3baa[_0x176da9(0x10c)][_0x176da9(0x174)]);if(!_0x46de3a[_0x176da9(0x1cc)])return!0x1;const _0x47424b=_0x46de3a[0x0][_0x176da9(0x132)](_0x176da9(0x1bc)),_0x3ba43e=_0xaeca87[_0x176da9(0x1a7)](_0x46de3a),_0x13fc80=_0xaeca87[_0x176da9(0x1bb)](_0x46de3a),_0x4229ed={'startRow':_0x3ba43e[_0x176da9(0x1b0)],'endRow':_0x3ba43e[_0x176da9(0x1a6)],'startColumn':_0x13fc80[_0x176da9(0x1b0)],'endColumn':_0x13fc80[_0x176da9(0x1a6)]};return 0x1==_0x46de3a[_0x176da9(0x1cc)]&&(_0x4229ed[_0x176da9(0x120)]+=_0xaeca87[_0x176da9(0x156)](_0x4d5b7e)-0x1,_0x4229ed[_0x176da9(0x155)]+=_0xaeca87[_0x176da9(0x139)](_0x4d5b7e)-0x1),Ae(_0x47424b,_0x4229ed,_0xaeca87);}(_0x333d89,_0x13ba82,_0x59d02a[_0x3cb11d(0x187)],_0xfeaf69,_0x338b40)&&(_0x597f03[_0x3cb11d(0x14d)](),_0xdc41f3={'cells':[],'insertionRanges':[],'deletionRanges':[],'rowInsertionRanges':[],'rowInsertionIndexes':[],'columnInsertionRanges':[],'columnInsertionIndexes':[]},_0x59d02a[_0x3cb11d(0x187)][_0x3cb11d(0x1c2)](()=>{const _0x1b0375=_0x3cb11d;_0x59d02a[_0x1b0375(0x187)][_0x1b0375(0x127)](_0x1039ef[0x0],_0x1039ef[0x1],_0x1039ef[0x2],{'forceDefaultExecution':!0x0});const _0x10a0db=_0x135906(),{rowInsertionRanges:_0x399d6f,columnInsertionRanges:_0x1d579f,insertionRanges:_0x5ec34e,deletionRanges:_0x325b6e,cells:_0x293390}=_0xdc41f3;_0x399d6f[_0x1b0375(0x1cc)]&&_0x2dec20[_0x1b0375(0x184)](_0x399d6f,_0x1b0375(0x11c),{'tablePasteChainId':_0x10a0db}),_0x1d579f[_0x1b0375(0x1cc)]&&_0x2dec20[_0x1b0375(0x184)](_0x1d579f,_0x1b0375(0x10b),{'tablePasteChainId':_0x10a0db}),_0x5ec34e[_0x1b0375(0x1cc)]&&(_0x2dec20[_0x1b0375(0x184)](_0x5ec34e,_0x1b0375(0x1b9),{'tablePasteChainId':_0x10a0db,'skipNestingCheck':!0x0}),_0x5ec34e[_0x1b0375(0x1c7)](_0x464e8a=>{const _0x129de8=_0x1b0375;var _0x5e383b;return null===(_0x5e383b=_0x464e8a[_0x129de8(0x1d5)])||void 0x0===_0x5e383b?void 0x0:_0x5e383b[_0x129de8(0x14e)](_0x464e8a);})),_0x325b6e[_0x1b0375(0x1cc)]&&(_0x2dec20[_0x1b0375(0x15e)](_0x325b6e,_0x1b0375(0x1b9),{'tablePasteChainId':_0x10a0db,'skipNestingCheck':!0x0}),_0x325b6e[_0x1b0375(0x1c7)](_0x2cb0fd=>{const _0x47c395=_0x1b0375;var _0x27e1f8;return null===(_0x27e1f8=_0x2cb0fd[_0x47c395(0x1d5)])||void 0x0===_0x27e1f8?void 0x0:_0x27e1f8[_0x47c395(0x14e)](_0x2cb0fd);}));const _0x3dbf83=_0x2dec20[_0x1b0375(0x17e)](_0x293390[_0x1b0375(0x19c)](({element:_0xd0006b})=>_0xd0006b),{'formatGroupId':_0x135906()},[],_0x1b0375(0x130),{'tablePasteChainId':_0x10a0db});if(_0x3dbf83){const _0xae52a4=_0x3dbf83[_0x1b0375(0x10a)](),_0x15792a=[];for(const {element:_0x28045f,attributes:_0x448b3f}of _0x293390){if(!_0x448b3f)continue;const _0x5d506b=_0x59d02a[_0x1b0375(0x187)][_0x1b0375(0x11d)](_0x28045f),_0xf50022=_0xae52a4[_0x1b0375(0x18f)](_0x120a6e=>_0x120a6e[_0x1b0375(0x15f)]()[_0x1b0375(0x186)](_0x5d506b));_0xf50022&&_0x15792a[_0x1b0375(0x1b1)]([_0xf50022[_0x1b0375(0x1ce)],_0x448b3f]);}_0x15792a[_0x1b0375(0x1cc)]&&_0x3dbf83[_0x1b0375(0x131)](_0x1b0375(0x1ac),Object[_0x1b0375(0x110)](_0x15792a));}_0xdc41f3=null;}));},{'priority':_0x3be91c[_0x22ab2f(0x11e)]+0xa}),_0x59d02a[_0x22ab2f(0x178)][_0x22ab2f(0x1c6)](_0x22ab2f(0x13a))['on'](_0x22ab2f(0x1d7),(_0x2772c9,_0xdc5cb0)=>{const _0x4db739=_0x22ab2f,[_0x505384,_0x59bd4e,,_0x52c595]=_0xdc5cb0;if(!_0xdc41f3)return;_0x2772c9[_0x4db739(0x14d)]();const _0x4ecc63=_0x505384[_0x4db739(0x12f)],_0x4bc562=_0x59bd4e,_0x947b87=je(_0x4ecc63),_0x13a340=je(_0x4bc562);_0x2772c9[_0x4db739(0x10f)]=_0x4ecc63;let _0x2f39e7=null,_0x560a91=null;if(_0x13a340||_0x947b87){if(_0x947b87&&!_0x13a340){_0x52c595[_0x4db739(0x165)](_0x4ecc63[_0x4db739(0x117)](0x0));for(const _0x1d93d4 of Array[_0x4db739(0x1d2)](_0x4bc562[_0x4db739(0x182)]()))_0x52c595[_0x4db739(0x168)](_0x1d93d4,_0x4ecc63,_0x4db739(0x136));const _0x3243c2=_0xdc41f3[_0x4db739(0x1a0)][_0x4db739(0x13d)](_0x505384[_0x4db739(0x138)]),_0x54f8e7=_0xdc41f3[_0x4db739(0x1a2)][_0x4db739(0x13d)](_0x505384[_0x4db739(0x111)]);_0x3243c2||_0x54f8e7||(_0x2f39e7=_0x3fdc96[_0x4db739(0x1aa)](_0x52c595[_0x4db739(0x1af)](_0x4ecc63)));}else _0x13a340&&!_0x947b87&&(_0x560a91=_0x52c595[_0x4db739(0x1af)](_0x4ecc63));}else{const _0x501b22=_0x52c595[_0x4db739(0x161)](_0x4db739(0x1c8)),_0x2c6660=_0x52c595[_0x4db739(0x161)](_0x4db739(0x1c8));_0x52c595[_0x4db739(0x179)](_0x52c595[_0x4db739(0x1af)](_0x4ecc63),_0x2c6660),_0x52c595[_0x4db739(0x168)](_0x501b22,_0x4ecc63,0x0);for(const _0x1f6c2e of Array[_0x4db739(0x1d2)](_0x4bc562[_0x4db739(0x182)]()))_0x52c595[_0x4db739(0x168)](_0x1f6c2e,_0x501b22,_0x4db739(0x136));_0x2f39e7=_0x3fdc96[_0x4db739(0x1aa)](_0x52c595[_0x4db739(0x11d)](_0x501b22)),_0x560a91=_0x3fdc96[_0x4db739(0x1aa)](_0x52c595[_0x4db739(0x11d)](_0x2c6660));}const _0x5c6ea7=Array[_0x4db739(0x1d2)](_0x4bc562[_0x4db739(0x19e)]())[_0x4db739(0x1cb)](([_0x7da1ce])=>we[_0x4db739(0x13d)](_0x7da1ce));_0xdc41f3[_0x4db739(0x15a)][_0x4db739(0x1b1)]({'element':_0x4ecc63,'attributes':_0x5c6ea7[_0x4db739(0x1cc)]?Object[_0x4db739(0x110)](_0x5c6ea7):null}),_0x2f39e7&&_0xdc41f3[_0x4db739(0x147)][_0x4db739(0x1b1)](_0x2f39e7),_0x560a91&&_0xdc41f3[_0x4db739(0x1c4)][_0x4db739(0x1b1)](_0x560a91);},{'priority':_0x22ab2f(0x11e)}),_0xfeaf69['on'](_0x22ab2f(0x185),(_0x56389d,_0x535689)=>{const _0x1bb1f4=_0x22ab2f,[_0x5bc3fd,_0x529b3c={}]=_0x535689;if(!_0xdc41f3)return;const _0x1974d6=_0x529b3c['at']||0x0,_0x3eab86=_0x529b3c[_0x1bb1f4(0x114)]||0x1;_0xdc41f3[_0x1bb1f4(0x1a2)]=new Array(_0x3eab86)[_0x1bb1f4(0x10d)](_0x1974d6)[_0x1bb1f4(0x19c)]((_0x5216e6,_0x55c087)=>_0x5216e6+_0x55c087);for(const {cell:_0x2f9c4e}of _0xfeaf69[_0x1bb1f4(0x16f)](_0x5bc3fd,{'startColumn':_0x1974d6,'endColumn':_0x1974d6+_0x3eab86-0x1}))_0xdc41f3[_0x1bb1f4(0x188)][_0x1bb1f4(0x1b1)](_0x59d02a[_0x1bb1f4(0x187)][_0x1bb1f4(0x11d)](_0x2f9c4e));},{'priority':_0x22ab2f(0x1ae)}),_0xfeaf69['on'](_0x22ab2f(0x158),(_0x3244ee,_0x3bbd7f)=>{const _0x2746c3=_0x22ab2f,[_0x583d05,_0x626dc0={}]=_0x3bbd7f;if(!_0xdc41f3)return;const _0x2c52db=_0x626dc0['at']||0x0,_0x514843=_0x626dc0[_0x2746c3(0x199)]||0x1;_0xdc41f3[_0x2746c3(0x1a0)]=new Array(_0x514843)[_0x2746c3(0x10d)](_0x2c52db)[_0x2746c3(0x19c)]((_0x16050d,_0x5648ba)=>_0x16050d+_0x5648ba);for(const {cell:_0x14d5c1}of _0xfeaf69[_0x2746c3(0x16f)](_0x583d05,{'startRow':_0x2c52db,'endRow':_0x2c52db+_0x514843-0x1}))_0xdc41f3[_0x2746c3(0x140)][_0x2746c3(0x1b1)](_0x59d02a[_0x2746c3(0x187)][_0x2746c3(0x11d)](_0x14d5c1));},{'priority':_0x22ab2f(0x1ae)}),_0x2dec20[_0x22ab2f(0x116)][_0x22ab2f(0x166)](_0x24285c=>{const _0x26697f=_0x22ab2f;if(_0x24285c[_0x26697f(0x126)]&&_0x24285c[_0x26697f(0x126)][_0x26697f(0x1a3)](_0x26697f(0x1b9)))return _0x24285c[_0x26697f(0x11b)]?{}:{'type':_0x26697f(0x115),'content':_0x12703c(_0x59d02a[_0x26697f(0x15d)],_0x26697f(0x118))};});const _0x595e4f=()=>!0x1;for(const _0x11a93d of[_0x22ab2f(0x1b9),_0x22ab2f(0x10b),_0x22ab2f(0x11c),_0x22ab2f(0x130)])_0x2dec20[_0x22ab2f(0x12d)][_0x22ab2f(0x1a8)](_0x22ab2f(0x115),_0x11a93d,_0x22ab2f(0x1d4),_0x595e4f),_0x2dec20[_0x22ab2f(0x12d)][_0x22ab2f(0x1a8)](_0x22ab2f(0x17d),_0x11a93d,_0x22ab2f(0x1d4),_0x595e4f),_0x2dec20[_0x22ab2f(0x12d)][_0x22ab2f(0x1a8)](_0x22ab2f(0x175),_0x11a93d,_0x22ab2f(0x1d4),_0x595e4f);_0x2dec20[_0x22ab2f(0x12d)][_0x22ab2f(0x1a8)](_0x22ab2f(0x175),_0x22ab2f(0x130),_0x22ab2f(0x1a4),_0x595e4f),_0x2dec20[_0x22ab2f(0x12d)][_0x22ab2f(0x1a8)](_0x22ab2f(0x175),_0x22ab2f(0x130),_0x22ab2f(0x10e),(_0x5d8ee7,_0x3bf51d,_0xe785f3)=>{const _0xa3a079=_0x22ab2f,_0x461034=_0x5d8ee7[_0xa3a079(0x19c)](_0x266c5d=>_0x266c5d[_0xa3a079(0x1ba)]())[_0xa3a079(0x1cb)](_0x232f12=>_0x232f12),_0x54022a=new Map(_0x461034[_0xa3a079(0x19c)](_0x124791=>[_0x124791,null]));if(_0xdc41f3){for(const {element:_0x15459b,attributes:_0xe02e1f}of _0xdc41f3[_0xa3a079(0x15a)])_0xe02e1f&&_0x54022a[_0xa3a079(0x16a)](_0x15459b,_0xe02e1f);}else{if(_0xe785f3&&_0xe785f3[_0xa3a079(0x1ac)])for(const [_0xc9100,_0x270721]of Object[_0xa3a079(0x14c)](_0xe785f3[_0xa3a079(0x1ac)])){const _0x21322b=_0x59d02a[_0xa3a079(0x187)][_0xa3a079(0x14a)][_0xa3a079(0x1c6)](_0xc9100),_0xab879b=_0x21322b?_0x21322b[_0xa3a079(0x15f)]()[_0xa3a079(0x1ba)]():null;_0xab879b&&_0x54022a[_0xa3a079(0x16a)](_0xab879b,_0x270721);}}_0x59d02a[_0xa3a079(0x187)][_0xa3a079(0x1c2)](_0x51b55a=>{const _0x267516=_0xa3a079;for(const [_0x5c0bef,_0x359aea]of _0x54022a)_0x51b55a[_0x267516(0x144)]({...ve,..._0x359aea},_0x5c0bef);});});const _0x2c9ffe=(_0x1ec377,_0x162706)=>{const _0x254658=_0x22ab2f;_0x2dec20[_0x254658(0x12d)][_0x254658(0x1a8)](_0x1ec377,_0x254658(0x1b9),_0x162706,(_0x1d52c7,_0x2ddbd1,_0x46890f)=>{const _0x1126d8=_0x254658;_0x59d02a[_0x1126d8(0x187)][_0x1126d8(0x1c2)](_0x1e061f=>{const _0xe47de2=_0x1126d8,_0x2878be=[];for(const _0x19c4f1 of _0x1d52c7){const _0x175f94=_0x19c4f1[_0xe47de2(0x17b)][_0xe47de2(0x1d6)];_0x175f94['is'](_0xe47de2(0x157),_0xe47de2(0x1c8))&&_0x2878be[_0xe47de2(0x1b1)](_0x175f94);}_0x2dec20[_0xe47de2(0x12d)][_0xe47de2(0x16e)](_0x1ec377,null,_0x162706)(_0x1d52c7,_0x2ddbd1,_0x46890f);for(const _0x3c2c40 of _0x2878be)_0xe47de2(0x1c9)!=_0x3c2c40[_0xe47de2(0x167)][_0xe47de2(0x16b)]&&_0x1e061f[_0xe47de2(0x151)](_0x3c2c40);});});};_0x2c9ffe(_0x22ab2f(0x115),_0x22ab2f(0x10e)),_0x2c9ffe(_0x22ab2f(0x115),_0x22ab2f(0x1a4)),_0x2c9ffe(_0x22ab2f(0x17d),_0x22ab2f(0x10e)),_0x2c9ffe(_0x22ab2f(0x17d),_0x22ab2f(0x1a4)),_0x2dec20[_0x22ab2f(0x12d)][_0x22ab2f(0x1a8)](_0x22ab2f(0x115),_0x22ab2f(0x11c),_0x22ab2f(0x1a4),_0x19a7ee=>{const _0x55da5c=_0x22ab2f,_0x3c5666=_0x19a7ee[_0x55da5c(0x19c)](_0x1c41f5=>_0x1c41f5[_0x55da5c(0x1ba)]()),_0x2b26b0=_0x3c5666[0x0][_0x55da5c(0x132)](_0x55da5c(0x1bc)),{minRow:_0x5239d7,maxRow:_0x9872ad}=_0x42b53e[_0x55da5c(0x19a)](_0x3c5666);_0xfeaf69[_0x55da5c(0x142)](_0x2b26b0,{'at':_0x5239d7,'rows':_0x9872ad-_0x5239d7+0x1});}),_0x2dec20[_0x22ab2f(0x12d)][_0x22ab2f(0x1a8)](_0x22ab2f(0x115),_0x22ab2f(0x10b),_0x22ab2f(0x1a4),_0x33a13b=>{const _0x2ca578=_0x22ab2f,_0x339269=_0x33a13b[_0x2ca578(0x19c)](_0x413b24=>_0x413b24[_0x2ca578(0x1ba)]()),_0x2edb44=_0x339269[0x0][_0x2ca578(0x132)](_0x2ca578(0x1bc)),{minColumn:_0x50746f,maxColumn:_0x907d21}=_0x42b53e[_0x2ca578(0x19a)](_0x339269);_0xfeaf69[_0x2ca578(0x14f)](_0x2edb44,{'at':_0x50746f,'columns':_0x907d21-_0x50746f+0x1});});const _0x146f89=(_0x5473e0,_0x311ed4)=>{const _0x354ce5=_0x22ab2f;if(!_0x311ed4[_0x354ce5(0x126)]||!_0x311ed4[_0x354ce5(0x126)][_0x354ce5(0x1a3)](_0x354ce5(0x1b9)))return;const _0x1fa958=_0x311ed4[_0x354ce5(0x176)][_0x354ce5(0x1c0)],_0x45372e=_0x2dec20[_0x354ce5(0x145)]()[_0x354ce5(0x1cb)](_0x47eac2=>_0x47eac2[_0x354ce5(0x122)]&&_0x47eac2[_0x354ce5(0x176)]&&_0x47eac2[_0x354ce5(0x176)][_0x354ce5(0x1c0)]==_0x1fa958);_0x45372e[_0x354ce5(0x1cc)]&&_0x311ed4[_0x354ce5(0x12b)]()[_0x354ce5(0x1cc)]!=_0x45372e[_0x354ce5(0x1cc)]&&_0x45372e[_0x354ce5(0x1b6)]((_0x3f09e5,_0x2510bf)=>(_0x3f09e5[_0x354ce5(0x17a)]=_0x2510bf,_0x2510bf[_0x354ce5(0x11b)]=_0x3f09e5,_0x2510bf));};function _0x31cd93(_0x4bda3c,_0x52d779=!0x0){const _0x3fc3bc=_0x22ab2f,{id:_0x294d41,authorId:_0x3356c6}=_0x2dec20[_0x3fc3bc(0x18b)](_0x4bda3c[_0x3fc3bc(0x189)]),_0x53c04f=[_0x3fc3bc(0x1b2),_0x3fc3bc(0x125)],_0x38e6bd=_0x2dec20[_0x3fc3bc(0x195)][_0x3fc3bc(0x13d)](_0x4bda3c[_0x3fc3bc(0x189)]);return _0x38e6bd&&_0x53c04f[_0x3fc3bc(0x1b1)](_0x3fc3bc(0x1cf)),{'classes':_0x53c04f,'attributes':{'data-suggestion':_0x294d41,'data-author-id':_0x3356c6},'priority':_0x38e6bd&&_0x52d779?0xbc2:0xbb8};}_0x2dec20['on'](_0x22ab2f(0x1a1),_0x146f89,{'priority':_0x22ab2f(0x11e)}),_0x2dec20['on'](_0x22ab2f(0x1b8),_0x146f89,{'priority':_0x22ab2f(0x11e)}),_0x59d02a[_0x22ab2f(0x187)][_0x22ab2f(0x10c)][_0x22ab2f(0x113)](()=>{const _0x318396=_0x22ab2f;let _0x13010d=!0x1;const _0x50d7b2=Array[_0x318396(0x1d2)](_0x59d02a[_0x318396(0x187)][_0x318396(0x10c)][_0x318396(0x18c)][_0x318396(0x1b7)]());for(const {name:_0x2ae571,data:_0x2840d9}of _0x50d7b2){const {group:_0x77a49,type:_0x12cbf5,id:_0x51796d}=_0x2dec20[_0x318396(0x18b)](_0x2ae571);if(_0x318396(0x119)!=_0x77a49||_0x318396(0x17d)!=_0x12cbf5||_0x2840d9[_0x318396(0x19f)])continue;if(!_0x2dec20[_0x318396(0x12e)](_0x51796d))continue;const _0x51aa4a=_0x2dec20[_0x318396(0x1c3)](_0x51796d)[_0x318396(0x12a)](),_0x35e73f=_0x59d02a[_0x318396(0x178)][_0x318396(0x1c6)](_0x318396(0x1d0))['me'];for(const _0x252e7a of _0x2dec20[_0x318396(0x145)]()){if(!_0x252e7a[_0x318396(0x122)]||_0x252e7a[_0x318396(0x137)]!=_0x35e73f)continue;if(_0x318396(0x175)!=_0x252e7a[_0x318396(0x143)]||_0x318396(0x130)!=_0x252e7a[_0x318396(0x126)])continue;if(_0x252e7a[_0x318396(0x12a)]()[_0x318396(0x123)](_0x4d1a79=>_0x51aa4a[_0x318396(0x154)](_0x3d7c1d=>_0x3d7c1d[_0x318396(0x172)](_0x4d1a79,!0x0)))){for(const _0xd26f68 of _0x252e7a[_0x318396(0x12b)]())_0xd26f68[_0x318396(0x122)]&&(_0xd26f68[_0x318396(0x1a4)](),_0x13010d=!0x0);}}}return _0x13010d;}),_0x59d02a[_0x22ab2f(0x187)][_0x22ab2f(0x10c)][_0x22ab2f(0x113)](_0x2c88e9=>{const _0x1e72d9=_0x22ab2f,_0x464f4b=_0x59d02a[_0x1e72d9(0x13f)][_0x1e72d9(0x1c6)](_0x1e72d9(0x16d));if(!_0x464f4b||!_0x464f4b[_0x1e72d9(0x190)][_0x1e72d9(0x12c)](_0x2c88e9[_0x1e72d9(0x1a9)]))return!0x1;let _0x1f0e3c=!0x1;const _0x500612=_0x59d02a[_0x1e72d9(0x178)][_0x1e72d9(0x1c6)](_0x1e72d9(0x1d0))['me'],_0xad7194=_0x59d02a[_0x1e72d9(0x187)][_0x1e72d9(0x10c)][_0x1e72d9(0x18c)][_0x1e72d9(0x198)](),_0x3770bd=Array[_0x1e72d9(0x1d2)](_0x59d02a[_0x1e72d9(0x187)][_0x1e72d9(0x10c)][_0x1e72d9(0x18c)][_0x1e72d9(0x1b7)]())[_0x1e72d9(0x1cb)](({name:_0x1746d1,data:_0x1a57b3})=>{const _0x47350f=_0x1e72d9,{group:_0x42eefb,subType:_0x52caa0,authorId:_0x3df9c4}=_0x2dec20[_0x47350f(0x18b)](_0x1746d1);return _0x47350f(0x119)==_0x42eefb&&_0x47350f(0x1b9)==_0x52caa0&&_0x3df9c4==_0x500612['id']&&!_0x1a57b3[_0x47350f(0x19f)];});for(const _0x27e133 of _0xad7194){if(_0x1e72d9(0x168)!=_0x27e133[_0x1e72d9(0x143)]||_0x1e72d9(0x1c8)!=_0x27e133[_0x1e72d9(0x1ce)]||0x1!=_0x27e133[_0x1e72d9(0x1cc)])continue;const _0x548f16=_0x2c88e9[_0x1e72d9(0x170)](_0x27e133[_0x1e72d9(0x159)],_0x27e133[_0x1e72d9(0x159)][_0x1e72d9(0x148)](0x1));if(!_0x3770bd[_0x1e72d9(0x18f)](({data:_0x51829f})=>_0x51829f[_0x1e72d9(0x152)][_0x1e72d9(0x186)](_0x548f16))){for(const {name:_0x34ce8b,data:_0x4ef3a9}of _0x3770bd)if(_0x548f16[_0x1e72d9(0x172)](_0x4ef3a9[_0x1e72d9(0x152)])){_0x2c88e9[_0x1e72d9(0x1d1)](_0x34ce8b,{'range':_0x548f16}),_0x1f0e3c=!0x0;break;}}}return _0x1f0e3c;}),_0x59d02a[_0x22ab2f(0x187)][_0x22ab2f(0x10c)][_0x22ab2f(0x113)](_0x2c55fe=>{const _0x5eb02a=_0x22ab2f;let _0x2b3770=!0x1;const _0x11e55d=_0x59d02a[_0x5eb02a(0x178)][_0x5eb02a(0x1c6)](_0x5eb02a(0x1d0))['me'],_0x1149a7=_0x2dec20[_0x5eb02a(0x145)]()[_0x5eb02a(0x1cb)](_0x33742e=>_0x33742e[_0x5eb02a(0x122)]&&_0x33742e[_0x5eb02a(0x137)]==_0x11e55d),_0x4141ea=new Set(),_0x11e5e8=new Set();for(const _0x517102 of _0x1149a7)if(_0x5eb02a(0x1b9)==_0x517102[_0x5eb02a(0x126)])for(const _0x33ed85 of _0x517102[_0x5eb02a(0x10a)]()){const _0x43afde=_0x33ed85[_0x5eb02a(0x15f)]()[_0x5eb02a(0x1ba)]();if(_0x43afde){if(_0x43afde['is'](_0x5eb02a(0x157),_0x5eb02a(0x1c8))&&je(_0x43afde)){_0x517102[_0x5eb02a(0x153)](_0x33ed85[_0x5eb02a(0x1ce)]),_0x4141ea[_0x5eb02a(0x1d3)](_0x43afde),_0x2b3770=!0x0;const _0x541793=_0x43afde[_0x5eb02a(0x129)],_0x4a28e7=_0x43afde[_0x5eb02a(0x16c)],_0x2fba08=_0x541793&&_0x541793['is'](_0x5eb02a(0x157),_0x5eb02a(0x1c8)),_0x34f0a0=_0x4a28e7&&_0x4a28e7['is'](_0x5eb02a(0x157),_0x5eb02a(0x1c8));_0x2fba08&&!_0x4141ea[_0x5eb02a(0x12c)](_0x541793)&&_0x11e5e8[_0x5eb02a(0x1d3)](_0x541793),_0x34f0a0&&!_0x4141ea[_0x5eb02a(0x12c)](_0x4a28e7)&&_0x11e5e8[_0x5eb02a(0x1d3)](_0x4a28e7);}else _0x43afde['is'](_0x5eb02a(0x157),_0x5eb02a(0x191))&&_0x43afde[_0x5eb02a(0x13c)]&&(_0x517102[_0x5eb02a(0x153)](_0x33ed85[_0x5eb02a(0x1ce)]),_0x2b3770=!0x0);}}else{if(_0x5eb02a(0x130)==_0x517102[_0x5eb02a(0x126)]){if(!_0x517102[_0x5eb02a(0x176)]||!_0x517102[_0x5eb02a(0x176)][_0x5eb02a(0x1c0)])continue;const _0x5c1494=_0x517102[_0x5eb02a(0x176)][_0x5eb02a(0x1ac)];if(_0x5c1494&&Object[_0x5eb02a(0x149)](_0x5c1494)[_0x5eb02a(0x1cc)])continue;const _0x37532b=_0x517102[_0x5eb02a(0x176)][_0x5eb02a(0x1c0)];let _0x2e9950=!0x0,_0x5c2270=!0x0;for(const _0x366bc8 of _0x1149a7)if(_0x366bc8[_0x5eb02a(0x126)]&&_0x366bc8[_0x5eb02a(0x126)][_0x5eb02a(0x1a3)](_0x5eb02a(0x1b9))){if(!_0x366bc8[_0x5eb02a(0x176)][_0x5eb02a(0x1c0)]){_0x5c2270=!0x1;break;}if(_0x366bc8['id']!=_0x517102['id']&&_0x366bc8[_0x5eb02a(0x176)][_0x5eb02a(0x1c0)]==_0x37532b){_0x2e9950=!0x1;break;}}_0x5c2270&&_0x2e9950&&(_0x517102[_0x5eb02a(0x11a)](),_0x2b3770=!0x0);}}for(const _0x4035ba of _0x4141ea)_0x2c55fe[_0x5eb02a(0x165)](_0x4035ba);for(const _0x413cc4 of _0x11e5e8)_0x2c55fe[_0x5eb02a(0x151)](_0x413cc4);return _0x2b3770;}),_0x59d02a[_0x22ab2f(0x135)][_0x22ab2f(0x193)](_0x22ab2f(0x1ab))[_0x22ab2f(0x13b)]({'model':_0x22ab2f(0x134),'view':_0x4275f4=>_0x31cd93(_0x4275f4),'converterPriority':_0x22ab2f(0x11e)}),_0x59d02a[_0x22ab2f(0x135)][_0x22ab2f(0x193)](_0x22ab2f(0x163))[_0x22ab2f(0x13b)]({'model':_0x22ab2f(0x134),'view':(_0x1ed157,_0x147af3)=>_0x147af3[_0x22ab2f(0x13e)][_0x22ab2f(0x181)]?_0x31cd93(_0x1ed157,!0x1):null,'converterPriority':_0x22ab2f(0x11e)});const _0x495033=_0x59d02a[_0x22ab2f(0x1c5)][_0x22ab2f(0x1c1)];this[_0x22ab2f(0x1ca)](_0x495033[_0x22ab2f(0x10c)],_0x22ab2f(0x1a5),(_0x8f2782,_0x2ae751)=>{const _0x55d3a6=_0x22ab2f,_0x171131=[];for(const _0x1179f3 of _0x495033[_0x55d3a6(0x1af)](_0x2ae751[_0x55d3a6(0x1b5)])[_0x55d3a6(0x171)]())_0x1179f3['is'](_0x55d3a6(0x157),_0x55d3a6(0x17f))&&_0x171131[_0x55d3a6(0x1b1)](_0x1179f3);_0x495033[_0x55d3a6(0x1c2)](_0x280bf4=>{const _0x3e2510=_0x55d3a6;for(const _0x3357d1 of _0x171131)_0x280bf4[_0x3e2510(0x150)](_0x280bf4[_0x3e2510(0x1af)](_0x3357d1),_0x280bf4[_0x3e2510(0x19d)](_0x3357d1)),_0x280bf4[_0x3e2510(0x165)](_0x3357d1);});});}}function je(_0x169797){const _0x3156fd=_0x17042a;if(_0x169797[_0x3156fd(0x13c)])return!0x0;const _0x511348=_0x169797[_0x3156fd(0x117)](0x0);return _0x511348['is'](_0x3156fd(0x157),_0x3156fd(0x191))&&_0x511348[_0x3156fd(0x13c)];}function Ae(_0x3554cd,_0x196cf7={},_0x2c694b){const _0x4ff9bc=_0x17042a;for(const {isAnchor:_0x3c9fb3,cellHeight:_0x4f9b00,cellWidth:_0x2aec4e}of _0x2c694b[_0x4ff9bc(0x16f)](_0x3554cd,{'includeAllSlots':!0x0,..._0x196cf7}))if(!_0x3c9fb3||0x1!=_0x4f9b00||0x1!=_0x2aec4e)return!0x1;return!0x0;}
@@ -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/integrations/tablecolumnresize
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import type { Element } from 'ckeditor5/src/engine.js';
10
+ import type Suggestion from '../suggestion.js';
11
+ import type { Description } from '../suggestiondescriptionfactory.js';
12
+ /**
13
+ * Provides track changes plugin integration for table column resize feature.
14
+ */
15
+ export default class TrackChangesTableColumnResize extends Plugin {
16
+ /**
17
+ * @inheritDoc
18
+ */
19
+ afterInit(): void;
20
+ handleResizeTableWidthCommand(executeCommand: Function, options: {
21
+ table?: Element;
22
+ tableWidth?: string;
23
+ columnWidths?: string;
24
+ }): void;
25
+ handleSuggestionDescription(suggestion: Suggestion): Description | undefined;
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 _0x57fcec=_0x3871;(function(_0x1b8aa4,_0xdca485){const _0x56ca76=_0x3871,_0x5aeaee=_0x1b8aa4();while(!![]){try{const _0x3121cf=parseInt(_0x56ca76(0x90))/0x1+parseInt(_0x56ca76(0xa2))/0x2+parseInt(_0x56ca76(0x87))/0x3+-parseInt(_0x56ca76(0xae))/0x4+-parseInt(_0x56ca76(0xaa))/0x5+-parseInt(_0x56ca76(0xac))/0x6*(-parseInt(_0x56ca76(0xb2))/0x7)+-parseInt(_0x56ca76(0x8a))/0x8;if(_0x3121cf===_0xdca485)break;else _0x5aeaee['push'](_0x5aeaee['shift']());}catch(_0x56af2e){_0x5aeaee['push'](_0x5aeaee['shift']());}}}(_0x2adc,0x49e16));function _0x3871(_0xd6d7ab,_0x572b03){const _0x2adc4f=_0x2adc();return _0x3871=function(_0x3871dc,_0x565d6a){_0x3871dc=_0x3871dc-0x82;let _0x3fc68c=_0x2adc4f[_0x3871dc];return _0x3fc68c;},_0x3871(_0xd6d7ab,_0x572b03);}import{Plugin as _0x102a1c}from'ckeditor5/src/core.js';function _0x2adc(){const _0x35e82c=['tableWidth','author','formatGroupId','has','locale','handleSuggestionDescription','registerCustomCallback','descriptionFactory','document','type','format','accept','formatBlock','formatInline','afterInit','853158iPrjAj','data','discard','Users','bind','getAttribute','TrackChangesEditing','commandParams','107570gnRpRT','enableCommand','6bXUyJy','resizeTableWidth','2058812MycnBv','resizeTable','handleResizeTableWidthCommand','*Format:*\x20resize\x20table','3245648ACcnha','subType','change','registerDescriptionCallback','columnWidths','_suggestionFactory','getSuggestions','markBlockFormat','getSelectedElement','getTableColumnsWidths','editor','723024dZZuJu','plugins','model','6146200bzoRPX','get','TableColumnResizeEditing','selection','table','getSuggestionCallback','475855SSRIIk','getContainedElement','getColumnGroupElement'];_0x2adc=function(){return _0x35e82c;};return _0x2adc();}import{getTranslation as _0x4bd890}from'../utils/common-translations.js';export default class Nt extends _0x102a1c{[_0x57fcec(0xa1)](){const _0x1982a5=_0x57fcec;if(!this[_0x1982a5(0x86)][_0x1982a5(0x88)][_0x1982a5(0x96)](_0x1982a5(0x8c)))return;const _0x5b63a7=this[_0x1982a5(0x86)][_0x1982a5(0x88)][_0x1982a5(0x8b)](_0x1982a5(0xa8));_0x5b63a7[_0x1982a5(0xab)](_0x1982a5(0xad),this[_0x1982a5(0xb0)][_0x1982a5(0xa6)](this)),_0x5b63a7[_0x1982a5(0xb7)][_0x1982a5(0x99)](_0x1982a5(0x9f),_0x1982a5(0xaf),_0x1982a5(0x9e),_0x5b63a7[_0x1982a5(0xb7)][_0x1982a5(0x8f)](_0x1982a5(0x9f),null,_0x1982a5(0xa4))),_0x5b63a7[_0x1982a5(0xb7)][_0x1982a5(0x99)](_0x1982a5(0x9f),_0x1982a5(0xaf),_0x1982a5(0xa4),_0x5b63a7[_0x1982a5(0xb7)][_0x1982a5(0x8f)](_0x1982a5(0x9f),null,_0x1982a5(0x9e))),_0x5b63a7[_0x1982a5(0x9a)][_0x1982a5(0xb5)](this[_0x1982a5(0x98)][_0x1982a5(0xa6)](this));}[_0x57fcec(0xb0)](_0x45f957,_0x3f0670){const _0x2c21c8=_0x57fcec,_0x19bce4=this[_0x2c21c8(0x86)][_0x2c21c8(0x88)][_0x2c21c8(0x8b)](_0x2c21c8(0xa8)),_0x5ee177=this[_0x2c21c8(0x86)][_0x2c21c8(0x88)][_0x2c21c8(0x8b)](_0x2c21c8(0x8c)),_0x36793d=_0x3f0670[_0x2c21c8(0x8e)]||this[_0x2c21c8(0x86)][_0x2c21c8(0x89)][_0x2c21c8(0x9b)][_0x2c21c8(0x8d)][_0x2c21c8(0x84)]();this[_0x2c21c8(0x86)][_0x2c21c8(0x89)][_0x2c21c8(0xb4)](()=>{const _0x25543e=_0x2c21c8,_0x18c487=_0x5ee177[_0x25543e(0x92)](_0x36793d);let _0x1844e9=_0x18c487?_0x5ee177[_0x25543e(0x85)](_0x18c487):null,_0x21e135=_0x36793d[_0x25543e(0xa7)](_0x25543e(0x93))||null;const _0x21ce7d=_0x3f0670[_0x25543e(0x93)]||_0x21e135,_0x191b61=_0x3f0670[_0x25543e(0xb6)]||_0x1844e9,_0x2ba0ff=this[_0x25543e(0x86)][_0x25543e(0x88)][_0x25543e(0x8b)](_0x25543e(0xa5))['me'];for(const _0x2fbde6 of _0x19bce4[_0x25543e(0x82)]()){const _0x58bf58=_0x2fbde6[_0x25543e(0x91)]();if(_0x25543e(0xaf)===_0x2fbde6[_0x25543e(0xb3)]&&_0x58bf58===_0x36793d){_0x2fbde6[_0x25543e(0x94)]!==_0x2ba0ff&&_0x2fbde6[_0x25543e(0xa4)]();const _0x59a483=_0x2fbde6[_0x25543e(0xa3)][_0x25543e(0xa9)];_0x21e135=_0x59a483[0x0][_0x25543e(0x93)],_0x1844e9=_0x59a483[0x0][_0x25543e(0xb6)];break;}}_0x45f957({'table':_0x36793d,'tableWidth':_0x21ce7d,'columnWidths':_0x191b61}),_0x19bce4[_0x25543e(0x83)](_0x36793d,{'commandName':_0x25543e(0xad),'commandParams':[{'tableWidth':_0x21e135,'columnWidths':_0x1844e9}],'formatGroupId':_0x25543e(0xaf)},[],_0x25543e(0xaf));});}[_0x57fcec(0x98)](_0x2b6672){const _0x14e1e0=_0x57fcec;if(_0x14e1e0(0x9f)!=_0x2b6672[_0x14e1e0(0x9c)]&&_0x14e1e0(0xa0)!=_0x2b6672[_0x14e1e0(0x9c)])return;const {data:_0x59f9e3}=_0x2b6672;if(_0x59f9e3&&_0x14e1e0(0xaf)===_0x59f9e3[_0x14e1e0(0x95)]){const _0x4a35e9=_0x14e1e0(0xb1);return{'type':_0x14e1e0(0x9d),'content':_0x4bd890(this[_0x14e1e0(0x86)][_0x14e1e0(0x97)],_0x4a35e9)};}}}
@@ -0,0 +1,22 @@
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/tableheadings
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import TrackChangesTable from './table.js';
10
+ /**
11
+ * Provides track changes plugin integration for {@link module:table/table~Table table feature} heading rows/columns.
12
+ */
13
+ export default class TrackChangesTableHeadings extends Plugin {
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get requires(): readonly [typeof TrackChangesTable];
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ afterInit(): void;
22
+ }
@@ -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 _0x3f5387=_0x1f89;(function(_0x118a46,_0xd340a1){const _0x206780=_0x1f89,_0xccb130=_0x118a46();while(!![]){try{const _0x57d394=parseInt(_0x206780(0xfc))/0x1*(parseInt(_0x206780(0xe4))/0x2)+parseInt(_0x206780(0xde))/0x3+-parseInt(_0x206780(0xe9))/0x4+parseInt(_0x206780(0xdf))/0x5*(parseInt(_0x206780(0xd5))/0x6)+parseInt(_0x206780(0xb5))/0x7*(-parseInt(_0x206780(0xb4))/0x8)+-parseInt(_0x206780(0xe6))/0x9+parseInt(_0x206780(0xed))/0xa;if(_0x57d394===_0xd340a1)break;else _0xccb130['push'](_0xccb130['shift']());}catch(_0x1eca05){_0xccb130['push'](_0xccb130['shift']());}}}(_0x5cef,0x9c811));import{Plugin as _0x11b4d8}from'ckeditor5/src/core.js';function _0x1f89(_0x11627e,_0x24bb3d){const _0x5cefc1=_0x5cef();return _0x1f89=function(_0x1f895f,_0x531750){_0x1f895f=_0x1f895f-0xac;let _0x5bdf6f=_0x5cefc1[_0x1f895f];return _0x5bdf6f;},_0x1f89(_0x11627e,_0x24bb3d);}import _0x4e762f from'./table.js';import{getTranslation as _0x3a51e8}from'../utils/common-translations.js';function _0x5cef(){const _0x5e9294=['consumable','unbindElementFromMarkerName','registerDescriptionCallback','activeMarkers','1558599FWvLVW','10pZhDzy','forceValue','registerBlockAttribute','_suggestionFactory','plugins','184NAFCpU','descriptionFactory','3217725IxbITh','registerAttributeLabel','removeMarker:suggestion','2807452yNPwxP','FORMAT_HEADER_ROW','highest','data','9120910XZltSv','get','setTableColumnHeader','options','nodeAfter','_splitMarkerName','writer','setAttribute','_acceptFormatSuggestionCallbackFactory','TableUtils','enableDefaultAttributesIntegration','mapper','format','downcastDispatcher','TableEditing','4999Zxjcix','includes','ck-suggestion-marker-','type','commandParams','markerName','getCellLocation','editor','editing','showSuggestionHighlights','start','commandName','_registerLegacyDescription','FORMAT_REGULAR_ROW','3659768CXKFOI','7qSniEc','cell','locale','stop','toViewElement','FORMAT_HEADER_COLUMN','accept','markerRange','requires','removeClass','headingRows','end','_handleLegacySuggestions','consume','*Format:*\x20%0','headingColumns','has','setTableRowHeader','name','addClass','registerCustomCallback','data-suggestion','formatBlock','nodeBefore','removeAttribute','bindElementToMarker','afterInit','createTableWalker','TrackChangesEditing','addMarker:suggestion','item','parent','799104RZuKRb','markerNameToElements','getSuggestion','FORMAT_REGULAR_COLUMN','ck-suggestion-marker--active'];_0x5cef=function(){return _0x5e9294;};return _0x5cef();}export default class _t extends _0x11b4d8{static get[_0x3f5387(0xbd)](){return[_0x4e762f];}[_0x3f5387(0xcf)](){const _0x2ae070=_0x3f5387,_0x48e141=this[_0x2ae070(0xad)];if(!_0x48e141[_0x2ae070(0xe3)][_0x2ae070(0xc5)](_0x2ae070(0xfb)))return;const _0x2c4760=_0x48e141[_0x2ae070(0xb7)],_0x320e40=_0x48e141[_0x2ae070(0xe3)][_0x2ae070(0xee)](_0x2ae070(0xd1));_0x320e40[_0x2ae070(0xf7)](_0x2ae070(0xc6)),_0x320e40[_0x2ae070(0xf7)](_0x2ae070(0xef)),_0x320e40[_0x2ae070(0xe1)](_0x2ae070(0xbf)),_0x320e40[_0x2ae070(0xe1)](_0x2ae070(0xc4)),_0x320e40[_0x2ae070(0xe5)][_0x2ae070(0xe7)](_0x2ae070(0xbf),_0x3a51e8(_0x2c4760,_0x2ae070(0xea))),_0x320e40[_0x2ae070(0xe5)][_0x2ae070(0xe7)](_0x2ae070(0xc4),_0x3a51e8(_0x2c4760,_0x2ae070(0xba))),this[_0x2ae070(0xc1)]();}[_0x3f5387(0xc1)](){const _0x15a1a2=_0x3f5387,_0x4b2e63=this[_0x15a1a2(0xad)][_0x15a1a2(0xe3)][_0x15a1a2(0xee)](_0x15a1a2(0xd1)),_0x2fb0f7=this[_0x15a1a2(0xad)][_0x15a1a2(0xe3)][_0x15a1a2(0xee)](_0x15a1a2(0xf6)),_0x15867e=this[_0x15a1a2(0xad)][_0x15a1a2(0xe3)][_0x15a1a2(0xee)](_0x4e762f)[_0x15a1a2(0xf5)]();function _0xf4b6c0({showActiveMarker:_0xb07e72=!0x0,setDataAttribute:_0x1dcdad=!0x0}={}){return(_0x4114f0,_0x19d9bf,_0x16762f)=>{const _0xe66b30=_0x1f89,{type:_0x10d3a2,id:_0x59236c}=_0x4b2e63[_0xe66b30(0xf2)](_0x19d9bf[_0xe66b30(0x101)]),_0x2e792b=_0x4b2e63[_0xe66b30(0xd7)](_0x59236c),_0x1f9b9b=_0x2e792b[_0xe66b30(0xec)];if(_0xe66b30(0xcb)!=_0x2e792b[_0xe66b30(0xff)]||!_0x1f9b9b||_0xe66b30(0xef)!=_0x1f9b9b[_0xe66b30(0xb1)])return;if(_0x19d9bf[_0xe66b30(0xd3)])return void _0x4114f0[_0xe66b30(0xb8)]();if(!_0x16762f[_0xe66b30(0xda)][_0xe66b30(0xc2)](_0x19d9bf[_0xe66b30(0xbc)],_0x4114f0[_0xe66b30(0xc7)]))return;const _0x3d524f=_0x19d9bf[_0xe66b30(0xbc)][_0xe66b30(0xb0)][_0xe66b30(0xf1)],_0x25e1bb=_0x19d9bf[_0xe66b30(0xbc)][_0xe66b30(0xc0)][_0xe66b30(0xcc)],_0x59e7ed=_0x3d524f[_0xe66b30(0xd4)][_0xe66b30(0xd4)],{column:_0x1a83ad}=_0x2fb0f7[_0xe66b30(0xac)](_0x3d524f),{column:_0x284e46}=_0x2fb0f7[_0xe66b30(0xac)](_0x25e1bb);for(let _0x487fba=_0x1a83ad;_0x487fba<=_0x284e46;_0x487fba++){const _0x5c0e9e=_0x2fb0f7[_0xe66b30(0xd0)](_0x59e7ed,{'column':_0x487fba,'includeAllSlots':!0x1});for(const _0x71ac13 of _0x5c0e9e){const _0x2fd24=_0x71ac13[_0xe66b30(0xb6)],_0x3d9ec2=_0x16762f[_0xe66b30(0xf8)][_0xe66b30(0xb9)](_0x2fd24);_0x16762f[_0xe66b30(0xf3)][_0xe66b30(0xc8)](_0xe66b30(0xfe)+_0x10d3a2,_0x3d9ec2),_0x1dcdad&&_0x16762f[_0xe66b30(0xf3)][_0xe66b30(0xf4)](_0xe66b30(0xca),_0x59236c,_0x3d9ec2),_0x16762f[_0xe66b30(0xf8)][_0xe66b30(0xce)](_0x3d9ec2,_0x19d9bf[_0xe66b30(0x101)]),_0xb07e72&&(_0x4b2e63[_0xe66b30(0xdd)][_0xe66b30(0xfd)](_0x19d9bf[_0xe66b30(0x101)])?_0x16762f[_0xe66b30(0xf3)][_0xe66b30(0xc8)](_0xe66b30(0xd9),_0x3d9ec2):_0x16762f[_0xe66b30(0xf3)][_0xe66b30(0xbe)](_0xe66b30(0xd9),_0x3d9ec2));}}};}_0x4b2e63[_0x15a1a2(0xe2)][_0x15a1a2(0xc9)](_0x15a1a2(0xcb),_0x15a1a2(0xc6),_0x15a1a2(0xbb),_0x15867e),_0x4b2e63[_0x15a1a2(0xe2)][_0x15a1a2(0xc9)](_0x15a1a2(0xcb),_0x15a1a2(0xef),_0x15a1a2(0xbb),_0x15867e),this[_0x15a1a2(0xad)][_0x15a1a2(0xae)][_0x15a1a2(0xfa)]['on'](_0x15a1a2(0xd2),_0xf4b6c0(),{'priority':_0x15a1a2(0xeb)}),this[_0x15a1a2(0xad)][_0x15a1a2(0xec)][_0x15a1a2(0xfa)]['on'](_0x15a1a2(0xd2),(_0x499d72,_0x5c6974,_0x3b37b4)=>{const _0x332df8=_0x15a1a2;_0x3b37b4[_0x332df8(0xf0)][_0x332df8(0xaf)]&&_0xf4b6c0({'showActiveMarker':!0x1,'setDataAttribute':!0x1})(_0x499d72,_0x5c6974,_0x3b37b4);},{'priority':_0x15a1a2(0xeb)}),this[_0x15a1a2(0xad)][_0x15a1a2(0xae)][_0x15a1a2(0xfa)]['on'](_0x15a1a2(0xe8),(_0x3dccc7,_0x468a0e,_0x12b973)=>{const _0xbb9009=_0x15a1a2,{type:_0x4b389b,id:_0x53d392}=_0x4b2e63[_0xbb9009(0xf2)](_0x468a0e[_0xbb9009(0x101)]),_0x1408c5=_0x4b2e63[_0xbb9009(0xd7)](_0x53d392),_0x55bb01=_0x1408c5[_0xbb9009(0xec)];if(_0xbb9009(0xcb)!=_0x1408c5[_0xbb9009(0xff)]||!_0x55bb01||_0xbb9009(0xef)!=_0x55bb01[_0xbb9009(0xb1)])return;const _0x1a6536=_0x12b973[_0xbb9009(0xf8)][_0xbb9009(0xd6)](_0x468a0e[_0xbb9009(0x101)]);if(_0x1a6536){for(const _0x363943 of _0x1a6536)_0x12b973[_0xbb9009(0xf3)][_0xbb9009(0xbe)](_0xbb9009(0xfe)+_0x4b389b,_0x363943),_0x12b973[_0xbb9009(0xf3)][_0xbb9009(0xbe)](_0xbb9009(0xd9),_0x363943),_0x12b973[_0xbb9009(0xf3)][_0xbb9009(0xcd)](_0xbb9009(0xca),_0x363943),_0x12b973[_0xbb9009(0xf8)][_0xbb9009(0xdb)](_0x363943,_0x468a0e[_0xbb9009(0x101)]);}},{'priority':_0x15a1a2(0xeb)}),this[_0x15a1a2(0xb2)]();}[_0x3f5387(0xb2)](){const _0xb914db=_0x3f5387,_0x2541b4=this[_0xb914db(0xad)],_0x5cbe22=_0x2541b4[_0xb914db(0xb7)];function _0x309a65(_0x534ddd){const _0x5d0c8d=_0xb914db;return{'type':_0x5d0c8d(0xf9),'content':_0x3a51e8(_0x5cbe22,_0x5d0c8d(0xc3),_0x534ddd)};}_0x2541b4[_0xb914db(0xe3)][_0xb914db(0xee)](_0xb914db(0xd1))[_0xb914db(0xe5)][_0xb914db(0xdc)](_0x4fa15e=>{const _0x59b326=_0xb914db;if(_0x59b326(0xcb)!=_0x4fa15e[_0x59b326(0xff)])return;const {data:_0x2dac70}=_0x4fa15e;if(_0x2dac70){if(_0x59b326(0xc6)==_0x2dac70[_0x59b326(0xb1)]){const _0x5a0d5e=_0x2dac70[_0x59b326(0x100)][0x0][_0x59b326(0xe0)];return _0x309a65(_0x3a51e8(_0x5cbe22,_0x5a0d5e?_0x59b326(0xea):_0x59b326(0xb3)));}if(_0x59b326(0xef)==_0x2dac70[_0x59b326(0xb1)]){const _0xfbf616=_0x2dac70[_0x59b326(0x100)][0x0][_0x59b326(0xe0)];return _0x309a65(_0x3a51e8(_0x5cbe22,_0xfbf616?_0x59b326(0xba):_0x59b326(0xd8)));}}});}}
@@ -0,0 +1,22 @@
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/tablemergesplit
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import TrackChangesTable from './table.js';
10
+ /**
11
+ * Provides track changes plugin integration for {@link module:table/table~Table table feature} merging and splitting cells.
12
+ */
13
+ export default class TrackChangesTableMergeSplit extends Plugin {
14
+ /**
15
+ * @inheritDoc
16
+ */
17
+ static get requires(): readonly [typeof TrackChangesTable];
18
+ /**
19
+ * @inheritDoc
20
+ */
21
+ afterInit(): void;
22
+ }
@@ -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 _0x361c(_0x358bb1,_0x216835){const _0x222bbb=_0x222b();return _0x361c=function(_0x361c1a,_0x3caf0b){_0x361c1a=_0x361c1a-0x100;let _0x51f690=_0x222bbb[_0x361c1a];return _0x51f690;},_0x361c(_0x358bb1,_0x216835);}const _0x4dcc3a=_0x361c;(function(_0x4a1a41,_0x45b735){const _0x1184dd=_0x361c,_0x5554e0=_0x4a1a41();while(!![]){try{const _0x1a3b44=-parseInt(_0x1184dd(0x142))/0x1+parseInt(_0x1184dd(0x11c))/0x2*(parseInt(_0x1184dd(0x11d))/0x3)+parseInt(_0x1184dd(0x119))/0x4+parseInt(_0x1184dd(0x141))/0x5+-parseInt(_0x1184dd(0x14f))/0x6+parseInt(_0x1184dd(0x115))/0x7+-parseInt(_0x1184dd(0x12e))/0x8*(parseInt(_0x1184dd(0x126))/0x9);if(_0x1a3b44===_0x45b735)break;else _0x5554e0['push'](_0x5554e0['shift']());}catch(_0x220121){_0x5554e0['push'](_0x5554e0['shift']());}}}(_0x222b,0xadb12));import{Plugin as _0xb0ea04}from'ckeditor5/src/core.js';import _0x5dde14 from'./table.js';function _0x222b(){const _0x1b7fb6=['detach','mergeTableCellDown','createRangeOn','splitTableCellHorizontally','tableCell','TrackChangesEditing','markMultiRangeBlockFormat','6863654EDdZfE','registerCustomCallback','model','*Merge\x20cells*','3266216WfDwvD','registerDescriptionCallback','cell','1388vPKcTV','3225yUKrEg','low','getFirstPosition','mergeTableCells','has','_isForcedDefaultExecutionBlock','push','commands','return','4149Hfoyho','commandName','formatBlock','document','_areMergableCells','refresh','length','TableEditing','22768sJTtUL','filter','fromRange','getRanges','createTableWalker','editor','table','selection','TableUtils','markBlockFormat','element','findAncestor','formatInline','_areSelectedCellsMergable','_suggestionFactory','direction','getCellLocation','value','author','5958805ARmUNz','1290243kBfPoZ','map','horizontally','forceDefaultExecution','requires','afterInit','mergeTableCellLeft','mergeTableCellUp','find','plugins','setSelection','descriptionFactory','_acceptFormatSuggestionCallbackFactory','2527176qfjabE','deletion','rootName','splitTableCellVertically','isEnabled','isInContent','type','_tablePostFixingSubtypes','getSelectionAffectedTableCells','add','mergeTableCellRight','trackChanges','set:isEnabled','execute','format','accept','enableCommand','getAncestors','subType','*Split\x20cell:*\x20vertically','highest','stop','size','locale','getSuggestions','containsRange','from','insertion','*Split\x20cell:*\x20horizontally','get','root','$graveyard','change'];_0x222b=function(){return _0x1b7fb6;};return _0x222b();}import{LiveRange as _0xe1e12a}from'ckeditor5/src/engine.js';import{getTranslation as _0x152df1}from'../utils/common-translations.js';export default class vt extends _0xb0ea04{static get[_0x4dcc3a(0x146)](){return[_0x5dde14];}[_0x4dcc3a(0x147)](){const _0x324f29=_0x4dcc3a,_0x2c15da=this[_0x324f29(0x133)],_0x14bd32=_0x2c15da[_0x324f29(0x117)][_0x324f29(0x129)][_0x324f29(0x135)],_0x6d7822=_0x2c15da[_0x324f29(0x104)];if(!_0x2c15da[_0x324f29(0x14b)][_0x324f29(0x121)](_0x324f29(0x12d)))return;const _0x25c76e=_0x2c15da[_0x324f29(0x14b)][_0x324f29(0x10a)](_0x324f29(0x113)),_0x49de33=_0x2c15da[_0x324f29(0x14b)][_0x324f29(0x10a)](_0x324f29(0x136)),_0x19f41d=_0x2c15da[_0x324f29(0x14b)][_0x324f29(0x10a)](_0x5dde14);_0x19f41d[_0x324f29(0x156)][_0x324f29(0x123)](_0x324f29(0x120)),_0x25c76e[_0x324f29(0x15f)](_0x324f29(0x120),()=>{const _0x5cf26c=_0x324f29,_0x503b9c=_0x49de33[_0x5cf26c(0x157)](_0x2c15da[_0x5cf26c(0x117)][_0x5cf26c(0x129)][_0x5cf26c(0x135)]);_0x2c15da[_0x5cf26c(0x117)][_0x5cf26c(0x10d)](()=>{const _0x4d6360=_0x5cf26c;_0x25c76e[_0x4d6360(0x114)](_0x503b9c,{'commandName':_0x4d6360(0x120),'commandParams':[]},[],_0x4d6360(0x120));});}),_0x2c15da[_0x324f29(0x124)][_0x324f29(0x10a)](_0x324f29(0x120))['on'](_0x324f29(0x15c),(_0x3ee03b,_0x2fda37)=>{const _0x1cccb7=_0x324f29;_0x2c15da[_0x1cccb7(0x124)][_0x1cccb7(0x10a)](_0x1cccb7(0x15a))[_0x1cccb7(0x13f)]&&(_0x2fda37[_0x1cccb7(0x12c)]>0x0&&_0x2fda37[_0x2fda37[_0x1cccb7(0x12c)]-0x1]&&_0x2fda37[_0x2fda37[_0x1cccb7(0x12c)]-0x1][_0x1cccb7(0x145)]||_0x25c76e[_0x1cccb7(0x122)]||this[_0x1cccb7(0x13b)]()||_0x3ee03b[_0x1cccb7(0x102)]());},{'priority':_0x324f29(0x101)});for(const _0x36031d of[_0x324f29(0x149),_0x324f29(0x159),_0x324f29(0x10f),_0x324f29(0x148)]){const _0x43b1b6=_0x2c15da[_0x324f29(0x124)][_0x324f29(0x10a)](_0x36031d);_0x25c76e[_0x324f29(0x15f)](_0x36031d,()=>{const _0x257605=_0x324f29,_0x100b9d=_0x2c15da[_0x257605(0x117)][_0x257605(0x129)][_0x257605(0x135)][_0x257605(0x11f)]()[_0x257605(0x160)]()[_0x257605(0x14a)](_0x561416=>_0x561416['is'](_0x257605(0x138),_0x257605(0x112))),_0x3ca282=_0x43b1b6[_0x257605(0x13f)];_0x2c15da[_0x257605(0x117)][_0x257605(0x10d)](()=>{const _0x3d6ded=_0x257605;_0x25c76e[_0x3d6ded(0x114)]([_0x100b9d,_0x3ca282],{'commandName':_0x3d6ded(0x120),'commandParams':[]},[],_0x3d6ded(0x120));});});}for(const _0x528e3a of[_0x324f29(0x152),_0x324f29(0x111)]){const _0x1b0d52=_0x2c15da[_0x324f29(0x124)][_0x324f29(0x10a)](_0x528e3a);_0x25c76e[_0x324f29(0x15f)](_0x528e3a,()=>{const _0x3bc678=_0x324f29,_0x1ab845=_0x49de33[_0x3bc678(0x157)](_0x2c15da[_0x3bc678(0x117)][_0x3bc678(0x129)][_0x3bc678(0x135)])[0x0],_0x4c007d=_0x1ab845[_0x3bc678(0x139)](_0x3bc678(0x134)),{column:_0x3775a2,row:_0x2f997d}=_0x49de33[_0x3bc678(0x13e)](_0x1ab845);let _0x563c55=[];if(_0x3bc678(0x144)==_0x1b0d52[_0x3bc678(0x13d)]){const _0x358810=_0x49de33[_0x3bc678(0x132)](_0x4c007d,{'startRow':_0x2f997d,'endRow':_0x2f997d,'includeAllSlots':!0x0});_0x563c55=Array[_0x3bc678(0x107)](_0x358810)[_0x3bc678(0x143)](_0x5f1eda=>_0x5f1eda[_0x3bc678(0x11b)]);}else{const _0x531895=_0x49de33[_0x3bc678(0x132)](_0x4c007d,{'column':_0x3775a2,'includeAllSlots':!0x0});_0x563c55=Array[_0x3bc678(0x107)](_0x531895)[_0x3bc678(0x143)](_0x1c48ca=>_0x1c48ca[_0x3bc678(0x11b)]);}_0x2c15da[_0x3bc678(0x117)][_0x3bc678(0x10d)](_0x321b96=>{const _0x3294da=_0x3bc678;_0x25c76e[_0x3294da(0x137)](_0x321b96[_0x3294da(0x110)](_0x1ab845),{'commandName':_0x528e3a,'commandParams':[]},_0x563c55,_0x528e3a);});});}_0x25c76e[_0x324f29(0x14d)][_0x324f29(0x11a)](_0x2e65aa=>{const _0x3fa1e9=_0x324f29;if(_0x3fa1e9(0x128)!=_0x2e65aa[_0x3fa1e9(0x155)]&&_0x3fa1e9(0x13a)!=_0x2e65aa[_0x3fa1e9(0x155)])return;const {data:_0x51ccd0}=_0x2e65aa;return _0x51ccd0&&_0x3fa1e9(0x120)==_0x51ccd0[_0x3fa1e9(0x127)]?{'type':_0x3fa1e9(0x15d),'content':_0x152df1(_0x6d7822,_0x3fa1e9(0x118))}:void 0x0;}),_0x25c76e[_0x324f29(0x14d)][_0x324f29(0x11a)](_0x559980=>{const _0x424822=_0x324f29;if(_0x424822(0x128)!=_0x559980[_0x424822(0x155)]&&_0x424822(0x13a)!=_0x559980[_0x424822(0x155)])return;const {data:_0x5255da}=_0x559980;return _0x5255da?_0x424822(0x152)==_0x5255da[_0x424822(0x127)]?{'type':_0x424822(0x15d),'content':_0x152df1(_0x6d7822,_0x424822(0x100))}:_0x424822(0x111)==_0x5255da[_0x424822(0x127)]?{'type':_0x424822(0x15d),'content':_0x152df1(_0x6d7822,_0x424822(0x109))}:void 0x0:void 0x0;});const _0x50b9f9=_0x19f41d[_0x324f29(0x14e)]();for(const _0x37a05d of[_0x324f29(0x149),_0x324f29(0x159),_0x324f29(0x10f),_0x324f29(0x148)])_0x25c76e[_0x324f29(0x13c)][_0x324f29(0x116)](_0x324f29(0x128),_0x37a05d,_0x324f29(0x15e),_0x50b9f9);for(const _0x41a040 of[_0x324f29(0x152),_0x324f29(0x111)])_0x25c76e[_0x324f29(0x13c)][_0x324f29(0x116)](_0x324f29(0x128),_0x41a040,_0x324f29(0x15e),_0x50b9f9);_0x25c76e[_0x324f29(0x13c)][_0x324f29(0x116)](_0x324f29(0x128),_0x324f29(0x120),_0x324f29(0x15e),_0x3929f1=>{const _0x1b4c7f=_0x324f29;_0x2c15da[_0x1b4c7f(0x117)][_0x1b4c7f(0x10d)](_0x10ee4e=>{const _0x37bd42=_0x1b4c7f,_0x127140=Array[_0x37bd42(0x107)](_0x14bd32[_0x37bd42(0x131)]())[_0x37bd42(0x143)](_0x43b6bf=>_0xe1e12a[_0x37bd42(0x130)](_0x43b6bf));_0x10ee4e[_0x37bd42(0x14c)](_0x3929f1),_0x2c15da[_0x37bd42(0x124)][_0x37bd42(0x10a)](_0x37bd42(0x120))[_0x37bd42(0x12b)](),_0x2c15da[_0x37bd42(0x15c)](_0x37bd42(0x120),{'forceDefaultExecution':!0x0});const _0x18ad33=_0x127140[_0x37bd42(0x12f)](_0x4c1ef8=>_0x37bd42(0x10c)!=_0x4c1ef8[_0x37bd42(0x10b)][_0x37bd42(0x151)]);_0x18ad33[_0x37bd42(0x12c)]>0x0&&_0x10ee4e[_0x37bd42(0x14c)](_0x18ad33);for(const _0x29a0d7 of _0x127140)_0x29a0d7[_0x37bd42(0x10e)]();});});for(const _0x27a2cf of[_0x324f29(0x149),_0x324f29(0x10f),_0x324f29(0x148),_0x324f29(0x159)]){const _0x4288d4=_0x2c15da[_0x324f29(0x124)][_0x324f29(0x10a)](_0x27a2cf);_0x4288d4['on'](_0x324f29(0x15b),(_0x5cde5b,_0xe9eb62,_0x3cfce4)=>{const _0x3d5dc8=_0x324f29;if(_0x3cfce4){const _0x4b7894=_0x2c15da[_0x3d5dc8(0x117)][_0x3d5dc8(0x129)][_0x3d5dc8(0x135)][_0x3d5dc8(0x11f)]()[_0x3d5dc8(0x160)]()[_0x3d5dc8(0x14a)](_0x4a423e=>_0x4a423e['is'](_0x3d5dc8(0x138),_0x3d5dc8(0x112)));this[_0x3d5dc8(0x12a)](_0x4288d4[_0x3d5dc8(0x13f)],_0x4b7894)||(_0x5cde5b[_0x3d5dc8(0x125)]=!0x1,_0x5cde5b[_0x3d5dc8(0x102)]());}},{'priority':_0x324f29(0x11e)});}}[_0x4dcc3a(0x13b)](){const _0x3ffd29=_0x4dcc3a,_0x27fb41=this[_0x3ffd29(0x133)][_0x3ffd29(0x124)][_0x3ffd29(0x10a)](_0x3ffd29(0x120)),_0x5089ff=this[_0x3ffd29(0x133)][_0x3ffd29(0x14b)][_0x3ffd29(0x10a)](_0x3ffd29(0x136));if(!_0x27fb41[_0x3ffd29(0x153)])return!0x1;const _0x43aa4a=_0x5089ff[_0x3ffd29(0x157)](this[_0x3ffd29(0x133)][_0x3ffd29(0x117)][_0x3ffd29(0x129)][_0x3ffd29(0x135)]);for(const _0x474b40 of _0x43aa4a)for(const _0x4b442e of _0x43aa4a)if(_0x474b40!=_0x4b442e&&!this[_0x3ffd29(0x12a)](_0x474b40,_0x4b442e))return!0x1;return!0x0;}[_0x4dcc3a(0x12a)](_0x5e9de3,_0x3938ec){const _0x16b346=_0x4dcc3a,_0xf761ba=this[_0x16b346(0x133)][_0x16b346(0x14b)][_0x16b346(0x10a)](_0x16b346(0x113)),_0x45d097=this[_0x16b346(0x133)][_0x16b346(0x117)][_0x16b346(0x110)](_0x5e9de3),_0x51a4ee=this[_0x16b346(0x133)][_0x16b346(0x117)][_0x16b346(0x110)](_0x3938ec),_0x2166e6=new Set(),_0x51accd=new Set();for(const _0xfce47e of _0xf761ba[_0x16b346(0x105)]())if((_0x16b346(0x108)==_0xfce47e[_0x16b346(0x155)]||_0x16b346(0x150)==_0xfce47e[_0x16b346(0x155)]||_0x16b346(0x120)==_0xfce47e[_0x16b346(0x161)])&&_0xfce47e[_0x16b346(0x154)]){for(const _0x1f60af of _0xfce47e[_0x16b346(0x131)]())_0x1f60af[_0x16b346(0x106)](_0x45d097,!0x0)&&_0x2166e6[_0x16b346(0x158)](_0xfce47e[_0x16b346(0x155)]+':'+_0xfce47e[_0x16b346(0x140)]['id']),_0x1f60af[_0x16b346(0x106)](_0x51a4ee,!0x0)&&_0x51accd[_0x16b346(0x158)](_0xfce47e[_0x16b346(0x155)]+':'+_0xfce47e[_0x16b346(0x140)]['id']);}if(_0x2166e6[_0x16b346(0x103)]!=_0x51accd[_0x16b346(0x103)])return!0x1;for(const _0x42513c of _0x2166e6)if(!_0x51accd[_0x16b346(0x121)](_0x42513c))return!0x1;return!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/tableofcontents
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for the Table of contents feature.
11
+ */
12
+ export default class TrackChangesTableOfContents 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 _0x51ac49=_0xa151;(function(_0x14549b,_0x4319a9){const _0x7b43b0=_0xa151,_0x8016bd=_0x14549b();while(!![]){try{const _0x59b563=parseInt(_0x7b43b0(0x1d0))/0x1*(-parseInt(_0x7b43b0(0x1cf))/0x2)+parseInt(_0x7b43b0(0x1cb))/0x3+-parseInt(_0x7b43b0(0x1dc))/0x4*(parseInt(_0x7b43b0(0x1cc))/0x5)+parseInt(_0x7b43b0(0x1e2))/0x6+-parseInt(_0x7b43b0(0x1d9))/0x7*(-parseInt(_0x7b43b0(0x1e1))/0x8)+parseInt(_0x7b43b0(0x1d1))/0x9+-parseInt(_0x7b43b0(0x1da))/0xa*(parseInt(_0x7b43b0(0x1d2))/0xb);if(_0x59b563===_0x4319a9)break;else _0x8016bd['push'](_0x8016bd['shift']());}catch(_0x1284d2){_0x8016bd['push'](_0x8016bd['shift']());}}}(_0x4502,0xefc4a));function _0x4502(){const _0x54fc21=['ELEMENT_TABLE_OF_CONTENTS','317816cZbrWP','11357184MIzxKo','4334673VZbXhW','108535llFAsR','registerElementLabel','descriptionFactory','2580938RoLsNo','1BKSmPI','11189457BGtGoG','3091uNHsif','editor','TrackChangesEditing','locale','plugins','enableCommand','get','343KdXdoI','87310JFHeBa','commands','332tdnbHh','afterInit','tableOfContents','insertTableOfContents'];_0x4502=function(){return _0x54fc21;};return _0x4502();}import{Plugin as _0x6f85f6}from'ckeditor5/src/core.js';function _0xa151(_0x36898e,_0x3e57a2){const _0x45025f=_0x4502();return _0xa151=function(_0xa151b2,_0x2f1649){_0xa151b2=_0xa151b2-0x1cb;let _0x47516b=_0x45025f[_0xa151b2];return _0x47516b;},_0xa151(_0x36898e,_0x3e57a2);}import{getTranslation as _0x22c75d}from'../utils/common-translations.js';export default class Mt extends _0x6f85f6{[_0x51ac49(0x1dd)](){const _0x464444=_0x51ac49,_0x664983=this[_0x464444(0x1d3)];if(!_0x664983[_0x464444(0x1db)][_0x464444(0x1d8)](_0x464444(0x1df)))return;_0x664983[_0x464444(0x1d6)][_0x464444(0x1d8)](_0x464444(0x1d4))[_0x464444(0x1d7)](_0x464444(0x1df));const _0x4b44f7=_0x664983[_0x464444(0x1d6)][_0x464444(0x1d8)](_0x464444(0x1d4)),_0x4570ba=_0x664983[_0x464444(0x1d5)];_0x4b44f7[_0x464444(0x1ce)][_0x464444(0x1cd)](_0x464444(0x1de),_0x5b33b0=>_0x22c75d(_0x4570ba,_0x464444(0x1e0),_0x5b33b0));}}
@@ -0,0 +1,35 @@
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/tableproperties
7
+ */
8
+ import { Plugin, type Editor } from 'ckeditor5/src/core.js';
9
+ import type { Range } from 'ckeditor5/src/engine.js';
10
+ import type { default as Suggestion } from '../suggestion.js';
11
+ import type { Description } from '../suggestiondescriptionfactory.js';
12
+ /**
13
+ * Provides track changes plugin integration for table properties feature.
14
+ */
15
+ export default class TrackChangesTableProperties extends Plugin {
16
+ constructor(editor: Editor);
17
+ /**
18
+ * @inheritDoc
19
+ */
20
+ static get pluginName(): "TrackChangesTableProperties";
21
+ /**
22
+ * @inheritDoc
23
+ */
24
+ static get isOfficialPlugin(): true;
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ static get isPremiumPlugin(): true;
29
+ /**
30
+ * @inheritDoc
31
+ */
32
+ afterInit(): void;
33
+ handleDiscardAction(properties: Array<string>, ranges: Array<Range>, data: any): void;
34
+ handleSuggestionDescription(suggestion: Suggestion): Description | undefined;
35
+ }
@@ -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 _0x1feb48=_0x3cfe;(function(_0x2a705f,_0x28b9ec){const _0x537280=_0x3cfe,_0x9f7d=_0x2a705f();while(!![]){try{const _0x1dc5ea=parseInt(_0x537280(0x211))/0x1+parseInt(_0x537280(0x1ed))/0x2*(parseInt(_0x537280(0x1cb))/0x3)+-parseInt(_0x537280(0x1f4))/0x4+-parseInt(_0x537280(0x1ef))/0x5*(parseInt(_0x537280(0x200))/0x6)+parseInt(_0x537280(0x20a))/0x7+-parseInt(_0x537280(0x20d))/0x8+parseInt(_0x537280(0x206))/0x9;if(_0x1dc5ea===_0x28b9ec)break;else _0x9f7d['push'](_0x9f7d['shift']());}catch(_0x3b18cc){_0x9f7d['push'](_0x9f7d['shift']());}}}(_0x2bcb,0x8bffe));import{Plugin as _0x48cedf}from'ckeditor5/src/core.js';function _0x2bcb(){const _0x14ee3c=['tableCellWidth','TableCellPropertiesEditing','findAncestor','tableCellVerticalAlignment','tableBackgroundColor','tableProperties','discard','removeAttribute','getAttribute','enqueueChange','tableAlignment','tableCellBorderWidth','has','start','tableHeight','TrackChangesTableProperties','handleSuggestionDescription','tableCellHorizontalAlignment','data','getFirstPosition','format','pluginName','getSuggestionCallback','change','_getSuggestion','formatBlock','get','getContainedElement','tableCellBorderStyle','afterInit','260218woLBUN','isPremiumPlugin','5ZbBinl','plugins','setAttribute','join','editor','4064980sdhiRN','tableCellBorderColor','batch','tableCellBackgroundColor','TableUtils','_handlePropertyChange','model','*Format:*\x20change\x20table\x20cell\x20properties','descriptionFactory','commandParams','accept','registerCustomCallback','1564764AZGbDM','tableCellProperties','getSuggestions','tableWidth','TablePropertiesEditing','tableBorderColor','890721IgBnPP','tableCellHeight','getSelectionAffectedTableCells','tableCellPadding','4515861HBYMJC','locale','registerDescriptionCallback','1571064KXACna','selection','TrackChangesEditing','isOfficialPlugin','912441GcsYwx','subType','tableBorderWidth','tableBorderStyle','enableCommand','_suggestionFactory','markBlockFormat','handleDiscardAction','document','9FHvAol','nodeAfter','table','*Format:*\x20change\x20table\x20properties'];_0x2bcb=function(){return _0x14ee3c;};return _0x2bcb();}function _0x3cfe(_0x3a508a,_0x231d8d){const _0x2bcbb6=_0x2bcb();return _0x3cfe=function(_0x3cfe7b,_0x3bde76){_0x3cfe7b=_0x3cfe7b-0x1cb;let _0x97a537=_0x2bcbb6[_0x3cfe7b];return _0x97a537;},_0x3cfe(_0x3a508a,_0x231d8d);}import{getTranslation as _0x3535b7}from'../utils/common-translations.js';export default class Rt extends _0x48cedf{constructor(_0x5a7b34){const _0x2f417e=_0x3cfe;super(_0x5a7b34),this[_0x2f417e(0x1d4)]=[_0x2f417e(0x205),_0x2f417e(0x214),_0x2f417e(0x213),_0x2f417e(0x1d9),_0x2f417e(0x203),_0x2f417e(0x1dd),_0x2f417e(0x1d3)],this[_0x2f417e(0x201)]=[_0x2f417e(0x1f5),_0x2f417e(0x1eb),_0x2f417e(0x1da),_0x2f417e(0x209),_0x2f417e(0x1cf),_0x2f417e(0x207),_0x2f417e(0x1f7),_0x2f417e(0x1e0),_0x2f417e(0x1d2)];}static get[_0x1feb48(0x1e4)](){const _0x4ad5a8=_0x1feb48;return _0x4ad5a8(0x1de);}static get[_0x1feb48(0x210)](){return!0x0;}static get[_0x1feb48(0x1ee)](){return!0x0;}[_0x1feb48(0x1ec)](){const _0x5e9dc3=_0x1feb48,_0x201cef=this[_0x5e9dc3(0x1f3)][_0x5e9dc3(0x1f0)][_0x5e9dc3(0x1e9)](_0x5e9dc3(0x20f));if(this[_0x5e9dc3(0x1f3)][_0x5e9dc3(0x1f0)][_0x5e9dc3(0x1db)](_0x5e9dc3(0x204))){for(const _0x446ef0 of this[_0x5e9dc3(0x1d4)])_0x201cef[_0x5e9dc3(0x215)](_0x446ef0,(_0x9209fa,_0x312bc4)=>{const _0x261c4f=_0x5e9dc3,_0x5e285a=this[_0x261c4f(0x1f3)][_0x261c4f(0x1fa)][_0x261c4f(0x219)][_0x261c4f(0x20e)][_0x261c4f(0x1e2)]()[_0x261c4f(0x1d1)](_0x261c4f(0x1cd));this[_0x261c4f(0x1f9)](_0x446ef0,[_0x5e285a],this[_0x261c4f(0x1d4)],_0x261c4f(0x1d4),_0x9209fa,_0x312bc4);});_0x201cef[_0x5e9dc3(0x216)][_0x5e9dc3(0x1ff)](_0x5e9dc3(0x1e8),_0x5e9dc3(0x1d4),_0x5e9dc3(0x1fe),_0x201cef[_0x5e9dc3(0x216)][_0x5e9dc3(0x1e5)](_0x5e9dc3(0x1e8),null,_0x5e9dc3(0x1d5))),_0x201cef[_0x5e9dc3(0x216)][_0x5e9dc3(0x1ff)](_0x5e9dc3(0x1e8),_0x5e9dc3(0x1d4),_0x5e9dc3(0x1d5),(_0x3570da,_0x156b27)=>this[_0x5e9dc3(0x218)](this[_0x5e9dc3(0x1d4)],_0x3570da,_0x156b27)),_0x201cef[_0x5e9dc3(0x216)][_0x5e9dc3(0x1ff)](_0x5e9dc3(0x1e8),_0x5e9dc3(0x1d4),_0x5e9dc3(0x1f2),()=>!0x1);}if(this[_0x5e9dc3(0x1f3)][_0x5e9dc3(0x1f0)][_0x5e9dc3(0x1db)](_0x5e9dc3(0x1d0))){for(const _0x7fdf76 of this[_0x5e9dc3(0x201)])_0x201cef[_0x5e9dc3(0x215)](_0x7fdf76,(_0x1a3099,_0x4249cd)=>{const _0x19f4ee=_0x5e9dc3,_0x2d3538=this[_0x19f4ee(0x1f3)][_0x19f4ee(0x1f0)][_0x19f4ee(0x1e9)](_0x19f4ee(0x1f8))[_0x19f4ee(0x208)](this[_0x19f4ee(0x1f3)][_0x19f4ee(0x1fa)][_0x19f4ee(0x219)][_0x19f4ee(0x20e)]);this[_0x19f4ee(0x1f9)](_0x7fdf76,_0x2d3538,this[_0x19f4ee(0x201)],_0x19f4ee(0x201),_0x1a3099,_0x4249cd);});_0x201cef[_0x5e9dc3(0x216)][_0x5e9dc3(0x1ff)](_0x5e9dc3(0x1e8),_0x5e9dc3(0x201),_0x5e9dc3(0x1fe),_0x201cef[_0x5e9dc3(0x216)][_0x5e9dc3(0x1e5)](_0x5e9dc3(0x1e8),null,_0x5e9dc3(0x1d5))),_0x201cef[_0x5e9dc3(0x216)][_0x5e9dc3(0x1ff)](_0x5e9dc3(0x1e8),_0x5e9dc3(0x201),_0x5e9dc3(0x1d5),(_0x528ed5,_0x398ee8)=>this[_0x5e9dc3(0x218)](this[_0x5e9dc3(0x201)],_0x528ed5,_0x398ee8)),_0x201cef[_0x5e9dc3(0x216)][_0x5e9dc3(0x1ff)](_0x5e9dc3(0x1e8),_0x5e9dc3(0x201),_0x5e9dc3(0x1f2),()=>!0x1);}_0x201cef[_0x5e9dc3(0x1fc)][_0x5e9dc3(0x20c)](_0x19ff83=>this[_0x5e9dc3(0x1df)](_0x19ff83));}[_0x1feb48(0x1f9)](_0x530080,_0x1d3ff6,_0x1f9879,_0x3e53f0,_0x46feb8,_0x3e5c5f){const _0x1861a7=_0x1feb48,_0x3a0caa=this[_0x1861a7(0x1f3)][_0x1861a7(0x1f0)][_0x1861a7(0x1e9)](_0x1861a7(0x20f));this[_0x1861a7(0x1f3)][_0x1861a7(0x1fa)][_0x1861a7(0x1d8)](_0x3e5c5f[_0x1861a7(0x1f6)],()=>{const _0xfb0f12=_0x1861a7;for(const _0x2df1fc of _0x1d3ff6){if(this[_0xfb0f12(0x1e7)](_0x2df1fc,_0x3e53f0))_0x46feb8(_0x3e5c5f);else{const _0x5edbfe={};for(const _0x18bc75 of _0x1f9879){const _0x1318aa=_0x2df1fc[_0xfb0f12(0x1d7)](_0x18bc75);void 0x0!==_0x1318aa&&(_0x5edbfe[_0x18bc75]=_0x1318aa);}_0x46feb8(_0x3e5c5f),_0x3a0caa[_0xfb0f12(0x217)](_0x2df1fc,{'commandParams':[_0x5edbfe]},[],_0x3e53f0);}}});}[_0x1feb48(0x218)](_0x3facf0,_0x554b2e,_0x174992){const _0x922121=_0x1feb48,_0x36abc2=_0x554b2e[0x0][_0x922121(0x1dc)][_0x922121(0x1cc)],_0x2ad577=_0x174992[_0x922121(0x1fd)][0x0];this[_0x922121(0x1f3)][_0x922121(0x1fa)][_0x922121(0x1e6)](_0x1a0492=>{const _0xa17cd3=_0x922121;for(const _0x307142 of _0x3facf0)void 0x0!==_0x2ad577[_0x307142]?_0x1a0492[_0xa17cd3(0x1f1)](_0x307142,_0x2ad577[_0x307142],_0x36abc2):_0x1a0492[_0xa17cd3(0x1d6)](_0x307142,_0x36abc2);});}[_0x1feb48(0x1df)](_0x4e8185){const _0x13b0bd=_0x1feb48;if(_0x4e8185[_0x13b0bd(0x1e1)])switch(_0x4e8185[_0x13b0bd(0x212)]){case _0x13b0bd(0x1d4):return{'type':_0x13b0bd(0x1e3),'content':_0x3535b7(this[_0x13b0bd(0x1f3)][_0x13b0bd(0x20b)],_0x13b0bd(0x1ce))};case _0x13b0bd(0x201):return{'type':_0x13b0bd(0x1e3),'content':_0x3535b7(this[_0x13b0bd(0x1f3)][_0x13b0bd(0x20b)],_0x13b0bd(0x1fb))};}}[_0x1feb48(0x1e7)](_0x1bf60b,_0xb3b374){const _0x37fb26=_0x1feb48,_0x347139=this[_0x37fb26(0x1f3)][_0x37fb26(0x1f0)][_0x37fb26(0x1e9)](_0x37fb26(0x20f));for(const _0xfc0e65 of _0x347139[_0x37fb26(0x202)]({'skipNotAttached':!0x0})){const _0x39fcec=_0xfc0e65[_0x37fb26(0x1ea)]();if(_0xfc0e65[_0x37fb26(0x212)]===_0xb3b374&&_0x39fcec===_0x1bf60b)return _0xfc0e65;}return null;}}
@@ -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/template
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ /**
10
+ * Provides track changes plugin integration for template feature.
11
+ */
12
+ export default class TrackChangesTemplate extends Plugin {
13
+ /**
14
+ * @inheritDoc
15
+ */
16
+ afterInit(): void;
17
+ }