@atlaskit/editor-core 220.1.2 → 220.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (264) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea.js +1 -2
  3. package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.js +1 -1
  4. package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-emotion.js +1 -1
  5. package/dist/cjs/ui/EditorContentContainer/styles/aiPanel.js +27 -5
  6. package/dist/cjs/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
  7. package/dist/cjs/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
  8. package/dist/cjs/ui/EditorContentContainer/styles/baseStyles.js +39 -10
  9. package/dist/cjs/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
  10. package/dist/cjs/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
  11. package/dist/cjs/ui/EditorContentContainer/styles/codeBlockStyles.js +33 -9
  12. package/dist/cjs/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
  13. package/dist/cjs/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
  14. package/dist/cjs/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
  15. package/dist/cjs/ui/EditorContentContainer/styles/dateStyles.js +28 -6
  16. package/dist/cjs/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
  17. package/dist/cjs/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
  18. package/dist/cjs/ui/EditorContentContainer/styles/emoji.js +34 -6
  19. package/dist/cjs/ui/EditorContentContainer/styles/expandStyles.js +45 -11
  20. package/dist/cjs/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
  21. package/dist/cjs/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
  22. package/dist/cjs/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -2
  23. package/dist/cjs/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
  24. package/dist/cjs/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
  25. package/dist/cjs/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
  26. package/dist/cjs/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
  27. package/dist/cjs/ui/EditorContentContainer/styles/gridStyles.js +9 -2
  28. package/dist/cjs/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
  29. package/dist/cjs/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
  30. package/dist/cjs/ui/EditorContentContainer/styles/layout.js +142 -24
  31. package/dist/cjs/ui/EditorContentContainer/styles/link.js +21 -5
  32. package/dist/cjs/ui/EditorContentContainer/styles/list.js +45 -10
  33. package/dist/cjs/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
  34. package/dist/cjs/ui/EditorContentContainer/styles/mentions.js +33 -9
  35. package/dist/cjs/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
  36. package/dist/cjs/ui/EditorContentContainer/styles/panelStyles.js +39 -12
  37. package/dist/cjs/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
  38. package/dist/cjs/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
  39. package/dist/cjs/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
  40. package/dist/cjs/ui/EditorContentContainer/styles/rule.js +15 -4
  41. package/dist/cjs/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
  42. package/dist/cjs/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
  43. package/dist/cjs/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
  44. package/dist/cjs/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
  45. package/dist/cjs/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
  46. package/dist/cjs/ui/EditorContentContainer/styles/statusStyles.js +45 -14
  47. package/dist/cjs/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
  48. package/dist/cjs/ui/EditorContentContainer/styles/tableStyles.js +45 -14
  49. package/dist/cjs/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
  50. package/dist/cjs/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
  51. package/dist/cjs/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
  52. package/dist/cjs/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
  53. package/dist/cjs/ui/EditorContentContainer/styles/unsupportedStyles.js +16 -2
  54. package/dist/cjs/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
  55. package/dist/cjs/version-wrapper.js +1 -1
  56. package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea.js +1 -2
  57. package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.js +1 -1
  58. package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-emotion.js +1 -1
  59. package/dist/es2019/ui/EditorContentContainer/styles/aiPanel.js +27 -5
  60. package/dist/es2019/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
  61. package/dist/es2019/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
  62. package/dist/es2019/ui/EditorContentContainer/styles/baseStyles.js +39 -10
  63. package/dist/es2019/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
  64. package/dist/es2019/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
  65. package/dist/es2019/ui/EditorContentContainer/styles/codeBlockStyles.js +34 -9
  66. package/dist/es2019/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
  67. package/dist/es2019/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
  68. package/dist/es2019/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
  69. package/dist/es2019/ui/EditorContentContainer/styles/dateStyles.js +29 -6
  70. package/dist/es2019/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
  71. package/dist/es2019/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
  72. package/dist/es2019/ui/EditorContentContainer/styles/emoji.js +34 -6
  73. package/dist/es2019/ui/EditorContentContainer/styles/expandStyles.js +45 -11
  74. package/dist/es2019/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
  75. package/dist/es2019/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
  76. package/dist/es2019/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -3
  77. package/dist/es2019/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
  78. package/dist/es2019/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
  79. package/dist/es2019/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
  80. package/dist/es2019/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
  81. package/dist/es2019/ui/EditorContentContainer/styles/gridStyles.js +9 -2
  82. package/dist/es2019/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
  83. package/dist/es2019/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
  84. package/dist/es2019/ui/EditorContentContainer/styles/layout.js +142 -24
  85. package/dist/es2019/ui/EditorContentContainer/styles/link.js +21 -5
  86. package/dist/es2019/ui/EditorContentContainer/styles/list.js +45 -10
  87. package/dist/es2019/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
  88. package/dist/es2019/ui/EditorContentContainer/styles/mentions.js +33 -9
  89. package/dist/es2019/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
  90. package/dist/es2019/ui/EditorContentContainer/styles/panelStyles.js +39 -12
  91. package/dist/es2019/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
  92. package/dist/es2019/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
  93. package/dist/es2019/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
  94. package/dist/es2019/ui/EditorContentContainer/styles/rule.js +15 -4
  95. package/dist/es2019/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
  96. package/dist/es2019/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
  97. package/dist/es2019/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
  98. package/dist/es2019/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
  99. package/dist/es2019/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
  100. package/dist/es2019/ui/EditorContentContainer/styles/statusStyles.js +45 -14
  101. package/dist/es2019/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
  102. package/dist/es2019/ui/EditorContentContainer/styles/tableStyles.js +45 -15
  103. package/dist/es2019/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
  104. package/dist/es2019/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
  105. package/dist/es2019/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
  106. package/dist/es2019/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
  107. package/dist/es2019/ui/EditorContentContainer/styles/unsupportedStyles.js +17 -2
  108. package/dist/es2019/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
  109. package/dist/es2019/version-wrapper.js +1 -1
  110. package/dist/esm/ui/Appearance/FullPage/FullPageContentArea.js +1 -2
  111. package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.js +1 -1
  112. package/dist/esm/ui/EditorContentContainer/EditorContentContainer-emotion.js +1 -1
  113. package/dist/esm/ui/EditorContentContainer/styles/aiPanel.js +27 -5
  114. package/dist/esm/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
  115. package/dist/esm/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
  116. package/dist/esm/ui/EditorContentContainer/styles/baseStyles.js +39 -10
  117. package/dist/esm/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
  118. package/dist/esm/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
  119. package/dist/esm/ui/EditorContentContainer/styles/codeBlockStyles.js +34 -9
  120. package/dist/esm/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
  121. package/dist/esm/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
  122. package/dist/esm/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
  123. package/dist/esm/ui/EditorContentContainer/styles/dateStyles.js +29 -6
  124. package/dist/esm/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
  125. package/dist/esm/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
  126. package/dist/esm/ui/EditorContentContainer/styles/emoji.js +34 -6
  127. package/dist/esm/ui/EditorContentContainer/styles/expandStyles.js +45 -11
  128. package/dist/esm/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
  129. package/dist/esm/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
  130. package/dist/esm/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -3
  131. package/dist/esm/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
  132. package/dist/esm/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
  133. package/dist/esm/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
  134. package/dist/esm/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
  135. package/dist/esm/ui/EditorContentContainer/styles/gridStyles.js +9 -2
  136. package/dist/esm/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
  137. package/dist/esm/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
  138. package/dist/esm/ui/EditorContentContainer/styles/layout.js +142 -24
  139. package/dist/esm/ui/EditorContentContainer/styles/link.js +21 -5
  140. package/dist/esm/ui/EditorContentContainer/styles/list.js +45 -10
  141. package/dist/esm/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
  142. package/dist/esm/ui/EditorContentContainer/styles/mentions.js +33 -9
  143. package/dist/esm/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
  144. package/dist/esm/ui/EditorContentContainer/styles/panelStyles.js +39 -12
  145. package/dist/esm/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
  146. package/dist/esm/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
  147. package/dist/esm/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
  148. package/dist/esm/ui/EditorContentContainer/styles/rule.js +15 -4
  149. package/dist/esm/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
  150. package/dist/esm/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
  151. package/dist/esm/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
  152. package/dist/esm/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
  153. package/dist/esm/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
  154. package/dist/esm/ui/EditorContentContainer/styles/statusStyles.js +45 -14
  155. package/dist/esm/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
  156. package/dist/esm/ui/EditorContentContainer/styles/tableStyles.js +45 -15
  157. package/dist/esm/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
  158. package/dist/esm/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
  159. package/dist/esm/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
  160. package/dist/esm/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
  161. package/dist/esm/ui/EditorContentContainer/styles/unsupportedStyles.js +17 -2
  162. package/dist/esm/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
  163. package/dist/esm/version-wrapper.js +1 -1
  164. package/dist/types/ui/EditorContentContainer/styles/aiPanel.d.ts +24 -0
  165. package/dist/types/ui/EditorContentContainer/styles/annotationStyles.d.ts +6 -0
  166. package/dist/types/ui/EditorContentContainer/styles/backgroundColorStyles.d.ts +12 -0
  167. package/dist/types/ui/EditorContentContainer/styles/baseStyles.d.ts +36 -0
  168. package/dist/types/ui/EditorContentContainer/styles/blockMarksStyles.d.ts +6 -0
  169. package/dist/types/ui/EditorContentContainer/styles/blockTypeStyles.d.ts +60 -0
  170. package/dist/types/ui/EditorContentContainer/styles/codeBlockStyles.d.ts +30 -0
  171. package/dist/types/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +12 -0
  172. package/dist/types/ui/EditorContentContainer/styles/commentEditorStyles.d.ts +6 -0
  173. package/dist/types/ui/EditorContentContainer/styles/cursorStyles.d.ts +6 -0
  174. package/dist/types/ui/EditorContentContainer/styles/dateStyles.d.ts +24 -0
  175. package/dist/types/ui/EditorContentContainer/styles/editorUGCTokenStyles.d.ts +24 -0
  176. package/dist/types/ui/EditorContentContainer/styles/embedCardStyles.d.ts +6 -0
  177. package/dist/types/ui/EditorContentContainer/styles/emoji.d.ts +30 -0
  178. package/dist/types/ui/EditorContentContainer/styles/expandStyles.d.ts +42 -0
  179. package/dist/types/ui/EditorContentContainer/styles/extensionStyles.d.ts +12 -0
  180. package/dist/types/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +30 -0
  181. package/dist/types/ui/EditorContentContainer/styles/firstBlockNodeStyles.d.ts +6 -0
  182. package/dist/types/ui/EditorContentContainer/styles/floatingToolbarStyles.d.ts +6 -0
  183. package/dist/types/ui/EditorContentContainer/styles/fontSizeStyles.d.ts +6 -0
  184. package/dist/types/ui/EditorContentContainer/styles/fullPageEditorStyles.d.ts +6 -0
  185. package/dist/types/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +18 -0
  186. package/dist/types/ui/EditorContentContainer/styles/gridStyles.d.ts +6 -0
  187. package/dist/types/ui/EditorContentContainer/styles/indentationStyles.d.ts +6 -0
  188. package/dist/types/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.d.ts +6 -0
  189. package/dist/types/ui/EditorContentContainer/styles/layout.d.ts +138 -0
  190. package/dist/types/ui/EditorContentContainer/styles/link.d.ts +18 -0
  191. package/dist/types/ui/EditorContentContainer/styles/list.d.ts +42 -0
  192. package/dist/types/ui/EditorContentContainer/styles/mediaStyles.d.ts +30 -0
  193. package/dist/types/ui/EditorContentContainer/styles/mentions.d.ts +30 -0
  194. package/dist/types/ui/EditorContentContainer/styles/overflowShadowStyles.d.ts +6 -0
  195. package/dist/types/ui/EditorContentContainer/styles/panelStyles.d.ts +36 -0
  196. package/dist/types/ui/EditorContentContainer/styles/paragraphStyles.d.ts +30 -0
  197. package/dist/types/ui/EditorContentContainer/styles/placeholderStyles.d.ts +24 -0
  198. package/dist/types/ui/EditorContentContainer/styles/resizerStyles.d.ts +108 -0
  199. package/dist/types/ui/EditorContentContainer/styles/rule.d.ts +12 -0
  200. package/dist/types/ui/EditorContentContainer/styles/scrollbarStyles.d.ts +6 -0
  201. package/dist/types/ui/EditorContentContainer/styles/selectionStyles.d.ts +60 -0
  202. package/dist/types/ui/EditorContentContainer/styles/selectionToolbarStyles.d.ts +6 -0
  203. package/dist/types/ui/EditorContentContainer/styles/shadowStyles.d.ts +18 -0
  204. package/dist/types/ui/EditorContentContainer/styles/smartCardStyles.d.ts +78 -0
  205. package/dist/types/ui/EditorContentContainer/styles/statusStyles.d.ts +42 -0
  206. package/dist/types/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +30 -0
  207. package/dist/types/ui/EditorContentContainer/styles/tableStyles.d.ts +42 -0
  208. package/dist/types/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +60 -0
  209. package/dist/types/ui/EditorContentContainer/styles/telepointerStyles.d.ts +12 -0
  210. package/dist/types/ui/EditorContentContainer/styles/textColorStyles.d.ts +6 -0
  211. package/dist/types/ui/EditorContentContainer/styles/textHighlightStyles.d.ts +6 -0
  212. package/dist/types/ui/EditorContentContainer/styles/unsupportedStyles.d.ts +12 -0
  213. package/dist/types/ui/EditorContentContainer/styles/whitespaceStyles.d.ts +6 -0
  214. package/dist/types-ts4.5/ui/EditorContentContainer/styles/aiPanel.d.ts +24 -0
  215. package/dist/types-ts4.5/ui/EditorContentContainer/styles/annotationStyles.d.ts +6 -0
  216. package/dist/types-ts4.5/ui/EditorContentContainer/styles/backgroundColorStyles.d.ts +12 -0
  217. package/dist/types-ts4.5/ui/EditorContentContainer/styles/baseStyles.d.ts +36 -0
  218. package/dist/types-ts4.5/ui/EditorContentContainer/styles/blockMarksStyles.d.ts +6 -0
  219. package/dist/types-ts4.5/ui/EditorContentContainer/styles/blockTypeStyles.d.ts +60 -0
  220. package/dist/types-ts4.5/ui/EditorContentContainer/styles/codeBlockStyles.d.ts +30 -0
  221. package/dist/types-ts4.5/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +12 -0
  222. package/dist/types-ts4.5/ui/EditorContentContainer/styles/commentEditorStyles.d.ts +6 -0
  223. package/dist/types-ts4.5/ui/EditorContentContainer/styles/cursorStyles.d.ts +6 -0
  224. package/dist/types-ts4.5/ui/EditorContentContainer/styles/dateStyles.d.ts +24 -0
  225. package/dist/types-ts4.5/ui/EditorContentContainer/styles/editorUGCTokenStyles.d.ts +24 -0
  226. package/dist/types-ts4.5/ui/EditorContentContainer/styles/embedCardStyles.d.ts +6 -0
  227. package/dist/types-ts4.5/ui/EditorContentContainer/styles/emoji.d.ts +30 -0
  228. package/dist/types-ts4.5/ui/EditorContentContainer/styles/expandStyles.d.ts +42 -0
  229. package/dist/types-ts4.5/ui/EditorContentContainer/styles/extensionStyles.d.ts +12 -0
  230. package/dist/types-ts4.5/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +30 -0
  231. package/dist/types-ts4.5/ui/EditorContentContainer/styles/firstBlockNodeStyles.d.ts +6 -0
  232. package/dist/types-ts4.5/ui/EditorContentContainer/styles/floatingToolbarStyles.d.ts +6 -0
  233. package/dist/types-ts4.5/ui/EditorContentContainer/styles/fontSizeStyles.d.ts +6 -0
  234. package/dist/types-ts4.5/ui/EditorContentContainer/styles/fullPageEditorStyles.d.ts +6 -0
  235. package/dist/types-ts4.5/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +18 -0
  236. package/dist/types-ts4.5/ui/EditorContentContainer/styles/gridStyles.d.ts +6 -0
  237. package/dist/types-ts4.5/ui/EditorContentContainer/styles/indentationStyles.d.ts +6 -0
  238. package/dist/types-ts4.5/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.d.ts +6 -0
  239. package/dist/types-ts4.5/ui/EditorContentContainer/styles/layout.d.ts +138 -0
  240. package/dist/types-ts4.5/ui/EditorContentContainer/styles/link.d.ts +18 -0
  241. package/dist/types-ts4.5/ui/EditorContentContainer/styles/list.d.ts +42 -0
  242. package/dist/types-ts4.5/ui/EditorContentContainer/styles/mediaStyles.d.ts +30 -0
  243. package/dist/types-ts4.5/ui/EditorContentContainer/styles/mentions.d.ts +30 -0
  244. package/dist/types-ts4.5/ui/EditorContentContainer/styles/overflowShadowStyles.d.ts +6 -0
  245. package/dist/types-ts4.5/ui/EditorContentContainer/styles/panelStyles.d.ts +36 -0
  246. package/dist/types-ts4.5/ui/EditorContentContainer/styles/paragraphStyles.d.ts +30 -0
  247. package/dist/types-ts4.5/ui/EditorContentContainer/styles/placeholderStyles.d.ts +24 -0
  248. package/dist/types-ts4.5/ui/EditorContentContainer/styles/resizerStyles.d.ts +108 -0
  249. package/dist/types-ts4.5/ui/EditorContentContainer/styles/rule.d.ts +12 -0
  250. package/dist/types-ts4.5/ui/EditorContentContainer/styles/scrollbarStyles.d.ts +6 -0
  251. package/dist/types-ts4.5/ui/EditorContentContainer/styles/selectionStyles.d.ts +60 -0
  252. package/dist/types-ts4.5/ui/EditorContentContainer/styles/selectionToolbarStyles.d.ts +6 -0
  253. package/dist/types-ts4.5/ui/EditorContentContainer/styles/shadowStyles.d.ts +18 -0
  254. package/dist/types-ts4.5/ui/EditorContentContainer/styles/smartCardStyles.d.ts +78 -0
  255. package/dist/types-ts4.5/ui/EditorContentContainer/styles/statusStyles.d.ts +42 -0
  256. package/dist/types-ts4.5/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +30 -0
  257. package/dist/types-ts4.5/ui/EditorContentContainer/styles/tableStyles.d.ts +42 -0
  258. package/dist/types-ts4.5/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +60 -0
  259. package/dist/types-ts4.5/ui/EditorContentContainer/styles/telepointerStyles.d.ts +12 -0
  260. package/dist/types-ts4.5/ui/EditorContentContainer/styles/textColorStyles.d.ts +6 -0
  261. package/dist/types-ts4.5/ui/EditorContentContainer/styles/textHighlightStyles.d.ts +6 -0
  262. package/dist/types-ts4.5/ui/EditorContentContainer/styles/unsupportedStyles.d.ts +12 -0
  263. package/dist/types-ts4.5/ui/EditorContentContainer/styles/whitespaceStyles.d.ts +6 -0
  264. package/package.json +6 -6
@@ -1,5 +1,7 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
  import { css } from '@emotion/react';
4
6
  import { relativeFontSizeToBase16, akEditorFullPageDenseFontSize } from '@atlaskit/editor-shared-styles';
5
7
  import { fg } from '@atlaskit/platform-feature-flags';
@@ -10,6 +12,12 @@ import { blanketSelectionStyles, boxShadowSelectionStyles, hideNativeBrowserText
10
12
  * Creates the extension styles with the ability to use feature flags and experiments.
11
13
  * @returns Complete SerializedStyles including base styles and any feature-gated styles
12
14
  */
15
+ /**
16
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
17
+ * If you need to make changes here, also update the corresponding style in
18
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
19
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
20
+ */
13
21
  export var getExtensionStyles = function getExtensionStyles(contentMode) {
14
22
  var baseExtensionStyles = css({
15
23
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
@@ -422,8 +430,12 @@ export var getExtensionStyles = function getExtensionStyles(contentMode) {
422
430
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
423
431
  return css(baseExtensionStyles, denseExtensionStyles, bodiedExtensionLayoutShiftFixStyles);
424
432
  };
425
-
426
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
433
+ /**
434
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
435
+ * If you need to make changes here, also update the corresponding style in
436
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
437
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
438
+ */
427
439
  export var extensionDiffStyles = css(_defineProperty({}, ".show-diff-changed-decoration-node > span .extension-container", {
428
440
  boxShadow: "0 0 0 var(--diff-decoration-marker-ring-width, 1px) var(--diff-decoration-marker-color)"
429
441
  }));
@@ -1,8 +1,15 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
  import { css } from '@emotion/react';
4
6
  import { CodeBlockSharedCssClassName } from '@atlaskit/editor-common/styles';
5
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
7
+ /**
8
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
9
+ * If you need to make changes here, also update the corresponding style in
10
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
11
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
12
+ */
6
13
  export var findReplaceStyles = css({
7
14
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
8
15
  '.search-match': {
@@ -16,8 +23,12 @@ export var findReplaceStyles = css({
16
23
  backgroundColor: "var(--ds-background-accent-teal-subtle, #6CC3E0)"
17
24
  }
18
25
  });
19
-
20
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
26
+ /**
27
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
28
+ * If you need to make changes here, also update the corresponding style in
29
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
30
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
31
+ */
21
32
  export var findReplaceStylesWithCodeblockColorContrastFix = css(_defineProperty({}, ".".concat(CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, " .search-match.selected-search-match"), {
22
33
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
23
34
  span: {
@@ -26,8 +37,12 @@ export var findReplaceStylesWithCodeblockColorContrastFix = css(_defineProperty(
26
37
  color: "var(--ds-text, #292A2E)".concat(" !important")
27
38
  }
28
39
  }));
29
-
30
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
40
+ /**
41
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
42
+ * If you need to make changes here, also update the corresponding style in
43
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
44
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
45
+ */
31
46
  export var findReplaceStylesNewWithCodeblockColorContrastFix = css(_defineProperty({}, ".".concat(CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, " .search-match-text.selected-search-match"), {
32
47
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
33
48
  span: {
@@ -38,7 +53,12 @@ export var findReplaceStylesNewWithCodeblockColorContrastFix = css(_defineProper
38
53
  }));
39
54
 
40
55
  // TODO: ED-28370 - during platform_editor_find_and_replace_improvements clean up, rename this css object to findReplaceStyles
41
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
56
+ /**
57
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
58
+ * If you need to make changes here, also update the corresponding style in
59
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
60
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
61
+ */
42
62
  export var findReplaceStylesNewWithA11Y = css({
43
63
  // text - inactive match - light mode
44
64
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
@@ -205,8 +225,12 @@ export var findReplaceStylesNewWithA11Y = css({
205
225
  backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)"
206
226
  }
207
227
  });
208
-
209
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
228
+ /**
229
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
230
+ * If you need to make changes here, also update the corresponding style in
231
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
232
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
233
+ */
210
234
  export var findReplaceStylesWithRefSyncBlock = css({
211
235
  // sync block (reference) - inactive match - light mode - without node selection
212
236
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
@@ -1,11 +1,17 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
  import { css } from '@emotion/react';
4
6
  import { PanelSharedCssClassName } from '@atlaskit/editor-common/panel';
5
7
  import { expandClassNames, SmartCardSharedCssClassName } from '@atlaskit/editor-common/styles';
6
8
  import { CodeBlockSharedCssClassName } from './codeBlockStyles';
7
-
8
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
9
+ /**
10
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
11
+ * If you need to make changes here, also update the corresponding style in
12
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
13
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
14
+ */
9
15
  export var firstBlockNodeStyles = css({
10
16
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
11
17
  '.ProseMirror': _defineProperty(_defineProperty({}, "> .".concat(PanelSharedCssClassName.prefix, ", > .").concat(CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, ", > .").concat(SmartCardSharedCssClassName.BLOCK_CARD_CONTAINER, ", > div[data-task-list-local-id], > div[data-layout-section], > .").concat(expandClassNames.prefix), {
@@ -1,7 +1,14 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
5
  // Make sure the first floating toolbar button has focus ring when focused via .focus()
4
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
6
+ /**
7
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
8
+ * If you need to make changes here, also update the corresponding style in
9
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
10
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
11
+ */
5
12
  export var firstFloatingToolbarButtonStyles = css({
6
13
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
7
14
  'button.first-floating-toolbar-button:focus': {
@@ -1,6 +1,13 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
5
+ /**
6
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
7
+ * If you need to make changes here, also update the corresponding style in
8
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
9
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
10
+ */
4
11
  export var fontSizeStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
6
13
  '.ProseMirror': {
@@ -1,7 +1,14 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
5
  // Originally copied from scrollStyles in packages/editor/editor-core/src/ui/Appearance/FullPage/StyledComponents.ts
4
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
6
+ /**
7
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
8
+ * If you need to make changes here, also update the corresponding style in
9
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
10
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
11
+ */
5
12
  export var fullPageEditorStyles = css({
6
13
  flexGrow: 1,
7
14
  height: '100%',
@@ -1,5 +1,7 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
  import { css, keyframes } from '@emotion/react';
4
6
  var gapCursorBlink = keyframes({
5
7
  'from, to': {
@@ -9,6 +11,13 @@ var gapCursorBlink = keyframes({
9
11
  opacity: 1
10
12
  }
11
13
  });
14
+
15
+ /**
16
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
17
+ * If you need to make changes here, also update the corresponding style in
18
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
19
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
20
+ */
12
21
  export var hideCaretModifier = 'ProseMirror-hide-gapcursor';
13
22
  var gapCursorSelector = '.ProseMirror-gapcursor';
14
23
  var prosemirrorwidgetNotBlock = '.ProseMirror-widget:not([data-blocks-decoration-container="true"]):not([data-blocks-drag-handle-container="true"]):not([data-blocks-quick-insert-container="true"])';
@@ -20,8 +29,12 @@ var marginFixSelector = "\n ".concat(wrapLeft, " + ").concat(gapCursorSelector,
20
29
  var floatLeftFixSelector = "\n ".concat(wrapLeft, " + ").concat(gapCursorSelector, ",\n ").concat(wrapRight, " + ").concat(gapCursorSelector);
21
30
  var afterPresudoSelector = "\n ".concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + ").concat(wrapRight, "::after,\n ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + ").concat(wrapLeft, "::after,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, "::after,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + span + ").concat(wrapRight, "::after,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, "::after,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + span + ").concat(wrapLeft, "::after");
22
31
  var marginDeepChildrenFixSelector = "\n".concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, " + *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + span + ").concat(wrapRight, " + *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + span + ").concat(wrapLeft, " + *,\n ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + ").concat(wrapRight, " + *,\n ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + ").concat(wrapLeft, " + *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, " + * > *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + * > *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + * > *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + * > *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + span + ").concat(wrapRight, " + * > *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + span + ").concat(wrapLeft, " + * > *,\n ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + ").concat(wrapRight, " + * > *,\n ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + ").concat(wrapLeft, " + * > *,\n ").concat(prosemirrorwidgetNotBlock, " + ").concat(gapCursorSelector, " + *,\n ").concat(prosemirrorwidgetNotBlock, " + ").concat(gapCursorSelector, " + span + *");
23
-
24
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
32
+ /**
33
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
34
+ * If you need to make changes here, also update the corresponding style in
35
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
36
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
37
+ */
25
38
  export var gapCursorStyles = css(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({
26
39
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
27
40
  '.ProseMirror': _defineProperty(_defineProperty(_defineProperty({}, "&.".concat(hideCaretModifier), {
@@ -92,7 +105,12 @@ export var gapCursorStyles = css(_defineProperty(_defineProperty(_defineProperty
92
105
  }));
93
106
 
94
107
  // Hide native caret when gap cursor widget is present (no class toggle = no VC90 mutation)
95
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
108
+ /**
109
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
110
+ * If you need to make changes here, also update the corresponding style in
111
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
112
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
113
+ */
96
114
  export var gapCursorStylesVisibilityFix = css({
97
115
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
98
116
  '.ProseMirror': _defineProperty({}, "&:has(".concat(gapCursorSelector, ")"), {
@@ -1,6 +1,13 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
5
+ /**
6
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
7
+ * If you need to make changes here, also update the corresponding style in
8
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
9
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
10
+ */
4
11
  export var gridStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
6
13
  '.gridParent': {
@@ -1,6 +1,13 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
5
+ /**
6
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
7
+ * If you need to make changes here, also update the corresponding style in
8
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
9
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
10
+ */
4
11
  export var indentationStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
6
13
  '.ProseMirror': {
@@ -1,6 +1,13 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
5
+ /**
6
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
7
+ * If you need to make changes here, also update the corresponding style in
8
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
9
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
10
+ */
4
11
  export var InlineNodeViewSharedStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
6
13
  '.ProseMirror': {
@@ -1,5 +1,7 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
 
4
6
  import { css } from '@emotion/react';
5
7
  import { blanketSelectionStyles, borderSelectionStyles, hideNativeBrowserTextSelectionStyles } from './selectionStyles';
@@ -16,7 +18,12 @@ var layoutColumnDividerThumbClassName = 'layout-column-divider-thumb';
16
18
  * Mirrors the pm-breakout-resize-handle-* pattern from resizerStyles.ts.
17
19
  * Applied only when advanced_layouts experiment is on.
18
20
  */
19
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
21
+ /**
22
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
23
+ * If you need to make changes here, also update the corresponding style in
24
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
25
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
26
+ */
20
27
  export var layoutColumnDividerStyles = css(_defineProperty(_defineProperty(_defineProperty({}, ".".concat(layoutColumnDividerClassName), _defineProperty(_defineProperty({
21
28
  // Negative margin removes the applied 'gap' from the parent's flex box
22
29
  // eslint-disable-next-line @atlaskit/design-system/use-tokens-space
@@ -57,7 +64,12 @@ export var layoutColumnDividerStyles = css(_defineProperty(_defineProperty(_defi
57
64
  * Override divider marginInline when platform_editor_nested_dnd_styles_changes is on,
58
65
  * since the layout section/column spacing changes.
59
66
  */
60
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
67
+ /**
68
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
69
+ * If you need to make changes here, also update the corresponding style in
70
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
71
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
72
+ */
61
73
  export var layoutColumnDividerStylesNestedDnD = css(_defineProperty({}, ".".concat(layoutColumnDividerClassName), {
62
74
  // eslint-disable-next-line @atlaskit/design-system/use-tokens-space
63
75
  marginInline: '0 -7px'
@@ -71,7 +83,12 @@ var layoutSelectedSelector = "&.selected, [data-empty-layout='true'], &:hover, &
71
83
  /**
72
84
  * Layout columns styles when advanced layouts experiment is on
73
85
  */
74
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
86
+ /**
87
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
88
+ * If you need to make changes here, also update the corresponding style in
89
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
90
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
91
+ */
75
92
  export var layoutColumnStylesAdvanced = css({
76
93
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
77
94
  '.ProseMirror [data-layout-section]': _defineProperty(_defineProperty({
@@ -109,7 +126,12 @@ export var layoutColumnStylesAdvanced = css({
109
126
  /**
110
127
  * Layout column resize styles for the platform_editor_layout_column_resize_handle experiment
111
128
  */
112
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
129
+ /**
130
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
131
+ * If you need to make changes here, also update the corresponding style in
132
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
133
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
134
+ */
113
135
  export var layoutColumnResizeStyles = css({
114
136
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
115
137
  '.ProseMirror [data-layout-section]': {
@@ -128,7 +150,12 @@ export var layoutColumnResizeStyles = css({
128
150
  /**
129
151
  * Layout columns styles when advanced layouts experiment is off
130
152
  */
131
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
153
+ /**
154
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
155
+ * If you need to make changes here, also update the corresponding style in
156
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
157
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
158
+ */
132
159
  export var layoutColumnStylesNotAdvanced = css({
133
160
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
134
161
  '.ProseMirror [data-layout-section]': _defineProperty({
@@ -148,7 +175,12 @@ export var layoutColumnStylesNotAdvanced = css({
148
175
  /**
149
176
  * Responsive styles for layout columns when advanced layouts experiment is on
150
177
  */
151
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
178
+ /**
179
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
180
+ * If you need to make changes here, also update the corresponding style in
181
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
182
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
183
+ */
152
184
  export var layoutColumnResponsiveStyles = css({
153
185
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
154
186
  '.ProseMirror [data-layout-section]': {
@@ -175,7 +207,13 @@ export var layoutColumnResponsiveStyles = css({
175
207
  /**
176
208
  * Layout section styles when advanced layouts experiment is on
177
209
  */
178
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-exported-styles
210
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
211
+ /**
212
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
213
+ * If you need to make changes here, also update the corresponding style in
214
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
215
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
216
+ */
179
217
  export var layoutSectionStylesAdvanced = css(_defineProperty({
180
218
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
181
219
  '.ProseMirror .layout-section-container [data-layout-section]': {
@@ -223,7 +261,12 @@ export var layoutSectionStylesAdvanced = css(_defineProperty({
223
261
  /**
224
262
  * Layout section styles when advanced layouts experiment is off
225
263
  */
226
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
264
+ /**
265
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
266
+ * If you need to make changes here, also update the corresponding style in
267
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
268
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
269
+ */
227
270
  export var layoutSectionStylesNotAdvanced = css({
228
271
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
229
272
  '.ProseMirror [data-layout-section]': _defineProperty(_defineProperty({
@@ -252,7 +295,12 @@ export var layoutSectionStylesNotAdvanced = css({
252
295
  // TODO: DSP-4441 - Remove the border styles below once design tokens have been enabled and fallbacks are no longer triggered.
253
296
  // This is because the default state already uses the same token and, as such, the hover style won't change anything.
254
297
  // https://product-fabric.atlassian.net/browse/DSP-4441
255
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
298
+ /**
299
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
300
+ * If you need to make changes here, also update the corresponding style in
301
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
302
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
303
+ */
256
304
  export var layoutSelectedStylesNotAdvanced = css({
257
305
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
258
306
  '.ProseMirror': {
@@ -305,7 +353,12 @@ var rowSeparatorBaseStyles = css({
305
353
  /**
306
354
  * Selected styles for layout when advanced layouts experiment is on
307
355
  */
308
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
356
+ /**
357
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
358
+ * If you need to make changes here, also update the corresponding style in
359
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
360
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
361
+ */
309
362
  export var layoutSelectedStylesAdvanced = css({
310
363
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
311
364
  '.ProseMirror': {
@@ -351,7 +404,12 @@ export var layoutSelectedStylesAdvanced = css({
351
404
  // sometimes doesn't appear when inside a synced block.
352
405
  // Separated as a distinct style to allow feature-gating without affecting module-level styles.
353
406
  // This prevents style inconsistencies before the feature flag is initialized.
354
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
407
+ /**
408
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
409
+ * If you need to make changes here, also update the corresponding style in
410
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
411
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
412
+ */
355
413
  export var layoutSelectedStylesAdvancedFix = css({
356
414
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
357
415
  '.ProseMirror': {
@@ -371,7 +429,12 @@ export var layoutSelectedStylesAdvancedFix = css({
371
429
  * Base responsive styles for layout
372
430
  */
373
431
  // jest warning: JSDOM version (22) doesn't support the new @container CSS rule
374
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
432
+ /**
433
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
434
+ * If you need to make changes here, also update the corresponding style in
435
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
436
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
437
+ */
375
438
  export var layoutResponsiveBaseStyles = css(_defineProperty(_defineProperty(_defineProperty({}, selectorForNotResizedLayoutInFulllWidthEditor, _defineProperty({
376
439
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
377
440
  '[data-layout-section]': {
@@ -410,7 +473,12 @@ export var layoutResponsiveBaseStyles = css(_defineProperty(_defineProperty(_def
410
473
  /**
411
474
  * Responsive styles for layout in view mode
412
475
  */
413
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
476
+ /**
477
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
478
+ * If you need to make changes here, also update the corresponding style in
479
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
480
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
481
+ */
414
482
  export var layoutResponsiveStylesForView = css(_defineProperty(_defineProperty(_defineProperty({}, selectorForNotResizedLayoutInFulllWidthEditor, _defineProperty({}, layoutResponsiveSelectedSelector, {
415
483
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors,@atlaskit/ui-styling-standard/no-unsafe-selectors
416
484
  '[data-layout-column]:not(:first-of-type)': _defineProperty({}, "@container editor-area (max-width:724px)", {
@@ -440,7 +508,12 @@ export var layoutResponsiveStylesForView = css(_defineProperty(_defineProperty(_
440
508
  /**
441
509
  * Base styles for layout
442
510
  */
443
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Needs manual remediation
511
+ /**
512
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
513
+ * If you need to make changes here, also update the corresponding style in
514
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
515
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
516
+ */
444
517
  export var layoutBaseStyles = css({
445
518
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-nested-selectors
446
519
  '.ProseMirror': {
@@ -534,7 +607,12 @@ export var layoutBaseStyles = css({
534
607
  }
535
608
  });
536
609
  // on exp 'platform_editor_table_excerpts_fix' cleanup, merge this style to the one above
537
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Needs manual remediation
610
+ /**
611
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
612
+ * If you need to make changes here, also update the corresponding style in
613
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
614
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
615
+ */
538
616
  export var layoutBaseStylesWithTableExcerptsFix = css({
539
617
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-nested-selectors
540
618
  '.ProseMirror': {
@@ -558,7 +636,12 @@ export var layoutBaseStylesWithTableExcerptsFix = css({
558
636
  /**
559
637
  * Base styles overrides for layout columns when advanced layouts experiment is on
560
638
  */
561
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
639
+ /**
640
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
641
+ * If you need to make changes here, also update the corresponding style in
642
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
643
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
644
+ */
562
645
  export var layoutBaseStylesAdvanced = css({
563
646
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
564
647
  '.ProseMirror [data-layout-section] [data-layout-column]': {
@@ -572,7 +655,12 @@ export var layoutBaseStylesAdvanced = css({
572
655
  // TODO: EDF-123 - Migrate away from gridSize
573
656
  // Recommendation: Replace directly with 7px
574
657
  // Ignored via go/ees007
575
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
658
+ /**
659
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
660
+ * If you need to make changes here, also update the corresponding style in
661
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
662
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
663
+ */
576
664
  export var layoutBaseStylesFixesUnderNestedDnDFG = css({
577
665
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
578
666
  '.ProseMirror [data-layout-section]': {
@@ -588,7 +676,12 @@ export var layoutBaseStylesFixesUnderNestedDnDFG = css({
588
676
  * Spacing overrides when platform_editor_nested_dnd_styles_changes is on,
589
677
  * excluding layouts inside bodied sync blocks
590
678
  */
591
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
679
+ /**
680
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
681
+ * If you need to make changes here, also update the corresponding style in
682
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
683
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
684
+ */
592
685
  export var layoutBaseStylesFixesUnderNestedDnDFGExcludingBodiedSync = css({
593
686
  // Apply -20px margin to all sections
594
687
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
@@ -609,7 +702,12 @@ export var layoutBaseStylesFixesUnderNestedDnDFGExcludingBodiedSync = css({
609
702
  /**
610
703
  * Layout in view mode styles for selected state when advanced layouts experiment is on.
611
704
  */
612
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Needs manual remediation
705
+ /**
706
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
707
+ * If you need to make changes here, also update the corresponding style in
708
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
709
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
710
+ */
613
711
  export var layoutSelectedStylesForViewAdvanced = css({
614
712
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
615
713
  '.ProseMirror': {
@@ -630,7 +728,12 @@ export var layoutSelectedStylesForViewAdvanced = css({
630
728
  /**
631
729
  * Layout in view mode styles for selected state when advanced layouts experiment is off.
632
730
  */
633
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
731
+ /**
732
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
733
+ * If you need to make changes here, also update the corresponding style in
734
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
735
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
736
+ */
634
737
  export var layoutSelectedStylesForViewNotAdvanced = css({
635
738
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
636
739
  '.ProseMirror': {
@@ -647,7 +750,12 @@ export var layoutSelectedStylesForViewNotAdvanced = css({
647
750
  /*
648
751
  * Layout in view mode styles, overrides over layout base styles
649
752
  */
650
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Needs manual remediation
753
+ /**
754
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
755
+ * If you need to make changes here, also update the corresponding style in
756
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
757
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
758
+ */
651
759
  export var layoutStylesForView = css({
652
760
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
653
761
  '.ProseMirror': {
@@ -665,7 +773,12 @@ export var layoutStylesForView = css({
665
773
  /*
666
774
  * marginTop fixes when platform_editor_nested_dnd_styles_changes is on
667
775
  */
668
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
776
+ /**
777
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
778
+ * If you need to make changes here, also update the corresponding style in
779
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
780
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
781
+ */
669
782
  export var layoutColumnMartinTopFixesNew = css({
670
783
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
671
784
  '.ProseMirror [data-layout-section] [data-layout-column] > div': {
@@ -679,7 +792,12 @@ export var layoutColumnMartinTopFixesNew = css({
679
792
  /*
680
793
  * marginTop fixes when platform_editor_nested_dnd_styles_changes is off
681
794
  */
682
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
795
+ /**
796
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
797
+ * If you need to make changes here, also update the corresponding style in
798
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
799
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
800
+ */
683
801
  export var layoutColumnMartinTopFixesOld = css({
684
802
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
685
803
  '.ProseMirror [data-layout-section] [data-layout-column] > div': {