@atlaskit/editor-core 193.18.0 → 193.18.1

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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 193.18.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#98803](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/98803)
8
+ [`b9d6c4c4f418`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/b9d6c4c4f418) -
9
+ Added new FULL_PAGE_EDITOR_TOOLBAR_HEIGHT constant to editor-shared-styles.
10
+ - Updated dependencies
11
+
3
12
  ## 193.18.0
4
13
 
5
14
  ### Patch Changes
@@ -8,25 +8,26 @@ exports.nonCustomToolbarWrapperStyle = exports.mainToolbarStyle = exports.mainTo
8
8
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
9
9
  var _react = require("@emotion/react");
10
10
  var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
11
+ var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
11
12
  var MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT = exports.MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT = 868;
12
- var toolbarLineHeight = 56;
13
13
 
14
14
  // box-shadow is overriden by the mainToolbar
15
15
  var mainToolbarWithKeyline = (0, _react.css)({
16
- boxShadow: "0 ".concat(_editorSharedStyles.akEditorToolbarKeylineHeight, "px 0 0 ", "var(--ds-background-accent-gray-subtlest, #F1F2F4)")
16
+ boxShadow: (0, _platformFeatureFlags.getBooleanFF)('platform.confluence.frontend.narrow-full-page-editor-toolbar') ? "var(--ds-shadow-overflow, 0px 0px 8px #091E4228, 0px 0px 1px #091E421e)" : "0 ".concat(_editorSharedStyles.akEditorToolbarKeylineHeight, "px 0 0 ", "var(--ds-background-accent-gray-subtlest, #F1F2F4)")
17
17
  });
18
18
  var mainToolbarTwoLineStyle = (0, _react.css)((0, _defineProperty2.default)({}, "@media (max-width: ".concat(MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT, "px)"), {
19
19
  flexWrap: 'wrap',
20
- height: "calc(".concat(toolbarLineHeight, "px * 2)")
20
+ height: "calc(".concat((0, _editorSharedStyles.FULL_PAGE_EDITOR_TOOLBAR_HEIGHT)(), " * 2)")
21
21
  }));
22
22
  var mainToolbar = (0, _react.css)((0, _defineProperty2.default)({
23
23
  position: 'relative',
24
24
  alignItems: 'center',
25
25
  boxShadow: 'none',
26
+ borderBottom: (0, _platformFeatureFlags.getBooleanFF)('platform.confluence.frontend.narrow-full-page-editor-toolbar') ? "1px solid ".concat("var(--ds-border, #091E4224)") : undefined,
26
27
  transition: "box-shadow 200ms ".concat(_editorSharedStyles.akEditorSwoopCubicBezier),
27
28
  zIndex: _editorSharedStyles.akEditorFloatingDialogZIndex,
28
29
  display: 'flex',
29
- height: "".concat(toolbarLineHeight, "px"),
30
+ height: (0, _editorSharedStyles.FULL_PAGE_EDITOR_TOOLBAR_HEIGHT)(),
30
31
  flexShrink: 0,
31
32
  backgroundColor: "var(--ds-surface, white)",
32
33
  '& object': {
@@ -34,7 +35,7 @@ var mainToolbar = (0, _react.css)((0, _defineProperty2.default)({
34
35
  }
35
36
  }, "@media (max-width: ".concat(_editorSharedStyles.akEditorMobileMaxWidth, "px)"), {
36
37
  display: 'grid',
37
- height: "calc(".concat(toolbarLineHeight, "px * 2)")
38
+ height: "calc(".concat((0, _editorSharedStyles.FULL_PAGE_EDITOR_TOOLBAR_HEIGHT)(), " * 2)")
38
39
  }));
39
40
  var mainToolbarStyle = exports.mainToolbarStyle = function mainToolbarStyle(showKeyline, twoLineEditorToolbar) {
40
41
  return [mainToolbar, showKeyline && mainToolbarWithKeyline, twoLineEditorToolbar && mainToolbarTwoLineStyle];
@@ -56,7 +57,7 @@ var mainToolbarFirstChild = (0, _react.css)((0, _defineProperty2.default)({
56
57
  }));
57
58
  var mainToolbarFirstChildTowLine = (0, _react.css)((0, _defineProperty2.default)({}, "@media (max-width: ".concat(MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT, "px)"), {
58
59
  flex: '1 1 100%',
59
- height: "".concat(toolbarLineHeight, "px"),
60
+ height: (0, _editorSharedStyles.FULL_PAGE_EDITOR_TOOLBAR_HEIGHT)(),
60
61
  justifyContent: 'flex-end',
61
62
  minWidth: 'fit-content'
62
63
  }));
@@ -71,7 +72,7 @@ var mainToolbarSecondChildTwoLine = (0, _react.css)((0, _defineProperty2.default
71
72
  flexGrow: 1,
72
73
  flex: '1 1 100%',
73
74
  margin: 'auto',
74
- height: "".concat(toolbarLineHeight, "px"),
75
+ height: (0, _editorSharedStyles.FULL_PAGE_EDITOR_TOOLBAR_HEIGHT)(),
75
76
  minWidth: 0
76
77
  }));
77
78
  var mainToolbarSecondChildStyle = exports.mainToolbarSecondChildStyle = function mainToolbarSecondChildStyle(twoLineEditorToolbar) {
@@ -50,7 +50,7 @@ var positionedOverEditorStyle = exports.positionedOverEditorStyle = (0, _react.c
50
50
  var contentArea = exports.contentArea = (0, _react.css)({
51
51
  display: 'flex',
52
52
  flexDirection: 'row',
53
- height: "calc(100% - ".concat(_editorSharedStyles.ATLASSIAN_NAVIGATION_HEIGHT, ")"),
53
+ height: "calc(100% - ".concat((0, _editorSharedStyles.FULL_PAGE_EDITOR_TOOLBAR_HEIGHT)(), ")"),
54
54
  boxSizing: 'border-box',
55
55
  margin: 0,
56
56
  padding: 0,
@@ -42,7 +42,7 @@ var WIDE_MODE = 'wide';
42
42
  var absolutePanelStyles = (0, _react2.css)({
43
43
  position: 'absolute',
44
44
  right: 0,
45
- height: "calc(100% - ".concat(_editorSharedStyles.ATLASSIAN_NAVIGATION_HEIGHT, ")")
45
+ height: "calc(100% - ".concat((0, _editorSharedStyles.FULL_PAGE_EDITOR_TOOLBAR_HEIGHT)(), ")")
46
46
  });
47
47
  var checkTableExistsInDoc = function checkTableExistsInDoc(editorView) {
48
48
  var tableNodeSchema = editorView.state.schema.nodes.table;
@@ -5,4 +5,4 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = exports.name = void 0;
7
7
  var name = exports.name = "@atlaskit/editor-core";
8
- var version = exports.version = "193.18.0";
8
+ var version = exports.version = "193.18.1";
@@ -1,26 +1,27 @@
1
1
  import { css } from '@emotion/react';
2
- import { akEditorFloatingDialogZIndex, akEditorMobileMaxWidth, akEditorSwoopCubicBezier, akEditorToolbarKeylineHeight } from '@atlaskit/editor-shared-styles';
2
+ import { akEditorFloatingDialogZIndex, akEditorMobileMaxWidth, akEditorSwoopCubicBezier, akEditorToolbarKeylineHeight, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT } from '@atlaskit/editor-shared-styles';
3
+ import { getBooleanFF } from '@atlaskit/platform-feature-flags';
3
4
  export const MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT = 868;
4
- const toolbarLineHeight = 56;
5
5
 
6
6
  // box-shadow is overriden by the mainToolbar
7
7
  const mainToolbarWithKeyline = css({
8
- boxShadow: `0 ${akEditorToolbarKeylineHeight}px 0 0 ${"var(--ds-background-accent-gray-subtlest, #F1F2F4)"}`
8
+ boxShadow: getBooleanFF('platform.confluence.frontend.narrow-full-page-editor-toolbar') ? `${"var(--ds-shadow-overflow, 0px 0px 8px #091E4228, 0px 0px 1px #091E421e)"}` : `0 ${akEditorToolbarKeylineHeight}px 0 0 ${"var(--ds-background-accent-gray-subtlest, #F1F2F4)"}`
9
9
  });
10
10
  const mainToolbarTwoLineStyle = css({
11
11
  [`@media (max-width: ${MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT}px)`]: {
12
12
  flexWrap: 'wrap',
13
- height: `calc(${toolbarLineHeight}px * 2)`
13
+ height: `calc(${FULL_PAGE_EDITOR_TOOLBAR_HEIGHT()} * 2)`
14
14
  }
15
15
  });
16
16
  const mainToolbar = css({
17
17
  position: 'relative',
18
18
  alignItems: 'center',
19
19
  boxShadow: 'none',
20
+ borderBottom: getBooleanFF('platform.confluence.frontend.narrow-full-page-editor-toolbar') ? `1px solid ${"var(--ds-border, #091E4224)"}` : undefined,
20
21
  transition: `box-shadow 200ms ${akEditorSwoopCubicBezier}`,
21
22
  zIndex: akEditorFloatingDialogZIndex,
22
23
  display: 'flex',
23
- height: `${toolbarLineHeight}px`,
24
+ height: FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(),
24
25
  flexShrink: 0,
25
26
  backgroundColor: "var(--ds-surface, white)",
26
27
  '& object': {
@@ -28,7 +29,7 @@ const mainToolbar = css({
28
29
  },
29
30
  [`@media (max-width: ${akEditorMobileMaxWidth}px)`]: {
30
31
  display: 'grid',
31
- height: `calc(${toolbarLineHeight}px * 2)`
32
+ height: `calc(${FULL_PAGE_EDITOR_TOOLBAR_HEIGHT()} * 2)`
32
33
  }
33
34
  });
34
35
  export const mainToolbarStyle = (showKeyline, twoLineEditorToolbar) => [mainToolbar, showKeyline && mainToolbarWithKeyline, twoLineEditorToolbar && mainToolbarTwoLineStyle];
@@ -52,7 +53,7 @@ const mainToolbarFirstChild = css({
52
53
  const mainToolbarFirstChildTowLine = css({
53
54
  [`@media (max-width: ${MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT}px)`]: {
54
55
  flex: '1 1 100%',
55
- height: `${toolbarLineHeight}px`,
56
+ height: FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(),
56
57
  justifyContent: 'flex-end',
57
58
  minWidth: 'fit-content'
58
59
  }
@@ -67,7 +68,7 @@ const mainToolbarSecondChildTwoLine = css({
67
68
  flexGrow: 1,
68
69
  flex: '1 1 100%',
69
70
  margin: 'auto',
70
- height: `${toolbarLineHeight}px`,
71
+ height: FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(),
71
72
  minWidth: 0
72
73
  }
73
74
  });
@@ -2,7 +2,7 @@ import { css } from '@emotion/react';
2
2
  import { decisionListSelector, taskListSelector } from '@atlaskit/adf-schema';
3
3
  import { tableFullPageEditorStyles } from '@atlaskit/editor-plugins/table/ui/common-styles';
4
4
  import { tableMarginFullWidthMode } from '@atlaskit/editor-plugins/table/ui/consts';
5
- import { akEditorContextPanelWidth, akEditorFullWidthLayoutWidth, akEditorGutterPadding, akEditorSwoopCubicBezier, akLayoutGutterOffset, ATLASSIAN_NAVIGATION_HEIGHT } from '@atlaskit/editor-shared-styles';
5
+ import { akEditorContextPanelWidth, akEditorFullWidthLayoutWidth, akEditorGutterPadding, akEditorSwoopCubicBezier, akLayoutGutterOffset, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT } from '@atlaskit/editor-shared-styles';
6
6
  import { createEditorContentStyle } from '../../ContentStyles';
7
7
  import { scrollbarStyles } from '../../styles';
8
8
  const SWOOP_ANIMATION = `0.5s ${akEditorSwoopCubicBezier}`;
@@ -41,7 +41,7 @@ export const positionedOverEditorStyle = css({
41
41
  export const contentArea = css({
42
42
  display: 'flex',
43
43
  flexDirection: 'row',
44
- height: `calc(100% - ${ATLASSIAN_NAVIGATION_HEIGHT})`,
44
+ height: `calc(100% - ${FULL_PAGE_EDITOR_TOOLBAR_HEIGHT()})`,
45
45
  boxSizing: 'border-box',
46
46
  margin: 0,
47
47
  padding: 0,
@@ -6,7 +6,7 @@ import { css, jsx } from '@emotion/react';
6
6
  import Transition from 'react-transition-group/Transition';
7
7
  import { ContextPanelConsumer, WidthContext } from '@atlaskit/editor-common/ui';
8
8
  import { findChildrenByType } from '@atlaskit/editor-prosemirror/utils';
9
- import { akEditorBreakoutPadding, akEditorContextPanelWidth, akEditorDefaultLayoutWidth, akEditorSwoopCubicBezier, akEditorWideLayoutWidth, ATLASSIAN_NAVIGATION_HEIGHT } from '@atlaskit/editor-shared-styles';
9
+ import { akEditorBreakoutPadding, akEditorContextPanelWidth, akEditorDefaultLayoutWidth, akEditorSwoopCubicBezier, akEditorWideLayoutWidth, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT } from '@atlaskit/editor-shared-styles';
10
10
  import { N30 } from '@atlaskit/theme/colors';
11
11
  import { getChildBreakoutModes } from '../../utils/document';
12
12
  import WithEditorActions from '../WithEditorActions';
@@ -19,7 +19,7 @@ const WIDE_MODE = 'wide';
19
19
  const absolutePanelStyles = css({
20
20
  position: 'absolute',
21
21
  right: 0,
22
- height: `calc(100% - ${ATLASSIAN_NAVIGATION_HEIGHT})`
22
+ height: `calc(100% - ${FULL_PAGE_EDITOR_TOOLBAR_HEIGHT()})`
23
23
  });
24
24
  const checkTableExistsInDoc = editorView => {
25
25
  const tableNodeSchema = editorView.state.schema.nodes.table;
@@ -1,2 +1,2 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "193.18.0";
2
+ export const version = "193.18.1";
@@ -1,25 +1,26 @@
1
1
  import _defineProperty from "@babel/runtime/helpers/defineProperty";
2
2
  import { css } from '@emotion/react';
3
- import { akEditorFloatingDialogZIndex, akEditorMobileMaxWidth, akEditorSwoopCubicBezier, akEditorToolbarKeylineHeight } from '@atlaskit/editor-shared-styles';
3
+ import { akEditorFloatingDialogZIndex, akEditorMobileMaxWidth, akEditorSwoopCubicBezier, akEditorToolbarKeylineHeight, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT } from '@atlaskit/editor-shared-styles';
4
+ import { getBooleanFF } from '@atlaskit/platform-feature-flags';
4
5
  export var MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT = 868;
5
- var toolbarLineHeight = 56;
6
6
 
7
7
  // box-shadow is overriden by the mainToolbar
8
8
  var mainToolbarWithKeyline = css({
9
- boxShadow: "0 ".concat(akEditorToolbarKeylineHeight, "px 0 0 ", "var(--ds-background-accent-gray-subtlest, #F1F2F4)")
9
+ boxShadow: getBooleanFF('platform.confluence.frontend.narrow-full-page-editor-toolbar') ? "var(--ds-shadow-overflow, 0px 0px 8px #091E4228, 0px 0px 1px #091E421e)" : "0 ".concat(akEditorToolbarKeylineHeight, "px 0 0 ", "var(--ds-background-accent-gray-subtlest, #F1F2F4)")
10
10
  });
11
11
  var mainToolbarTwoLineStyle = css(_defineProperty({}, "@media (max-width: ".concat(MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT, "px)"), {
12
12
  flexWrap: 'wrap',
13
- height: "calc(".concat(toolbarLineHeight, "px * 2)")
13
+ height: "calc(".concat(FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(), " * 2)")
14
14
  }));
15
15
  var mainToolbar = css(_defineProperty({
16
16
  position: 'relative',
17
17
  alignItems: 'center',
18
18
  boxShadow: 'none',
19
+ borderBottom: getBooleanFF('platform.confluence.frontend.narrow-full-page-editor-toolbar') ? "1px solid ".concat("var(--ds-border, #091E4224)") : undefined,
19
20
  transition: "box-shadow 200ms ".concat(akEditorSwoopCubicBezier),
20
21
  zIndex: akEditorFloatingDialogZIndex,
21
22
  display: 'flex',
22
- height: "".concat(toolbarLineHeight, "px"),
23
+ height: FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(),
23
24
  flexShrink: 0,
24
25
  backgroundColor: "var(--ds-surface, white)",
25
26
  '& object': {
@@ -27,7 +28,7 @@ var mainToolbar = css(_defineProperty({
27
28
  }
28
29
  }, "@media (max-width: ".concat(akEditorMobileMaxWidth, "px)"), {
29
30
  display: 'grid',
30
- height: "calc(".concat(toolbarLineHeight, "px * 2)")
31
+ height: "calc(".concat(FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(), " * 2)")
31
32
  }));
32
33
  export var mainToolbarStyle = function mainToolbarStyle(showKeyline, twoLineEditorToolbar) {
33
34
  return [mainToolbar, showKeyline && mainToolbarWithKeyline, twoLineEditorToolbar && mainToolbarTwoLineStyle];
@@ -49,7 +50,7 @@ var mainToolbarFirstChild = css(_defineProperty({
49
50
  }));
50
51
  var mainToolbarFirstChildTowLine = css(_defineProperty({}, "@media (max-width: ".concat(MAXIMUM_TWO_LINE_TOOLBAR_BREAKPOINT, "px)"), {
51
52
  flex: '1 1 100%',
52
- height: "".concat(toolbarLineHeight, "px"),
53
+ height: FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(),
53
54
  justifyContent: 'flex-end',
54
55
  minWidth: 'fit-content'
55
56
  }));
@@ -64,7 +65,7 @@ var mainToolbarSecondChildTwoLine = css(_defineProperty({}, "@media (max-width:
64
65
  flexGrow: 1,
65
66
  flex: '1 1 100%',
66
67
  margin: 'auto',
67
- height: "".concat(toolbarLineHeight, "px"),
68
+ height: FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(),
68
69
  minWidth: 0
69
70
  }));
70
71
  export var mainToolbarSecondChildStyle = function mainToolbarSecondChildStyle(twoLineEditorToolbar) {
@@ -4,7 +4,7 @@ import { css } from '@emotion/react';
4
4
  import { decisionListSelector, taskListSelector } from '@atlaskit/adf-schema';
5
5
  import { tableFullPageEditorStyles } from '@atlaskit/editor-plugins/table/ui/common-styles';
6
6
  import { tableMarginFullWidthMode } from '@atlaskit/editor-plugins/table/ui/consts';
7
- import { akEditorContextPanelWidth, akEditorFullWidthLayoutWidth, akEditorGutterPadding, akEditorSwoopCubicBezier, akLayoutGutterOffset, ATLASSIAN_NAVIGATION_HEIGHT } from '@atlaskit/editor-shared-styles';
7
+ import { akEditorContextPanelWidth, akEditorFullWidthLayoutWidth, akEditorGutterPadding, akEditorSwoopCubicBezier, akLayoutGutterOffset, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT } from '@atlaskit/editor-shared-styles';
8
8
  import { createEditorContentStyle } from '../../ContentStyles';
9
9
  import { scrollbarStyles } from '../../styles';
10
10
  var SWOOP_ANIMATION = "0.5s ".concat(akEditorSwoopCubicBezier);
@@ -43,7 +43,7 @@ export var positionedOverEditorStyle = css({
43
43
  export var contentArea = css({
44
44
  display: 'flex',
45
45
  flexDirection: 'row',
46
- height: "calc(100% - ".concat(ATLASSIAN_NAVIGATION_HEIGHT, ")"),
46
+ height: "calc(100% - ".concat(FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(), ")"),
47
47
  boxSizing: 'border-box',
48
48
  margin: 0,
49
49
  padding: 0,
@@ -18,7 +18,7 @@ import { css, jsx } from '@emotion/react';
18
18
  import Transition from 'react-transition-group/Transition';
19
19
  import { ContextPanelConsumer, WidthContext } from '@atlaskit/editor-common/ui';
20
20
  import { findChildrenByType } from '@atlaskit/editor-prosemirror/utils';
21
- import { akEditorBreakoutPadding, akEditorContextPanelWidth, akEditorDefaultLayoutWidth, akEditorSwoopCubicBezier, akEditorWideLayoutWidth, ATLASSIAN_NAVIGATION_HEIGHT } from '@atlaskit/editor-shared-styles';
21
+ import { akEditorBreakoutPadding, akEditorContextPanelWidth, akEditorDefaultLayoutWidth, akEditorSwoopCubicBezier, akEditorWideLayoutWidth, FULL_PAGE_EDITOR_TOOLBAR_HEIGHT } from '@atlaskit/editor-shared-styles';
22
22
  import { N30 } from '@atlaskit/theme/colors';
23
23
  import { getChildBreakoutModes } from '../../utils/document';
24
24
  import WithEditorActions from '../WithEditorActions';
@@ -31,7 +31,7 @@ var WIDE_MODE = 'wide';
31
31
  var absolutePanelStyles = css({
32
32
  position: 'absolute',
33
33
  right: 0,
34
- height: "calc(100% - ".concat(ATLASSIAN_NAVIGATION_HEIGHT, ")")
34
+ height: "calc(100% - ".concat(FULL_PAGE_EDITOR_TOOLBAR_HEIGHT(), ")")
35
35
  });
36
36
  var checkTableExistsInDoc = function checkTableExistsInDoc(editorView) {
37
37
  var tableNodeSchema = editorView.state.schema.nodes.table;
@@ -1,2 +1,2 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "193.18.0";
2
+ export var version = "193.18.1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "193.18.0",
3
+ "version": "193.18.1",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -49,7 +49,7 @@
49
49
  "@atlaskit/editor-json-transformer": "^8.12.0",
50
50
  "@atlaskit/editor-plugins": "^2.5.0",
51
51
  "@atlaskit/editor-prosemirror": "4.0.1",
52
- "@atlaskit/editor-shared-styles": "^2.10.0",
52
+ "@atlaskit/editor-shared-styles": "^2.11.0",
53
53
  "@atlaskit/emoji": "^67.6.0",
54
54
  "@atlaskit/icon": "^22.1.0",
55
55
  "@atlaskit/media-card": "^77.11.0",
@@ -333,6 +333,9 @@
333
333
  },
334
334
  "platform.editor.table.allow-table-alignment": {
335
335
  "type": "boolean"
336
+ },
337
+ "platform.confluence.frontend.narrow-full-page-editor-toolbar": {
338
+ "type": "boolean"
336
339
  }
337
340
  },
338
341
  "stricter": {