@atlaskit/adf-schema 51.5.1 → 51.5.3

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 (573) hide show
  1. package/CHANGELOG.md +764 -424
  2. package/README.md +5 -0
  3. package/codemods/23.0.0-move-bitbucket-schema-to-own-entry-points.ts +1 -3
  4. package/codemods/23.0.0-move-confluence-schema-to-own-entry-points.ts +1 -3
  5. package/codemods/migrates/update-bitbucket-schema-entry-points.ts +5 -5
  6. package/codemods/migrates/update-confluence-schema-entry-points.ts +10 -10
  7. package/codemods/migrates/update-default-schema-entry-points.ts +15 -15
  8. package/codemods/migrates/update-jira-schema-entry-points.ts +60 -60
  9. package/dist/cjs/next-schema/groups/nonNestableBlockContentGroup.js +1 -1
  10. package/dist/cjs/next-schema/marks/link.js +1 -1
  11. package/dist/cjs/schema/bitbucket-schema.js +1 -0
  12. package/dist/cjs/schema/confluence-schema.js +2 -0
  13. package/dist/cjs/schema/create-schema.js +0 -2
  14. package/dist/cjs/schema/createPMSpecFactory.js +2 -0
  15. package/dist/cjs/schema/inline-nodes.js +3 -0
  16. package/dist/cjs/schema/jira-schema.js +2 -0
  17. package/dist/cjs/schema/marks/annotation.js +6 -5
  18. package/dist/cjs/schema/marks/background-color.js +2 -0
  19. package/dist/cjs/schema/marks/border.js +1 -0
  20. package/dist/cjs/schema/marks/breakout.js +2 -0
  21. package/dist/cjs/schema/marks/indentation.js +1 -0
  22. package/dist/cjs/schema/marks/link.js +4 -0
  23. package/dist/cjs/schema/marks/strong.js +5 -1
  24. package/dist/cjs/schema/marks/text-color.js +2 -0
  25. package/dist/cjs/schema/nodes/block-card.js +4 -1
  26. package/dist/cjs/schema/nodes/bodied-extension.js +1 -0
  27. package/dist/cjs/schema/nodes/bodied-sync-block.js +1 -0
  28. package/dist/cjs/schema/nodes/caption.js +4 -2
  29. package/dist/cjs/schema/nodes/code-block.js +33 -8
  30. package/dist/cjs/schema/nodes/confluence-jira-issue.js +1 -0
  31. package/dist/cjs/schema/nodes/confluence-unsupported-block.js +1 -0
  32. package/dist/cjs/schema/nodes/confluence-unsupported-inline.js +1 -0
  33. package/dist/cjs/schema/nodes/date.js +2 -0
  34. package/dist/cjs/schema/nodes/decision-item.js +1 -0
  35. package/dist/cjs/schema/nodes/embed-card.js +18 -4
  36. package/dist/cjs/schema/nodes/emoji.js +20 -0
  37. package/dist/cjs/schema/nodes/expand.js +1 -0
  38. package/dist/cjs/schema/nodes/extension.js +1 -0
  39. package/dist/cjs/schema/nodes/heading.js +3 -2
  40. package/dist/cjs/schema/nodes/image.js +1 -0
  41. package/dist/cjs/schema/nodes/inline-extension.js +1 -0
  42. package/dist/cjs/schema/nodes/layout-column.js +6 -2
  43. package/dist/cjs/schema/nodes/media-group.js +1 -1
  44. package/dist/cjs/schema/nodes/media-single.js +1 -0
  45. package/dist/cjs/schema/nodes/media.js +25 -16
  46. package/dist/cjs/schema/nodes/mention.js +5 -0
  47. package/dist/cjs/schema/nodes/nested-expand.js +2 -1
  48. package/dist/cjs/schema/nodes/ordered-list.js +3 -0
  49. package/dist/cjs/schema/nodes/panel.js +6 -0
  50. package/dist/cjs/schema/nodes/paragraph.js +1 -0
  51. package/dist/cjs/schema/nodes/placeholder.js +6 -2
  52. package/dist/cjs/schema/nodes/status.js +3 -0
  53. package/dist/cjs/schema/nodes/sync-block.js +1 -0
  54. package/dist/cjs/schema/nodes/tableNodes.js +32 -15
  55. package/dist/cjs/schema/nodes/task-item.js +2 -0
  56. package/dist/cjs/schema/nodes/unsupported-block.js +1 -0
  57. package/dist/cjs/schema/nodes/unsupported-inline.js +1 -0
  58. package/dist/cjs/schema/sanitizeNodes.js +11 -6
  59. package/dist/cjs/steps/analytics.js +1 -1
  60. package/dist/cjs/steps/batch-attrs-step.js +1 -1
  61. package/dist/cjs/utils/colors.js +21 -8
  62. package/dist/cjs/utils/editor-palette.js +7 -0
  63. package/dist/cjs/utils/lch-color-inversion.js +11 -5
  64. package/dist/cjs/utils/url.js +9 -6
  65. package/dist/cjs/utils/uuid.js +7 -7
  66. package/dist/es2019/index.js +4 -1
  67. package/dist/es2019/json-schema/index.js +1 -0
  68. package/dist/es2019/next-schema/groups/nonNestableBlockContentGroup.js +1 -1
  69. package/dist/es2019/next-schema/index.js +1 -0
  70. package/dist/es2019/next-schema/marks/alignmentAndIndentation.js +1 -2
  71. package/dist/es2019/next-schema/marks/color.js +1 -2
  72. package/dist/es2019/next-schema/marks/link.js +1 -1
  73. package/dist/es2019/schema/bitbucket-schema.js +1 -0
  74. package/dist/es2019/schema/confluence-schema.js +2 -0
  75. package/dist/es2019/schema/create-schema.js +0 -2
  76. package/dist/es2019/schema/createPMSpecFactory.js +2 -0
  77. package/dist/es2019/schema/index.js +4 -1
  78. package/dist/es2019/schema/inline-nodes.js +3 -0
  79. package/dist/es2019/schema/jira-schema.js +1 -0
  80. package/dist/es2019/schema/marks/annotation.js +7 -5
  81. package/dist/es2019/schema/marks/background-color.js +3 -1
  82. package/dist/es2019/schema/marks/border.js +1 -0
  83. package/dist/es2019/schema/marks/breakout.js +2 -0
  84. package/dist/es2019/schema/marks/indentation.js +1 -0
  85. package/dist/es2019/schema/marks/index.js +1 -0
  86. package/dist/es2019/schema/marks/link.js +4 -0
  87. package/dist/es2019/schema/marks/strong.js +5 -1
  88. package/dist/es2019/schema/marks/text-color.js +3 -1
  89. package/dist/es2019/schema/nodes/block-card.js +4 -1
  90. package/dist/es2019/schema/nodes/blockquote.js +1 -2
  91. package/dist/es2019/schema/nodes/bodied-extension.js +1 -0
  92. package/dist/es2019/schema/nodes/bodied-sync-block.js +1 -0
  93. package/dist/es2019/schema/nodes/caption.js +4 -2
  94. package/dist/es2019/schema/nodes/code-block.js +34 -9
  95. package/dist/es2019/schema/nodes/confluence-jira-issue.js +1 -0
  96. package/dist/es2019/schema/nodes/confluence-unsupported-block.js +1 -0
  97. package/dist/es2019/schema/nodes/confluence-unsupported-inline.js +1 -0
  98. package/dist/es2019/schema/nodes/date.js +2 -0
  99. package/dist/es2019/schema/nodes/decision-item.js +1 -0
  100. package/dist/es2019/schema/nodes/embed-card.js +18 -4
  101. package/dist/es2019/schema/nodes/emoji.js +20 -0
  102. package/dist/es2019/schema/nodes/expand.js +1 -0
  103. package/dist/es2019/schema/nodes/extension.js +1 -0
  104. package/dist/es2019/schema/nodes/heading.js +6 -7
  105. package/dist/es2019/schema/nodes/image.js +1 -0
  106. package/dist/es2019/schema/nodes/index.js +1 -0
  107. package/dist/es2019/schema/nodes/inline-extension.js +1 -0
  108. package/dist/es2019/schema/nodes/layout-column.js +6 -2
  109. package/dist/es2019/schema/nodes/layout-section.js +1 -2
  110. package/dist/es2019/schema/nodes/media-group.js +1 -1
  111. package/dist/es2019/schema/nodes/media-single.js +1 -0
  112. package/dist/es2019/schema/nodes/media.js +22 -15
  113. package/dist/es2019/schema/nodes/mention.js +5 -0
  114. package/dist/es2019/schema/nodes/multi-bodied-extension.js +1 -2
  115. package/dist/es2019/schema/nodes/nested-expand.js +2 -1
  116. package/dist/es2019/schema/nodes/ordered-list.js +3 -0
  117. package/dist/es2019/schema/nodes/panel.js +6 -0
  118. package/dist/es2019/schema/nodes/paragraph.js +1 -0
  119. package/dist/es2019/schema/nodes/placeholder.js +6 -2
  120. package/dist/es2019/schema/nodes/status.js +4 -1
  121. package/dist/es2019/schema/nodes/sync-block.js +1 -0
  122. package/dist/es2019/schema/nodes/tableNodes.js +22 -8
  123. package/dist/es2019/schema/nodes/task-item.js +2 -0
  124. package/dist/es2019/schema/nodes/unsupported-block.js +1 -0
  125. package/dist/es2019/schema/nodes/unsupported-inline.js +1 -0
  126. package/dist/es2019/schema/sanitizeNodes.js +11 -6
  127. package/dist/es2019/steps/analytics.js +1 -1
  128. package/dist/es2019/steps/batch-attrs-step.js +1 -1
  129. package/dist/es2019/steps/set-attrs.js +5 -5
  130. package/dist/es2019/steps.js +1 -0
  131. package/dist/es2019/utils/colors.js +23 -9
  132. package/dist/es2019/utils/editor-palette.js +6 -0
  133. package/dist/es2019/utils/index.js +1 -0
  134. package/dist/es2019/utils/lch-color-inversion.js +8 -3
  135. package/dist/es2019/utils/url.js +9 -6
  136. package/dist/es2019/utils/uuid.js +3 -4
  137. package/dist/esm/index.js +4 -1
  138. package/dist/esm/json-schema/index.js +1 -0
  139. package/dist/esm/next-schema/groups/nonNestableBlockContentGroup.js +1 -1
  140. package/dist/esm/next-schema/index.js +1 -0
  141. package/dist/esm/next-schema/marks/alignmentAndIndentation.js +1 -2
  142. package/dist/esm/next-schema/marks/color.js +1 -2
  143. package/dist/esm/next-schema/marks/link.js +1 -1
  144. package/dist/esm/schema/bitbucket-schema.js +1 -0
  145. package/dist/esm/schema/confluence-schema.js +2 -0
  146. package/dist/esm/schema/create-schema.js +0 -2
  147. package/dist/esm/schema/createPMSpecFactory.js +2 -0
  148. package/dist/esm/schema/index.js +4 -1
  149. package/dist/esm/schema/inline-nodes.js +3 -0
  150. package/dist/esm/schema/jira-schema.js +1 -0
  151. package/dist/esm/schema/marks/annotation.js +6 -5
  152. package/dist/esm/schema/marks/background-color.js +2 -0
  153. package/dist/esm/schema/marks/border.js +1 -0
  154. package/dist/esm/schema/marks/breakout.js +2 -0
  155. package/dist/esm/schema/marks/indentation.js +1 -0
  156. package/dist/esm/schema/marks/index.js +1 -0
  157. package/dist/esm/schema/marks/link.js +4 -0
  158. package/dist/esm/schema/marks/strong.js +5 -1
  159. package/dist/esm/schema/marks/text-color.js +2 -0
  160. package/dist/esm/schema/nodes/block-card.js +4 -1
  161. package/dist/esm/schema/nodes/blockquote.js +1 -2
  162. package/dist/esm/schema/nodes/bodied-extension.js +1 -0
  163. package/dist/esm/schema/nodes/bodied-sync-block.js +1 -0
  164. package/dist/esm/schema/nodes/caption.js +4 -2
  165. package/dist/esm/schema/nodes/code-block.js +33 -8
  166. package/dist/esm/schema/nodes/confluence-jira-issue.js +1 -0
  167. package/dist/esm/schema/nodes/confluence-unsupported-block.js +1 -0
  168. package/dist/esm/schema/nodes/confluence-unsupported-inline.js +1 -0
  169. package/dist/esm/schema/nodes/date.js +2 -0
  170. package/dist/esm/schema/nodes/decision-item.js +1 -0
  171. package/dist/esm/schema/nodes/embed-card.js +18 -4
  172. package/dist/esm/schema/nodes/emoji.js +20 -0
  173. package/dist/esm/schema/nodes/expand.js +1 -0
  174. package/dist/esm/schema/nodes/extension.js +1 -0
  175. package/dist/esm/schema/nodes/heading.js +3 -2
  176. package/dist/esm/schema/nodes/image.js +1 -0
  177. package/dist/esm/schema/nodes/index.js +1 -0
  178. package/dist/esm/schema/nodes/inline-extension.js +1 -0
  179. package/dist/esm/schema/nodes/layout-column.js +6 -2
  180. package/dist/esm/schema/nodes/layout-section.js +1 -2
  181. package/dist/esm/schema/nodes/media-group.js +1 -1
  182. package/dist/esm/schema/nodes/media-single.js +1 -0
  183. package/dist/esm/schema/nodes/media.js +26 -18
  184. package/dist/esm/schema/nodes/mention.js +5 -0
  185. package/dist/esm/schema/nodes/multi-bodied-extension.js +1 -2
  186. package/dist/esm/schema/nodes/nested-expand.js +2 -1
  187. package/dist/esm/schema/nodes/ordered-list.js +3 -0
  188. package/dist/esm/schema/nodes/panel.js +6 -0
  189. package/dist/esm/schema/nodes/paragraph.js +1 -0
  190. package/dist/esm/schema/nodes/placeholder.js +6 -2
  191. package/dist/esm/schema/nodes/status.js +3 -0
  192. package/dist/esm/schema/nodes/sync-block.js +1 -0
  193. package/dist/esm/schema/nodes/tableNodes.js +32 -15
  194. package/dist/esm/schema/nodes/task-item.js +2 -0
  195. package/dist/esm/schema/nodes/unsupported-block.js +1 -0
  196. package/dist/esm/schema/nodes/unsupported-inline.js +1 -0
  197. package/dist/esm/schema/sanitizeNodes.js +11 -6
  198. package/dist/esm/steps/analytics.js +1 -1
  199. package/dist/esm/steps/batch-attrs-step.js +1 -1
  200. package/dist/esm/steps.js +1 -0
  201. package/dist/esm/utils/colors.js +20 -8
  202. package/dist/esm/utils/editor-palette.js +6 -0
  203. package/dist/esm/utils/index.js +1 -0
  204. package/dist/esm/utils/lch-color-inversion.js +11 -5
  205. package/dist/esm/utils/url.js +9 -6
  206. package/dist/esm/utils/uuid.js +7 -7
  207. package/dist/json-schema/package.json +8 -1
  208. package/dist/types/next-schema/full-schema.adf.d.ts +1 -1
  209. package/dist/types/next-schema/generated/markTypes.d.ts +1 -1
  210. package/dist/types/next-schema/generated/nodeTypes.d.ts +3 -3
  211. package/dist/types/next-schema/groups/blockContentGroup.d.ts +1 -1
  212. package/dist/types/next-schema/groups/blockGroup.d.ts +1 -1
  213. package/dist/types/next-schema/groups/blockRootOnlyGroup.d.ts +1 -1
  214. package/dist/types/next-schema/groups/fontStyleGroup.d.ts +1 -1
  215. package/dist/types/next-schema/groups/inlineContentGroup.d.ts +1 -1
  216. package/dist/types/next-schema/groups/inlineGroup.d.ts +1 -1
  217. package/dist/types/next-schema/groups/linkMarkGroup.d.ts +1 -1
  218. package/dist/types/next-schema/groups/nonNestableBlockContentGroup.d.ts +6 -6
  219. package/dist/types/next-schema/groups/searchQueryMarkGroup.d.ts +1 -1
  220. package/dist/types/next-schema/groups/tableCellContentPseudoGroup.d.ts +7 -67
  221. package/dist/types/next-schema/marks/alignmentAndIndentation.d.ts +2 -2
  222. package/dist/types/next-schema/marks/annotation.d.ts +2 -2
  223. package/dist/types/next-schema/marks/border.d.ts +1 -1
  224. package/dist/types/next-schema/marks/breakout.d.ts +1 -1
  225. package/dist/types/next-schema/marks/code.d.ts +1 -1
  226. package/dist/types/next-schema/marks/color.d.ts +3 -3
  227. package/dist/types/next-schema/marks/confluenceInlineComment.d.ts +1 -1
  228. package/dist/types/next-schema/marks/dataConsumer.d.ts +1 -1
  229. package/dist/types/next-schema/marks/em.d.ts +1 -1
  230. package/dist/types/next-schema/marks/fragment.d.ts +1 -1
  231. package/dist/types/next-schema/marks/link.d.ts +1 -1
  232. package/dist/types/next-schema/marks/strike.d.ts +1 -1
  233. package/dist/types/next-schema/marks/strong.d.ts +1 -1
  234. package/dist/types/next-schema/marks/subsup.d.ts +1 -1
  235. package/dist/types/next-schema/marks/typeAheadQuery.d.ts +1 -1
  236. package/dist/types/next-schema/marks/underline.d.ts +1 -1
  237. package/dist/types/next-schema/marks/unsupportedMark.d.ts +1 -1
  238. package/dist/types/next-schema/marks/unsupportedNodeAttribute.d.ts +1 -1
  239. package/dist/types/next-schema/nodes/blockCard.d.ts +1 -1
  240. package/dist/types/next-schema/nodes/blockquote.d.ts +3 -3
  241. package/dist/types/next-schema/nodes/bodiedExtension.d.ts +4 -4
  242. package/dist/types/next-schema/nodes/bodiedSyncBlock.d.ts +1 -1
  243. package/dist/types/next-schema/nodes/caption.d.ts +1 -1
  244. package/dist/types/next-schema/nodes/codeBlock.d.ts +2 -2
  245. package/dist/types/next-schema/nodes/confluenceJiraIssue.d.ts +1 -1
  246. package/dist/types/next-schema/nodes/confluenceUnsupportedBlock.d.ts +1 -1
  247. package/dist/types/next-schema/nodes/confluenceUnsupportedInline.d.ts +1 -1
  248. package/dist/types/next-schema/nodes/date.d.ts +1 -1
  249. package/dist/types/next-schema/nodes/decisionItem.d.ts +1 -1
  250. package/dist/types/next-schema/nodes/decisionList.d.ts +1 -1
  251. package/dist/types/next-schema/nodes/embedCard.d.ts +1 -1
  252. package/dist/types/next-schema/nodes/emoji.d.ts +1 -1
  253. package/dist/types/next-schema/nodes/expand.d.ts +2 -2
  254. package/dist/types/next-schema/nodes/extension.d.ts +3 -3
  255. package/dist/types/next-schema/nodes/extensionFrame.d.ts +1 -1
  256. package/dist/types/next-schema/nodes/hardBreak.d.ts +1 -1
  257. package/dist/types/next-schema/nodes/heading.d.ts +20 -20
  258. package/dist/types/next-schema/nodes/image.d.ts +1 -1
  259. package/dist/types/next-schema/nodes/inlineCard.d.ts +2 -2
  260. package/dist/types/next-schema/nodes/inlineExtension.d.ts +2 -2
  261. package/dist/types/next-schema/nodes/layoutColumn.d.ts +1 -1
  262. package/dist/types/next-schema/nodes/layoutSection.d.ts +7 -7
  263. package/dist/types/next-schema/nodes/list.d.ts +2 -2
  264. package/dist/types/next-schema/nodes/media.d.ts +1 -1
  265. package/dist/types/next-schema/nodes/mediaGroup.d.ts +1 -1
  266. package/dist/types/next-schema/nodes/mediaInline.d.ts +1 -1
  267. package/dist/types/next-schema/nodes/mediaSingle.d.ts +10 -10
  268. package/dist/types/next-schema/nodes/mention.d.ts +1 -1
  269. package/dist/types/next-schema/nodes/multiBodiedExtension.d.ts +1 -1
  270. package/dist/types/next-schema/nodes/nestedExpand.d.ts +3 -3
  271. package/dist/types/next-schema/nodes/panel.d.ts +1 -1
  272. package/dist/types/next-schema/nodes/paragraph.d.ts +13 -13
  273. package/dist/types/next-schema/nodes/placeholder.d.ts +1 -1
  274. package/dist/types/next-schema/nodes/rule.d.ts +1 -1
  275. package/dist/types/next-schema/nodes/status.d.ts +1 -1
  276. package/dist/types/next-schema/nodes/syncBlock.d.ts +1 -1
  277. package/dist/types/next-schema/nodes/tableCellContent.d.ts +1 -1
  278. package/dist/types/next-schema/nodes/tableNodes.d.ts +1 -1
  279. package/dist/types/next-schema/nodes/task.d.ts +3 -3
  280. package/dist/types/next-schema/nodes/text.d.ts +5 -5
  281. package/dist/types/next-schema/nodes/unsupportedBlock.d.ts +1 -1
  282. package/dist/types/next-schema/nodes/unsupportedInline.d.ts +1 -1
  283. package/dist/types/schema/bitbucket-schema.d.ts +1 -1
  284. package/dist/types/schema/confluence-schema.d.ts +1 -1
  285. package/dist/types/schema/create-schema.d.ts +4 -3
  286. package/dist/types/schema/createPMSpecFactory.d.ts +3 -3
  287. package/dist/types/schema/default-schema.d.ts +1 -1
  288. package/dist/types/schema/index.d.ts +1 -1
  289. package/dist/types/schema/jira-schema.d.ts +8 -8
  290. package/dist/types/schema/marks/alignment.d.ts +2 -2
  291. package/dist/types/schema/marks/annotation.d.ts +5 -5
  292. package/dist/types/schema/marks/background-color.d.ts +3 -3
  293. package/dist/types/schema/marks/border.d.ts +6 -6
  294. package/dist/types/schema/marks/breakout.d.ts +2 -2
  295. package/dist/types/schema/marks/code.d.ts +1 -1
  296. package/dist/types/schema/marks/confluence-inline-comment.d.ts +2 -2
  297. package/dist/types/schema/marks/data-consumer.d.ts +2 -2
  298. package/dist/types/schema/marks/em.d.ts +1 -1
  299. package/dist/types/schema/marks/fragment.d.ts +2 -2
  300. package/dist/types/schema/marks/indentation.d.ts +2 -2
  301. package/dist/types/schema/marks/index.d.ts +3 -3
  302. package/dist/types/schema/marks/link.d.ts +12 -12
  303. package/dist/types/schema/marks/strike.d.ts +1 -1
  304. package/dist/types/schema/marks/strong.d.ts +1 -1
  305. package/dist/types/schema/marks/subsup.d.ts +2 -2
  306. package/dist/types/schema/marks/text-color.d.ts +2 -2
  307. package/dist/types/schema/marks/type-ahead-query.d.ts +1 -1
  308. package/dist/types/schema/marks/underline.d.ts +1 -1
  309. package/dist/types/schema/marks/unsupported-mark.d.ts +1 -1
  310. package/dist/types/schema/marks/unsupported-node-attributes.d.ts +1 -1
  311. package/dist/types/schema/nodes/block-card.d.ts +6 -6
  312. package/dist/types/schema/nodes/blockquote.d.ts +10 -11
  313. package/dist/types/schema/nodes/bodied-extension.d.ts +7 -7
  314. package/dist/types/schema/nodes/bodied-sync-block.d.ts +23 -24
  315. package/dist/types/schema/nodes/caption.d.ts +12 -12
  316. package/dist/types/schema/nodes/code-block.d.ts +7 -7
  317. package/dist/types/schema/nodes/date.d.ts +3 -3
  318. package/dist/types/schema/nodes/decision-item.d.ts +6 -6
  319. package/dist/types/schema/nodes/decision-list.d.ts +5 -5
  320. package/dist/types/schema/nodes/doc.d.ts +10 -10
  321. package/dist/types/schema/nodes/embed-card.d.ts +4 -4
  322. package/dist/types/schema/nodes/emoji.d.ts +3 -3
  323. package/dist/types/schema/nodes/expand.d.ts +7 -7
  324. package/dist/types/schema/nodes/extension.d.ts +5 -5
  325. package/dist/types/schema/nodes/heading.d.ts +9 -9
  326. package/dist/types/schema/nodes/index.d.ts +6 -6
  327. package/dist/types/schema/nodes/inline-card.d.ts +3 -3
  328. package/dist/types/schema/nodes/inline-extension.d.ts +5 -5
  329. package/dist/types/schema/nodes/layout-column.d.ts +3 -3
  330. package/dist/types/schema/nodes/layout-section.d.ts +9 -9
  331. package/dist/types/schema/nodes/media-group.d.ts +2 -2
  332. package/dist/types/schema/nodes/media-inline.d.ts +6 -6
  333. package/dist/types/schema/nodes/media-single.d.ts +10 -10
  334. package/dist/types/schema/nodes/media.d.ts +27 -27
  335. package/dist/types/schema/nodes/mention.d.ts +5 -5
  336. package/dist/types/schema/nodes/multi-bodied-extension.d.ts +21 -22
  337. package/dist/types/schema/nodes/nested-expand.d.ts +14 -14
  338. package/dist/types/schema/nodes/panel.d.ts +14 -15
  339. package/dist/types/schema/nodes/paragraph.d.ts +5 -5
  340. package/dist/types/schema/nodes/rule.d.ts +1 -1
  341. package/dist/types/schema/nodes/status.d.ts +6 -6
  342. package/dist/types/schema/nodes/sync-block.d.ts +7 -7
  343. package/dist/types/schema/nodes/tableNodes.d.ts +36 -37
  344. package/dist/types/schema/nodes/task-item.d.ts +13 -13
  345. package/dist/types/schema/nodes/task-list.d.ts +5 -5
  346. package/dist/types/schema/nodes/types/block-content.d.ts +17 -18
  347. package/dist/types/schema/nodes/types/inline-content.d.ts +12 -12
  348. package/dist/types/schema/nodes/types/list.d.ts +18 -18
  349. package/dist/types/schema/nodes/types/non-nestable-block-content.d.ts +15 -16
  350. package/dist/types/schema/nodes/unknown-block.d.ts +1 -1
  351. package/dist/types/schema/sanitizeNodes.d.ts +1 -1
  352. package/dist/types/steps/analytics.d.ts +4 -3
  353. package/dist/types/steps/batch-attrs-step.d.ts +4 -4
  354. package/dist/types/steps/link-meta-step.d.ts +7 -6
  355. package/dist/types/steps/override-document-step.d.ts +4 -4
  356. package/dist/types/steps/set-attrs.d.ts +4 -3
  357. package/dist/types/steps/type-ahead.d.ts +2 -2
  358. package/dist/types/utils/colors.d.ts +1 -1
  359. package/dist/types/utils/confluence/emoji.d.ts +1 -1
  360. package/dist/types/utils/extensions.d.ts +1 -1
  361. package/dist/types/utils/index.d.ts +1 -1
  362. package/dist/types/utils/url.d.ts +3 -3
  363. package/dist/types/validator-schema/generated/validatorSpec.d.ts +12 -12
  364. package/dist/types-ts4.5/index.d.ts +8 -0
  365. package/dist/types-ts4.5/next-schema/full-schema.adf.d.ts +4 -0
  366. package/dist/types-ts4.5/next-schema/generated/markTypes.d.ts +206 -0
  367. package/dist/types-ts4.5/next-schema/generated/nodeGroupTypes.d.ts +10 -0
  368. package/dist/types-ts4.5/next-schema/generated/nodeTypes.d.ts +976 -0
  369. package/dist/types-ts4.5/next-schema/groups/blockContentGroup.d.ts +12 -0
  370. package/dist/types-ts4.5/next-schema/groups/blockGroup.d.ts +1 -0
  371. package/dist/types-ts4.5/next-schema/groups/blockRootOnlyGroup.d.ts +1 -0
  372. package/dist/types-ts4.5/next-schema/groups/fontStyleGroup.d.ts +1 -0
  373. package/dist/types-ts4.5/next-schema/groups/inlineContentGroup.d.ts +10 -0
  374. package/dist/types-ts4.5/next-schema/groups/inlineGroup.d.ts +1 -0
  375. package/dist/types-ts4.5/next-schema/groups/linkMarkGroup.d.ts +1 -0
  376. package/dist/types-ts4.5/next-schema/groups/nonNestableBlockContentGroup.d.ts +30 -0
  377. package/dist/types-ts4.5/next-schema/groups/searchQueryMarkGroup.d.ts +1 -0
  378. package/dist/types-ts4.5/next-schema/groups/tableCellContentPseudoGroup.d.ts +26 -0
  379. package/dist/types-ts4.5/next-schema/index.d.ts +3 -0
  380. package/dist/types-ts4.5/next-schema/marks/alignmentAndIndentation.d.ts +2 -0
  381. package/dist/types-ts4.5/next-schema/marks/annotation.d.ts +2 -0
  382. package/dist/types-ts4.5/next-schema/marks/border.d.ts +1 -0
  383. package/dist/types-ts4.5/next-schema/marks/breakout.d.ts +1 -0
  384. package/dist/types-ts4.5/next-schema/marks/code.d.ts +1 -0
  385. package/dist/types-ts4.5/next-schema/marks/color.d.ts +3 -0
  386. package/dist/types-ts4.5/next-schema/marks/confluenceInlineComment.d.ts +1 -0
  387. package/dist/types-ts4.5/next-schema/marks/dataConsumer.d.ts +1 -0
  388. package/dist/types-ts4.5/next-schema/marks/em.d.ts +1 -0
  389. package/dist/types-ts4.5/next-schema/marks/fragment.d.ts +1 -0
  390. package/dist/types-ts4.5/next-schema/marks/link.d.ts +1 -0
  391. package/dist/types-ts4.5/next-schema/marks/strike.d.ts +1 -0
  392. package/dist/types-ts4.5/next-schema/marks/strong.d.ts +1 -0
  393. package/dist/types-ts4.5/next-schema/marks/subsup.d.ts +1 -0
  394. package/dist/types-ts4.5/next-schema/marks/typeAheadQuery.d.ts +1 -0
  395. package/dist/types-ts4.5/next-schema/marks/underline.d.ts +1 -0
  396. package/dist/types-ts4.5/next-schema/marks/unsupportedMark.d.ts +1 -0
  397. package/dist/types-ts4.5/next-schema/marks/unsupportedNodeAttribute.d.ts +1 -0
  398. package/dist/types-ts4.5/next-schema/nodes/blockCard.d.ts +3 -0
  399. package/dist/types-ts4.5/next-schema/nodes/blockquote.d.ts +14 -0
  400. package/dist/types-ts4.5/next-schema/nodes/bodiedExtension.d.ts +8 -0
  401. package/dist/types-ts4.5/next-schema/nodes/bodiedSyncBlock.d.ts +3 -0
  402. package/dist/types-ts4.5/next-schema/nodes/caption.d.ts +3 -0
  403. package/dist/types-ts4.5/next-schema/nodes/codeBlock.d.ts +8 -0
  404. package/dist/types-ts4.5/next-schema/nodes/confluenceJiraIssue.d.ts +3 -0
  405. package/dist/types-ts4.5/next-schema/nodes/confluenceUnsupportedBlock.d.ts +3 -0
  406. package/dist/types-ts4.5/next-schema/nodes/confluenceUnsupportedInline.d.ts +3 -0
  407. package/dist/types-ts4.5/next-schema/nodes/date.d.ts +3 -0
  408. package/dist/types-ts4.5/next-schema/nodes/decisionItem.d.ts +3 -0
  409. package/dist/types-ts4.5/next-schema/nodes/decisionList.d.ts +3 -0
  410. package/dist/types-ts4.5/next-schema/nodes/embedCard.d.ts +3 -0
  411. package/dist/types-ts4.5/next-schema/nodes/emoji.d.ts +3 -0
  412. package/dist/types-ts4.5/next-schema/nodes/expand.d.ts +8 -0
  413. package/dist/types-ts4.5/next-schema/nodes/extension.d.ts +7 -0
  414. package/dist/types-ts4.5/next-schema/nodes/extensionFrame.d.ts +3 -0
  415. package/dist/types-ts4.5/next-schema/nodes/hardBreak.d.ts +3 -0
  416. package/dist/types-ts4.5/next-schema/nodes/heading.d.ts +38 -0
  417. package/dist/types-ts4.5/next-schema/nodes/image.d.ts +3 -0
  418. package/dist/types-ts4.5/next-schema/nodes/inlineCard.d.ts +6 -0
  419. package/dist/types-ts4.5/next-schema/nodes/inlineExtension.d.ts +6 -0
  420. package/dist/types-ts4.5/next-schema/nodes/layoutColumn.d.ts +3 -0
  421. package/dist/types-ts4.5/next-schema/nodes/layoutSection.d.ts +25 -0
  422. package/dist/types-ts4.5/next-schema/nodes/list.d.ts +6 -0
  423. package/dist/types-ts4.5/next-schema/nodes/media.d.ts +3 -0
  424. package/dist/types-ts4.5/next-schema/nodes/mediaGroup.d.ts +3 -0
  425. package/dist/types-ts4.5/next-schema/nodes/mediaInline.d.ts +3 -0
  426. package/dist/types-ts4.5/next-schema/nodes/mediaSingle.d.ts +57 -0
  427. package/dist/types-ts4.5/next-schema/nodes/mention.d.ts +3 -0
  428. package/dist/types-ts4.5/next-schema/nodes/multiBodiedExtension.d.ts +3 -0
  429. package/dist/types-ts4.5/next-schema/nodes/nestedExpand.d.ts +11 -0
  430. package/dist/types-ts4.5/next-schema/nodes/panel.d.ts +3 -0
  431. package/dist/types-ts4.5/next-schema/nodes/paragraph.d.ts +24 -0
  432. package/dist/types-ts4.5/next-schema/nodes/placeholder.d.ts +3 -0
  433. package/dist/types-ts4.5/next-schema/nodes/rule.d.ts +3 -0
  434. package/dist/types-ts4.5/next-schema/nodes/status.d.ts +3 -0
  435. package/dist/types-ts4.5/next-schema/nodes/syncBlock.d.ts +3 -0
  436. package/dist/types-ts4.5/next-schema/nodes/tableCellContent.d.ts +3 -0
  437. package/dist/types-ts4.5/next-schema/nodes/tableNodes.d.ts +4 -0
  438. package/dist/types-ts4.5/next-schema/nodes/task.d.ts +9 -0
  439. package/dist/types-ts4.5/next-schema/nodes/text.d.ts +25 -0
  440. package/dist/types-ts4.5/next-schema/nodes/unsupportedBlock.d.ts +3 -0
  441. package/dist/types-ts4.5/next-schema/nodes/unsupportedInline.d.ts +3 -0
  442. package/dist/types-ts4.5/schema/bitbucket-schema.d.ts +5 -0
  443. package/dist/types-ts4.5/schema/confluence-schema.d.ts +9 -0
  444. package/dist/types-ts4.5/schema/create-schema.d.ts +27 -0
  445. package/dist/types-ts4.5/schema/createPMSpecFactory.d.ts +33 -0
  446. package/dist/types-ts4.5/schema/default-schema.d.ts +7 -0
  447. package/dist/types-ts4.5/schema/groups.d.ts +6 -0
  448. package/dist/types-ts4.5/schema/index.d.ts +12 -0
  449. package/dist/types-ts4.5/schema/inline-nodes.d.ts +1 -0
  450. package/dist/types-ts4.5/schema/jira-schema.d.ts +65 -0
  451. package/dist/types-ts4.5/schema/marks/alignment.d.ts +16 -0
  452. package/dist/types-ts4.5/schema/marks/annotation.d.ts +32 -0
  453. package/dist/types-ts4.5/schema/marks/background-color.d.ts +20 -0
  454. package/dist/types-ts4.5/schema/marks/border.d.ts +23 -0
  455. package/dist/types-ts4.5/schema/marks/breakout.d.ts +12 -0
  456. package/dist/types-ts4.5/schema/marks/code.d.ts +8 -0
  457. package/dist/types-ts4.5/schema/marks/confluence-inline-comment.d.ts +12 -0
  458. package/dist/types-ts4.5/schema/marks/data-consumer.d.ts +46 -0
  459. package/dist/types-ts4.5/schema/marks/em.d.ts +8 -0
  460. package/dist/types-ts4.5/schema/marks/fragment.d.ts +29 -0
  461. package/dist/types-ts4.5/schema/marks/indentation.d.ts +16 -0
  462. package/dist/types-ts4.5/schema/marks/index.d.ts +36 -0
  463. package/dist/types-ts4.5/schema/marks/link.d.ts +39 -0
  464. package/dist/types-ts4.5/schema/marks/strike.d.ts +8 -0
  465. package/dist/types-ts4.5/schema/marks/strong.d.ts +8 -0
  466. package/dist/types-ts4.5/schema/marks/subsup.d.ts +15 -0
  467. package/dist/types-ts4.5/schema/marks/text-color.d.ts +26 -0
  468. package/dist/types-ts4.5/schema/marks/type-ahead-query.d.ts +2 -0
  469. package/dist/types-ts4.5/schema/marks/underline.d.ts +8 -0
  470. package/dist/types-ts4.5/schema/marks/unsupported-mark.d.ts +2 -0
  471. package/dist/types-ts4.5/schema/marks/unsupported-node-attributes.d.ts +2 -0
  472. package/dist/types-ts4.5/schema/nodes/block-card.d.ts +44 -0
  473. package/dist/types-ts4.5/schema/nodes/blockquote.d.ts +27 -0
  474. package/dist/types-ts4.5/schema/nodes/bodied-extension.d.ts +23 -0
  475. package/dist/types-ts4.5/schema/nodes/bodied-sync-block.d.ts +43 -0
  476. package/dist/types-ts4.5/schema/nodes/bullet-list.d.ts +3 -0
  477. package/dist/types-ts4.5/schema/nodes/caption.d.ts +24 -0
  478. package/dist/types-ts4.5/schema/nodes/code-block.d.ts +31 -0
  479. package/dist/types-ts4.5/schema/nodes/confluence-jira-issue.d.ts +1 -0
  480. package/dist/types-ts4.5/schema/nodes/confluence-unsupported-block.d.ts +1 -0
  481. package/dist/types-ts4.5/schema/nodes/confluence-unsupported-inline.d.ts +1 -0
  482. package/dist/types-ts4.5/schema/nodes/date.d.ts +20 -0
  483. package/dist/types-ts4.5/schema/nodes/decision-item.d.ts +16 -0
  484. package/dist/types-ts4.5/schema/nodes/decision-list.d.ts +17 -0
  485. package/dist/types-ts4.5/schema/nodes/doc.d.ts +20 -0
  486. package/dist/types-ts4.5/schema/nodes/embed-card.d.ts +19 -0
  487. package/dist/types-ts4.5/schema/nodes/emoji.d.ts +20 -0
  488. package/dist/types-ts4.5/schema/nodes/expand.d.ts +34 -0
  489. package/dist/types-ts4.5/schema/nodes/extension.d.ts +17 -0
  490. package/dist/types-ts4.5/schema/nodes/hard-break.d.ts +10 -0
  491. package/dist/types-ts4.5/schema/nodes/heading.d.ts +39 -0
  492. package/dist/types-ts4.5/schema/nodes/image.d.ts +1 -0
  493. package/dist/types-ts4.5/schema/nodes/index.d.ts +98 -0
  494. package/dist/types-ts4.5/schema/nodes/inline-card.d.ts +15 -0
  495. package/dist/types-ts4.5/schema/nodes/inline-extension.d.ts +17 -0
  496. package/dist/types-ts4.5/schema/nodes/layout-column.d.ts +22 -0
  497. package/dist/types-ts4.5/schema/nodes/layout-section.d.ts +49 -0
  498. package/dist/types-ts4.5/schema/nodes/list-item.d.ts +12 -0
  499. package/dist/types-ts4.5/schema/nodes/media-group.d.ts +13 -0
  500. package/dist/types-ts4.5/schema/nodes/media-inline.d.ts +20 -0
  501. package/dist/types-ts4.5/schema/nodes/media-single.d.ts +69 -0
  502. package/dist/types-ts4.5/schema/nodes/media.d.ts +71 -0
  503. package/dist/types-ts4.5/schema/nodes/mention.d.ts +30 -0
  504. package/dist/types-ts4.5/schema/nodes/multi-bodied-extension.d.ts +50 -0
  505. package/dist/types-ts4.5/schema/nodes/nested-expand.d.ts +40 -0
  506. package/dist/types-ts4.5/schema/nodes/ordered-list.d.ts +5 -0
  507. package/dist/types-ts4.5/schema/nodes/panel.d.ts +50 -0
  508. package/dist/types-ts4.5/schema/nodes/paragraph.d.ts +43 -0
  509. package/dist/types-ts4.5/schema/nodes/placeholder.d.ts +12 -0
  510. package/dist/types-ts4.5/schema/nodes/rule.d.ts +11 -0
  511. package/dist/types-ts4.5/schema/nodes/status.d.ts +24 -0
  512. package/dist/types-ts4.5/schema/nodes/sync-block.d.ts +22 -0
  513. package/dist/types-ts4.5/schema/nodes/tableNodes.d.ts +159 -0
  514. package/dist/types-ts4.5/schema/nodes/task-item.d.ts +33 -0
  515. package/dist/types-ts4.5/schema/nodes/task-list.d.ts +20 -0
  516. package/dist/types-ts4.5/schema/nodes/text.d.ts +12 -0
  517. package/dist/types-ts4.5/schema/nodes/types/block-content.d.ts +21 -0
  518. package/dist/types-ts4.5/schema/nodes/types/extensions.d.ts +34 -0
  519. package/dist/types-ts4.5/schema/nodes/types/inline-content.d.ts +28 -0
  520. package/dist/types-ts4.5/schema/nodes/types/list.d.ts +51 -0
  521. package/dist/types-ts4.5/schema/nodes/types/mark.d.ts +15 -0
  522. package/dist/types-ts4.5/schema/nodes/types/non-nestable-block-content.d.ts +19 -0
  523. package/dist/types-ts4.5/schema/nodes/types/rich-media-common.d.ts +37 -0
  524. package/dist/types-ts4.5/schema/nodes/unknown-block.d.ts +3 -0
  525. package/dist/types-ts4.5/schema/nodes/unsupported-block.d.ts +1 -0
  526. package/dist/types-ts4.5/schema/nodes/unsupported-inline.d.ts +1 -0
  527. package/dist/types-ts4.5/schema/sanitizeNodes.d.ts +8 -0
  528. package/dist/types-ts4.5/schema/unsupported.d.ts +1 -0
  529. package/dist/types-ts4.5/steps/analytics.d.ts +60 -0
  530. package/dist/types-ts4.5/steps/batch-attrs-step.d.ts +74 -0
  531. package/dist/types-ts4.5/steps/link-meta-step.d.ts +50 -0
  532. package/dist/types-ts4.5/steps/override-document-step.d.ts +26 -0
  533. package/dist/types-ts4.5/steps/set-attrs.d.ts +24 -0
  534. package/dist/types-ts4.5/steps/type-ahead.d.ts +35 -0
  535. package/dist/types-ts4.5/steps/types.d.ts +96 -0
  536. package/dist/types-ts4.5/steps.d.ts +10 -0
  537. package/dist/types-ts4.5/utils/colors.d.ts +81 -0
  538. package/dist/types-ts4.5/utils/confluence/emoji.d.ts +50 -0
  539. package/dist/types-ts4.5/utils/editor-palette.d.ts +257 -0
  540. package/dist/types-ts4.5/utils/extensions.d.ts +3 -0
  541. package/dist/types-ts4.5/utils/index.d.ts +7 -0
  542. package/dist/types-ts4.5/utils/lch-color-inversion.d.ts +2 -0
  543. package/dist/types-ts4.5/utils/parseDOM.d.ts +1 -0
  544. package/dist/types-ts4.5/utils/url.d.ts +40 -0
  545. package/dist/types-ts4.5/utils/uuid.d.ts +5 -0
  546. package/dist/types-ts4.5/validator-schema/generated/validatorSpec.d.ts +1981 -0
  547. package/eslint-plugin-warn-schema.js +2 -1
  548. package/eslint.config.js +12 -14
  549. package/json-schema/package.json +8 -1
  550. package/package.json +90 -82
  551. package/schema/package.json +8 -1
  552. package/schema-bitbucket/package.json +8 -1
  553. package/schema-confluence/package.json +8 -1
  554. package/schema-default/package.json +8 -1
  555. package/schema-generators/__tests__/helpers/_utils.ts +73 -77
  556. package/schema-generators/__tests__/helpers/utils.unit.ts +53 -59
  557. package/schema-generators/__tests__/unit/adfToValidatorSpec.unit.ts +79 -84
  558. package/schema-generators/__tests__/unit/json-full-schema-backwards-compat.unit.ts +43 -40
  559. package/schema-generators/__tests__/unit/validator-schema.ts +3 -3
  560. package/schema-generators/helpers/writeToFile.ts +12 -11
  561. package/schema-generators/json-full-schema.ts +4 -4
  562. package/schema-generators/pm-full-schema.ts +7 -5
  563. package/schema-generators/validator-full-schema.ts +7 -9
  564. package/schema-jira/package.json +8 -1
  565. package/schema-next/package.json +9 -3
  566. package/schema-validator/package.json +9 -3
  567. package/steps/package.json +8 -1
  568. package/url/package.json +8 -1
  569. package/warn-schema-change.js +121 -136
  570. package/warn-schema-change.test.js +31 -30
  571. package/copy-dist-to-afe.js +0 -32
  572. package/dist/types/json-schema/index.d.ts +0 -2
  573. package/sanitize-nodes/package.json +0 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @atlaskit/adf-schema
2
2
 
3
+ ## 51.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`18ea40790b19b`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/18ea40790b19b) -
8
+ fix missing json-schema in dist/ folder
9
+
10
+ ## 51.5.2
11
+
12
+ ### Patch Changes
13
+
14
+ - [`cac3d6228356a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/cac3d6228356a) -
15
+ adf-schema doc updates
16
+ - Updated dependencies
17
+
3
18
  ## 51.5.1
4
19
 
5
20
  ### Patch Changes
@@ -28,7 +43,8 @@
28
43
 
29
44
  ### Patch Changes
30
45
 
31
- - 2c46f94: EDITOR-2443 Fix order of node types under bodied sync block to ensure paragraph is first so empty paragraph is for a default new n
46
+ - 2c46f94: EDITOR-2443 Fix order of node types under bodied sync block to ensure paragraph is first
47
+ so empty paragraph is for a default new n
32
48
 
33
49
  ## 51.3.0
34
50
 
@@ -52,7 +68,8 @@
52
68
 
53
69
  ### Patch Changes
54
70
 
55
- - a5d311d: Update tableCellNodeSpecOptionsWithLocalId parseDOM method to include all cell attributes.
71
+ - a5d311d: Update tableCellNodeSpecOptionsWithLocalId parseDOM method to include all cell
72
+ attributes.
56
73
 
57
74
  ## 51.1.0
58
75
 
@@ -64,13 +81,15 @@
64
81
 
65
82
  ### Major Changes
66
83
 
67
- - 81923c7: EDITOR-1534 Removes blockTaskItemStage0 ProseMirror node spec, replacing it with blockTaskItem
84
+ - 81923c7: EDITOR-1534 Removes blockTaskItemStage0 ProseMirror node spec, replacing it with
85
+ blockTaskItem
68
86
 
69
87
  ## 50.4.0
70
88
 
71
89
  ### Minor Changes
72
90
 
73
- - a2428f6: EDITOR-1534 Restores blockTaskItemStage0 which was removed in a minor version, (should have been major) breaking backwards compatibility of the package
91
+ - a2428f6: EDITOR-1534 Restores blockTaskItemStage0 which was removed in a minor version, (should
92
+ have been major) breaking backwards compatibility of the package
74
93
 
75
94
  ## 50.3.0
76
95
 
@@ -82,7 +101,8 @@
82
101
 
83
102
  ### Patch Changes
84
103
 
85
- - 79c4757: Added fix for table cell attribute parser which was not correctly identifying background colors when the data-cell-background attribute was not lowercase
104
+ - 79c4757: Added fix for table cell attribute parser which was not correctly identifying background
105
+ colors when the data-cell-background attribute was not lowercase
86
106
 
87
107
  ## 50.2.3
88
108
 
@@ -100,13 +120,15 @@
100
120
 
101
121
  ### Patch Changes
102
122
 
103
- - b6e815d: EDITOR-1373 Fix tableCellWithLocalId toDOM and export nested table cell nodes with localId.
123
+ - b6e815d: EDITOR-1373 Fix tableCellWithLocalId toDOM and export nested table cell nodes with
124
+ localId.
104
125
 
105
126
  ## 50.2.0
106
127
 
107
128
  ### Minor Changes
108
129
 
109
- - 4aa837d: EDITOR-1219 Remove localId from hardBreak. Fix exports for listItemWithLocalId and layoutSectionwithLocalId. Add localId to media nodes.
130
+ - 4aa837d: EDITOR-1219 Remove localId from hardBreak. Fix exports for listItemWithLocalId and
131
+ layoutSectionwithLocalId. Add localId to media nodes.
110
132
 
111
133
  ## 50.1.1
112
134
 
@@ -118,7 +140,11 @@
118
140
 
119
141
  ### Minor Changes
120
142
 
121
- - 8df84f2: EDITOR-1124 Adds `blockTaskItem` element to `taskList` which allows block content children of task items. Initially only paragraph and extension elements are allowed, as this change is to facilitate migration from TinyMCE to cloud editor in Confluence. To do so we need to support the Legacy Content Extension (LCE) in task items, with unsupported content in task items in TinyMCE simply being wrapped with the LCE and adopting `blockTaskItem` instead of `taskItem`
143
+ - 8df84f2: EDITOR-1124 Adds `blockTaskItem` element to `taskList` which allows block content
144
+ children of task items. Initially only paragraph and extension elements are allowed, as this
145
+ change is to facilitate migration from TinyMCE to cloud editor in Confluence. To do so we need to
146
+ support the Legacy Content Extension (LCE) in task items, with unsupported content in task items
147
+ in TinyMCE simply being wrapped with the LCE and adopting `blockTaskItem` instead of `taskItem`
122
148
 
123
149
  ## 50.0.1
124
150
 
@@ -148,7 +174,8 @@
148
174
 
149
175
  ### Patch Changes
150
176
 
151
- - 076fe56: [ED-28432] Replace feature gate with experiment platform_editor_add_orange_highlight_color
177
+ - 076fe56: [ED-28432] Replace feature gate with experiment
178
+ platform_editor_add_orange_highlight_color
152
179
 
153
180
  ## 49.0.4
154
181
 
@@ -182,13 +209,15 @@
182
209
 
183
210
  ### Major Changes
184
211
 
185
- - bf5cbd4: BREAKING CHANGE: EDITOR-616 Remove unused variations of blockquote, listItem, nestedExpand, and panel
212
+ - bf5cbd4: BREAKING CHANGE: EDITOR-616 Remove unused variations of blockquote, listItem,
213
+ nestedExpand, and panel
186
214
 
187
215
  ## 48.0.0
188
216
 
189
217
  ### Major Changes
190
218
 
191
- - 926c3fd: We fully rolled out expands with nested expands, please use expandWithNestedExpand instead of expand
219
+ - 926c3fd: We fully rolled out expands with nested expands, please use expandWithNestedExpand
220
+ instead of expand
192
221
 
193
222
  ## 47.7.1
194
223
 
@@ -200,7 +229,8 @@
200
229
 
201
230
  ### Minor Changes
202
231
 
203
- - 105bd25: EDF-2577: Remap orange to yellow in text background color mapping functions behind editor_text_highlight_orange_to_yellow experiment
232
+ - 105bd25: EDF-2577: Remap orange to yellow in text background color mapping functions behind
233
+ editor_text_highlight_orange_to_yellow experiment
204
234
 
205
235
  ## 47.6.0
206
236
 
@@ -272,10 +302,10 @@
272
302
 
273
303
  ### Major Changes
274
304
 
275
- - a0f224a: Remove `expand_with_with_no_mark` and replace `expand_with_breakout_mark` with `expand_root_only`
305
+ - a0f224a: Remove `expand_with_with_no_mark` and replace `expand_with_breakout_mark` with
306
+ `expand_root_only`
276
307
 
277
308
  Upgrade instructions
278
-
279
309
  - Replace `expand_with_breakout_mark` with `expand_root_only`
280
310
  - Replace `expand_no_mark` with `expand`
281
311
 
@@ -283,7 +313,8 @@
283
313
 
284
314
  ### Minor Changes
285
315
 
286
- - 0ad17eb: Remove DSL inconsistency for code block with text with new no mark text variant - no functionality changes.
316
+ - 0ad17eb: Remove DSL inconsistency for code block with text with new no mark text variant - no
317
+ functionality changes.
287
318
 
288
319
  Added: `text_with_no_marks` variant
289
320
 
@@ -295,17 +326,19 @@
295
326
 
296
327
  ### Patch Changes
297
328
 
298
- - 162fff6: Remove exception for uniqueId on codeBlock and allow property on validator and json schema.
329
+ - 162fff6: Remove exception for uniqueId on codeBlock and allow property on validator and json
330
+ schema.
299
331
 
300
332
  ## 45.0.0
301
333
 
302
334
  ### Major Changes
303
335
 
304
- - a3ce608: Remove code block with marks and merge with standard code block definition to resolve adf inconsistencies.
336
+ - a3ce608: Remove code block with marks and merge with standard code block definition to resolve adf
337
+ inconsistencies.
305
338
 
306
339
  Major change:
307
-
308
- - Entry-point `@atlaskit/adf-schema/schema-validator` no longer has `codeBlock_with_marks` it has been replaced with `codeBlock`.
340
+ - Entry-point `@atlaskit/adf-schema/schema-validator` no longer has `codeBlock_with_marks` it has
341
+ been replaced with `codeBlock`.
309
342
 
310
343
  ## 44.7.0
311
344
 
@@ -365,7 +398,9 @@
365
398
 
366
399
  ### Minor Changes
367
400
 
368
- - 20b1f98: [ED-25393] This change creates new variants for the table, tableRow, tableCell and tableHeader nodes such that we can nest tables one level deep. This change is not making any changes to any existing nodes.
401
+ - 20b1f98: [ED-25393] This change creates new variants for the table, tableRow, tableCell and
402
+ tableHeader nodes such that we can nest tables one level deep. This change is not making any
403
+ changes to any existing nodes.
369
404
 
370
405
  ## 44.1.0
371
406
 
@@ -383,44 +418,55 @@
383
418
 
384
419
  ### Major Changes
385
420
 
386
- - 711e93b: ED-25392 Prevent validator-spec ignored nodes from being exposed in validator output - the following ignored node validator specs will no longer be exported and should not be used: `unsupportedInline`, `unsupportedBlock`, `image`, `confluenceJiraIssue`, `confluenceUnsupportedInline`, `listItem_legacy`, `blockquote_legacy`, `blockquote_without_nested_codeblock_or_media`, `tableCellContent`, `expand_without_nested_expand`, `confluenceUnsupportedBlock`.
421
+ - 711e93b: ED-25392 Prevent validator-spec ignored nodes from being exposed in validator output -
422
+ the following ignored node validator specs will no longer be exported and should not be used:
423
+ `unsupportedInline`, `unsupportedBlock`, `image`, `confluenceJiraIssue`,
424
+ `confluenceUnsupportedInline`, `listItem_legacy`, `blockquote_legacy`,
425
+ `blockquote_without_nested_codeblock_or_media`, `tableCellContent`,
426
+ `expand_without_nested_expand`, `confluenceUnsupportedBlock`.
387
427
 
388
428
  ## 42.5.0
389
429
 
390
430
  ### Minor Changes
391
431
 
392
- - 82af32e: Remove exception for minItems=0 from caption node, aligning JSON schema and Validator Spec with PM Spec
432
+ - 82af32e: Remove exception for minItems=0 from caption node, aligning JSON schema and Validator
433
+ Spec with PM Spec
393
434
 
394
435
  ## 42.4.0
395
436
 
396
437
  ### Minor Changes
397
438
 
398
439
  - 6114d78: add attr.text to hr, in order to match it with json schema spec
399
- - 844e6bd: Filter out empty content groups in json and validator spec and improve min and max item calculation
440
+ - 844e6bd: Filter out empty content groups in json and validator spec and improve min and max item
441
+ calculation
400
442
 
401
443
  ## 42.3.1
402
444
 
403
445
  ### Patch Changes
404
446
 
405
- - dfa64c8: Add override for pm.spec to ensure unsupportedBlock is correct for layoutSection_single_column
447
+ - dfa64c8: Add override for pm.spec to ensure unsupportedBlock is correct for
448
+ layoutSection_single_column
406
449
 
407
450
  ## 42.3.0
408
451
 
409
452
  ### Minor Changes
410
453
 
411
- - 8aff3bc: [ED-25105] This change aligns the node attributes between schema and next-schema for these nodes: codeblock, expand and nested expand, media and media inline.
454
+ - 8aff3bc: [ED-25105] This change aligns the node attributes between schema and next-schema for
455
+ these nodes: codeblock, expand and nested expand, media and media inline.
412
456
 
413
457
  ## 42.2.1
414
458
 
415
459
  ### Patch Changes
416
460
 
417
- - e4e695f: Change order of layoutSection_with_single_column with layoutSection_full to fix validator issues in the editor
461
+ - e4e695f: Change order of layoutSection_with_single_column with layoutSection_full to fix validator
462
+ issues in the editor
418
463
 
419
464
  ## 42.2.0
420
465
 
421
466
  ### Minor Changes
422
467
 
423
- - 767b124: Added columnRuleStyle to layoutSection_with_single_column, and add layoutSectionAdvLayouts nodespec export
468
+ - 767b124: Added columnRuleStyle to layoutSection_with_single_column, and add
469
+ layoutSectionAdvLayouts nodespec export
424
470
 
425
471
  ## 42.1.0
426
472
 
@@ -456,7 +502,9 @@
456
502
 
457
503
  ### Minor Changes
458
504
 
459
- - 52bf2ea: [ED-23241] Set hardBreak as the Prosemirror `linebreakReplacement` which is used when converting between codeBlocks and other block types. Implementation of feature introduced to Prosemirror after [this GitHub discussion](https://github.com/ProseMirror/prosemirror/issues/1460)
505
+ - 52bf2ea: [ED-23241] Set hardBreak as the Prosemirror `linebreakReplacement` which is used when
506
+ converting between codeBlocks and other block types. Implementation of feature introduced to
507
+ Prosemirror after [this GitHub discussion](https://github.com/ProseMirror/prosemirror/issues/1460)
460
508
 
461
509
  ## 40.9.4
462
510
 
@@ -480,7 +528,8 @@
480
528
 
481
529
  ### Patch Changes
482
530
 
483
- - 3fbc24f: [ED-24525] Move mediaGroup ranking after mediaSingle in blockquote's content to fix bug where pasting external images would be converted to a mediaGroup instead of mediaSingle.
531
+ - 3fbc24f: [ED-24525] Move mediaGroup ranking after mediaSingle in blockquote's content to fix bug
532
+ where pasting external images would be converted to a mediaGroup instead of mediaSingle.
484
533
 
485
534
  ## 40.9.0
486
535
 
@@ -498,7 +547,8 @@
498
547
 
499
548
  ### Patch Changes
500
549
 
501
- - f515514: [ED-24281] Add new node nesting scenario to pseudo block content element, so the validator spec gets updated
550
+ - f515514: [ED-24281] Add new node nesting scenario to pseudo block content element, so the
551
+ validator spec gets updated
502
552
 
503
553
  ## 40.8.0
504
554
 
@@ -534,7 +584,8 @@
534
584
 
535
585
  ### Patch Changes
536
586
 
537
- - b34f0b5: [ED-24167] This is a follow up PR as we forgot to export blockquoteWithNestedCodeblockOrMediaStage0
587
+ - b34f0b5: [ED-24167] This is a follow up PR as we forgot to export
588
+ blockquoteWithNestedCodeblockOrMediaStage0
538
589
 
539
590
  ## 40.3.0
540
591
 
@@ -546,7 +597,8 @@
546
597
 
547
598
  ### Patch Changes
548
599
 
549
- - 60c7ca6: [ED-24166] Fixed type issue where it was pulling in a type based on a PMNode into the DocNode type, which isn't compatible with the ADFEntity type which doesn't have the PM methods
600
+ - 60c7ca6: [ED-24166] Fixed type issue where it was pulling in a type based on a PMNode into the
601
+ DocNode type, which isn't compatible with the ADFEntity type which doesn't have the PM methods
550
602
 
551
603
  ## 40.2.0
552
604
 
@@ -629,7 +681,8 @@
629
681
 
630
682
  ### Patch Changes
631
683
 
632
- - 8cd0dd0: improve codeBlock parseDOM of tag div['style'] to fix issues in certain versions of Android Studio
684
+ - 8cd0dd0: improve codeBlock parseDOM of tag div['style'] to fix issues in certain versions of
685
+ Android Studio
633
686
  - a3502ad: Add support for stage0
634
687
 
635
688
  ## 37.2.0
@@ -648,7 +701,8 @@
648
701
 
649
702
  ### Patch Changes
650
703
 
651
- - 758ee06: last hacks to support tableCell_content, nestedExpand_content and atomic_inlines pseudo groups in validator spec
704
+ - 758ee06: last hacks to support tableCell_content, nestedExpand_content and atomic_inlines pseudo
705
+ groups in validator spec
652
706
 
653
707
  ## 37.1.41
654
708
 
@@ -711,7 +765,8 @@
711
765
 
712
766
  ### Patch Changes
713
767
 
714
- - 64d5ec6: Aligned extensionFrame with current validator spec implementation with exception override.
768
+ - 64d5ec6: Aligned extensionFrame with current validator spec implementation with exception
769
+ override.
715
770
  - 497d3c4: fix unit test description for node spec check
716
771
 
717
772
  ## 37.1.31
@@ -768,7 +823,8 @@
768
823
 
769
824
  ### Patch Changes
770
825
 
771
- - e0280dc: Add backwards compatability for bodied extension, code block, expand, layout section, non-nestable block content
826
+ - e0280dc: Add backwards compatability for bodied extension, code block, expand, layout section,
827
+ non-nestable block content
772
828
 
773
829
  ## 37.1.22
774
830
 
@@ -786,7 +842,8 @@
786
842
 
787
843
  ### Patch Changes
788
844
 
789
- - e57d797: Add new optional property for string attributes used in the validator ("validatorFn") function used for URL.
845
+ - e57d797: Add new optional property for string attributes used in the validator ("validatorFn")
846
+ function used for URL.
790
847
 
791
848
  This is used for the validator for "link" and "embedCard".
792
849
 
@@ -819,7 +876,9 @@
819
876
  ### Patch Changes
820
877
 
821
878
  - 7a3c038: Support isTupleLike in validator spec
822
- - 1651bd9: revert some broken changes in validating spec test, enable strict equal check, update DSL overrides to ensure equal to old spec, update text and media node spec without generate undefined in it
879
+ - 1651bd9: revert some broken changes in validating spec test, enable strict equal check, update DSL
880
+ overrides to ensure equal to old spec, update text and media node spec without generate undefined
881
+ in it
823
882
 
824
883
  ## 37.1.14
825
884
 
@@ -1072,7 +1131,8 @@
1072
1131
 
1073
1132
  ### Patch Changes
1074
1133
 
1075
- - b29eee7: update ADF DSL to match old PM spec, add validation unit test to verify nodeSpec and markSpec generated from ADF DSL
1134
+ - b29eee7: update ADF DSL to match old PM spec, add validation unit test to verify nodeSpec and
1135
+ markSpec generated from ADF DSL
1076
1136
 
1077
1137
  ## 36.10.9
1078
1138
 
@@ -1238,7 +1298,10 @@
1238
1298
 
1239
1299
  ### Major Changes
1240
1300
 
1241
- - e83fa9b: [ED-22282] [Breaking change] A transition ProseMirror node `extendedNestedExpand` was introduced for the changes in the node nesting project. Now that it's fully rolled out, the old `nestedExpand` isn't used anymore and we can clean them up. `nestedExpand` now contains the functionality of what was the transitional `extendedNestedExpand`.
1301
+ - e83fa9b: [ED-22282] [Breaking change] A transition ProseMirror node `extendedNestedExpand` was
1302
+ introduced for the changes in the node nesting project. Now that it's fully rolled out, the old
1303
+ `nestedExpand` isn't used anymore and we can clean them up. `nestedExpand` now contains the
1304
+ functionality of what was the transitional `extendedNestedExpand`.
1242
1305
 
1243
1306
  Any usage of `extendedNestedExpand` should be updated to `nestedExpand` now.
1244
1307
 
@@ -1246,7 +1309,8 @@
1246
1309
 
1247
1310
  ### Minor Changes
1248
1311
 
1249
- - e5e99e7: Separately exported the node spec for paragraph with localId so its use can be feature flagged
1312
+ - e5e99e7: Separately exported the node spec for paragraph with localId so its use can be feature
1313
+ flagged
1250
1314
 
1251
1315
  ## 35.13.0
1252
1316
 
@@ -1258,7 +1322,8 @@
1258
1322
 
1259
1323
  ### Patch Changes
1260
1324
 
1261
- - 05ba2ed: [ED-23102] Add background color mark to default schema and move it up in mark order to the inline marks
1325
+ - 05ba2ed: [ED-23102] Add background color mark to default schema and move it up in mark order to
1326
+ the inline marks
1262
1327
 
1263
1328
  ## 35.12.1
1264
1329
 
@@ -1276,7 +1341,8 @@
1276
1341
 
1277
1342
  ### Minor Changes
1278
1343
 
1279
- - b7684a5: [COMMENTS-1380] Moving the localId on mentions to full schema because it was accidentally promoted to full schema already due to a erroneously placed stage 0 tag
1344
+ - b7684a5: [COMMENTS-1380] Moving the localId on mentions to full schema because it was accidentally
1345
+ promoted to full schema already due to a erroneously placed stage 0 tag
1280
1346
 
1281
1347
  ## 35.10.0
1282
1348
 
@@ -1336,19 +1402,23 @@
1336
1402
 
1337
1403
  ### Minor Changes
1338
1404
 
1339
- - 49b81f8: Adding node-nesting rules for list, codeblock, actions, divider, decision, panel, quote inside nestedExpand
1405
+ - 49b81f8: Adding node-nesting rules for list, codeblock, actions, divider, decision, panel, quote
1406
+ inside nestedExpand
1340
1407
 
1341
1408
  ## 35.4.0
1342
1409
 
1343
1410
  ### Minor Changes
1344
1411
 
1345
- - d915d07: EDF-26 Cleaned up platform.editor.use-lch-for-color-inversion_1qv8ol flag and removed platform feature flags as a package dependency as it is no longer used. Text and table cell background colors will now use the LCH inversion method in dark mode by default.
1412
+ - d915d07: EDF-26 Cleaned up platform.editor.use-lch-for-color-inversion_1qv8ol flag and removed
1413
+ platform feature flags as a package dependency as it is no longer used. Text and table cell
1414
+ background colors will now use the LCH inversion method in dark mode by default.
1346
1415
 
1347
1416
  ## 35.3.0
1348
1417
 
1349
1418
  ### Minor Changes
1350
1419
 
1351
- - 529022b: ED-21611: Adding node-nesting rules for task inside list, and media, codeblock, rule, action and decision inside panel.
1420
+ - 529022b: ED-21611: Adding node-nesting rules for task inside list, and media, codeblock, rule,
1421
+ action and decision inside panel.
1352
1422
 
1353
1423
  ## 35.2.0
1354
1424
 
@@ -1360,13 +1430,15 @@
1360
1430
 
1361
1431
  ### Patch Changes
1362
1432
 
1363
- - 2023f5a: ED-20070: Added multiBodiedExtension and extensionFrame as defaultSchema customNodeSpecs for stage-0
1433
+ - 2023f5a: ED-20070: Added multiBodiedExtension and extensionFrame as defaultSchema customNodeSpecs
1434
+ for stage-0
1364
1435
 
1365
1436
  ## 35.1.0
1366
1437
 
1367
1438
  ### Minor Changes
1368
1439
 
1369
- - 4eff3f6: ED-20960-list-in-quotes: Create new node blockquoteWithList which allows node nesting for list inside blockquote
1440
+ - 4eff3f6: ED-20960-list-in-quotes: Create new node blockquoteWithList which allows node nesting for
1441
+ list inside blockquote
1370
1442
 
1371
1443
  ## 35.0.0
1372
1444
 
@@ -1384,13 +1456,16 @@
1384
1456
 
1385
1457
  ### Major Changes
1386
1458
 
1387
- - 8132ac3: ED-20699 Add LCH color inversion method behind feature flag platform.editor.use-lch-for-color-inversion_1qv8ol for text and table cell background colors. Also adds @atlaskit/platform-feature-flags as a devDep.
1459
+ - 8132ac3: ED-20699 Add LCH color inversion method behind feature flag
1460
+ platform.editor.use-lch-for-color-inversion_1qv8ol for text and table cell background colors. Also
1461
+ adds @atlaskit/platform-feature-flags as a devDep.
1388
1462
 
1389
1463
  ## 33.2.3
1390
1464
 
1391
1465
  ### Patch Changes
1392
1466
 
1393
- - 8ecd624: ED-20946 Added a small script to copy the contents of adf-schema to @atlaskit/adf-schema node_modules in AFE to allow local testing of package changes.
1467
+ - 8ecd624: ED-20946 Added a small script to copy the contents of adf-schema to @atlaskit/adf-schema
1468
+ node_modules in AFE to allow local testing of package changes.
1394
1469
 
1395
1470
  ## 33.2.2
1396
1471
 
@@ -1426,7 +1501,8 @@
1426
1501
 
1427
1502
  ### Patch Changes
1428
1503
 
1429
- - 91855c6: Add feature flags package as dev dependency to resolve pipleines issue in Atlassian frontend.
1504
+ - 91855c6: Add feature flags package as dev dependency to resolve pipleines issue in Atlassian
1505
+ frontend.
1430
1506
 
1431
1507
  ## 33.1.0
1432
1508
 
@@ -1678,7 +1754,8 @@
1678
1754
 
1679
1755
  ### Patch Changes
1680
1756
 
1681
- - [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete version.json
1757
+ - [`fd6bb9c9184`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd6bb9c9184) - Delete
1758
+ version.json
1682
1759
 
1683
1760
  ## 28.1.1
1684
1761
 
@@ -1690,85 +1767,99 @@
1690
1767
 
1691
1768
  ### Minor Changes
1692
1769
 
1693
- - [`106c54b0ce4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/106c54b0ce4) - [ux] ED-15896 - Added support for unsupported nodes in listItem
1770
+ - [`106c54b0ce4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/106c54b0ce4) - [ux]
1771
+ ED-15896 - Added support for unsupported nodes in listItem
1694
1772
 
1695
1773
  ## 28.0.0
1696
1774
 
1697
1775
  ### Major Changes
1698
1776
 
1699
- - [`9064e2d0f28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9064e2d0f28) - [ux] HOT-104783 Reverting https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37639
1777
+ - [`9064e2d0f28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9064e2d0f28) - [ux]
1778
+ HOT-104783 Reverting https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/37639
1700
1779
 
1701
1780
  ## 27.0.0
1702
1781
 
1703
1782
  ### Major Changes
1704
1783
 
1705
- - [`30d82d3462c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30d82d3462c) - [ED-19175] add missing support for the unsupportedBlock in table related nodes
1784
+ - [`30d82d3462c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/30d82d3462c) -
1785
+ [ED-19175] add missing support for the unsupportedBlock in table related nodes
1706
1786
 
1707
1787
  ## 26.4.1
1708
1788
 
1709
1789
  ### Patch Changes
1710
1790
 
1711
- - [`4e6f1bf8511`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6f1bf8511) - [ED-19233] Import prosemirror libraries from internal facade package
1791
+ - [`4e6f1bf8511`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4e6f1bf8511) -
1792
+ [ED-19233] Import prosemirror libraries from internal facade package
1712
1793
 
1713
1794
  ## 26.4.0
1714
1795
 
1715
1796
  ### Minor Changes
1716
1797
 
1717
- - [`1bab0faa2c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1bab0faa2c8) - Add a new custom ProseMirror step OverrideDocumentStep for easy document replacing.
1798
+ - [`1bab0faa2c8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1bab0faa2c8) - Add a
1799
+ new custom ProseMirror step OverrideDocumentStep for easy document replacing.
1718
1800
 
1719
1801
  ## 26.3.0
1720
1802
 
1721
1803
  ### Minor Changes
1722
1804
 
1723
- - [`91410d6064c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/91410d6064c) - [ux] NOISSUE Fix linkify of file links on space
1805
+ - [`91410d6064c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/91410d6064c) - [ux]
1806
+ NOISSUE Fix linkify of file links on space
1724
1807
 
1725
1808
  ## 26.2.2
1726
1809
 
1727
1810
  ### Patch Changes
1728
1811
 
1729
- - [`56e6ce31c75`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56e6ce31c75) - ED-19040 improve handle paste media
1812
+ - [`56e6ce31c75`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56e6ce31c75) - ED-19040
1813
+ improve handle paste media
1730
1814
 
1731
1815
  ## 26.2.1
1732
1816
 
1733
1817
  ### Patch Changes
1734
1818
 
1735
- - [`036351ec788`](https://bitbucket.org/atlassian/atlassian-frontend/commits/036351ec788) - [ED-18768] Make attrs reduce a readonly object
1819
+ - [`036351ec788`](https://bitbucket.org/atlassian/atlassian-frontend/commits/036351ec788) -
1820
+ [ED-18768] Make attrs reduce a readonly object
1736
1821
 
1737
1822
  ## 26.2.0
1738
1823
 
1739
1824
  ### Minor Changes
1740
1825
 
1741
- - [`a5877196a3c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5877196a3c) - [ux] EDM-6499 Fix handling of tel and other custom URI links
1826
+ - [`a5877196a3c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5877196a3c) - [ux]
1827
+ EDM-6499 Fix handling of tel and other custom URI links
1742
1828
 
1743
1829
  ## 26.1.0
1744
1830
 
1745
1831
  ### Minor Changes
1746
1832
 
1747
- - [`65fe45e0cc0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65fe45e0cc0) - Promoted border mark to full schema and add border support for email renderer
1833
+ - [`65fe45e0cc0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65fe45e0cc0) - Promoted
1834
+ border mark to full schema and add border support for email renderer
1748
1835
 
1749
1836
  ## 26.0.1
1750
1837
 
1751
1838
  ### Patch Changes
1752
1839
 
1753
- - [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) - [ED-13910] Fix prosemirror types
1840
+ - [`5f5ba16de66`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f5ba16de66) -
1841
+ [ED-13910] Fix prosemirror types
1754
1842
 
1755
1843
  ## 26.0.0
1756
1844
 
1757
1845
  ### Major Changes
1758
1846
 
1759
- - [`68ef7e6146c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68ef7e6146c) - [ADF change] added widthType attribute to mediaSingle node, to support fixed width media node.
1847
+ - [`68ef7e6146c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68ef7e6146c) - [ADF
1848
+ change] added widthType attribute to mediaSingle node, to support fixed width media node.
1760
1849
 
1761
1850
  ## 25.10.1
1762
1851
 
1763
1852
  ### Patch Changes
1764
1853
 
1765
- - [`54c95071cce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54c95071cce) - Move around order of BlockCardDefinition attribute variations.
1854
+ - [`54c95071cce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54c95071cce) - Move
1855
+ around order of BlockCardDefinition attribute variations.
1766
1856
 
1767
1857
  ## 25.10.0
1768
1858
 
1769
1859
  ### Minor Changes
1770
1860
 
1771
- - [`d85c737c1e9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d85c737c1e9) - Memoize getSchemaBasedOnStage for improved performance on repeated invocations
1861
+ - [`d85c737c1e9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d85c737c1e9) - Memoize
1862
+ getSchemaBasedOnStage for improved performance on repeated invocations
1772
1863
 
1773
1864
  ## 25.9.2
1774
1865
 
@@ -1780,19 +1871,23 @@
1780
1871
 
1781
1872
  ### Patch Changes
1782
1873
 
1783
- - [`bf7e8e4968b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bf7e8e4968b) - ED-15895 add unsupportedinline support to caption
1874
+ - [`bf7e8e4968b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bf7e8e4968b) - ED-15895
1875
+ add unsupportedinline support to caption
1784
1876
 
1785
1877
  ## 25.9.0
1786
1878
 
1787
1879
  ### Minor Changes
1788
1880
 
1789
- - [`6de13a329d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6de13a329d4) - Move `width` and `layout` out from `datasource` into `attr` root (context blockCard node)
1881
+ - [`6de13a329d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6de13a329d4) - Move
1882
+ `width` and `layout` out from `datasource` into `attr` root (context blockCard node)
1790
1883
 
1791
1884
  ## 25.8.3
1792
1885
 
1793
1886
  ### Patch Changes
1794
1887
 
1795
- - [`f22911fb9be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f22911fb9be) - ENGHEALTH-2667: Adjust table cell color logic to enable static analysis of token usages and follow eslint rules
1888
+ - [`f22911fb9be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f22911fb9be) -
1889
+ ENGHEALTH-2667: Adjust table cell color logic to enable static analysis of token usages and follow
1890
+ eslint rules
1796
1891
  - Updated dependencies
1797
1892
 
1798
1893
  ## 25.8.2
@@ -1805,51 +1900,61 @@
1805
1900
 
1806
1901
  ### Patch Changes
1807
1902
 
1808
- - [`bbb877d8813`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bbb877d8813) - [ED-18157] Remove circular dependencies in adf-schema package by extracting the backwards compatibility tests to a separate package
1903
+ - [`bbb877d8813`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bbb877d8813) -
1904
+ [ED-18157] Remove circular dependencies in adf-schema package by extracting the backwards
1905
+ compatibility tests to a separate package
1809
1906
 
1810
1907
  ## 25.8.0
1811
1908
 
1812
1909
  ### Minor Changes
1813
1910
 
1814
- - [`f3d2c08d61b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3d2c08d61b) - Adds new datasource attribute to existing blockCard node
1911
+ - [`f3d2c08d61b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f3d2c08d61b) - Adds new
1912
+ datasource attribute to existing blockCard node
1815
1913
 
1816
1914
  ## 25.7.0
1817
1915
 
1818
1916
  ### Minor Changes
1819
1917
 
1820
- - [`94561f309f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/94561f309f3) - New stage-0 change: custom "width" attribute on Tables nodes
1918
+ - [`94561f309f3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/94561f309f3) - New
1919
+ stage-0 change: custom "width" attribute on Tables nodes
1821
1920
 
1822
1921
  ## 25.6.4
1823
1922
 
1824
1923
  ### Patch Changes
1825
1924
 
1826
- - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
1925
+ - [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure
1926
+ legacy types are published for TS 4.5-4.8
1827
1927
  - Updated dependencies
1828
1928
 
1829
1929
  ## 25.6.3
1830
1930
 
1831
1931
  ### Patch Changes
1832
1932
 
1833
- - [`a142ba1aa28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a142ba1aa28) - [ED17172] Bump prosemirror-model to 1.16.0 and prosemirror-view to 1.23.7 and removed work-arounds for fixed issues
1933
+ - [`a142ba1aa28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a142ba1aa28) -
1934
+ [ED17172] Bump prosemirror-model to 1.16.0 and prosemirror-view to 1.23.7 and removed work-arounds
1935
+ for fixed issues
1834
1936
 
1835
1937
  ## 25.6.2
1836
1938
 
1837
1939
  ### Patch Changes
1838
1940
 
1839
- - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
1941
+ - [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade
1942
+ Typescript from `4.5.5` to `4.9.5`
1840
1943
  - Updated dependencies
1841
1944
 
1842
1945
  ## 25.6.1
1843
1946
 
1844
1947
  ### Patch Changes
1845
1948
 
1846
- - [`0233170f43a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0233170f43a) - ED-17810 Handled malformed RGB table cell background color.
1949
+ - [`0233170f43a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0233170f43a) - ED-17810
1950
+ Handled malformed RGB table cell background color.
1847
1951
 
1848
1952
  ## 25.6.0
1849
1953
 
1850
1954
  ### Minor Changes
1851
1955
 
1852
- - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
1956
+ - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip
1957
+ minor dependency bump
1853
1958
 
1854
1959
  ### Patch Changes
1855
1960
 
@@ -1859,25 +1964,32 @@
1859
1964
 
1860
1965
  ### Patch Changes
1861
1966
 
1862
- - [`0ffb55018c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ffb55018c9) - Revert "[ED-17172] Bumped prosemirror-view from 1.23.2 to 1.23.7 and removed work-around for fixed issues"
1967
+ - [`0ffb55018c9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ffb55018c9) - Revert
1968
+ "[ED-17172] Bumped prosemirror-view from 1.23.2 to 1.23.7 and removed work-around for fixed
1969
+ issues"
1863
1970
 
1864
1971
  ## 25.5.0
1865
1972
 
1866
1973
  ### Minor Changes
1867
1974
 
1868
- - [`0237059f136`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0237059f136) - Adds `LinkMetaStep` prosemirror step to be used to annotate a transaction with metadata about how (action, input method etc) for how a transaction has been performed.
1975
+ - [`0237059f136`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0237059f136) - Adds
1976
+ `LinkMetaStep` prosemirror step to be used to annotate a transaction with metadata about how
1977
+ (action, input method etc) for how a transaction has been performed.
1869
1978
 
1870
1979
  ### Patch Changes
1871
1980
 
1872
- - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
1981
+ - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY
1982
+ remove before merging to master; dupe adf-schema via adf-utils
1873
1983
  - Updated dependencies
1874
1984
 
1875
1985
  ## 25.4.0
1876
1986
 
1877
1987
  ### Minor Changes
1878
1988
 
1879
- - [`bf04c417bfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bf04c417bfd) - Add "border" mark to stage0 ADF schema
1880
- - [`af9a85063e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/af9a85063e5) - add image border toolbar
1989
+ - [`bf04c417bfd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bf04c417bfd) - Add
1990
+ "border" mark to stage0 ADF schema
1991
+ - [`af9a85063e5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/af9a85063e5) - add
1992
+ image border toolbar
1881
1993
 
1882
1994
  ### Patch Changes
1883
1995
 
@@ -1887,22 +1999,25 @@
1887
1999
 
1888
2000
  ### Patch Changes
1889
2001
 
1890
- - [`2367ba14aa0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2367ba14aa0) - [ux] ED-16758 Added support for theme tokens in table cell background color.
1891
- - [`6b52583b688`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b52583b688) - ED-15974 Currently nodes are validated against single spec.
1892
- When a node has multiple specs, like mediaSingle, the first spec is used to validate the node.
1893
- Therefore, the validation fails with an error `INVALID_CONTENT_LENGTH` when the correct spec is not selected for validation.
2002
+ - [`2367ba14aa0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2367ba14aa0) - [ux]
2003
+ ED-16758 Added support for theme tokens in table cell background color.
2004
+ - [`6b52583b688`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b52583b688) - ED-15974
2005
+ Currently nodes are validated against single spec. When a node has multiple specs, like
2006
+ mediaSingle, the first spec is used to validate the node. Therefore, the validation fails with an
2007
+ error `INVALID_CONTENT_LENGTH` when the correct spec is not selected for validation.
1894
2008
 
1895
2009
  This fix is to re-arrange the specs so that the less restrictive spec is at the top.
1896
2010
 
1897
- - [`e771b41970b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e771b41970b) - Updating test cases for adf-schema json-compatibility-tests
2011
+ - [`e771b41970b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e771b41970b) - Updating
2012
+ test cases for adf-schema json-compatibility-tests
1898
2013
  - Updated dependencies
1899
2014
 
1900
2015
  ## 25.3.1
1901
2016
 
1902
2017
  ### Patch Changes
1903
2018
 
1904
- - [`f5568785246`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5568785246) - Support common URL protocols:
1905
-
2019
+ - [`f5568785246`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f5568785246) - Support
2020
+ common URL protocols:
1906
2021
  - gopher
1907
2022
  - integrity
1908
2023
  - file
@@ -1913,45 +2028,57 @@
1913
2028
 
1914
2029
  ### Minor Changes
1915
2030
 
1916
- - [`7f755f463e0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f755f463e0) - EDM-4553: allowing root relative links to be copied and pasted as a link by appending the parent root to the root relative link when it is copy and pasted.
2031
+ - [`7f755f463e0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f755f463e0) -
2032
+ EDM-4553: allowing root relative links to be copied and pasted as a link by appending the parent
2033
+ root to the root relative link when it is copy and pasted.
1917
2034
 
1918
2035
  ## 25.2.3
1919
2036
 
1920
2037
  ### Patch Changes
1921
2038
 
1922
- - [`85f02a75990`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85f02a75990) - [hot-102658] Dummy patch added to stabalise package build failures caused because of bad remote cache
2039
+ - [`85f02a75990`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85f02a75990) -
2040
+ [hot-102658] Dummy patch added to stabalise package build failures caused because of bad remote
2041
+ cache
1923
2042
 
1924
2043
  ## 25.2.2
1925
2044
 
1926
2045
  ### Patch Changes
1927
2046
 
1928
- - [`8c04b73312e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c04b73312e) - ED-16758 Added data-cell-background attribute to store table cell background color information.
2047
+ - [`8c04b73312e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c04b73312e) - ED-16758
2048
+ Added data-cell-background attribute to store table cell background color information.
1929
2049
 
1930
2050
  ## 25.2.1
1931
2051
 
1932
2052
  ### Patch Changes
1933
2053
 
1934
- - [`f770f0118a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f770f0118a4) - This package is now declared as a singleton within its package.json file. Consumers should provide tooling to assist in deduplication and enforcement of the singleton pattern.
2054
+ - [`f770f0118a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f770f0118a4) - This
2055
+ package is now declared as a singleton within its package.json file. Consumers should provide
2056
+ tooling to assist in deduplication and enforcement of the singleton pattern.
1935
2057
 
1936
2058
  ## 25.2.0
1937
2059
 
1938
2060
  ### Minor Changes
1939
2061
 
1940
- - [`391a8ec684e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/391a8ec684e) - [ESS-3165] Move fragment mark and mediaInline node into the default schema
2062
+ - [`391a8ec684e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/391a8ec684e) -
2063
+ [ESS-3165] Move fragment mark and mediaInline node into the default schema
1941
2064
 
1942
2065
  ## 25.1.1
1943
2066
 
1944
2067
  ### Patch Changes
1945
2068
 
1946
- - [`4f6a895f1d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f6a895f1d5) - Set selectable property for selectable nodes
1947
- - [`5ac1c18bd04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5ac1c18bd04) - [ux] Fix selection blocking issue where user cannot left/right arrow key past a mediaSingle
2069
+ - [`4f6a895f1d5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4f6a895f1d5) - Set
2070
+ selectable property for selectable nodes
2071
+ - [`5ac1c18bd04`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5ac1c18bd04) - [ux] Fix
2072
+ selection blocking issue where user cannot left/right arrow key past a mediaSingle
1948
2073
  - Updated dependencies
1949
2074
 
1950
2075
  ## 25.1.0
1951
2076
 
1952
2077
  ### Minor Changes
1953
2078
 
1954
- - [`055a333dad9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/055a333dad9) - [ux] Remove `moreTextColors` feature flag and deprecate `allowMoreTextColors` field of `allowTextColor` editor prop and `colorPaletteExtended` mark.
2079
+ - [`055a333dad9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/055a333dad9) - [ux]
2080
+ Remove `moreTextColors` feature flag and deprecate `allowMoreTextColors` field of `allowTextColor`
2081
+ editor prop and `colorPaletteExtended` mark.
1955
2082
 
1956
2083
  Showing more colors in the color selection palette is now a default behaviour.
1957
2084
 
@@ -1961,7 +2088,9 @@
1961
2088
 
1962
2089
  ### 1. `allowMoreTextColors` field of `allowTextColor` editor prop.
1963
2090
 
1964
- `allowMoreTextColors` field of `allowTextColor` editor prop. **is now deprecated and will be removed in the next stable release of `@atlaskit/editor-core` package**. Please take steps to remove that field from your code. E.g.:
2091
+ `allowMoreTextColors` field of `allowTextColor` editor prop. **is now deprecated and will be
2092
+ removed in the next stable release of `@atlaskit/editor-core` package**. Please take steps to
2093
+ remove that field from your code. E.g.:
1965
2094
 
1966
2095
  ```tsx
1967
2096
  <Editor
@@ -1984,7 +2113,8 @@
1984
2113
  />
1985
2114
  ```
1986
2115
 
1987
- If the resulting `allowTextColor` prop is an empty object, set `allowTextColor` property value to `true`. E.g.:
2116
+ If the resulting `allowTextColor` prop is an empty object, set `allowTextColor` property value to
2117
+ `true`. E.g.:
1988
2118
 
1989
2119
  ```tsx
1990
2120
  <Editor
@@ -2008,36 +2138,46 @@
2008
2138
 
2009
2139
  ### 2. `colorPaletteExtended` mark of the ADF schema
2010
2140
 
2011
- `colorPaletteExtended` mark of the ADF schema **is now deprecated and will be removed in the next stable release**. The extended palette is now rolled into the main one. use `colorPalette` instead.
2141
+ `colorPaletteExtended` mark of the ADF schema **is now deprecated and will be removed in the next
2142
+ stable release**. The extended palette is now rolled into the main one. use `colorPalette`
2143
+ instead.
2012
2144
 
2013
2145
  ## 25.0.0
2014
2146
 
2015
2147
  ### Major Changes
2016
2148
 
2017
- - [`5d317ed8aa3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d317ed8aa3) - [ux] ED-15882: Implement custom starting numbers for orderedList nodes in adf-schema, editor, renderer, transformers behind restartNumberedLists feature flag. Users will be able to set a custom starting number when typing to create a numbered list in the Editor and this will be persisted across Renderer and other format transformations.
2149
+ - [`5d317ed8aa3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5d317ed8aa3) - [ux]
2150
+ ED-15882: Implement custom starting numbers for orderedList nodes in adf-schema, editor, renderer,
2151
+ transformers behind restartNumberedLists feature flag. Users will be able to set a custom starting
2152
+ number when typing to create a numbered list in the Editor and this will be persisted across
2153
+ Renderer and other format transformations.
2018
2154
 
2019
- Note: restartNumberedLists will be off by default. To enable it, consumers will need to set <Editor featureFlags={{ restartNumberedLists: true }}> or <Renderer featureFlags={{ restartNumberedLists: true }}>
2155
+ Note: restartNumberedLists will be off by default. To enable it, consumers will need to set
2156
+ <Editor featureFlags={{ restartNumberedLists: true }}> or <Renderer
2157
+ featureFlags={{ restartNumberedLists: true }}>
2020
2158
 
2021
2159
  ### Minor Changes
2022
2160
 
2023
- - [`92613b1f023`](https://bitbucket.org/atlassian/atlassian-frontend/commits/92613b1f023) - ED-15018 and ED-13913 - Remove all circular dependencies and ignored warnings in editor
2161
+ - [`92613b1f023`](https://bitbucket.org/atlassian/atlassian-frontend/commits/92613b1f023) - ED-15018
2162
+ and ED-13913 - Remove all circular dependencies and ignored warnings in editor
2024
2163
 
2025
2164
  ### Patch Changes
2026
2165
 
2027
- - [`aa3c130c43a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa3c130c43a) - Changes the annotation mark to inclusive in order to fix the annotation being deleted when doing composition
2028
- - [`7590e54ccc2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7590e54ccc2) - ED-15676 deprecated product-specific schema exports from @atlaskit/adf-schema (`schema-bitbucket`, `schema-confluence` and `schema-jira`). Use `@atlaskit/adf-schema/schema-default` instead.
2166
+ - [`aa3c130c43a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa3c130c43a) - Changes
2167
+ the annotation mark to inclusive in order to fix the annotation being deleted when doing
2168
+ composition
2169
+ - [`7590e54ccc2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7590e54ccc2) - ED-15676
2170
+ deprecated product-specific schema exports from @atlaskit/adf-schema (`schema-bitbucket`,
2171
+ `schema-confluence` and `schema-jira`). Use `@atlaskit/adf-schema/schema-default` instead.
2029
2172
 
2030
2173
  From `@atlaskit/adf-schema/schema-bitbucket`
2031
-
2032
2174
  - `default (bitbucketSchema)`
2033
2175
 
2034
2176
  From `@atlaskit/adf-schema/schema-confluence`
2035
-
2036
2177
  - `default (confluenceSchema)`
2037
2178
  - `confluenceSchemaWithMediaSingle`
2038
2179
 
2039
2180
  From `@atlaskit/adf-schema/schema-jira`
2040
-
2041
2181
  - `default (jiraSchema)`
2042
2182
  - `JIRASchemaConfig`
2043
2183
  - `isSchemaWithLists`
@@ -2052,109 +2192,132 @@
2052
2192
  - `isSchemaWithTextColor`
2053
2193
  - `isSchemaWithTables`
2054
2194
 
2055
- - [`ec05886ac07`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec05886ac07) - [ux] ED-15871 Fixed issue with pasting a table from renderer does not respect theme mode
2056
- - [`3a35da6c331`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3a35da6c331) - DTR-825 ED-9775: added jamfselfservice:// to whitelistedURLPatterns
2057
- - [`1267ffe2c42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1267ffe2c42) - Add media traceId into copy/paste operations
2058
- - [`b2fa6d3e611`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2fa6d3e611) - [ED-16106] Fix margin top when paragraph has alignment marks
2195
+ - [`ec05886ac07`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec05886ac07) - [ux]
2196
+ ED-15871 Fixed issue with pasting a table from renderer does not respect theme mode
2197
+ - [`3a35da6c331`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3a35da6c331) - DTR-825
2198
+ ED-9775: added jamfselfservice:// to whitelistedURLPatterns
2199
+ - [`1267ffe2c42`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1267ffe2c42) - Add
2200
+ media traceId into copy/paste operations
2201
+ - [`b2fa6d3e611`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b2fa6d3e611) -
2202
+ [ED-16106] Fix margin top when paragraph has alignment marks
2059
2203
 
2060
2204
  ## 24.0.3
2061
2205
 
2062
2206
  ### Patch Changes
2063
2207
 
2064
- - [`c2510fa261f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2510fa261f) - [ux] ED-15961 [ux] Updates the presentation of text color to use dark and light mode colors when those modes are enabled
2208
+ - [`c2510fa261f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c2510fa261f) - [ux]
2209
+ ED-15961 [ux] Updates the presentation of text color to use dark and light mode colors when those
2210
+ modes are enabled
2065
2211
  - Updated dependencies
2066
2212
 
2067
2213
  ## 24.0.2
2068
2214
 
2069
2215
  ### Patch Changes
2070
2216
 
2071
- - [`b86981a0cf0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b86981a0cf0) - [ux] ED-15426 fix broken copy paste of block card. Add content to schema toDOM.
2217
+ - [`b86981a0cf0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b86981a0cf0) - [ux]
2218
+ ED-15426 fix broken copy paste of block card. Add content to schema toDOM.
2072
2219
  - Updated dependencies
2073
2220
 
2074
2221
  ## 24.0.1
2075
2222
 
2076
2223
  ### Patch Changes
2077
2224
 
2078
- - [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade Typescript from `4.3.5` to `4.5.5`
2225
+ - [`8cc2f888c83`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8cc2f888c83) - Upgrade
2226
+ Typescript from `4.3.5` to `4.5.5`
2079
2227
 
2080
2228
  ## 24.0.0
2081
2229
 
2082
2230
  ### Major Changes
2083
2231
 
2084
- - [`bd524db3926`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bd524db3926) - ED-15380 Update fragment prosemirror-schema to match ADF schema
2232
+ - [`bd524db3926`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bd524db3926) - ED-15380
2233
+ Update fragment prosemirror-schema to match ADF schema
2085
2234
 
2086
2235
  ### Minor Changes
2087
2236
 
2088
- - [`1f99f6b79d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f99f6b79d3) - Support media inline for jira transformer and minor schema changes
2237
+ - [`1f99f6b79d3`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1f99f6b79d3) - Support
2238
+ media inline for jira transformer and minor schema changes
2089
2239
 
2090
2240
  ## 23.3.1
2091
2241
 
2092
2242
  ### Patch Changes
2093
2243
 
2094
- - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade Typescript from `4.2.4` to `4.3.5`.
2244
+ - [`8d4228767b0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8d4228767b0) - Upgrade
2245
+ Typescript from `4.2.4` to `4.3.5`.
2095
2246
 
2096
2247
  ## 23.3.0
2097
2248
 
2098
2249
  ### Minor Changes
2099
2250
 
2100
- - [`fecd5f5c96c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fecd5f5c96c) - ED-15067 Added paragraph_with_indentation to block content to allow indented paragraphs inside of layout columns. Prior to this change, it was possible to add indentation but it resulted in an unsupported mark.
2251
+ - [`fecd5f5c96c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fecd5f5c96c) - ED-15067
2252
+ Added paragraph_with_indentation to block content to allow indented paragraphs inside of layout
2253
+ columns. Prior to this change, it was possible to add indentation but it resulted in an
2254
+ unsupported mark.
2101
2255
 
2102
2256
  ### Patch Changes
2103
2257
 
2104
- - [`721bc4d7794`](https://bitbucket.org/atlassian/atlassian-frontend/commits/721bc4d7794) - ED-14377 To remove the imports of version.json which is deprecated
2258
+ - [`721bc4d7794`](https://bitbucket.org/atlassian/atlassian-frontend/commits/721bc4d7794) - ED-14377
2259
+ To remove the imports of version.json which is deprecated
2105
2260
 
2106
2261
  ## 23.2.1
2107
2262
 
2108
2263
  ### Patch Changes
2109
2264
 
2110
- - [`28ceecfd24d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28ceecfd24d) - empty changeset
2265
+ - [`28ceecfd24d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/28ceecfd24d) - empty
2266
+ changeset
2111
2267
 
2112
2268
  ## 23.2.0
2113
2269
 
2114
2270
  ### Minor Changes
2115
2271
 
2116
- - [`4d8c675bd2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d8c675bd2a) - EDM-3779 Hotfix: Extend Media Inline ADF Schema to have type attribute
2272
+ - [`4d8c675bd2a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4d8c675bd2a) - EDM-3779
2273
+ Hotfix: Extend Media Inline ADF Schema to have type attribute
2117
2274
 
2118
2275
  ## 23.1.0
2119
2276
 
2120
2277
  ### Minor Changes
2121
2278
 
2122
- - [`8949731bc6a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8949731bc6a) - ED-14608: Migrate adf-utils imports in atlassian-frontend to new child entry points to improve treeshaking
2279
+ - [`8949731bc6a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8949731bc6a) -
2280
+ ED-14608: Migrate adf-utils imports in atlassian-frontend to new child entry points to improve
2281
+ treeshaking
2123
2282
 
2124
2283
  ### Patch Changes
2125
2284
 
2126
- - [`f0d6141f46c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0d6141f46c) - ED-14114: added tests to ensure consistency between ADF/ProseMirror schemas for default Mark attributes
2285
+ - [`f0d6141f46c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f0d6141f46c) -
2286
+ ED-14114: added tests to ensure consistency between ADF/ProseMirror schemas for default Mark
2287
+ attributes
2127
2288
  - Updated dependencies
2128
2289
 
2129
2290
  ## 23.0.2
2130
2291
 
2131
2292
  ### Patch Changes
2132
2293
 
2133
- - [`702b032500c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/702b032500c) - [ux] Corrected ordering of the toolbar text colour picker's drop down menu, updated its rows to be from darkest to lightest.
2294
+ - [`702b032500c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/702b032500c) - [ux]
2295
+ Corrected ordering of the toolbar text colour picker's drop down menu, updated its rows to be from
2296
+ darkest to lightest.
2134
2297
 
2135
2298
  ## 23.0.1
2136
2299
 
2137
2300
  ### Patch Changes
2138
2301
 
2139
- - [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade to TypeScript 4.2.4
2302
+ - [`cb2392f6d33`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cb2392f6d33) - Upgrade
2303
+ to TypeScript 4.2.4
2140
2304
 
2141
2305
  ## 23.0.0
2142
2306
 
2143
2307
  ### Major Changes
2144
2308
 
2145
- - [`b29ce16dad8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b29ce16dad8) - [ED-14606] Move bitbucket schema, confluence schema, jira schema, and default schema from @atlaskit/adf-schema to their own entry points. These new entry points are as follows
2309
+ - [`b29ce16dad8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b29ce16dad8) -
2310
+ [ED-14606] Move bitbucket schema, confluence schema, jira schema, and default schema from
2311
+ @atlaskit/adf-schema to their own entry points. These new entry points are as follows
2146
2312
 
2147
2313
  @atlaskit/adf-schema/schema-bitbucket for:
2148
-
2149
2314
  - bitbucketSchema
2150
2315
 
2151
2316
  @atlaskit/adf-schema/schema-confluence for:
2152
-
2153
2317
  - confluenceSchema
2154
2318
  - confluenceSchemaWithMediaSingle
2155
2319
 
2156
2320
  @atlaskit/adf-schema/schema-jira for:
2157
-
2158
2321
  - default as createJIRASchema
2159
2322
  - isSchemaWithLists
2160
2323
  - isSchemaWithMentions
@@ -2169,31 +2332,35 @@
2169
2332
  - isSchemaWithTables
2170
2333
 
2171
2334
  @atlaskit/adf-schema/schema-default for:
2172
-
2173
2335
  - defaultSchema
2174
2336
  - getSchemaBasedOnStage
2175
2337
  - defaultSchemaConfig
2176
2338
 
2177
- This change also includes codemods in @atlaskit/adf-schema to update these entry points. It also introduces a new util function "changeImportEntryPoint" to @atlaskit/codemod-utils to handle this scenario.
2339
+ This change also includes codemods in @atlaskit/adf-schema to update these entry points. It also
2340
+ introduces a new util function "changeImportEntryPoint" to @atlaskit/codemod-utils to handle this
2341
+ scenario.
2178
2342
 
2179
2343
  ### Patch Changes
2180
2344
 
2181
- - [`d079ab083af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d079ab083af) - Don't make mediaInline trigger if pasted dom node is an img tag
2182
- - [`0663a4954aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0663a4954aa) - [ED-14690] Add safe check for text node on SetAttrs custom step
2345
+ - [`d079ab083af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d079ab083af) - Don't
2346
+ make mediaInline trigger if pasted dom node is an img tag
2347
+ - [`0663a4954aa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0663a4954aa) -
2348
+ [ED-14690] Add safe check for text node on SetAttrs custom step
2183
2349
  - Updated dependencies
2184
2350
 
2185
2351
  ## 22.1.0
2186
2352
 
2187
2353
  ### Minor Changes
2188
2354
 
2189
- - [`fd5028f6751`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5028f6751) - EDM-2873: Promote MediaInline to full schema
2355
+ - [`fd5028f6751`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fd5028f6751) -
2356
+ EDM-2873: Promote MediaInline to full schema
2190
2357
 
2191
2358
  ## 22.0.2
2192
2359
 
2193
2360
  ### Patch Changes
2194
2361
 
2195
- - [`03930b9f4c7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/03930b9f4c7) - ED-14253: fixed infinite transaction loop after uploading a file to the editor.
2196
-
2362
+ - [`03930b9f4c7`](https://bitbucket.org/atlassian/atlassian-frontend/commits/03930b9f4c7) -
2363
+ ED-14253: fixed infinite transaction loop after uploading a file to the editor.
2197
2364
  - updated ADF for MediaBaseAttributes.\_\_contextId to allow for null value
2198
2365
  - fixed Editor example page 2-comment-jira-bento
2199
2366
 
@@ -2201,21 +2368,22 @@
2201
2368
 
2202
2369
  ### Patch Changes
2203
2370
 
2204
- - [`c7a3ccf95cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7a3ccf95cd) - Patching versions to no longer reference localid from adf or smart-cards
2371
+ - [`c7a3ccf95cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c7a3ccf95cd) - Patching
2372
+ versions to no longer reference localid from adf or smart-cards
2205
2373
 
2206
2374
  ## 22.0.0
2207
2375
 
2208
2376
  ### Major Changes
2209
2377
 
2210
- - [`439cf07029a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/439cf07029a) - ED-13881 Move @atlaskit/adf-schema test helpers to @atlaskit/editor-test-helpers
2378
+ - [`439cf07029a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/439cf07029a) - ED-13881
2379
+ Move @atlaskit/adf-schema test helpers to @atlaskit/editor-test-helpers
2211
2380
 
2212
- A new entry point for @atlaskit/editor-test-helpers/adf-schema has been
2213
- introduced. All test helpers that previously lived under @atlaskit/adf-schema
2214
- have been moved there instead.
2381
+ A new entry point for @atlaskit/editor-test-helpers/adf-schema has been introduced. All test
2382
+ helpers that previously lived under @atlaskit/adf-schema have been moved there instead.
2215
2383
 
2216
- Imports inside @atlaskit/adf-schema that previously relied on relative paths, or
2217
- imports from other packages that referred to @atlaskit/adf-schema/test-helpers,
2218
- should be updated to reference @atlaskit/editor-test-helpers/adf-schema instead.
2384
+ Imports inside @atlaskit/adf-schema that previously relied on relative paths, or imports from
2385
+ other packages that referred to @atlaskit/adf-schema/test-helpers, should be updated to reference
2386
+ @atlaskit/editor-test-helpers/adf-schema instead.
2219
2387
 
2220
2388
  Old usages:
2221
2389
 
@@ -2230,11 +2398,12 @@
2230
2398
  import { schema } from '@atlaskit/editor-test-helpers/adf-schema';
2231
2399
  ```
2232
2400
 
2233
- - [`a86ac5fa763`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a86ac5fa763) - ED-13881 Migrate @atlaskit/adf-schema to declarative entry points
2401
+ - [`a86ac5fa763`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a86ac5fa763) - ED-13881
2402
+ Migrate @atlaskit/adf-schema to declarative entry points
2234
2403
 
2235
- We are now explicitly declaring entry points as public API. Since some consumers
2236
- may have previously relied on file-based entry points for the generated JSON
2237
- schema outputs, this is considered a breaking change.
2404
+ We are now explicitly declaring entry points as public API. Since some consumers may have
2405
+ previously relied on file-based entry points for the generated JSON schema outputs, this is
2406
+ considered a breaking change.
2238
2407
 
2239
2408
  Old usage:
2240
2409
 
@@ -2250,221 +2419,285 @@
2250
2419
  import { stageZeroSchema } from '@atlaskit/adf-schema/json-schema';
2251
2420
  ```
2252
2421
 
2253
- - [`304351e4b1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/304351e4b1e) - CETI-241 - Added additional panel ADF attributes (panelIconId, panelIconText) to uniquely identify custom panel emojis. The change has been categorised as major since it is a change to the full-schema ADF. However, the custom panel feature is behind a feature flag, has not yet been released to production, and is only currently planned for release to Confluence. See ADF change #61 for further details.
2254
- - [`3b49ff824ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b49ff824ec) - ED-14043 update prosemirror schema to only allow link mark on children of paragraph and mediaSingle
2422
+ - [`304351e4b1e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/304351e4b1e) -
2423
+ CETI-241 - Added additional panel ADF attributes (panelIconId, panelIconText) to uniquely identify
2424
+ custom panel emojis. The change has been categorised as major since it is a change to the
2425
+ full-schema ADF. However, the custom panel feature is behind a feature flag, has not yet been
2426
+ released to production, and is only currently planned for release to Confluence. See ADF change
2427
+ #61 for further details.
2428
+ - [`3b49ff824ec`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b49ff824ec) - ED-14043
2429
+ update prosemirror schema to only allow link mark on children of paragraph and mediaSingle
2255
2430
 
2256
2431
  ### Minor Changes
2257
2432
 
2258
- - [`e9aea0f4191`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9aea0f4191) - CETI-243 Handling Duplicate Emoji Issue When Copying From Renderer
2433
+ - [`e9aea0f4191`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e9aea0f4191) - CETI-243
2434
+ Handling Duplicate Emoji Issue When Copying From Renderer
2259
2435
 
2260
2436
  ### Patch Changes
2261
2437
 
2262
- - [`7f8be1a6a30`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f8be1a6a30) - clean stage0 artefacts from dataConsumer mark
2263
- - [`783bda0d683`](https://bitbucket.org/atlassian/atlassian-frontend/commits/783bda0d683) - Extra information added to analytics for toolbar change view options
2438
+ - [`7f8be1a6a30`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f8be1a6a30) - clean
2439
+ stage0 artefacts from dataConsumer mark
2440
+ - [`783bda0d683`](https://bitbucket.org/atlassian/atlassian-frontend/commits/783bda0d683) - Extra
2441
+ information added to analytics for toolbar change view options
2264
2442
 
2265
2443
  ## 21.0.0
2266
2444
 
2267
2445
  ### Major Changes
2268
2446
 
2269
- - [`5af69bfe9be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5af69bfe9be) - CETI-241 - Added additional panel ADF attributes (panelIconId, panelIconText) to uniquely identify custom panel emojis. The change has been categorised as major since it is a change to the full-schema ADF. However, the custom panel feature is behind a feature flag, has not yet been released to production, and is only currently planned for release to Confluence. See ADF change #61 for further details.
2447
+ - [`5af69bfe9be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5af69bfe9be) -
2448
+ CETI-241 - Added additional panel ADF attributes (panelIconId, panelIconText) to uniquely identify
2449
+ custom panel emojis. The change has been categorised as major since it is a change to the
2450
+ full-schema ADF. However, the custom panel feature is behind a feature flag, has not yet been
2451
+ released to production, and is only currently planned for release to Confluence. See ADF change
2452
+ #61 for further details.
2270
2453
 
2271
2454
  ### Minor Changes
2272
2455
 
2273
- - [`f110cbb7218`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f110cbb7218) - CETI-243 Handling Duplicate Emoji Issue When Copying From Renderer
2274
- - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - - Allow `table` nodes to have `fragment` marks
2456
+ - [`f110cbb7218`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f110cbb7218) - CETI-243
2457
+ Handling Duplicate Emoji Issue When Copying From Renderer
2458
+ - [`19d72473dfb`](https://bitbucket.org/atlassian/atlassian-frontend/commits/19d72473dfb) - - Allow
2459
+ `table` nodes to have `fragment` marks
2275
2460
  - Promote `fragment` mark to "full" ADF schema
2276
2461
 
2277
2462
  ## 20.1.3
2278
2463
 
2279
2464
  ### Patch Changes
2280
2465
 
2281
- - [`b4d09742c59`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4d09742c59) - [ED-14236] Add dataConsumer mark to defaultSchema on adf-schema
2466
+ - [`b4d09742c59`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b4d09742c59) -
2467
+ [ED-14236] Add dataConsumer mark to defaultSchema on adf-schema
2282
2468
 
2283
2469
  ## 20.1.2
2284
2470
 
2285
2471
  ### Patch Changes
2286
2472
 
2287
- - [`bfc3a31f7d0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bfc3a31f7d0) - ED-14130 fix copy paste block cards
2473
+ - [`bfc3a31f7d0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bfc3a31f7d0) - ED-14130
2474
+ fix copy paste block cards
2288
2475
 
2289
2476
  ## 20.1.1
2290
2477
 
2291
2478
  ### Patch Changes
2292
2479
 
2293
- - [`41265fc80a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41265fc80a4) - MEX-1245 Ensure nodes with block marks can be parsed during
2294
- parseDOM/toDOM (e.g. linked media)
2480
+ - [`41265fc80a4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41265fc80a4) - MEX-1245
2481
+ Ensure nodes with block marks can be parsed during parseDOM/toDOM (e.g. linked media)
2295
2482
 
2296
2483
  ## 20.1.0
2297
2484
 
2298
2485
  ### Minor Changes
2299
2486
 
2300
- - [`d6c140182ce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6c140182ce) - [ED-14095] Allow links along textColor marks to match the current ADF Schema
2301
- - [`b9cd2373064`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9cd2373064) - [ED-14106] Reset custom color when the node is inside a link
2487
+ - [`d6c140182ce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6c140182ce) -
2488
+ [ED-14095] Allow links along textColor marks to match the current ADF Schema
2489
+ - [`b9cd2373064`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9cd2373064) -
2490
+ [ED-14106] Reset custom color when the node is inside a link
2302
2491
 
2303
2492
  ## 20.0.1
2304
2493
 
2305
2494
  ### Patch Changes
2306
2495
 
2307
- - [`977f778e630`](https://bitbucket.org/atlassian/atlassian-frontend/commits/977f778e630) - Add action elements to paste allowlist
2496
+ - [`977f778e630`](https://bitbucket.org/atlassian/atlassian-frontend/commits/977f778e630) - Add
2497
+ action elements to paste allowlist
2308
2498
 
2309
2499
  ## 20.0.0
2310
2500
 
2311
2501
  ### Major Changes
2312
2502
 
2313
- - [`3a2a5e14fdc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3a2a5e14fdc) - As we are moving to full schema, merged the customPanel nodeSpec with panel nodeSpec
2314
- - [`8f0577e0eb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f0577e0eb1) - [ux] Promoted captions to full schema and better support of wikimarkup, email and slack renderer
2503
+ - [`3a2a5e14fdc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3a2a5e14fdc) - As we
2504
+ are moving to full schema, merged the customPanel nodeSpec with panel nodeSpec
2505
+ - [`8f0577e0eb1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f0577e0eb1) - [ux]
2506
+ Promoted captions to full schema and better support of wikimarkup, email and slack renderer
2315
2507
 
2316
2508
  ### Minor Changes
2317
2509
 
2318
- - [`65a541166fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65a541166fe) - ED-13766 fix pm node spec for media single with caption
2319
- - [`83154234335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/83154234335) - ED-13522 Add safe URL check to ADF validator (smart cards now show as unsupported content if the check fails)
2320
- - [`8bbb96540ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8bbb96540ea) - Add "fragment" mark to stage0 ADF schema
2510
+ - [`65a541166fe`](https://bitbucket.org/atlassian/atlassian-frontend/commits/65a541166fe) - ED-13766
2511
+ fix pm node spec for media single with caption
2512
+ - [`83154234335`](https://bitbucket.org/atlassian/atlassian-frontend/commits/83154234335) - ED-13522
2513
+ Add safe URL check to ADF validator (smart cards now show as unsupported content if the check
2514
+ fails)
2515
+ - [`8bbb96540ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8bbb96540ea) - Add
2516
+ "fragment" mark to stage0 ADF schema
2321
2517
 
2322
2518
  ### Patch Changes
2323
2519
 
2324
- - [`c6feed82071`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6feed82071) - ED-11632: Bump prosemirror packages;
2325
-
2520
+ - [`c6feed82071`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c6feed82071) -
2521
+ ED-11632: Bump prosemirror packages;
2326
2522
  - prosmirror-commands 1.1.4 -> 1.1.11,
2327
2523
  - prosemirror-model 1.11.0 -> 1.14.3,
2328
2524
  - prosemirror-state 1.3.3 -> 1.3.4,
2329
2525
  - prosemirror-transform 1.2.8 -> 1.3.2,
2330
2526
  - prosemirror-view 1.15.4 + 1.18.8 -> 1.20.2.
2331
2527
 
2332
- - [`297d113d54b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/297d113d54b) - Unskip backwrd compat test and fix mistakes
2528
+ - [`297d113d54b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/297d113d54b) - Unskip
2529
+ backwrd compat test and fix mistakes
2333
2530
  - Updated dependencies
2334
2531
 
2335
2532
  ## 19.3.1
2336
2533
 
2337
2534
  ### Patch Changes
2338
2535
 
2339
- - [`f4ce830a2f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f4ce830a2f2) - [HOT-97158] Fix paste link applying marks on block nodes
2536
+ - [`f4ce830a2f2`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f4ce830a2f2) -
2537
+ [HOT-97158] Fix paste link applying marks on block nodes
2340
2538
 
2341
2539
  ## 19.3.0
2342
2540
 
2343
2541
  ### Minor Changes
2344
2542
 
2345
- - [`93da0afefce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93da0afefce) - CETI-78 Change panel nodeSpec to handle paste when feature flag is off
2346
- - [`971845eac0d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/971845eac0d) - CETI-96 Added new rule to emoji to solve the duplicate icon issue when we copy from renderer
2347
- - [`e856b56fd31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e856b56fd31) - ED-13669 reuse same links normalization method in plugin and adf schema
2543
+ - [`93da0afefce`](https://bitbucket.org/atlassian/atlassian-frontend/commits/93da0afefce) - CETI-78
2544
+ Change panel nodeSpec to handle paste when feature flag is off
2545
+ - [`971845eac0d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/971845eac0d) - CETI-96
2546
+ Added new rule to emoji to solve the duplicate icon issue when we copy from renderer
2547
+ - [`e856b56fd31`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e856b56fd31) - ED-13669
2548
+ reuse same links normalization method in plugin and adf schema
2348
2549
 
2349
2550
  ## 19.2.3
2350
2551
 
2351
2552
  ### Patch Changes
2352
2553
 
2353
- - [`a80f50a843c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a80f50a843c) - [HOT-97158] Fix paste link heading issue
2554
+ - [`a80f50a843c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a80f50a843c) -
2555
+ [HOT-97158] Fix paste link heading issue
2354
2556
 
2355
2557
  ## 19.2.2
2356
2558
 
2357
2559
  ### Patch Changes
2358
2560
 
2359
- - [`b85e7ce12cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b85e7ce12cd) - Internal upgrade of memoize-one to 6.0.0
2561
+ - [`b85e7ce12cd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b85e7ce12cd) - Internal
2562
+ upgrade of memoize-one to 6.0.0
2360
2563
 
2361
2564
  ## 19.2.1
2362
2565
 
2363
2566
  ### Patch Changes
2364
2567
 
2365
- - [`a55dbcb3ecd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a55dbcb3ecd) - [ED-13882] Fix layout section ProseMirror Schema content
2568
+ - [`a55dbcb3ecd`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a55dbcb3ecd) -
2569
+ [ED-13882] Fix layout section ProseMirror Schema content
2366
2570
 
2367
2571
  ## 19.2.0
2368
2572
 
2369
2573
  ### Minor Changes
2370
2574
 
2371
- - [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - CETI-72 Web: Copy from renderer loses custom panel attributes
2372
- - [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Add single column support for layouts
2373
- - [`9fbaa50c904`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fbaa50c904) - ED-13133 fixed broken table with sticky headers after undo merge cells with tableCellOptimisation on
2374
- - [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - [ux] add single layout support for layout
2375
- - [`6840e64d105`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6840e64d105) - CETI-124: Revert panel content wrapper from span to div
2575
+ - [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - CETI-72
2576
+ Web: Copy from renderer loses custom panel attributes
2577
+ - [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - Add
2578
+ single column support for layouts
2579
+ - [`9fbaa50c904`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fbaa50c904) - ED-13133
2580
+ fixed broken table with sticky headers after undo merge cells with tableCellOptimisation on
2581
+ - [`cf853e39278`](https://bitbucket.org/atlassian/atlassian-frontend/commits/cf853e39278) - [ux] add
2582
+ single layout support for layout
2583
+ - [`6840e64d105`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6840e64d105) -
2584
+ CETI-124: Revert panel content wrapper from span to div
2376
2585
 
2377
2586
  ## 19.1.0
2378
2587
 
2379
2588
  ### Minor Changes
2380
2589
 
2381
- - [`ad67f6684f1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad67f6684f1) - Add MediaInline to ADF Stage0 schema
2382
- - [`71bb1bb3cd0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71bb1bb3cd0) - [ED-12933] Add new custom step for TypeAhead local flow control
2590
+ - [`ad67f6684f1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ad67f6684f1) - Add
2591
+ MediaInline to ADF Stage0 schema
2592
+ - [`71bb1bb3cd0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/71bb1bb3cd0) -
2593
+ [ED-12933] Add new custom step for TypeAhead local flow control
2383
2594
 
2384
2595
  ## 19.0.0
2385
2596
 
2386
2597
  ### Major Changes
2387
2598
 
2388
- - [`96c6146eef1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/96c6146eef1) - ED-13187: localId optional & empty values filtered
2389
- - [`2aef13b22d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2aef13b22d8) - ED-12604: add localId for tables and dataConsumer mark for extensions in full schema
2599
+ - [`96c6146eef1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/96c6146eef1) -
2600
+ ED-13187: localId optional & empty values filtered
2601
+ - [`2aef13b22d8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2aef13b22d8) -
2602
+ ED-12604: add localId for tables and dataConsumer mark for extensions in full schema
2390
2603
 
2391
2604
  ### Patch Changes
2392
2605
 
2393
- - [`aa6f29f8c3d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa6f29f8c3d) - Setting up empty string value for alt attribute (images) by default
2606
+ - [`aa6f29f8c3d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa6f29f8c3d) - Setting
2607
+ up empty string value for alt attribute (images) by default
2394
2608
 
2395
2609
  ## 18.2.0
2396
2610
 
2397
2611
  ### Minor Changes
2398
2612
 
2399
- - [`489e4d18bc1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/489e4d18bc1) - ED-12891 Enable indentation as a valid mark on headings in layouts to align PM schema with ADF schema
2613
+ - [`489e4d18bc1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/489e4d18bc1) - ED-12891
2614
+ Enable indentation as a valid mark on headings in layouts to align PM schema with ADF schema
2400
2615
 
2401
2616
  ### Patch Changes
2402
2617
 
2403
- - [`18a96c228f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18a96c228f8) - EDM-2024: fix MediaGroup Prosemirror Schema incompatibility
2618
+ - [`18a96c228f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/18a96c228f8) -
2619
+ EDM-2024: fix MediaGroup Prosemirror Schema incompatibility
2404
2620
 
2405
2621
  ## 18.1.1
2406
2622
 
2407
2623
  ### Patch Changes
2408
2624
 
2409
- - [`d9e3deda557`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9e3deda557) - ED-12545 We are adding compatibility test for ADF Schema with ProseMirror Schema
2625
+ - [`d9e3deda557`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d9e3deda557) - ED-12545
2626
+ We are adding compatibility test for ADF Schema with ProseMirror Schema
2410
2627
 
2411
2628
  ## 18.1.0
2412
2629
 
2413
2630
  ### Minor Changes
2414
2631
 
2415
- - [`9fef23ee77c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fef23ee77c) - ED-12477 Add unsupported node capability to Media Group
2632
+ - [`9fef23ee77c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fef23ee77c) - ED-12477
2633
+ Add unsupported node capability to Media Group
2416
2634
 
2417
2635
  ## 18.0.0
2418
2636
 
2419
2637
  ### Major Changes
2420
2638
 
2421
- - [`7e6fe5abae9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e6fe5abae9) - revert heading with indentation in table cell content
2639
+ - [`7e6fe5abae9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e6fe5abae9) - revert
2640
+ heading with indentation in table cell content
2422
2641
 
2423
2642
  ## 17.0.0
2424
2643
 
2425
2644
  ### Major Changes
2426
2645
 
2427
- - [`ddecaf6f306`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ddecaf6f306) - ED-12436 remove 'allowLocalIdGeneration' from Editor as extension localId is added to full schema
2428
- - [`084abc13201`](https://bitbucket.org/atlassian/atlassian-frontend/commits/084abc13201) - ED-12265 Add unsupport content support to media single
2429
- ED-12265 Remove `caption` from default schema - Renderer
2430
- - [`9d3472d1a17`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d3472d1a17) - ED-12889: Remove heading with indentation from table cell content
2646
+ - [`ddecaf6f306`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ddecaf6f306) - ED-12436
2647
+ remove 'allowLocalIdGeneration' from Editor as extension localId is added to full schema
2648
+ - [`084abc13201`](https://bitbucket.org/atlassian/atlassian-frontend/commits/084abc13201) - ED-12265
2649
+ Add unsupport content support to media single ED-12265 Remove `caption` from default schema -
2650
+ Renderer
2651
+ - [`9d3472d1a17`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d3472d1a17) -
2652
+ ED-12889: Remove heading with indentation from table cell content
2431
2653
 
2432
2654
  ### Minor Changes
2433
2655
 
2434
- - [`ee1c658ca80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee1c658ca80) - ED-12270 Add unsupported content support for decision lists and task lists
2435
- - [`5fba22a5a21`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5fba22a5a21) - [NO ISSUE] Move Table Sort Custom Step to the ADF package
2656
+ - [`ee1c658ca80`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee1c658ca80) - ED-12270
2657
+ Add unsupported content support for decision lists and task lists
2658
+ - [`5fba22a5a21`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5fba22a5a21) - [NO
2659
+ ISSUE] Move Table Sort Custom Step to the ADF package
2436
2660
 
2437
2661
  ## 16.0.0
2438
2662
 
2439
2663
  ### Major Changes
2440
2664
 
2441
- - [`f973bb5dde8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f973bb5dde8) - [ux] ED-12782 Remove codeblock languages from adf-schema
2665
+ - [`f973bb5dde8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f973bb5dde8) - [ux]
2666
+ ED-12782 Remove codeblock languages from adf-schema
2442
2667
 
2443
2668
  BREAKING CHANGE
2444
2669
 
2445
- `@atlaskit/adf-schema` is not longer exporting: `DEFAULT_LANGUAGES`, `createLanguageList`, `filterSupportedLanguages`, `findMatchedLanguage`, `getLanguageIdentifier` and `Language`. This are now used internally in `@atlaskit/editor-core`
2670
+ `@atlaskit/adf-schema` is not longer exporting: `DEFAULT_LANGUAGES`, `createLanguageList`,
2671
+ `filterSupportedLanguages`, `findMatchedLanguage`, `getLanguageIdentifier` and `Language`. This
2672
+ are now used internally in `@atlaskit/editor-core`
2446
2673
 
2447
2674
  ### Minor Changes
2448
2675
 
2449
- - [`1fbe305bf7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fbe305bf7d) - ED-12273 Unsupported content support for Layout
2676
+ - [`1fbe305bf7d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1fbe305bf7d) - ED-12273
2677
+ Unsupported content support for Layout
2450
2678
 
2451
2679
  ## 15.3.0
2452
2680
 
2453
2681
  ### Minor Changes
2454
2682
 
2455
- - [`8c84c29006b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c84c29006b) - Improve data-consumer mark being nested, aAdd basic doc tests for data consumer
2456
- - [`621f12ec284`](https://bitbucket.org/atlassian/atlassian-frontend/commits/621f12ec284) - Update adf util specs to support unsupported content changes
2683
+ - [`8c84c29006b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8c84c29006b) - Improve
2684
+ data-consumer mark being nested, aAdd basic doc tests for data consumer
2685
+ - [`621f12ec284`](https://bitbucket.org/atlassian/atlassian-frontend/commits/621f12ec284) - Update
2686
+ adf util specs to support unsupported content changes
2457
2687
 
2458
2688
  ### Patch Changes
2459
2689
 
2460
- - [`794b81df22c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/794b81df22c) - Removes surplus style whitespace rule on code mark.
2690
+ - [`794b81df22c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/794b81df22c) - Removes
2691
+ surplus style whitespace rule on code mark.
2461
2692
 
2462
2693
  ## 15.2.0
2463
2694
 
2464
2695
  ### Minor Changes
2465
2696
 
2466
- - [`653093877f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/653093877f8) - Update data-consumer behaviour for json transforming
2467
- - [`357edf7b4a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/357edf7b4a1) - ED-12266 Extend code block to support UnsupportedInline content.
2697
+ - [`653093877f8`](https://bitbucket.org/atlassian/atlassian-frontend/commits/653093877f8) - Update
2698
+ data-consumer behaviour for json transforming
2699
+ - [`357edf7b4a1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/357edf7b4a1) - ED-12266
2700
+ Extend code block to support UnsupportedInline content.
2468
2701
 
2469
2702
  ## 15.1.1
2470
2703
 
@@ -2476,140 +2709,179 @@
2476
2709
 
2477
2710
  ### Minor Changes
2478
2711
 
2479
- - [`330c1fce7f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/330c1fce7f9) - ED-12264 Add unsupported content capability to panel and blockquote
2712
+ - [`330c1fce7f9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/330c1fce7f9) - ED-12264
2713
+ Add unsupported content capability to panel and blockquote
2480
2714
 
2481
2715
  ### Patch Changes
2482
2716
 
2483
- - [`5089bd2544d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5089bd2544d) - ED-11919: generate localId for tables
2484
- - [`58b170725be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58b170725be) - Renamed @atlaskit/editor-test-helpers/schema-builder to @atlaskit/editor-test-helpers/doc-builder
2717
+ - [`5089bd2544d`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5089bd2544d) -
2718
+ ED-11919: generate localId for tables
2719
+ - [`58b170725be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/58b170725be) - Renamed
2720
+ @atlaskit/editor-test-helpers/schema-builder to @atlaskit/editor-test-helpers/doc-builder
2485
2721
 
2486
2722
  ## 15.0.0
2487
2723
 
2488
2724
  ### Major Changes
2489
2725
 
2490
- - [`db9dec112b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db9dec112b1) - ED-10613: clean up text colour experiment
2726
+ - [`db9dec112b1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db9dec112b1) -
2727
+ ED-10613: clean up text colour experiment
2491
2728
 
2492
2729
  ### Minor Changes
2493
2730
 
2494
- - [`6d748ea5140`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d748ea5140) - New stage-0 data consumer mark in ADF schema
2731
+ - [`6d748ea5140`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6d748ea5140) - New
2732
+ stage-0 data consumer mark in ADF schema
2495
2733
 
2496
2734
  ### Patch Changes
2497
2735
 
2498
- - [`e6bd5669a53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6bd5669a53) - ED-10888 Deduplicate AJV initialization from our codebase
2499
- - [`d2e70ebaaa9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2e70ebaaa9) - NO-ISSUE: updated editor tests to use 'doc: DocBuilder' instead of 'doc: any'
2500
- - [`fe1c96a3d28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe1c96a3d28) - added DocBuilder type to @atlaskit/editor-test-helpers, replaced duplicate definitions and DocumentType
2736
+ - [`e6bd5669a53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6bd5669a53) - ED-10888
2737
+ Deduplicate AJV initialization from our codebase
2738
+ - [`d2e70ebaaa9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d2e70ebaaa9) -
2739
+ NO-ISSUE: updated editor tests to use 'doc: DocBuilder' instead of 'doc: any'
2740
+ - [`fe1c96a3d28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe1c96a3d28) - added
2741
+ DocBuilder type to @atlaskit/editor-test-helpers, replaced duplicate definitions and DocumentType
2501
2742
 
2502
2743
  ## 14.1.0
2503
2744
 
2504
2745
  ### Minor Changes
2505
2746
 
2506
- - [`e6033cf5a7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6033cf5a7b) - HOT-94716 Add embedCard to allowable content in bodiedExtension
2747
+ - [`e6033cf5a7b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e6033cf5a7b) -
2748
+ HOT-94716 Add embedCard to allowable content in bodiedExtension
2507
2749
 
2508
2750
  ## 14.0.0
2509
2751
 
2510
2752
  ### Major Changes
2511
2753
 
2512
- - [`85cc08ec2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85cc08ec2e6) - [ED-11353] Adds the input method for undo/redo events
2754
+ - [`85cc08ec2e6`](https://bitbucket.org/atlassian/atlassian-frontend/commits/85cc08ec2e6) -
2755
+ [ED-11353] Adds the input method for undo/redo events
2513
2756
 
2514
2757
  #Breaking Change
2515
2758
 
2516
2759
  `adf-schema`
2517
2760
 
2518
- AnalyticsStep doesn't need the `handleAnalyticsEvent: HandleAnalyticsEvent<P>` anymore.
2519
- We are submitting the events using the editor-core plugin `analytics`. On this file:
2761
+ AnalyticsStep doesn't need the `handleAnalyticsEvent: HandleAnalyticsEvent<P>` anymore. We are
2762
+ submitting the events using the editor-core plugin `analytics`. On this file:
2520
2763
  `packages/editor/editor-core/src/plugins/analytics/plugin.ts`
2521
2764
 
2522
- This will fix a hard to catch bug where the events were being dispatched before the transaction being applied.
2523
- The transaction wasn't used, but the event was dispatched anyway, causing a data mismatch between user experience and actions.
2765
+ This will fix a hard to catch bug where the events were being dispatched before the transaction
2766
+ being applied. The transaction wasn't used, but the event was dispatched anyway, causing a data
2767
+ mismatch between user experience and actions.
2524
2768
 
2525
2769
  ### Minor Changes
2526
2770
 
2527
- - [`be0bfb03f12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be0bfb03f12) - [ux] Implement syntax highlighting in editor code-block
2771
+ - [`be0bfb03f12`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be0bfb03f12) - [ux]
2772
+ Implement syntax highlighting in editor code-block
2528
2773
 
2529
2774
  ### Patch Changes
2530
2775
 
2531
- - [`ffbe78153cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ffbe78153cf) - New stage0 ADF change: localId attribute on Table nodes
2776
+ - [`ffbe78153cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ffbe78153cf) - New
2777
+ stage0 ADF change: localId attribute on Table nodes
2532
2778
 
2533
2779
  ## 13.7.2
2534
2780
 
2535
2781
  ### Patch Changes
2536
2782
 
2537
- - [`b36f8119df5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b36f8119df5) - Add in keymap for moving to gap cursor from caption
2538
- - [`d01a017e81e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d01a017e81e) - fixed schema node type definitions to be more consistent
2783
+ - [`b36f8119df5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b36f8119df5) - Add in
2784
+ keymap for moving to gap cursor from caption
2785
+ - [`d01a017e81e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d01a017e81e) - fixed
2786
+ schema node type definitions to be more consistent
2539
2787
 
2540
2788
  ## 13.7.1
2541
2789
 
2542
2790
  ### Patch Changes
2543
2791
 
2544
- - [`3405124622e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3405124622e) - ED-11742 Fix table custom step start position
2545
- - [`04649ad9889`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04649ad9889) - ED-10369: fixed table breakout layout when pasted from renderer
2546
- - [`c3ff456f166`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3ff456f166) - ED-11860 fix renderer code block content paste inconsistencies
2792
+ - [`3405124622e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3405124622e) - ED-11742
2793
+ Fix table custom step start position
2794
+ - [`04649ad9889`](https://bitbucket.org/atlassian/atlassian-frontend/commits/04649ad9889) -
2795
+ ED-10369: fixed table breakout layout when pasted from renderer
2796
+ - [`c3ff456f166`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c3ff456f166) - ED-11860
2797
+ fix renderer code block content paste inconsistencies
2547
2798
 
2548
2799
  ## 13.7.0
2549
2800
 
2550
2801
  ### Minor Changes
2551
2802
 
2552
- - [`70f47afdee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f47afdee) - Added unsupportedBlock support for mediaSingle as a child
2553
- - [`714fd9e922`](https://bitbucket.org/atlassian/atlassian-frontend/commits/714fd9e922) - Promote media link mark to full schema
2803
+ - [`70f47afdee`](https://bitbucket.org/atlassian/atlassian-frontend/commits/70f47afdee) - Added
2804
+ unsupportedBlock support for mediaSingle as a child
2805
+ - [`714fd9e922`](https://bitbucket.org/atlassian/atlassian-frontend/commits/714fd9e922) - Promote
2806
+ media link mark to full schema
2554
2807
 
2555
2808
  ## 13.6.0
2556
2809
 
2557
2810
  ### Minor Changes
2558
2811
 
2559
- - [`f523768cdc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f523768cdc) - Fix validator and schema for Image Captions
2812
+ - [`f523768cdc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/f523768cdc) - Fix
2813
+ validator and schema for Image Captions
2560
2814
 
2561
2815
  ### Patch Changes
2562
2816
 
2563
- - [`b7d42ec728`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7d42ec728) - [ux] ED-11631 Sort code block language list as case insensitive
2564
- - [`1bd969d9c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1bd969d9c1) - Fix re-renders in a table cell with the NodeView update
2565
- - [`9e76e3a5c5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e76e3a5c5) - [ux] Adding support to detect and render anchor links.
2817
+ - [`b7d42ec728`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7d42ec728) - [ux]
2818
+ ED-11631 Sort code block language list as case insensitive
2819
+ - [`1bd969d9c1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/1bd969d9c1) - Fix
2820
+ re-renders in a table cell with the NodeView update
2821
+ - [`9e76e3a5c5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9e76e3a5c5) - [ux]
2822
+ Adding support to detect and render anchor links.
2566
2823
 
2567
2824
  ## 13.5.0
2568
2825
 
2569
2826
  ### Minor Changes
2570
2827
 
2571
- - [`7f7643108f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f7643108f) - [ux] EmbedCard node's `width` attribute will have 100% default value now. For UI this means, embeds are 100% wide when inserted (instead of slightly smaller then 100% previously).
2828
+ - [`7f7643108f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7f7643108f) - [ux]
2829
+ EmbedCard node's `width` attribute will have 100% default value now. For UI this means, embeds are
2830
+ 100% wide when inserted (instead of slightly smaller then 100% previously).
2572
2831
 
2573
2832
  ### Patch Changes
2574
2833
 
2575
- - [`aa671045fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa671045fc) - [ux] ED-11300: allowed link mark under actionItem and decisionItem
2834
+ - [`aa671045fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/aa671045fc) - [ux]
2835
+ ED-11300: allowed link mark under actionItem and decisionItem
2576
2836
 
2577
2837
  ## 13.4.0
2578
2838
 
2579
2839
  ### Minor Changes
2580
2840
 
2581
- - [`21de2f736a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/21de2f736a) - fix: normalizeHexColor behaves normally when passed 'default'
2841
+ - [`21de2f736a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/21de2f736a) - fix:
2842
+ normalizeHexColor behaves normally when passed 'default'
2582
2843
 
2583
2844
  ## 13.3.1
2584
2845
 
2585
2846
  ### Patch Changes
2586
2847
 
2587
- - [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile packages using babel rather than tsc
2848
+ - [`d3265f19be`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d3265f19be) - Transpile
2849
+ packages using babel rather than tsc
2588
2850
 
2589
2851
  ## 13.3.0
2590
2852
 
2591
2853
  ### Minor Changes
2592
2854
 
2593
- - [`4fdb9762af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4fdb9762af) - ED-10792: allow shouldExclude() to work on enum values
2855
+ - [`4fdb9762af`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4fdb9762af) - ED-10792:
2856
+ allow shouldExclude() to work on enum values
2594
2857
 
2595
2858
  ### Patch Changes
2596
2859
 
2597
- - [`0175a00afc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0175a00afc) - [ED-10670] Update prosemirror-model type to use posAtIndex methods
2598
- - [`a242048609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a242048609) - Re-enable adf schema backwards compatibility check
2599
- - [`d6c23f1886`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6c23f1886) - Added dark mode support to table cell background colors
2600
- - [`db4e6ab0d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db4e6ab0d4) - EDM-1388: Toggle link mark on media and not mediaSingle
2860
+ - [`0175a00afc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0175a00afc) - [ED-10670]
2861
+ Update prosemirror-model type to use posAtIndex methods
2862
+ - [`a242048609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a242048609) - Re-enable
2863
+ adf schema backwards compatibility check
2864
+ - [`d6c23f1886`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d6c23f1886) - Added dark
2865
+ mode support to table cell background colors
2866
+ - [`db4e6ab0d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db4e6ab0d4) - EDM-1388:
2867
+ Toggle link mark on media and not mediaSingle
2601
2868
 
2602
2869
  ## 13.2.0
2603
2870
 
2604
2871
  ### Minor Changes
2605
2872
 
2606
- - [`a929e563b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a929e563b9) - Text color mark changed to be case insensitive
2607
- - [`eba787da28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eba787da28) - Allow link marks on media
2873
+ - [`a929e563b9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a929e563b9) - Text color
2874
+ mark changed to be case insensitive
2875
+ - [`eba787da28`](https://bitbucket.org/atlassian/atlassian-frontend/commits/eba787da28) - Allow link
2876
+ marks on media
2608
2877
 
2609
2878
  ### Patch Changes
2610
2879
 
2611
- - [`703752d487`](https://bitbucket.org/atlassian/atlassian-frontend/commits/703752d487) - ED-10647 Remove caret from prosemirror-model, prosemirror-keymap, prosemirror-state, prosemirror-transform to lock them down to an explicit version
2612
- - [`ff39f9f643`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff39f9f643) - ED-10614 Add match indexing (Confluence API) for annotation creation for the renderer
2880
+ - [`703752d487`](https://bitbucket.org/atlassian/atlassian-frontend/commits/703752d487) - ED-10647
2881
+ Remove caret from prosemirror-model, prosemirror-keymap, prosemirror-state, prosemirror-transform
2882
+ to lock them down to an explicit version
2883
+ - [`ff39f9f643`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff39f9f643) - ED-10614
2884
+ Add match indexing (Confluence API) for annotation creation for the renderer
2613
2885
 
2614
2886
  BEFORE
2615
2887
 
@@ -2638,80 +2910,101 @@
2638
2910
 
2639
2911
  ### Minor Changes
2640
2912
 
2641
- - [`a41378f853`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a41378f853) - Refactor & fix few cases of unsupported node attributes:
2642
-
2913
+ - [`a41378f853`](https://bitbucket.org/atlassian/atlassian-frontend/commits/a41378f853) - Refactor &
2914
+ fix few cases of unsupported node attributes:
2643
2915
  - Preseve attributes on nodes which do not support any attributes
2644
2916
  - Add unsupportedNodeAttribute to bulletList, layoutSection etc.
2645
2917
 
2646
2918
  ### Patch Changes
2647
2919
 
2648
- - [`e4abda244e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4abda244e) - ED-9912: replace prosemirror-tables with editor-tables
2649
- - [`3e652479cc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e652479cc) - ED-9912: use CellAttributes from editor-tables in adf-schema
2650
- - [`be142eec6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be142eec6e) - Refactor attributes validation and add unsupportedNodeAttribute mark in layoutsection
2920
+ - [`e4abda244e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4abda244e) - ED-9912:
2921
+ replace prosemirror-tables with editor-tables
2922
+ - [`3e652479cc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e652479cc) - ED-9912:
2923
+ use CellAttributes from editor-tables in adf-schema
2924
+ - [`be142eec6e`](https://bitbucket.org/atlassian/atlassian-frontend/commits/be142eec6e) - Refactor
2925
+ attributes validation and add unsupportedNodeAttribute mark in layoutsection
2651
2926
 
2652
2927
  ## 13.0.1
2653
2928
 
2654
2929
  ### Patch Changes
2655
2930
 
2656
- - [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules compiler option.
2657
- This requires version 3.8 of Typescript, read more about how we handle Typescript versions here: https://atlaskit.atlassian.com/get-started
2658
- Also add `typescript` to `devDependencies` to denote version that the package was built with.
2931
+ - [`5f58283e1f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/5f58283e1f) - Export
2932
+ types using Typescript's new "export type" syntax to satisfy Typescript's --isolatedModules
2933
+ compiler option. This requires version 3.8 of Typescript, read more about how we handle Typescript
2934
+ versions here: https://atlaskit.atlassian.com/get-started Also add `typescript` to
2935
+ `devDependencies` to denote version that the package was built with.
2659
2936
 
2660
2937
  ## 13.0.0
2661
2938
 
2662
2939
  ### Major Changes
2663
2940
 
2664
- - [`26ff0e5e9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26ff0e5e9a) - ED-10353 Added adf schema changes to support emoji panels
2941
+ - [`26ff0e5e9a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/26ff0e5e9a) - ED-10353
2942
+ Added adf schema changes to support emoji panels
2665
2943
 
2666
2944
  ### Minor Changes
2667
2945
 
2668
- - [`db7170dc53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db7170dc53) - Promote EmbedCard to full schema
2669
- - [`c536839013`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c536839013) - ED-10214 Add typeAheadQuery to default schema
2670
- - [`6e237a6753`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e237a6753) - Add optional caption to mediaSingle in adf schema for stage 0
2671
- - [`9a39500244`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a39500244) - Bump ProseMirror packages
2946
+ - [`db7170dc53`](https://bitbucket.org/atlassian/atlassian-frontend/commits/db7170dc53) - Promote
2947
+ EmbedCard to full schema
2948
+ - [`c536839013`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c536839013) - ED-10214
2949
+ Add typeAheadQuery to default schema
2950
+ - [`6e237a6753`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6e237a6753) - Add
2951
+ optional caption to mediaSingle in adf schema for stage 0
2952
+ - [`9a39500244`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9a39500244) - Bump
2953
+ ProseMirror packages
2672
2954
 
2673
2955
  Read more: https://product-fabric.atlassian.net/wiki/spaces/E/pages/1671956531/2020-08
2674
2956
 
2675
- - [`2e5e9bf891`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e5e9bf891) - ED-10123 Export Analytics Step from adf-schema instead of internal editor-core
2957
+ - [`2e5e9bf891`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e5e9bf891) - ED-10123
2958
+ Export Analytics Step from adf-schema instead of internal editor-core
2676
2959
 
2677
2960
  ### Patch Changes
2678
2961
 
2679
- - [`c90f346430`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c90f346430) - Remove @ts-ignores/@ts-expect-errors
2962
+ - [`c90f346430`](https://bitbucket.org/atlassian/atlassian-frontend/commits/c90f346430) - Remove
2963
+ @ts-ignores/@ts-expect-errors
2680
2964
 
2681
2965
  ## 12.3.0
2682
2966
 
2683
2967
  ### Minor Changes
2684
2968
 
2685
- - [`15fe5f8731`](https://bitbucket.org/atlassian/atlassian-frontend/commits/15fe5f8731) - ED-9601 Mark all nodes that don't support node selection with `selectable: false` in their node spec
2686
- - [`78de49291b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78de49291b) - [TWISTA-130] Exports AnnotationDataAttributes type and variable typo
2687
- - [`e4114d7053`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4114d7053) - ED-9607 - Preserve Unsupported Node attributes
2969
+ - [`15fe5f8731`](https://bitbucket.org/atlassian/atlassian-frontend/commits/15fe5f8731) - ED-9601
2970
+ Mark all nodes that don't support node selection with `selectable: false` in their node spec
2971
+ - [`78de49291b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/78de49291b) -
2972
+ [TWISTA-130] Exports AnnotationDataAttributes type and variable typo
2973
+ - [`e4114d7053`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e4114d7053) - ED-9607 -
2974
+ Preserve Unsupported Node attributes
2688
2975
 
2689
2976
  ### Patch Changes
2690
2977
 
2691
- - [`e485167c47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e485167c47) - ED-10018: bump prosemirror-tables to fix copy-pasting merged rows
2692
- - [`d0596d4bfa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0596d4bfa) - change Html and Csharp to HTML and C# in codeblock language list
2978
+ - [`e485167c47`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e485167c47) - ED-10018:
2979
+ bump prosemirror-tables to fix copy-pasting merged rows
2980
+ - [`d0596d4bfa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d0596d4bfa) - change
2981
+ Html and Csharp to HTML and C# in codeblock language list
2693
2982
 
2694
2983
  ## 12.2.2
2695
2984
 
2696
2985
  ### Patch Changes
2697
2986
 
2698
- - [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded to TypeScript 3.9.6 and tslib to 2.0.0
2987
+ - [`6c525a8229`](https://bitbucket.org/atlassian/atlassian-frontend/commits/6c525a8229) - Upgraded
2988
+ to TypeScript 3.9.6 and tslib to 2.0.0
2699
2989
 
2700
- Since tslib is a dependency for all our packages we recommend that products also follow this tslib upgrade
2701
- to prevent duplicates of tslib being bundled.
2990
+ Since tslib is a dependency for all our packages we recommend that products also follow this tslib
2991
+ upgrade to prevent duplicates of tslib being bundled.
2702
2992
 
2703
2993
  ## 12.2.1
2704
2994
 
2705
2995
  ### Patch Changes
2706
2996
 
2707
- - [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump required because of conflicts on wadmal release
2997
+ - [`76165ad82f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/76165ad82f) - Bump
2998
+ required because of conflicts on wadmal release
2708
2999
 
2709
3000
  ## 12.2.0
2710
3001
 
2711
3002
  ### Minor Changes
2712
3003
 
2713
- - [`50b49e0eb9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50b49e0eb9) - [ED-9780] allow link mark inside bodied extension
2714
- - [`abce19a6d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/abce19a6d1) - Change old Array style tuples to Tuple
3004
+ - [`50b49e0eb9`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50b49e0eb9) - [ED-9780]
3005
+ allow link mark inside bodied extension
3006
+ - [`abce19a6d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/abce19a6d1) - Change old
3007
+ Array style tuples to Tuple
2715
3008
 
2716
3009
  ```
2717
3010
  interface X extends Array<T | U> {
@@ -2725,52 +3018,66 @@
2725
3018
  type X = [T, T | U];
2726
3019
  ```
2727
3020
 
2728
- - [`8f843aaa4b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f843aaa4b) - EDM-927: Adding embeds inside expand and layouts
3021
+ - [`8f843aaa4b`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8f843aaa4b) - EDM-927:
3022
+ Adding embeds inside expand and layouts
2729
3023
 
2730
3024
  ### Patch Changes
2731
3025
 
2732
- - [`9fe56e9d64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fe56e9d64) - Revert TaskList and ItemList type
2733
- - [`0cd9a41d67`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0cd9a41d67) - ED-9843 Refactor spec based validator
3026
+ - [`9fe56e9d64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9fe56e9d64) - Revert
3027
+ TaskList and ItemList type
3028
+ - [`0cd9a41d67`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0cd9a41d67) - ED-9843
3029
+ Refactor spec based validator
2734
3030
 
2735
3031
  ## 12.1.0
2736
3032
 
2737
3033
  ### Minor Changes
2738
3034
 
2739
- - [`b7c4fc3b08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7c4fc3b08) - Preseve unsupported mark from getting lost
3035
+ - [`b7c4fc3b08`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b7c4fc3b08) - Preseve
3036
+ unsupported mark from getting lost
2740
3037
 
2741
3038
  ### Patch Changes
2742
3039
 
2743
- - [`7c6dc39447`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c6dc39447) - ED-9568 annotations are now preserved when copy/pasting; also updated general copy/paste behaviour to preserve formatting of the pasted content, so that e.g. copying italic text into bold will preserve both italic and bold.
3040
+ - [`7c6dc39447`](https://bitbucket.org/atlassian/atlassian-frontend/commits/7c6dc39447) - ED-9568
3041
+ annotations are now preserved when copy/pasting; also updated general copy/paste behaviour to
3042
+ preserve formatting of the pasted content, so that e.g. copying italic text into bold will
3043
+ preserve both italic and bold.
2744
3044
 
2745
3045
  ## 12.0.0
2746
3046
 
2747
3047
  ### Major Changes
2748
3048
 
2749
- - [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially dropping IE11 support, from this version onwards there are no warranties of the package working in IE11.
2750
- For more information see: https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
3049
+ - [`87f4720f27`](https://bitbucket.org/atlassian/atlassian-frontend/commits/87f4720f27) - Officially
3050
+ dropping IE11 support, from this version onwards there are no warranties of the package working in
3051
+ IE11. For more information see:
3052
+ https://community.developer.atlassian.com/t/atlaskit-to-drop-support-for-internet-explorer-11-from-1st-july-2020/39534
2751
3053
 
2752
3054
  ## 11.1.0
2753
3055
 
2754
3056
  ### Minor Changes
2755
3057
 
2756
- - [`01c27cf8cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01c27cf8cf) - ED-9552 Move SetAttrsStep into adf-schema
3058
+ - [`01c27cf8cf`](https://bitbucket.org/atlassian/atlassian-frontend/commits/01c27cf8cf) - ED-9552
3059
+ Move SetAttrsStep into adf-schema
2757
3060
 
2758
3061
  ## 11.0.0
2759
3062
 
2760
3063
  ### Major Changes
2761
3064
 
2762
- - [`0ae829a4ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ae829a4ea) - EDM-648: Adds resizing and alignment to embed cards
3065
+ - [`0ae829a4ea`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0ae829a4ea) - EDM-648:
3066
+ Adds resizing and alignment to embed cards
2763
3067
 
2764
3068
  ### Patch Changes
2765
3069
 
2766
- - [`fb1a9c8009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb1a9c8009) - [FM-3726] Call onAnnotationClick when user taps in inline comment on Renderer
2767
- - [`2589a3e4fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2589a3e4fc) - EDM-713: fix copy-paste from Renderer to Editor on Firefox
3070
+ - [`fb1a9c8009`](https://bitbucket.org/atlassian/atlassian-frontend/commits/fb1a9c8009) - [FM-3726]
3071
+ Call onAnnotationClick when user taps in inline comment on Renderer
3072
+ - [`2589a3e4fc`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2589a3e4fc) - EDM-713:
3073
+ fix copy-paste from Renderer to Editor on Firefox
2768
3074
 
2769
3075
  ## 10.0.0
2770
3076
 
2771
3077
  ### Major Changes
2772
3078
 
2773
- - [`e30894b112`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e30894b112) - [FM-3716] Breaking changing: AnnotationType is now AnnotationTypes
3079
+ - [`e30894b112`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e30894b112) - [FM-3716]
3080
+ Breaking changing: AnnotationType is now AnnotationTypes
2774
3081
 
2775
3082
  ```js
2776
3083
  // Before
@@ -2778,7 +3085,7 @@
2778
3085
  import { AnnotationType } from '@atlaskit/adf-schema';
2779
3086
 
2780
3087
  annotation({
2781
- type: AnnotationType,
3088
+ type: AnnotationType,
2782
3089
  });
2783
3090
 
2784
3091
  // After
@@ -2786,25 +3093,31 @@
2786
3093
  import { AnnotationTypes } from '@atlaskit/adf-schema';
2787
3094
 
2788
3095
  annotation({
2789
- type: AnnotationTypes.INLINE_COMMENT,
3096
+ type: AnnotationTypes.INLINE_COMMENT,
2790
3097
  });
2791
3098
  ```
2792
3099
 
2793
3100
  ### Minor Changes
2794
3101
 
2795
- - [`39b2e48c32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39b2e48c32) - Export new Add Column custom step in `@atlaskit/adf-schema/steps`
2796
- - [`50c333ab3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50c333ab3a) - EDM-216: Adds EmbedCards in the Editor under the flag - allowEmbeds in the UNSAFE_cards prop
3102
+ - [`39b2e48c32`](https://bitbucket.org/atlassian/atlassian-frontend/commits/39b2e48c32) - Export new
3103
+ Add Column custom step in `@atlaskit/adf-schema/steps`
3104
+ - [`50c333ab3a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/50c333ab3a) - EDM-216:
3105
+ Adds EmbedCards in the Editor under the flag - allowEmbeds in the UNSAFE_cards prop
2797
3106
 
2798
3107
  ### Patch Changes
2799
3108
 
2800
- - [`0964848b95`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0964848b95) - [FM-3505] Add support for inline comments in the renderer mobile bridge getElementScrollOffsetByNodeType function
2801
- - [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove unused dependencies
3109
+ - [`0964848b95`](https://bitbucket.org/atlassian/atlassian-frontend/commits/0964848b95) - [FM-3505]
3110
+ Add support for inline comments in the renderer mobile bridge getElementScrollOffsetByNodeType
3111
+ function
3112
+ - [`54d82b49f0`](https://bitbucket.org/atlassian/atlassian-frontend/commits/54d82b49f0) - Remove
3113
+ unused dependencies
2802
3114
 
2803
3115
  ## 9.0.2
2804
3116
 
2805
3117
  ### Patch Changes
2806
3118
 
2807
- - [`ee0333aa64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee0333aa64) - ED-6318 Add (None) option to top of code block language list- Updated dependencies
3119
+ - [`ee0333aa64`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ee0333aa64) - ED-6318
3120
+ Add (None) option to top of code block language list- Updated dependencies
2808
3121
 
2809
3122
  ## 9.0.1
2810
3123
 
@@ -2814,8 +3127,8 @@
2814
3127
 
2815
3128
  ED-9079 Disable spell check for text marked as inline code.
2816
3129
 
2817
- This prevents the red squiggly line appearing underneath inline code, and aligns the UX with codeblock which already disables spell check. - @atlaskit/editor-json-transformer@7.0.11
2818
-
3130
+ This prevents the red squiggly line appearing underneath inline code, and aligns the UX with
3131
+ codeblock which already disables spell check. - @atlaskit/editor-json-transformer@7.0.11
2819
3132
  - @atlaskit/editor-test-helpers@11.1.1
2820
3133
 
2821
3134
  ## 9.0.0
@@ -2826,8 +3139,7 @@
2826
3139
 
2827
3140
  ED-8517 Add localId support to Extension node
2828
3141
 
2829
- **BREAKING CHANGE**
2830
- `ExtensionContent` has been removed.
3142
+ **BREAKING CHANGE** `ExtensionContent` has been removed.
2831
3143
 
2832
3144
  ### Minor Changes
2833
3145
 
@@ -2839,13 +3151,19 @@
2839
3151
 
2840
3152
  - [patch][9f43b9f0ca](https://bitbucket.org/atlassian/atlassian-frontend/commits/9f43b9f0ca):
2841
3153
 
2842
- ED-9037 / ED-9039: ProseMirror node selection for mentions and emojis- Updated dependencies [7e26fba915](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e26fba915):
3154
+ ED-9037 / ED-9039: ProseMirror node selection for mentions and emojis- Updated dependencies
3155
+ [7e26fba915](https://bitbucket.org/atlassian/atlassian-frontend/commits/7e26fba915):
2843
3156
 
2844
- - Updated dependencies [205b05851a](https://bitbucket.org/atlassian/atlassian-frontend/commits/205b05851a):
2845
- - Updated dependencies [823d80f31c](https://bitbucket.org/atlassian/atlassian-frontend/commits/823d80f31c):
2846
- - Updated dependencies [3644fc1afe](https://bitbucket.org/atlassian/atlassian-frontend/commits/3644fc1afe):
2847
- - Updated dependencies [62f1f218d9](https://bitbucket.org/atlassian/atlassian-frontend/commits/62f1f218d9):
2848
- - Updated dependencies [6eb8c0799f](https://bitbucket.org/atlassian/atlassian-frontend/commits/6eb8c0799f):
3157
+ - Updated dependencies
3158
+ [205b05851a](https://bitbucket.org/atlassian/atlassian-frontend/commits/205b05851a):
3159
+ - Updated dependencies
3160
+ [823d80f31c](https://bitbucket.org/atlassian/atlassian-frontend/commits/823d80f31c):
3161
+ - Updated dependencies
3162
+ [3644fc1afe](https://bitbucket.org/atlassian/atlassian-frontend/commits/3644fc1afe):
3163
+ - Updated dependencies
3164
+ [62f1f218d9](https://bitbucket.org/atlassian/atlassian-frontend/commits/62f1f218d9):
3165
+ - Updated dependencies
3166
+ [6eb8c0799f](https://bitbucket.org/atlassian/atlassian-frontend/commits/6eb8c0799f):
2849
3167
  - @atlaskit/editor-test-helpers@11.1.0
2850
3168
  - @atlaskit/editor-json-transformer@7.0.10
2851
3169
 
@@ -2861,24 +3179,34 @@
2861
3179
 
2862
3180
  - [minor][bc29fbc030](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc29fbc030):
2863
3181
 
2864
- ED-8748 ED-8211: Update media linking UI experience in renderer, fixes other rendering issues and workarounds.
3182
+ ED-8748 ED-8211: Update media linking UI experience in renderer, fixes other rendering issues and
3183
+ workarounds.
2865
3184
 
2866
3185
  ### Patch Changes
2867
3186
 
2868
3187
  - [patch][1386afaecc](https://bitbucket.org/atlassian/atlassian-frontend/commits/1386afaecc):
2869
3188
 
2870
- ED-8751 Remove 'export \*' from adf-schema- [patch][584279e2ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/584279e2ae):
3189
+ ED-8751 Remove 'export \*' from adf-schema-
3190
+ [patch][584279e2ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/584279e2ae):
2871
3191
 
2872
- ED-8751 Remove circular dependencies, add eslint rule and recreate json schema caused by different import order- [patch][f83b67a761](https://bitbucket.org/atlassian/atlassian-frontend/commits/f83b67a761):
3192
+ ED-8751 Remove circular dependencies, add eslint rule and recreate json schema caused by different
3193
+ import order-
3194
+ [patch][f83b67a761](https://bitbucket.org/atlassian/atlassian-frontend/commits/f83b67a761):
2873
3195
 
2874
- EDM-407: Smart cards copy pasted from Renderer to Editor create mediaSingles- [patch][6b4fe5d0e0](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b4fe5d0e0):
3196
+ EDM-407: Smart cards copy pasted from Renderer to Editor create mediaSingles-
3197
+ [patch][6b4fe5d0e0](https://bitbucket.org/atlassian/atlassian-frontend/commits/6b4fe5d0e0):
2875
3198
 
2876
- preserve image alt-text when pasting rich text content- Updated dependencies [4bec09aa74](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bec09aa74):
3199
+ preserve image alt-text when pasting rich text content- Updated dependencies
3200
+ [4bec09aa74](https://bitbucket.org/atlassian/atlassian-frontend/commits/4bec09aa74):
2877
3201
 
2878
- - Updated dependencies [d63888b5e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63888b5e5):
2879
- - Updated dependencies [bdf25b1c4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdf25b1c4c):
2880
- - Updated dependencies [645918eda6](https://bitbucket.org/atlassian/atlassian-frontend/commits/645918eda6):
2881
- - Updated dependencies [fad8a16962](https://bitbucket.org/atlassian/atlassian-frontend/commits/fad8a16962):
3202
+ - Updated dependencies
3203
+ [d63888b5e5](https://bitbucket.org/atlassian/atlassian-frontend/commits/d63888b5e5):
3204
+ - Updated dependencies
3205
+ [bdf25b1c4c](https://bitbucket.org/atlassian/atlassian-frontend/commits/bdf25b1c4c):
3206
+ - Updated dependencies
3207
+ [645918eda6](https://bitbucket.org/atlassian/atlassian-frontend/commits/645918eda6):
3208
+ - Updated dependencies
3209
+ [fad8a16962](https://bitbucket.org/atlassian/atlassian-frontend/commits/fad8a16962):
2882
3210
  - @atlaskit/editor-test-helpers@11.0.0
2883
3211
  - @atlaskit/editor-json-transformer@7.0.9
2884
3212
 
@@ -2896,13 +3224,15 @@
2896
3224
 
2897
3225
  - [major][7baff84f38](https://bitbucket.org/atlassian/atlassian-frontend/commits/7baff84f38):
2898
3226
 
2899
- [ED-8521] Fix ADFSchema to invalidate any Expand Node with marks inside of Block nodes other than the Doc Node
3227
+ [ED-8521] Fix ADFSchema to invalidate any Expand Node with marks inside of Block nodes other than
3228
+ the Doc Node
2900
3229
 
2901
3230
  ### Minor Changes
2902
3231
 
2903
3232
  - [minor][c171660346](https://bitbucket.org/atlassian/atlassian-frontend/commits/c171660346):
2904
3233
 
2905
- Expose MediaADFAttrs- [minor][a5d0019a5e](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5d0019a5e):
3234
+ Expose MediaADFAttrs-
3235
+ [minor][a5d0019a5e](https://bitbucket.org/atlassian/atlassian-frontend/commits/a5d0019a5e):
2906
3236
 
2907
3237
  EDM-336: Add inlineCard to BB schema and support roundtripping
2908
3238
 
@@ -2910,13 +3240,18 @@
2910
3240
 
2911
3241
  - [patch][7602615cd4](https://bitbucket.org/atlassian/atlassian-frontend/commits/7602615cd4):
2912
3242
 
2913
- ED-8785 Improve stage-0 & type reference support in JSON Schema Generator- [patch][27fde59914](https://bitbucket.org/atlassian/atlassian-frontend/commits/27fde59914):
3243
+ ED-8785 Improve stage-0 & type reference support in JSON Schema Generator-
3244
+ [patch][27fde59914](https://bitbucket.org/atlassian/atlassian-frontend/commits/27fde59914):
2914
3245
 
2915
- ED-8626 Can click on "open link in a new tab" with `javascript:` links in editor.- [patch][b18fc8a1b6](https://bitbucket.org/atlassian/atlassian-frontend/commits/b18fc8a1b6):
3246
+ ED-8626 Can click on "open link in a new tab" with `javascript:` links in editor.-
3247
+ [patch][b18fc8a1b6](https://bitbucket.org/atlassian/atlassian-frontend/commits/b18fc8a1b6):
2916
3248
 
2917
- ED-8700 Alt text property on external images is added, this is required to make external images saved and validated correctly when they contain alt text.- Updated dependencies [7602615cd4](https://bitbucket.org/atlassian/atlassian-frontend/commits/7602615cd4):
3249
+ ED-8700 Alt text property on external images is added, this is required to make external images
3250
+ saved and validated correctly when they contain alt text.- Updated dependencies
3251
+ [7602615cd4](https://bitbucket.org/atlassian/atlassian-frontend/commits/7602615cd4):
2918
3252
 
2919
- - Updated dependencies [5e3aab8e77](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e3aab8e77):
3253
+ - Updated dependencies
3254
+ [5e3aab8e77](https://bitbucket.org/atlassian/atlassian-frontend/commits/5e3aab8e77):
2920
3255
  - @atlaskit/json-schema-generator@2.3.0
2921
3256
  - @atlaskit/editor-test-helpers@10.6.1
2922
3257
  - @atlaskit/editor-json-transformer@7.0.8
@@ -2933,9 +3268,11 @@
2933
3268
 
2934
3269
  - [patch][8183f7c8da](https://bitbucket.org/atlassian/atlassian-frontend/commits/8183f7c8da):
2935
3270
 
2936
- Remove Karma tests - based on AFP-960- Updated dependencies [9d6b02c04f](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d6b02c04f):
3271
+ Remove Karma tests - based on AFP-960- Updated dependencies
3272
+ [9d6b02c04f](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d6b02c04f):
2937
3273
 
2938
- - Updated dependencies [8183f7c8da](https://bitbucket.org/atlassian/atlassian-frontend/commits/8183f7c8da):
3274
+ - Updated dependencies
3275
+ [8183f7c8da](https://bitbucket.org/atlassian/atlassian-frontend/commits/8183f7c8da):
2939
3276
  - @atlaskit/editor-test-helpers@10.6.0
2940
3277
  - @atlaskit/editor-json-transformer@7.0.7
2941
3278
 
@@ -2945,8 +3282,8 @@
2945
3282
 
2946
3283
  - [patch][6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
2947
3284
 
2948
- Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
2949
-
3285
+ Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
3286
+ [6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
2950
3287
  - @atlaskit/editor-json-transformer@7.0.6
2951
3288
  - @atlaskit/editor-test-helpers@10.5.1
2952
3289
  - @atlaskit/json-schema-generator@2.2.1
@@ -2957,15 +3294,18 @@
2957
3294
 
2958
3295
  - [minor][b01fc0ceef](https://bitbucket.org/atlassian/atlassian-frontend/commits/b01fc0ceef):
2959
3296
 
2960
- ED-8151 Alt text is promoted to full schema. Feature flag and MediaOptions property UNSAFE_allowAltTextOnImages was renamed to allowAltTextOnImages.
3297
+ ED-8151 Alt text is promoted to full schema. Feature flag and MediaOptions property
3298
+ UNSAFE_allowAltTextOnImages was renamed to allowAltTextOnImages.
2961
3299
 
2962
3300
  ### Patch Changes
2963
3301
 
2964
3302
  - [patch][d085ab4419](https://bitbucket.org/atlassian/atlassian-frontend/commits/d085ab4419):
2965
3303
 
2966
- [ED-8109] Enable media link inside of block contents like layoutColumn and expand- Updated dependencies [3b19e30129](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b19e30129):
3304
+ [ED-8109] Enable media link inside of block contents like layoutColumn and expand- Updated
3305
+ dependencies [3b19e30129](https://bitbucket.org/atlassian/atlassian-frontend/commits/3b19e30129):
2967
3306
 
2968
- - Updated dependencies [fe4eaf06fc](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe4eaf06fc):
3307
+ - Updated dependencies
3308
+ [fe4eaf06fc](https://bitbucket.org/atlassian/atlassian-frontend/commits/fe4eaf06fc):
2969
3309
  - @atlaskit/editor-test-helpers@10.5.0
2970
3310
  - @atlaskit/editor-json-transformer@7.0.5
2971
3311
 
@@ -2981,9 +3321,11 @@
2981
3321
 
2982
3322
  - [patch][3e87f5596a](https://bitbucket.org/atlassian/atlassian-frontend/commits/3e87f5596a):
2983
3323
 
2984
- ED-8388 Strip annotation marks when pasting content into Editor- Updated dependencies [cfcd27b2e4](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfcd27b2e4):
3324
+ ED-8388 Strip annotation marks when pasting content into Editor- Updated dependencies
3325
+ [cfcd27b2e4](https://bitbucket.org/atlassian/atlassian-frontend/commits/cfcd27b2e4):
2985
3326
 
2986
- - Updated dependencies [ec929ab10e](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec929ab10e):
3327
+ - Updated dependencies
3328
+ [ec929ab10e](https://bitbucket.org/atlassian/atlassian-frontend/commits/ec929ab10e):
2987
3329
  - @atlaskit/editor-test-helpers@10.4.3
2988
3330
  - @atlaskit/editor-json-transformer@7.0.4
2989
3331
 
@@ -3003,7 +3345,8 @@
3003
3345
 
3004
3346
  ### Patch Changes
3005
3347
 
3006
- - Updated dependencies [edc4a4a7ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/edc4a4a7ae):
3348
+ - Updated dependencies
3349
+ [edc4a4a7ae](https://bitbucket.org/atlassian/atlassian-frontend/commits/edc4a4a7ae):
3007
3350
  - @atlaskit/editor-test-helpers@10.4.1
3008
3351
  - @atlaskit/editor-json-transformer@7.0.3
3009
3352
 
@@ -3019,10 +3362,13 @@
3019
3362
 
3020
3363
  - [patch][4eefd368a8](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eefd368a8):
3021
3364
 
3022
- default media collection to empty string instead of null- Updated dependencies [46e6693eb3](https://bitbucket.org/atlassian/atlassian-frontend/commits/46e6693eb3):
3365
+ default media collection to empty string instead of null- Updated dependencies
3366
+ [46e6693eb3](https://bitbucket.org/atlassian/atlassian-frontend/commits/46e6693eb3):
3023
3367
 
3024
- - Updated dependencies [83300f0b6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/83300f0b6d):
3025
- - Updated dependencies [e5dd37f7a4](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5dd37f7a4):
3368
+ - Updated dependencies
3369
+ [83300f0b6d](https://bitbucket.org/atlassian/atlassian-frontend/commits/83300f0b6d):
3370
+ - Updated dependencies
3371
+ [e5dd37f7a4](https://bitbucket.org/atlassian/atlassian-frontend/commits/e5dd37f7a4):
3026
3372
  - @atlaskit/editor-test-helpers@10.4.0
3027
3373
  - @atlaskit/editor-json-transformer@7.0.2
3028
3374
 
@@ -3042,7 +3388,8 @@
3042
3388
 
3043
3389
  Relax text color mark validation to allow upper case characters
3044
3390
 
3045
- - Updated dependencies [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
3391
+ - Updated dependencies
3392
+ [24865cfaff](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/24865cfaff):
3046
3393
  - @atlaskit/json-schema-generator@2.2.0
3047
3394
 
3048
3395
  ## 4.3.1
@@ -3067,13 +3414,17 @@
3067
3414
 
3068
3415
  - [patch][9a261337b5](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9a261337b5):
3069
3416
 
3070
- Add a fixture of a document with different cases of unsupported content- [patch][cc1b89d310](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc1b89d310):
3417
+ Add a fixture of a document with different cases of unsupported content-
3418
+ [patch][cc1b89d310](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cc1b89d310):
3071
3419
 
3072
- ED-8162: Prevent the editor from locking up when navigating from gap-cursor to an expand title- [patch][938f1c2902](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/938f1c2902):
3420
+ ED-8162: Prevent the editor from locking up when navigating from gap-cursor to an expand title-
3421
+ [patch][938f1c2902](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/938f1c2902):
3073
3422
 
3074
- ED-8186: Fix incorrect mark filtering when toggling lists- Updated dependencies [10425b84b4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/10425b84b4):
3423
+ ED-8186: Fix incorrect mark filtering when toggling lists- Updated dependencies
3424
+ [10425b84b4](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/10425b84b4):
3075
3425
 
3076
- - Updated dependencies [926798632e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926798632e):
3426
+ - Updated dependencies
3427
+ [926798632e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/926798632e):
3077
3428
  - @atlaskit/editor-test-helpers@10.3.0
3078
3429
  - @atlaskit/editor-json-transformer@7.0.1
3079
3430
 
@@ -3093,8 +3444,9 @@
3093
3444
 
3094
3445
  - [minor][ae42b1ba1e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae42b1ba1e):
3095
3446
 
3096
- Adf schema changes (for stage-0) to support alt text on media nodes.
3097
- `editor-core` changes are wrapped under the editor prop `UNSAFE_allowAltTextOnImages`. There is no alt text implementation yet, so the user won't be able to add alt text to images just yet.
3447
+ Adf schema changes (for stage-0) to support alt text on media nodes. `editor-core` changes are
3448
+ wrapped under the editor prop `UNSAFE_allowAltTextOnImages`. There is no alt text implementation
3449
+ yet, so the user won't be able to add alt text to images just yet.
3098
3450
 
3099
3451
  ### Patch Changes
3100
3452
 
@@ -3102,7 +3454,8 @@
3102
3454
 
3103
3455
  Fix linting errors from prettier upgrade
3104
3456
 
3105
- - Updated dependencies [6d9c8a9073](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6d9c8a9073):
3457
+ - Updated dependencies
3458
+ [6d9c8a9073](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6d9c8a9073):
3106
3459
  - @atlaskit/editor-json-transformer@7.0.0
3107
3460
 
3108
3461
  ## 4.2.0
@@ -3115,23 +3468,29 @@
3115
3468
 
3116
3469
  ### Nested actions
3117
3470
 
3118
- This changeset adds support for nesting actions _at the schema level_, currently only within the stage-0 ADF schema.
3471
+ This changeset adds support for nesting actions _at the schema level_, currently only within the
3472
+ stage-0 ADF schema.
3119
3473
 
3120
- The editor and renderer currently do nothing special to represent these nested actions. As of this release, they appear as as flat list.
3474
+ The editor and renderer currently do nothing special to represent these nested actions. As of this
3475
+ release, they appear as as flat list.
3121
3476
 
3122
3477
  To enable this feature, use the new `allowNestedTasks` prop.
3123
3478
 
3124
3479
  ### DOM representation of actions in renderer + editor
3125
3480
 
3126
- This release also changes the DOM representation of actions away from a `ol > li` structure, to a `div > div` one. That is, both the `taskList` and `taskItem` are wrapped in `div` elements.
3481
+ This release also changes the DOM representation of actions away from a `ol > li` structure, to a
3482
+ `div > div` one. That is, both the `taskList` and `taskItem` are wrapped in `div` elements.
3127
3483
 
3128
- Because taskLists can now be allowed to nest themselves, this would otherwise have created an `ol > ol` structure, which is invalid.- [minor][ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
3484
+ Because taskLists can now be allowed to nest themselves, this would otherwise have created an
3485
+ `ol > ol` structure, which is invalid.-
3486
+ [minor][ae4f336a3a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/ae4f336a3a):
3129
3487
 
3130
3488
  **FABDODGEM-13 Editor Damask Release** - [Internal post](http://go.atlassian.com/damask-release)
3131
3489
 
3132
3490
  **BREAKING CHANGES**
3133
3491
 
3134
- - **Media:** Removed deprecated "context" property from media components in favor of "mediaClientConfig". This affects all public media UI components.
3492
+ - **Media:** Removed deprecated "context" property from media components in favor of
3493
+ "mediaClientConfig". This affects all public media UI components.
3135
3494
  - https://product-fabric.atlassian.net/browse/MS-2038
3136
3495
  - **Tasks & Decisions:** Removed containerAri for task-decisions components.
3137
3496
  - https://product-fabric.atlassian.net/browse/ED-7631
@@ -3215,7 +3574,6 @@ Bumped dependencies.
3215
3574
  - [minor][65ada7f318](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/65ada7f318):
3216
3575
 
3217
3576
  **FABDODGEM-12 Editor Cashmere Release**
3218
-
3219
3577
  - [Internal post](http://go.atlassian.com/cashmere-release)
3220
3578
 
3221
3579
  **Affected editor components:**
@@ -3223,23 +3581,21 @@ Bumped dependencies.
3223
3581
  tables, media, mobile, text color, emoji, copy/paste, analytics
3224
3582
 
3225
3583
  **Performance**
3226
-
3227
3584
  - Async import for code blocks and task items on renderer
3228
3585
  - https://product-fabric.atlassian.net/browse/ED-7155
3229
3586
 
3230
3587
  **Table**
3231
-
3232
3588
  - Add support to sort tables that contains smart links
3233
3589
  - https://product-fabric.atlassian.net/browse/ED-7449
3234
3590
  - Scale table when changing to full width mode
3235
3591
  - https://product-fabric.atlassian.net/browse/ED-7724
3236
3592
 
3237
3593
  **Text color**
3238
-
3239
3594
  - Update text color toolbar with right color when text is inside a list, panel, etc.
3240
3595
  - https://product-fabric.atlassian.net/browse/FM-1752
3241
3596
 
3242
- **Mobile** - Implement undo/redo interface on Hybrid Editor - https://product-fabric.atlassian.net/browse/FM-2393
3597
+ **Mobile** - Implement undo/redo interface on Hybrid Editor -
3598
+ https://product-fabric.atlassian.net/browse/FM-2393
3243
3599
 
3244
3600
  **Copy and Paste**
3245
3601
 
@@ -3295,7 +3651,9 @@ Bumped dependencies.
3295
3651
 
3296
3652
  - [major][1194ad5eb3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1194ad5eb3):
3297
3653
 
3298
- Remove unnecessary `tableBackgroundBorderColors` in favour of unique `tableBackgroundBorderColor` for all table cell background border- [major][80adfefba2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80adfefba2):
3654
+ Remove unnecessary `tableBackgroundBorderColors` in favour of unique `tableBackgroundBorderColor`
3655
+ for all table cell background border-
3656
+ [major][80adfefba2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80adfefba2):
3299
3657
 
3300
3658
  Remove applicationCard node and action mark
3301
3659
 
@@ -3305,23 +3663,29 @@ Bumped dependencies.
3305
3663
 
3306
3664
  ED-5996: support viewing inline comments within editor
3307
3665
 
3308
- You can do this with the `annotationProvider` prop. Passing a truthy value to this (e.g. the empty object `{}`) will:
3309
-
3666
+ You can do this with the `annotationProvider` prop. Passing a truthy value to this (e.g. the empty
3667
+ object `{}`) will:
3310
3668
  - enable support for working with the `annotation` ADF mark
3311
3669
  - will render highlights around any annotations, and
3312
3670
  - allow copying and pasting of annotations within the same document, or between documents
3313
3671
 
3314
- You can also optionally pass a React component to the `component`, so you can render custom components on top of or around the editor when the user's text cursor is inside an annotation.
3672
+ You can also optionally pass a React component to the `component`, so you can render custom
3673
+ components on top of or around the editor when the user's text cursor is inside an annotation.
3315
3674
 
3316
- Please see [the package documentation](https://atlaskit.atlassian.com/packages/editor/editor-core/docs/annotations) for more information.
3675
+ Please see
3676
+ [the package documentation](https://atlaskit.atlassian.com/packages/editor/editor-core/docs/annotations)
3677
+ for more information.
3317
3678
 
3318
- There is an example component called `ExampleInlineCommentComponent` within the `@atlaskit/editor-test-helpers` package. It is currently featured in the full page examples on the Atlaskit website.
3679
+ There is an example component called `ExampleInlineCommentComponent` within the
3680
+ `@atlaskit/editor-test-helpers` package. It is currently featured in the full page examples on the
3681
+ Atlaskit website.
3319
3682
 
3320
3683
  Annotations are styled within the editor using the `fabric-editor-annotation` CSS class.
3321
3684
 
3322
3685
  Other changes:
3323
-
3324
- - `Popup` now supports an optional `rect` parameter to direct placement, rather than calculating the bounding client rect around a DOM node.- [minor][45ae9e1cc2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/45ae9e1cc2):
3686
+ - `Popup` now supports an optional `rect` parameter to direct placement, rather than calculating
3687
+ the bounding client rect around a DOM node.-
3688
+ [minor][45ae9e1cc2](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/45ae9e1cc2):
3325
3689
 
3326
3690
  ED-7201 Add new background cell colors and improve text color
3327
3691
 
@@ -3331,7 +3695,9 @@ Bumped dependencies.
3331
3695
 
3332
3696
  CEMS-234 Prioritize media single over media group
3333
3697
 
3334
- This solves issue where pasting images with text from third party applications into a table ends adding an error image.- [patch][922ec81fe7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/922ec81fe7):
3698
+ This solves issue where pasting images with text from third party applications into a table ends
3699
+ adding an error image.-
3700
+ [patch][922ec81fe7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/922ec81fe7):
3335
3701
 
3336
3702
  ED-7710: Only show annotation highlight if we have a provider
3337
3703
 
@@ -3349,7 +3715,8 @@ Bumped dependencies.
3349
3715
 
3350
3716
  - [patch][097b696613](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/097b696613):
3351
3717
 
3352
- Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving non-relative imports as relative imports
3718
+ Components now depend on TS 3.6 internally, in order to fix an issue with TS resolving
3719
+ non-relative imports as relative imports
3353
3720
 
3354
3721
  ## 3.1.1
3355
3722
 
@@ -3365,7 +3732,8 @@ Bumped dependencies.
3365
3732
 
3366
3733
  - [minor][66c5c88f4a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/66c5c88f4a):
3367
3734
 
3368
- Refactor emoji to use typeahead plugin- [minor][bdee736f14](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bdee736f14):
3735
+ Refactor emoji to use typeahead plugin-
3736
+ [minor][bdee736f14](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/bdee736f14):
3369
3737
 
3370
3738
  ED-7175: unify smart link and hyperlink toolbars
3371
3739
 
@@ -3375,13 +3743,15 @@ Bumped dependencies.
3375
3743
 
3376
3744
  onResolve?: (data: { url?: string; title?: string }) => void;
3377
3745
 
3378
- This gets fired when the view resolves a smart card from JSON-LD, either via the client or the `data` prop.
3746
+ This gets fired when the view resolves a smart card from JSON-LD, either via the client or the
3747
+ `data` prop.
3379
3748
 
3380
3749
  ### Patch Changes
3381
3750
 
3382
3751
  - [patch][6e3a0038fc](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6e3a0038fc):
3383
3752
 
3384
- ED-7288: reduces the number of DOM nodes in table cells, changes the way resize handles are positioned- [patch][a0a3fa7aac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a0a3fa7aac):
3753
+ ED-7288: reduces the number of DOM nodes in table cells, changes the way resize handles are
3754
+ positioned- [patch][a0a3fa7aac](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a0a3fa7aac):
3385
3755
 
3386
3756
  Ensure mediagroup nodes are copied to destination collection when pasted in different documents
3387
3757
 
@@ -3395,7 +3765,8 @@ Bumped dependencies.
3395
3765
 
3396
3766
  BREAKING CHANGE
3397
3767
 
3398
- We move 'calcTableColumnWidths' helper from adf-schema into our helper library editor-common, you can use it from editor-common in the same way:
3768
+ We move 'calcTableColumnWidths' helper from adf-schema into our helper library editor-common, you
3769
+ can use it from editor-common in the same way:
3399
3770
 
3400
3771
  Before:
3401
3772
 
@@ -3458,13 +3829,14 @@ Bumped dependencies.
3458
3829
  - [patch][18dfac7332](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/18dfac7332):
3459
3830
 
3460
3831
  In this PR, we are:
3461
-
3462
3832
  - Re-introducing dist build folders
3463
3833
  - Adding back cjs
3464
3834
  - Replacing es5 by cjs and es2015 by esm
3465
3835
  - Creating folders at the root for entry-points
3466
- - Removing the generation of the entry-points at the root
3467
- Please see this [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points) for further details
3836
+ - Removing the generation of the entry-points at the root Please see this
3837
+ [ticket](https://product-fabric.atlassian.net/browse/BUILDTOOLS-118) or this
3838
+ [page](https://hello.atlassian.net/wiki/spaces/FED/pages/452325500/Finishing+Atlaskit+multiple+entry+points)
3839
+ for further details
3468
3840
 
3469
3841
  ## 2.12.0
3470
3842
 
@@ -3549,7 +3921,8 @@ Bumped dependencies.
3549
3921
 
3550
3922
  - [minor][d6c31deacf](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d6c31deacf):
3551
3923
 
3552
- ED-6701 Upgrade prosemirror-view to 1.9.10 and prosemirror-inputrules to 1.0.4 for composition input improvements
3924
+ ED-6701 Upgrade prosemirror-view to 1.9.10 and prosemirror-inputrules to 1.0.4 for composition
3925
+ input improvements
3553
3926
 
3554
3927
  ## 2.8.1
3555
3928
 
@@ -3557,7 +3930,8 @@ Bumped dependencies.
3557
3930
 
3558
3931
  - [patch][34c6df4fb8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/34c6df4fb8):
3559
3932
 
3560
- adf-schema has been extended with one missing color, email-renderer now bundles up styles into .css file
3933
+ adf-schema has been extended with one missing color, email-renderer now bundles up styles into
3934
+ .css file
3561
3935
 
3562
3936
  ## 2.8.0
3563
3937
 
@@ -3565,7 +3939,8 @@ Bumped dependencies.
3565
3939
 
3566
3940
  - [minor][86bf524679](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/86bf524679):
3567
3941
 
3568
- ED-7117, ED-7087: Fix copy pasting smart links out of editor. Fallback to HTML anchor tag if errors occur during rendering (e.g. no provider found).
3942
+ ED-7117, ED-7087: Fix copy pasting smart links out of editor. Fallback to HTML anchor tag if
3943
+ errors occur during rendering (e.g. no provider found).
3569
3944
 
3570
3945
  ## 2.7.1
3571
3946
 
@@ -3604,102 +3979,93 @@ Bumped dependencies.
3604
3979
  ### Patch Changes
3605
3980
 
3606
3981
  - [patch][9886f4afa1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9886f4afa1):
3607
-
3608
3982
  - [ED-7017] Improve table performance removing cellView from table
3609
3983
 
3610
3984
  ## 2.5.9
3611
3985
 
3612
3986
  - [patch][f823890888](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/f823890888):
3613
-
3614
3987
  - ED-6970: Fix backspacing inside a layout removing all content.
3615
3988
 
3616
3989
  ## 2.5.8
3617
3990
 
3618
3991
  - [patch][5ad66b6d1a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5ad66b6d1a):
3619
-
3620
- - [ED-6860] Revert prosemirror-view 1.8.9 bumps, this version was making the cursor typing slowly. this version is recreating all plugins when we use `EditorView.setProps`
3992
+ - [ED-6860] Revert prosemirror-view 1.8.9 bumps, this version was making the cursor typing slowly.
3993
+ this version is recreating all plugins when we use `EditorView.setProps`
3621
3994
 
3622
3995
  ## 2.5.7
3623
3996
 
3624
3997
  - [patch][1ec6367e00](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1ec6367e00):
3625
-
3626
3998
  - ED-6551 - Lists should correctly wrap adjacent floated content without overlapping
3627
3999
 
3628
4000
  ## 2.5.6
3629
4001
 
3630
4002
  - [patch][80cf1c1e82](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/80cf1c1e82):
3631
-
3632
- - [ED-6654] Update prosemirror-view to 1.8.9 that fixes a few issues with mouse selections on prosemirror like click on table and the controls doesn't show up
4003
+ - [ED-6654] Update prosemirror-view to 1.8.9 that fixes a few issues with mouse selections on
4004
+ prosemirror like click on table and the controls doesn't show up
3633
4005
 
3634
4006
  ## 2.5.5
3635
4007
 
3636
- - Updated dependencies [7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
4008
+ - Updated dependencies
4009
+ [7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
3637
4010
  - @atlaskit/editor-json-transformer@6.0.0
3638
4011
  - @atlaskit/editor-test-helpers@9.0.0
3639
4012
 
3640
4013
  ## 2.5.4
3641
4014
 
3642
4015
  - [patch][0a4ccaafae](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0a4ccaafae):
3643
-
3644
4016
  - Bump tslib
3645
4017
 
3646
4018
  - [patch][0ac39bd2dd](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0ac39bd2dd):
3647
-
3648
4019
  - Bump tslib to 1.9
3649
4020
 
3650
4021
  ## 2.5.3
3651
4022
 
3652
4023
  - [patch][583f5db46d](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/583f5db46d):
3653
-
3654
4024
  - Use tslib as dependency
3655
4025
 
3656
4026
  ## 2.5.2
3657
4027
 
3658
4028
  - [patch][6695367885](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6695367885):
3659
-
3660
4029
  - Revert emoji refactor
3661
4030
 
3662
4031
  ## 2.5.1
3663
4032
 
3664
4033
  - [patch][c01f9e1cc7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c01f9e1cc7):
3665
-
3666
- - Standardise code-block class between editor/renderer. Fix bg color when code-block is nested within a table heading.
4034
+ - Standardise code-block class between editor/renderer. Fix bg color when code-block is nested
4035
+ within a table heading.
3667
4036
 
3668
4037
  ## 2.5.0
3669
4038
 
3670
4039
  - [minor][64dd2ab46f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/64dd2ab46f):
3671
-
3672
- - ED-6558 Fix clicking to set the cursor placement after an inline node that's at the end of a line. Set the default style attribute of Status nodes to be empty instead of 'null'.
4040
+ - ED-6558 Fix clicking to set the cursor placement after an inline node that's at the end of a
4041
+ line. Set the default style attribute of Status nodes to be empty instead of 'null'.
3673
4042
 
3674
4043
  ## 2.4.1
3675
4044
 
3676
4045
  - [patch][97e555c168](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/97e555c168):
3677
-
3678
4046
  - Revert "[ED-5259 - ED-6200] adds defaultMarks on tableNode (pull request #5259)"
3679
4047
 
3680
4048
  ## 2.4.0
3681
4049
 
3682
4050
  - [minor][09a90e4af1](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/09a90e4af1):
3683
-
3684
- - ED-6319 Supporting select media using gap cursor, fix behaviour of backspace key and gap cursor in media single with layout wrap-right.
4051
+ - ED-6319 Supporting select media using gap cursor, fix behaviour of backspace key and gap cursor
4052
+ in media single with layout wrap-right.
3685
4053
 
3686
4054
  ## 2.3.2
3687
4055
 
3688
4056
  - [patch][b425ea772b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b425ea772b):
3689
-
3690
4057
  - Revert "ED-5505 add strong as default mark to table header (pull request #5291)"
3691
4058
 
3692
4059
  ## 2.3.1
3693
4060
 
3694
4061
  - [patch][d13fad66df](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d13fad66df):
3695
-
3696
4062
  - Enable esModuleInterop for typescript, this allows correct use of default exports
3697
4063
 
3698
4064
  ## 2.3.0
3699
4065
 
3700
4066
  - [minor][02dd1f7287](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/02dd1f7287):
3701
-
3702
- - [ED-5505] Persists formatting to table cells and headers when toggling header row, column or applying any text formatting to empty cells.
4067
+ - [ED-5505] Persists formatting to table cells and headers when toggling header row, column or
4068
+ applying any text formatting to empty cells.
3703
4069
 
3704
4070
  ## 2.2.1
3705
4071
 
@@ -3710,179 +4076,153 @@ Bumped dependencies.
3710
4076
  ## 2.2.0
3711
4077
 
3712
4078
  - [minor][63133d8704](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/63133d8704):
3713
-
3714
4079
  - [ED-6200] Add defaultMarks attribute on tableCell schema
3715
4080
 
3716
4081
  ## 2.1.0
3717
4082
 
3718
4083
  - [minor][0fea11af41](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0fea11af41):
3719
-
3720
4084
  - Email renderer supports numbered columns, adf-schema extended with colors
3721
4085
 
3722
4086
  ## 2.0.1
3723
4087
 
3724
4088
  - [patch][205b101e2b](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/205b101e2b):
3725
-
3726
4089
  - ED-6230: bump prosemirror-view to 1.8.3; workaround Chrome bug with copy paste multiple images
3727
4090
 
3728
4091
  ## 2.0.0
3729
4092
 
3730
4093
  - [major][9d5cc39394](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/9d5cc39394):
3731
-
3732
4094
  - Dropped ES5 distributables from the typescript packages
3733
4095
 
3734
4096
  ## 1.7.1
3735
4097
 
3736
4098
  - [patch][0825fbe634](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/0825fbe634):
3737
-
3738
4099
  - ED-6410: remove opacity from cells background color
3739
4100
 
3740
4101
  ## 1.7.0
3741
4102
 
3742
4103
  - [minor][6380484429](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/6380484429):
3743
-
3744
- - ED-6485 Support breakout mark on layout-section. Retain breakout mark when toggling list nested within columns.
4104
+ - ED-6485 Support breakout mark on layout-section. Retain breakout mark when toggling list nested
4105
+ within columns.
3745
4106
 
3746
4107
  ## 1.6.2
3747
4108
 
3748
4109
  - [patch][d18b085e2a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d18b085e2a):
3749
-
3750
4110
  - Integrating truly upfront ID
3751
4111
 
3752
4112
  ## 1.6.1
3753
4113
 
3754
4114
  - [patch][4d0c196597](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4d0c196597):
3755
-
3756
4115
  - ED-6232 Fix copy-pasting a table with numbered column drops one column
3757
4116
 
3758
4117
  ## 1.6.0
3759
4118
 
3760
4119
  - [minor][3672ec23ef](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/3672ec23ef):
3761
-
3762
4120
  - [ED-5788] Add new layout Breakout button for CodeBlock and Layout
3763
4121
 
3764
4122
  ## 1.5.5
3765
4123
 
3766
4124
  - [patch][356de07a87](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/356de07a87):
3767
-
3768
4125
  - Revert back to number for external media
3769
4126
 
3770
4127
  ## 1.5.4
3771
4128
 
3772
- - Updated dependencies [4af5bd2a58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4af5bd2a58):
4129
+ - Updated dependencies
4130
+ [4af5bd2a58](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4af5bd2a58):
3773
4131
  - @atlaskit/editor-json-transformer@4.1.11
3774
4132
  - @atlaskit/editor-test-helpers@7.0.0
3775
4133
 
3776
4134
  ## 1.5.3
3777
4135
 
3778
4136
  - [patch][775da616c6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/775da616c6):
3779
-
3780
4137
  - [ED-5910] Keep width & height on media node as number
3781
4138
 
3782
4139
  ## 1.5.2
3783
4140
 
3784
4141
  - [patch][e83a441140](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/e83a441140):
3785
-
3786
4142
  - Revert type change to width/height attributes for media node
3787
4143
 
3788
4144
  ## 1.5.1
3789
4145
 
3790
4146
  - [patch][09696170ec](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/09696170ec):
3791
-
3792
4147
  - Bumps prosemirror-utils to 0.7.6
3793
4148
 
3794
4149
  ## 1.5.0
3795
4150
 
3796
4151
  - [minor][14fe1381ba](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/14fe1381ba):
3797
-
3798
4152
  - ED-6118: ensure media dimensions are always integers, preventing invalid ADF
3799
4153
 
3800
4154
  ## 1.4.6
3801
4155
 
3802
4156
  - [patch][557a2b5734](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/557a2b5734):
3803
-
3804
4157
  - ED-5788: bump prosemirror-view and prosemirror-model
3805
4158
 
3806
4159
  ## 1.4.5
3807
4160
 
3808
4161
  - [patch][4552e804d3](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/4552e804d3):
3809
-
3810
4162
  - dismiss StatusPicker if status node is not selected
3811
4163
 
3812
4164
  ## 1.4.4
3813
4165
 
3814
4166
  - [patch][adff2caed7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/adff2caed7):
3815
-
3816
4167
  - Improve typings
3817
4168
 
3818
4169
  ## 1.4.3
3819
4170
 
3820
4171
  - [patch][d10cf50721](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d10cf50721):
3821
-
3822
4172
  - added fabric status to ADF full schema
3823
4173
 
3824
4174
  ## 1.4.2
3825
4175
 
3826
4176
  - [patch][478a86ae8a](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/478a86ae8a):
3827
-
3828
4177
  - avoid using the same localId when pasting status
3829
4178
 
3830
4179
  ## 1.4.1
3831
4180
 
3832
4181
  - [patch][2d6d5b6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/2d6d5b6):
3833
-
3834
4182
  - ED-5379: rework selecting media under the hood; maintain size and layout when copy-pasting
3835
4183
 
3836
4184
  ## 1.4.0
3837
4185
 
3838
4186
  - [minor][c5ee0c8](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/c5ee0c8):
3839
-
3840
4187
  - Added Annotation mark to ADF, editor & renderer
3841
4188
 
3842
4189
  ## 1.3.3
3843
4190
 
3844
4191
  - [patch][060f2da](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/060f2da):
3845
-
3846
4192
  - ED-5991: bumped prosemirror-view to 1.6.8
3847
4193
 
3848
4194
  ## 1.3.2
3849
4195
 
3850
4196
  - [patch][a50c114](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/a50c114):
3851
-
3852
- - ED-6026: unify attributes for blockCard and inlineCard; allow parseDOM using just 'data' attribute
4197
+ - ED-6026: unify attributes for blockCard and inlineCard; allow parseDOM using just 'data'
4198
+ attribute
3853
4199
 
3854
4200
  ## 1.3.1
3855
4201
 
3856
4202
  - [patch][7d9ccd7](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7d9ccd7):
3857
-
3858
4203
  - fixed copy/paste status from renderer to editor
3859
4204
 
3860
4205
  ## 1.3.0
3861
4206
 
3862
4207
  - [minor][cbcac2e](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/cbcac2e):
3863
-
3864
4208
  - Promote smartcard nodes to full schema
3865
4209
 
3866
4210
  ## 1.2.0
3867
4211
 
3868
4212
  - [minor][5b11b69](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/5b11b69):
3869
-
3870
4213
  - Allow mixed of cell types in a table row
3871
4214
 
3872
4215
  ## 1.1.0
3873
4216
 
3874
4217
  - [minor][b9f8a8f](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/b9f8a8f):
3875
-
3876
4218
  - Adding alignment options to media
3877
4219
 
3878
4220
  ## 1.0.1
3879
4221
 
3880
4222
  - [patch][d7bfd60](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/d7bfd60):
3881
-
3882
4223
  - Rengenerate JSON schema after moving packages
3883
4224
 
3884
4225
  ## 1.0.0
3885
4226
 
3886
4227
  - [major][1205725](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1205725):
3887
-
3888
4228
  - Move schema to its own package