@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,4 +1,6 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766 */
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 fadeIn = keyframes({
4
6
  from: {
@@ -10,8 +12,12 @@ const fadeIn = keyframes({
10
12
  transform: 'translateY(0)'
11
13
  }
12
14
  });
13
-
14
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
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
+ */
15
21
  export const selectionToolbarAnimationStyles = css({
16
22
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
17
23
  "[aria-label='Selection toolbar']": {
@@ -1,16 +1,35 @@
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';
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
+ */
3
11
  export const shadowClassNames = {
4
12
  RIGHT_SHADOW: 'right-shadow',
5
13
  LEFT_SHADOW: 'left-shadow'
6
14
  };
15
+
16
+ /**
17
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
18
+ * If you need to make changes here, also update the corresponding style in
19
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
20
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
21
+ */
7
22
  export const shadowObserverClassNames = {
8
23
  SENTINEL_LEFT: 'sentinel-left',
9
24
  SENTINEL_RIGHT: 'sentinel-right',
10
25
  SHADOW_CONTAINER: 'with-shadow-observer'
11
26
  };
12
-
13
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
27
+ /**
28
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
29
+ * If you need to make changes here, also update the corresponding style in
30
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
31
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
32
+ */
14
33
  export const shadowStyles = css({
15
34
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
16
35
  '.ProseMirror': {
@@ -1,15 +1,36 @@
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 { akEditorFullPageNarrowBreakout } from '@atlaskit/editor-shared-styles';
4
6
  import { boxShadowSelectionStyles, hideNativeBrowserTextSelectionStyles } from './selectionStyles';
5
7
 
6
8
  // Constant variables here has been inlined in css from EditorContentContainer, if you need to make
7
9
  // update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
10
+ /**
11
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
12
+ * If you need to make changes here, also update the corresponding style in
13
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
14
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
15
+ */
8
16
  export const DATASOURCE_INNER_CONTAINER_CLASSNAME = 'datasourceView-content-inner-wrap';
17
+
18
+ /**
19
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
20
+ * If you need to make changes here, also update the corresponding style in
21
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
22
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
23
+ */
9
24
  export const FLOATING_TOOLBAR_LINKPICKER_CLASSNAME = 'card-floating-toolbar--link-picker';
10
25
 
11
26
  // Constant variables here has been inlined in css from EditorContentContainer, if you need to make
12
27
  // update here, please also update packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
28
+ /**
29
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
30
+ * If you need to make changes here, also update the corresponding style in
31
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
32
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
33
+ */
13
34
  export const SmartCardSharedCssClassName = {
14
35
  INLINE_CARD_CONTAINER: 'inlineCardView-content-wrap',
15
36
  BLOCK_CARD_CONTAINER: 'blockCardView-content-wrap',
@@ -19,7 +40,12 @@ export const SmartCardSharedCssClassName = {
19
40
  };
20
41
 
21
42
  // Move this into `smartCardStyles` below when cleaning up editor_controls_patch_15
22
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
43
+ /**
44
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
45
+ * If you need to make changes here, also update the corresponding style in
46
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
47
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
48
+ */
23
49
  export const editorControlsSmartCardStyles = css({
24
50
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values
25
51
  [`.${SmartCardSharedCssClassName.INLINE_CARD_CONTAINER}`]: {
@@ -31,7 +57,13 @@ export const editorControlsSmartCardStyles = css({
31
57
  }
32
58
  });
33
59
 
34
- // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
60
+ // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Ignored via go/DSP-18766
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
+ */
35
67
  export const smartCardDiffStyles = css({
36
68
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values,@atlaskit/ui-styling-standard/no-unsafe-values,@atlaskit/ui-styling-standard/no-nested-selectors
37
69
  [`.${SmartCardSharedCssClassName.EMBED_CARD_CONTAINER}`]: {
@@ -44,7 +76,13 @@ export const smartCardDiffStyles = css({
44
76
  }
45
77
  });
46
78
 
47
- // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
79
+ // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Ignored via go/DSP-18766
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
+ */
48
86
  export const showDiffDeletedNodeStyles = css({
49
87
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values,@atlaskit/ui-styling-standard/no-unsafe-values,@atlaskit/ui-styling-standard/no-nested-selectors
50
88
  [`.${SmartCardSharedCssClassName.EMBED_CARD_CONTAINER}`]: {
@@ -146,7 +184,13 @@ export const showDiffDeletedNodeStyles = css({
146
184
  }
147
185
  });
148
186
 
149
- // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
187
+ // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Ignored via go/DSP-18766
188
+ /**
189
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
190
+ * If you need to make changes here, also update the corresponding style in
191
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
192
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
193
+ */
150
194
  export const showDiffDeletedNodeStylesNew = css({
151
195
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values,@atlaskit/ui-styling-standard/no-unsafe-values,@atlaskit/ui-styling-standard/no-nested-selectors
152
196
  [`.${SmartCardSharedCssClassName.EMBED_CARD_CONTAINER}`]: {
@@ -248,7 +292,13 @@ export const showDiffDeletedNodeStylesNew = css({
248
292
  }
249
293
  });
250
294
 
251
- // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
295
+ // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Ignored via go/DSP-18766
296
+ /**
297
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
298
+ * If you need to make changes here, also update the corresponding style in
299
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
300
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
301
+ */
252
302
  export const smartCardStyles = css({
253
303
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors,@atlaskit/ui-styling-standard/no-unsafe-values
254
304
  [`.${SmartCardSharedCssClassName.INLINE_CARD_CONTAINER}`]: {
@@ -393,7 +443,12 @@ export const smartCardStyles = css({
393
443
  }
394
444
  });
395
445
 
396
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
446
+ /**
447
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
448
+ * If you need to make changes here, also update the corresponding style in
449
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
450
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
451
+ */
397
452
  export const smartCardStylesWithSearchMatch = css({
398
453
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors,@atlaskit/ui-styling-standard/no-unsafe-values
399
454
  [`.${SmartCardSharedCssClassName.INLINE_CARD_CONTAINER}`]: {
@@ -546,7 +601,12 @@ export const smartCardStylesWithSearchMatch = css({
546
601
  }
547
602
  });
548
603
 
549
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
604
+ /**
605
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
606
+ * If you need to make changes here, also update the corresponding style in
607
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
608
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
609
+ */
550
610
  export const smartCardStylesWithSearchMatchAndBlockMenuDangerStyles = css({
551
611
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors,@atlaskit/ui-styling-standard/no-unsafe-values
552
612
  [`.${SmartCardSharedCssClassName.INLINE_CARD_CONTAINER}`]: {
@@ -698,8 +758,12 @@ export const smartCardStylesWithSearchMatchAndBlockMenuDangerStyles = css({
698
758
  padding: 0
699
759
  }
700
760
  });
701
-
702
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
761
+ /**
762
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
763
+ * If you need to make changes here, also update the corresponding style in
764
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
765
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
766
+ */
703
767
  export const smartCardStylesWithSearchMatchAndPreviewPanelResponsiveness = css({
704
768
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-container-queries, @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values
705
769
  [`@container editor-area (max-width: ${akEditorFullPageNarrowBreakout}px)`]: {
@@ -719,8 +783,12 @@ export const smartCardStylesWithSearchMatchAndPreviewPanelResponsiveness = css({
719
783
  }]
720
784
  }
721
785
  });
722
-
723
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
786
+ /**
787
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
788
+ * If you need to make changes here, also update the corresponding style in
789
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
790
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
791
+ */
724
792
  export const smartLinksInLivePagesStyles = css({
725
793
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors,@atlaskit/ui-styling-standard/no-unsafe-values
726
794
  [`.${SmartCardSharedCssClassName.BLOCK_CARD_CONTAINER}`]: {
@@ -744,8 +812,12 @@ export const smartLinksInLivePagesStyles = css({
744
812
  }
745
813
  }
746
814
  });
747
-
748
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
815
+ /**
816
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
817
+ * If you need to make changes here, also update the corresponding style in
818
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
819
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
820
+ */
749
821
  export const linkingVisualRefreshV1Styles = css({
750
822
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors,@atlaskit/ui-styling-standard/no-unsafe-values
751
823
  [`.${SmartCardSharedCssClassName.BLOCK_CARD_CONTAINER}:not(.${SmartCardSharedCssClassName.DATASOURCE_CONTAINER})`]: {
@@ -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 statusStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
6
13
  '.pm-table-cell-content-wrap, .pm-table-header-content-wrap, [data-layout-section]': {
@@ -71,8 +78,12 @@ export const statusStyles = css({
71
78
  maxWidth: `calc(200px - ${"var(--ds-space-100, 8px)"})`
72
79
  }
73
80
  });
74
-
75
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
81
+ /**
82
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
83
+ * If you need to make changes here, also update the corresponding style in
84
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
85
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
86
+ */
76
87
  export const statusStylesMixin_fg_platform_component_visual_refresh = css({
77
88
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
78
89
  '.statusView-content-wrap': {
@@ -117,8 +128,12 @@ export const statusStylesMixin_fg_platform_component_visual_refresh = css({
117
128
  backgroundColor: '#B3DF72'
118
129
  }
119
130
  });
120
-
121
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
131
+ /**
132
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
133
+ * If you need to make changes here, also update the corresponding style in
134
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
135
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
136
+ */
122
137
  export const statusStylesMixin_fg_platform_component_visual_refresh_with_search_match = css({
123
138
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
124
139
  '.statusView-content-wrap:not(.search-match-block)': {
@@ -163,8 +178,12 @@ export const statusStylesMixin_fg_platform_component_visual_refresh_with_search_
163
178
  backgroundColor: '#B3DF72'
164
179
  }
165
180
  });
166
-
167
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
181
+ /**
182
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
183
+ * If you need to make changes here, also update the corresponding style in
184
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
185
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
186
+ */
168
187
  export const statusDangerStyles = css({
169
188
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
170
189
  '.statusView-content-wrap:not(.search-match-block)': {
@@ -175,8 +194,12 @@ export const statusDangerStyles = css({
175
194
  }
176
195
  }
177
196
  });
178
-
179
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
197
+ /**
198
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
199
+ * If you need to make changes here, also update the corresponding style in
200
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
201
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
202
+ */
180
203
  export const statusStylesMixin_without_fg_platform_component_visual_refresh = css({
181
204
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
182
205
  '.statusView-content-wrap': {
@@ -245,8 +268,12 @@ export const statusStylesMixin_without_fg_platform_component_visual_refresh = cs
245
268
  color: "var(--ds-text-success, #4C6B1F)"
246
269
  }
247
270
  });
248
-
249
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
271
+ /**
272
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
273
+ * If you need to make changes here, also update the corresponding style in
274
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
275
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
276
+ */
250
277
  export const statusStylesMixin_without_fg_platform_component_visual_refresh_with_search_match = css({
251
278
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
252
279
  '.statusView-content-wrap:not(.search-match-block)': {
@@ -315,8 +342,12 @@ export const statusStylesMixin_without_fg_platform_component_visual_refresh_with
315
342
  color: "var(--ds-text-success, #4C6B1F)"
316
343
  }
317
344
  });
318
-
319
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
345
+ /**
346
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
347
+ * If you need to make changes here, also update the corresponding style in
348
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
349
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
350
+ */
320
351
  export const statusStylesTeam26 = css({
321
352
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
322
353
  '[data-prosemirror-node-name="status"] .lozenge-wrapper': {
@@ -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, keyframes } from '@emotion/react';
3
5
  import { BodiedSyncBlockSharedCssClassName, SyncBlockSharedCssClassName, SyncBlockLabelSharedCssClassName, SyncBlockStateCssClassName } from '@atlaskit/editor-common/sync-block';
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 syncBlockStylesBase = css({
6
13
  '@property --angle': {
7
14
  syntax: '"<angle>"',
@@ -213,7 +220,12 @@ export const syncBlockStylesBase = css({
213
220
  });
214
221
 
215
222
  // Export the default styles with negative margins (original behavior)
216
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
223
+ /**
224
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
225
+ * If you need to make changes here, also update the corresponding style in
226
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
227
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
228
+ */
217
229
  export const syncBlockStyles = css({
218
230
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
219
231
  '.ProseMirror': {
@@ -224,8 +236,12 @@ export const syncBlockStyles = css({
224
236
  }
225
237
  }
226
238
  });
227
-
228
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
239
+ /**
240
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
241
+ * If you need to make changes here, also update the corresponding style in
242
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
243
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
244
+ */
229
245
  export const syncBlockOverflowStyles = css({
230
246
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
231
247
  '.ProseMirror': {
@@ -246,7 +262,12 @@ export const syncBlockOverflowStyles = css({
246
262
 
247
263
  // Styles for text selection in reference sync blocks.
248
264
  // Gated behind platform_synced_block_patch_14.
249
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
265
+ /**
266
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
267
+ * If you need to make changes here, also update the corresponding style in
268
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
269
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
270
+ */
250
271
  export const syncBlockTextSelectionStyles = css({
251
272
  // 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
252
273
  [`.${SyncBlockSharedCssClassName.renderer}`]: {
@@ -283,8 +304,12 @@ export const syncBlockTextSelectionStyles = css({
283
304
  }
284
305
  }
285
306
  });
286
-
287
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
307
+ /**
308
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
309
+ * If you need to make changes here, also update the corresponding style in
310
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
311
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
312
+ */
288
313
  export const syncBlockFirstNodeStyles = css({
289
314
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values,@atlaskit/ui-styling-standard/no-nested-selectors,@atlaskit/ui-styling-standard/no-unsafe-values
290
315
  [`.ProseMirror > .fabric-editor-breakout-mark:first-child`]: {
@@ -1,8 +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 { scrollbarStyles } from './scrollbarStyles';
4
-
5
- // 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
+ */
6
12
  export const tableLayoutFixes = css({
7
13
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
8
14
  '.pm-table-header-content-wrap :not(.fabric-editor-alignment), .pm-table-header-content-wrap :not(p, .fabric-editor-block-mark) + div.fabric-editor-block-mark, .pm-table-cell-content-wrap :not(p, .fabric-editor-block-mark) + div.fabric-editor-block-mark': {
@@ -16,8 +22,12 @@ export const tableLayoutFixes = css({
16
22
  clear: 'both'
17
23
  }
18
24
  });
19
-
20
- // 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
+ */
21
31
  export const tableLayoutFixesWithFontSize = css({
22
32
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
23
33
  '.pm-table-header-content-wrap :not(.fabric-editor-alignment, .fabric-editor-font-size), .pm-table-header-content-wrap :not(p, .fabric-editor-block-mark) + div.fabric-editor-block-mark, .pm-table-cell-content-wrap :not(p, .fabric-editor-block-mark) + div.fabric-editor-block-mark': {
@@ -31,21 +41,33 @@ export const tableLayoutFixesWithFontSize = css({
31
41
  clear: 'both'
32
42
  }
33
43
  });
34
-
35
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
44
+ /**
45
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
46
+ * If you need to make changes here, also update the corresponding style in
47
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
48
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
49
+ */
36
50
  export const tableCommentEditorMarginOverride = css({
37
51
  marginLeft: 0,
38
52
  marginRight: 0
39
53
  });
40
-
41
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
54
+ /**
55
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
56
+ * If you need to make changes here, also update the corresponding style in
57
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
58
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
59
+ */
42
60
  export const tableCommentEditorStyles = css({
43
61
  // TODO: ED-28075 - refactor array include to unblock Compiled CSS migration
44
62
  // 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
45
63
  [`.ProseMirror .pm-table-wrapper > table`]: [tableCommentEditorMarginOverride, scrollbarStyles]
46
64
  });
47
-
48
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
65
+ /**
66
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
67
+ * If you need to make changes here, also update the corresponding style in
68
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
69
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
70
+ */
49
71
  export const tableContainerStyles = css({
50
72
  /* Fix for HOT-119925: Ensure table containers have proper width constraints and overflow handling */
51
73
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
@@ -70,8 +92,12 @@ export const tableContainerStyles = css({
70
92
  minWidth: 'auto'
71
93
  }
72
94
  });
73
-
74
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
95
+ /**
96
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
97
+ * If you need to make changes here, also update the corresponding style in
98
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
99
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
100
+ */
75
101
  export const tableEmptyRowStyles = css({
76
102
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
77
103
  '.ProseMirror .pm-table-wrapper': {
@@ -85,8 +111,12 @@ export const tableEmptyRowStyles = css({
85
111
  }
86
112
  }
87
113
  });
88
-
89
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
114
+ /**
115
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
116
+ * If you need to make changes here, also update the corresponding style in
117
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
118
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
119
+ */
90
120
  export const tableContentModeStyles = css({
91
121
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
92
122
  '.pm-table-resizer-container:has(table[data-initial-width-mode="content"])': {