@atlaskit/editor-core 221.3.1 → 221.3.2

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 (45) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/cjs/ui/Appearance/Comment/Comment-compiled.compiled.css +30 -0
  3. package/dist/cjs/ui/Appearance/Comment/Comment-compiled.js +275 -0
  4. package/dist/cjs/ui/Appearance/Comment/Comment-emotion.js +357 -0
  5. package/dist/cjs/ui/Appearance/Comment/Comment.js +6 -344
  6. package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea-compiled.compiled.css +96 -0
  7. package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea-compiled.js +190 -0
  8. package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea-emotion.js +413 -0
  9. package/dist/cjs/ui/Appearance/FullPage/FullPageContentArea.js +10 -402
  10. package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-compiled.js +4 -3
  11. package/dist/cjs/ui/EditorContentContainer/EditorContentContainer-emotion.js +4 -2
  12. package/dist/cjs/ui/EditorContentContainer/styles/backgroundColorStyles.js +17 -6
  13. package/dist/cjs/version-wrapper.js +1 -1
  14. package/dist/es2019/ui/Appearance/Comment/Comment-compiled.compiled.css +30 -0
  15. package/dist/es2019/ui/Appearance/Comment/Comment-compiled.js +262 -0
  16. package/dist/es2019/ui/Appearance/Comment/Comment-emotion.js +344 -0
  17. package/dist/es2019/ui/Appearance/Comment/Comment.js +4 -337
  18. package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea-compiled.compiled.css +96 -0
  19. package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea-compiled.js +179 -0
  20. package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea-emotion.js +405 -0
  21. package/dist/es2019/ui/Appearance/FullPage/FullPageContentArea.js +8 -400
  22. package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-compiled.js +4 -3
  23. package/dist/es2019/ui/EditorContentContainer/EditorContentContainer-emotion.js +5 -3
  24. package/dist/es2019/ui/EditorContentContainer/styles/backgroundColorStyles.js +16 -5
  25. package/dist/es2019/version-wrapper.js +1 -1
  26. package/dist/esm/ui/Appearance/Comment/Comment-compiled.compiled.css +30 -0
  27. package/dist/esm/ui/Appearance/Comment/Comment-compiled.js +268 -0
  28. package/dist/esm/ui/Appearance/Comment/Comment-emotion.js +346 -0
  29. package/dist/esm/ui/Appearance/Comment/Comment.js +6 -339
  30. package/dist/esm/ui/Appearance/FullPage/FullPageContentArea-compiled.compiled.css +96 -0
  31. package/dist/esm/ui/Appearance/FullPage/FullPageContentArea-compiled.js +183 -0
  32. package/dist/esm/ui/Appearance/FullPage/FullPageContentArea-emotion.js +403 -0
  33. package/dist/esm/ui/Appearance/FullPage/FullPageContentArea.js +10 -398
  34. package/dist/esm/ui/EditorContentContainer/EditorContentContainer-compiled.js +4 -3
  35. package/dist/esm/ui/EditorContentContainer/EditorContentContainer-emotion.js +5 -3
  36. package/dist/esm/ui/EditorContentContainer/styles/backgroundColorStyles.js +16 -5
  37. package/dist/esm/version-wrapper.js +1 -1
  38. package/dist/types/ui/Appearance/Comment/Comment-compiled.d.ts +30 -0
  39. package/dist/types/ui/Appearance/Comment/Comment-emotion.d.ts +20 -0
  40. package/dist/types/ui/Appearance/Comment/Comment.d.ts +2 -20
  41. package/dist/types/ui/Appearance/FullPage/FullPageContentArea-compiled.d.ts +56 -0
  42. package/dist/types/ui/Appearance/FullPage/FullPageContentArea-emotion.d.ts +56 -0
  43. package/dist/types/ui/Appearance/FullPage/FullPageContentArea.d.ts +6 -54
  44. package/dist/types/ui/EditorContentContainer/styles/backgroundColorStyles.d.ts +7 -0
  45. package/package.json +4 -4
@@ -1,405 +1,13 @@
1
- /**
2
- * @jsxRuntime classic
3
- * @jsx jsx
4
- */
5
-
6
- import React, { useImperativeHandle, useRef } from 'react';
7
-
8
- /* eslint-disable @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports -- Ignored via go/DSP-18766; jsx required at runtime for @jsxRuntime classic */
9
- import { css, jsx, useTheme } from '@emotion/react';
10
- import classnames from 'classnames';
11
- import { injectIntl } from 'react-intl';
12
- import { decisionListSelector, taskListSelector } from '@atlaskit/adf-schema';
13
- import { useSharedPluginStateWithSelector } from '@atlaskit/editor-common/hooks';
14
- import { fullPageMessages as messages } from '@atlaskit/editor-common/messages';
15
- import { akEditorFullPageNarrowBreakout, akEditorGutterPaddingDynamic, akEditorGutterPaddingReduced, akEditorDefaultLayoutWidth } from '@atlaskit/editor-shared-styles';
16
- import { fg } from '@atlaskit/platform-feature-flags';
1
+ import { componentWithCondition } from '@atlaskit/platform-feature-flags-react';
17
2
  import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
18
- import { expValEqualsNoExposure } from '@atlaskit/tmp-editor-statsig/exp-val-equals-no-exposure';
19
- import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
20
- // Ignored via go/ees005
21
- // eslint-disable-next-line import/no-named-as-default
22
- import ClickAreaBlock from '../../Addon/ClickAreaBlock';
23
- import { contentComponentClickWrapper } from '../../Addon/ClickAreaBlock/contentComponentWrapper';
24
- import { ContextPanel } from '../../ContextPanel';
25
- import EditorContentContainer from '../../EditorContentContainer/EditorContentContainer';
26
- import PluginSlot from '../../PluginSlot';
27
- import { contentAreaWrapper, sidebarArea } from './StyledComponents';
28
- const akEditorFullWidthLayoutWidth = 1800;
29
- const akEditorUltraWideLayoutWidth = 4000;
30
- const akEditorSwoopCubicBezier = `cubic-bezier(0.15, 1, 0.3, 1)`;
31
- const tableMarginFullWidthMode = 2;
32
- const akLayoutGutterOffset = 12;
33
- const SWOOP_ANIMATION = `0.5s ${akEditorSwoopCubicBezier}`;
34
- const AK_NESTED_DND_GUTTER_OFFSET = 8;
35
- const getTotalPadding = () => akEditorGutterPaddingDynamic() * 2;
36
- const editorContentAreaProsemirrorStyle = css({
37
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
38
- '& .ProseMirror': {
39
- flexGrow: 1,
40
- boxSizing: 'border-box',
41
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
42
- '& > *': {
43
- clear: 'both'
44
- },
45
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
46
- [`> p, > ul, > ol:not(${taskListSelector}):not(${decisionListSelector}), > h1, > h2, > h3, > h4, > h5, > h6`]: {
47
- clear: 'none'
48
- },
49
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
50
- '> p:last-child': {
51
- marginBottom: "var(--ds-space-300, 24px)"
52
- }
53
- }
54
- });
55
-
56
- /*
57
- EDITOR-7249: Scope to the main editor's ProseMirror (direct child) so nested
58
- editors like the footer page-comment composer aren't hidden in Syntax view.
59
- */
60
- const hideEditorContentAreaProsemirrorWithAttributeStyle = css({
61
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
62
- '&[data-markdown-mode-hide-prosemirror="true"] > .ak-editor-content-area > .ProseMirror': {
63
- display: 'none'
64
- }
65
- });
66
- const hideEditorContentAreaScrollGutterWithAttributeStyle = css({
67
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
68
- '&[data-markdown-mode-hide-scroll-gutter="true"] > .ak-editor-content-area > [data-vc="scroll-gutter"]': {
69
- display: 'none'
70
- }
71
- });
72
- const hideEditorScrollGutterStyle = css({
73
- display: 'none'
74
- });
75
- const fullWidthNonChromelessBreakoutBlockTableStyle = css({
76
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-1
77
- '.fabric-editor--full-width-mode:not(:has(#chromeless-editor))': {
78
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
79
- '.fabric-editor-breakout-mark, .extension-container.block, .pm-table-container': {
80
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles -- Ignored via go/DSP-18766
81
- width: '100% !important'
82
- },
83
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
84
- '.fabric-editor-breakout-mark': {
85
- // eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage/preview, @atlaskit/ui-styling-standard/no-important-styles -- Ignored via go/DSP-18766
86
- marginLeft: 'unset !important',
87
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles -- Ignored via go/DSP-18766
88
- transform: 'none !important'
89
- }
90
- }
91
- });
92
-
93
- // An additional spacing applied at the top of the content area reserving space when the primary toolbar
94
- // is hidden – this avoids layout shift when the toolbar is toggled under the editor controls feature
95
- const contentAreaReservedPrimaryToolbarSpace = css({
96
- // extra 1px to account for the bottom border on the toolbar
97
- marginTop: `calc(${"var(--ds-space-500, 40px)"} + 1px)`
98
- });
99
-
100
- // A reduced top spacing applied to the content area to compensate for the reserved space at the top
101
- // of the page when the primary toolbar is hidden under the editor controls feature
102
- const contentAreaReducedHeaderSpace = css({
103
- paddingTop: "var(--ds-space-400, 32px)"
104
- });
105
-
106
- // new styles
107
- const editorContentAreaNew = css({
108
- // eslint-disable-next-line @atlaskit/design-system/use-tokens-typography
109
- lineHeight: '24px',
110
- paddingTop: "var(--ds-space-600, 48px)",
111
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors
112
- '.ak-editor-content-area-no-toolbar &': {
113
- // When the toolbar is hidden, we don't want content to jump up
114
- // the extra 1px is to account for the border on the toolbar
115
- paddingTop: `calc(${"var(--ds-space-600, 48px)"} + var(--ak-editor-fullpage-toolbar-height) + 1px)`
116
- },
117
- paddingBottom: "var(--ds-space-600, 48px)",
118
- height: 'calc( 100% - 105px )',
119
- width: '100%',
120
- margin: 'auto',
121
- flexDirection: 'column',
122
- flexGrow: 1,
123
- maxWidth: 'var(--ak-editor-content-area-max-width)',
124
- transition: `max-width ${SWOOP_ANIMATION}`
125
- });
126
- const tableFullPageEditorStylesNew = css({
127
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
128
- '.ProseMirror .pm-table-wrapper > table': {
129
- marginLeft: 0,
130
- /* 1px border width offset added here to prevent unwanted overflow and scolling - ED-16212 */
131
- // eslint-disable-next-line @atlaskit/design-system/use-tokens-space
132
- marginRight: '-1px',
133
- width: '100%'
134
- }
135
- });
136
- const editorContentAreaContainerNestedDndStyle = css({
137
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
138
- '.fabric-editor--full-width-mode': {
139
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
140
- '[data-layout-section]': {
141
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
142
- maxWidth: `calc(100% + ${(akLayoutGutterOffset + AK_NESTED_DND_GUTTER_OFFSET) * 2}px)`
143
- }
144
- }
145
- });
146
-
147
- /* Prevent horizontal scroll on page in full width mode */
148
- const editorContentAreaContainerStyleExcludeCodeBlockNew = css({
149
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
150
- '.fabric-editor--full-width-mode': {
151
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
152
- '.extension-container, .multiBodiedExtension--container': {
153
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
154
- maxWidth: `calc(100% - ${tableMarginFullWidthMode * 2}px)`
155
- },
156
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
157
- '.extension-container.inline': {
158
- maxWidth: '100%'
159
- },
160
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
161
- 'td .extension-container.inline': {
162
- maxWidth: 'inherit'
163
- },
164
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
165
- '[data-layout-section]': {
166
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
167
- maxWidth: `calc(100% + ${akLayoutGutterOffset * 2}px)`
168
- }
169
- }
170
- });
171
-
172
- /* Prevent horizontal scroll on page in full width mode */
173
- const editorContentAreaContainerStyleNew = css({
174
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
175
- '.fabric-editor--full-width-mode': {
176
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
177
- '.code-block, .extension-container, .multiBodiedExtension--container': {
178
- maxWidth: `calc(100% - ${tableMarginFullWidthMode * 2}px)`
179
- },
180
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
181
- '.extension-container.inline': {
182
- maxWidth: '100%'
183
- },
184
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
185
- 'td .extension-container.inline': {
186
- maxWidth: 'inherit'
187
- },
188
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
189
- '[data-layout-section]': {
190
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
191
- maxWidth: `calc(100% + ${akLayoutGutterOffset * 2}px)`
192
- }
193
- }
194
- });
195
- const editorContentGutterStyleFG = css({
196
- padding: '0 72px'
197
- });
198
- const editorContentGutterStyles = css({
199
- boxSizing: 'border-box',
200
- padding: '0 52px'
201
- });
202
- const editorContentReducedGutterStyles = css({
203
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-container-queries, @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values
204
- [`@container editor-area (max-width: ${akEditorFullPageNarrowBreakout}px)`]: {
205
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
206
- padding: `0 ${akEditorGutterPaddingReduced}px`
207
- }
208
- });
209
- const contentAreaNew = css({
210
- display: 'flex',
211
- flexDirection: 'row',
212
- height: `calc(100% - var(--ak-editor-fullpage-toolbar-height))`,
213
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-values
214
- '&.ak-editor-content-area-no-toolbar': {
215
- // The editor toolbar height is 1px off (from the border) -- so we need to add 1px to the height
216
- // to match the toolbar height
217
- height: `calc(100% + 1px)`
218
- },
219
- boxSizing: 'border-box',
220
- margin: 0,
221
- padding: 0,
222
- transition: `padding 0ms ${akEditorSwoopCubicBezier}`
223
- });
224
- const contentAreaHeightNoToolbar = css({
225
- height: '100%'
226
- });
227
-
228
- // When the markdown source view is shown (markdown mode toggled on and not in
229
- // the WYSIWYG "preview" view) we tint the whole editor container with the
230
- // sunken surface so the source editor reads as a distinct, inset surface.
231
- const markdownModeContainerBackgroundStyle = css({
232
- backgroundColor: "var(--ds-surface-sunken, #F8F8F8)"
233
- });
234
- const markdownModeContentAreaStyle = css({
235
- boxSizing: 'border-box',
236
- height: '100%',
237
- margin: 0,
238
- maxWidth: 'none',
239
- minWidth: 0,
240
- paddingBottom: 0,
241
- paddingTop: 0,
242
- width: '100%',
243
- // The markdown source view is rendered through PluginSlot. Stretch those
244
- // intermediate wrappers so its in-flow footer can sit at the bottom without
245
- // overlaying the CodeMirror scrollbar.
246
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
247
- '> .ak-editor-content-area': {
248
- boxSizing: 'border-box',
249
- display: 'flex',
250
- flexDirection: 'column',
251
- height: '100%',
252
- minHeight: 0,
253
- minWidth: 0,
254
- padding: 0,
255
- width: '100%'
256
- },
257
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors
258
- '> .ak-editor-content-area > [data-testid="plugins-components-wrapper"]': {
259
- display: 'flex',
260
- flex: '1 1 auto',
261
- minHeight: 0,
262
- minWidth: 0,
263
- width: '100%'
264
- }
265
- });
3
+ import { FullPageContentAreaCompiled } from './FullPageContentArea-compiled';
4
+ import { FullPageContentAreaEmotion } from './FullPageContentArea-emotion';
266
5
  export const CONTENT_AREA_TEST_ID = 'ak-editor-fp-content-area';
267
6
  // eslint-disable-next-line @atlaskit/volt-strict-mode/no-multiple-exports
268
7
  export const EDITOR_CONTAINER = 'ak-editor-container';
269
- const Content = /*#__PURE__*/React.forwardRef((props, ref) => {
270
- var _props$editorAPI, _props$editorAPI$base, _props$editorAPI$base2, _props$editorAPI$bloc, _props$editorAPI2, _props$editorAPI2$blo, _props$editorAPI2$blo2, _props$editorAPI2$blo3, _contentAreaRef$curre, _allowScrollGutter$gu, _allowScrollGutter$gu2;
271
- const theme = useTheme();
272
- const fullWidthMode = props.appearance === 'full-width';
273
- const maxWidthMode = props.appearance === 'max';
274
- const scrollContainerRef = useRef(null);
275
- const contentAreaRef = useRef(null);
276
- const containerRef = useRef(null);
277
- const allowScrollGutter = (_props$editorAPI = props.editorAPI) === null || _props$editorAPI === void 0 ? void 0 : (_props$editorAPI$base = _props$editorAPI.base) === null || _props$editorAPI$base === void 0 ? void 0 : (_props$editorAPI$base2 = _props$editorAPI$base.sharedState.currentState()) === null || _props$editorAPI$base2 === void 0 ? void 0 : _props$editorAPI$base2.allowScrollGutter;
278
- const contentAreaMaxWidth = getTotalPadding() + (!fullWidthMode ? maxWidthMode ? akEditorUltraWideLayoutWidth : expValEquals('platform_editor_core_non_ecc_static_css', 'isEnabled', true) || expValEquals('platform_editor_core_static_css', 'isEnabled', true) ? akEditorDefaultLayoutWidth : theme.layoutMaxWidth : akEditorFullWidthLayoutWidth);
279
-
280
- // Get useStandardNodeWidth from block menu plugin shared state
281
- // Only access editorAPI when the experiment is enabled to avoid performance impact
282
- const useStandardNodeWidth = editorExperiment('platform_editor_controls', 'variant1') && ((_props$editorAPI$bloc = (_props$editorAPI2 = props.editorAPI) === null || _props$editorAPI2 === void 0 ? void 0 : (_props$editorAPI2$blo = _props$editorAPI2.blockMenu) === null || _props$editorAPI2$blo === void 0 ? void 0 : (_props$editorAPI2$blo2 = _props$editorAPI2$blo.sharedState) === null || _props$editorAPI2$blo2 === void 0 ? void 0 : (_props$editorAPI2$blo3 = _props$editorAPI2$blo2.currentState()) === null || _props$editorAPI2$blo3 === void 0 ? void 0 : _props$editorAPI2$blo3.useStandardNodeWidth) !== null && _props$editorAPI$bloc !== void 0 ? _props$editorAPI$bloc : false);
283
- useImperativeHandle(ref, () => ({
284
- get scrollContainer() {
285
- return scrollContainerRef.current;
286
- },
287
- get contentArea() {
288
- return contentAreaRef.current;
289
- },
290
- get containerArea() {
291
- return containerRef.current;
292
- }
293
- }), []);
294
- const markdownPluginCurrentView = useSharedPluginStateWithSelector(props.editorAPI, ['markdownMode'], states => {
295
- var _states$markdownModeS;
296
- return (_states$markdownModeS = states.markdownModeState) === null || _states$markdownModeS === void 0 ? void 0 : _states$markdownModeS.view;
297
- });
298
- const markdownPluginCurrentIsMarkdownMode = useSharedPluginStateWithSelector(props.editorAPI, ['markdownMode'], states => {
299
- var _states$markdownModeS2;
300
- return (_states$markdownModeS2 = states.markdownModeState) === null || _states$markdownModeS2 === void 0 ? void 0 : _states$markdownModeS2.isMarkdownMode;
301
- });
302
- const isMarkdownModeExperimentEnabled = expValEqualsNoExposure('cc-markdown-mode', 'isEnabled', true);
303
- const shouldHideProseMirrorForMarkdownMode = isMarkdownModeExperimentEnabled && markdownPluginCurrentView !== 'preview' && markdownPluginCurrentIsMarkdownMode;
304
- const shouldHideScrollGutterForMarkdownMode = isMarkdownModeExperimentEnabled && markdownPluginCurrentIsMarkdownMode;
305
- const shouldUseMarkdownModeMvpLayout = shouldHideProseMirrorForMarkdownMode && fg('platform_editor_md_mvp_layout');
306
- return jsx("div", {
307
- css: [contentAreaNew, props.isEditorToolbarHidden && contentAreaHeightNoToolbar],
308
- "data-testid": CONTENT_AREA_TEST_ID,
309
- ref: containerRef
310
- }, jsx("div", {
311
- css: [
312
- // eslint-disable-next-line @atlaskit/design-system/consistent-css-prop-usage, @atlaskit/ui-styling-standard/no-imported-style-values
313
- contentAreaWrapper, shouldUseMarkdownModeMvpLayout && markdownModeContainerBackgroundStyle],
314
- "data-testid": EDITOR_CONTAINER,
315
- "data-editor-container": 'true'
316
- }, jsx(EditorContentContainer
317
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
318
- , {
319
- className: "fabric-editor-popup-scroll-parent",
320
- featureFlags: props.featureFlags,
321
- ref: scrollContainerRef,
322
- viewMode: props === null || props === void 0 ? void 0 : props.viewMode,
323
- isScrollable: true,
324
- appearance: props.appearance,
325
- contentMode: props.contentMode,
326
- useStandardNodeWidth: useStandardNodeWidth
327
- }, jsx(ClickAreaBlock, {
328
- editorView: props.editorView,
329
- editorDisabled: props.disabled
330
- }, jsx("div", {
331
- "data-markdown-mode-hide-prosemirror": shouldHideProseMirrorForMarkdownMode ? 'true' : undefined,
332
- "data-markdown-mode-hide-scroll-gutter": shouldHideScrollGutterForMarkdownMode ? 'true' : undefined,
333
- css: [editorContentAreaNew, editorContentAreaProsemirrorStyle,
334
- // EDITOR-6558: hide ProseMirror when the markdown-mode plugin
335
- // reports a non-WYSIWYG view.
336
- shouldHideProseMirrorForMarkdownMode && hideEditorContentAreaProsemirrorWithAttributeStyle, shouldHideScrollGutterForMarkdownMode && hideEditorContentAreaScrollGutterWithAttributeStyle, shouldUseMarkdownModeMvpLayout && markdownModeContentAreaStyle, tableFullPageEditorStylesNew, fullWidthNonChromelessBreakoutBlockTableStyle,
337
- // for breakout resizing, there's no need to restrict the width of codeblocks as they're always wrapped in a breakout mark
338
- expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) ? editorContentAreaContainerStyleExcludeCodeBlockNew : editorContentAreaContainerStyleNew, fg('platform_editor_nested_dnd_styles_changes') && editorContentAreaContainerNestedDndStyle, !fg('platform_editor_controls_no_toolbar_space') && editorExperiment('platform_editor_controls', 'variant1') && contentAreaReducedHeaderSpace, !fg('platform_editor_controls_no_toolbar_space') && props.isEditorToolbarHidden && editorExperiment('platform_editor_controls', 'variant1') && contentAreaReservedPrimaryToolbarSpace],
339
- style: {
340
- '--ak-editor-content-area-max-width': `${contentAreaMaxWidth}px`
341
- }
342
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
343
- ,
344
- className: "ak-editor-content-area-region",
345
- "data-editor-editable-content": true,
346
- role: "region",
347
- "aria-label": props.intl.formatMessage(messages.editableContentLabel),
348
- ref: contentAreaRef,
349
- "data-vc": "editor-content-area-region"
350
- }, jsx("div", {
351
- css: [editorContentGutterStyles,
352
- // eslint-disable-next-line @atlaskit/platform/no-preconditioning
353
- fg('platform_editor_controls_increase_full_page_gutter') && editorExperiment('platform_editor_controls', 'variant1') && editorContentGutterStyleFG, editorExperiment('platform_editor_preview_panel_responsiveness', true, {
354
- exposure: true
355
- }) && editorContentReducedGutterStyles]
356
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
357
- ,
358
- className: classnames('ak-editor-content-area', 'appearance-full-page', {
359
- 'fabric-editor--full-width-mode': fullWidthMode,
360
- 'fabric-editor--max-width-mode': Boolean(maxWidthMode)
361
- }),
362
- ref: contentAreaRef
363
- }, !!props.customContentComponents && 'before' in props.customContentComponents ? contentComponentClickWrapper(props.customContentComponents.before) : contentComponentClickWrapper(props.customContentComponents), jsx(PluginSlot, {
364
- editorView: props.editorView,
365
- editorActions: props.editorActions,
366
- eventDispatcher: props.eventDispatcher,
367
- providerFactory: props.providerFactory,
368
- appearance: props.appearance,
369
- items: props.contentComponents,
370
- pluginHooks: props.pluginHooks,
371
- contentArea: (_contentAreaRef$curre = contentAreaRef.current) !== null && _contentAreaRef$curre !== void 0 ? _contentAreaRef$curre : undefined,
372
- popupsMountPoint: props.popupsMountPoint,
373
- popupsBoundariesElement: props.popupsBoundariesElement,
374
- popupsScrollableElement: props.popupsScrollableElement,
375
- disabled: !!props.disabled,
376
- containerElement: scrollContainerRef.current,
377
- dispatchAnalyticsEvent: props.dispatchAnalyticsEvent,
378
- wrapperElement: props.wrapperElement
379
- }), props.editorDOMElement, !!props.customContentComponents && 'after' in props.customContentComponents ? contentComponentClickWrapper(props.customContentComponents.after) : null, allowScrollGutter && (editorExperiment('platform_editor_blocks', true) ? jsx("div", {
380
- id: "editor-scroll-gutter",
381
- css: shouldHideScrollGutterForMarkdownMode && hideEditorScrollGutterStyle,
382
- style: {
383
- paddingBottom: `${(_allowScrollGutter$gu = allowScrollGutter.gutterSize) !== null && _allowScrollGutter$gu !== void 0 ? _allowScrollGutter$gu : '120'}px`
384
- },
385
- "data-vc": "scroll-gutter",
386
- "data-editor-scroll-gutter": "true"
387
- }) : jsx("div", {
388
- id: "editor-scroll-gutter",
389
- css: shouldHideScrollGutterForMarkdownMode && hideEditorScrollGutterStyle,
390
- style: {
391
- paddingBottom: `${(_allowScrollGutter$gu2 = allowScrollGutter.gutterSize) !== null && _allowScrollGutter$gu2 !== void 0 ? _allowScrollGutter$gu2 : '120'}px`
392
- },
393
- "data-vc": "scroll-gutter"
394
- }))))))), jsx("div", {
395
- css: sidebarArea
396
- }, props.contextPanel || jsx(ContextPanel, {
397
- editorAPI: props.editorAPI,
398
- visible: false
399
- })));
400
- });
401
8
 
402
- // eslint-disable-next-line @atlaskit/volt-strict-mode/no-multiple-exports
403
- export const FullPageContentArea = injectIntl(Content, {
404
- forwardRef: true
405
- });
9
+ /**
10
+ * Compiled migration WIP under platform_editor_core_non_ecc_static_css
11
+ * Please ensure both styles are updated
12
+ */
13
+ export const FullPageContentArea = componentWithCondition(() => expValEquals('platform_editor_core_non_ecc_static_css', 'isEnabled', true), FullPageContentAreaCompiled, FullPageContentAreaEmotion);
@@ -199,7 +199,8 @@ const editorContentStyles = {
199
199
  aiPanelDarkStyles: "_1q1sa6bd _bi6aa6bd",
200
200
  alignMultipleWrappedImageInLayoutStyles: "_ali2idpf _14i5idpf _pru0idpf",
201
201
  annotationStyles: "_1x2nt94y _1xqtt94y _1s25t94y _17qpt94y _1ubhidpf _172zidpf _9neqidpf _jydlidpf _1k26yh40 _1613yh40 _wmhayh40 _1qihyh40 _w0epidpf _ghwiidpf _6f0lidpf _1f3widpf _x81614y2 _9onx14y2 _1hbb14y2 _1p9g14y2 _1pjt14y2 _1t8514y2 _1fqx14y2 _1jyp14y2 _1m2zidpf _jd6pidpf _1nl9idpf _1vgtidpf _1edaidpf _du1kidpf _1g35idpf _17clidpf _92g41l7b _1wys1l7b _1xgk1l7b _7kmy1l7b _1xm91l7b _1owy1l7b _iqym1l7b _1dyh1l7b _1c0fidpf _o1p8idpf _3nq8idpf _q353idpf _km2cidpf _1xktidpf _1t0tidpf _1cr2idpf _iwzr1vrj _u5bs1vrj _1ibg1vrj _xkuf1vrj _66yetlke _19vztlke _dnsrtlke _drnbtlke _10h6v77o _1v9ev77o _ah88v77o _8grqv77o _x53a1o1l _1d6qfeiv _ojmct7xp _kn991o1l _o5elfeiv _o7dvt7xp _19vz1wug _1n0xibhp _1xmbfeiv _l0rkaetg _1c20feiv _168dt7xp",
202
- backgroundColorStyles: "_1l4zlb4i _11q31i5q _19n6t94y _b3ovyh40 _1150qvcn _642in7od _1vp0n7od",
202
+ backgroundColorStyles: "_1l4zlb4i _11q31i5q _19n6t94y _b3ovyh40 _1150qvcn _1vp0n7od",
203
+ highlightLinksUnsetStyles: "_642in7od",
203
204
  baseStyles: "_t7ab1vi7 _anrdukw8 _n6a11fwx _uw641q08 _fo6014dc _1gvnmqba _j03f1qop _qmjbxjz2 _zy25uj17 _pg931osq _121i1r31 _dcmgglyw _nv9v1o36 _19rk1uph _u8en3mia _3iqe18il _988v1osq _pi27grho _10zo1osq _1j8i1xb4",
204
205
  baseStylesMaxContainerWidthFixes: "_19rk1l99",
205
206
  blockMarksStyles: "_1244idpf _1qkxidpf _1e6iidpf _dvqjidpf _etngidpf _1jl2idpf _1je9idpf _1db9idpf _15i0idpf _16d4idpf _17liidpf _pxvridpf _1v4iidpf _s8m8idpf _16fuidpf _1543idpf _4offidpf _ttnbidpf _ujemidpf _1171idpf _mzasidpf _r8oxidpf _1pycidpf _6shmidpf _1bd0idpf _54e7idpf _1tenidpf _jzq1idpf _czpfidpf _1oraidpf _1kg4idpf _ksblidpf _1af7idpf _72x4idpf _zlwmidpf _7m6lidpf _1x2sidpf _3q5uidpf _11ukidpf _n65sidpf _1nn0idpf _1hwxidpf _j2goidpf _rfl4idpf _qhe2idpf _h4bbidpf _rjmvidpf _183yidpf _fk2nidpf _3429idpf _j543idpf _1op6idpf _mcklidpf _1uf8idpf _110lidpf _17agidpf _d9tridpf _f5slidpf _b9adidpf _1859idpf _1hrzidpf _1du2idpf _gdx6idpf _1av3idpf _1uj7idpf _s6y9idpf _ocz2idpf _129midpf _kj6kidpf _1uv9idpf _1tieidpf _ri4ridpf _tw0uidpf _15epidpf _12uhidpf _12i1idpf _vm1cidpf _jj6didpf _3d3tidpf _1xdsidpf",
@@ -442,7 +443,7 @@ export const EditorContentContainerCompiled = /*#__PURE__*/React.forwardRef((pro
442
443
  exposure: true
443
444
  }) && editorContentStyles.listSelectedNodeStyles, editorExperiment('platform_editor_block_menu', true, {
444
445
  exposure: true
445
- }) && editorContentStyles.textSelectedNodeStyles, fg('platform_editor_typography_ugc') ? editorContentStyles.blocktypeStyles_fg_platform_editor_typography_ugc : editorContentStyles.blocktypeStyles_without_fg_platform_editor_typography_ugc, fg('platform_editor_nested_dnd_styles_changes') && editorContentStyles.blocktypeStyles_fg_platform_editor_nested_dnd_styles_changes, editorContentStyles.codeMarkStyles, expValEquals('platform_editor_a11y_scrollable_region', 'isEnabled', true) && editorContentStyles.codeMarkStylesA11yFix, editorContentStyles.textColorStyles, editorContentStyles.backgroundColorStyles, editorContentStyles.textHighlightPaddingStyles, editorContentStyles.listsStyles, expValEqualsNoExposure('platform_editor_flexible_list_schema', 'isEnabled', true) && editorContentStyles.listItemHiddenMarkerStyles, editorContentStyles.diffListStyles, contentMode === 'compact' && (expValEquals('confluence_compact_text_format', 'isEnabled', true) ||
446
+ }) && editorContentStyles.textSelectedNodeStyles, fg('platform_editor_typography_ugc') ? editorContentStyles.blocktypeStyles_fg_platform_editor_typography_ugc : editorContentStyles.blocktypeStyles_without_fg_platform_editor_typography_ugc, fg('platform_editor_nested_dnd_styles_changes') && editorContentStyles.blocktypeStyles_fg_platform_editor_nested_dnd_styles_changes, editorContentStyles.codeMarkStyles, expValEquals('platform_editor_a11y_scrollable_region', 'isEnabled', true) && editorContentStyles.codeMarkStylesA11yFix, editorContentStyles.textColorStyles, editorContentStyles.backgroundColorStyles, !expValEquals('platform_editor_lovability_text_bg_color', 'isEnabled', true) && editorContentStyles.highlightLinksUnsetStyles, editorContentStyles.textHighlightPaddingStyles, editorContentStyles.listsStyles, expValEqualsNoExposure('platform_editor_flexible_list_schema', 'isEnabled', true) && editorContentStyles.listItemHiddenMarkerStyles, editorContentStyles.diffListStyles, contentMode === 'compact' && (expValEquals('confluence_compact_text_format', 'isEnabled', true) ||
446
447
  // eslint-disable-next-line @atlaskit/platform/no-preconditioning
447
448
  expValEquals('cc_editor_ai_content_mode', 'variant', 'test') && fg('platform_editor_content_mode_button_mvp')) && isDense && editorContentStyles.listsDenseStyles, isFullPage && editorContentStyles.listsStylesMarginLayoutShiftFix, editorContentStyles.ruleStyles, editorContentStyles.smartCardDiffStyles, expValEquals('platform_editor_enghealth_a11y_jan_fixes', 'isEnabled', true) ? editorContentStyles.showDiffDeletedNodeStylesNew : editorContentStyles.showDiffDeletedNodeStyles, editorContentStyles.mediaStyles, contentMode === 'compact' && (expValEquals('confluence_compact_text_format', 'isEnabled', true) ||
448
449
  // eslint-disable-next-line @atlaskit/platform/no-preconditioning
@@ -457,7 +458,7 @@ export const EditorContentContainerCompiled = /*#__PURE__*/React.forwardRef((pro
457
458
  // eslint-disable-next-line @atlaskit/platform/no-preconditioning
458
459
  expValEquals('cc_editor_ai_content_mode', 'variant', 'test') && fg('platform_editor_content_mode_button_mvp')) ? editorContentStyles.paragraphStylesWithScaledMargin : editorContentStyles.paragraphStylesUGCRefreshed : contentMode === 'compact' && (expValEquals('confluence_compact_text_format', 'isEnabled', true) ||
459
460
  // eslint-disable-next-line @atlaskit/platform/no-preconditioning
460
- expValEquals('cc_editor_ai_content_mode', 'variant', 'test') && fg('platform_editor_content_mode_button_mvp')) ? editorContentStyles.paragraphStylesOldWithScaledMargin : editorContentStyles.paragraphStylesOld, editorContentStyles.linkStyles, browser.safari && editorContentStyles.listsStylesSafariFix, editorExperiment('platform_synced_block', true) && editorContentStyles.pragmaticResizerStylesSyncedBlock, expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && editorContentStyles.pragmaticResizerStyles, expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && editorExperiment('platform_synced_block', true) && editorContentStyles.pragmaticResizerStylesCodeBlockSyncedBlockPatch, expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && !editorExperiment('platform_synced_block', true) && editorContentStyles.pragmaticResizerStylesCodeBlockLegacy, editorExperiment('advanced_layouts', true) && expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && editorContentStyles.pragmaticStylesLayoutFirstNodeResizeHandleFix, expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && editorContentStyles.pragmaticResizerStylesForTooltip, editorExperiment('platform_editor_preview_panel_responsiveness', true) && (editorExperiment('advanced_layouts', true) || expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true)) && editorContentStyles.pragmaticResizerStylesWithReducedEditorGutter, editorContentStyles.aiPanelBaseStyles, isFirefox && editorContentStyles.aiPanelBaseFirefoxStyles, colorMode === 'dark' && editorContentStyles.aiPanelDarkStyles, colorMode === 'dark' && isFirefox && editorContentStyles.aiPanelDarkFirefoxStyles, viewMode === 'view' && editorContentStyles.layoutStylesForView, viewMode === 'view' && editorExperiment('advanced_layouts', true) && editorContentStyles.layoutSelectedStylesForViewAdvanced, viewMode === 'view' && editorExperiment('advanced_layouts', false) && editorContentStyles.layoutSelectedStylesForViewNotAdvanced, viewMode === 'view' && editorExperiment('advanced_layouts', true) && editorContentStyles.layoutResponsiveStylesForView, isComment && editorContentStyles.commentEditorStyles, isComment && editorContentStyles.tableCommentEditorStyles, isFullPage && editorContentStyles.fullPageEditorStyles, isFullPage && editorContentStyles.scrollbarStyles, fg('platform_editor_nested_dnd_styles_changes') ? editorContentStyles.firstCodeBlockWithNoMargin : editorContentStyles.firstCodeBlockWithNoMarginOld, editorContentStyles.firstBlockNodeStyles, editorContentStyles.mentionNodeStyles, expValEqualsNoExposure('platform_editor_find_and_replace_improvements', 'isEnabled', true) ? editorContentStyles.mentionsSelectionStylesWithSearchMatch : editorContentStyles.mentionsSelectionStyles, expValEquals('platform_editor_lovability_emoji_scaling', 'isEnabled', true) ? editorContentStyles.scaledEmojiStyles : editorContentStyles.emojiStyles, contentMode === 'compact' && isDense && (expValEquals('confluence_compact_text_format', 'isEnabled', true) || expValEquals('cc_editor_ai_content_mode', 'variant', 'test') && fg('platform_editor_content_mode_button_mvp')) && expValEquals('platform_editor_lovability_emoji_scaling', 'isEnabled', true) && editorContentStyles.scaledEmojiDenseStyles, contentMode === 'compact' && isDense && (expValEquals('confluence_compact_text_format', 'isEnabled', true) || expValEquals('cc_editor_ai_content_mode', 'variant', 'test') && fg('platform_editor_content_mode_button_mvp')) && !expValEquals('platform_editor_lovability_emoji_scaling', 'isEnabled', true) && editorContentStyles.emojiDenseStyles, editorContentStyles.panelViewStyles, editorContentStyles.mediaGroupStyles, editorContentStyles.mediaAlignmentStyles, expValEquals('platform_editor_small_font_size', 'isEnabled', true) ? editorContentStyles.tableLayoutFixesWithFontSize : editorContentStyles.tableLayoutFixes, editorContentStyles.tableContainerStyles, editorContentStyles.tableSharedStyle, (browser.gecko || browser.ie || browser.mac && browser.chrome) && editorContentStyles.tableSharedStyleBackgroundClipFix, expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? editorContentStyles.tableSharedStyle_with_platform_editor_table_q4_loveability : editorContentStyles.tableSharedStyle_without_platform_editor_table_q4_loveability, expValEquals('platform_editor_table_menu_updates', 'isEnabled', true) && editorContentStyles.tableSharedStyle_with_platform_editor_table_menu_updates, fg('platform_editor_bordered_panel_nested_in_table') && editorContentStyles.tableSharedStyle_with_platform_editor_bordered_panel_nested_in_table, editorContentStyles.tableEmptyRowStyles, expValEquals('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true) && editorContentStyles.tableContentModeStyles, editorContentStyles.hyperLinkFloatingToolbarStyles, editorContentStyles.selectionToolbarAnimationStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.blockquoteDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.textDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.listDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.dangerDateStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.emojiDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.mentionDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.decisionDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.statusDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.dangerRuleStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.mediaDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.nestedPanelDangerStyles, className]),
461
+ expValEquals('cc_editor_ai_content_mode', 'variant', 'test') && fg('platform_editor_content_mode_button_mvp')) ? editorContentStyles.paragraphStylesOldWithScaledMargin : editorContentStyles.paragraphStylesOld, editorContentStyles.linkStyles, browser.safari && editorContentStyles.listsStylesSafariFix, editorExperiment('platform_synced_block', true) && editorContentStyles.pragmaticResizerStylesSyncedBlock, expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && editorContentStyles.pragmaticResizerStyles, expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && editorExperiment('platform_synced_block', true) && editorContentStyles.pragmaticResizerStylesCodeBlockSyncedBlockPatch, expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && !editorExperiment('platform_synced_block', true) && editorContentStyles.pragmaticResizerStylesCodeBlockLegacy, editorExperiment('advanced_layouts', true) && expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && editorContentStyles.pragmaticStylesLayoutFirstNodeResizeHandleFix, expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true) && editorContentStyles.pragmaticResizerStylesForTooltip, editorExperiment('platform_editor_preview_panel_responsiveness', true) && (editorExperiment('advanced_layouts', true) || expValEqualsNoExposure('platform_editor_breakout_resizing', 'isEnabled', true)) && editorContentStyles.pragmaticResizerStylesWithReducedEditorGutter, editorContentStyles.aiPanelBaseStyles, isFirefox && editorContentStyles.aiPanelBaseFirefoxStyles, colorMode === 'dark' && editorContentStyles.aiPanelDarkStyles, colorMode === 'dark' && isFirefox && editorContentStyles.aiPanelDarkFirefoxStyles, viewMode === 'view' && editorContentStyles.layoutStylesForView, viewMode === 'view' && editorExperiment('advanced_layouts', true) && editorContentStyles.layoutSelectedStylesForViewAdvanced, viewMode === 'view' && editorExperiment('advanced_layouts', false) && editorContentStyles.layoutSelectedStylesForViewNotAdvanced, viewMode === 'view' && editorExperiment('advanced_layouts', true) && editorContentStyles.layoutResponsiveStylesForView, isComment && editorContentStyles.commentEditorStyles, isComment && editorContentStyles.tableCommentEditorStyles, isFullPage && editorContentStyles.fullPageEditorStyles, isFullPage && editorContentStyles.scrollbarStyles, fg('platform_editor_nested_dnd_styles_changes') ? editorContentStyles.firstCodeBlockWithNoMargin : editorContentStyles.firstCodeBlockWithNoMarginOld, editorContentStyles.firstBlockNodeStyles, editorContentStyles.mentionNodeStyles, expValEqualsNoExposure('platform_editor_find_and_replace_improvements', 'isEnabled', true) ? editorContentStyles.mentionsSelectionStylesWithSearchMatch : editorContentStyles.mentionsSelectionStyles, expValEquals('platform_editor_lovability_emoji_scaling', 'isEnabled', true) ? editorContentStyles.scaledEmojiStyles : editorContentStyles.emojiStyles, contentMode === 'compact' && isDense && (expValEquals('confluence_compact_text_format', 'isEnabled', true) || expValEquals('cc_editor_ai_content_mode', 'variant', 'test') && fg('platform_editor_content_mode_button_mvp')) && expValEquals('platform_editor_lovability_emoji_scaling', 'isEnabled', true) && editorContentStyles.scaledEmojiDenseStyles, contentMode === 'compact' && isDense && (expValEquals('confluence_compact_text_format', 'isEnabled', true) || expValEquals('cc_editor_ai_content_mode', 'variant', 'test') && fg('platform_editor_content_mode_button_mvp')) && !expValEquals('platform_editor_lovability_emoji_scaling', 'isEnabled', true) && editorContentStyles.emojiDenseStyles, editorContentStyles.panelViewStyles, editorContentStyles.mediaGroupStyles, editorContentStyles.mediaAlignmentStyles, expValEquals('platform_editor_small_font_size', 'isEnabled', true) ? editorContentStyles.tableLayoutFixesWithFontSize : editorContentStyles.tableLayoutFixes, editorContentStyles.tableContainerStyles, editorContentStyles.tableSharedStyle, (browser.gecko || browser.ie || browser.mac && browser.chrome) && editorContentStyles.tableSharedStyleBackgroundClipFix, expValEquals('platform_editor_table_q4_loveability', 'isEnabled', true) ? editorContentStyles.tableSharedStyle_with_platform_editor_table_q4_loveability : editorContentStyles.tableSharedStyle_without_platform_editor_table_q4_loveability, expValEquals('platform_editor_table_menu_updates', 'isEnabled', true) && editorContentStyles.tableSharedStyle_with_platform_editor_table_menu_updates, fg('platform_editor_bordered_panel_nested_in_table') && editorContentStyles.tableSharedStyle_with_platform_editor_bordered_panel_nested_in_table, editorContentStyles.tableEmptyRowStyles, expValEquals('platform_editor_table_fit_to_content_auto_convert', 'isEnabled', true) && editorContentStyles.tableContentModeStyles, editorContentStyles.hyperLinkFloatingToolbarStyles, editorContentStyles.selectionToolbarAnimationStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.blockquoteDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.textDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.listDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.dangerDateStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.emojiDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.mentionDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.decisionDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.statusDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.dangerRuleStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.mediaDangerStyles, editorExperiment('platform_editor_block_menu', true) && editorContentStyles.nestedPanelDangerStyles, className || undefined]),
461
462
  ref: ref,
462
463
  "data-editor-scroll-container": isScrollable ? 'true' : undefined,
463
464
  "data-testid": "editor-content-container"
@@ -18,7 +18,7 @@ import { useThemeObserver } from '@atlaskit/tokens';
18
18
  import { getBaseFontSize } from '../../composable-editor/utils/getBaseFontSize';
19
19
  import { aiPanelBaseFirefoxStyles, aiPanelBaseStyles, aiPanelDarkFirefoxStyles, aiPanelDarkStyles } from './styles/aiPanel';
20
20
  import { annotationStyles } from './styles/annotationStyles';
21
- import { backgroundColorStyles, textHighlightPaddingStyles } from './styles/backgroundColorStyles';
21
+ import { backgroundColorStyles, highlightLinksUnsetStyles, textHighlightPaddingStyles } from './styles/backgroundColorStyles';
22
22
  import { baseStyles, baseStylesMaxContainerWidthFixes, editorLargeGutterPuddingBaseStyles, editorLargeGutterPuddingBaseStylesEditorControls, editorLargeGutterPuddingReducedBaseStyles, maxModeReizeFixStyles } from './styles/baseStyles';
23
23
  import { blockMarksStyles } from './styles/blockMarksStyles';
24
24
  import { blockquoteDangerStyles, blockquoteSelectedNodeStyles, blocktypeStyles, blocktypeStyles_fg_platform_editor_nested_dnd_styles_changes, blocktypeStyles_fg_platform_editor_typography_ugc, blocktypeStyles_without_fg_platform_editor_typography_ugc, listDangerStyles, listSelectedNodeStyles, textDangerStyles, textSelectedNodeStyles } from './styles/blockTypeStyles';
@@ -147,7 +147,7 @@ export const EditorContentContainerEmotion = /*#__PURE__*/React.forwardRef((prop
147
147
  const browser = getBrowserInfo();
148
148
  return jsx("div", {
149
149
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop -- Ignored via go/DSP-18766
150
- className: className,
150
+ className: className || undefined,
151
151
  ref: ref,
152
152
  css: [
153
153
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
@@ -236,7 +236,9 @@ export const EditorContentContainerEmotion = /*#__PURE__*/React.forwardRef((prop
236
236
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
237
237
  textColorStyles,
238
238
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
239
- backgroundColorStyles,
239
+ backgroundColorStyles, !expValEquals('platform_editor_lovability_text_bg_color', 'isEnabled', true) &&
240
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
241
+ highlightLinksUnsetStyles,
240
242
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
241
243
  textHighlightPaddingStyles,
242
244
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values
@@ -39,14 +39,25 @@ export const backgroundColorStyles = css({
39
39
  paddingBottom: 2,
40
40
  boxDecorationBreak: 'clone'
41
41
  },
42
- // Don't show text highlight styling when there is a hyperlink
43
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
44
- 'a .fabric-background-color-mark': {
45
- backgroundColor: 'unset'
46
- },
47
42
  // Don't show text highlight styling when there is an inline comment
48
43
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
49
44
  '.fabric-background-color-mark .ak-editor-annotation': {
50
45
  backgroundColor: 'unset'
51
46
  }
47
+ });
48
+
49
+ /**
50
+ * @deprecated This style has been migrated to Compiled CSS, under experiment platform_editor_core_static_css
51
+ * If you need to make changes here, also update the corresponding style in
52
+ * packages/editor/editor-core/src/ui/EditorContentContainer/EditorContentContainer-compiled.tsx
53
+ * See EDITOR-7600 for more details: https://hello.jira.atlassian.cloud/jira/browse/EDITOR-7600
54
+ */
55
+ // Don't show text highlight styling when there is a hyperlink.
56
+ // Conditionally applied when the highlight-on-links experiment is off.
57
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/volt-strict-mode/no-multiple-exports
58
+ export const highlightLinksUnsetStyles = css({
59
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-nested-selectors -- Ignored via go/DSP-18766
60
+ 'a .fabric-background-color-mark': {
61
+ backgroundColor: 'unset'
62
+ }
52
63
  });
@@ -1,3 +1,3 @@
1
1
  export const name = "@atlaskit/editor-core";
2
2
  // eslint-disable-next-line @atlaskit/volt-strict-mode/no-multiple-exports
3
- export const version = "221.3.0";
3
+ export const version = "221.3.1";
@@ -0,0 +1,30 @@
1
+
2
+ ._19itno8c{border:var(--ds-border-width,1px) solid var(--ds-border-input,#8c8f97)}
3
+ ._2rko1qi0{border-radius:var(--ds-radius-medium,6px)}
4
+ ._2rkofajl{border-radius:var(--ds-radius-small,3px)}
5
+ ._2rkopb1k{border-radius:var(--ds-radius-xlarge,9pt)}._13dfutpp .less-margin>.ProseMirror{margin-top:var(--ds-space-150,9pt)}
6
+ ._16jlkb7n{flex-grow:1}
7
+ ._18m91wug{overflow-y:auto}
8
+ ._19bvv77o{padding-left:var(--ds-space-025,2px)}
9
+ ._1bahesu3{justify-content:flex-end}
10
+ ._1e0c1txw{display:flex}
11
+ ._1ul9clpc{min-width:17pc}
12
+ ._2lx21bp4{flex-direction:column}
13
+ ._4cvr1h6o{align-items:center}
14
+ ._4t3i1wug{height:auto}
15
+ ._bfhk1j9a{background-color:var(--ds-background-input,#fff)}
16
+ ._c71lmz22{max-height:var(--comment-editor-max-height)}
17
+ ._ca0qutpp{padding-top:var(--ds-space-150,9pt)}
18
+ ._ghozu2gc .less-margin>.ProseMirror{margin-bottom:var(--ds-space-100,8px)}
19
+ ._gzr8u2gc .less-margin>.ProseMirror{margin-right:var(--ds-space-100,8px)}
20
+ ._n3tdutpp{padding-bottom:var(--ds-space-150,9pt)}
21
+ ._oafwu2gc .less-margin>.ProseMirror{margin-left:var(--ds-space-100,8px)}
22
+ ._p12f1kw7{max-width:inherit}
23
+ ._p7r11txw >div{display:flex}
24
+ ._slp31hna{word-wrap:break-word}
25
+ ._t1edidpf >div{flex-shrink:0}
26
+ ._u5f3idpf{padding-right:0}
27
+ ._u5f3v47k{padding-right:var(--ds-space-250,20px)}
28
+ ._u5f3v77o{padding-right:var(--ds-space-025,2px)}
29
+ ._vchhusvi{box-sizing:border-box}
30
+ @media (max-width:490px){._xugcidpf{padding-right:0}}