@atlaskit/editor-core 220.1.1 → 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.
- package/CHANGELOG.md +16 -0
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +126 -18
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.js +22 -10
- package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-emotion.js +5 -2
- package/dist/cjs/ui/EditorContentContainer/styles/aiPanel.js +27 -5
- package/dist/cjs/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
- package/dist/cjs/ui/EditorContentContainer/styles/baseStyles.js +39 -10
- package/dist/cjs/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
- package/dist/cjs/ui/EditorContentContainer/styles/codeBlockStyles.js +33 -9
- package/dist/cjs/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
- package/dist/cjs/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/dateStyles.js +28 -6
- package/dist/cjs/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
- package/dist/cjs/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/emoji.js +34 -6
- package/dist/cjs/ui/EditorContentContainer/styles/expandStyles.js +45 -11
- package/dist/cjs/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
- package/dist/cjs/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
- package/dist/cjs/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
- package/dist/cjs/ui/EditorContentContainer/styles/gridStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/layout.js +142 -24
- package/dist/cjs/ui/EditorContentContainer/styles/link.js +21 -5
- package/dist/cjs/ui/EditorContentContainer/styles/list.js +45 -10
- package/dist/cjs/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
- package/dist/cjs/ui/EditorContentContainer/styles/mentions.js +33 -9
- package/dist/cjs/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/panelStyles.js +39 -12
- package/dist/cjs/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
- package/dist/cjs/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
- package/dist/cjs/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
- package/dist/cjs/ui/EditorContentContainer/styles/rule.js +15 -4
- package/dist/cjs/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
- package/dist/cjs/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
- package/dist/cjs/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
- package/dist/cjs/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
- package/dist/cjs/ui/EditorContentContainer/styles/statusStyles.js +45 -14
- package/dist/cjs/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
- package/dist/cjs/ui/EditorContentContainer/styles/tableStyles.js +45 -14
- package/dist/cjs/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
- package/dist/cjs/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
- package/dist/cjs/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
- package/dist/cjs/ui/EditorContentContainer/styles/unsupportedStyles.js +16 -2
- package/dist/cjs/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +126 -18
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.js +22 -10
- package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-emotion.js +5 -2
- package/dist/es2019/ui/EditorContentContainer/styles/aiPanel.js +27 -5
- package/dist/es2019/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
- package/dist/es2019/ui/EditorContentContainer/styles/baseStyles.js +39 -10
- package/dist/es2019/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
- package/dist/es2019/ui/EditorContentContainer/styles/codeBlockStyles.js +34 -9
- package/dist/es2019/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
- package/dist/es2019/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/dateStyles.js +29 -6
- package/dist/es2019/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
- package/dist/es2019/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/emoji.js +34 -6
- package/dist/es2019/ui/EditorContentContainer/styles/expandStyles.js +45 -11
- package/dist/es2019/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
- package/dist/es2019/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
- package/dist/es2019/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -3
- package/dist/es2019/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
- package/dist/es2019/ui/EditorContentContainer/styles/gridStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/layout.js +142 -24
- package/dist/es2019/ui/EditorContentContainer/styles/link.js +21 -5
- package/dist/es2019/ui/EditorContentContainer/styles/list.js +45 -10
- package/dist/es2019/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
- package/dist/es2019/ui/EditorContentContainer/styles/mentions.js +33 -9
- package/dist/es2019/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/panelStyles.js +39 -12
- package/dist/es2019/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
- package/dist/es2019/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
- package/dist/es2019/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
- package/dist/es2019/ui/EditorContentContainer/styles/rule.js +15 -4
- package/dist/es2019/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
- package/dist/es2019/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
- package/dist/es2019/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
- package/dist/es2019/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
- package/dist/es2019/ui/EditorContentContainer/styles/statusStyles.js +45 -14
- package/dist/es2019/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
- package/dist/es2019/ui/EditorContentContainer/styles/tableStyles.js +45 -15
- package/dist/es2019/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
- package/dist/es2019/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
- package/dist/es2019/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
- package/dist/es2019/ui/EditorContentContainer/styles/unsupportedStyles.js +17 -2
- package/dist/es2019/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.compiled.css +126 -18
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.js +22 -10
- package/dist/esm/ui/EditorContentContainer/EditorContentContainer-emotion.js +5 -2
- package/dist/esm/ui/EditorContentContainer/styles/aiPanel.js +27 -5
- package/dist/esm/ui/EditorContentContainer/styles/annotationStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/backgroundColorStyles.js +15 -3
- package/dist/esm/ui/EditorContentContainer/styles/baseStyles.js +39 -10
- package/dist/esm/ui/EditorContentContainer/styles/blockMarksStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/blockTypeStyles.js +63 -20
- package/dist/esm/ui/EditorContentContainer/styles/codeBlockStyles.js +34 -9
- package/dist/esm/ui/EditorContentContainer/styles/codeMarkStyles.js +15 -4
- package/dist/esm/ui/EditorContentContainer/styles/commentEditorStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/cursorStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/dateStyles.js +29 -6
- package/dist/esm/ui/EditorContentContainer/styles/editorUGCTokenStyles.js +27 -6
- package/dist/esm/ui/EditorContentContainer/styles/embedCardStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/emoji.js +34 -6
- package/dist/esm/ui/EditorContentContainer/styles/expandStyles.js +45 -11
- package/dist/esm/ui/EditorContentContainer/styles/extensionStyles.js +15 -3
- package/dist/esm/ui/EditorContentContainer/styles/findReplaceStyles.js +33 -9
- package/dist/esm/ui/EditorContentContainer/styles/firstBlockNodeStyles.js +9 -3
- package/dist/esm/ui/EditorContentContainer/styles/floatingToolbarStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/fontSizeStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/fullPageEditorStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/gapCursorStyles.js +22 -4
- package/dist/esm/ui/EditorContentContainer/styles/gridStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/indentationStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/layout.js +142 -24
- package/dist/esm/ui/EditorContentContainer/styles/link.js +21 -5
- package/dist/esm/ui/EditorContentContainer/styles/list.js +45 -10
- package/dist/esm/ui/EditorContentContainer/styles/mediaStyles.js +34 -9
- package/dist/esm/ui/EditorContentContainer/styles/mentions.js +33 -9
- package/dist/esm/ui/EditorContentContainer/styles/overflowShadowStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/panelStyles.js +39 -12
- package/dist/esm/ui/EditorContentContainer/styles/paragraphStyles.js +33 -9
- package/dist/esm/ui/EditorContentContainer/styles/placeholderStyles.js +27 -8
- package/dist/esm/ui/EditorContentContainer/styles/resizerStyles.js +114 -15
- package/dist/esm/ui/EditorContentContainer/styles/rule.js +15 -4
- package/dist/esm/ui/EditorContentContainer/styles/scrollbarStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/selectionStyles.js +63 -15
- package/dist/esm/ui/EditorContentContainer/styles/selectionToolbarStyles.js +9 -3
- package/dist/esm/ui/EditorContentContainer/styles/shadowStyles.js +22 -3
- package/dist/esm/ui/EditorContentContainer/styles/smartCardStyles.js +86 -14
- package/dist/esm/ui/EditorContentContainer/styles/statusStyles.js +45 -14
- package/dist/esm/ui/EditorContentContainer/styles/syncBlockStyles.js +33 -8
- package/dist/esm/ui/EditorContentContainer/styles/tableStyles.js +45 -15
- package/dist/esm/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.js +64 -16
- package/dist/esm/ui/EditorContentContainer/styles/telepointerStyles.js +17 -1
- package/dist/esm/ui/EditorContentContainer/styles/textColorStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/textHighlightStyles.js +9 -2
- package/dist/esm/ui/EditorContentContainer/styles/unsupportedStyles.js +17 -2
- package/dist/esm/ui/EditorContentContainer/styles/whitespaceStyles.js +9 -2
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/ui/EditorContentContainer/EditorContentContainer-emotion.d.ts +3 -1
- package/dist/types/ui/EditorContentContainer/styles/aiPanel.d.ts +24 -0
- package/dist/types/ui/EditorContentContainer/styles/annotationStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/backgroundColorStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/baseStyles.d.ts +36 -0
- package/dist/types/ui/EditorContentContainer/styles/blockMarksStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/blockTypeStyles.d.ts +60 -0
- package/dist/types/ui/EditorContentContainer/styles/codeBlockStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/commentEditorStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/cursorStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/dateStyles.d.ts +24 -0
- package/dist/types/ui/EditorContentContainer/styles/editorUGCTokenStyles.d.ts +24 -0
- package/dist/types/ui/EditorContentContainer/styles/embedCardStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/emoji.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/expandStyles.d.ts +42 -0
- package/dist/types/ui/EditorContentContainer/styles/extensionStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/firstBlockNodeStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/floatingToolbarStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/fontSizeStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/fullPageEditorStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +18 -0
- package/dist/types/ui/EditorContentContainer/styles/gridStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/indentationStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/layout.d.ts +138 -0
- package/dist/types/ui/EditorContentContainer/styles/link.d.ts +18 -0
- package/dist/types/ui/EditorContentContainer/styles/list.d.ts +42 -0
- package/dist/types/ui/EditorContentContainer/styles/mediaStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/mentions.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/overflowShadowStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/panelStyles.d.ts +36 -0
- package/dist/types/ui/EditorContentContainer/styles/paragraphStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/placeholderStyles.d.ts +24 -0
- package/dist/types/ui/EditorContentContainer/styles/resizerStyles.d.ts +108 -0
- package/dist/types/ui/EditorContentContainer/styles/rule.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/scrollbarStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/selectionStyles.d.ts +60 -0
- package/dist/types/ui/EditorContentContainer/styles/selectionToolbarStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/shadowStyles.d.ts +18 -0
- package/dist/types/ui/EditorContentContainer/styles/smartCardStyles.d.ts +78 -0
- package/dist/types/ui/EditorContentContainer/styles/statusStyles.d.ts +42 -0
- package/dist/types/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +30 -0
- package/dist/types/ui/EditorContentContainer/styles/tableStyles.d.ts +42 -0
- package/dist/types/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +60 -0
- package/dist/types/ui/EditorContentContainer/styles/telepointerStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/textColorStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/textHighlightStyles.d.ts +6 -0
- package/dist/types/ui/EditorContentContainer/styles/unsupportedStyles.d.ts +12 -0
- package/dist/types/ui/EditorContentContainer/styles/whitespaceStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/EditorContentContainer-emotion.d.ts +3 -1
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/aiPanel.d.ts +24 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/annotationStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/backgroundColorStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/baseStyles.d.ts +36 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/blockMarksStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/blockTypeStyles.d.ts +60 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/codeBlockStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/codeMarkStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/commentEditorStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/cursorStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/dateStyles.d.ts +24 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/editorUGCTokenStyles.d.ts +24 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/embedCardStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/emoji.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/expandStyles.d.ts +42 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/extensionStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/findReplaceStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/firstBlockNodeStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/floatingToolbarStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/fontSizeStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/fullPageEditorStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/gapCursorStyles.d.ts +18 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/gridStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/indentationStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/inlineNodeViewSharedStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/layout.d.ts +138 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/link.d.ts +18 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/list.d.ts +42 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/mediaStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/mentions.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/overflowShadowStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/panelStyles.d.ts +36 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/paragraphStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/placeholderStyles.d.ts +24 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/resizerStyles.d.ts +108 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/rule.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/scrollbarStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/selectionStyles.d.ts +60 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/selectionToolbarStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/shadowStyles.d.ts +18 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/smartCardStyles.d.ts +78 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/statusStyles.d.ts +42 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/syncBlockStyles.d.ts +30 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/tableStyles.d.ts +42 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/tasksAndDecisionsStyles.d.ts +60 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/telepointerStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/textColorStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/textHighlightStyles.d.ts +6 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/unsupportedStyles.d.ts +12 -0
- package/dist/types-ts4.5/ui/EditorContentContainer/styles/whitespaceStyles.d.ts +6 -0
- package/package.json +5 -5
|
@@ -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
|
-
|
|
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 fontSizeStyles = css({
|
|
5
12
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
6
13
|
'.ProseMirror': {
|
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
/* eslint-disable @atlaskit/ui-styling-standard/use-compiled
|
|
1
|
+
/* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
|
|
2
|
+
@repo/internal/deprecations/deprecation-ticket-required,
|
|
3
|
+
@atlaskit/ui-styling-standard/no-exported-styles */
|
|
2
4
|
import { css } from '@emotion/react';
|
|
3
5
|
// Originally copied from scrollStyles in packages/editor/editor-core/src/ui/Appearance/FullPage/StyledComponents.ts
|
|
4
|
-
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
8
|
+
* If you need to make changes here, also update the corresponding style in
|
|
9
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
10
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
11
|
+
*/
|
|
5
12
|
export var fullPageEditorStyles = css({
|
|
6
13
|
flexGrow: 1,
|
|
7
14
|
height: '100%',
|
|
@@ -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, keyframes } from '@emotion/react';
|
|
4
6
|
var gapCursorBlink = keyframes({
|
|
5
7
|
'from, to': {
|
|
@@ -9,6 +11,13 @@ var gapCursorBlink = keyframes({
|
|
|
9
11
|
opacity: 1
|
|
10
12
|
}
|
|
11
13
|
});
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
17
|
+
* If you need to make changes here, also update the corresponding style in
|
|
18
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
19
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
20
|
+
*/
|
|
12
21
|
export var hideCaretModifier = 'ProseMirror-hide-gapcursor';
|
|
13
22
|
var gapCursorSelector = '.ProseMirror-gapcursor';
|
|
14
23
|
var prosemirrorwidgetNotBlock = '.ProseMirror-widget:not([data-blocks-decoration-container="true"]):not([data-blocks-drag-handle-container="true"]):not([data-blocks-quick-insert-container="true"])';
|
|
@@ -20,8 +29,12 @@ var marginFixSelector = "\n ".concat(wrapLeft, " + ").concat(gapCursorSelector,
|
|
|
20
29
|
var floatLeftFixSelector = "\n ".concat(wrapLeft, " + ").concat(gapCursorSelector, ",\n ").concat(wrapRight, " + ").concat(gapCursorSelector);
|
|
21
30
|
var afterPresudoSelector = "\n ".concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + ").concat(wrapRight, "::after,\n ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + ").concat(wrapLeft, "::after,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, "::after,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + span + ").concat(wrapRight, "::after,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, "::after,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + span + ").concat(wrapLeft, "::after");
|
|
22
31
|
var marginDeepChildrenFixSelector = "\n".concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, " + *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + span + ").concat(wrapRight, " + *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + span + ").concat(wrapLeft, " + *,\n ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + ").concat(wrapRight, " + *,\n ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + ").concat(wrapLeft, " + *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, " + * > *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + * > *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + * > *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + * > *,\n ").concat(wrapLeft, " + ").concat(gapCursorSelector, " + span + ").concat(wrapRight, " + * > *,\n ").concat(wrapRight, " + ").concat(gapCursorSelector, " + span + ").concat(wrapLeft, " + * > *,\n ").concat(gapCursorSelector, " + ").concat(wrapLeft, " + span + ").concat(wrapRight, " + * > *,\n ").concat(gapCursorSelector, " + ").concat(wrapRight, " + span + ").concat(wrapLeft, " + * > *,\n ").concat(prosemirrorwidgetNotBlock, " + ").concat(gapCursorSelector, " + *,\n ").concat(prosemirrorwidgetNotBlock, " + ").concat(gapCursorSelector, " + span + *");
|
|
23
|
-
|
|
24
|
-
|
|
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
|
+
*/
|
|
25
38
|
export var gapCursorStyles = css(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({
|
|
26
39
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
27
40
|
'.ProseMirror': _defineProperty(_defineProperty(_defineProperty({}, "&.".concat(hideCaretModifier), {
|
|
@@ -92,7 +105,12 @@ export var gapCursorStyles = css(_defineProperty(_defineProperty(_defineProperty
|
|
|
92
105
|
}));
|
|
93
106
|
|
|
94
107
|
// Hide native caret when gap cursor widget is present (no class toggle = no VC90 mutation)
|
|
95
|
-
|
|
108
|
+
/**
|
|
109
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
110
|
+
* If you need to make changes here, also update the corresponding style in
|
|
111
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
112
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
113
|
+
*/
|
|
96
114
|
export var gapCursorStylesVisibilityFix = css({
|
|
97
115
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
98
116
|
'.ProseMirror': _defineProperty({}, "&:has(".concat(gapCursorSelector, ")"), {
|
|
@@ -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
|
-
|
|
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 gridStyles = css({
|
|
5
12
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
6
13
|
'.gridParent': {
|
|
@@ -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
|
-
|
|
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 indentationStyles = css({
|
|
5
12
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
6
13
|
'.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
|
-
|
|
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 InlineNodeViewSharedStyles = css({
|
|
5
12
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
6
13
|
'.ProseMirror': {
|
|
@@ -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
|
|
|
4
6
|
import { css } from '@emotion/react';
|
|
5
7
|
import { blanketSelectionStyles, borderSelectionStyles, hideNativeBrowserTextSelectionStyles } from './selectionStyles';
|
|
@@ -16,7 +18,12 @@ var layoutColumnDividerThumbClassName = 'layout-column-divider-thumb';
|
|
|
16
18
|
* Mirrors the pm-breakout-resize-handle-* pattern from resizerStyles.ts.
|
|
17
19
|
* Applied only when advanced_layouts experiment is on.
|
|
18
20
|
*/
|
|
19
|
-
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
23
|
+
* If you need to make changes here, also update the corresponding style in
|
|
24
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
25
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
26
|
+
*/
|
|
20
27
|
export var layoutColumnDividerStyles = css(_defineProperty(_defineProperty(_defineProperty({}, ".".concat(layoutColumnDividerClassName), _defineProperty(_defineProperty({
|
|
21
28
|
// Negative margin removes the applied 'gap' from the parent's flex box
|
|
22
29
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-space
|
|
@@ -57,7 +64,12 @@ export var layoutColumnDividerStyles = css(_defineProperty(_defineProperty(_defi
|
|
|
57
64
|
* Override divider marginInline when platform_editor_nested_dnd_styles_changes is on,
|
|
58
65
|
* since the layout section/column spacing changes.
|
|
59
66
|
*/
|
|
60
|
-
|
|
67
|
+
/**
|
|
68
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
69
|
+
* If you need to make changes here, also update the corresponding style in
|
|
70
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
71
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
72
|
+
*/
|
|
61
73
|
export var layoutColumnDividerStylesNestedDnD = css(_defineProperty({}, ".".concat(layoutColumnDividerClassName), {
|
|
62
74
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-space
|
|
63
75
|
marginInline: '0 -7px'
|
|
@@ -71,7 +83,12 @@ var layoutSelectedSelector = "&.selected, [data-empty-layout='true'], &:hover, &
|
|
|
71
83
|
/**
|
|
72
84
|
* Layout columns styles when advanced layouts experiment is on
|
|
73
85
|
*/
|
|
74
|
-
|
|
86
|
+
/**
|
|
87
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
88
|
+
* If you need to make changes here, also update the corresponding style in
|
|
89
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
90
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
91
|
+
*/
|
|
75
92
|
export var layoutColumnStylesAdvanced = css({
|
|
76
93
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
77
94
|
'.ProseMirror [data-layout-section]': _defineProperty(_defineProperty({
|
|
@@ -109,7 +126,12 @@ export var layoutColumnStylesAdvanced = css({
|
|
|
109
126
|
/**
|
|
110
127
|
* Layout column resize styles for the platform_editor_layout_column_resize_handle experiment
|
|
111
128
|
*/
|
|
112
|
-
|
|
129
|
+
/**
|
|
130
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
131
|
+
* If you need to make changes here, also update the corresponding style in
|
|
132
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
133
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
134
|
+
*/
|
|
113
135
|
export var layoutColumnResizeStyles = css({
|
|
114
136
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
115
137
|
'.ProseMirror [data-layout-section]': {
|
|
@@ -128,7 +150,12 @@ export var layoutColumnResizeStyles = css({
|
|
|
128
150
|
/**
|
|
129
151
|
* Layout columns styles when advanced layouts experiment is off
|
|
130
152
|
*/
|
|
131
|
-
|
|
153
|
+
/**
|
|
154
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
155
|
+
* If you need to make changes here, also update the corresponding style in
|
|
156
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
157
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
158
|
+
*/
|
|
132
159
|
export var layoutColumnStylesNotAdvanced = css({
|
|
133
160
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
134
161
|
'.ProseMirror [data-layout-section]': _defineProperty({
|
|
@@ -148,7 +175,12 @@ export var layoutColumnStylesNotAdvanced = css({
|
|
|
148
175
|
/**
|
|
149
176
|
* Responsive styles for layout columns when advanced layouts experiment is on
|
|
150
177
|
*/
|
|
151
|
-
|
|
178
|
+
/**
|
|
179
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
180
|
+
* If you need to make changes here, also update the corresponding style in
|
|
181
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
182
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
183
|
+
*/
|
|
152
184
|
export var layoutColumnResponsiveStyles = css({
|
|
153
185
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
154
186
|
'.ProseMirror [data-layout-section]': {
|
|
@@ -175,7 +207,13 @@ export var layoutColumnResponsiveStyles = css({
|
|
|
175
207
|
/**
|
|
176
208
|
* Layout section styles when advanced layouts experiment is on
|
|
177
209
|
*/
|
|
178
|
-
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
|
|
210
|
+
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
|
|
211
|
+
/**
|
|
212
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
213
|
+
* If you need to make changes here, also update the corresponding style in
|
|
214
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
215
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
216
|
+
*/
|
|
179
217
|
export var layoutSectionStylesAdvanced = css(_defineProperty({
|
|
180
218
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
181
219
|
'.ProseMirror .layout-section-container [data-layout-section]': {
|
|
@@ -223,7 +261,12 @@ export var layoutSectionStylesAdvanced = css(_defineProperty({
|
|
|
223
261
|
/**
|
|
224
262
|
* Layout section styles when advanced layouts experiment is off
|
|
225
263
|
*/
|
|
226
|
-
|
|
264
|
+
/**
|
|
265
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
266
|
+
* If you need to make changes here, also update the corresponding style in
|
|
267
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
268
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
269
|
+
*/
|
|
227
270
|
export var layoutSectionStylesNotAdvanced = css({
|
|
228
271
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
229
272
|
'.ProseMirror [data-layout-section]': _defineProperty(_defineProperty({
|
|
@@ -252,7 +295,12 @@ export var layoutSectionStylesNotAdvanced = css({
|
|
|
252
295
|
// TODO: DSP-4441 - Remove the border styles below once design tokens have been enabled and fallbacks are no longer triggered.
|
|
253
296
|
// This is because the default state already uses the same token and, as such, the hover style won't change anything.
|
|
254
297
|
// https://product-fabric.atlassian.net/browse/DSP-4441
|
|
255
|
-
|
|
298
|
+
/**
|
|
299
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
300
|
+
* If you need to make changes here, also update the corresponding style in
|
|
301
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
302
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
303
|
+
*/
|
|
256
304
|
export var layoutSelectedStylesNotAdvanced = css({
|
|
257
305
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
258
306
|
'.ProseMirror': {
|
|
@@ -305,7 +353,12 @@ var rowSeparatorBaseStyles = css({
|
|
|
305
353
|
/**
|
|
306
354
|
* Selected styles for layout when advanced layouts experiment is on
|
|
307
355
|
*/
|
|
308
|
-
|
|
356
|
+
/**
|
|
357
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
358
|
+
* If you need to make changes here, also update the corresponding style in
|
|
359
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
360
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
361
|
+
*/
|
|
309
362
|
export var layoutSelectedStylesAdvanced = css({
|
|
310
363
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
311
364
|
'.ProseMirror': {
|
|
@@ -351,7 +404,12 @@ export var layoutSelectedStylesAdvanced = css({
|
|
|
351
404
|
// sometimes doesn't appear when inside a synced block.
|
|
352
405
|
// Separated as a distinct style to allow feature-gating without affecting module-level styles.
|
|
353
406
|
// This prevents style inconsistencies before the feature flag is initialized.
|
|
354
|
-
|
|
407
|
+
/**
|
|
408
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
409
|
+
* If you need to make changes here, also update the corresponding style in
|
|
410
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
411
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
412
|
+
*/
|
|
355
413
|
export var layoutSelectedStylesAdvancedFix = css({
|
|
356
414
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
357
415
|
'.ProseMirror': {
|
|
@@ -371,7 +429,12 @@ export var layoutSelectedStylesAdvancedFix = css({
|
|
|
371
429
|
* Base responsive styles for layout
|
|
372
430
|
*/
|
|
373
431
|
// jest warning: JSDOM version (22) doesn't support the new @container CSS rule
|
|
374
|
-
|
|
432
|
+
/**
|
|
433
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
434
|
+
* If you need to make changes here, also update the corresponding style in
|
|
435
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
436
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
437
|
+
*/
|
|
375
438
|
export var layoutResponsiveBaseStyles = css(_defineProperty(_defineProperty(_defineProperty({}, selectorForNotResizedLayoutInFulllWidthEditor, _defineProperty({
|
|
376
439
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
377
440
|
'[data-layout-section]': {
|
|
@@ -410,7 +473,12 @@ export var layoutResponsiveBaseStyles = css(_defineProperty(_defineProperty(_def
|
|
|
410
473
|
/**
|
|
411
474
|
* Responsive styles for layout in view mode
|
|
412
475
|
*/
|
|
413
|
-
|
|
476
|
+
/**
|
|
477
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
478
|
+
* If you need to make changes here, also update the corresponding style in
|
|
479
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
480
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
481
|
+
*/
|
|
414
482
|
export var layoutResponsiveStylesForView = css(_defineProperty(_defineProperty(_defineProperty({}, selectorForNotResizedLayoutInFulllWidthEditor, _defineProperty({}, layoutResponsiveSelectedSelector, {
|
|
415
483
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors,@atlaskit/ui-styling-standard/no-unsafe-selectors
|
|
416
484
|
'[data-layout-column]:not(:first-of-type)': _defineProperty({}, "@container editor-area (max-width:724px)", {
|
|
@@ -440,7 +508,12 @@ export var layoutResponsiveStylesForView = css(_defineProperty(_defineProperty(_
|
|
|
440
508
|
/**
|
|
441
509
|
* Base styles for layout
|
|
442
510
|
*/
|
|
443
|
-
|
|
511
|
+
/**
|
|
512
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
513
|
+
* If you need to make changes here, also update the corresponding style in
|
|
514
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
515
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
516
|
+
*/
|
|
444
517
|
export var layoutBaseStyles = css({
|
|
445
518
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-nested-selectors
|
|
446
519
|
'.ProseMirror': {
|
|
@@ -534,7 +607,12 @@ export var layoutBaseStyles = css({
|
|
|
534
607
|
}
|
|
535
608
|
});
|
|
536
609
|
// on exp 'platform_editor_table_excerpts_fix' cleanup, merge this style to the one above
|
|
537
|
-
|
|
610
|
+
/**
|
|
611
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
612
|
+
* If you need to make changes here, also update the corresponding style in
|
|
613
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
614
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
615
|
+
*/
|
|
538
616
|
export var layoutBaseStylesWithTableExcerptsFix = css({
|
|
539
617
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-nested-selectors
|
|
540
618
|
'.ProseMirror': {
|
|
@@ -558,7 +636,12 @@ export var layoutBaseStylesWithTableExcerptsFix = css({
|
|
|
558
636
|
/**
|
|
559
637
|
* Base styles overrides for layout columns when advanced layouts experiment is on
|
|
560
638
|
*/
|
|
561
|
-
|
|
639
|
+
/**
|
|
640
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
641
|
+
* If you need to make changes here, also update the corresponding style in
|
|
642
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
643
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
644
|
+
*/
|
|
562
645
|
export var layoutBaseStylesAdvanced = css({
|
|
563
646
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
564
647
|
'.ProseMirror [data-layout-section] [data-layout-column]': {
|
|
@@ -572,7 +655,12 @@ export var layoutBaseStylesAdvanced = css({
|
|
|
572
655
|
// TODO: EDF-123 - Migrate away from gridSize
|
|
573
656
|
// Recommendation: Replace directly with 7px
|
|
574
657
|
// Ignored via go/ees007
|
|
575
|
-
|
|
658
|
+
/**
|
|
659
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
660
|
+
* If you need to make changes here, also update the corresponding style in
|
|
661
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
662
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
663
|
+
*/
|
|
576
664
|
export var layoutBaseStylesFixesUnderNestedDnDFG = css({
|
|
577
665
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
578
666
|
'.ProseMirror [data-layout-section]': {
|
|
@@ -588,7 +676,12 @@ export var layoutBaseStylesFixesUnderNestedDnDFG = css({
|
|
|
588
676
|
* Spacing overrides when platform_editor_nested_dnd_styles_changes is on,
|
|
589
677
|
* excluding layouts inside bodied sync blocks
|
|
590
678
|
*/
|
|
591
|
-
|
|
679
|
+
/**
|
|
680
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
681
|
+
* If you need to make changes here, also update the corresponding style in
|
|
682
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
683
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
684
|
+
*/
|
|
592
685
|
export var layoutBaseStylesFixesUnderNestedDnDFGExcludingBodiedSync = css({
|
|
593
686
|
// Apply -20px margin to all sections
|
|
594
687
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
@@ -609,7 +702,12 @@ export var layoutBaseStylesFixesUnderNestedDnDFGExcludingBodiedSync = css({
|
|
|
609
702
|
/**
|
|
610
703
|
* Layout in view mode styles for selected state when advanced layouts experiment is on.
|
|
611
704
|
*/
|
|
612
|
-
|
|
705
|
+
/**
|
|
706
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
707
|
+
* If you need to make changes here, also update the corresponding style in
|
|
708
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
709
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
710
|
+
*/
|
|
613
711
|
export var layoutSelectedStylesForViewAdvanced = css({
|
|
614
712
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
615
713
|
'.ProseMirror': {
|
|
@@ -630,7 +728,12 @@ export var layoutSelectedStylesForViewAdvanced = css({
|
|
|
630
728
|
/**
|
|
631
729
|
* Layout in view mode styles for selected state when advanced layouts experiment is off.
|
|
632
730
|
*/
|
|
633
|
-
|
|
731
|
+
/**
|
|
732
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
733
|
+
* If you need to make changes here, also update the corresponding style in
|
|
734
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
735
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
736
|
+
*/
|
|
634
737
|
export var layoutSelectedStylesForViewNotAdvanced = css({
|
|
635
738
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
636
739
|
'.ProseMirror': {
|
|
@@ -647,7 +750,12 @@ export var layoutSelectedStylesForViewNotAdvanced = css({
|
|
|
647
750
|
/*
|
|
648
751
|
* Layout in view mode styles, overrides over layout base styles
|
|
649
752
|
*/
|
|
650
|
-
|
|
753
|
+
/**
|
|
754
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
755
|
+
* If you need to make changes here, also update the corresponding style in
|
|
756
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
757
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
758
|
+
*/
|
|
651
759
|
export var layoutStylesForView = css({
|
|
652
760
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
653
761
|
'.ProseMirror': {
|
|
@@ -665,7 +773,12 @@ export var layoutStylesForView = css({
|
|
|
665
773
|
/*
|
|
666
774
|
* marginTop fixes when platform_editor_nested_dnd_styles_changes is on
|
|
667
775
|
*/
|
|
668
|
-
|
|
776
|
+
/**
|
|
777
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
778
|
+
* If you need to make changes here, also update the corresponding style in
|
|
779
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
780
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
781
|
+
*/
|
|
669
782
|
export var layoutColumnMartinTopFixesNew = css({
|
|
670
783
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
671
784
|
'.ProseMirror [data-layout-section] [data-layout-column] > div': {
|
|
@@ -679,7 +792,12 @@ export var layoutColumnMartinTopFixesNew = css({
|
|
|
679
792
|
/*
|
|
680
793
|
* marginTop fixes when platform_editor_nested_dnd_styles_changes is off
|
|
681
794
|
*/
|
|
682
|
-
|
|
795
|
+
/**
|
|
796
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
797
|
+
* If you need to make changes here, also update the corresponding style in
|
|
798
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
799
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
800
|
+
*/
|
|
683
801
|
export var layoutColumnMartinTopFixesOld = css({
|
|
684
802
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
685
803
|
'.ProseMirror [data-layout-section] [data-layout-column] > div': {
|
|
@@ -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
|
-
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
7
|
+
* If you need to make changes here, also update the corresponding style in
|
|
8
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
9
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
10
|
+
*/
|
|
4
11
|
export var linkStyles = css({
|
|
5
12
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
|
|
6
13
|
'.ProseMirror a.blockLink': {
|
|
@@ -15,8 +22,12 @@ export var linkStyles = css({
|
|
|
15
22
|
textDecoration: 'none'
|
|
16
23
|
}
|
|
17
24
|
});
|
|
18
|
-
|
|
19
|
-
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
27
|
+
* If you need to make changes here, also update the corresponding style in
|
|
28
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
29
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
30
|
+
*/
|
|
20
31
|
export var hyperLinkFloatingToolbarStyles = css({
|
|
21
32
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
22
33
|
'.hyperlink-floating-toolbar': {
|
|
@@ -28,7 +39,12 @@ export var hyperLinkFloatingToolbarStyles = css({
|
|
|
28
39
|
* Legacy Link icon in the Atlaskit package is bigger than the others,
|
|
29
40
|
* new ADS icon does not have this issue
|
|
30
41
|
*/
|
|
31
|
-
|
|
42
|
+
/**
|
|
43
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
44
|
+
* If you need to make changes here, also update the corresponding style in
|
|
45
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
46
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
47
|
+
*/
|
|
32
48
|
export var linkLegacyIconStylesFix = css({
|
|
33
49
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
34
50
|
'.hyperlink-open-link': {
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
|
-
/* eslint-disable @atlaskit/ui-styling-standard/use-compiled
|
|
2
|
+
/* eslint-disable @atlaskit/ui-styling-standard/use-compiled,
|
|
3
|
+
@repo/internal/deprecations/deprecation-ticket-required,
|
|
4
|
+
@atlaskit/ui-styling-standard/no-exported-styles */
|
|
3
5
|
import { css } from '@emotion/react';
|
|
4
6
|
import { akEditorFullPageDefaultFontSize, akEditorFullPageDenseFontSize } from '@atlaskit/editor-shared-styles';
|
|
5
7
|
// copied from packages/editor/editor-shared-styles/src/consts/consts.ts
|
|
@@ -9,8 +11,12 @@ var BLOCK_CARD_CONTAINER = 'blockCardView-content-wrap';
|
|
|
9
11
|
|
|
10
12
|
// copied from packages/editor/editor-shared-styles/src/consts/consts.ts
|
|
11
13
|
var blockNodesVerticalMargin = '0.75rem';
|
|
12
|
-
|
|
13
|
-
|
|
14
|
+
/**
|
|
15
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
16
|
+
* If you need to make changes here, also update the corresponding style in
|
|
17
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
18
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
19
|
+
*/
|
|
14
20
|
export var listsStyles = css({
|
|
15
21
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
16
22
|
'.ProseMirror': {
|
|
@@ -130,8 +136,12 @@ export var listsStyles = css({
|
|
|
130
136
|
}
|
|
131
137
|
}
|
|
132
138
|
});
|
|
133
|
-
|
|
134
|
-
|
|
139
|
+
/**
|
|
140
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
141
|
+
* If you need to make changes here, also update the corresponding style in
|
|
142
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
143
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
144
|
+
*/
|
|
135
145
|
export var diffListStyles = css({
|
|
136
146
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
137
147
|
'li[data-testid="show-diff-changed-decoration-node"]::marker': {
|
|
@@ -142,7 +152,12 @@ export var diffListStyles = css({
|
|
|
142
152
|
|
|
143
153
|
// These styles are to fix a layout shift issue that occurs when aui-reset.less CSS is applied post-hydration.
|
|
144
154
|
// It overrides the design system bundle.css list margins, which in turn causes the lists to shift vertically.
|
|
145
|
-
|
|
155
|
+
/**
|
|
156
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
157
|
+
* If you need to make changes here, also update the corresponding style in
|
|
158
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
159
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
160
|
+
*/
|
|
146
161
|
export var listsStylesMarginLayoutShiftFix = css({
|
|
147
162
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
148
163
|
'.ProseMirror': {
|
|
@@ -164,7 +179,12 @@ export var listsStylesMarginLayoutShiftFix = css({
|
|
|
164
179
|
});
|
|
165
180
|
|
|
166
181
|
/* This prevents https://product-fabric.atlassian.net/browse/ED-20924 */
|
|
167
|
-
|
|
182
|
+
/**
|
|
183
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
184
|
+
* If you need to make changes here, also update the corresponding style in
|
|
185
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
186
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
187
|
+
*/
|
|
168
188
|
export var listsStylesSafariFix = css(_defineProperty(_defineProperty({}, ".ProseMirror:not(.".concat(BLOCK_CARD_CONTAINER, ") > li::before"), {
|
|
169
189
|
content: '" "',
|
|
170
190
|
// eslint-disable-next-line @atlaskit/design-system/use-tokens-typography, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values
|
|
@@ -174,10 +194,21 @@ export var listsStylesSafariFix = css(_defineProperty(_defineProperty({}, ".Pros
|
|
|
174
194
|
marginTop: "-".concat(akEditorLineHeight, "em !important")
|
|
175
195
|
}));
|
|
176
196
|
|
|
197
|
+
/**
|
|
198
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
199
|
+
* If you need to make changes here, also update the corresponding style in
|
|
200
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
201
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
202
|
+
*/
|
|
177
203
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values
|
|
178
204
|
export var EDITOR_LIST_DENSE_GAP = "max(0px, calc((var(--ak-editor-base-font-size, ".concat(akEditorFullPageDefaultFontSize, "px) - ").concat(akEditorFullPageDenseFontSize, "px) * (4 / 3)))");
|
|
179
205
|
|
|
180
|
-
|
|
206
|
+
/**
|
|
207
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
208
|
+
* If you need to make changes here, also update the corresponding style in
|
|
209
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
210
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
211
|
+
*/
|
|
181
212
|
export var getDenseListStyles = function getDenseListStyles(baseFontSize) {
|
|
182
213
|
if (!baseFontSize || baseFontSize === akEditorFullPageDefaultFontSize) {
|
|
183
214
|
return css({});
|
|
@@ -198,8 +229,12 @@ export var getDenseListStyles = function getDenseListStyles(baseFontSize) {
|
|
|
198
229
|
}
|
|
199
230
|
});
|
|
200
231
|
};
|
|
201
|
-
|
|
202
|
-
|
|
232
|
+
/**
|
|
233
|
+
* @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
|
|
234
|
+
* If you need to make changes here, also update the corresponding style in
|
|
235
|
+
* packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
|
|
236
|
+
* See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
|
|
237
|
+
*/
|
|
203
238
|
export var listItemHiddenMarkerStyles = css({
|
|
204
239
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
|
|
205
240
|
'.ProseMirror': {
|