@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,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 linkStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
6
13
  '.ProseMirror a.blockLink': {
@@ -15,8 +22,12 @@ export const linkStyles = css({
15
22
  textDecoration: 'none'
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 hyperLinkFloatingToolbarStyles = css({
21
32
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
22
33
  '.hyperlink-floating-toolbar': {
@@ -28,7 +39,12 @@ export const hyperLinkFloatingToolbarStyles = css({
28
39
  * Legacy Link icon in the Atlaskit package is bigger than the others,
29
40
  * new ADS icon does not have this issue
30
41
  */
31
- // 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
+ */
32
48
  export const linkLegacyIconStylesFix = css({
33
49
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
34
50
  '.hyperlink-open-link': {
@@ -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 { akEditorFullPageDefaultFontSize, akEditorFullPageDenseFontSize } from '@atlaskit/editor-shared-styles';
4
6
  // copied from packages/editor/editor-shared-styles/src/consts/consts.ts
@@ -8,8 +10,12 @@ const BLOCK_CARD_CONTAINER = 'blockCardView-content-wrap';
8
10
 
9
11
  // copied from packages/editor/editor-shared-styles/src/consts/consts.ts
10
12
  const blockNodesVerticalMargin = '0.75rem';
11
-
12
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
13
+ /**
14
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
15
+ * If you need to make changes here, also update the corresponding style in
16
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
17
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
18
+ */
13
19
  export const listsStyles = css({
14
20
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
15
21
  '.ProseMirror': {
@@ -129,8 +135,12 @@ export const listsStyles = css({
129
135
  }
130
136
  }
131
137
  });
132
-
133
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
138
+ /**
139
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
140
+ * If you need to make changes here, also update the corresponding style in
141
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
142
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
143
+ */
134
144
  export const diffListStyles = css({
135
145
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
136
146
  'li[data-testid="show-diff-changed-decoration-node"]::marker': {
@@ -141,7 +151,12 @@ export const diffListStyles = css({
141
151
 
142
152
  // These styles are to fix a layout shift issue that occurs when aui-reset.less CSS is applied post-hydration.
143
153
  // It overrides the design system bundle.css list margins, which in turn causes the lists to shift vertically.
144
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
154
+ /**
155
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
156
+ * If you need to make changes here, also update the corresponding style in
157
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
158
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
159
+ */
145
160
  export const listsStylesMarginLayoutShiftFix = css({
146
161
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
147
162
  '.ProseMirror': {
@@ -163,7 +178,12 @@ export const listsStylesMarginLayoutShiftFix = css({
163
178
  });
164
179
 
165
180
  /* This prevents https://product-fabric.atlassian.net/browse/ED-20924 */
166
- // 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
+ */
167
187
  export const listsStylesSafariFix = css({
168
188
  // 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
169
189
  [`.ProseMirror:not(.${BLOCK_CARD_CONTAINER}) > li::before`]: {
@@ -178,10 +198,21 @@ export const listsStylesSafariFix = css({
178
198
  }
179
199
  });
180
200
 
201
+ /**
202
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
203
+ * If you need to make changes here, also update the corresponding style in
204
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
205
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
206
+ */
181
207
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
182
208
  export const EDITOR_LIST_DENSE_GAP = `max(0px, calc((var(--ak-editor-base-font-size, ${akEditorFullPageDefaultFontSize}px) - ${akEditorFullPageDenseFontSize}px) * (4 / 3)))`;
183
209
 
184
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
210
+ /**
211
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
212
+ * If you need to make changes here, also update the corresponding style in
213
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
214
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
215
+ */
185
216
  export const getDenseListStyles = baseFontSize => {
186
217
  if (!baseFontSize || baseFontSize === akEditorFullPageDefaultFontSize) {
187
218
  return css({});
@@ -202,8 +233,12 @@ export const getDenseListStyles = baseFontSize => {
202
233
  }
203
234
  });
204
235
  };
205
-
206
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
236
+ /**
237
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
238
+ * If you need to make changes here, also update the corresponding style in
239
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
240
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
241
+ */
207
242
  export const listItemHiddenMarkerStyles = css({
208
243
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
209
244
  '.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
  import { css } from '@emotion/react';
3
5
  import { INLINE_IMAGE_WRAPPER_CLASS_NAME } from '@atlaskit/editor-common/media-inline';
4
6
  import { CAPTION_PLACEHOLDER_ID } from '@atlaskit/editor-common/media-single';
@@ -31,7 +33,13 @@ const referenceHeights = {
31
33
  };
32
34
  const inlineImageSelector = `> .mediaInlineView-content-wrap > .${INLINE_IMAGE_WRAPPER_CLASS_NAME}, > :is(a, span[data-mark-type='border']) .mediaInlineView-content-wrap > .${INLINE_IMAGE_WRAPPER_CLASS_NAME}, > .${INLINE_IMAGE_WRAPPER_CLASS_NAME}, > :is(a, span[data-mark-type='border']) .${INLINE_IMAGE_WRAPPER_CLASS_NAME}`;
33
35
 
34
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles,@atlaskit/ui-styling-standard/no-imported-style-values,@atlaskit/ui-styling-standard/no-unsafe-values
36
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values
37
+ /**
38
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
39
+ * If you need to make changes here, also update the corresponding style in
40
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
41
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
42
+ */
35
43
  export const mediaStyles = css({
36
44
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
37
45
  '.ProseMirror': {
@@ -357,8 +365,12 @@ export const mediaStyles = css({
357
365
  boxShadow: 'none'
358
366
  }
359
367
  });
360
-
361
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
368
+ /**
369
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
370
+ * If you need to make changes here, also update the corresponding style in
371
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
372
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
373
+ */
362
374
  export const mediaDangerStyles = css({
363
375
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
364
376
  '.ProseMirror': {
@@ -375,16 +387,24 @@ export const mediaDangerStyles = css({
375
387
  [dangerBorderStyles]
376
388
  }
377
389
  });
378
-
379
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
390
+ /**
391
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
392
+ * If you need to make changes here, also update the corresponding style in
393
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
394
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
395
+ */
380
396
  export const mediaGroupStyles = css({
381
397
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
382
398
  '.mediaGroupView-content-wrap ul': {
383
399
  padding: 0
384
400
  }
385
401
  });
386
-
387
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
402
+ /**
403
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
404
+ * If you need to make changes here, also update the corresponding style in
405
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
406
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
407
+ */
388
408
  export const mediaAlignmentStyles = css({
389
409
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
390
410
  '.fabric-editor-block-mark[class^="fabric-editor-align"]': {
@@ -419,7 +439,12 @@ export const mediaAlignmentStyles = css({
419
439
 
420
440
  // When both platform_editor_content_mode_button_mvp & confluence_compact_text_format are cleaned up,
421
441
  // move this style into mediaStyles variable ⬆️
422
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
442
+ /**
443
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
444
+ * If you need to make changes here, also update the corresponding style in
445
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
446
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
447
+ */
423
448
  export const mediaCaptionStyles = css({
424
449
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
425
450
  '.mediaSingleView-content-wrap': {
@@ -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 { MentionSharedCssClassName } from '@atlaskit/editor-common/mention';
4
6
  import { akEditorDeleteBorder, akEditorSelectedBorderSize, akEditorSelectedNodeClassName } from '@atlaskit/editor-shared-styles';
@@ -9,8 +11,12 @@ import { backgroundSelectionStyles, boxShadowSelectionStyles, dangerBackgroundSt
9
11
  const mentionsSelectedColor = css({
10
12
  color: "var(--ds-text-subtle, #505258)"
11
13
  });
12
-
13
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
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
+ */
14
20
  export const mentionsStyles = css({
15
21
  // 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
16
22
  [`.${MentionSharedCssClassName.MENTION_CONTAINER}`]: {
@@ -40,8 +46,12 @@ export const mentionsStyles = css({
40
46
  }
41
47
  }
42
48
  });
43
-
44
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
49
+ /**
50
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
51
+ * If you need to make changes here, also update the corresponding style in
52
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
53
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
54
+ */
45
55
  export const mentionNodeStyles = css({
46
56
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
47
57
  '.editor-mention-primitive': {
@@ -111,7 +121,12 @@ export const mentionNodeStyles = css({
111
121
  });
112
122
 
113
123
  // This is mentions styles for mentions selection styles based on the vanilla node view
114
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
124
+ /**
125
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
126
+ * If you need to make changes here, also update the corresponding style in
127
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
128
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
129
+ */
115
130
  export const mentionsSelectionStyles = css({
116
131
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
117
132
  '.danger': {
@@ -138,7 +153,12 @@ export const mentionsSelectionStyles = css({
138
153
  });
139
154
 
140
155
  // This is mentions styles for mentions selection styles based on the vanilla node view
141
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
156
+ /**
157
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
158
+ * If you need to make changes here, also update the corresponding style in
159
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
160
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
161
+ */
142
162
  export const mentionsSelectionStylesWithSearchMatch = css({
143
163
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
144
164
  '.danger': {
@@ -170,8 +190,12 @@ export const mentionsSelectionStylesWithSearchMatch = css({
170
190
  boxShadowSelectionStyles]
171
191
  }
172
192
  });
173
-
174
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
193
+ /**
194
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
195
+ * If you need to make changes here, also update the corresponding style in
196
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
197
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
198
+ */
175
199
  export const mentionDangerStyles = css({
176
200
  // 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
177
201
  [`.${akEditorSelectedNodeClassName}:not(.search-match-block).danger`]: {
@@ -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 overflowShadowStyles = css({
5
12
  backgroundImage: `
6
13
  linear-gradient(
@@ -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 panelStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
6
13
  '.ProseMirror': {
@@ -169,8 +176,12 @@ export const panelStyles = css({
169
176
  }
170
177
  }
171
178
  });
172
-
173
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
179
+ /**
180
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
181
+ * If you need to make changes here, also update the corresponding style in
182
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
183
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
184
+ */
174
185
  export const nestedPanelBorderStylesMixin = css({
175
186
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
176
187
  '.ProseMirror': {
@@ -184,8 +195,12 @@ export const nestedPanelBorderStylesMixin = css({
184
195
  }
185
196
  }
186
197
  });
187
-
188
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
198
+ /**
199
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
200
+ * If you need to make changes here, also update the corresponding style in
201
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
202
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
203
+ */
189
204
  export const panelStylesMixin_fg_platform_editor_nested_dnd_styles_changes = css({
190
205
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
191
206
  '.ProseMirror': {
@@ -224,8 +239,12 @@ export const panelStylesMixin_fg_platform_editor_nested_dnd_styles_changes = css
224
239
  }
225
240
  }
226
241
  });
227
-
228
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
242
+ /**
243
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
244
+ * If you need to make changes here, also update the corresponding style in
245
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
246
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
247
+ */
229
248
  export const panelStylesMixin = css({
230
249
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
231
250
  '.ProseMirror': {
@@ -282,16 +301,24 @@ export const panelStylesMixin = css({
282
301
  }
283
302
  }
284
303
  });
285
-
286
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
304
+ /**
305
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
306
+ * If you need to make changes here, also update the corresponding style in
307
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
308
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
309
+ */
287
310
  export const panelViewStyles = css({
288
311
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
289
312
  '.panelView-content-wrap': {
290
313
  boxSizing: 'border-box'
291
314
  }
292
315
  });
293
-
294
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
316
+ /**
317
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
318
+ * If you need to make changes here, also update the corresponding style in
319
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
320
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
321
+ */
295
322
  export const nestedPanelDangerStyles = css({
296
323
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
297
324
  '.ProseMirror': {
@@ -1,11 +1,18 @@
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
  const blockNodesVerticalMargin = '0.75rem';
4
6
  const scaledBlockNodesVerticalMargin = '0.75em';
5
7
 
6
8
  // When both platform_editor_content_mode_button_mvp & confluence_compact_text_format are cleaned up,
7
9
  // simplify the name/ use the other paragraph style name
8
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
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
+ */
9
16
  export const paragraphStylesWithScaledMargin = css({
10
17
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
11
18
  '.ProseMirror p': {
@@ -21,7 +28,12 @@ export const paragraphStylesWithScaledMargin = css({
21
28
 
22
29
  // When both platform_editor_content_mode_button_mvp & confluence_compact_text_format are cleaned up,
23
30
  // simplify the name/ use the other paragraph style name
24
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
31
+ /**
32
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
33
+ * If you need to make changes here, also update the corresponding style in
34
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
35
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
36
+ */
25
37
  export const paragraphStylesOldWithScaledMargin = css({
26
38
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
27
39
  '.ProseMirror p': {
@@ -36,8 +48,12 @@ export const paragraphStylesOldWithScaledMargin = css({
36
48
  letterSpacing: '-0.005em'
37
49
  }
38
50
  });
39
-
40
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
51
+ /**
52
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
53
+ * If you need to make changes here, also update the corresponding style in
54
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
55
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
56
+ */
41
57
  export const paragraphStylesUGCRefreshed = css({
42
58
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
43
59
  '.ProseMirror p': {
@@ -50,8 +66,12 @@ export const paragraphStylesUGCRefreshed = css({
50
66
  marginBottom: 0
51
67
  }
52
68
  });
53
-
54
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
69
+ /**
70
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
71
+ * If you need to make changes here, also update the corresponding style in
72
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
73
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
74
+ */
55
75
  export const paragraphStylesUGCModernized = css({
56
76
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
57
77
  '.ProseMirror p': {
@@ -64,8 +84,12 @@ export const paragraphStylesUGCModernized = css({
64
84
  marginBottom: 0
65
85
  }
66
86
  });
67
-
68
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
87
+ /**
88
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
89
+ * If you need to make changes here, also update the corresponding style in
90
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
91
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
92
+ */
69
93
  export const paragraphStylesOld = css({
70
94
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
71
95
  '.ProseMirror p': {
@@ -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 placeholderFadeInKeyframes = keyframes({
4
6
  from: {
@@ -8,8 +10,12 @@ const placeholderFadeInKeyframes = keyframes({
8
10
  opacity: 1
9
11
  }
10
12
  });
11
-
12
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
13
+ /**
14
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
15
+ * If you need to make changes here, also update the corresponding style in
16
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
17
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
18
+ */
13
19
  export const placeholderTextStyles = css({
14
20
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
15
21
  '.ProseMirror span[data-placeholder]': {
@@ -77,7 +83,12 @@ export const placeholderTextStyles = css({
77
83
  }
78
84
  });
79
85
 
80
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
86
+ /**
87
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
88
+ * If you need to make changes here, also update the corresponding style in
89
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
90
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
91
+ */
81
92
  export const placeholderStyles = css({
82
93
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
83
94
  '.ProseMirror .placeholder-decoration': {
@@ -98,8 +109,12 @@ export const placeholderStyles = css({
98
109
  animation: `${placeholderFadeInKeyframes} 300ms ease-out forwards`
99
110
  }
100
111
  });
101
-
102
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
112
+ /**
113
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
114
+ * If you need to make changes here, also update the corresponding style in
115
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
116
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
117
+ */
103
118
  export const placeholderOverflowStyles = css({
104
119
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
105
120
  '.ProseMirror p:has(.placeholder-decoration-hide-overflow)': {
@@ -108,8 +123,12 @@ export const placeholderOverflowStyles = css({
108
123
  textOverflow: 'ellipsis'
109
124
  }
110
125
  });
111
-
112
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
126
+ /**
127
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
128
+ * If you need to make changes here, also update the corresponding style in
129
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
130
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
131
+ */
113
132
  export const placeholderWrapStyles = css({
114
133
  // As part of controls work, we add placeholder `Search` to quick insert command
115
134
  // This style is to prevent `/Search` being wrapped if it's triggered at the end of the line