@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,5 +1,6 @@
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, @atlaskit/ui-styling-standard/no-exported-styles */
3
4
  import { css, keyframes } from '@emotion/react';
4
5
  /**
5
6
  * aiPanelStyles
@@ -58,7 +59,12 @@ var prismBorderDarkBackgroundFirefox = "linear-gradient(90deg, ".concat(aiPrismC
58
59
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
59
60
  var prismBorderDarkBackground = "conic-gradient(from var(--panel-gradient-angle, 270deg), ".concat(aiPrismColorStep1Dark, " 0%, ").concat(aiPrismColorStep2Dark, " 20%, ").concat(aiPrismColorStep3Dark, " 50%, ").concat(aiPrismColorStep4Dark, " 56%, ").concat(aiPrismColorStep1Dark, " 100%)");
60
61
 
61
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
62
+ /**
63
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
64
+ * If you need to make changes here, also update the corresponding style in
65
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
66
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
67
+ */
62
68
  export var aiPanelBaseStyles = css({
63
69
  '@property --panel-gradient-angle': {
64
70
  syntax: '<angle>',
@@ -145,7 +151,12 @@ export var aiPanelBaseStyles = css({
145
151
  }
146
152
  });
147
153
 
148
- // 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
+ */
149
160
  export var aiPanelBaseFirefoxStyles = css({
150
161
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
151
162
  'div[extensionType="com.atlassian.ai-blocks"]': {
@@ -167,7 +178,13 @@ export var aiPanelBaseFirefoxStyles = css({
167
178
  }
168
179
  });
169
180
 
170
- // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
181
+ // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Ignored via go/DSP-18766
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
+ */
171
188
  export var aiPanelDarkStyles = css({
172
189
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
173
190
  'div[extensionType="com.atlassian.ai-blocks"]': {
@@ -180,7 +197,12 @@ export var aiPanelDarkStyles = css({
180
197
  }
181
198
  });
182
199
 
183
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
200
+ /**
201
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
202
+ * If you need to make changes here, also update the corresponding style in
203
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
204
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
205
+ */
184
206
  export var aiPanelDarkFirefoxStyles = css({
185
207
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
186
208
  'div[extensionType="com.atlassian.ai-blocks"]': {
@@ -1,8 +1,15 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
  import { css } from '@emotion/react';
4
6
  import { AnnotationSharedClassNames } from '@atlaskit/editor-common/styles';
5
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
7
+ /**
8
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
9
+ * If you need to make changes here, also update the corresponding style in
10
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
11
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
12
+ */
6
13
  export var annotationStyles = css({
7
14
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
8
15
  '.ProseMirror': _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ".".concat(AnnotationSharedClassNames.blur, ", .").concat(AnnotationSharedClassNames.focus, ", .").concat(AnnotationSharedClassNames.draft, ", .").concat(AnnotationSharedClassNames.hover), {
@@ -1,6 +1,13 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766 */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
5
+ /**
6
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
7
+ * If you need to make changes here, also update the corresponding style in
8
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
9
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
10
+ */
4
11
  export var textHighlightPaddingStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
6
13
  '.fabric-background-color-mark:has(.background-color-padding-left)': {
@@ -14,7 +21,12 @@ export var textHighlightPaddingStyles = css({
14
21
  }
15
22
  });
16
23
 
17
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
24
+ /**
25
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
26
+ * If you need to make changes here, also update the corresponding style in
27
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
28
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
29
+ */
18
30
  export var backgroundColorStyles = css({
19
31
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
20
32
  '.fabric-background-color-mark': {
@@ -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
  // = akEditorDefaultLayoutWidth * breakoutWideScaleRatio = 1010.8 ~ 1011 This is a resulting width value that is applied to nodes that currently use breakouts (except table) and are set to `wide` when the viewport's width is > 1329px.
5
7
  var akEditorCalculatedWideLayoutWidth = 1011;
@@ -15,7 +17,12 @@ var akEditorFullPageNarrowBreakout = 600;
15
17
  var akEditorUltraWideLayoutWidth = 4000;
16
18
 
17
19
  // jest warning: JSDOM version (22) doesn't support the new @container CSS rule
18
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
20
+ /**
21
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
22
+ * If you need to make changes here, also update the corresponding style in
23
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
24
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
25
+ */
19
26
  export var baseStyles = css(_defineProperty({
20
27
  '--ak-editor--default-gutter-padding': "".concat(akEditorGutterPadding, "px"),
21
28
  '--ak-editor--default-layout-width': "".concat(akEditorDefaultLayoutWidth, "px"),
@@ -53,8 +60,12 @@ export var baseStyles = css(_defineProperty({
53
60
  '--ak-editor--breakout-wide-layout-width': "".concat(akEditorCalculatedWideLayoutWidth, "px")
54
61
  }
55
62
  }));
56
-
57
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
63
+ /**
64
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
65
+ * If you need to make changes here, also update the corresponding style in
66
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
67
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
68
+ */
58
69
  export var maxModeReizeFixStyles = css({
59
70
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
60
71
  '.fabric-editor--max-width-mode': {
@@ -64,8 +75,12 @@ export var maxModeReizeFixStyles = css({
64
75
  '--ak-editor--breakout-min-width': '0px'
65
76
  }
66
77
  });
67
-
68
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
78
+ /**
79
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
80
+ * If you need to make changes here, also update the corresponding style in
81
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
82
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
83
+ */
69
84
  export var baseStylesMaxContainerWidthFixes = css({
70
85
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
71
86
  '.ProseMirror': {
@@ -74,18 +89,32 @@ export var baseStylesMaxContainerWidthFixes = css({
74
89
  });
75
90
 
76
91
  // This is to avoid using akEditorGutterPaddingDynamic()
77
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
92
+ /**
93
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
94
+ * If you need to make changes here, also update the corresponding style in
95
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
96
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
97
+ */
78
98
  export var editorLargeGutterPuddingBaseStyles = css({
79
99
  '--ak-editor--large-gutter-padding': '52px'
80
100
  });
81
101
 
82
102
  // This is to avoid using akEditorGutterPaddingDynamic
83
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
103
+ /**
104
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
105
+ * If you need to make changes here, also update the corresponding style in
106
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
107
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
108
+ */
84
109
  export var editorLargeGutterPuddingBaseStylesEditorControls = css({
85
110
  '--ak-editor--large-gutter-padding': '72px'
86
111
  });
87
-
88
- // 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
+ */
89
118
  export var editorLargeGutterPuddingReducedBaseStyles = css(_defineProperty({}, "@container editor-area (max-width: ".concat(akEditorFullPageNarrowBreakout, "px)"), {
90
119
  '--ak-editor--large-gutter-padding': "".concat(akEditorGutterPaddingReduced, "px")
91
120
  }));
@@ -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 blockMarksStyles = css({
5
12
  // We need to remove margin-top from first item
6
13
  // inside doc, tableCell, tableHeader, blockquote, etc.
@@ -1,8 +1,15 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
  import { css } from '@emotion/react';
4
6
  import { akEditorSelectedNodeClassName } from '@atlaskit/editor-shared-styles';
5
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
7
+ /**
8
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
9
+ * If you need to make changes here, also update the corresponding style in
10
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
11
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
12
+ */
6
13
  export var blocktypeStyles = css({
7
14
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
8
15
  '.ProseMirror': {
@@ -101,8 +108,12 @@ export var blocktypeStyles = css({
101
108
  }
102
109
  }
103
110
  });
104
-
105
- // 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
+ */
106
117
  export var blockquoteDangerStyles = css({
107
118
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
108
119
  '.ProseMirror blockquote.danger': {
@@ -110,8 +121,12 @@ export var blockquoteDangerStyles = css({
110
121
  borderLeftColor: "var(--ds-border-danger, #E2483D)"
111
122
  }
112
123
  });
113
-
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 var blockquoteSelectedNodeStyles = css({
116
131
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors, @atlaskit/ui-styling-standard/no-nested-selectors
117
132
  '.ProseMirror blockquote.ak-editor-selected-node': {
@@ -128,8 +143,12 @@ export var blockquoteSelectedNodeStyles = css({
128
143
  }
129
144
  }
130
145
  });
131
-
132
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
146
+ /**
147
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
148
+ * If you need to make changes here, also update the corresponding style in
149
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
150
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
151
+ */
133
152
  export var blocktypeStyles_fg_platform_editor_typography_ugc = css({
134
153
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
135
154
  '.ProseMirror': {
@@ -212,8 +231,12 @@ export var blocktypeStyles_fg_platform_editor_typography_ugc = css({
212
231
  }
213
232
  }
214
233
  });
215
-
216
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
234
+ /**
235
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
236
+ * If you need to make changes here, also update the corresponding style in
237
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
238
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
239
+ */
217
240
  export var blocktypeStyles_without_fg_platform_editor_typography_ugc = css({
218
241
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
219
242
  '.ProseMirror': {
@@ -304,8 +327,12 @@ export var blocktypeStyles_without_fg_platform_editor_typography_ugc = css({
304
327
  }
305
328
  }
306
329
  });
307
-
308
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
330
+ /**
331
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
332
+ * If you need to make changes here, also update the corresponding style in
333
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
334
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
335
+ */
309
336
  export var blocktypeStyles_fg_platform_editor_nested_dnd_styles_changes = css({
310
337
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
311
338
  '.ak-editor-content-area.appearance-full-page .ProseMirror blockquote': {
@@ -323,8 +350,12 @@ var isSelectedNode = ".".concat(akEditorSelectedNodeClassName);
323
350
  var isOuterMostSelectedNode = "".concat(isSelectedNode, ":not(").concat(isSelectedNode, " *)");
324
351
  var isList = ':is(ul, ol, div[data-node-type="actionList"])';
325
352
  var isOuterMostList = "".concat(isList, ":not(").concat(isList, " *)");
326
-
327
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
353
+ /**
354
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
355
+ * If you need to make changes here, also update the corresponding style in
356
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
357
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
358
+ */
328
359
  export var listSelectedNodeStyles = css(_defineProperty({}, ".ProseMirror ".concat(isOuterMostList).concat(isOuterMostSelectedNode), {
329
360
  background: "var(--ds-background-accent-blue-subtler, #CFE1FD)",
330
361
  WebkitUserSelect: 'text',
@@ -337,15 +368,23 @@ export var listSelectedNodeStyles = css(_defineProperty({}, ".ProseMirror ".conc
337
368
  backgroundColor: 'transparent'
338
369
  }
339
370
  }));
340
-
341
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
371
+ /**
372
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
373
+ * If you need to make changes here, also update the corresponding style in
374
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
375
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
376
+ */
342
377
  export var listDangerStyles = css(_defineProperty({}, ".ProseMirror ".concat(isOuterMostList).concat(isOuterMostSelectedNode, ".danger"), {
343
378
  background: "var(--ds-background-danger, #FFECEB)"
344
379
  }));
345
380
  var isText = ":is(p, h1, h2, h3, h4, h5, h6)";
346
381
  var isRootText = "".concat(isText, ":not(").concat(isList, " ").concat(isText, ")");
347
-
348
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
382
+ /**
383
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
384
+ * If you need to make changes here, also update the corresponding style in
385
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
386
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
387
+ */
349
388
  export var textSelectedNodeStyles = css(_defineProperty({}, ".ProseMirror ".concat(isRootText).concat(isOuterMostSelectedNode), {
350
389
  background: "var(--ds-background-accent-blue-subtler, #CFE1FD)",
351
390
  WebkitUserSelect: 'text',
@@ -359,8 +398,12 @@ export var textSelectedNodeStyles = css(_defineProperty({}, ".ProseMirror ".conc
359
398
  backgroundColor: 'transparent'
360
399
  }
361
400
  }));
362
-
363
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
401
+ /**
402
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
403
+ * If you need to make changes here, also update the corresponding style in
404
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
405
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
406
+ */
364
407
  export var textDangerStyles = css(_defineProperty({}, ".ProseMirror ".concat(isRootText).concat(isOuterMostSelectedNode, ".danger"), {
365
408
  background: "var(--ds-background-danger, #FFECEB)",
366
409
  boxShadow: "0 -4px 0 ".concat("var(--ds-background-danger, #FFECEB)", ", 0 4px 0 ", "var(--ds-background-danger, #FFECEB)")
@@ -1,8 +1,17 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
2
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
3
+ @repo/internal/deprecations/deprecation-ticket-required,
4
+ @atlaskit/ui-styling-standard/no-exported-styles */
3
5
  import { css } from '@emotion/react';
4
6
  import { overflowShadowStyles } from './overflowShadowStyles';
5
7
  import { blanketSelectionStyles, boxShadowSelectionStyles, hideNativeBrowserTextSelectionStyles } from './selectionStyles';
8
+
9
+ /**
10
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
11
+ * If you need to make changes here, also update the corresponding style in
12
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
13
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
14
+ */
6
15
  export var CodeBlockSharedCssClassName = {
7
16
  CODEBLOCK_CONTAINER: 'code-block',
8
17
  CODEBLOCK_START: 'code-block--start',
@@ -27,8 +36,12 @@ var gutterDangerOverlay = css({
27
36
  backgroundColor: "var(--ds-blanket-danger, #EF5C4814)"
28
37
  }
29
38
  });
30
-
31
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
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
+ */
32
45
  export var codeBlockStyles = css({
33
46
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
34
47
  '.ProseMirror': _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ".".concat(CodeBlockSharedCssClassName.CODEBLOCK_CONTENT_WRAPPED, " > .").concat(CodeBlockSharedCssClassName.CODEBLOCK_CONTENT_WRAPPER, " > .").concat(CodeBlockSharedCssClassName.CODEBLOCK_CONTENT), {
@@ -175,8 +188,12 @@ export var codeBlockStyles = css({
175
188
  backgroundColor: "var(--ds-blanket-danger, #EF5C4814)"
176
189
  }))
177
190
  });
178
-
179
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
191
+ /**
192
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
193
+ * If you need to make changes here, also update the corresponding style in
194
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
195
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
196
+ */
180
197
  export var codeBlockStylesWithEmUnits = css({
181
198
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
182
199
  '.ProseMirror': _defineProperty({}, ".".concat(CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER), _defineProperty({
@@ -196,8 +213,12 @@ export var codeBlockStylesWithEmUnits = css({
196
213
  }
197
214
  }))
198
215
  });
199
-
200
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
216
+ /**
217
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
218
+ * If you need to make changes here, also update the corresponding style in
219
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
220
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
221
+ */
201
222
  export var firstCodeBlockWithNoMargin = css({
202
223
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
203
224
  '.ProseMirror': {
@@ -211,8 +232,12 @@ export var firstCodeBlockWithNoMargin = css({
211
232
  }
212
233
  }
213
234
  });
214
-
215
- // 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
+ */
216
241
  export var firstCodeBlockWithNoMarginOld = css({
217
242
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
218
243
  '.ProseMirror': {
@@ -1,6 +1,13 @@
1
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled */
1
+ /* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
2
+ @repo/internal/deprecations/deprecation-ticket-required,
3
+ @atlaskit/ui-styling-standard/no-exported-styles */
2
4
  import { css } from '@emotion/react';
3
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
5
+ /**
6
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
7
+ * If you need to make changes here, also update the corresponding style in
8
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
9
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
10
+ */
4
11
  export var codeMarkStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
6
13
  '.code': {
@@ -22,8 +29,12 @@ export var codeMarkStyles = css({
22
29
  whiteSpace: 'pre-wrap'
23
30
  }
24
31
  });
25
-
26
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
32
+ /**
33
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
34
+ * If you need to make changes here, also update the corresponding style in
35
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
36
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
37
+ */
27
38
  export var codeMarkStylesA11yFix = css({
28
39
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
29
40
  '.code': {
@@ -1,10 +1,17 @@
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 CommentEditorMargin = 14;
4
6
  var GRID_GUTTER = 12;
5
7
 
6
8
  // Originally copied from packages/editor/editor-core/src/ui/Appearance/Comment/Comment.tsx
7
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
9
+ /**
10
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
11
+ * If you need to make changes here, also update the corresponding style in
12
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
13
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
14
+ */
8
15
  export var commentEditorStyles = css({
9
16
  flexGrow: 1,
10
17
  overflowX: 'clip',
@@ -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 cursorStyles = css({
5
12
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
6
13
  '.ProseMirror.ProseMirror-focused:has(.ProseMirror-mark-boundary-cursor)': {
@@ -1,13 +1,26 @@
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 { boxShadowSelectionStyles, dangerBorderStyles, hideNativeBrowserTextSelectionStyles } from './selectionStyles';
7
+
8
+ /**
9
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
10
+ * If you need to make changes here, also update the corresponding style in
11
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
12
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
13
+ */
5
14
  export var DateSharedCssClassName = {
6
15
  DATE_WRAPPER: "date-lozenger-container",
7
16
  DATE_CONTAINER: 'dateView-content-wrap'
8
17
  };
9
-
10
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
18
+ /**
19
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
20
+ * If you need to make changes here, also update the corresponding style in
21
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
22
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
23
+ */
11
24
  export var dateVanillaStyles = css(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, "[data-prosemirror-node-name='date'] .".concat(DateSharedCssClassName.DATE_WRAPPER, " span"), {
12
25
  backgroundColor: "var(--ds-background-neutral, #0515240F)",
13
26
  color: "var(--ds-text, #292A2E)",
@@ -27,7 +40,13 @@ export var dateVanillaStyles = css(_defineProperty(_defineProperty(_defineProper
27
40
  backgroundColor: "var(--ds-background-accent-red-subtler, #FFD5D2)"
28
41
  }));
29
42
 
30
- // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression, @atlaskit/ui-styling-standard/no-exported-styles -- Ignored via go/DSP-18766
43
+ // eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Ignored via go/DSP-18766
44
+ /**
45
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
46
+ * If you need to make changes here, also update the corresponding style in
47
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
48
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
49
+ */
31
50
  export var dateStyles = css(_defineProperty(_defineProperty(_defineProperty({}, ".".concat(DateSharedCssClassName.DATE_WRAPPER, " span"), {
32
51
  whiteSpace: 'unset'
33
52
  }), ".".concat(DateSharedCssClassName.DATE_CONTAINER), _defineProperty(_defineProperty({}, ".".concat(DateSharedCssClassName.DATE_WRAPPER), {
@@ -41,8 +60,12 @@ boxShadowSelectionStyles,
41
60
  hideNativeBrowserTextSelectionStyles]))), '.danger', _defineProperty({}, ".".concat(DateSharedCssClassName.DATE_CONTAINER, ".ak-editor-selected-node .").concat(DateSharedCssClassName.DATE_WRAPPER, " > span"), {
42
61
  boxShadow: "0 0 0 1px ".concat("var(--ds-border-danger, #E2483D)")
43
62
  })));
44
-
45
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles
63
+ /**
64
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
65
+ * If you need to make changes here, also update the corresponding style in
66
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
67
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
68
+ */
46
69
  export var dangerDateStyles = css(_defineProperty({}, ".".concat(DateSharedCssClassName.DATE_CONTAINER, ".ak-editor-selected-node.danger .").concat(DateSharedCssClassName.DATE_WRAPPER, " > span"),
47
70
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values
48
71
  [dangerBorderStyles]));