@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,2 +1,8 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const InlineNodeViewSharedStyles: SerializedStyles;
@@ -4,79 +4,217 @@ import type { SerializedStyles } from '@emotion/react';
4
4
  * Mirrors the pm-breakout-resize-handle-* pattern from resizerStyles.ts.
5
5
  * Applied only when advanced_layouts experiment is on.
6
6
  */
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
+ */
7
13
  export declare const layoutColumnDividerStyles: SerializedStyles;
8
14
  /**
9
15
  * Override divider marginInline when platform_editor_nested_dnd_styles_changes is on,
10
16
  * since the layout section/column spacing changes.
11
17
  */
18
+ /**
19
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
20
+ * If you need to make changes here, also update the corresponding style in
21
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
22
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
23
+ */
12
24
  export declare const layoutColumnDividerStylesNestedDnD: SerializedStyles;
13
25
  /**
14
26
  * Layout columns styles when advanced layouts experiment is on
15
27
  */
28
+ /**
29
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
30
+ * If you need to make changes here, also update the corresponding style in
31
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
32
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
33
+ */
16
34
  export declare const layoutColumnStylesAdvanced: SerializedStyles;
17
35
  /**
18
36
  * Layout column resize styles for the platform_editor_layout_column_resize_handle experiment
19
37
  */
38
+ /**
39
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
40
+ * If you need to make changes here, also update the corresponding style in
41
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
42
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
43
+ */
20
44
  export declare const layoutColumnResizeStyles: SerializedStyles;
21
45
  /**
22
46
  * Layout columns styles when advanced layouts experiment is off
23
47
  */
48
+ /**
49
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
50
+ * If you need to make changes here, also update the corresponding style in
51
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
52
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
53
+ */
24
54
  export declare const layoutColumnStylesNotAdvanced: SerializedStyles;
25
55
  /**
26
56
  * Responsive styles for layout columns when advanced layouts experiment is on
27
57
  */
58
+ /**
59
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
60
+ * If you need to make changes here, also update the corresponding style in
61
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
62
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
63
+ */
28
64
  export declare const layoutColumnResponsiveStyles: SerializedStyles;
29
65
  /**
30
66
  * Layout section styles when advanced layouts experiment is on
31
67
  */
68
+ /**
69
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
70
+ * If you need to make changes here, also update the corresponding style in
71
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
72
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
73
+ */
32
74
  export declare const layoutSectionStylesAdvanced: SerializedStyles;
33
75
  /**
34
76
  * Layout section styles when advanced layouts experiment is off
35
77
  */
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
+ */
36
84
  export declare const layoutSectionStylesNotAdvanced: SerializedStyles;
37
85
  /**
38
86
  * Selected styles for layout when advanced layouts experiment is off
39
87
  */
88
+ /**
89
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
90
+ * If you need to make changes here, also update the corresponding style in
91
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
92
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
93
+ */
40
94
  export declare const layoutSelectedStylesNotAdvanced: SerializedStyles;
41
95
  /**
42
96
  * Selected styles for layout when advanced layouts experiment is on
43
97
  */
98
+ /**
99
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
100
+ * If you need to make changes here, also update the corresponding style in
101
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
102
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
103
+ */
44
104
  export declare const layoutSelectedStylesAdvanced: SerializedStyles;
105
+ /**
106
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
107
+ * If you need to make changes here, also update the corresponding style in
108
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
109
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
110
+ */
45
111
  export declare const layoutSelectedStylesAdvancedFix: SerializedStyles;
46
112
  /**
47
113
  * Base responsive styles for layout
48
114
  */
115
+ /**
116
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
117
+ * If you need to make changes here, also update the corresponding style in
118
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
119
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
120
+ */
49
121
  export declare const layoutResponsiveBaseStyles: SerializedStyles;
50
122
  /**
51
123
  * Responsive styles for layout in view mode
52
124
  */
125
+ /**
126
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
127
+ * If you need to make changes here, also update the corresponding style in
128
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
129
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
130
+ */
53
131
  export declare const layoutResponsiveStylesForView: SerializedStyles;
54
132
  /**
55
133
  * Base styles for layout
56
134
  */
135
+ /**
136
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
137
+ * If you need to make changes here, also update the corresponding style in
138
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
139
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
140
+ */
57
141
  export declare const layoutBaseStyles: SerializedStyles;
142
+ /**
143
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
144
+ * If you need to make changes here, also update the corresponding style in
145
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
146
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
147
+ */
58
148
  export declare const layoutBaseStylesWithTableExcerptsFix: SerializedStyles;
59
149
  /**
60
150
  * Base styles overrides for layout columns when advanced layouts experiment is on
61
151
  */
152
+ /**
153
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
154
+ * If you need to make changes here, also update the corresponding style in
155
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
156
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
157
+ */
62
158
  export declare const layoutBaseStylesAdvanced: SerializedStyles;
63
159
  /**
64
160
  * Spacing overrides when platform_editor_nested_dnd_styles_changes is on
65
161
  */
162
+ /**
163
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
164
+ * If you need to make changes here, also update the corresponding style in
165
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
166
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
167
+ */
66
168
  export declare const layoutBaseStylesFixesUnderNestedDnDFG: SerializedStyles;
67
169
  /**
68
170
  * Spacing overrides when platform_editor_nested_dnd_styles_changes is on,
69
171
  * excluding layouts inside bodied sync blocks
70
172
  */
173
+ /**
174
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
175
+ * If you need to make changes here, also update the corresponding style in
176
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
177
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
178
+ */
71
179
  export declare const layoutBaseStylesFixesUnderNestedDnDFGExcludingBodiedSync: SerializedStyles;
72
180
  /**
73
181
  * Layout in view mode styles for selected state when advanced layouts experiment is on.
74
182
  */
183
+ /**
184
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
185
+ * If you need to make changes here, also update the corresponding style in
186
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
187
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
188
+ */
75
189
  export declare const layoutSelectedStylesForViewAdvanced: SerializedStyles;
76
190
  /**
77
191
  * Layout in view mode styles for selected state when advanced layouts experiment is off.
78
192
  */
193
+ /**
194
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
195
+ * If you need to make changes here, also update the corresponding style in
196
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
197
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
198
+ */
79
199
  export declare const layoutSelectedStylesForViewNotAdvanced: SerializedStyles;
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
+ */
80
206
  export declare const layoutStylesForView: SerializedStyles;
207
+ /**
208
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
209
+ * If you need to make changes here, also update the corresponding style in
210
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
211
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
212
+ */
81
213
  export declare const layoutColumnMartinTopFixesNew: SerializedStyles;
214
+ /**
215
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
216
+ * If you need to make changes here, also update the corresponding style in
217
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
218
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
219
+ */
82
220
  export declare const layoutColumnMartinTopFixesOld: SerializedStyles;
@@ -1,4 +1,22 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const linkStyles: SerializedStyles;
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
+ */
3
15
  export declare const hyperLinkFloatingToolbarStyles: SerializedStyles;
16
+ /**
17
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
18
+ * If you need to make changes here, also update the corresponding style in
19
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
20
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
21
+ */
4
22
  export declare const linkLegacyIconStylesFix: SerializedStyles;
@@ -1,8 +1,50 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const listsStyles: SerializedStyles;
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
+ */
3
15
  export declare const diffListStyles: SerializedStyles;
16
+ /**
17
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
18
+ * If you need to make changes here, also update the corresponding style in
19
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
20
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
21
+ */
4
22
  export declare const listsStylesMarginLayoutShiftFix: SerializedStyles;
23
+ /**
24
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
25
+ * If you need to make changes here, also update the corresponding style in
26
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
27
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
28
+ */
5
29
  export declare const listsStylesSafariFix: SerializedStyles;
30
+ /**
31
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
32
+ * If you need to make changes here, also update the corresponding style in
33
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
34
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
35
+ */
6
36
  export declare const EDITOR_LIST_DENSE_GAP: 'max(0px, calc((var(--ak-editor-base-font-size, 16px) - 13px) * (4 / 3)))';
37
+ /**
38
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
39
+ * If you need to make changes here, also update the corresponding style in
40
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
41
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
42
+ */
7
43
  export declare const getDenseListStyles: (baseFontSize?: number) => SerializedStyles;
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
+ */
8
50
  export declare const listItemHiddenMarkerStyles: SerializedStyles;
@@ -1,6 +1,36 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const mediaStyles: SerializedStyles;
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
+ */
3
15
  export declare const mediaDangerStyles: SerializedStyles;
16
+ /**
17
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
18
+ * If you need to make changes here, also update the corresponding style in
19
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
20
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
21
+ */
4
22
  export declare const mediaGroupStyles: SerializedStyles;
23
+ /**
24
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
25
+ * If you need to make changes here, also update the corresponding style in
26
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
27
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
28
+ */
5
29
  export declare const mediaAlignmentStyles: SerializedStyles;
30
+ /**
31
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
32
+ * If you need to make changes here, also update the corresponding style in
33
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
34
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
35
+ */
6
36
  export declare const mediaCaptionStyles: SerializedStyles;
@@ -1,6 +1,36 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const mentionsStyles: SerializedStyles;
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
+ */
3
15
  export declare const mentionNodeStyles: SerializedStyles;
16
+ /**
17
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
18
+ * If you need to make changes here, also update the corresponding style in
19
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
20
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
21
+ */
4
22
  export declare const mentionsSelectionStyles: SerializedStyles;
23
+ /**
24
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
25
+ * If you need to make changes here, also update the corresponding style in
26
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
27
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
28
+ */
5
29
  export declare const mentionsSelectionStylesWithSearchMatch: SerializedStyles;
30
+ /**
31
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
32
+ * If you need to make changes here, also update the corresponding style in
33
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
34
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
35
+ */
6
36
  export declare const mentionDangerStyles: SerializedStyles;
@@ -1,2 +1,8 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const overflowShadowStyles: SerializedStyles;
@@ -1,7 +1,43 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const panelStyles: SerializedStyles;
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
+ */
3
15
  export declare const nestedPanelBorderStylesMixin: SerializedStyles;
16
+ /**
17
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
18
+ * If you need to make changes here, also update the corresponding style in
19
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
20
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
21
+ */
4
22
  export declare const panelStylesMixin_fg_platform_editor_nested_dnd_styles_changes: SerializedStyles;
23
+ /**
24
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
25
+ * If you need to make changes here, also update the corresponding style in
26
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
27
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
28
+ */
5
29
  export declare const panelStylesMixin: SerializedStyles;
30
+ /**
31
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
32
+ * If you need to make changes here, also update the corresponding style in
33
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
34
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
35
+ */
6
36
  export declare const panelViewStyles: SerializedStyles;
37
+ /**
38
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
39
+ * If you need to make changes here, also update the corresponding style in
40
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
41
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
42
+ */
7
43
  export declare const nestedPanelDangerStyles: SerializedStyles;
@@ -1,6 +1,36 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const paragraphStylesWithScaledMargin: SerializedStyles;
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
+ */
3
15
  export declare const paragraphStylesOldWithScaledMargin: SerializedStyles;
16
+ /**
17
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
18
+ * If you need to make changes here, also update the corresponding style in
19
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
20
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
21
+ */
4
22
  export declare const paragraphStylesUGCRefreshed: SerializedStyles;
23
+ /**
24
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
25
+ * If you need to make changes here, also update the corresponding style in
26
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
27
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
28
+ */
5
29
  export declare const paragraphStylesUGCModernized: SerializedStyles;
30
+ /**
31
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
32
+ * If you need to make changes here, also update the corresponding style in
33
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
34
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
35
+ */
6
36
  export declare const paragraphStylesOld: SerializedStyles;
@@ -1,5 +1,29 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const placeholderTextStyles: SerializedStyles;
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
+ */
3
15
  export declare const placeholderStyles: SerializedStyles;
16
+ /**
17
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
18
+ * If you need to make changes here, also update the corresponding style in
19
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
20
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
21
+ */
4
22
  export declare const placeholderOverflowStyles: SerializedStyles;
23
+ /**
24
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
25
+ * If you need to make changes here, also update the corresponding style in
26
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
27
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
28
+ */
5
29
  export declare const placeholderWrapStyles: SerializedStyles;
@@ -1,23 +1,131 @@
1
1
  import type { SerializedStyles } from '@emotion/react';
2
+ /**
3
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
4
+ * If you need to make changes here, also update the corresponding style in
5
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
6
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
7
+ */
2
8
  export declare const resizerItemClassName = "resizer-item";
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
+ */
3
15
  export declare const resizerHoverZoneClassName = "resizer-hover-zone";
16
+ /**
17
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
18
+ * If you need to make changes here, also update the corresponding style in
19
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
20
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
21
+ */
4
22
  export declare const resizerExtendedZone = "resizer-is-extended";
23
+ /**
24
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
25
+ * If you need to make changes here, also update the corresponding style in
26
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
27
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
28
+ */
5
29
  export declare const resizerHandleClassName = "resizer-handle";
30
+ /**
31
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
32
+ * If you need to make changes here, also update the corresponding style in
33
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
34
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
35
+ */
6
36
  export declare const resizerHandleTrackClassName: 'resizer-handle-track';
37
+ /**
38
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
39
+ * If you need to make changes here, also update the corresponding style in
40
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
41
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
42
+ */
7
43
  export declare const resizerHandleThumbClassName: 'resizer-handle-thumb';
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
+ */
8
50
  export declare const resizerDangerClassName: 'resizer-handle-danger';
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
+ */
9
57
  export declare const resizerHandleThumbWidth = 3;
58
+ /**
59
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
60
+ * If you need to make changes here, also update the corresponding style in
61
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
62
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
63
+ */
10
64
  export declare const handleWrapperClass = "resizer-handle-wrapper";
65
+ /**
66
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
67
+ * If you need to make changes here, also update the corresponding style in
68
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
69
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
70
+ */
11
71
  export declare const resizerStyles: SerializedStyles;
12
72
  /**
13
73
  * Bottom-handle styles for the vertical-resize feature shipped under the
14
74
  * `databases-native-embeds-v2` experiment
15
75
  */
76
+ /**
77
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
78
+ * If you need to make changes here, also update the corresponding style in
79
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
80
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
81
+ */
16
82
  export declare const resizerBottomHandleStyles: SerializedStyles;
83
+ /**
84
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
85
+ * If you need to make changes here, also update the corresponding style in
86
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
87
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
88
+ */
17
89
  export declare const pragmaticResizerStylesForTooltip: SerializedStyles;
90
+ /**
91
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
92
+ * If you need to make changes here, also update the corresponding style in
93
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
94
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
95
+ */
18
96
  export declare const pragmaticStylesLayoutFirstNodeResizeHandleFix: SerializedStyles;
97
+ /**
98
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
99
+ * If you need to make changes here, also update the corresponding style in
100
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
101
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
102
+ */
19
103
  export declare const pragmaticResizerStylesCodeBlockLegacy: SerializedStyles;
104
+ /**
105
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
106
+ * If you need to make changes here, also update the corresponding style in
107
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
108
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
109
+ */
20
110
  export declare const pragmaticResizerStylesCodeBlockSyncedBlockPatch: SerializedStyles;
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
+ */
21
117
  export declare const pragmaticResizerStyles: SerializedStyles;
118
+ /**
119
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
120
+ * If you need to make changes here, also update the corresponding style in
121
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
122
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
123
+ */
22
124
  export declare const pragmaticResizerStylesSyncedBlock: SerializedStyles;
125
+ /**
126
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
127
+ * If you need to make changes here, also update the corresponding style in
128
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
129
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
130
+ */
23
131
  export declare const pragmaticResizerStylesWithReducedEditorGutter: SerializedStyles;