@atlaskit/editor-core 220.1.2 → 220.1.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 (261) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.js +1 -1
  3. package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-emotion.js +1 -1
  4. package/dist/cjs/ui/EditorContentContainer/styles/aiPanel.js +27 -5
  5. package/dist/cjs/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
  6. package/dist/cjs/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
  7. package/dist/cjs/ui/EditorContentContainer/styles/baseStyles.js +39 -10
  8. package/dist/cjs/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
  9. package/dist/cjs/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
  10. package/dist/cjs/ui/EditorContentContainer/styles/codeBlockStyles.js +33 -9
  11. package/dist/cjs/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
  12. package/dist/cjs/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
  13. package/dist/cjs/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
  14. package/dist/cjs/ui/EditorContentContainer/styles/dateStyles.js +28 -6
  15. package/dist/cjs/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
  16. package/dist/cjs/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
  17. package/dist/cjs/ui/EditorContentContainer/styles/emoji.js +34 -6
  18. package/dist/cjs/ui/EditorContentContainer/styles/expandStyles.js +45 -11
  19. package/dist/cjs/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
  20. package/dist/cjs/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
  21. package/dist/cjs/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -2
  22. package/dist/cjs/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
  23. package/dist/cjs/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
  24. package/dist/cjs/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
  25. package/dist/cjs/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
  26. package/dist/cjs/ui/EditorContentContainer/styles/gridStyles.js +9 -2
  27. package/dist/cjs/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
  28. package/dist/cjs/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
  29. package/dist/cjs/ui/EditorContentContainer/styles/layout.js +142 -24
  30. package/dist/cjs/ui/EditorContentContainer/styles/link.js +21 -5
  31. package/dist/cjs/ui/EditorContentContainer/styles/list.js +45 -10
  32. package/dist/cjs/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
  33. package/dist/cjs/ui/EditorContentContainer/styles/mentions.js +33 -9
  34. package/dist/cjs/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
  35. package/dist/cjs/ui/EditorContentContainer/styles/panelStyles.js +39 -12
  36. package/dist/cjs/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
  37. package/dist/cjs/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
  38. package/dist/cjs/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
  39. package/dist/cjs/ui/EditorContentContainer/styles/rule.js +15 -4
  40. package/dist/cjs/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
  41. package/dist/cjs/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
  42. package/dist/cjs/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
  43. package/dist/cjs/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
  44. package/dist/cjs/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
  45. package/dist/cjs/ui/EditorContentContainer/styles/statusStyles.js +45 -14
  46. package/dist/cjs/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
  47. package/dist/cjs/ui/EditorContentContainer/styles/tableStyles.js +45 -14
  48. package/dist/cjs/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
  49. package/dist/cjs/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
  50. package/dist/cjs/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
  51. package/dist/cjs/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
  52. package/dist/cjs/ui/EditorContentContainer/styles/unsupportedStyles.js +16 -2
  53. package/dist/cjs/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
  54. package/dist/cjs/version-wrapper.js +1 -1
  55. package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.js +1 -1
  56. package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-emotion.js +1 -1
  57. package/dist/es2019/ui/EditorContentContainer/styles/aiPanel.js +27 -5
  58. package/dist/es2019/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
  59. package/dist/es2019/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
  60. package/dist/es2019/ui/EditorContentContainer/styles/baseStyles.js +39 -10
  61. package/dist/es2019/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
  62. package/dist/es2019/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
  63. package/dist/es2019/ui/EditorContentContainer/styles/codeBlockStyles.js +34 -9
  64. package/dist/es2019/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
  65. package/dist/es2019/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
  66. package/dist/es2019/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
  67. package/dist/es2019/ui/EditorContentContainer/styles/dateStyles.js +29 -6
  68. package/dist/es2019/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
  69. package/dist/es2019/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
  70. package/dist/es2019/ui/EditorContentContainer/styles/emoji.js +34 -6
  71. package/dist/es2019/ui/EditorContentContainer/styles/expandStyles.js +45 -11
  72. package/dist/es2019/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
  73. package/dist/es2019/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
  74. package/dist/es2019/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -3
  75. package/dist/es2019/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
  76. package/dist/es2019/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
  77. package/dist/es2019/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
  78. package/dist/es2019/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
  79. package/dist/es2019/ui/EditorContentContainer/styles/gridStyles.js +9 -2
  80. package/dist/es2019/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
  81. package/dist/es2019/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
  82. package/dist/es2019/ui/EditorContentContainer/styles/layout.js +142 -24
  83. package/dist/es2019/ui/EditorContentContainer/styles/link.js +21 -5
  84. package/dist/es2019/ui/EditorContentContainer/styles/list.js +45 -10
  85. package/dist/es2019/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
  86. package/dist/es2019/ui/EditorContentContainer/styles/mentions.js +33 -9
  87. package/dist/es2019/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
  88. package/dist/es2019/ui/EditorContentContainer/styles/panelStyles.js +39 -12
  89. package/dist/es2019/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
  90. package/dist/es2019/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
  91. package/dist/es2019/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
  92. package/dist/es2019/ui/EditorContentContainer/styles/rule.js +15 -4
  93. package/dist/es2019/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
  94. package/dist/es2019/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
  95. package/dist/es2019/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
  96. package/dist/es2019/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
  97. package/dist/es2019/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
  98. package/dist/es2019/ui/EditorContentContainer/styles/statusStyles.js +45 -14
  99. package/dist/es2019/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
  100. package/dist/es2019/ui/EditorContentContainer/styles/tableStyles.js +45 -15
  101. package/dist/es2019/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
  102. package/dist/es2019/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
  103. package/dist/es2019/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
  104. package/dist/es2019/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
  105. package/dist/es2019/ui/EditorContentContainer/styles/unsupportedStyles.js +17 -2
  106. package/dist/es2019/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
  107. package/dist/es2019/version-wrapper.js +1 -1
  108. package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.js +1 -1
  109. package/dist/esm/ui/EditorContentContainer/EditorContentContainer-emotion.js +1 -1
  110. package/dist/esm/ui/EditorContentContainer/styles/aiPanel.js +27 -5
  111. package/dist/esm/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
  112. package/dist/esm/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
  113. package/dist/esm/ui/EditorContentContainer/styles/baseStyles.js +39 -10
  114. package/dist/esm/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
  115. package/dist/esm/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
  116. package/dist/esm/ui/EditorContentContainer/styles/codeBlockStyles.js +34 -9
  117. package/dist/esm/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
  118. package/dist/esm/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
  119. package/dist/esm/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
  120. package/dist/esm/ui/EditorContentContainer/styles/dateStyles.js +29 -6
  121. package/dist/esm/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
  122. package/dist/esm/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
  123. package/dist/esm/ui/EditorContentContainer/styles/emoji.js +34 -6
  124. package/dist/esm/ui/EditorContentContainer/styles/expandStyles.js +45 -11
  125. package/dist/esm/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
  126. package/dist/esm/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
  127. package/dist/esm/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -3
  128. package/dist/esm/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
  129. package/dist/esm/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
  130. package/dist/esm/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
  131. package/dist/esm/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
  132. package/dist/esm/ui/EditorContentContainer/styles/gridStyles.js +9 -2
  133. package/dist/esm/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
  134. package/dist/esm/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
  135. package/dist/esm/ui/EditorContentContainer/styles/layout.js +142 -24
  136. package/dist/esm/ui/EditorContentContainer/styles/link.js +21 -5
  137. package/dist/esm/ui/EditorContentContainer/styles/list.js +45 -10
  138. package/dist/esm/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
  139. package/dist/esm/ui/EditorContentContainer/styles/mentions.js +33 -9
  140. package/dist/esm/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
  141. package/dist/esm/ui/EditorContentContainer/styles/panelStyles.js +39 -12
  142. package/dist/esm/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
  143. package/dist/esm/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
  144. package/dist/esm/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
  145. package/dist/esm/ui/EditorContentContainer/styles/rule.js +15 -4
  146. package/dist/esm/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
  147. package/dist/esm/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
  148. package/dist/esm/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
  149. package/dist/esm/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
  150. package/dist/esm/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
  151. package/dist/esm/ui/EditorContentContainer/styles/statusStyles.js +45 -14
  152. package/dist/esm/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
  153. package/dist/esm/ui/EditorContentContainer/styles/tableStyles.js +45 -15
  154. package/dist/esm/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
  155. package/dist/esm/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
  156. package/dist/esm/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
  157. package/dist/esm/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
  158. package/dist/esm/ui/EditorContentContainer/styles/unsupportedStyles.js +17 -2
  159. package/dist/esm/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
  160. package/dist/esm/version-wrapper.js +1 -1
  161. package/dist/types/ui/EditorContentContainer/styles/aiPanel.d.ts +24 -0
  162. package/dist/types/ui/EditorContentContainer/styles/annotationStyles.d.ts +6 -0
  163. package/dist/types/ui/EditorContentContainer/styles/backgroundColorStyles.d.ts +12 -0
  164. package/dist/types/ui/EditorContentContainer/styles/baseStyles.d.ts +36 -0
  165. package/dist/types/ui/EditorContentContainer/styles/blockMarksStyles.d.ts +6 -0
  166. package/dist/types/ui/EditorContentContainer/styles/blockTypeStyles.d.ts +60 -0
  167. package/dist/types/ui/EditorContentContainer/styles/codeBlockStyles.d.ts +30 -0
  168. package/dist/types/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +12 -0
  169. package/dist/types/ui/EditorContentContainer/styles/commentEditorStyles.d.ts +6 -0
  170. package/dist/types/ui/EditorContentContainer/styles/cursorStyles.d.ts +6 -0
  171. package/dist/types/ui/EditorContentContainer/styles/dateStyles.d.ts +24 -0
  172. package/dist/types/ui/EditorContentContainer/styles/editorUGCTokenStyles.d.ts +24 -0
  173. package/dist/types/ui/EditorContentContainer/styles/embedCardStyles.d.ts +6 -0
  174. package/dist/types/ui/EditorContentContainer/styles/emoji.d.ts +30 -0
  175. package/dist/types/ui/EditorContentContainer/styles/expandStyles.d.ts +42 -0
  176. package/dist/types/ui/EditorContentContainer/styles/extensionStyles.d.ts +12 -0
  177. package/dist/types/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +30 -0
  178. package/dist/types/ui/EditorContentContainer/styles/firstBlockNodeStyles.d.ts +6 -0
  179. package/dist/types/ui/EditorContentContainer/styles/floatingToolbarStyles.d.ts +6 -0
  180. package/dist/types/ui/EditorContentContainer/styles/fontSizeStyles.d.ts +6 -0
  181. package/dist/types/ui/EditorContentContainer/styles/fullPageEditorStyles.d.ts +6 -0
  182. package/dist/types/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +18 -0
  183. package/dist/types/ui/EditorContentContainer/styles/gridStyles.d.ts +6 -0
  184. package/dist/types/ui/EditorContentContainer/styles/indentationStyles.d.ts +6 -0
  185. package/dist/types/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.d.ts +6 -0
  186. package/dist/types/ui/EditorContentContainer/styles/layout.d.ts +138 -0
  187. package/dist/types/ui/EditorContentContainer/styles/link.d.ts +18 -0
  188. package/dist/types/ui/EditorContentContainer/styles/list.d.ts +42 -0
  189. package/dist/types/ui/EditorContentContainer/styles/mediaStyles.d.ts +30 -0
  190. package/dist/types/ui/EditorContentContainer/styles/mentions.d.ts +30 -0
  191. package/dist/types/ui/EditorContentContainer/styles/overflowShadowStyles.d.ts +6 -0
  192. package/dist/types/ui/EditorContentContainer/styles/panelStyles.d.ts +36 -0
  193. package/dist/types/ui/EditorContentContainer/styles/paragraphStyles.d.ts +30 -0
  194. package/dist/types/ui/EditorContentContainer/styles/placeholderStyles.d.ts +24 -0
  195. package/dist/types/ui/EditorContentContainer/styles/resizerStyles.d.ts +108 -0
  196. package/dist/types/ui/EditorContentContainer/styles/rule.d.ts +12 -0
  197. package/dist/types/ui/EditorContentContainer/styles/scrollbarStyles.d.ts +6 -0
  198. package/dist/types/ui/EditorContentContainer/styles/selectionStyles.d.ts +60 -0
  199. package/dist/types/ui/EditorContentContainer/styles/selectionToolbarStyles.d.ts +6 -0
  200. package/dist/types/ui/EditorContentContainer/styles/shadowStyles.d.ts +18 -0
  201. package/dist/types/ui/EditorContentContainer/styles/smartCardStyles.d.ts +78 -0
  202. package/dist/types/ui/EditorContentContainer/styles/statusStyles.d.ts +42 -0
  203. package/dist/types/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +30 -0
  204. package/dist/types/ui/EditorContentContainer/styles/tableStyles.d.ts +42 -0
  205. package/dist/types/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +60 -0
  206. package/dist/types/ui/EditorContentContainer/styles/telepointerStyles.d.ts +12 -0
  207. package/dist/types/ui/EditorContentContainer/styles/textColorStyles.d.ts +6 -0
  208. package/dist/types/ui/EditorContentContainer/styles/textHighlightStyles.d.ts +6 -0
  209. package/dist/types/ui/EditorContentContainer/styles/unsupportedStyles.d.ts +12 -0
  210. package/dist/types/ui/EditorContentContainer/styles/whitespaceStyles.d.ts +6 -0
  211. package/dist/types-ts4.5/ui/EditorContentContainer/styles/aiPanel.d.ts +24 -0
  212. package/dist/types-ts4.5/ui/EditorContentContainer/styles/annotationStyles.d.ts +6 -0
  213. package/dist/types-ts4.5/ui/EditorContentContainer/styles/backgroundColorStyles.d.ts +12 -0
  214. package/dist/types-ts4.5/ui/EditorContentContainer/styles/baseStyles.d.ts +36 -0
  215. package/dist/types-ts4.5/ui/EditorContentContainer/styles/blockMarksStyles.d.ts +6 -0
  216. package/dist/types-ts4.5/ui/EditorContentContainer/styles/blockTypeStyles.d.ts +60 -0
  217. package/dist/types-ts4.5/ui/EditorContentContainer/styles/codeBlockStyles.d.ts +30 -0
  218. package/dist/types-ts4.5/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +12 -0
  219. package/dist/types-ts4.5/ui/EditorContentContainer/styles/commentEditorStyles.d.ts +6 -0
  220. package/dist/types-ts4.5/ui/EditorContentContainer/styles/cursorStyles.d.ts +6 -0
  221. package/dist/types-ts4.5/ui/EditorContentContainer/styles/dateStyles.d.ts +24 -0
  222. package/dist/types-ts4.5/ui/EditorContentContainer/styles/editorUGCTokenStyles.d.ts +24 -0
  223. package/dist/types-ts4.5/ui/EditorContentContainer/styles/embedCardStyles.d.ts +6 -0
  224. package/dist/types-ts4.5/ui/EditorContentContainer/styles/emoji.d.ts +30 -0
  225. package/dist/types-ts4.5/ui/EditorContentContainer/styles/expandStyles.d.ts +42 -0
  226. package/dist/types-ts4.5/ui/EditorContentContainer/styles/extensionStyles.d.ts +12 -0
  227. package/dist/types-ts4.5/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +30 -0
  228. package/dist/types-ts4.5/ui/EditorContentContainer/styles/firstBlockNodeStyles.d.ts +6 -0
  229. package/dist/types-ts4.5/ui/EditorContentContainer/styles/floatingToolbarStyles.d.ts +6 -0
  230. package/dist/types-ts4.5/ui/EditorContentContainer/styles/fontSizeStyles.d.ts +6 -0
  231. package/dist/types-ts4.5/ui/EditorContentContainer/styles/fullPageEditorStyles.d.ts +6 -0
  232. package/dist/types-ts4.5/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +18 -0
  233. package/dist/types-ts4.5/ui/EditorContentContainer/styles/gridStyles.d.ts +6 -0
  234. package/dist/types-ts4.5/ui/EditorContentContainer/styles/indentationStyles.d.ts +6 -0
  235. package/dist/types-ts4.5/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.d.ts +6 -0
  236. package/dist/types-ts4.5/ui/EditorContentContainer/styles/layout.d.ts +138 -0
  237. package/dist/types-ts4.5/ui/EditorContentContainer/styles/link.d.ts +18 -0
  238. package/dist/types-ts4.5/ui/EditorContentContainer/styles/list.d.ts +42 -0
  239. package/dist/types-ts4.5/ui/EditorContentContainer/styles/mediaStyles.d.ts +30 -0
  240. package/dist/types-ts4.5/ui/EditorContentContainer/styles/mentions.d.ts +30 -0
  241. package/dist/types-ts4.5/ui/EditorContentContainer/styles/overflowShadowStyles.d.ts +6 -0
  242. package/dist/types-ts4.5/ui/EditorContentContainer/styles/panelStyles.d.ts +36 -0
  243. package/dist/types-ts4.5/ui/EditorContentContainer/styles/paragraphStyles.d.ts +30 -0
  244. package/dist/types-ts4.5/ui/EditorContentContainer/styles/placeholderStyles.d.ts +24 -0
  245. package/dist/types-ts4.5/ui/EditorContentContainer/styles/resizerStyles.d.ts +108 -0
  246. package/dist/types-ts4.5/ui/EditorContentContainer/styles/rule.d.ts +12 -0
  247. package/dist/types-ts4.5/ui/EditorContentContainer/styles/scrollbarStyles.d.ts +6 -0
  248. package/dist/types-ts4.5/ui/EditorContentContainer/styles/selectionStyles.d.ts +60 -0
  249. package/dist/types-ts4.5/ui/EditorContentContainer/styles/selectionToolbarStyles.d.ts +6 -0
  250. package/dist/types-ts4.5/ui/EditorContentContainer/styles/shadowStyles.d.ts +18 -0
  251. package/dist/types-ts4.5/ui/EditorContentContainer/styles/smartCardStyles.d.ts +78 -0
  252. package/dist/types-ts4.5/ui/EditorContentContainer/styles/statusStyles.d.ts +42 -0
  253. package/dist/types-ts4.5/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +30 -0
  254. package/dist/types-ts4.5/ui/EditorContentContainer/styles/tableStyles.d.ts +42 -0
  255. package/dist/types-ts4.5/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +60 -0
  256. package/dist/types-ts4.5/ui/EditorContentContainer/styles/telepointerStyles.d.ts +12 -0
  257. package/dist/types-ts4.5/ui/EditorContentContainer/styles/textColorStyles.d.ts +6 -0
  258. package/dist/types-ts4.5/ui/EditorContentContainer/styles/textHighlightStyles.d.ts +6 -0
  259. package/dist/types-ts4.5/ui/EditorContentContainer/styles/unsupportedStyles.d.ts +12 -0
  260. package/dist/types-ts4.5/ui/EditorContentContainer/styles/whitespaceStyles.d.ts +6 -0
  261. package/package.json +4 -4
@@ -1,4 +1,6 @@
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
  import { relativeFontSizeToBase16, akEditorFullPageDenseFontSize } from '@atlaskit/editor-shared-styles';
4
6
  import { fg } from '@atlaskit/platform-feature-flags';
@@ -9,6 +11,12 @@ import { blanketSelectionStyles, boxShadowSelectionStyles, hideNativeBrowserText
9
11
  * Creates the extension styles with the ability to use feature flags and experiments.
10
12
  * @returns Complete SerializedStyles including base styles and any feature-gated styles
11
13
  */
14
+ /**
15
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
16
+ * If you need to make changes here, also update the corresponding style in
17
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
18
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
19
+ */
12
20
  export const getExtensionStyles = contentMode => {
13
21
  const baseExtensionStyles = css({
14
22
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
@@ -421,8 +429,12 @@ export const getExtensionStyles = contentMode => {
421
429
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
422
430
  return css(baseExtensionStyles, denseExtensionStyles, bodiedExtensionLayoutShiftFixStyles);
423
431
  };
424
-
425
- // 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
+ */
426
438
  export const extensionDiffStyles = css({
427
439
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values
428
440
  [`.show-diff-changed-decoration-node > span .extension-container`]: {
@@ -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
  import { CodeBlockSharedCssClassName } from '@atlaskit/editor-common/styles';
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 const findReplaceStyles = css({
6
13
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
7
14
  '.search-match': {
@@ -15,8 +22,12 @@ export const findReplaceStyles = css({
15
22
  backgroundColor: "var(--ds-background-accent-teal-subtle, #6CC3E0)"
16
23
  }
17
24
  });
18
-
19
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
25
+ /**
26
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
27
+ * If you need to make changes here, also update the corresponding style in
28
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
29
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
30
+ */
20
31
  export const findReplaceStylesWithCodeblockColorContrastFix = css({
21
32
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values
22
33
  [`.${CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER} .search-match.selected-search-match`]: {
@@ -28,8 +39,12 @@ export const findReplaceStylesWithCodeblockColorContrastFix = css({
28
39
  }
29
40
  }
30
41
  });
31
-
32
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
42
+ /**
43
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
44
+ * If you need to make changes here, also update the corresponding style in
45
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
46
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
47
+ */
33
48
  export const findReplaceStylesNewWithCodeblockColorContrastFix = css({
34
49
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values
35
50
  [`.${CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER} .search-match-text.selected-search-match`]: {
@@ -43,7 +58,12 @@ export const findReplaceStylesNewWithCodeblockColorContrastFix = css({
43
58
  });
44
59
 
45
60
  // TODO: ED-28370 - during platform_editor_find_and_replace_improvements clean up, rename this css object to findReplaceStyles
46
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
61
+ /**
62
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
63
+ * If you need to make changes here, also update the corresponding style in
64
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
65
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
66
+ */
47
67
  export const findReplaceStylesNewWithA11Y = css({
48
68
  // text - inactive match - light mode
49
69
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
@@ -290,8 +310,12 @@ export const findReplaceStylesNewWithA11Y = css({
290
310
  backgroundColor: "var(--ds-background-accent-magenta-bolder-hovered, #943D73)"
291
311
  }
292
312
  });
293
-
294
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
313
+ /**
314
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
315
+ * If you need to make changes here, also update the corresponding style in
316
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
317
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
318
+ */
295
319
  export const findReplaceStylesWithRefSyncBlock = css({
296
320
  // sync block (reference) - inactive match - light mode - without node selection
297
321
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
@@ -1,10 +1,16 @@
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
  import { PanelSharedCssClassName } from '@atlaskit/editor-common/panel';
4
6
  import { expandClassNames, SmartCardSharedCssClassName } from '@atlaskit/editor-common/styles';
5
7
  import { CodeBlockSharedCssClassName } from './codeBlockStyles';
6
-
7
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
8
+ /**
9
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
10
+ * If you need to make changes here, also update the corresponding style in
11
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
12
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
13
+ */
8
14
  export const firstBlockNodeStyles = css({
9
15
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
10
16
  '.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
  // 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 const 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 const 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 const fullPageEditorStyles = css({
6
13
  flexGrow: 1,
7
14
  height: '100%',
@@ -1,4 +1,6 @@
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, keyframes } from '@emotion/react';
3
5
  const gapCursorBlink = keyframes({
4
6
  'from, to': {
@@ -8,6 +10,13 @@ const gapCursorBlink = keyframes({
8
10
  opacity: 1
9
11
  }
10
12
  });
13
+
14
+ /**
15
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
16
+ * If you need to make changes here, also update the corresponding style in
17
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
18
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
19
+ */
11
20
  export const hideCaretModifier = 'ProseMirror-hide-gapcursor';
12
21
  const gapCursorSelector = '.ProseMirror-gapcursor';
13
22
  const prosemirrorwidgetNotBlock = '.ProseMirror-widget:not([data-blocks-decoration-container="true"]):not([data-blocks-drag-handle-container="true"]):not([data-blocks-quick-insert-container="true"])';
@@ -73,8 +82,12 @@ ${wrapLeft} + ${gapCursorSelector} + ${wrapRight} + *,
73
82
  ${gapCursorSelector} + ${wrapRight} + span + ${wrapLeft} + * > *,
74
83
  ${prosemirrorwidgetNotBlock} + ${gapCursorSelector} + *,
75
84
  ${prosemirrorwidgetNotBlock} + ${gapCursorSelector} + span + *`;
76
-
77
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
85
+ /**
86
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
87
+ * If you need to make changes here, also update the corresponding style in
88
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
89
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
90
+ */
78
91
  export const gapCursorStyles = css({
79
92
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
80
93
  '.ProseMirror': {
@@ -168,7 +181,12 @@ export const gapCursorStyles = css({
168
181
  });
169
182
 
170
183
  // Hide native caret when gap cursor widget is present (no class toggle = no VC90 mutation)
171
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
184
+ /**
185
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
186
+ * If you need to make changes here, also update the corresponding style in
187
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
188
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
189
+ */
172
190
  export const gapCursorStylesVisibilityFix = css({
173
191
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
174
192
  '.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 -- 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 const 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 const 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 const InlineNodeViewSharedStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
6
13
  '.ProseMirror': {
@@ -1,4 +1,6 @@
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
 
3
5
  import { css } from '@emotion/react';
4
6
  import { blanketSelectionStyles, borderSelectionStyles, hideNativeBrowserTextSelectionStyles } from './selectionStyles';
@@ -15,7 +17,12 @@ const layoutColumnDividerThumbClassName = 'layout-column-divider-thumb';
15
17
  * Mirrors the pm-breakout-resize-handle-* pattern from resizerStyles.ts.
16
18
  * Applied only when advanced_layouts experiment is on.
17
19
  */
18
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
20
+ /**
21
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
22
+ * If you need to make changes here, also update the corresponding style in
23
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
24
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
25
+ */
19
26
  export const layoutColumnDividerStyles = css({
20
27
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values
21
28
  [`.${layoutColumnDividerClassName}`]: {
@@ -70,7 +77,12 @@ export const layoutColumnDividerStyles = css({
70
77
  * Override divider marginInline when platform_editor_nested_dnd_styles_changes is on,
71
78
  * since the layout section/column spacing changes.
72
79
  */
73
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
80
+ /**
81
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
82
+ * If you need to make changes here, also update the corresponding style in
83
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
84
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
85
+ */
74
86
  export const layoutColumnDividerStylesNestedDnD = css({
75
87
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values
76
88
  [`.${layoutColumnDividerClassName}`]: {
@@ -87,7 +99,12 @@ const layoutSelectedSelector = `&.selected, [data-empty-layout='true'], &:hover,
87
99
  /**
88
100
  * Layout columns styles when advanced layouts experiment is on
89
101
  */
90
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
102
+ /**
103
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
104
+ * If you need to make changes here, also update the corresponding style in
105
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
106
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
107
+ */
91
108
  export const layoutColumnStylesAdvanced = css({
92
109
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
93
110
  '.ProseMirror [data-layout-section]': {
@@ -129,7 +146,12 @@ export const layoutColumnStylesAdvanced = css({
129
146
  /**
130
147
  * Layout column resize styles for the platform_editor_layout_column_resize_handle experiment
131
148
  */
132
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
149
+ /**
150
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
151
+ * If you need to make changes here, also update the corresponding style in
152
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
153
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
154
+ */
133
155
  export const layoutColumnResizeStyles = css({
134
156
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
135
157
  '.ProseMirror [data-layout-section]': {
@@ -148,7 +170,12 @@ export const layoutColumnResizeStyles = css({
148
170
  /**
149
171
  * Layout columns styles when advanced layouts experiment is off
150
172
  */
151
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
173
+ /**
174
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
175
+ * If you need to make changes here, also update the corresponding style in
176
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
177
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
178
+ */
152
179
  export const layoutColumnStylesNotAdvanced = css({
153
180
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
154
181
  '.ProseMirror [data-layout-section]': {
@@ -170,7 +197,12 @@ export const layoutColumnStylesNotAdvanced = css({
170
197
  /**
171
198
  * Responsive styles for layout columns when advanced layouts experiment is on
172
199
  */
173
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
200
+ /**
201
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
202
+ * If you need to make changes here, also update the corresponding style in
203
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
204
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
205
+ */
174
206
  export const layoutColumnResponsiveStyles = css({
175
207
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
176
208
  '.ProseMirror [data-layout-section]': {
@@ -197,7 +229,13 @@ export const layoutColumnResponsiveStyles = css({
197
229
  /**
198
230
  * Layout section styles when advanced layouts experiment is on
199
231
  */
200
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-exported-styles
232
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
233
+ /**
234
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
235
+ * If you need to make changes here, also update the corresponding style in
236
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
237
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
238
+ */
201
239
  export const layoutSectionStylesAdvanced = css({
202
240
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
203
241
  '.ProseMirror .layout-section-container [data-layout-section]': {
@@ -258,7 +296,12 @@ export const layoutSectionStylesAdvanced = css({
258
296
  /**
259
297
  * Layout section styles when advanced layouts experiment is off
260
298
  */
261
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
299
+ /**
300
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
301
+ * If you need to make changes here, also update the corresponding style in
302
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
303
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
304
+ */
262
305
  export const layoutSectionStylesNotAdvanced = css({
263
306
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
264
307
  '.ProseMirror [data-layout-section]': {
@@ -291,7 +334,12 @@ export const layoutSectionStylesNotAdvanced = css({
291
334
  // TODO: DSP-4441 - Remove the border styles below once design tokens have been enabled and fallbacks are no longer triggered.
292
335
  // This is because the default state already uses the same token and, as such, the hover style won't change anything.
293
336
  // https://product-fabric.atlassian.net/browse/DSP-4441
294
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
337
+ /**
338
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
339
+ * If you need to make changes here, also update the corresponding style in
340
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
341
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
342
+ */
295
343
  export const layoutSelectedStylesNotAdvanced = css({
296
344
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
297
345
  '.ProseMirror': {
@@ -346,7 +394,12 @@ const rowSeparatorBaseStyles = css({
346
394
  /**
347
395
  * Selected styles for layout when advanced layouts experiment is on
348
396
  */
349
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
397
+ /**
398
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
399
+ * If you need to make changes here, also update the corresponding style in
400
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
401
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
402
+ */
350
403
  export const layoutSelectedStylesAdvanced = css({
351
404
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
352
405
  '.ProseMirror': {
@@ -399,7 +452,12 @@ export const layoutSelectedStylesAdvanced = css({
399
452
  // sometimes doesn't appear when inside a synced block.
400
453
  // Separated as a distinct style to allow feature-gating without affecting module-level styles.
401
454
  // This prevents style inconsistencies before the feature flag is initialized.
402
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
455
+ /**
456
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
457
+ * If you need to make changes here, also update the corresponding style in
458
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
459
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
460
+ */
403
461
  export const layoutSelectedStylesAdvancedFix = css({
404
462
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
405
463
  '.ProseMirror': {
@@ -421,7 +479,12 @@ export const layoutSelectedStylesAdvancedFix = css({
421
479
  * Base responsive styles for layout
422
480
  */
423
481
  // jest warning: JSDOM version (22) doesn't support the new @container CSS rule
424
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
482
+ /**
483
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
484
+ * If you need to make changes here, also update the corresponding style in
485
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
486
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
487
+ */
425
488
  export const layoutResponsiveBaseStyles = css({
426
489
  // chosen breakpoints in container queries are to make sure layout responsiveness in editor aligns with renderer
427
490
  // not resized layout in full-width editor
@@ -486,7 +549,12 @@ export const layoutResponsiveBaseStyles = css({
486
549
  /**
487
550
  * Responsive styles for layout in view mode
488
551
  */
489
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
552
+ /**
553
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
554
+ * If you need to make changes here, also update the corresponding style in
555
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
556
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
557
+ */
490
558
  export const layoutResponsiveStylesForView = css({
491
559
  // chosen breakpoints in container queries are to make sure layout responsiveness in editor aligns with renderer
492
560
  // not resized layout in full-width editor
@@ -545,7 +613,12 @@ export const layoutResponsiveStylesForView = css({
545
613
  /**
546
614
  * Base styles for layout
547
615
  */
548
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Needs manual remediation
616
+ /**
617
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
618
+ * If you need to make changes here, also update the corresponding style in
619
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
620
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
621
+ */
549
622
  export const layoutBaseStyles = css({
550
623
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-nested-selectors
551
624
  '.ProseMirror': {
@@ -639,7 +712,12 @@ export const layoutBaseStyles = css({
639
712
  }
640
713
  });
641
714
  // on exp 'platform_editor_table_excerpts_fix' cleanup, merge this style to the one above
642
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Needs manual remediation
715
+ /**
716
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
717
+ * If you need to make changes here, also update the corresponding style in
718
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
719
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
720
+ */
643
721
  export const layoutBaseStylesWithTableExcerptsFix = css({
644
722
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-nested-selectors
645
723
  '.ProseMirror': {
@@ -663,7 +741,12 @@ export const layoutBaseStylesWithTableExcerptsFix = css({
663
741
  /**
664
742
  * Base styles overrides for layout columns when advanced layouts experiment is on
665
743
  */
666
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
744
+ /**
745
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
746
+ * If you need to make changes here, also update the corresponding style in
747
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
748
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
749
+ */
667
750
  export const layoutBaseStylesAdvanced = css({
668
751
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
669
752
  '.ProseMirror [data-layout-section] [data-layout-column]': {
@@ -677,7 +760,12 @@ export const layoutBaseStylesAdvanced = css({
677
760
  // TODO: EDF-123 - Migrate away from gridSize
678
761
  // Recommendation: Replace directly with 7px
679
762
  // Ignored via go/ees007
680
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
763
+ /**
764
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
765
+ * If you need to make changes here, also update the corresponding style in
766
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
767
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
768
+ */
681
769
  export const layoutBaseStylesFixesUnderNestedDnDFG = css({
682
770
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
683
771
  '.ProseMirror [data-layout-section]': {
@@ -693,7 +781,12 @@ export const layoutBaseStylesFixesUnderNestedDnDFG = css({
693
781
  * Spacing overrides when platform_editor_nested_dnd_styles_changes is on,
694
782
  * excluding layouts inside bodied sync blocks
695
783
  */
696
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
784
+ /**
785
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
786
+ * If you need to make changes here, also update the corresponding style in
787
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
788
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
789
+ */
697
790
  export const layoutBaseStylesFixesUnderNestedDnDFGExcludingBodiedSync = css({
698
791
  // Apply -20px margin to all sections
699
792
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
@@ -714,7 +807,12 @@ export const layoutBaseStylesFixesUnderNestedDnDFGExcludingBodiedSync = css({
714
807
  /**
715
808
  * Layout in view mode styles for selected state when advanced layouts experiment is on.
716
809
  */
717
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Needs manual remediation
810
+ /**
811
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
812
+ * If you need to make changes here, also update the corresponding style in
813
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
814
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
815
+ */
718
816
  export const layoutSelectedStylesForViewAdvanced = css({
719
817
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
720
818
  '.ProseMirror': {
@@ -742,7 +840,12 @@ export const layoutSelectedStylesForViewAdvanced = css({
742
840
  /**
743
841
  * Layout in view mode styles for selected state when advanced layouts experiment is off.
744
842
  */
745
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
843
+ /**
844
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
845
+ * If you need to make changes here, also update the corresponding style in
846
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
847
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
848
+ */
746
849
  export const layoutSelectedStylesForViewNotAdvanced = css({
747
850
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
748
851
  '.ProseMirror': {
@@ -759,7 +862,12 @@ export const layoutSelectedStylesForViewNotAdvanced = css({
759
862
  /*
760
863
  * Layout in view mode styles, overrides over layout base styles
761
864
  */
762
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Needs manual remediation
865
+ /**
866
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
867
+ * If you need to make changes here, also update the corresponding style in
868
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
869
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
870
+ */
763
871
  export const layoutStylesForView = css({
764
872
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
765
873
  '.ProseMirror': {
@@ -777,7 +885,12 @@ export const layoutStylesForView = css({
777
885
  /*
778
886
  * marginTop fixes when platform_editor_nested_dnd_styles_changes is on
779
887
  */
780
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
888
+ /**
889
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
890
+ * If you need to make changes here, also update the corresponding style in
891
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
892
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
893
+ */
781
894
  export const layoutColumnMartinTopFixesNew = css({
782
895
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
783
896
  '.ProseMirror [data-layout-section] [data-layout-column] > div': {
@@ -791,7 +904,12 @@ export const layoutColumnMartinTopFixesNew = css({
791
904
  /*
792
905
  * marginTop fixes when platform_editor_nested_dnd_styles_changes is off
793
906
  */
794
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
907
+ /**
908
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
909
+ * If you need to make changes here, also update the corresponding style in
910
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
911
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
912
+ */
795
913
  export const layoutColumnMartinTopFixesOld = css({
796
914
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
797
915
  '.ProseMirror [data-layout-section] [data-layout-column] > div': {