@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,6 +1,13 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
5
+ /**
6
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
7
+ * If you need to make changes here, also update the corresponding style in
8
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
9
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
10
+ */
4
11
  export var 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 var 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 var 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 var 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 var linkLegacyIconStylesFix = css({
33
49
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
34
50
  '.hyperlink-open-link': {
@@ -1,5 +1,7 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
  import { css } from '@emotion/react';
4
6
  import { akEditorFullPageDefaultFontSize, akEditorFullPageDenseFontSize } from '@atlaskit/editor-shared-styles';
5
7
  // copied from packages/editor/editor-shared-styles/src/consts/consts.ts
@@ -9,8 +11,12 @@ var BLOCK_CARD_CONTAINER = 'blockCardView-content-wrap';
9
11
 
10
12
  // copied from packages/editor/editor-shared-styles/src/consts/consts.ts
11
13
  var blockNodesVerticalMargin = '0.75rem';
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 var listsStyles = css({
15
21
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
16
22
  '.ProseMirror': {
@@ -130,8 +136,12 @@ export var listsStyles = css({
130
136
  }
131
137
  }
132
138
  });
133
-
134
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
139
+ /**
140
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
141
+ * If you need to make changes here, also update the corresponding style in
142
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
143
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
144
+ */
135
145
  export var diffListStyles = css({
136
146
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
137
147
  'li[data-testid="show-diff-changed-decoration-node"]::marker': {
@@ -142,7 +152,12 @@ export var diffListStyles = css({
142
152
 
143
153
  // These styles are to fix a layout shift issue that occurs when aui-reset.less CSS is applied post-hydration.
144
154
  // It overrides the design system bundle.css list margins, which in turn causes the lists to shift vertically.
145
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
155
+ /**
156
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
157
+ * If you need to make changes here, also update the corresponding style in
158
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
159
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
160
+ */
146
161
  export var listsStylesMarginLayoutShiftFix = css({
147
162
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
148
163
  '.ProseMirror': {
@@ -164,7 +179,12 @@ export var listsStylesMarginLayoutShiftFix = css({
164
179
  });
165
180
 
166
181
  /* This prevents https://product-fabric.atlassian.net/browse/ED-20924 */
167
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
182
+ /**
183
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
184
+ * If you need to make changes here, also update the corresponding style in
185
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
186
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
187
+ */
168
188
  export var listsStylesSafariFix = css(_defineProperty(_defineProperty({}, ".ProseMirror:not(.".concat(BLOCK_CARD_CONTAINER, ") > li::before"), {
169
189
  content: '" "',
170
190
  // eslint-disable-next-line @atlaskit/design-system/use-tokens-typography, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values
@@ -174,10 +194,21 @@ export var listsStylesSafariFix = css(_defineProperty(_defineProperty({}, ".Pros
174
194
  marginTop: "-".concat(akEditorLineHeight, "em !important")
175
195
  }));
176
196
 
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
+ */
177
203
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
178
204
  export var EDITOR_LIST_DENSE_GAP = "max(0px, calc((var(--ak-editor-base-font-size, ".concat(akEditorFullPageDefaultFontSize, "px) - ").concat(akEditorFullPageDenseFontSize, "px) * (4 / 3)))");
179
205
 
180
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
206
+ /**
207
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
208
+ * If you need to make changes here, also update the corresponding style in
209
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
210
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
211
+ */
181
212
  export var getDenseListStyles = function getDenseListStyles(baseFontSize) {
182
213
  if (!baseFontSize || baseFontSize === akEditorFullPageDefaultFontSize) {
183
214
  return css({});
@@ -198,8 +229,12 @@ export var getDenseListStyles = function getDenseListStyles(baseFontSize) {
198
229
  }
199
230
  });
200
231
  };
201
-
202
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
232
+ /**
233
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
234
+ * If you need to make changes here, also update the corresponding style in
235
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
236
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
237
+ */
203
238
  export var listItemHiddenMarkerStyles = css({
204
239
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
205
240
  '.ProseMirror': {
@@ -1,6 +1,8 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
2
  var _ProseMirror, _css;
3
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
3
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
4
+ @repo/internal/deprecations/deprecation-ticket-required,
5
+ @atlaskit/ui-styling-standard/no-exported-styles */
4
6
  import { css } from '@emotion/react';
5
7
  import { INLINE_IMAGE_WRAPPER_CLASS_NAME } from '@atlaskit/editor-common/media-inline';
6
8
  import { CAPTION_PLACEHOLDER_ID } from '@atlaskit/editor-common/media-single';
@@ -33,7 +35,13 @@ var referenceHeights = {
33
35
  };
34
36
  var inlineImageSelector = "> .mediaInlineView-content-wrap > .".concat(INLINE_IMAGE_WRAPPER_CLASS_NAME, ", > :is(a, span[data-mark-type='border']) .mediaInlineView-content-wrap > .").concat(INLINE_IMAGE_WRAPPER_CLASS_NAME, ", > .").concat(INLINE_IMAGE_WRAPPER_CLASS_NAME, ", > :is(a, span[data-mark-type='border']) .").concat(INLINE_IMAGE_WRAPPER_CLASS_NAME);
35
37
 
36
- // 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
38
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values
39
+ /**
40
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
41
+ * If you need to make changes here, also update the corresponding style in
42
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
43
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
44
+ */
37
45
  export var mediaStyles = css((_css = {
38
46
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
39
47
  '.ProseMirror': (_ProseMirror = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_ProseMirror, "li .".concat(richMediaClassName), {
@@ -224,24 +232,36 @@ export var mediaStyles = css((_css = {
224
232
  }), '.ak-editor-no-interaction #newFileExperienceWrapper', {
225
233
  boxShadow: 'none'
226
234
  })));
227
-
228
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
235
+ /**
236
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
237
+ * If you need to make changes here, also update the corresponding style in
238
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
239
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
240
+ */
229
241
  export var mediaDangerStyles = css({
230
242
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
231
243
  '.ProseMirror': _defineProperty(_defineProperty({}, ".mediaInlineView-content-wrap.".concat(akEditorSelectedNodeClassName, ".danger"), _defineProperty(_defineProperty({}, " .".concat(INLINE_IMAGE_WRAPPER_CLASS_NAME), [dangerBorderStyles]), '>span> span[role="button"]', [dangerBorderStyles])), ".mediaGroupView-content-wrap.danger #newFileExperienceWrapper",
232
244
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values,@atlaskit/ui-styling-standard/no-unsafe-values
233
245
  [dangerBorderStyles])
234
246
  });
235
-
236
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
247
+ /**
248
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
249
+ * If you need to make changes here, also update the corresponding style in
250
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
251
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
252
+ */
237
253
  export var mediaGroupStyles = css({
238
254
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
239
255
  '.mediaGroupView-content-wrap ul': {
240
256
  padding: 0
241
257
  }
242
258
  });
243
-
244
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
259
+ /**
260
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
261
+ * If you need to make changes here, also update the corresponding style in
262
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
263
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
264
+ */
245
265
  export var mediaAlignmentStyles = css({
246
266
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
247
267
  '.fabric-editor-block-mark[class^="fabric-editor-align"]': {
@@ -276,7 +296,12 @@ export var mediaAlignmentStyles = css({
276
296
 
277
297
  // When both platform_editor_content_mode_button_mvp & confluence_compact_text_format are cleaned up,
278
298
  // move this style into mediaStyles variable ⬆️
279
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
299
+ /**
300
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
301
+ * If you need to make changes here, also update the corresponding style in
302
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
303
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
304
+ */
280
305
  export var mediaCaptionStyles = css({
281
306
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
282
307
  '.mediaSingleView-content-wrap': _defineProperty({}, "span#".concat(CAPTION_PLACEHOLDER_ID), {
@@ -1,5 +1,7 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
  import { css } from '@emotion/react';
4
6
  import { MentionSharedCssClassName } from '@atlaskit/editor-common/mention';
5
7
  import { akEditorDeleteBorder, akEditorSelectedBorderSize, akEditorSelectedNodeClassName } from '@atlaskit/editor-shared-styles';
@@ -10,8 +12,12 @@ import { backgroundSelectionStyles, boxShadowSelectionStyles, dangerBackgroundSt
10
12
  var mentionsSelectedColor = css({
11
13
  color: "var(--ds-text-subtle, #505258)"
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 var mentionsStyles = css(_defineProperty(_defineProperty({}, ".".concat(MentionSharedCssClassName.MENTION_CONTAINER), _defineProperty({}, "&.".concat(akEditorSelectedNodeClassName, " [data-mention-id] > span"), [
16
22
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
17
23
  boxShadowSelectionStyles,
@@ -27,8 +33,12 @@ backgroundSelectionStyles, mentionsSelectedColor])), '.danger', _defineProperty(
27
33
  backgroundColor: "var(--ds-background-neutral, #0515240F)",
28
34
  color: "var(--ds-text-subtle, #505258)"
29
35
  })));
30
-
31
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
36
+ /**
37
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
38
+ * If you need to make changes here, also update the corresponding style in
39
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
40
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
41
+ */
32
42
  export var mentionNodeStyles = css({
33
43
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
34
44
  '.editor-mention-primitive': {
@@ -98,7 +108,12 @@ export var mentionNodeStyles = css({
98
108
  });
99
109
 
100
110
  // This is mentions styles for mentions selection styles based on the vanilla node view
101
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
111
+ /**
112
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
113
+ * If you need to make changes here, also update the corresponding style in
114
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
115
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
116
+ */
102
117
  export var mentionsSelectionStyles = css(_defineProperty({
103
118
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
104
119
  '.danger': {
@@ -123,7 +138,12 @@ export var mentionsSelectionStyles = css(_defineProperty({
123
138
  }));
124
139
 
125
140
  // This is mentions styles for mentions selection styles based on the vanilla node view
126
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
141
+ /**
142
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
143
+ * If you need to make changes here, also update the corresponding style in
144
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
145
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
146
+ */
127
147
  export var mentionsSelectionStylesWithSearchMatch = css(_defineProperty(_defineProperty({
128
148
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
129
149
  '.danger': {
@@ -151,8 +171,12 @@ export var mentionsSelectionStylesWithSearchMatch = css(_defineProperty(_defineP
151
171
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
152
172
  boxShadowSelectionStyles]
153
173
  }));
154
-
155
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
174
+ /**
175
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
176
+ * If you need to make changes here, also update the corresponding style in
177
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
178
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
179
+ */
156
180
  export var mentionDangerStyles = css(_defineProperty({}, ".".concat(akEditorSelectedNodeClassName, ":not(.search-match-block).danger"), {
157
181
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
158
182
  '> .editor-mention-primitive, > .editor-mention-primitive.mention-self, > .editor-mention-primitive.mention-restricted':
@@ -1,6 +1,13 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
5
+ /**
6
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
7
+ * If you need to make changes here, also update the corresponding style in
8
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
9
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
10
+ */
4
11
  export var overflowShadowStyles = css({
5
12
  backgroundImage: "\n\t\tlinear-gradient(\n\t\t\tto right,\n\t\t\t".concat("var(--ds-background-neutral, #0515240F)", " ", "var(--ds-space-300, 24px)", ",\n\t\t\ttransparent ", "var(--ds-space-300, 24px)", "\n\t\t),\n\t\tlinear-gradient(\n\t\t\tto right,\n\t\t\t", "var(--ds-surface-raised, #FFFFFF)", " ", "var(--ds-space-300, 24px)", ",\n\t\t\ttransparent ", "var(--ds-space-300, 24px)", "\n\t\t),\n\t\tlinear-gradient(\n\t\t\tto left,\n\t\t\t", "var(--ds-background-neutral, #0515240F)", " ", "var(--ds-space-100, 8px)", ",\n\t\t\ttransparent ", "var(--ds-space-100, 8px)", "\n\t\t),\n\t\tlinear-gradient(\n\t\t\tto left,\n\t\t\t", "var(--ds-surface-raised, #FFFFFF)", " ", "var(--ds-space-100, 8px)", ",\n\t\t\ttransparent ", "var(--ds-space-100, 8px)", "\n\t\t),\n\t\tlinear-gradient(\n\t\t\tto left,\n\t\t\t", "var(--ds-shadow-overflow-spread, #1E1F2129)", " 0,\n\t\t\t", "var(--ds-UNSAFE-transparent, transparent)", " ", "var(--ds-space-100, 8px)", "\n\t\t),\n\t\tlinear-gradient(\n\t\t\tto left,\n\t\t\t", "var(--ds-shadow-overflow-perimeter, #1E1F211f)", " 0,\n\t\t\t", "var(--ds-UNSAFE-transparent, transparent)", " ", "var(--ds-space-100, 8px)", "\n\t\t),\n\t\tlinear-gradient(\n\t\t\tto right,\n\t\t\t", "var(--ds-shadow-overflow-spread, #1E1F2129)", " 0,\n\t\t\t", "var(--ds-UNSAFE-transparent, transparent)", " ", "var(--ds-space-100, 8px)", "\n\t\t),\n\t\tlinear-gradient(\n\t\t\tto right,\n\t\t\t", "var(--ds-shadow-overflow-perimeter, #1E1F211f)", " 0,\n\t\t\t", "var(--ds-UNSAFE-transparent, transparent)", " ", "var(--ds-space-100, 8px)", "\n\t\t)\n\t")
6
13
  });
@@ -1,6 +1,13 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
5
+ /**
6
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
7
+ * If you need to make changes here, also update the corresponding style in
8
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
9
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
10
+ */
4
11
  export var panelStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
6
13
  '.ProseMirror': {
@@ -169,8 +176,12 @@ export var 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 var nestedPanelBorderStylesMixin = css({
175
186
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
176
187
  '.ProseMirror': {
@@ -184,8 +195,12 @@ export var 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 var 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 var 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 var panelStylesMixin = css({
230
249
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
231
250
  '.ProseMirror': {
@@ -282,16 +301,24 @@ export var 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 var 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 var 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
  var blockNodesVerticalMargin = '0.75rem';
4
6
  var 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 var 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 var 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 var 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 var 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 var 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 var 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 var 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 var 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 var 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
  var placeholderFadeInKeyframes = keyframes({
4
6
  from: {
@@ -8,8 +10,12 @@ var 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 var 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 var 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 var 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 var placeholderStyles = css({
98
109
  animation: "".concat(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 var 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 var 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 var 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